summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2004-03-17 08:08:12 +0000
committerSeemant Kulleen <seemant@gentoo.org>2004-03-17 08:08:12 +0000
commitf8e29b9d18905e2786f4bfbdc57647e28fb9612a (patch)
tree666851fe191f586ce968c32b975d43c85fa442ec /net-misc
parentfix for bug #44712 by Michael Sterret <mr_bones_@gentoo.org> (diff)
downloadhistorical-f8e29b9d18905e2786f4bfbdc57647e28fb9612a.tar.gz
historical-f8e29b9d18905e2786f4bfbdc57647e28fb9612a.tar.bz2
historical-f8e29b9d18905e2786f4bfbdc57647e28fb9612a.zip
fix for bug #44712 by Michael Sterret <mr_bones_@gentoo.org> and also switch to econf and einstall and actually USE the USE flags
Diffstat (limited to 'net-misc')
-rw-r--r--net-misc/aria/ChangeLog6
-rw-r--r--net-misc/aria/Manifest8
-rw-r--r--net-misc/aria/aria-0.10.0.ebuild23
-rw-r--r--net-misc/aria/aria-0.10.2_beta7.ebuild26
-rw-r--r--net-misc/aria/aria-1.0.0.ebuild11
5 files changed, 31 insertions, 43 deletions
diff --git a/net-misc/aria/ChangeLog b/net-misc/aria/ChangeLog
index 45c37c86488a..1645d07c29db 100644
--- a/net-misc/aria/ChangeLog
+++ b/net-misc/aria/ChangeLog
@@ -1,7 +1,11 @@
# ChangeLog for net-misc/aria
# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/aria/ChangeLog,v 1.11 2004/03/01 21:34:08 aliz Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/aria/ChangeLog,v 1.12 2004/03/17 08:08:12 seemant Exp $
+ 17 Mar 2004; Seemant Kulleen <seemant@gentoo.org> aria-0.10.0.ebuild,
+ aria-0.10.2_beta7.ebuild, aria-1.0.0.ebuild:
+ fix for bug #44712 by Michael Sterret <mr_bones_@gentoo.org> and also switch
+ to econf and einstall and actually USE the USE flags
09 Feb 2004; root <root@gentoo.org> aria-0.10.0.ebuild,
aria-0.10.2_beta7.ebuild, aria-1.0.0.ebuild, metadata.xml,
diff --git a/net-misc/aria/Manifest b/net-misc/aria/Manifest
index 0338d6a6ee44..e2768e0ddf99 100644
--- a/net-misc/aria/Manifest
+++ b/net-misc/aria/Manifest
@@ -1,7 +1,7 @@
-MD5 b65f1f7554d32f647d1fb43c200079ad aria-0.10.0.ebuild 1023
-MD5 ff970f86ae872835292e6cc3b93b057a aria-1.0.0.ebuild 1135
-MD5 35a8490787badf684f3d8fdf0af0d6bf aria-0.10.2_beta7.ebuild 1108
-MD5 62e445fec5e404b2aabf62fbbf0b6491 ChangeLog 1568
+MD5 7ff2c1ffe30d01493f37e5700ab6d11b aria-0.10.0.ebuild 830
+MD5 392df174a5945387a5ddac6adaeecf55 aria-1.0.0.ebuild 1136
+MD5 30ada596fcb578bcccc0fb20eed6b4f3 aria-0.10.2_beta7.ebuild 864
+MD5 fe58e8a61b9baaef6c293ac60413956b ChangeLog 1824
MD5 2c3158204cfb4b9c36b8bc78e8421b16 metadata.xml 223
MD5 650691427e963c1e71e93aca6c62f0f4 files/digest-aria-1.0.0 63
MD5 e49bd8fb946e7f696225f4fb9d6b7bca files/digest-aria-0.10.2_beta7 69
diff --git a/net-misc/aria/aria-0.10.0.ebuild b/net-misc/aria/aria-0.10.0.ebuild
index ccbfde596cdf..d6de1a89a3b4 100644
--- a/net-misc/aria/aria-0.10.0.ebuild
+++ b/net-misc/aria/aria-0.10.0.ebuild
@@ -1,17 +1,17 @@
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/aria/aria-0.10.0.ebuild,v 1.9 2004/02/09 06:39:48 jhhudso Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/aria/aria-0.10.0.ebuild,v 1.10 2004/03/17 08:08:12 seemant Exp $
IUSE="nls"
S=${WORKDIR}/${P}
-
DESCRIPTION="Aria is a download manager with a GTK+ GUI, it downloads files from Internet via HTTP/HTTPS or FTP."
-SRC_URI="http://aria.rednoah.com/storage/sources/${P}.tar.bz2"
HOMEPAGE="http://aria.rednoah.com"
+SRC_URI="http://aria.rednoah.com/storage/sources/${P}.tar.bz2"
+
+SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc "
-SLOT="0"
RDEPEND="=dev-libs/glib-1.2*
=x11-libs/gtk+-1.2*
@@ -21,23 +21,14 @@ DEPEND="${RDEPEND}
nls? ( sys-devel/gettext
>=dev-util/intltool-0.11 )"
-
src_compile() {
- ./configure \
- --host=${CHOST} \
- --prefix=/usr \
- --infodir=/usr/share/info \
- --mandir=/usr/share/man || die "./configure failed"
+ econf \
+ `use_enable nls` || die
emake || die
}
src_install () {
- make \
- prefix=${D}/usr \
- mandir=${D}/usr/share/man \
- infodir=${D}/usr/share/info \
- install || die
+ einstall || die
dodoc AUTHORS README* NEWS ChangeLog TODO COPYING
}
-
diff --git a/net-misc/aria/aria-0.10.2_beta7.ebuild b/net-misc/aria/aria-0.10.2_beta7.ebuild
index a34aad82fe76..570d63995251 100644
--- a/net-misc/aria/aria-0.10.2_beta7.ebuild
+++ b/net-misc/aria/aria-0.10.2_beta7.ebuild
@@ -1,19 +1,19 @@
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/aria/aria-0.10.2_beta7.ebuild,v 1.6 2004/02/09 06:39:48 jhhudso Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/aria/aria-0.10.2_beta7.ebuild,v 1.7 2004/03/17 08:08:12 seemant Exp $
IUSE="nls"
-P=`echo ${P} | sed s/_beta/test/g`
-S=${WORKDIR}/${P}
-#A=`echo ${P}.tar.bz2 | sed s/_beta/test/g`
+MY_P=${P/_beta/test}
+S=${WORKDIR}/${MY_P}
DESCRIPTION="Aria is a download manager with a GTK+ GUI, it downloads files from Internet via HTTP/HTTPS or FTP."
-SRC_URI="http://aria.rednoah.com/storage/sources/${P}.tar.bz2"
HOMEPAGE="http://aria.rednoah.com"
+SRC_URI="http://aria.rednoah.com/storage/sources/${MY_P}.tar.bz2"
+
+SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc "
-SLOT="0"
RDEPEND="=dev-libs/glib-1.2*
=x11-libs/gtk+-1.2*
@@ -25,21 +25,13 @@ DEPEND="${RDEPEND}
src_compile() {
- ./configure \
- --host=${CHOST} \
- --prefix=/usr \
- --infodir=/usr/share/info \
- --mandir=/usr/share/man || die "./configure failed"
+ econf \
+ `use_enable nls` || die
emake || die
}
src_install () {
- make \
- prefix=${D}/usr \
- mandir=${D}/usr/share/man \
- infodir=${D}/usr/share/info \
- install || die
+ einstall || die
dodoc AUTHORS README* NEWS ChangeLog TODO COPYING
}
-
diff --git a/net-misc/aria/aria-1.0.0.ebuild b/net-misc/aria/aria-1.0.0.ebuild
index 870d9f23fe57..1a97c3a40527 100644
--- a/net-misc/aria/aria-1.0.0.ebuild
+++ b/net-misc/aria/aria-1.0.0.ebuild
@@ -1,21 +1,22 @@
# Copyright 1999-2004 Gentoo Technologies, Inc.
# 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.2 2004/02/09 06:39:48 jhhudso Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/aria/aria-1.0.0.ebuild,v 1.3 2004/03/17 08:08:12 seemant Exp $
+IUSE="nls"
+
+S=${WORKDIR}/${P}
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"
-LICENSE="GPL-2"
+
SLOT="0"
+LICENSE="GPL-2"
KEYWORDS="~x86 ~sparc"
-IUSE="nls"
DEPEND="nls? ( sys-devel/gettext dev-util/intltool )
dev-libs/glib
x11-libs/gtk+"
-S=${WORKDIR}/${P}
-
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/aria-1.0.0-xgettext-gentoo.diff