diff options
author | Tim Harder <radhermit@gentoo.org> | 2013-05-29 06:48:08 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2013-05-29 06:48:08 +0000 |
commit | 5d341898e4731933a8230355f8de315f71d32130 (patch) | |
tree | 028f2227688c7ad287422cad804307eb2e8fbbb3 /media-sound/abcm2ps | |
parent | Fix REQUIRED_USE for python-r1 by lorem_ipsum (diff) | |
download | gentoo-2-5d341898e4731933a8230355f8de315f71d32130.tar.gz gentoo-2-5d341898e4731933a8230355f8de315f71d32130.tar.bz2 gentoo-2-5d341898e4731933a8230355f8de315f71d32130.zip |
Version bump.
(Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'media-sound/abcm2ps')
-rw-r--r-- | media-sound/abcm2ps/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/abcm2ps/abcm2ps-7.5.4.ebuild | 44 |
2 files changed, 50 insertions, 1 deletions
diff --git a/media-sound/abcm2ps/ChangeLog b/media-sound/abcm2ps/ChangeLog index 1f94a2829377..a90645ec60b6 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.76 2013/04/29 07:28:31 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/abcm2ps/ChangeLog,v 1.77 2013/05/29 06:48:08 radhermit Exp $ + +*abcm2ps-7.5.4 (29 May 2013) + + 29 May 2013; Tim Harder <radhermit@gentoo.org> +abcm2ps-7.5.4.ebuild: + Version bump. 29 Apr 2013; Tim Harder <radhermit@gentoo.org> -abcm2ps-7.3.4.ebuild, -abcm2ps-7.4.0.ebuild, -abcm2ps-7.5.0.ebuild: diff --git a/media-sound/abcm2ps/abcm2ps-7.5.4.ebuild b/media-sound/abcm2ps/abcm2ps-7.5.4.ebuild new file mode 100644 index 000000000000..0684170fa55e --- /dev/null +++ b/media-sound/abcm2ps/abcm2ps-7.5.4.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.4.ebuild,v 1.1 2013/05/29 06:48:08 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 +} |