Gentoo Archives: gentoo-commits

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