blob: 79ae5de47e64f9b021800107901e70706972ed3a (
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
43
44
45
46
47
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/aria/aria-1.0.0.ebuild,v 1.12 2006/06/24 15:28:22 betelgeuse Exp $
inherit eutils
IUSE="nls"
DESCRIPTION="Aria is a download manager with a GTK+ GUI, it downloads files from the Internet via HTTP/HTTPS or FTP."
HOMEPAGE="http://aria.rednoah.com"
SRC_URI="http://aria.rednoah.com/storage/sources/${P}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="amd64 ~ppc sparc x86"
DEPEND="nls? ( sys-devel/gettext dev-util/intltool )
=dev-libs/glib-1.2*
=x11-libs/gtk+-1.2*
dev-libs/openssl"
src_unpack() {
unpack ${A}
epatch "${FILESDIR}"/${P}-xgettext-gentoo.diff
epatch "${FILESDIR}"/${P}-savefiles-gentoo.diff
epatch "${FILESDIR}"/${P}-bigendian.diff
epatch "${FILESDIR}"/${P}-gcc41.patch
}
src_compile() {
econf $(use_enable nls) || die "econf failed"
# This fixes an infinite loop bug
touch Makefile
emake || die "emake failed"
}
src_install() {
einstall || die
dodoc AUTHORS README* NEWS ChangeLog TODO COPYING
touch "${D}"/usr/share/aria/ftp_proxy.aria
touch "${D}"/usr/share/aria/gui.aria
touch "${D}"/usr/share/aria/history.aria
touch "${D}"/usr/share/aria/http_proxy.aria
}
|