diff options
author | Tim Harder <radhermit@gentoo.org> | 2012-02-15 09:31:10 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2012-02-15 09:31:10 +0000 |
commit | 53411317e41597301fe2439e9d60a995cbea3b1d (patch) | |
tree | 4323048da9b9237a37ecf09414ce934d61d33e32 /media-sound | |
parent | Update HOMEPAGE and SRC_URI, thanks Lorenz in bug #394607 (diff) | |
download | historical-53411317e41597301fe2439e9d60a995cbea3b1d.tar.gz historical-53411317e41597301fe2439e9d60a995cbea3b1d.tar.bz2 historical-53411317e41597301fe2439e9d60a995cbea3b1d.zip |
Version bump.
Package-Manager: portage-2.2.0_alpha86/cvs/Linux x86_64
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/abcm2ps/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/abcm2ps/abcm2ps-6.6.6.ebuild | 44 |
2 files changed, 50 insertions, 1 deletions
diff --git a/media-sound/abcm2ps/ChangeLog b/media-sound/abcm2ps/ChangeLog index b64df03ddfd5..661625205ea7 100644 --- a/media-sound/abcm2ps/ChangeLog +++ b/media-sound/abcm2ps/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/abcm2ps # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/abcm2ps/ChangeLog,v 1.40 2012/02/07 07:53:08 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/abcm2ps/ChangeLog,v 1.41 2012/02/15 09:31:10 radhermit Exp $ + +*abcm2ps-6.6.6 (15 Feb 2012) + + 15 Feb 2012; Tim Harder <radhermit@gentoo.org> +abcm2ps-6.6.6.ebuild: + Version bump. *abcm2ps-6.6.5 (07 Feb 2012) diff --git a/media-sound/abcm2ps/abcm2ps-6.6.6.ebuild b/media-sound/abcm2ps/abcm2ps-6.6.6.ebuild new file mode 100644 index 000000000000..de87d393d9a0 --- /dev/null +++ b/media-sound/abcm2ps/abcm2ps-6.6.6.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/abcm2ps/abcm2ps-6.6.6.ebuild,v 1.1 2012/02/15 09:31:10 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 ~x86" +IUSE="examples pango" + +RDEPEND="pango? ( x11-libs/pango media-libs/freetype:2 )" +DEPEND="${RDEPEND} + dev-util/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 +} |