diff options
Diffstat (limited to 'sci-chemistry/moldy')
-rw-r--r-- | sci-chemistry/moldy/ChangeLog | 7 | ||||
-rw-r--r-- | sci-chemistry/moldy/Manifest | 14 | ||||
-rw-r--r-- | sci-chemistry/moldy/moldy-2.16e.ebuild | 16 |
3 files changed, 27 insertions, 10 deletions
diff --git a/sci-chemistry/moldy/ChangeLog b/sci-chemistry/moldy/ChangeLog index 325160dc56db..c77ecc06d6df 100644 --- a/sci-chemistry/moldy/ChangeLog +++ b/sci-chemistry/moldy/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-chemistry/moldy -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/moldy/ChangeLog,v 1.15 2009/09/23 19:55:35 patrick Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/moldy/ChangeLog,v 1.16 2010/02/17 21:15:22 jlec Exp $ + + 17 Feb 2010; Justin Lecher (jlec) <jlec@gentoo.org> moldy-2.16e.ebuild: + import prefix changes from the overlay, moved to EAPI=3 23 Sep 2009; Patrick Lauer <patrick@gentoo.org> moldy-2.16e.ebuild: Remove virtual/libc diff --git a/sci-chemistry/moldy/Manifest b/sci-chemistry/moldy/Manifest index 569e96f0750f..589dc77f691f 100644 --- a/sci-chemistry/moldy/Manifest +++ b/sci-chemistry/moldy/Manifest @@ -1,4 +1,14 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + DIST moldy-2.16e.tar.gz 488410 RMD160 ef9c1c6cf1afa6e28e78a51a6a771d127aac2c83 SHA1 e7984f59170a11b5dab0beae89c5f4cf4da20ad1 SHA256 51abefc5e7de355022f48084382c30e72738cc1f21cd3d67fde7f047f1822ea8 -EBUILD moldy-2.16e.ebuild 1644 RMD160 cfde8740388c38049ee29d7ef6824d8d57847f82 SHA1 c9884ef8653dfbedbbd843340f17e3469898162d SHA256 6b3241ebc8897248ec6e3ba826b7d01520f380fce90d5fd683aabce75c58b7e0 -MISC ChangeLog 2879 RMD160 19f0790400c9a71c2712ba12b1dbc84e2262fc89 SHA1 6bc3bb96d3c9df548ae6fba12beb38affdadf124 SHA256 67ff6daf89fc68ab7ab47eb9eeb19326f418b840639633549d433d2a6c19feaa +EBUILD moldy-2.16e.ebuild 1706 RMD160 05d162c8e32343ca014aac4a3b43a504efd3f0b6 SHA1 4237d21c1272390ec86148e4bdf80c2e5b7f993c SHA256 ddac118b69a6f633978ad1378ce621b7b24da3e27e54e551d47921698cb05e32 +MISC ChangeLog 3009 RMD160 b96bc02e209c5edce4a3b94f4d7b7be69b40d72f SHA1 6d22430f3d4e779efd0585db5f74ee10fbace9fd SHA256 9f8373e861420472b17c36ca73200e03e14d7d0c35a1d0a7c19ab5338da9599f MISC metadata.xml 166 RMD160 4452298fd03e7c9395d1182bfe69d60a14144af6 SHA1 cb0b513473c0348f4f6f6cd9a132e4884155fddb SHA256 84c92b49702daf95eace8d2765215cbd8650da4ef776f9f700b5ce3785dec852 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v2.0.14 (GNU/Linux) + +iEYEARECAAYFAkt8XG8ACgkQgAnW8HDreRaXGgCgyqTps95nvMUVhniSYQTflNqe +vjkAmwQoHLJchC6MPnPlSCyMLp0rsyg3 +=n0Pj +-----END PGP SIGNATURE----- diff --git a/sci-chemistry/moldy/moldy-2.16e.ebuild b/sci-chemistry/moldy/moldy-2.16e.ebuild index 749d62ecc711..9b147435af7b 100644 --- a/sci-chemistry/moldy/moldy-2.16e.ebuild +++ b/sci-chemistry/moldy/moldy-2.16e.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/moldy/moldy-2.16e.ebuild,v 1.10 2009/09/23 19:55:35 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/moldy/moldy-2.16e.ebuild,v 1.11 2010/02/17 21:15:22 jlec Exp $ + +EAPI="3" IUSE="" @@ -12,11 +14,11 @@ HOMEPAGE="http://www.earth.ox.ac.uk/~keithr/moldy.html" LICENSE="GPL-2" SLOT="0" -KEYWORDS="x86 ~amd64" +KEYWORDS="x86 ~amd64 ~x86-linux ~ppc-macos" DEPEND="virtual/latex-base" -src_compile() { +src_configure() { #Individuals may want to edit the OPT* variables below. #From the READ.ME: #You may need to "hand-tune" compiler or optimization options, @@ -29,10 +31,12 @@ src_compile() { #and may be set to a lower level of optimization than OPT2. OPT=${CFLAGS} OPT2=${CFLAGS} \ - ./configure --prefix=/usr \ + ./configure --prefix="${EPREFIX}"/usr \ --host=${CHOST} \ || die +} +src_compile() { emake || die # To prevent sandbox violations by metafont VARTEXFONTS="${T}"/fonts make moldy.pdf || die @@ -40,7 +44,7 @@ src_compile() { src_install() { dodir /usr/bin - make prefix="${D}"/usr install || die + make prefix="${ED}"/usr install || die rm Makefile.in configure.in config.h.in insinto /usr/share/${PN}/examples/ doins *.in *.out control.* |