Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/linuxsampler: ChangeLog linuxsampler-0.5.1.ebuild
Date: Sat, 12 Jan 2008 10:36:19
Message-Id: E1JDdiq-0005K3-F8@stork.gentoo.org
1 aballier 08/01/12 10:36:16
2
3 Modified: ChangeLog
4 Added: linuxsampler-0.5.1.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.4)
8
9 Revision Changes Path
10 1.9 media-sound/linuxsampler/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/linuxsampler/ChangeLog?rev=1.9&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/linuxsampler/ChangeLog?rev=1.9&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/linuxsampler/ChangeLog?r1=1.8&r2=1.9
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/linuxsampler/ChangeLog,v
19 retrieving revision 1.8
20 retrieving revision 1.9
21 diff -u -r1.8 -r1.9
22 --- ChangeLog 19 Aug 2007 19:00:38 -0000 1.8
23 +++ ChangeLog 12 Jan 2008 10:36:15 -0000 1.9
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-sound/linuxsampler
26 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/linuxsampler/ChangeLog,v 1.8 2007/08/19 19:00:38 drac Exp $
28 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/linuxsampler/ChangeLog,v 1.9 2008/01/12 10:36:15 aballier Exp $
30 +
31 +*linuxsampler-0.5.1 (12 Jan 2008)
32 +
33 + 12 Jan 2008; Alexis Ballier <aballier@g.o>
34 + +files/linuxsampler-0.5.1-pkgconfiginit.patch, +linuxsampler-0.5.1.ebuild:
35 + version bump
36
37 *linuxsampler-0.4.0 (19 Aug 2007)
38
39
40
41
42 1.1 media-sound/linuxsampler/linuxsampler-0.5.1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/linuxsampler/linuxsampler-0.5.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/linuxsampler/linuxsampler-0.5.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: linuxsampler-0.5.1.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-sound/linuxsampler/linuxsampler-0.5.1.ebuild,v 1.1 2008/01/12 10:36:15 aballier Exp $
52
53 inherit autotools eutils
54
55 DESCRIPTION="LinuxSampler is a software audio sampler engine with professional grade features."
56 HOMEPAGE="http://www.linuxsampler.org/"
57 SRC_URI="http://download.linuxsampler.org/packages/${P}.tar.bz2"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE="doc jack sqlite3"
63
64 RDEPEND="sqlite3? ( >=dev-db/sqlite-3.3 )
65 >=media-libs/libgig-3.2.1
66 media-libs/alsa-lib
67 jack? ( media-sound/jack-audio-connection-kit )"
68 DEPEND="${RDEPEND}
69 dev-util/pkgconfig
70 doc? ( app-doc/doxygen )"
71
72 src_unpack() {
73 unpack ${A}
74 cd "${S}"
75
76 epatch "${FILESDIR}/${P}-pkgconfiginit.patch"
77 AT_M4DIR="m4" eautoreconf
78 }
79
80 src_compile() {
81 econf --enable-alsa-driver \
82 $(use_enable jack jack-driver) \
83 $(use_enable sqlite3 instruments-db)
84 emake -j1 || die "emake failed."
85
86 if use doc; then
87 emake -j1 docs || die "emake docs failed."
88 fi
89 }
90
91 src_install() {
92 emake DESTDIR="${D}" install || die "emake install failed."
93 dodoc AUTHORS ChangeLog NEWS README
94
95 if use doc; then
96 dohtml -r doc/html/*
97 fi
98 }
99
100
101
102 --
103 gentoo-commits@l.g.o mailing list