Files
@ 3353ad542e61
Branch filter:
Location: ohnobinki_overlay/media-sound/shell-fm/shell-fm-0.7.ebuild - annotation
3353ad542e61
1.1 KiB
application/vnd.gentoo.ebuild
Bumped to live-2010.04.09, attempting to follow changes for the corresponding bump in portage. Need for bump reported by geos_one.
(Portage version: 2.2_rc67-r8/hg/Linux x86_64)
(Signed Manifest commit)
(Portage version: 2.2_rc67-r8/hg/Linux x86_64)
(Signed Manifest commit)
01eac8ac4869 01eac8ac4869 01eac8ac4869 01eac8ac4869 ed5a3b4174f7 01eac8ac4869 01eac8ac4869 01eac8ac4869 01eac8ac4869 01eac8ac4869 01eac8ac4869 01eac8ac4869 01eac8ac4869 01eac8ac4869 05ef91bce2df 01eac8ac4869 01eac8ac4869 01eac8ac4869 01eac8ac4869 01eac8ac4869 01eac8ac4869 01eac8ac4869 01eac8ac4869 01eac8ac4869 01eac8ac4869 01eac8ac4869 01eac8ac4869 01eac8ac4869 01eac8ac4869 01eac8ac4869 01eac8ac4869 01eac8ac4869 01eac8ac4869 01eac8ac4869 01eac8ac4869 01eac8ac4869 01eac8ac4869 01eac8ac4869 01eac8ac4869 01eac8ac4869 01eac8ac4869 01eac8ac4869 01eac8ac4869 | # 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.3 2010/04/18 00:23:14 josejx Exp $
EAPI=3
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 ~amd64-linux ~ppc ~x86"
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"
}
|