diff options
Diffstat (limited to 'xft/xft-cvs.oe')
-rw-r--r-- | xft/xft-cvs.oe | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/xft/xft-cvs.oe b/xft/xft-cvs.oe index 66e1d59484..3d9e5ecff2 100644 --- a/xft/xft-cvs.oe +++ b/xft/xft-cvs.oe @@ -7,6 +7,11 @@ DESCRIPTION = "X FreeType library. Client-side fonts with FreeType." 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 libtool do_stage() { @@ -17,3 +22,9 @@ do_stage() { datadir=/share prefix= } + +python do_package() { + if oe.data.getVar('DEBIAN_NAMES', d, 1): + oe.data.setVar('PKG_${PN}', 'libxft2', d) + oe.build.exec_func('package_do_package', d) +} |