diff options
author | Arcady Genkin <agenkin@gentoo.org> | 2002-08-13 17:23:19 +0000 |
---|---|---|
committer | Arcady Genkin <agenkin@gentoo.org> | 2002-08-13 17:23:19 +0000 |
commit | 07349f5a2ae44d2c6b3982a89b999091bbfb40b5 (patch) | |
tree | 3f8557c7a67a2276dc985d86e4f6ffda535734e3 /media-sound/mp3blaster | |
parent | submission #6260: qinx is a QNX-like kde/qt widget style pack (diff) | |
download | gentoo-2-07349f5a2ae44d2c6b3982a89b999091bbfb40b5.tar.gz gentoo-2-07349f5a2ae44d2c6b3982a89b999091bbfb40b5.tar.bz2 gentoo-2-07349f5a2ae44d2c6b3982a89b999091bbfb40b5.zip |
- Disabled NAS support (closes bug #5183).
Diffstat (limited to 'media-sound/mp3blaster')
-rw-r--r-- | media-sound/mp3blaster/ChangeLog | 9 | ||||
-rw-r--r-- | media-sound/mp3blaster/mp3blaster-3.1.1.ebuild | 34 |
2 files changed, 27 insertions, 16 deletions
diff --git a/media-sound/mp3blaster/ChangeLog b/media-sound/mp3blaster/ChangeLog index 4585fd1b02fb..b89f51ef54de 100644 --- a/media-sound/mp3blaster/ChangeLog +++ b/media-sound/mp3blaster/ChangeLog @@ -1,7 +1,14 @@ # ChangeLog for media-sound/mp3blaster # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3blaster/ChangeLog,v 1.3 2002/07/10 18:24:32 rphillips Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3blaster/ChangeLog,v 1.4 2002/08/13 17:23:19 agenkin Exp $ +*mp3blaster-3.1.1 (13 Aug 2002) + + 13 Aug 2002; Arcady Genkin <agenkin@thpoon.com> mp3blaster-3.1.1.ebuild : + + Updated the ebuild for 3.1.1 to exclude support for NAS, as it appears + to be broken (see bug 5183). + *mp3blaster-3.1 (10 Jun 2002) 10 Jun 2002; Ryan Phillips <rphillips@gentoo.org> mp3blaster-3.1.ebuild : diff --git a/media-sound/mp3blaster/mp3blaster-3.1.1.ebuild b/media-sound/mp3blaster/mp3blaster-3.1.1.ebuild index 97285ca60cfd..ae2b68249062 100644 --- a/media-sound/mp3blaster/mp3blaster-3.1.1.ebuild +++ b/media-sound/mp3blaster/mp3blaster-3.1.1.ebuild @@ -1,11 +1,10 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3blaster/mp3blaster-3.1.1.ebuild,v 1.4 2002/07/21 15:20:12 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3blaster/mp3blaster-3.1.1.ebuild,v 1.5 2002/08/13 17:23:19 agenkin Exp $ -S=${WORKDIR}/${P} -DESCRIPTION="MP3 command line player" -SRC_URI="ftp://mud.stack.nl/pub/mp3blaster/${P}.tar.gz" -HOMEPAGE="http://www.stack.nl/~brama/mp3blaster" +DESCRIPTION="Command line MP3 player." +HOMEPAGE="http://www.stack.nl/~brama/mp3blaster/" +LICENSE="GPL-2" DEPEND=">=sys-libs/ncurses-5.2 nas? ( >=media-libs/nas-1.4.1 ) @@ -13,12 +12,16 @@ DEPEND=">=sys-libs/ncurses-5.2 oggvorbis? ( >=media-libs/libvorbis-1.0_beta1 )" SLOT="0" -LICENSE="GPL-2" KEYWORDS="x86" +SRC_URI="ftp://mud.stack.nl/pub/mp3blaster/${P}.tar.gz" +S=${WORKDIR}/${P} src_compile() { local myconf - use nas && myconf="${myconf} --with-nas" + ### Looks like NAS support is broken, at least with NAS 1.5 and + ### mp3player 3.1.1 (Aug 13, agenkin@thpoon.com) + #use nas && myconf="${myconf} --with-nas" + myconf="${myconf} --disable-nas" use mysql && myconf="${myconf} --with-mysql" use oggvorbis || myconf="${myconf} --without-oggvorbis" @@ -26,14 +29,15 @@ src_compile() { econf ${myconf} || die - use nas && ( \ - cd src - sed -e "s:^INCLUDES =:INCLUDES = -I/usr/X11R6/include:" \ - -e "s:^splay_LDADD =:splay_LDADD = \$(NAS_LIBS):" \ - Makefile | cat > Makefile - - cd ${S} - ) + ### See comment above + #use nas && ( \ + # cd src + # sed -e "s:^INCLUDES =:INCLUDES = -I/usr/X11R6/include:" \ + # -e "s:^splay_LDADD =:splay_LDADD = \$(NAS_LIBS):" \ + # Makefile | cat > Makefile + # + # cd ${S} + #) # parallel make does not work make CC="gcc ${CFLAGS}" CXX="c++ ${CXXFLAGS}" || die |