Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/abcmidi: abcmidi-2012.02.05.ebuild ChangeLog abcmidi-2012.02.01.ebuild
Date: Tue, 07 Feb 2012 07:57:30
Message-Id: 20120207075720.E98E62004B@flycatcher.gentoo.org
1 radhermit 12/02/07 07:57:20
2
3 Modified: ChangeLog
4 Added: abcmidi-2012.02.05.ebuild
5 Removed: abcmidi-2012.02.01.ebuild
6 Log:
7 Version bump and remove old.
8
9 (Portage version: 2.1.10.44/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.9 media-sound/abcmidi/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/abcmidi/ChangeLog?rev=1.9&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/abcmidi/ChangeLog?rev=1.9&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/abcmidi/ChangeLog?r1=1.8&r2=1.9
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/media-sound/abcmidi/ChangeLog,v
21 retrieving revision 1.8
22 retrieving revision 1.9
23 diff -u -r1.8 -r1.9
24 --- ChangeLog 3 Feb 2012 08:01:08 -0000 1.8
25 +++ ChangeLog 7 Feb 2012 07:57:20 -0000 1.9
26 @@ -1,6 +1,12 @@
27 # ChangeLog for media-sound/abcmidi
28 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/media-sound/abcmidi/ChangeLog,v 1.8 2012/02/03 08:01:08 radhermit Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/media-sound/abcmidi/ChangeLog,v 1.9 2012/02/07 07:57:20 radhermit Exp $
31 +
32 +*abcmidi-2012.02.05 (07 Feb 2012)
33 +
34 + 07 Feb 2012; Tim Harder <radhermit@g.o> -abcmidi-2012.02.01.ebuild,
35 + +abcmidi-2012.02.05.ebuild:
36 + Version bump and remove old.
37
38 *abcmidi-2012.02.01 (03 Feb 2012)
39
40
41
42
43 1.1 media-sound/abcmidi/abcmidi-2012.02.05.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/abcmidi/abcmidi-2012.02.05.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/abcmidi/abcmidi-2012.02.05.ebuild?rev=1.1&content-type=text/plain
47
48 Index: abcmidi-2012.02.05.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-sound/abcmidi/abcmidi-2012.02.05.ebuild,v 1.1 2012/02/07 07:57:20 radhermit Exp $
53
54 EAPI="4"
55
56 inherit eutils versionator autotools
57
58 MY_P="abcMIDI-$(replace_all_version_separators '-')"
59 DESCRIPTION="Programs for processing ABC music notation files"
60 HOMEPAGE="http://abc.sourceforge.net/abcMIDI/"
61 SRC_URI="http://ifdo.pugmarks.com/~seymour/runabc/${MY_P}.zip"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="examples"
67
68 DEPEND="app-arch/unzip"
69
70 S="${WORKDIR}/${PN}"
71
72 src_prepare() {
73 epatch "${FILESDIR}"/${PN}-2011.10.19-install.patch
74 rm makefile || die
75 sed -i -e "s:-O2::" configure.ac || die
76 eautoreconf
77 }
78
79 src_install() {
80 emake DESTDIR="${D}" install
81 dodoc doc/{AUTHORS,CHANGES,abcguide.txt,abcmatch.txt,history.txt,readme.txt,yapshelp.txt}
82
83 if use examples ; then
84 docinto examples
85 dodoc samples/*.abc
86 fi
87 }