summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2002-07-02 13:10:38 +0000
committerSeemant Kulleen <seemant@gentoo.org>2002-07-02 13:10:38 +0000
commit985e792d80e7309bdfed8dab80bde124d408567e (patch)
treec47e4a23bbf5f88f488cd197dce5af3d8767cedb /net-p2p/lopster
parenttypo (diff)
downloadhistorical-985e792d80e7309bdfed8dab80bde124d408567e.tar.gz
historical-985e792d80e7309bdfed8dab80bde124d408567e.tar.bz2
historical-985e792d80e7309bdfed8dab80bde124d408567e.zip
bug fix0rs for nls/intl stuff
Diffstat (limited to 'net-p2p/lopster')
-rw-r--r--net-p2p/lopster/ChangeLog9
-rw-r--r--net-p2p/lopster/files/digest-lopster-1.0.1.200207012
-rw-r--r--net-p2p/lopster/files/digest-lopster-1.0.1.200207021
-rw-r--r--net-p2p/lopster/lopster-1.0.1.20020702.ebuild43
4 files changed, 53 insertions, 2 deletions
diff --git a/net-p2p/lopster/ChangeLog b/net-p2p/lopster/ChangeLog
index 4c6bfda63aa9..ca13c9172841 100644
--- a/net-p2p/lopster/ChangeLog
+++ b/net-p2p/lopster/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for net-p2p/lopster
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/lopster/ChangeLog,v 1.3 2002/07/01 15:56:41 seemant Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/lopster/ChangeLog,v 1.4 2002/07/02 13:10:38 seemant Exp $
+
+*lopster-1.0.1.20020702 (02 Jul 2002)
+
+ 02 Jul 2002; Seemant Kulleen <seemant@gentoo.org>
+ lopster-1.0.1-20020702.ebuild files/digest-lopster-1.0.1.20020702 :
+
+ Bug fixes for the nls/intl stuff.
*lopster-1.0.1.20020701 (01 Jul 2002)
diff --git a/net-p2p/lopster/files/digest-lopster-1.0.1.20020701 b/net-p2p/lopster/files/digest-lopster-1.0.1.20020701
index bea6704b17df..780e4ab0f7d8 100644
--- a/net-p2p/lopster/files/digest-lopster-1.0.1.20020701
+++ b/net-p2p/lopster/files/digest-lopster-1.0.1.20020701
@@ -1 +1 @@
-MD5 fd0643fbbf65f25151b5ae0299597908 lopster-1.0.1.20020701.tar.bz2 500428
+MD5 f37328cd207f2632d89cc64af011ea33 lopster-1.0.1.20020701.tar.bz2 536490
diff --git a/net-p2p/lopster/files/digest-lopster-1.0.1.20020702 b/net-p2p/lopster/files/digest-lopster-1.0.1.20020702
new file mode 100644
index 000000000000..6da8fedcc080
--- /dev/null
+++ b/net-p2p/lopster/files/digest-lopster-1.0.1.20020702
@@ -0,0 +1 @@
+MD5 089d063575c99295b4520d270e075db2 lopster-1.0.1.20020702.tar.bz2 980583
diff --git a/net-p2p/lopster/lopster-1.0.1.20020702.ebuild b/net-p2p/lopster/lopster-1.0.1.20020702.ebuild
new file mode 100644
index 000000000000..7975548757e0
--- /dev/null
+++ b/net-p2p/lopster/lopster-1.0.1.20020702.ebuild
@@ -0,0 +1,43 @@
+# Copyright 2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/lopster/lopster-1.0.1.20020702.ebuild,v 1.1 2002/07/02 13:10:38 seemant Exp $
+
+S=${WORKDIR}/${PN}
+DESCRIPTION="A Napster Client using GTK"
+SRC_URI="http://www.ibiblio.org/pub/Linux/distributions/gentoo/distfiles/${P}.tar.bz2"
+HOMEPAGE="http://lopster.sourceforge.net"
+SLOT="0"
+LICENSE="GPL-2"
+
+DEPEND="=x11-libs/gtk+-1.2*"
+
+RDEPEND="nls? ( sys-devel/gettext )"
+
+src_compile() {
+ local myconf
+
+ ./autogen.sh
+ autoconf
+ cp configure.in configure.in.orig
+ sed -e "s:^intl/Makefile::" \
+ -e "s:AM_GNU_GETTEXT::" \
+ configure.in.orig > configure.in
+
+ cp Makefile.am Makefile.am.orig
+ sed "s:SUBDIR.*:SUBDIRS = m4 src:" \
+ Makefile.am.orig > Makefile.am
+
+ automake
+
+ econf || die
+
+ emake || die
+
+}
+
+src_install () {
+
+ einstall || die
+ dodoc AUTHORS BUGS README ChangeLog NEWS TODO
+}
+