mirror of
https://git.yoctoproject.org/poky
synced 2026-02-21 08:59:41 +01:00
32 lines
936 B
BlitzBasic
32 lines
936 B
BlitzBasic
PV = "0.0cvs${CVSDATE}"
|
|
LICENSE = "MIT-X"
|
|
SECTION = "x11/libs"
|
|
DEPENDS = "x11 xproto libxrender freetype fontconfig"
|
|
DESCRIPTION = "X FreeType library. Client-side fonts with FreeType."
|
|
PROVIDES = "xft"
|
|
|
|
SRC_URI = "cvs://anoncvs:anoncvs@pdx.freedesktop.org/cvs/xlibs;module=Xft"
|
|
S = "${WORKDIR}/Xft"
|
|
|
|
FILES_${PN} = ${libdir}/lib*.so.*
|
|
FILES_${PN}-dev = ${includedir} ${libdir}/lib*.so ${libdir}/*.la \
|
|
${libdir}/*.a ${libdir}/pkgconfig \
|
|
${datadir}/aclocal ${bindir} ${sbindir}
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
do_stage() {
|
|
oe_runmake install prefix=${STAGING_DIR} \
|
|
bindir=${STAGING_BINDIR} \
|
|
includedir=${STAGING_INCDIR} \
|
|
libdir=${STAGING_LIBDIR} \
|
|
datadir=${STAGING_DATADIR} \
|
|
mandir=${STAGING_DATADIR}/man
|
|
}
|
|
|
|
python do_package() {
|
|
if bb.data.getVar('DEBIAN_NAMES', d, 1):
|
|
bb.data.setVar('PKG_${PN}', 'libxft2', d)
|
|
bb.build.exec_func('package_do_package', d)
|
|
}
|