Gentoo Archives: gentoo-commits

From: "Tony Vroon (chainsaw)" <chainsaw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/amsynth: ChangeLog amsynth-1.2.3-r1.ebuild
Date: Tue, 30 Aug 2011 09:37:17
Message-Id: 20110830093704.641F220051@flycatcher.gentoo.org
1 chainsaw 11/08/30 09:37:04
2
3 Modified: ChangeLog
4 Added: amsynth-1.2.3-r1.ebuild
5 Log:
6 Revision bump for EAPI 4 porting and CFLAGS respect patch by Markos "hwoarang" Chandros with input from Samuli Suominen in bug #376665 filed by Agostino "ago" Sarubbo.
7
8 (Portage version: 2.1.10.11/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.40 media-sound/amsynth/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/amsynth/ChangeLog?rev=1.40&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/amsynth/ChangeLog?rev=1.40&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/amsynth/ChangeLog?r1=1.39&r2=1.40
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-sound/amsynth/ChangeLog,v
20 retrieving revision 1.39
21 retrieving revision 1.40
22 diff -u -r1.39 -r1.40
23 --- ChangeLog 12 Aug 2011 10:15:54 -0000 1.39
24 +++ ChangeLog 30 Aug 2011 09:37:04 -0000 1.40
25 @@ -1,6 +1,14 @@
26 # ChangeLog for media-sound/amsynth
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-sound/amsynth/ChangeLog,v 1.39 2011/08/12 10:15:54 tove Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/amsynth/ChangeLog,v 1.40 2011/08/30 09:37:04 chainsaw Exp $
30 +
31 +*amsynth-1.2.3-r1 (30 Aug 2011)
32 +
33 + 30 Aug 2011; Tony Vroon <chainsaw@g.o> +amsynth-1.2.3-r1.ebuild,
34 + +files/amsynth-1.2.3-respect-cflags.patch:
35 + Revision bump for EAPI 4 porting and CFLAGS respect patch by Markos
36 + "hwoarang" Chandros with input from Samuli Suominen in bug #376665 filed by
37 + Agostino "ago" Sarubbo.
38
39 10 Aug 2011; Markos Chandras <hwoarang@g.o> amsynth-1.2.3.ebuild,
40 -files/amsynth-1.2.3-cflags.patch:
41
42
43
44 1.1 media-sound/amsynth/amsynth-1.2.3-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/amsynth/amsynth-1.2.3-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/amsynth/amsynth-1.2.3-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: amsynth-1.2.3-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2011 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/media-sound/amsynth/amsynth-1.2.3-r1.ebuild,v 1.1 2011/08/30 09:37:04 chainsaw Exp $
54
55 EAPI=4
56
57 inherit base autotools
58
59 MY_P=${P/ams/amS}
60 DESCRIPTION="Virtual analogue synthesizer."
61 HOMEPAGE="http://amsynthe.sourceforge.net/"
62 SRC_URI="mirror://sourceforge/amsynthe/${MY_P}.tar.gz"
63
64 LICENSE="GPL-2"
65 SLOT="0"
66 KEYWORDS="~amd64 ~ppc ~x86"
67 IUSE="alsa debug jack oss sndfile"
68
69 RDEPEND="dev-cpp/gtkmm:2.4
70 sndfile? ( >=media-libs/libsndfile-1 )
71 alsa? ( media-libs/alsa-lib
72 media-sound/alsa-utils )
73 jack? ( media-sound/jack-audio-connection-kit )"
74 DEPEND="${RDEPEND}
75 dev-util/pkgconfig"
76
77 S=${WORKDIR}/${MY_P}
78
79 PATCHES=( "${FILESDIR}/${P}-respect-cflags.patch" )
80
81 src_prepare() {
82 base_src_prepare
83 eautoreconf
84 }
85
86 src_configure() {
87 econf \
88 $(use_with oss) \
89 $(use_with alsa) \
90 $(use_with jack) \
91 $(use_with sndfile) \
92 $(use_enable debug)
93 }
94
95 src_install() {
96 emake DESTDIR="${D}" install
97 dodoc AUTHORS README
98 }
99
100 pkg_postinst() {
101 elog
102 elog "amSynth has been installed normally. If you would like to use"
103 elog "the virtual keyboard option, then do:"
104 elog "# emerge vkeybd"
105 elog "and make sure you emerged amSynth with alsa support (USE=alsa)"
106 elog
107 }