diff options
author | Ulrich Müller <ulm@gentoo.org> | 2009-10-16 17:48:47 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2009-10-16 17:48:47 +0000 |
commit | f4a020352aa2276e9b94ff1332779f463f30aeee (patch) | |
tree | 881f2c8a105eaf72b070d3acc7ff44580aa4ab06 /app-emacs/bongo/bongo-20090713.ebuild | |
parent | Export PYTHONDONTWRITEBYTECODE to avoid potential sandbox violations during c... (diff) | |
download | historical-f4a020352aa2276e9b94ff1332779f463f30aeee.tar.gz historical-f4a020352aa2276e9b94ff1332779f463f30aeee.tar.bz2 historical-f4a020352aa2276e9b94ff1332779f463f30aeee.zip |
Version bump. Renamed distfile for bongo-mplayer.
Package-Manager: portage-2.2_rc46/cvs/Linux i686
Diffstat (limited to 'app-emacs/bongo/bongo-20090713.ebuild')
-rw-r--r-- | app-emacs/bongo/bongo-20090713.ebuild | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/app-emacs/bongo/bongo-20090713.ebuild b/app-emacs/bongo/bongo-20090713.ebuild new file mode 100644 index 000000000000..7e87ea45b1cc --- /dev/null +++ b/app-emacs/bongo/bongo-20090713.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2009 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.1 2009/10/16 17:48:46 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 +} |