diff options
author | Tim Harder <radhermit@gentoo.org> | 2012-03-08 21:00:24 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2012-03-08 21:00:24 +0000 |
commit | 51b55ac9d236d26ff5bc6f1059e0e4800efcada7 (patch) | |
tree | 6163c324b8b03abdab699b21afd198f157ca7d0f /media-sound | |
parent | Version bump. (diff) | |
download | gentoo-2-51b55ac9d236d26ff5bc6f1059e0e4800efcada7.tar.gz gentoo-2-51b55ac9d236d26ff5bc6f1059e0e4800efcada7.tar.bz2 gentoo-2-51b55ac9d236d26ff5bc6f1059e0e4800efcada7.zip |
Version bump.
(Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/abcmidi/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/abcmidi/abcmidi-2012.03.08.ebuild | 38 |
2 files changed, 44 insertions, 1 deletions
diff --git a/media-sound/abcmidi/ChangeLog b/media-sound/abcmidi/ChangeLog index edbf47279871..313523d41c82 100644 --- a/media-sound/abcmidi/ChangeLog +++ b/media-sound/abcmidi/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/abcmidi # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/abcmidi/ChangeLog,v 1.10 2012/03/06 05:40:10 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/abcmidi/ChangeLog,v 1.11 2012/03/08 21:00:24 radhermit Exp $ + +*abcmidi-2012.03.08 (08 Mar 2012) + + 08 Mar 2012; Tim Harder <radhermit@gentoo.org> +abcmidi-2012.03.08.ebuild: + Version bump. 06 Mar 2012; Tim Harder <radhermit@gentoo.org> -abcmidi-2011.12.11.ebuild, -abcmidi-2011.12.19.ebuild: diff --git a/media-sound/abcmidi/abcmidi-2012.03.08.ebuild b/media-sound/abcmidi/abcmidi-2012.03.08.ebuild new file mode 100644 index 000000000000..c6b94e42ef8e --- /dev/null +++ b/media-sound/abcmidi/abcmidi-2012.03.08.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/abcmidi/abcmidi-2012.03.08.ebuild,v 1.1 2012/03/08 21:00:24 radhermit Exp $ + +EAPI="4" + +inherit eutils versionator autotools + +MY_P="abcMIDI-$(replace_all_version_separators '-')" +DESCRIPTION="Programs for processing ABC music notation files" +HOMEPAGE="http://abc.sourceforge.net/abcMIDI/" +SRC_URI="http://ifdo.pugmarks.com/~seymour/runabc/${MY_P}.zip" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="examples" + +DEPEND="app-arch/unzip" + +S="${WORKDIR}/${PN}" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-2011.10.19-install.patch + rm configure makefile || die + sed -i -e "s:-O2::" configure.ac || die + eautoreconf +} + +src_install() { + emake DESTDIR="${D}" install + dodoc doc/{AUTHORS,CHANGES,abcguide.txt,abcmatch.txt,history.txt,readme.txt,yapshelp.txt} + + if use examples ; then + docinto examples + dodoc samples/*.abc + fi +} |