summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2013-11-23 20:59:09 +0000
committerTim Harder <radhermit@gentoo.org>2013-11-23 20:59:09 +0000
commit7235631f22040ce31e6a7a9b5ea538ab5b76b91f (patch)
tree84e3138edea18745e86be5be141e3c4fdb1ffa02 /media-sound/abcm2ps
parentversion bump (diff)
downloadgentoo-2-7235631f22040ce31e6a7a9b5ea538ab5b76b91f.tar.gz
gentoo-2-7235631f22040ce31e6a7a9b5ea538ab5b76b91f.tar.bz2
gentoo-2-7235631f22040ce31e6a7a9b5ea538ab5b76b91f.zip
Version bump.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'media-sound/abcm2ps')
-rw-r--r--media-sound/abcm2ps/ChangeLog7
-rw-r--r--media-sound/abcm2ps/abcm2ps-7.6.8.ebuild44
2 files changed, 50 insertions, 1 deletions
diff --git a/media-sound/abcm2ps/ChangeLog b/media-sound/abcm2ps/ChangeLog
index b2eded8a61e9..f68c50a3985e 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.84 2013/11/12 09:29:33 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/abcm2ps/ChangeLog,v 1.85 2013/11/23 20:59:09 radhermit Exp $
+
+*abcm2ps-7.6.8 (23 Nov 2013)
+
+ 23 Nov 2013; Tim Harder <radhermit@gentoo.org> +abcm2ps-7.6.8.ebuild:
+ Version bump.
*abcm2ps-7.6.7 (12 Nov 2013)
diff --git a/media-sound/abcm2ps/abcm2ps-7.6.8.ebuild b/media-sound/abcm2ps/abcm2ps-7.6.8.ebuild
new file mode 100644
index 000000000000..65bf0c5f0bd1
--- /dev/null
+++ b/media-sound/abcm2ps/abcm2ps-7.6.8.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.6.8.ebuild,v 1.1 2013/11/23 20:59:09 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
+}