diff options
author | Steve Arnold <nerdboy@gentoo.org> | 2008-02-04 16:44:05 +0000 |
---|---|---|
committer | Steve Arnold <nerdboy@gentoo.org> | 2008-02-04 16:44:05 +0000 |
commit | 0c9d123fa6865e20d640cd419dde341aa845b0e0 (patch) | |
tree | ce269419a51f0d1cd931b04f5b263a8c4a0059c5 /sci-libs | |
parent | and better description (diff) | |
download | gentoo-2-0c9d123fa6865e20d640cd419dde341aa845b0e0.tar.gz gentoo-2-0c9d123fa6865e20d640cd419dde341aa845b0e0.tar.bz2 gentoo-2-0c9d123fa6865e20d640cd419dde341aa845b0e0.zip |
added src_unpack to make portage and flameeyes happy
(Portage version: 2.1.4.1)
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/libgeotiff/ChangeLog | 8 | ||||
-rw-r--r-- | sci-libs/libgeotiff/libgeotiff-1.2.4.ebuild | 17 |
2 files changed, 17 insertions, 8 deletions
diff --git a/sci-libs/libgeotiff/ChangeLog b/sci-libs/libgeotiff/ChangeLog index 18d9a8108dbe..72a921f7f775 100644 --- a/sci-libs/libgeotiff/ChangeLog +++ b/sci-libs/libgeotiff/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-libs/libgeotiff -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeotiff/ChangeLog,v 1.16 2007/09/01 20:10:31 nerdboy Exp $ +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeotiff/ChangeLog,v 1.17 2008/02/04 16:44:05 nerdboy Exp $ + + 04 Feb 2008; Steve Arnold <nerdboy@gentoo.org> libgeotiff-1.2.4.ebuild: + Added src_unpack to make portage and Diego Petten <flameeyes@gentoo.org> + happy... 01 Sep 2007; Steve Arnold <nerdboy@gentoo.org> libgeotiff-1.2.4.ebuild: updated use doc construct to fix borkage... diff --git a/sci-libs/libgeotiff/libgeotiff-1.2.4.ebuild b/sci-libs/libgeotiff/libgeotiff-1.2.4.ebuild index 758b27e08616..d1a98cf289fa 100644 --- a/sci-libs/libgeotiff/libgeotiff-1.2.4.ebuild +++ b/sci-libs/libgeotiff/libgeotiff-1.2.4.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeotiff/libgeotiff-1.2.4.ebuild,v 1.2 2007/09/01 20:10:31 nerdboy Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeotiff/libgeotiff-1.2.4.ebuild,v 1.3 2008/02/04 16:44:05 nerdboy Exp $ inherit autotools eutils flag-o-matic @@ -20,11 +20,16 @@ DEPEND="virtual/libc WANT_AUTOCONF="latest" -src_compile() { - epatch ${FILESDIR}/${P}-soname.patch || die "epatch failed" +src_unpack() { + unpack ${A} + cd "${S}" + + epatch "${FILESDIR}"/${P}-soname.patch || die "epatch failed" filter-ldflags "-Wl,-O1" eautoconf +} +src_compile() { econf || die "econf failed" emake -j1 || die "emake failed" @@ -37,8 +42,8 @@ src_install() { emake DESTDIR="${D}" install || die "make install failed" exeinto /usr/bin - doexe bin/makegeo - use python && doexe csv/*.py + doexe bin/makegeo || die "doexe makegeo failed" + use python && doexe csv/*.py || die "doexe python failed" dodoc README newdoc csv/README README.csv |