diff options
author | John J. Ellis <jje@gentoo.org> | 2003-09-27 11:46:27 +0000 |
---|---|---|
committer | John J. Ellis <jje@gentoo.org> | 2003-09-27 11:46:27 +0000 |
commit | fdc45c72d8c275e096ea6ad4f1b0810fd1511165 (patch) | |
tree | 422bf40c7eb2e68c11564d56d830d1d187d4292f /media-sound/muse | |
parent | Version bump, ~x86 masked. Closes #29669. (diff) | |
download | historical-fdc45c72d8c275e096ea6ad4f1b0810fd1511165.tar.gz historical-fdc45c72d8c275e096ea6ad4f1b0810fd1511165.tar.bz2 historical-fdc45c72d8c275e096ea6ad4f1b0810fd1511165.zip |
Version bump, ~x86 masked. Closes #29669.
Diffstat (limited to 'media-sound/muse')
-rw-r--r-- | media-sound/muse/Manifest | 4 | ||||
-rw-r--r-- | media-sound/muse/files/digest-muse-0.8.1 | 1 | ||||
-rw-r--r-- | media-sound/muse/muse-0.8.1.ebuild | 63 |
3 files changed, 66 insertions, 2 deletions
diff --git a/media-sound/muse/Manifest b/media-sound/muse/Manifest index 25c80b580d45..20924fd0dd2a 100644 --- a/media-sound/muse/Manifest +++ b/media-sound/muse/Manifest @@ -1,5 +1,5 @@ MD5 1fa07cc326cb11840f979e768b57f0df muse-0.7.2.ebuild 1671 -MD5 a90366947358e05f707c38edb50a0ad3 ChangeLog 374 -MD5 1fa07cc326cb11840f979e768b57f0df muse-0.8.1.ebuild 1671 +MD5 abaf18f016cfa1d92a5dec22eb61c2c2 ChangeLog 429 +MD5 36d8c7e9395ef7b4693ada17d3db2685 muse-0.8.1.ebuild 1667 MD5 c8ff39e0c7d648cde748b5bc727f8622 files/digest-muse-0.7.2 62 MD5 db2be964bea7450de6d4cbfb7f071c34 files/digest-muse-0.8.1 62 diff --git a/media-sound/muse/files/digest-muse-0.8.1 b/media-sound/muse/files/digest-muse-0.8.1 new file mode 100644 index 000000000000..57215dc55dbd --- /dev/null +++ b/media-sound/muse/files/digest-muse-0.8.1 @@ -0,0 +1 @@ +MD5 1ca2c62aa2db10f92ee5a864da736e34 MuSE-0.8.1.tar.gz 624750 diff --git a/media-sound/muse/muse-0.8.1.ebuild b/media-sound/muse/muse-0.8.1.ebuild new file mode 100644 index 000000000000..bbd4fda813c7 --- /dev/null +++ b/media-sound/muse/muse-0.8.1.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/muse/muse-0.8.1.ebuild,v 1.1 2003/09/27 11:46:23 jje Exp $ + +IUSE="ncurses oggvorbis X" + +S=${WORKDIR}/${P/muse/MuSE} + +DESCRIPTION="Multiple Streaming Engine, an icecast source streamer" +SRC_URI="http://savannah.nongnu.org/download/muse/${P/muse/MuSE}.tar.gz" +HOMEPAGE="http://muse.dyne.org/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +DEPEND="virtual/glibc + >=sys-apps/portage-2.0.45-r3 + >=media-sound/lame-3.92 + >=sys-apps/sed-4.0.5 + ncurses? ( >=sys-libs/ncurses-5.2 ) + oggvorbis? ( >=media-libs/libogg-1.0 >=media-libs/libvorbis-1.0-r1 ) + X? ( =x11-libs/gtk+-1* )" + +RDEPEND="virtual/glibc + >=media-sound/lame-3.92 + ncurses? ( >=sys-libs/ncurses-5.2 ) + oggvorbis? ( >=media-libs/libogg-1.0 >=media-libs/libvorbis-1.0-r1 ) + X? ( =x11-libs/gtk+-1* )" + +src_compile() { + local xcmd + + # if media-libs/{libogg,libvorbis} are installed, the configure script + # will automatically enable oggvorbis support + if ! use oggvorbis; then + xcmd="s:\"\$have_\(ogg\|vorbis\)\":\"no\":;" + fi + + # if sys-libs/ncurses is installed, the configure script will + # automatically build the ncurses GUI + if ! use ncurses; then + xcmd="$xcmd /^GUI_RUBIK/s:true:false:" + fi + + [ "$xcmd" ] && sed -i "$xcmd" configure + + econf `use_with X x` \ + --disable-debug + + emake CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" || die "Make failed" +} + +src_install() { + dobin muse + dodoc AUTHORS ChangeLog NEWS README TODO USAGE +} + +pkg_postinst() { + einfo + einfo "You may want to have a look at /usr/share/doc/${PF}/USAGE.gz for more info." + einfo +} |