diff options
author | Tim Harder <radhermit@gentoo.org> | 2015-01-04 05:14:34 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2015-01-04 05:14:34 +0000 |
commit | c5f1e8c26000d315d26eaa91ef7eb5543f7903b8 (patch) | |
tree | 2fa377cdc4d78d975b86b7e81bea06fb84b7fe13 /media-sound | |
parent | Version bump. (diff) | |
download | gentoo-2-c5f1e8c26000d315d26eaa91ef7eb5543f7903b8.tar.gz gentoo-2-c5f1e8c26000d315d26eaa91ef7eb5543f7903b8.tar.bz2 gentoo-2-c5f1e8c26000d315d26eaa91ef7eb5543f7903b8.zip |
Version bump.
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/abcmidi/ChangeLog | 9 | ||||
-rw-r--r-- | media-sound/abcmidi/abcmidi-2014.12.25.ebuild | 38 |
2 files changed, 45 insertions, 2 deletions
diff --git a/media-sound/abcmidi/ChangeLog b/media-sound/abcmidi/ChangeLog index e14424c0d41d..7c1ad1d191a6 100644 --- a/media-sound/abcmidi/ChangeLog +++ b/media-sound/abcmidi/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/abcmidi -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/abcmidi/ChangeLog,v 1.60 2014/11/24 02:12:45 radhermit Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/abcmidi/ChangeLog,v 1.61 2015/01/04 05:14:34 radhermit Exp $ + +*abcmidi-2014.12.25 (04 Jan 2015) + + 04 Jan 2015; Tim Harder <radhermit@gentoo.org> +abcmidi-2014.12.25.ebuild: + Version bump. *abcmidi-2014.11.18 (24 Nov 2014) diff --git a/media-sound/abcmidi/abcmidi-2014.12.25.ebuild b/media-sound/abcmidi/abcmidi-2014.12.25.ebuild new file mode 100644 index 000000000000..378462fad3da --- /dev/null +++ b/media-sound/abcmidi/abcmidi-2014.12.25.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/abcmidi/abcmidi-2014.12.25.ebuild,v 1.1 2015/01/04 05:14:34 radhermit Exp $ + +EAPI=5 + +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 "s:-O2::" configure.ac || die + eautoreconf +} + +src_install() { + default + dodoc doc/{AUTHORS,CHANGES,abcguide.txt,abcmatch.txt,history.txt,readme.txt,yapshelp.txt} + + if use examples ; then + docinto examples + dodoc samples/*.abc + fi +} |