diff options
Diffstat (limited to 'dev-util/makepp/makepp-1.40.1a.ebuild')
-rw-r--r-- | dev-util/makepp/makepp-1.40.1a.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/dev-util/makepp/makepp-1.40.1a.ebuild b/dev-util/makepp/makepp-1.40.1a.ebuild new file mode 100644 index 000000000000..e687c6a72de8 --- /dev/null +++ b/dev-util/makepp/makepp-1.40.1a.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/makepp/makepp-1.40.1a.ebuild,v 1.1 2005/09/22 06:27:15 vapier Exp $ + +inherit eutils + +DESCRIPTION="GNU make replacement" +HOMEPAGE="http://makepp.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~ppc ~sparc ~x86" +IUSE="" + +DEPEND=">=dev-lang/perl-5.6.0" + +S=${WORKDIR}/${P%.*} + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${P}-install.patch + # remove ones which cause sandbox violations + rm makepp_tests/wildcard_repositories.test +} + +src_compile() { + # not an autoconf configure script + ./configure \ + --prefix=/usr \ + --bindir=/usr/bin \ + --htmldir=/usr/share/doc/${PF}/html \ + --mandir=/usr/share/man \ + --datadir=/usr/share/makepp \ + || die "configure failed" +} + +src_install() { + make install DESTDIR="${D}" || die + dodoc ChangeLog README +} |