linamh/www-client/prozilla/prozilla-2.0.5.ebuild

42 lines
970 B
Bash
Raw Normal View History

# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
2023-07-20 20:28:34 +02:00
EAPI=8
2023-07-20 20:28:34 +02:00
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"
2022-11-24 21:26:54 +01:00
IUSE="static nls"
RDEPEND="virtual/libc
>=sys-libs/ncurses-5.2"
DEPEND="${RDEPEND}
>=sys-apps/sed-4"
src_prepare() {
2022-11-24 21:26:54 +01:00
eapply_user
eautoreconf
}
src_configure() {
2022-11-24 21:26:54 +01:00
LIBS="$($(tc-getPKG_CONFIG) --libs ncurses)" econf --enable-shared --with-pic \
$(use_enable static) \
2022-11-24 21:26:54 +01:00
$(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
}