You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-emacs/bongo/bongo-20090713.ebuild

54 lines
1.4 KiB

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/bongo/bongo-20090713.ebuild,v 1.2 2013/04/05 18:58:32 ulm Exp $
NEED_EMACS=22
inherit elisp eutils
DESCRIPTION="Buffer-oriented media player for Emacs"
HOMEPAGE="http://www.brockman.se/software/bongo/"
# Darcs snapshot of http://www.brockman.se/software/bongo/
# MPlayer support from http://www.emacswiki.org/emacs/bongo-mplayer.el
SRC_URI="mirror://gentoo/${P}.tar.bz2
mplayer? ( mirror://gentoo/${PN}-mplayer-20070204.tar.bz2 )"
LICENSE="GPL-2+ FDL-1.2+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="mplayer taglib"
# NOTE: Bongo can use almost anything for playing media files, therefore
# the dependency possibilities are so broad that we refrain from including
# any media players explicitly in DEPEND/RDEPEND.
DEPEND="app-emacs/volume"
RDEPEND="${DEPEND}
taglib? ( dev-ruby/ruby-taglib )"
S="${WORKDIR}/${PN}"
DOCS="NEWS README"
ELISP_TEXINFO="${PN}.texinfo"
SITEFILE="50${PN}-gentoo.el"
src_unpack() {
unpack ${A}
cd "${S}"
# We need Emacs 22 for image-load-path anyway, so don't bother with 21.
rm -f bongo-emacs21.el
epatch "${FILESDIR}/${PN}-20070619-fix-require.patch"
}
src_install() {
elisp_src_install
insinto "${SITEETC}/${PN}"
doins *.pbm *.png || die "doins failed"
if use taglib; then
dobin tree-from-tags.rb || die "dobin failed"
fi
}