summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2011-06-25 23:36:55 +0000
committerTim Harder <radhermit@gentoo.org>2011-06-25 23:36:55 +0000
commitbcc9d052016e580c05ed589cc07330c092cf1f76 (patch)
tree7d198f4d3e54b86badb6fbe1ee07289f2ec234d8 /media-sound
parentVersion bump and remove old. Fix dependencies. (diff)
downloadgentoo-2-bcc9d052016e580c05ed589cc07330c092cf1f76.tar.gz
gentoo-2-bcc9d052016e580c05ed589cc07330c092cf1f76.tar.bz2
gentoo-2-bcc9d052016e580c05ed589cc07330c092cf1f76.zip
Version bump.
(Portage version: 2.2.0_alpha40/cvs/Linux x86_64)
Diffstat (limited to 'media-sound')
-rw-r--r--media-sound/abcm2ps/ChangeLog9
-rw-r--r--media-sound/abcm2ps/abcm2ps-5.9.23.ebuild42
2 files changed, 49 insertions, 2 deletions
diff --git a/media-sound/abcm2ps/ChangeLog b/media-sound/abcm2ps/ChangeLog
index c23dcf29af03..599f24d90512 100644
--- a/media-sound/abcm2ps/ChangeLog
+++ b/media-sound/abcm2ps/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for media-sound/abcm2ps
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/abcm2ps/ChangeLog,v 1.19 2010/08/27 17:02:56 armin76 Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/abcm2ps/ChangeLog,v 1.20 2011/06/25 23:36:55 radhermit Exp $
+
+*abcm2ps-5.9.23 (25 Jun 2011)
+
+ 25 Jun 2011; Tim Harder <radhermit@gentoo.org> +abcm2ps-5.9.23.ebuild:
+ Version bump.
27 Aug 2010; Raúl Porcel <armin76@gentoo.org> abcm2ps-5.9.15.ebuild:
sparc stable wrt #322859
diff --git a/media-sound/abcm2ps/abcm2ps-5.9.23.ebuild b/media-sound/abcm2ps/abcm2ps-5.9.23.ebuild
new file mode 100644
index 000000000000..d7b8b77e89ae
--- /dev/null
+++ b/media-sound/abcm2ps/abcm2ps-5.9.23.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/abcm2ps/abcm2ps-5.9.23.ebuild,v 1.1 2011/06/25 23:36:55 radhermit Exp $
+
+EAPI=4
+
+DESCRIPTION="A program to convert abc files to Postscript files"
+HOMEPAGE="http://moinejf.free.fr/"
+SRC_URI="http://moinejf.free.fr/${P}.tar.gz
+ http://moinejf.free.fr/transpose_abc.pl"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE=""
+
+src_prepare() {
+ sed -i \
+ -e '/LDFLAGS/s:=.*:= @LDFLAGS@:' \
+ Makefile.in || die
+}
+
+src_configure() {
+ econf \
+ --enable-a4 \
+ --enable-deco-is-roll
+}
+
+src_install() {
+ dobin abcm2ps
+
+ insinto /usr/share/${PN}
+ doins *.fmt
+
+ dodoc Changes README *.txt
+
+ insinto /usr/share/doc/${PF}/examples
+ doins *.{abc,eps}
+
+ insinto /usr/share/doc/${PF}/contrib
+ doins "${DISTDIR}"/transpose_abc.pl
+}