31 lines
896 B
Bash
31 lines
896 B
Bash
# Copyright 1999-2009 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-util/autoproject/autoproject-0.20.ebuild,v 1.3 2009/10/12 20:36:55 ssuominen Exp $
|
|
|
|
inherit eutils
|
|
|
|
DEB_VER=3
|
|
DESCRIPTION="Used to start a programming project using autotools and a command line parser generator"
|
|
HOMEPAGE="http://packages.debian.org/unstable/devel/autoproject"
|
|
SRC_URI="mirror://debian/pool/main/a/autoproject/${PN}_${PV}.orig.tar.gz
|
|
mirror://debian/pool/main/a/autoproject/${PN}_${PV}-${DEB_VER}.diff.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~ppc x86"
|
|
IUSE="test"
|
|
|
|
RDEPEND="sys-devel/automake
|
|
sys-devel/autoconf"
|
|
DEPEND="${RDEPEND}
|
|
test? ( sys-apps/texinfo )"
|
|
|
|
src_unpack() {
|
|
unpack ${A}
|
|
epatch ${PN}_${PV}-${DEB_VER}.diff
|
|
}
|
|
|
|
src_install() {
|
|
make install DESTDIR="${D}" || die
|
|
dodoc AUTHORS NEWS README TODO ChangeLog
|
|
}
|