diff options
author | Tim Harder <radhermit@gentoo.org> | 2014-02-28 11:17:26 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2014-02-28 11:17:26 +0000 |
commit | 913ff671a92fc882126f105de99d5b576168299f (patch) | |
tree | fe147392b81559cef859cbcadb48daabbf8046de /media-sound/abcm2ps | |
parent | Version bump. (diff) | |
download | gentoo-2-913ff671a92fc882126f105de99d5b576168299f.tar.gz gentoo-2-913ff671a92fc882126f105de99d5b576168299f.tar.bz2 gentoo-2-913ff671a92fc882126f105de99d5b576168299f.zip |
Version bump.
(Portage version: 2.2.8-r1/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.7.1.ebuild | 44 |
2 files changed, 50 insertions, 1 deletions
diff --git a/media-sound/abcm2ps/ChangeLog b/media-sound/abcm2ps/ChangeLog index 9d8f4ad8364f..6e661ea88da9 100644 --- a/media-sound/abcm2ps/ChangeLog +++ b/media-sound/abcm2ps/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/abcm2ps # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/abcm2ps/ChangeLog,v 1.87 2014/01/25 10:38:59 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/abcm2ps/ChangeLog,v 1.88 2014/02/28 11:17:26 radhermit Exp $ + +*abcm2ps-7.7.1 (28 Feb 2014) + + 28 Feb 2014; Tim Harder <radhermit@gentoo.org> +abcm2ps-7.7.1.ebuild: + Version bump. 25 Jan 2014; Tim Harder <radhermit@gentoo.org> -abcm2ps-7.5.8.ebuild, -abcm2ps-7.6.0.ebuild, -abcm2ps-7.6.3.ebuild, -abcm2ps-7.6.7.ebuild: diff --git a/media-sound/abcm2ps/abcm2ps-7.7.1.ebuild b/media-sound/abcm2ps/abcm2ps-7.7.1.ebuild new file mode 100644 index 000000000000..b369f60f2640 --- /dev/null +++ b/media-sound/abcm2ps/abcm2ps-7.7.1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/abcm2ps/abcm2ps-7.7.1.ebuild,v 1.1 2014/02/28 11:17:26 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 +} |