diff options
author | Marcus D. Hanwell <cryos@gentoo.org> | 2007-03-21 15:25:21 +0000 |
---|---|---|
committer | Marcus D. Hanwell <cryos@gentoo.org> | 2007-03-21 15:25:21 +0000 |
commit | a211f01db4ac4433ef2d6b3aa2e06b000e3cea6f (patch) | |
tree | 79a553468ff984ebd8c5b04bedcea0532b7ce961 /sci-chemistry | |
parent | Stable on alpha/ia64 wrt bug #167573. (diff) | |
download | gentoo-2-a211f01db4ac4433ef2d6b3aa2e06b000e3cea6f.tar.gz gentoo-2-a211f01db4ac4433ef2d6b3aa2e06b000e3cea6f.tar.bz2 gentoo-2-a211f01db4ac4433ef2d6b3aa2e06b000e3cea6f.zip |
Fix ebuild up a little.
(Portage version: 2.1.2.2)
Diffstat (limited to 'sci-chemistry')
-rw-r--r-- | sci-chemistry/bodr/ChangeLog | 5 | ||||
-rw-r--r-- | sci-chemistry/bodr/bodr-6.ebuild | 16 |
2 files changed, 13 insertions, 8 deletions
diff --git a/sci-chemistry/bodr/ChangeLog b/sci-chemistry/bodr/ChangeLog index c3690db281a0..968931ae3df6 100644 --- a/sci-chemistry/bodr/ChangeLog +++ b/sci-chemistry/bodr/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-chemistry/bodr # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/bodr/ChangeLog,v 1.2 2007/03/19 20:06:46 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/bodr/ChangeLog,v 1.3 2007/03/21 15:25:21 cryos Exp $ + + 21 Mar 2007; Marcus D. Hanwell <cryos@gentoo.org> bodr-6.ebuild: + Fix ebuild up a little. 19 Mar 2007; Zac Medico <zmedico@gentoo.org> ChangeLog: Fix broken Manifest due to commit without repoman. diff --git a/sci-chemistry/bodr/bodr-6.ebuild b/sci-chemistry/bodr/bodr-6.ebuild index 369a8aaf2b3a..900eefe5da6c 100644 --- a/sci-chemistry/bodr/bodr-6.ebuild +++ b/sci-chemistry/bodr/bodr-6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/bodr/bodr-6.ebuild,v 1.1 2007/03/19 17:43:01 cryos Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/bodr/bodr-6.ebuild,v 1.2 2007/03/21 15:25:21 cryos Exp $ DESCRIPTION="The Blue Obelisk Data Repository listing element and isotope properties." @@ -15,15 +15,17 @@ IUSE="" DEPEND=">=dev-libs/libxslt-1.1.20" RDEPEND="" -src_unpack() { - unpack ${A} - cd ${S} - aclocal - automake --gnu -a - autoconf +src_compile() { + aclocal || die "aclocal failed" + automake --gnu -a || die "automake failed" + autoconf || die "autoconf failed" + + econf || die "econf failed" + emake || die "emake failed" } src_install() { make install DESTDIR=${D} || die "make install failed" mv ${D}/usr/share/doc/${PN} ${D}/usr/share/doc/${PF} + rm ${D}/usr/share/doc/${PF}/COPYING } |