42 lines
970 B
Bash
42 lines
970 B
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools
|
|
|
|
DESCRIPTION="A download manager"
|
|
HOMEPAGE="http://prozilla.genesys.ro/"
|
|
SRC_URI="http://ftp.disconnected-by-peer.at/prozilla/${P}.tar.bz2
|
|
ftp://ftp.jpix.ad.jp/pub/FreeBSD/ports/distfiles/${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm ~ppc sparc x86"
|
|
IUSE="static nls"
|
|
|
|
RDEPEND="virtual/libc
|
|
>=sys-libs/ncurses-5.2"
|
|
DEPEND="${RDEPEND}
|
|
>=sys-apps/sed-4"
|
|
|
|
src_prepare() {
|
|
eapply_user
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
LIBS="$($(tc-getPKG_CONFIG) --libs ncurses)" econf --enable-shared --with-pic \
|
|
$(use_enable static) \
|
|
$(use_enable nls)
|
|
}
|
|
|
|
src_install() {
|
|
make DESTDIR="${D}" install || die "make install failed"
|
|
dodoc AUTHORS CREDITS* ChangeLog docs/FAQ libprozilla/docs/HACKING NEWS README TODO
|
|
insinto /etc
|
|
newins "${FILESDIR}"/prozrc.sample prozilla.conf
|
|
|
|
rm -f "${D}"/usr/share/locale/locale.alias
|
|
}
|