diff options
author | Ciaran McCreesh <ciaranm@gentoo.org> | 2005-08-05 18:56:39 +0000 |
---|---|---|
committer | Ciaran McCreesh <ciaranm@gentoo.org> | 2005-08-05 18:56:39 +0000 |
commit | 07d71fe87b532f1a917130047ffcfeae2db9ee0d (patch) | |
tree | e3aad59b838bc65d213a5bfe5ec87eadd1507e46 /dev-util/patchutils/patchutils-0.2.30.ebuild | |
parent | Add -j1 to emake cmdline. This package doesn't build reliably when make is (diff) | |
download | gentoo-2-07d71fe87b532f1a917130047ffcfeae2db9ee0d.tar.gz gentoo-2-07d71fe87b532f1a917130047ffcfeae2db9ee0d.tar.bz2 gentoo-2-07d71fe87b532f1a917130047ffcfeae2db9ee0d.zip |
Make test work
(Portage version: 2.0.51.22-r2 flaming goat edition)
Diffstat (limited to 'dev-util/patchutils/patchutils-0.2.30.ebuild')
-rw-r--r-- | dev-util/patchutils/patchutils-0.2.30.ebuild | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/dev-util/patchutils/patchutils-0.2.30.ebuild b/dev-util/patchutils/patchutils-0.2.30.ebuild index d340dbb8563f..a432ef876727 100644 --- a/dev-util/patchutils/patchutils-0.2.30.ebuild +++ b/dev-util/patchutils/patchutils-0.2.30.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/patchutils/patchutils-0.2.30.ebuild,v 1.8 2005/04/07 14:43:27 blubb Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/patchutils/patchutils-0.2.30.ebuild,v 1.9 2005/08/05 18:56:39 ciaranm Exp $ DESCRIPTION="A collection of tools that operate on patch files" HOMEPAGE="http://cyberelk.net/tim/patchutils/" @@ -13,7 +13,17 @@ IUSE="" DEPEND="virtual/libc" -src_install () { +src_unpack() { + unpack "${A}" + cd "${S}" + # we don't have gendiff + sed -i -e '/gendiff/d' Makefile.am + WANT_AUTOMAKE=1.8 aclocal || die "aclocal failed" + WANT_AUTOCONF=2.5 autoconf || die "autoconf failed" + WANT_AUTOMAKE=1.8 automake || die "automake failed" +} + +src_install() { make DESTDIR=${D} install || die dodoc AUTHORS BUGS COPYING ChangeLog NEWS README TODO |