diff options
author | Steve Arnold <nerdboy@gentoo.org> | 2004-11-08 23:13:28 +0000 |
---|---|---|
committer | Steve Arnold <nerdboy@gentoo.org> | 2004-11-08 23:13:28 +0000 |
commit | 7114f40bc6bbf5d39b4bfc09f21a028245260300 (patch) | |
tree | 51f24e9083fa4a157f00722bba6c88bcd91f2d23 /app-sci/udunits | |
parent | initial import as per bug #51938. (Manifest recommit) (diff) | |
download | gentoo-2-7114f40bc6bbf5d39b4bfc09f21a028245260300.tar.gz gentoo-2-7114f40bc6bbf5d39b4bfc09f21a028245260300.tar.bz2 gentoo-2-7114f40bc6bbf5d39b4bfc09f21a028245260300.zip |
fixed perl test issues and added ~amd64 to keywords
Diffstat (limited to 'app-sci/udunits')
-rw-r--r-- | app-sci/udunits/ChangeLog | 6 | ||||
-rw-r--r-- | app-sci/udunits/udunits-1.12.1.ebuild | 15 |
2 files changed, 15 insertions, 6 deletions
diff --git a/app-sci/udunits/ChangeLog b/app-sci/udunits/ChangeLog index a7dd55e72ae8..52b5a5949d4d 100644 --- a/app-sci/udunits/ChangeLog +++ b/app-sci/udunits/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-sci/udunits # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-sci/udunits/ChangeLog,v 1.11 2004/10/30 15:34:37 ribosome Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/udunits/ChangeLog,v 1.12 2004/11/08 23:13:28 nerdboy Exp $ + + 08 Nov 2004; Steve Arnold <nerdboy@gentoo.org> udunits-1.12.1.ebuild: + fixed perl test issues and added ~amd64 to keywords; all udunits libs and + language interfaces should be correct now. 30 Oct 2004; Olivier Fisette <ribosome@gentoo.org> udunits-1.12.0.ebuild: Q.A.: Removed RDEPEND=$DEPEND. diff --git a/app-sci/udunits/udunits-1.12.1.ebuild b/app-sci/udunits/udunits-1.12.1.ebuild index 28441a1f0cf7..5cfceeb65a8f 100644 --- a/app-sci/udunits/udunits-1.12.1.ebuild +++ b/app-sci/udunits/udunits-1.12.1.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-sci/udunits/udunits-1.12.1.ebuild,v 1.3 2004/06/24 22:19:59 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/udunits/udunits-1.12.1.ebuild,v 1.4 2004/11/08 23:13:28 nerdboy Exp $ -inherit eutils +inherit eutils flag-o-matic IUSE="" @@ -14,7 +14,7 @@ SRC_URI="ftp://unidata.ucar.edu/pub/udunits/udunits-${PV}.tar.Z" SLOT="0" LICENSE="UCAR-Unidata" -KEYWORDS="x86 ~ppc ~sparc ~alpha ~mips ~hppa" +KEYWORDS="x86 ~amd64 ~ppc ~sparc ~alpha ~mips ~hppa" DEPEND="dev-lang/perl sys-apps/sed" @@ -29,14 +29,19 @@ src_unpack() { src_compile() { export CPPFLAGS="-Df2cFortran -D_POSIX_SOURCE" + append-flags -fPIC econf || die "econf failed" + cd lib + emake || die + cd .. + cd perl perl Makefile.PL PREFIX=${D}/usr cd .. - make || die - make test || die + emake || die + emake test || die } src_install() { |