diff options
author | Koen Kooi <koen@openembedded.org> | 2008-07-13 14:24:20 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2008-07-13 14:24:20 +0000 |
commit | a105e4422b3ef7da6cc1716443f392647dd06354 (patch) | |
tree | 5143b8b8e6b312ffac21a0375c21cccbad679be7 /packages | |
parent | 03132ae61da2b8331d66c3f6b5ed0190aed26b28 (diff) |
t1lib: if we stage the x11 header lets also build the corresponding library.
Diffstat (limited to 'packages')
-rw-r--r-- | packages/t1lib/t1lib_5.0.2.bb | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/packages/t1lib/t1lib_5.0.2.bb b/packages/t1lib/t1lib_5.0.2.bb index 3934016c1e..5da31f7d09 100644 --- a/packages/t1lib/t1lib_5.0.2.bb +++ b/packages/t1lib/t1lib_5.0.2.bb @@ -1,7 +1,8 @@ DESCRIPTION = "A Type1 Font Rastering Library" SECTION = "libs" PRIORITY = "optional" -PR = "r3" +DEPENDS = "virtual/libx11" +PR = "r4" LICENSE = "LGPL GPL" SRC_URI = "${DEBIAN_MIRROR}/main/t/t1lib/t1lib_${PV}.orig.tar.gz \ file://configure.patch;patch=1 \ @@ -10,7 +11,7 @@ SRC_URI = "${DEBIAN_MIRROR}/main/t/t1lib/t1lib_${PV}.orig.tar.gz \ inherit autotools -EXTRA_OECONF = "--without-x --without-athena" +EXTRA_OECONF = "--with-x --without-athena" EXTRA_OEMAKE = "without_doc" do_configure() { @@ -19,9 +20,7 @@ do_configure() { } do_stage() { - oe_libinstall -so -C lib libt1 ${STAGING_LIBDIR} - install lib/t1lib/t1lib.h ${STAGING_INCDIR}/ - install lib/t1lib/t1libx.h ${STAGING_INCDIR}/ + autotools_stage_all } FILES_${PN} = "${bindir}/* ${libdir}/*.so* ${datadir}/t1lib/t1lib.config" |