Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/qsynth: ChangeLog qsynth-0.3.1.ebuild
Date: Fri, 19 Oct 2007 20:59:21
Message-Id: E1Iiylv-00047H-8e@stork.gentoo.org
1 flameeyes 07/10/19 20:48:43
2
3 Modified: ChangeLog
4 Added: qsynth-0.3.1.ebuild
5 Log:
6 Version bump (Bug #196175).
7 (Portage version: 2.1.3.15)
8
9 Revision Changes Path
10 1.23 media-sound/qsynth/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qsynth/ChangeLog?rev=1.23&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qsynth/ChangeLog?rev=1.23&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qsynth/ChangeLog?r1=1.22&r2=1.23
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/qsynth/ChangeLog,v
19 retrieving revision 1.22
20 retrieving revision 1.23
21 diff -u -r1.22 -r1.23
22 --- ChangeLog 20 Jun 2007 14:39:34 -0000 1.22
23 +++ ChangeLog 19 Oct 2007 20:48:42 -0000 1.23
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-sound/qsynth
26 # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/qsynth/ChangeLog,v 1.22 2007/06/20 14:39:34 flameeyes Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/qsynth/ChangeLog,v 1.23 2007/10/19 20:48:42 flameeyes Exp $
29 +
30 +*qsynth-0.3.1 (19 Oct 2007)
31 +
32 + 19 Oct 2007; Diego Pettenò <flameeyes@g.o> +qsynth-0.3.1.ebuild:
33 + Version bump (Bug #196175).
34
35 *qsynth-0.2.6 (20 Jun 2007)
36
37
38
39
40 1.1 media-sound/qsynth/qsynth-0.3.1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qsynth/qsynth-0.3.1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qsynth/qsynth-0.3.1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: qsynth-0.3.1.ebuild
46 ===================================================================
47 # Copyright 1999-2007 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/media-sound/qsynth/qsynth-0.3.1.ebuild,v 1.1 2007/10/19 20:48:42 flameeyes Exp $
50
51 inherit qt4 eutils flag-o-matic
52
53 DESCRIPTION="A Qt application to control FluidSynth"
54 HOMEPAGE="http://qsynth.sourceforge.net/"
55 SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
56 LICENSE="GPL-2"
57
58 SLOT="0"
59 IUSE="debug"
60 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
61
62 DEPEND="$(qt4_min_version 4.2)
63 media-sound/fluidsynth"
64
65 src_compile() {
66 # Stupidly, qsynth's configure does *not* use pkg-config to
67 # discover the presence of Qt4, but uses fixed paths; as they
68 # don't really work that well for our case, let's just use this
69 # nasty hack and be done with it. *NOTE*: this hinders
70 # cross-compile.
71 append-flags -I/usr/include/qt4
72 append-ldflags -L/usr/$(get_libdir)/qt4
73
74 econf \
75 $(use_enable debug) \
76 || die "econf failed"
77 emake || die "emake failed"
78 }
79
80 src_install () {
81 make DESTDIR="${D}" install || die "make install failed"
82 dodoc AUTHORS ChangeLog README TODO
83
84 # The desktop file is invalid
85 rm -rf "${D}/usr/share/applications/qsynth.desktop"
86 make_desktop_entry qsynth Qsynth qsynth
87 }
88
89
90
91 --
92 gentoo-commits@g.o mailing list