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-libs/stk: ChangeLog stk-4.4.4-r1.ebuild
Date: Sat, 24 Nov 2012 16:13:52
Message-Id: 20121124161341.B1A9520C9F@flycatcher.gentoo.org
1 aballier 12/11/24 16:13:41
2
3 Modified: ChangeLog
4 Added: stk-4.4.4-r1.ebuild
5 Log:
6 do not ignore cxxflags, bug #428384
7
8 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
9
10 Revision Changes Path
11 1.14 media-libs/stk/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/stk/ChangeLog?rev=1.14&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/stk/ChangeLog?rev=1.14&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/stk/ChangeLog?r1=1.13&r2=1.14
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/stk/ChangeLog,v
20 retrieving revision 1.13
21 retrieving revision 1.14
22 diff -u -r1.13 -r1.14
23 --- ChangeLog 24 Nov 2012 16:10:32 -0000 1.13
24 +++ ChangeLog 24 Nov 2012 16:13:41 -0000 1.14
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-libs/stk
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/stk/ChangeLog,v 1.13 2012/11/24 16:10:32 aballier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/stk/ChangeLog,v 1.14 2012/11/24 16:13:41 aballier Exp $
30 +
31 +*stk-4.4.4-r1 (24 Nov 2012)
32 +
33 + 24 Nov 2012; Alexis Ballier <aballier@g.o> +stk-4.4.4-r1.ebuild,
34 + +files/stk-4.4.4/050_all_cxxflags.patch:
35 + do not ignore cxxflags, bug #428384
36
37 24 Nov 2012; Alexis Ballier <aballier@g.o> -stk-4.4.2.ebuild,
38 -files/stk-4.4.2/010_all_removeForcedFlags.patch,
39
40
41
42 1.1 media-libs/stk/stk-4.4.4-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/stk/stk-4.4.4-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/stk/stk-4.4.4-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: stk-4.4.4-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-libs/stk/stk-4.4.4-r1.ebuild,v 1.1 2012/11/24 16:13:41 aballier Exp $
52
53 EAPI="2"
54 inherit eutils autotools
55
56 DESCRIPTION="Synthesis ToolKit in C++"
57 HOMEPAGE="http://ccrma.stanford.edu/software/stk/"
58 SRC_URI="http://ccrma.stanford.edu/software/stk/release/${P}.tar.gz"
59
60 LICENSE="MIT"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="alsa debug doc jack oss"
64
65 RDEPEND="alsa? ( media-libs/alsa-lib )
66 jack? ( media-sound/jack-audio-connection-kit )"
67 DEPEND="${RDEPEND}
68 virtual/pkgconfig
69 dev-lang/perl"
70
71 src_prepare() {
72 EPATCH_SUFFIX="patch" epatch "${FILESDIR}/${P}"
73 eautoreconf
74 }
75
76 src_configure() {
77 #breaks with --disable-foo...uses as --enable-foo
78 local myconf
79 if use debug; then
80 myconf="${myconf} --enable-debug"
81 fi
82 if use oss; then
83 myconf="${myconf} --with-oss"
84 fi
85 if use alsa; then
86 myconf="${myconf} --with-alsa"
87 fi
88 if use jack; then
89 myconf="${myconf} --with-jack"
90 fi
91
92 econf ${myconf} \
93 RAWWAVE_PATH=/usr/share/stk/rawwaves/
94 }
95
96 src_install() {
97 dodoc README || die "Failed to install README"
98 # install the lib
99 dolib src/libstk.* || die "Failed to install libstk.*"
100 # install headers
101 insinto /usr/include/stk || die "Failed to create header directory."
102 doins include/*.h include/*.msg include/*.tbl \
103 || die "Failed to install msg, tbl and h files."
104 # install rawwaves
105 insinto /usr/share/stk/rawwaves || die "Failed to create rawwave directory."
106 doins rawwaves/*.raw || die "Failed to install rawwave files."
107 # install docs
108 if use doc; then
109 dohtml -r doc/html/* || die "Failed to install docs."
110 fi
111 }