blob: 663ec9de6771aa15930408299b055704a7012949 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-client/urlgfe/urlgfe-1.0.ebuild,v 1.5 2006/10/04 08:29:56 blubb Exp $
inherit eutils autotools
DESCRIPTION="Download manager using gtk+ and libcurl"
HOMEPAGE="http://urlget.sourceforge.net/"
SRC_URI="mirror://sourceforge/urlget/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="nls"
RDEPEND=">=net-misc/curl-7.10
>=x11-libs/gtk+-2.4
>=dev-libs/glib-2
dev-libs/libpcre"
DEPEND="${RDEPEND}
dev-util/pkgconfig
sys-devel/gettext"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/1.0-as-needed.patch
autopoint -f
AT_M4DIR="m4" eautoreconf
}
src_compile() {
econf $(use_enable nls) || die "econf failed"
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS ChangeLog NEWS README || die "dodoc failed"
}
|