summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-sound/shell-fm/shell-fm-0.7.ebuild')
-rw-r--r--media-sound/shell-fm/shell-fm-0.7.ebuild43
1 files changed, 0 insertions, 43 deletions
diff --git a/media-sound/shell-fm/shell-fm-0.7.ebuild b/media-sound/shell-fm/shell-fm-0.7.ebuild
deleted file mode 100644
index 1bd4ce6bf060..000000000000
--- a/media-sound/shell-fm/shell-fm-0.7.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/shell-fm/shell-fm-0.7.ebuild,v 1.4 2010/08/18 21:05:26 darkside Exp $
-
-EAPI=2
-inherit flag-o-matic toolchain-funcs eutils
-
-DESCRIPTION="A lightweight console based player for Last.FM radio streams"
-HOMEPAGE="http://nex.scrapping.cc/shell-fm/"
-# I couldn't get constant tarball from github so I've tarballed this myself.
-SRC_URI="mirror://gentoo/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux"
-IUSE=""
-
-RDEPEND="media-libs/libmad
- media-libs/libao
- media-libs/taglib"
-DEPEND="${RDEPEND}
- dev-util/pkgconfig
- sys-apps/sed"
-
-src_prepare() {
- epatch "${FILESDIR}/${P}-asneeded.patch"
- sed -i -e "s:-Os::" source/Makefile || die "sed failed"
-}
-
-src_compile() {
- tc-export CC
- if use ppc; then
- append-flags -DWORDS_BIGENDIAN=1
- fi
- emake || die "emake failed"
-}
-
-src_install() {
- dobin source/${PN} || die "dobin failed"
- doman manual/${PN}.1 || die
- exeinto /usr/share/${PN}/scripts
- doexe scripts/{*.sh,*.pl,zcontrol} || die "doexe failed"
-}