summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Faulhammer <fauli@gentoo.org>2009-01-29 08:10:18 +0000
committerChristian Faulhammer <fauli@gentoo.org>2009-01-29 08:10:18 +0000
commite521472595263963cdfdf693a780687347764306 (patch)
tree2afd9bdc376a96cf62d24162b756f7766dfc7faa /app-emacs
parentilent bump to ooo-build-3.0.1.1 patchset, some minor bugfixes, for instance B... (diff)
downloadgentoo-2-e521472595263963cdfdf693a780687347764306.tar.gz
gentoo-2-e521472595263963cdfdf693a780687347764306.tar.bz2
gentoo-2-e521472595263963cdfdf693a780687347764306.zip
version bump
(Portage version: 2.1.6.4/cvs/Linux 2.6.27-gentoo-r8 i686)
Diffstat (limited to 'app-emacs')
-rw-r--r--app-emacs/mpg123-el/ChangeLog8
-rw-r--r--app-emacs/mpg123-el/mpg123-el-1.51.ebuild39
2 files changed, 46 insertions, 1 deletions
diff --git a/app-emacs/mpg123-el/ChangeLog b/app-emacs/mpg123-el/ChangeLog
index 472a49461f2f..07cf5e62263e 100644
--- a/app-emacs/mpg123-el/ChangeLog
+++ b/app-emacs/mpg123-el/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for app-emacs/mpg123-el
# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/mpg123-el/ChangeLog,v 1.15 2009/01/29 02:30:36 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/mpg123-el/ChangeLog,v 1.16 2009/01/29 08:10:18 fauli Exp $
+
+*mpg123-el-1.51 (29 Jan 2009)
+
+ 29 Jan 2009; Christian Faulhammer <fauli@gentoo.org>
+ +mpg123-el-1.51.ebuild:
+ version bump
29 Jan 2009; Christian Faulhammer <fauli@gentoo.org>
-mpg123-el-1.47.ebuild:
diff --git a/app-emacs/mpg123-el/mpg123-el-1.51.ebuild b/app-emacs/mpg123-el/mpg123-el-1.51.ebuild
new file mode 100644
index 000000000000..81bb429c9686
--- /dev/null
+++ b/app-emacs/mpg123-el/mpg123-el-1.51.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/mpg123-el/mpg123-el-1.51.ebuild,v 1.1 2009/01/29 08:10:18 fauli Exp $
+
+inherit elisp toolchain-funcs
+
+DESCRIPTION="Emacs front-end to mpg123 audio player and OggVorbis audio player"
+HOMEPAGE="http://www.gentei.org/~yuuji/software/mpg123el/"
+SRC_URI="mirror://gentoo/${P}.tar.bz2"
+
+LICENSE="freedist"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="vorbis"
+
+DEPEND=""
+RDEPEND="${DEPEND}
+ virtual/mpg123
+ media-sound/aumix
+ vorbis? ( media-sound/vorbis-tools )"
+
+SITEFILE=50${PN}-gentoo.el
+
+src_compile(){
+ sed -i -e "s/\(mainloop:\)/\1 ;/" tagput.c || die
+ $(tc-getCC) ${CFLAGS} -o tagput tagput.c || die
+ $(tc-getCC) ${CFLAGS} -o id3put id3put.c || die
+ elisp-compile *.el
+}
+
+src_install(){
+ dobin tagput || die
+ dobin id3put || die
+
+ elisp-install ${PN} *.el *.elc
+ elisp-site-file-install "${FILESDIR}/${SITEFILE}"
+
+ dodoc README
+}