gentooize ebuild & move out non novell ebuild

This commit is contained in:
geos_one
2007-02-18 17:10:05 +00:00
parent b23f04874b
commit 409bc17f17
13 changed files with 184 additions and 6 deletions

View File

@@ -0,0 +1,35 @@
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils
DESCRIPTION="A download manager"
HOMEPAGE="http://prozilla.genesys.ro/"
SRC_URI="http://prozilla.genesys.ro/downloads/prozilla/tarballs/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 sparc ~ppc amd64"
IUSE=""
RDEPEND="virtual/libc
>=sys-libs/ncurses-5.2"
DEPEND="${RDEPEND}
>=sys-apps/sed-4"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/prozilla-2.0.4-gcc4.patch
}
src_compile() {
econf --enable-shared
}
src_install () {
make DESTDIR="${D}" install || die "make install failed"
dodoc ANNOUNCE AUTHORS CREDITS ChangeLog FAQ NEWS README TODO
newdoc prozrc.sample prozilla.conf.example
}