diff options
author | Tim Harder <radhermit@gentoo.org> | 2011-09-18 23:30:31 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2011-09-18 23:30:31 +0000 |
commit | ce28fe36f6f2298928d1f3dbc3e6aa4b5e8fef5d (patch) | |
tree | e2545075367c32a167b090d54cdb44e1e389a019 /media-sound | |
parent | Fix if statement by adding a file test. (diff) | |
download | gentoo-2-ce28fe36f6f2298928d1f3dbc3e6aa4b5e8fef5d.tar.gz gentoo-2-ce28fe36f6f2298928d1f3dbc3e6aa4b5e8fef5d.tar.bz2 gentoo-2-ce28fe36f6f2298928d1f3dbc3e6aa4b5e8fef5d.zip |
Version bump to the latest development release.
(Portage version: 2.2.0_alpha58/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.4.3.ebuild | 43 |
2 files changed, 49 insertions, 1 deletions
diff --git a/media-sound/abcm2ps/ChangeLog b/media-sound/abcm2ps/ChangeLog index 432e63b91a65..65cc8e5c48ad 100644 --- a/media-sound/abcm2ps/ChangeLog +++ b/media-sound/abcm2ps/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/abcm2ps # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/abcm2ps/ChangeLog,v 1.21 2011/08/22 08:22:15 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/abcm2ps/ChangeLog,v 1.22 2011/09/18 23:30:31 radhermit Exp $ + +*abcm2ps-6.4.3 (18 Sep 2011) + + 18 Sep 2011; Tim Harder <radhermit@gentoo.org> +abcm2ps-6.4.3.ebuild: + Version bump to the latest development release. *abcm2ps-5.9.24 (22 Aug 2011) diff --git a/media-sound/abcm2ps/abcm2ps-6.4.3.ebuild b/media-sound/abcm2ps/abcm2ps-6.4.3.ebuild new file mode 100644 index 000000000000..b08f8078d275 --- /dev/null +++ b/media-sound/abcm2ps/abcm2ps-6.4.3.ebuild @@ -0,0 +1,43 @@ +# 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-6.4.3.ebuild,v 1.1 2011/09/18 23:30:31 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="examples" + +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 + + if use examples ; then + docinto examples + dodoc *.{abc,eps} + docompress -x /usr/share/doc/${PF}/examples + fi + + docinto contrib + dodoc "${DISTDIR}"/transpose_abc.pl +} |