From: Rolf Leggewie Date: Thu, 7 Feb 2008 22:17:17 +0000 (+0000) Subject: eb: update to version 4.3.2 X-Git-Tag: Release-2010-05/1~7713^2~20 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=57c2f23e84f3916a179a1135578fd6a24d0c8587;p=openembedded.git eb: update to version 4.3.2 * fixes unfetchable source * improve packaging granularity (add utils package and make sure doc stuff is actually in -doc) * use autotools_stage_all instead of custom do_stage routine (comment 11 from bug 1383) --- diff --git a/packages/eb/eb_4.3.bb b/packages/eb/eb_4.3.2.bb similarity index 56% rename from packages/eb/eb_4.3.bb rename to packages/eb/eb_4.3.2.bb index 29bd53dfea..5ba61c7cdb 100644 --- a/packages/eb/eb_4.3.bb +++ b/packages/eb/eb_4.3.2.bb @@ -2,13 +2,17 @@ DESCRIPTION = "Electronic book library" HOMEPAGE = "http://www.sra.co.jp/people/m-kasahr/eb" SECTION = "libs" LICENSE = "GPL" +#DEPENDS = "zlib" SRC_URI = "ftp://ftp.sra.co.jp/pub/misc/eb/eb-${PV}.tar.bz2" -inherit autotools pkgconfig +inherit autotools + +EXTRA_OECONF += " --with-pkgdocdir=${docdir}/eb" do_stage () { - install -d ${STAGING_INCDIR}/eb/ - install -m 0644 eb/*.h ${STAGING_INCDIR}/eb/ - install eb/.libs/libeb.so ${STAGING_LIBDIR} + autotools_stage_all } + +PACKAGES =+ "eb-utils" +FILES_eb-utils = "/usr/bin/*"