summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2013-06-15 10:28:50 +0000
committerTim Harder <radhermit@gentoo.org>2013-06-15 10:28:50 +0000
commitddb067cfe0fff6c48d7ed89a8e1948c5176079b7 (patch)
treef1b7b9340113084d39a2d725cadc5f9baeb93156 /media-sound
parentRemove old. (diff)
downloadgentoo-2-ddb067cfe0fff6c48d7ed89a8e1948c5176079b7.tar.gz
gentoo-2-ddb067cfe0fff6c48d7ed89a8e1948c5176079b7.tar.bz2
gentoo-2-ddb067cfe0fff6c48d7ed89a8e1948c5176079b7.zip
Version bump.
(Portage version: 2.2.0_alpha179/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'media-sound')
-rw-r--r--media-sound/abcm2ps/ChangeLog7
-rw-r--r--media-sound/abcm2ps/abcm2ps-7.5.5.ebuild44
2 files changed, 50 insertions, 1 deletions
diff --git a/media-sound/abcm2ps/ChangeLog b/media-sound/abcm2ps/ChangeLog
index a90645ec60b6..0eca740b4469 100644
--- a/media-sound/abcm2ps/ChangeLog
+++ b/media-sound/abcm2ps/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for media-sound/abcm2ps
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/abcm2ps/ChangeLog,v 1.77 2013/05/29 06:48:08 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/abcm2ps/ChangeLog,v 1.78 2013/06/15 10:28:50 radhermit Exp $
+
+*abcm2ps-7.5.5 (15 Jun 2013)
+
+ 15 Jun 2013; Tim Harder <radhermit@gentoo.org> +abcm2ps-7.5.5.ebuild:
+ Version bump.
*abcm2ps-7.5.4 (29 May 2013)
diff --git a/media-sound/abcm2ps/abcm2ps-7.5.5.ebuild b/media-sound/abcm2ps/abcm2ps-7.5.5.ebuild
new file mode 100644
index 000000000000..420e89415db3
--- /dev/null
+++ b/media-sound/abcm2ps/abcm2ps-7.5.5.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/abcm2ps/abcm2ps-7.5.5.ebuild,v 1.1 2013/06/15 10:28:50 radhermit Exp $
+
+EAPI=5
+
+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 ~x86"
+IUSE="examples pango"
+
+RDEPEND="pango? ( x11-libs/pango media-libs/freetype:2 )"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig"
+
+src_configure() {
+ econf \
+ --enable-a4 \
+ --enable-deco-is-roll \
+ $(use_enable pango)
+}
+
+src_install() {
+ dobin abcm2ps
+
+ insinto /usr/share/${PN}
+ doins *.fmt
+
+ dodoc Changes README *.txt
+
+ if use examples ; then
+ docinto examples
+ dodoc *.{abc,eps}
+ docompress -x /usr/share/doc/${PF}/examples
+ fi
+
+ docinto contrib
+ dodoc "${DISTDIR}"/transpose_abc.pl
+}