summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2006-07-29 07:18:21 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2006-07-29 07:18:21 +0000
commit6da7c60fe54e3aff9e017c0f430d17cd816ed0b3 (patch)
tree86b48d4d72d4a4d279dda7fd758624894e245467 /media-sound/madplay/madplay-0.15.0b-r1.ebuild
parentPrune old versions, and fix quoting. (diff)
downloadgentoo-2-6da7c60fe54e3aff9e017c0f430d17cd816ed0b3.tar.gz
gentoo-2-6da7c60fe54e3aff9e017c0f430d17cd816ed0b3.tar.bz2
gentoo-2-6da7c60fe54e3aff9e017c0f430d17cd816ed0b3.zip
Prune old versions, and fix quoting.
(Portage version: 2.1.1_pre4) (Signed Manifest commit)
Diffstat (limited to 'media-sound/madplay/madplay-0.15.0b-r1.ebuild')
-rw-r--r--media-sound/madplay/madplay-0.15.0b-r1.ebuild42
1 files changed, 0 insertions, 42 deletions
diff --git a/media-sound/madplay/madplay-0.15.0b-r1.ebuild b/media-sound/madplay/madplay-0.15.0b-r1.ebuild
deleted file mode 100644
index 6d2312add46c..000000000000
--- a/media-sound/madplay/madplay-0.15.0b-r1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/madplay/madplay-0.15.0b-r1.ebuild,v 1.15 2006/02/15 13:27:42 flameeyes Exp $
-
-DESCRIPTION="The MAD audio player"
-HOMEPAGE="http://mad.sourceforge.net"
-SRC_URI="mirror://sourceforge/mad/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 -mips ppc sparc x86"
-IUSE="debug nls"
-
-RDEPEND="~media-libs/libmad-${PV}
- ~media-libs/libid3tag-${PV}"
-
-DEPEND="${RDEPEND}
- nls? ( >=sys-devel/gettext-0.11.2 )"
-
-src_compile() {
- local myconf
-
- myconf="--with-gnu-ld"
- # --enable-profiling generate profiling code
- # --enable-experimental enable experimental code
- # --with-esd use Enlightened Sound Daemon (EsounD)
- # as default
-
- use debug && myconf="${myconf} --enable-debugging" \
- || myconf="${myconf} --disable-debugging"
-
- use nls || myconf="${myconf} --disable-nls"
-
- econf ${myconf} || die "configure failed"
- emake || die "make failed"
-}
-
-src_install() {
- einstall || die "make install failed"
-
- dodoc CHANGES COPYRIGHT CREDITS README TODO VERSION
-}