diff options
Diffstat (limited to 'media-sound/abcm2ps/abcm2ps-7.0.14.ebuild')
-rw-r--r-- | media-sound/abcm2ps/abcm2ps-7.0.14.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/media-sound/abcm2ps/abcm2ps-7.0.14.ebuild b/media-sound/abcm2ps/abcm2ps-7.0.14.ebuild new file mode 100644 index 000000000000..1bd0385e88ff --- /dev/null +++ b/media-sound/abcm2ps/abcm2ps-7.0.14.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-7.0.14.ebuild,v 1.1 2012/08/01 06:59:39 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} + 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 +} |