You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-util/makepp/makepp-1.40.1a.ebuild

43 lines
871 B

# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
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() {
emake install DESTDIR="${D}" || die
dodoc ChangeLog README
}