2013-05-03 20:28:58 +04:00
|
|
|
# Copyright 1999-2013 Gentoo Foundation
|
2012-10-14 19:43:16 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2013-11-06 16:01:54 +04:00
|
|
|
# $Header: /var/cvsroot/gentoo-x86/www-client/uget/uget-1.10.3-r1.ebuild,v 1.3 2013/11/05 21:04:22 wired Exp $
|
2012-10-14 19:43:16 +04:00
|
|
|
|
|
|
|
EAPI="4"
|
|
|
|
|
2013-05-03 20:28:58 +04:00
|
|
|
inherit base autotools
|
|
|
|
|
2012-10-14 19:43:16 +04:00
|
|
|
IUSE="aria2 +curl gstreamer hide-temp-files libnotify nls"
|
|
|
|
if [[ ${PV} == *9999* ]]; then
|
2013-05-03 20:28:58 +04:00
|
|
|
inherit git-2
|
2012-10-14 19:43:16 +04:00
|
|
|
KEYWORDS=""
|
|
|
|
SRC_URI=""
|
|
|
|
EGIT_REPO_URI="git://urlget.git.sourceforge.net/gitroot/urlget/uget"
|
|
|
|
else
|
2013-07-19 08:56:12 +04:00
|
|
|
KEYWORDS="~amd64 ~arm ~ppc ~x86"
|
2012-10-14 19:43:16 +04:00
|
|
|
SRC_URI="mirror://sourceforge/urlget/${P}.tar.gz"
|
|
|
|
fi
|
|
|
|
|
|
|
|
DESCRIPTION="Download manager using gtk+ and libcurl"
|
2013-11-06 16:01:54 +04:00
|
|
|
HOMEPAGE="http://www.ugetdm.com"
|
2012-10-14 19:43:16 +04:00
|
|
|
|
|
|
|
LICENSE="LGPL-2.1"
|
|
|
|
SLOT="0"
|
|
|
|
|
|
|
|
REQUIRED_USE="|| ( aria2 curl )"
|
|
|
|
|
|
|
|
RDEPEND="
|
|
|
|
dev-libs/libpcre
|
|
|
|
>=dev-libs/glib-2.32:2
|
|
|
|
>=x11-libs/gtk+-3.4:3
|
|
|
|
curl? ( >=net-misc/curl-7.10 )
|
2012-12-03 10:18:31 +04:00
|
|
|
gstreamer? ( media-libs/gstreamer:0.10 )
|
2012-10-14 19:43:16 +04:00
|
|
|
libnotify? ( x11-libs/libnotify )
|
|
|
|
"
|
|
|
|
DEPEND="${RDEPEND}
|
|
|
|
dev-util/intltool
|
|
|
|
virtual/pkgconfig
|
|
|
|
sys-devel/gettext"
|
|
|
|
|
|
|
|
src_prepare() {
|
2013-05-03 20:28:58 +04:00
|
|
|
epatch "${FILESDIR}"/${PN}-ar-hardcoded.patch
|
|
|
|
eautoreconf
|
|
|
|
|
2012-10-14 19:43:16 +04:00
|
|
|
if [[ ${PV} == *9999* ]]; then
|
|
|
|
intltoolize || die "intltoolize failed"
|
|
|
|
eautoreconf
|
|
|
|
fi
|
2013-05-03 20:28:58 +04:00
|
|
|
|
|
|
|
# fix the .desktop file for QA
|
|
|
|
sed -i 's/Network;FileTransfer/Network;FileTransfer;/g' uget-gtk.desktop
|
2012-10-14 19:43:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
src_configure() {
|
|
|
|
econf $(use_enable nls) \
|
|
|
|
$(use_enable curl plugin-curl) \
|
|
|
|
$(use_enable aria2 plugin-aria2) \
|
|
|
|
$(use_enable gstreamer) \
|
|
|
|
$(use_enable hide-temp-files hidden) \
|
|
|
|
$(use_enable libnotify notify)
|
|
|
|
}
|
|
|
|
|
|
|
|
src_compile() {
|
|
|
|
emake || die "emake failed"
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
emake DESTDIR="${D}" install
|
|
|
|
|
|
|
|
# the build system forgets this :p
|
|
|
|
dobin uget-cmd/uget-cmd
|
|
|
|
|
|
|
|
if [[ ${PV} == *9999* ]]; then
|
|
|
|
dodoc AUTHORS ChangeLog README
|
|
|
|
else
|
|
|
|
dodoc AUTHORS ChangeLog NEWS README
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
pkg_postinst() {
|
|
|
|
if use aria2; then
|
|
|
|
echo
|
|
|
|
elog "You've enabled the aria2 USE flag, so the aria2 plug-in has been"
|
|
|
|
elog "built. This allows you to control a local or remote instance of aria2"
|
|
|
|
elog "through xmlrpc. To use aria2 locally you have to emerge"
|
|
|
|
elog "net-misc/aria2 with the xmlrpc USE enabled manually."
|
|
|
|
echo
|
|
|
|
fi
|
|
|
|
}
|