summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <drac@gentoo.org>2008-03-22 07:29:01 +0000
committerSamuli Suominen <drac@gentoo.org>2008-03-22 07:29:01 +0000
commitd8a611cd67e1f44fdd1b58b32a5906fed014a63c (patch)
tree1c6e6ad7e0ea451beacd8a2433062b6e3418f32b /media-sound/mp3blaster
parentSane default values for palette and theme directories. (diff)
downloadgentoo-2-d8a611cd67e1f44fdd1b58b32a5906fed014a63c.tar.gz
gentoo-2-d8a611cd67e1f44fdd1b58b32a5906fed014a63c.tar.bz2
gentoo-2-d8a611cd67e1f44fdd1b58b32a5906fed014a63c.zip
old
(Portage version: 2.1.4.4)
Diffstat (limited to 'media-sound/mp3blaster')
-rw-r--r--media-sound/mp3blaster/mp3blaster-3.2.0.ebuild57
1 files changed, 0 insertions, 57 deletions
diff --git a/media-sound/mp3blaster/mp3blaster-3.2.0.ebuild b/media-sound/mp3blaster/mp3blaster-3.2.0.ebuild
deleted file mode 100644
index 1018004ebbd0..000000000000
--- a/media-sound/mp3blaster/mp3blaster-3.2.0.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3blaster/mp3blaster-3.2.0.ebuild,v 1.14 2007/03/01 18:54:46 aballier Exp $
-
-inherit toolchain-funcs
-
-DESCRIPTION="Command line MP3 player."
-HOMEPAGE="http://www.stack.nl/~brama/mp3blaster/"
-SRC_URI="http://www.stack.nl/~brama/mp3blaster/src/${P}.tar.gz"
-
-SLOT="0"
-KEYWORDS="alpha amd64 ppc ppc64 sparc x86"
-LICENSE="GPL-2"
-IUSE="vorbis mysql lirc"
-
-DEPEND=">=sys-libs/ncurses-5.2
- mysql? ( virtual/mysql )
- lirc? ( app-misc/lirc )
- vorbis? ( >=media-libs/libvorbis-1.0_beta1 )"
-# nas? ( >=media-libs/nas-1.4.1 )
-
-src_unpack() {
- unpack ${A}
-
- #if use nas; then
- # cd src
- # sed -e "s:^INCLUDES =:INCLUDES = -I/usr/X11R6/include:" \
- # -e "s:^splay_LDADD =:splay_LDADD = \$(NAS_LIBS):" \
- # Makefile | cat > Makefile
- #fi
-}
-
-src_compile() {
- local myconf
- # Prevents collisions with media-sound/splay
- sed -i "s/splay.1/splay_mp3blaster.1/" Makefile.in\
- || die "sedding makefile failed"
- mv splay.1 splay_mp3blaster.1 || die "renaming splay man failed"
- ### Looks like NAS support is broken, at least with NAS 1.5 and
- ### mp3player 3.1.1 (Aug 13, agenkin@thpoon.com)
- ### Ditto nas-1.6c-r1, mp3blaster-3.2.0 (2004.06.23 - eradicator)
- myconf="${myconf} --without-nas \
- `use_with lirc` \
- `use_with mysql` \
- `use_with vorbis`"
-
- econf ${myconf} || die
- make CC="$(tc-getCC) ${CFLAGS}" CXX="$(tc-getCXX) ${CXXFLAGS}" || die
-}
-
-src_install() {
- make DESTDIR="${D}" install || die
- # Prevent collisions with media-sound/splay
- mv "${D}/usr/bin/splay" "${D}/usr/bin/splay_mp3blaster"\
- || die "moving splay to splay_mp3blaster failed"
- dodoc ANNOUNCE AUTHORS CREDITS ChangeLog FAQ NEWS README TODO
-}