surpport seeking the recorded video
[vuplus_openembedded] / recipes / pwlib / pwlib.inc
1 HOMEPAGE = "http://openh323.sourceforge.net/"
2 DESCRIPTION = "Portable Text and GUI C/C++ Class Libarary."
3 LICENSE = "GPL"
4 DEPENDS = "openssl openldap"
5
6 INC_PR = "r1"
7
8 # Somebody should teach these people about naming tarballs ;-)
9 MIN_VER ?= "1"
10 SHRT_VER = "${@bb.data.getVar('PV',d,1).split('.')[0]}_${@bb.data.getVar('PV',d,1).split('.')[1]}_${@bb.data.getVar('PV',d,1).split('.')[1]}"
11 SRC_URI = "http://www.voxgratia.org/releases/${PN}-v1_${SHRT_VER}-${MIN_VER}src.tar.gz"
12
13 inherit autotools
14
15 EXTRA_OECONF="--enable-ipv6 --disable-sasl --disable-sdl \
16               --disable-video --enable-plugins --with-plugins=oss"
17
18 # Use openSSL
19
20 export OPENSSLFLAG="1"
21 export OPENSSLDIR="${STAGING_LIBDIR}"
22 export OPENSSLLIBS="-lssl -lcrypt"
23 export MACHTYPE="x86"
24 export OSTYPE="linux"
25 export OSRELEASE="openembedded"
26
27 export CPLUS="${CXX}"
28
29 do_compile() {
30         oe_runmake opt
31 }