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/libgeotiff/libgeotiff-1.2.4.ebuild | |
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/libgeotiff/libgeotiff-1.2.4.ebuild')
-rw-r--r-- | sci-libs/libgeotiff/libgeotiff-1.2.4.ebuild | 17 |
1 files changed, 11 insertions, 6 deletions
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 |