diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-11-30 21:22:31 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-11-30 21:22:31 +0000 |
commit | fccaf7912f45d288e8a91427a77434a466c52b64 (patch) | |
tree | ca157830962b0a1bfaa1c928c61c3f29b80d7cbc /net-p2p | |
parent | Changed mkdir ${D} to dodir ${D} (diff) | |
download | historical-fccaf7912f45d288e8a91427a77434a466c52b64.tar.gz historical-fccaf7912f45d288e8a91427a77434a466c52b64.tar.bz2 historical-fccaf7912f45d288e8a91427a77434a466c52b64.zip |
version bump
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/lopster/ChangeLog | 11 | ||||
-rw-r--r-- | net-p2p/lopster/files/digest-lopster-1.0.2_pre5 | 1 | ||||
-rw-r--r-- | net-p2p/lopster/lopster-1.0.2_pre5.ebuild | 50 |
3 files changed, 61 insertions, 1 deletions
diff --git a/net-p2p/lopster/ChangeLog b/net-p2p/lopster/ChangeLog index 56bb6006f97f..ffbace5ddeb7 100644 --- a/net-p2p/lopster/ChangeLog +++ b/net-p2p/lopster/ChangeLog @@ -1,6 +1,15 @@ # 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.5 2002/07/26 05:09:02 gerk Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/lopster/ChangeLog,v 1.6 2002/11/30 21:22:31 seemant Exp $ + +*lopster-1.0.2_pre5 (30 Nov 2002) + + 30 Nov 2002; Seemant Kulleen <seemant@gentoo.org> + lopster-1.0.2_pre5.ebuild files/digest-lopster-1.0.2_pre5 : + + The version is a misnomer, but it is a cvs snapshot, labelled + 1.0.1-dev5.12 on the lopster site. Either way, it is a version bump that + addresses many issues. *lopster-1.0.1.20020702 (02 Jul 2002) diff --git a/net-p2p/lopster/files/digest-lopster-1.0.2_pre5 b/net-p2p/lopster/files/digest-lopster-1.0.2_pre5 new file mode 100644 index 000000000000..a9a49fefbb5d --- /dev/null +++ b/net-p2p/lopster/files/digest-lopster-1.0.2_pre5 @@ -0,0 +1 @@ +MD5 c4fbbf5c805833efdf939a97b12307fe lopster-1.0.1-dev5.12.tar.gz 751811 diff --git a/net-p2p/lopster/lopster-1.0.2_pre5.ebuild b/net-p2p/lopster/lopster-1.0.2_pre5.ebuild new file mode 100644 index 000000000000..f30bb396517d --- /dev/null +++ b/net-p2p/lopster/lopster-1.0.2_pre5.ebuild @@ -0,0 +1,50 @@ +# Copyright 2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/lopster/lopster-1.0.2_pre5.ebuild,v 1.1 2002/11/30 21:22:31 seemant Exp $ + +IUSE="nls" + +MY_P=${P/2_pre/1-dev} +MY_P=${MY_P}.12 +S=${WORKDIR}/${MY_P} +DESCRIPTION="A Napster Client using GTK" +SRC_URI="http://lopster.sourceforge.net/download/${MY_P}.tar.gz" +HOMEPAGE="http://lopster.sourceforge.net" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86 ppc" + +DEPEND="=x11-libs/gtk+-1.2*" +RDEPEND="nls? ( sys-devel/gettext )" + +src_compile() { + local myconf + + aclocal -I m4 + cp po/Makevars.template po/Makevars + autoconf + automake +# 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 + + use nls || myconf="${myconf} --disable-nls" + + econf \ + --with-pthread \ + --with-zlib \ + ${myconf} + + emake || die +} + +src_install () { + einstall || die + dodoc AUTHORS BUGS README ChangeLog NEWS TODO +} |