diff options
Diffstat (limited to 'freetype')
-rw-r--r-- | freetype/freetype-native_2.1.8.oe | 22 | ||||
-rw-r--r-- | freetype/freetype_2.1.8.oe | 5 |
2 files changed, 23 insertions, 4 deletions
diff --git a/freetype/freetype-native_2.1.8.oe b/freetype/freetype-native_2.1.8.oe index e69de29bb2..aadca5c0f4 100644 --- a/freetype/freetype-native_2.1.8.oe +++ b/freetype/freetype-native_2.1.8.oe @@ -0,0 +1,22 @@ +DESCRIPTION = "Freetype font rendering library" + +SRC_URI = "ftp://ftp.freetype.org/freetype/freetype2/freetype-${PV}.tar.bz2 \ + file://${FILESDIR}/configure.patch;patch=1" + +inherit autotools pkgconfig native binconfig +DEPENDS = "patcher-native" +FILESDIR = "${@os.path.dirname(oe.data.getVar('FILE',d,1))}/freetype-${PV}" +S = "${WORKDIR}/freetype-${PV}" +PACKAGES = "" + +do_configure () { + (cd builds/unix && gnu-configize) || die "failure running gnu-configize" + oe_runconf +} + +do_stage () { + oe_libinstall -so -a -C objs libfreetype ${STAGING_LIBDIR} + cp -a ${S}/include/*.h ${STAGING_INCDIR} + install -d ${STAGING_INCDIR}/freetype2 + cp -a ${S}/include/freetype ${STAGING_INCDIR}/freetype2/ +} diff --git a/freetype/freetype_2.1.8.oe b/freetype/freetype_2.1.8.oe index 4f21467fcc..f8c7415cba 100644 --- a/freetype/freetype_2.1.8.oe +++ b/freetype/freetype_2.1.8.oe @@ -6,7 +6,7 @@ SRC_URI = "ftp://ftp.freetype.org/freetype/freetype2/freetype-${PV}.tar.bz2 \ FILES_${PN} = "${libdir}/lib*.so.*" FILES_${PN}-dev += " ${bindir}" -inherit autotools pkgconfig +inherit autotools pkgconfig binconfig LIBTOOL = "${S}/builds/unix/${HOST_SYS}-libtool" EXTRA_OEMAKE = "'LIBTOOL=${LIBTOOL}'" @@ -26,8 +26,5 @@ do_stage () { cp -a ${S}/include/*.h ${STAGING_INCDIR} install -d ${STAGING_INCDIR}/freetype2 cp -a ${S}/include/freetype ${STAGING_INCDIR}/freetype2/ - - sed -e 's,${prefix},${STAGING_LIBDIR}/..,' < builds/unix/freetype-config > ${STAGING_BINDIR}/freetype-config - chmod u+x ${STAGING_BINDIR}/freetype-config } |