From: Koen Kooi Date: Tue, 7 Feb 2006 13:45:19 +0000 (+0000) Subject: cups: add 0.1.23, with hacks to make it build X-Git-Tag: Release-2010-05/1~9453^2~2417 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3f98a75229a7152df0194e43d7961460d8cc4725;p=openembedded.git cups: add 0.1.23, with hacks to make it build --- diff --git a/packages/cups/cups_1.1.23.bb b/packages/cups/cups_1.1.23.bb new file mode 100644 index 0000000000..500010226f --- /dev/null +++ b/packages/cups/cups_1.1.23.bb @@ -0,0 +1,27 @@ +DEPENDS = "openssl jpeg libpng zlib" +DESCRIPTION = "An Internet printing system for Unix." +SECTION = "console/utils" +LICENSE = "GPL LGPL" + +SRC_URI = "ftp://ftp.easysw.com/pub/cups/${PV}/cups-${PV}-source.tar.bz2" + +inherit autotools + +LDFLAGS += " -L${STAGING_LIBDIR} " + +do_compile () { + #Eeeks! Hack alert! + grep CUPS config.h.in~ | grep define >> config.h + sed -i s:STRIP:NOSTRIP: Makedefs + sed -i s:serial:: backend/Makefile + + oe_runmake "SSLLIBS=-lssl -lcrypto -L${STAGING_LIBDIR}" \ + "LIBPNG=-lpng -lm -L${STAGING_LIBDIR}" \ + "LIBJPEG=-ljpeg -L${STAGING_LIBDIR}" \ + "LIBZ=-lz -L${STAGING_LIBDIR}" \ + "-I." +} + +do_install () { + oe_runmake "DSTROOT=${D}" install +}