diff options
author | Tim Harder <radhermit@gentoo.org> | 2013-03-23 09:42:31 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2013-03-23 09:42:31 +0000 |
commit | 8f06b3d37fef436d8412ca7291ab9be39af39d7a (patch) | |
tree | 87730fa03d11684f656be5174c78e9a48b397bee /media-sound/abcm2ps | |
parent | Version bump. (diff) | |
download | gentoo-2-8f06b3d37fef436d8412ca7291ab9be39af39d7a.tar.gz gentoo-2-8f06b3d37fef436d8412ca7291ab9be39af39d7a.tar.bz2 gentoo-2-8f06b3d37fef436d8412ca7291ab9be39af39d7a.zip |
Version bump.
(Portage version: 2.2.0_alpha169/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.2.ebuild | 44 |
2 files changed, 50 insertions, 1 deletions
diff --git a/media-sound/abcm2ps/ChangeLog b/media-sound/abcm2ps/ChangeLog index e68e043fac4e..1e0f02f2c33c 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.74 2013/03/02 09:56:15 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/abcm2ps/ChangeLog,v 1.75 2013/03/23 09:42:31 radhermit Exp $ + +*abcm2ps-7.5.2 (23 Mar 2013) + + 23 Mar 2013; Tim Harder <radhermit@gentoo.org> +abcm2ps-7.5.2.ebuild: + Version bump. *abcm2ps-7.5.0 (02 Mar 2013) diff --git a/media-sound/abcm2ps/abcm2ps-7.5.2.ebuild b/media-sound/abcm2ps/abcm2ps-7.5.2.ebuild new file mode 100644 index 000000000000..b7bd4d4020a3 --- /dev/null +++ b/media-sound/abcm2ps/abcm2ps-7.5.2.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.2.ebuild,v 1.1 2013/03/23 09:42:31 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 +} |