diff options
author | 2004-06-29 14:16:20 +0000 | |
---|---|---|
committer | 2004-06-29 14:16:20 +0000 | |
commit | 85264b3bd6d21f966f59048aa366d78512768d4a (patch) | |
tree | f1fe48e83019c5a91e3329dc28a053acafd99c3b | |
parent | add norelro patch for uclibc (Manifest recommit) (diff) | |
download | gentoo-2-85264b3bd6d21f966f59048aa366d78512768d4a.tar.gz gentoo-2-85264b3bd6d21f966f59048aa366d78512768d4a.tar.bz2 gentoo-2-85264b3bd6d21f966f59048aa366d78512768d4a.zip |
version bump
-rw-r--r-- | media-libs/libmustux/Manifest | 10 | ||||
-rw-r--r-- | media-libs/libmustux/files/digest-libmustux-0.20.2 | 1 | ||||
-rw-r--r-- | media-libs/libmustux/libmustux-0.20.2.ebuild | 35 |
3 files changed, 42 insertions, 4 deletions
diff --git a/media-libs/libmustux/Manifest b/media-libs/libmustux/Manifest index b9e896db0fc5..c5ec59c24f0b 100644 --- a/media-libs/libmustux/Manifest +++ b/media-libs/libmustux/Manifest @@ -1,11 +1,13 @@ -MD5 61912160f99e6c01f1e23c9f04535b6c libmustux-0.17.5.ebuild 852 MD5 0387db62b10cc64a235757752fa10c4a libmustux-0.20.0.ebuild 824 +MD5 1e5481cd3300924ee7dd257f5b71d852 libmustux-0.20.2.ebuild 737 MD5 844ad48425f95769efac40e55e0b6569 libmustux-0.20.1.ebuild 824 +MD5 61912160f99e6c01f1e23c9f04535b6c libmustux-0.17.5.ebuild 852 MD5 7ce0a0b41f2e8868349b9244f839b546 ChangeLog 1994 -MD5 d0d7ea03e238a808414b4426394c100f metadata.xml 221 MD5 6451b437636c18e14a1eff71bdc71179 libmustux-0.16.0.ebuild 981 +MD5 d0d7ea03e238a808414b4426394c100f metadata.xml 221 MD5 fef0b54e949cfb0fe28896608d517516 files/libmustux-0.16.0-alsalib-fix.patch 480 -MD5 7514c5bcfb2fe30b6d14c9fdd04bae9a files/digest-libmustux-0.16.0 68 -MD5 ef3ef2ffeec56ba14dda1f266a6e4c13 files/digest-libmustux-0.17.5 68 MD5 763510bc391ac7485eb6af4aa4c01412 files/digest-libmustux-0.20.0 68 +MD5 ef3ef2ffeec56ba14dda1f266a6e4c13 files/digest-libmustux-0.17.5 68 +MD5 3c81d6bb6e17103411e654d928297b31 files/digest-libmustux-0.20.2 68 +MD5 7514c5bcfb2fe30b6d14c9fdd04bae9a files/digest-libmustux-0.16.0 68 MD5 cf5082c812a4848bacd63b5b8c0338f2 files/digest-libmustux-0.20.1 68 diff --git a/media-libs/libmustux/files/digest-libmustux-0.20.2 b/media-libs/libmustux/files/digest-libmustux-0.20.2 new file mode 100644 index 000000000000..f9f6e5652185 --- /dev/null +++ b/media-libs/libmustux/files/digest-libmustux-0.20.2 @@ -0,0 +1 @@ +MD5 787a3fa3241ee6d5765e9a109e6ba042 libmustux-0.20.2.tar.gz 344510 diff --git a/media-libs/libmustux/libmustux-0.20.2.ebuild b/media-libs/libmustux/libmustux-0.20.2.ebuild new file mode 100644 index 000000000000..2873d6079c04 --- /dev/null +++ b/media-libs/libmustux/libmustux-0.20.2.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libmustux/libmustux-0.20.2.ebuild,v 1.1 2004/06/29 14:16:20 zypher Exp $ + +inherit kde-functions + +DESCRIPTION="Protux - Libary" +HOMEPAGE="http://www.nognu.org/protux" +SRC_URI="http://vt.shuis.tudelft.nl/~remon/protux/stable/version-${PV}/${P}.tar.gz" + +IUSE="static" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc" + +RDEPEND="virtual/x11 + >=x11-libs/qt-3 + media-libs/alsa-lib" + +set-qtdir 3 + +src_compile() { + export QT_MOC=${QTDIR}/bin/moc + local myconf + myconf="--with-gnu-ld" + use static || myconf="${myconf} --enable-static=no" + econf ${myconf} || die "configure failed" + emake || die +} + +src_install() { + make DESTDIR=${D} install || die + dodoc AUTHORS COPYRIGHT ChangeLog NEWS README TODO +} |