Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/ecasound: ecasound-2.9.1.ebuild ChangeLog
Date: Sat, 04 Jan 2014 05:08:35
Message-Id: 20140104050829.61AE02004C@flycatcher.gentoo.org
1 radhermit 14/01/04 05:08:29
2
3 Modified: ChangeLog
4 Added: ecasound-2.9.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.68 media-sound/ecasound/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/ecasound/ChangeLog?rev=1.68&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/ecasound/ChangeLog?rev=1.68&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/ecasound/ChangeLog?r1=1.67&r2=1.68
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-sound/ecasound/ChangeLog,v
20 retrieving revision 1.67
21 retrieving revision 1.68
22 diff -u -r1.67 -r1.68
23 --- ChangeLog 6 Jul 2013 18:53:41 -0000 1.67
24 +++ ChangeLog 4 Jan 2014 05:08:29 -0000 1.68
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-sound/ecasound
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-sound/ecasound/ChangeLog,v 1.67 2013/07/06 18:53:41 ottxor Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-sound/ecasound/ChangeLog,v 1.68 2014/01/04 05:08:29 radhermit Exp $
31 +
32 +*ecasound-2.9.1 (04 Jan 2014)
33 +
34 + 04 Jan 2014; Tim Harder <radhermit@g.o> +ecasound-2.9.1.ebuild:
35 + Version bump.
36
37 06 Jul 2013; Christoph Junghans <ottxor@g.o> ecasound-2.9.0.ebuild:
38 added prefix support
39
40
41
42 1.1 media-sound/ecasound/ecasound-2.9.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/ecasound/ecasound-2.9.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/ecasound/ecasound-2.9.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: ecasound-2.9.1.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-sound/ecasound/ecasound-2.9.1.ebuild,v 1.1 2014/01/04 05:08:29 radhermit Exp $
52
53 EAPI=4
54 PYTHON_DEPEND="python? 2"
55
56 inherit eutils python autotools
57
58 DESCRIPTION="a package for multitrack audio processing"
59 HOMEPAGE="http://ecasound.seul.org/ecasound"
60 SRC_URI="http://ecasound.seul.org/download/${P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="1"
64 KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
65 IUSE="alsa audiofile debug doc jack libsamplerate lv2 mikmod ncurses oil osc oss
66 python ruby sndfile static-libs test"
67 REQUIRED_USE="test? ( lv2 )"
68
69 RDEPEND="sys-libs/readline
70 alsa? ( media-libs/alsa-lib )
71 audiofile? ( media-libs/audiofile )
72 jack? ( media-sound/jack-audio-connection-kit )
73 libsamplerate? ( media-libs/libsamplerate )
74 lv2? ( >=media-libs/lilv-0.5.0 )
75 media-libs/ladspa-sdk
76 mikmod? ( media-libs/libmikmod:0 )
77 ncurses? ( sys-libs/ncurses )
78 oil? ( dev-libs/liboil )
79 osc? ( media-libs/liblo )
80 ruby? ( dev-lang/ruby )
81 sndfile? ( media-libs/libsndfile )"
82 DEPEND="${RDEPEND}
83 virtual/pkgconfig"
84
85 pkg_setup() {
86 if use python ; then
87 python_set_active_version 2
88 python_pkg_setup
89 fi
90 }
91
92 src_prepare() {
93 epatch "${FILESDIR}"/${PN}-2.8.1-ldflags.patch
94
95 if use python ; then
96 sed -i -e "s:\$(ecasoundc_libs):\0 $(python_get_library -l):" \
97 pyecasound/Makefile.am || die "sed failed"
98 fi
99
100 eautoreconf
101 }
102
103 src_configure() {
104 local pyconf
105
106 if use python ; then
107 pyconf="--with-python-includes=${EPREFIX}$(python_get_includedir)
108 --with-python-modules=${EPREFIX}$(python_get_libdir)"
109 fi
110
111 econf \
112 --disable-arts \
113 --enable-shared \
114 --enable-sys-readline \
115 --with-largefile \
116 $(use_enable alsa) \
117 $(use_enable audiofile) \
118 $(use_enable debug) \
119 $(use_enable jack) \
120 $(use_enable libsamplerate) \
121 $(use_enable lv2 liblilv) \
122 $(use_enable ncurses) \
123 $(use_enable oil liboil) \
124 $(use_enable osc liblo) \
125 $(use_enable oss) \
126 $(use_enable python pyecasound) \
127 $(use_enable ruby rubyecasound) \
128 $(use_enable sndfile) \
129 $(use_enable static-libs static) \
130 ${pyconf}
131 }
132
133 src_install() {
134 default
135
136 if use doc ; then
137 dohtml Documentation/*.html
138 dodoc Documentation/programmers_guide/ecasound_programmers_guide.txt
139 fi
140
141 prune_libtool_files
142 }
143
144 pkg_postinst() {
145 use python && python_mod_optimize ecacontrol.py eci.py pyeca.py
146 }
147
148 pkg_postrm() {
149 use python && python_mod_cleanup ecacontrol.py eci.py pyeca.py
150 }