summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2008-08-07 14:26:09 +0000
committerAlexis Ballier <aballier@gentoo.org>2008-08-07 14:26:09 +0000
commitc9fa35893734148a6beb9d3416e06ebd50e486fe (patch)
tree9259207af8b60f3cfb04a594233f10444613513c /media-sound/mpfc
parentStable on amd64, bug #234105 (diff)
downloadgentoo-2-c9fa35893734148a6beb9d3416e06ebd50e486fe.tar.gz
gentoo-2-c9fa35893734148a6beb9d3416e06ebd50e486fe.tar.bz2
gentoo-2-c9fa35893734148a6beb9d3416e06ebd50e486fe.zip
remove old
(Portage version: 2.2_rc6/cvs/Linux 2.6.26-gentoo x86_64)
Diffstat (limited to 'media-sound/mpfc')
-rw-r--r--media-sound/mpfc/ChangeLog5
-rw-r--r--media-sound/mpfc/mpfc-1.3.7.ebuild51
2 files changed, 4 insertions, 52 deletions
diff --git a/media-sound/mpfc/ChangeLog b/media-sound/mpfc/ChangeLog
index 67c8be4971e8..71d2f64716d1 100644
--- a/media-sound/mpfc/ChangeLog
+++ b/media-sound/mpfc/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for media-sound/mpfc
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mpfc/ChangeLog,v 1.24 2008/05/16 17:57:20 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mpfc/ChangeLog,v 1.25 2008/08/07 14:26:09 aballier Exp $
+
+ 07 Aug 2008; Alexis Ballier <aballier@gentoo.org> -mpfc-1.3.7.ebuild:
+ remove old
16 May 2008; nixnut <nixnut@gentoo.org> mpfc-1.3.7-r1.ebuild:
Stable on ppc wrt bug 216938
diff --git a/media-sound/mpfc/mpfc-1.3.7.ebuild b/media-sound/mpfc/mpfc-1.3.7.ebuild
deleted file mode 100644
index be6acfc95f51..000000000000
--- a/media-sound/mpfc/mpfc-1.3.7.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mpfc/mpfc-1.3.7.ebuild,v 1.7 2008/05/14 11:59:24 armin76 Exp $
-
-inherit eutils multilib
-
-DESCRIPTION="Music Player For Console"
-HOMEPAGE="http://mpfc.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="alsa gpm mad vorbis oss"
-
-RDEPEND="alsa? ( >=media-libs/alsa-lib-0.9.0 )
- gpm? ( >=sys-libs/gpm-1.19.3 )
- mad? ( media-libs/libmad )
- vorbis? ( media-libs/libvorbis )"
-
-src_unpack() {
- unpack ${A}
-
- # $(get_libdir) fixes
- cd "${S}"
- find . -name 'Makefile.in' |
- xargs grep ^libdir |
- cut -f1 -d: |
- xargs sed -i "s:^\(libdir.*\)/lib/\(.*\)$:\1/$(get_libdir)/\2:" || die
- epatch "${FILESDIR}/${PN}-gcc4.patch"
-}
-
-src_compile() {
- econf \
- $(use_enable alsa) \
- $(use_enable gpm) \
- $(use_enable mad mp3) \
- $(use_enable vorbis ogg) \
- $(use_enable oss) \
- || die "configure failed"
-
- emake || die "emake failed"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die "make install failed"
-
- insinto /etc; doins mpfcrc
-
- dodoc AUTHORS ChangeLog NEWS README
-}