diff options
author | 2003-06-25 20:46:29 +0000 | |
---|---|---|
committer | 2003-06-25 20:46:29 +0000 | |
commit | 0fdab6128936739d0589ae854fb6bbafea4f76ff (patch) | |
tree | a4a0678c2e613262c04daacaae4c464f17fe4b01 /media-sound/gqmpeg/gqmpeg-0.20.0.ebuild | |
parent | bump (diff) | |
download | gentoo-2-0fdab6128936739d0589ae854fb6bbafea4f76ff.tar.gz gentoo-2-0fdab6128936739d0589ae854fb6bbafea4f76ff.tar.bz2 gentoo-2-0fdab6128936739d0589ae854fb6bbafea4f76ff.zip |
Version bumped. Closes #19017.
Diffstat (limited to 'media-sound/gqmpeg/gqmpeg-0.20.0.ebuild')
-rw-r--r-- | media-sound/gqmpeg/gqmpeg-0.20.0.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/media-sound/gqmpeg/gqmpeg-0.20.0.ebuild b/media-sound/gqmpeg/gqmpeg-0.20.0.ebuild new file mode 100644 index 000000000000..15efd295e88e --- /dev/null +++ b/media-sound/gqmpeg/gqmpeg-0.20.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/gqmpeg/gqmpeg-0.20.0.ebuild,v 1.1 2003/06/25 20:46:19 mholzer Exp $ + +IUSE="nls gnome" + +S=${WORKDIR}/${P} +DESCRIPTION="front end to various audio players, including mpg123" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" +HOMEPAGE="http://gqmpeg.sourceforge.net/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86" + +DEPEND="=x11-libs/gtk+-1.2* + >=media-libs/gdk-pixbuf-0.13.0" + +RDEPEND="nls? ( sys-devel/gettext )" + +src_compile() { + local myconf + use nls || myconf="--disable-nls" + + econf ${myconf} || die + emake || die +} + +src_install() { + make DESTDIR=${D} install || die + + dodoc [A-KN-Z]* + + use gnome && ( \ + insinto /usr/share/gnome/apps/Multimedia + doins ${FILESDIR}/gqmpeg.desktop + ) +} |