diff options
author | Jon Hood <squinky86@gentoo.org> | 2004-08-30 17:09:08 +0000 |
---|---|---|
committer | Jon Hood <squinky86@gentoo.org> | 2004-08-30 17:09:08 +0000 |
commit | e84a5776ed15d12756fefd009751125167a724bf (patch) | |
tree | 5547968d7f82b5793ff0f951e317237d014a4625 /net-p2p/lopster | |
parent | version bump + pruning _pre* (Manifest recommit) (diff) | |
download | gentoo-2-e84a5776ed15d12756fefd009751125167a724bf.tar.gz gentoo-2-e84a5776ed15d12756fefd009751125167a724bf.tar.bz2 gentoo-2-e84a5776ed15d12756fefd009751125167a724bf.zip |
version bump, #62232
Diffstat (limited to 'net-p2p/lopster')
-rw-r--r-- | net-p2p/lopster/ChangeLog | 7 | ||||
-rw-r--r-- | net-p2p/lopster/Manifest | 2 | ||||
-rw-r--r-- | net-p2p/lopster/files/digest-lopster-1.2.2 | 1 | ||||
-rw-r--r-- | net-p2p/lopster/lopster-1.2.2.ebuild | 36 |
4 files changed, 45 insertions, 1 deletions
diff --git a/net-p2p/lopster/ChangeLog b/net-p2p/lopster/ChangeLog index 5a7df336bbf8..ad2254338603 100644 --- a/net-p2p/lopster/ChangeLog +++ b/net-p2p/lopster/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-p2p/lopster # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/lopster/ChangeLog,v 1.14 2004/08/04 22:47:44 squinky86 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/lopster/ChangeLog,v 1.15 2004/08/30 17:09:08 squinky86 Exp $ + +*lopster-1.2.2 (30 Aug 2004) + + 30 Aug 2004; Jon Hood <squinky86@gentoo.org> +lopster-1.2.2.ebuild: + Version bump, add changes from arcosen@hotmail.com, #62232. 04 Aug 2004; Jon Hood <squinky86@gentoo.org> -lopster-1.0.2_pre5.ebuild, lopster-1.2.1.ebuild: diff --git a/net-p2p/lopster/Manifest b/net-p2p/lopster/Manifest index d97e64289f14..0c774f144e73 100644 --- a/net-p2p/lopster/Manifest +++ b/net-p2p/lopster/Manifest @@ -1,8 +1,10 @@ MD5 6e8e785ef9579e4583a0e49a94d03ffb lopster-1.2.1.ebuild 764 MD5 a28cbdce15fb5677081558349a37783f lopster-1.0.1.20020702.ebuild 915 MD5 e055b3162cb29ac58b74554a3e01d8a0 lopster-1.2.0.ebuild 1043 +MD5 effd8974fc5f3a9d8a8e697c50df6a5e lopster-1.2.2.ebuild 772 MD5 88d1f88a729c27e79c1b3d713f280ba8 ChangeLog 2725 MD5 8aefbc0e49db723ca1ad02d0c409cd49 metadata.xml 160 MD5 2396ef56fe0e679a9d49c12e329b6bfb files/digest-lopster-1.0.1.20020702 75 MD5 76fd2f6d6e63506f8d4a7c1c4b7b24ef files/digest-lopster-1.2.0 131 MD5 d3db9c66c67aa53a9a5ea5495dc8e25a files/digest-lopster-1.2.1 65 +MD5 2ec569a9b7f4db5c8ac15bbfcbd053d2 files/digest-lopster-1.2.2 65 diff --git a/net-p2p/lopster/files/digest-lopster-1.2.2 b/net-p2p/lopster/files/digest-lopster-1.2.2 new file mode 100644 index 000000000000..5c115a9615cb --- /dev/null +++ b/net-p2p/lopster/files/digest-lopster-1.2.2 @@ -0,0 +1 @@ +MD5 ae857116eddd01f1f7d2769908a142c0 lopster-1.2.2.tar.gz 630325 diff --git a/net-p2p/lopster/lopster-1.2.2.ebuild b/net-p2p/lopster/lopster-1.2.2.ebuild new file mode 100644 index 000000000000..d24034d035c9 --- /dev/null +++ b/net-p2p/lopster/lopster-1.2.2.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/lopster/lopster-1.2.2.ebuild,v 1.1 2004/08/30 17:09:08 squinky86 Exp $ + +IUSE="nls oggvorbis zlib flac" + +DESCRIPTION="A Napster Client using GTK" +HOMEPAGE="http://lopster.sourceforge.net" +SRC_URI="mirror://sourceforge/lopster/${P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~amd64" + +DEPEND="=x11-libs/gtk+-1.2*" +RDEPEND="nls? ( sys-devel/gettext ) + zlib? ( sys-libs/zlib ) + flac? ( media-libs/flac ) + oggvorbis? ( >=media-libs/libvorbis-1.0 )" + +src_compile() { + econf \ + --with-pthread \ + --with-zlib \ + `use_enable nls` \ + `use_with zlib` \ + `use_with flac` \ + `use_with oggvorbis ogg` || die "econf failed" + + emake || die +} + +src_install () { + einstall || die + dodoc AUTHORS BUGS README ChangeLog NEWS TODO +} |