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-libs/tse3: tse3-0.3.1-r1.ebuild ChangeLog
Date: Sat, 30 May 2009 22:30:47
Message-Id: E1MAX4f-00084q-T3@stork.gentoo.org
1 ssuominen 09/05/30 22:30:45
2
3 Modified: tse3-0.3.1-r1.ebuild ChangeLog
4 Log:
5 Remove arts support wrt #270575.
6 (Portage version: 2.1.6.13/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.7 media-libs/tse3/tse3-0.3.1-r1.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/tse3/tse3-0.3.1-r1.ebuild?rev=1.7&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/tse3/tse3-0.3.1-r1.ebuild?rev=1.7&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/tse3/tse3-0.3.1-r1.ebuild?r1=1.6&r2=1.7
14
15 Index: tse3-0.3.1-r1.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-libs/tse3/tse3-0.3.1-r1.ebuild,v
18 retrieving revision 1.6
19 retrieving revision 1.7
20 diff -u -r1.6 -r1.7
21 --- tse3-0.3.1-r1.ebuild 9 Jun 2008 11:42:33 -0000 1.6
22 +++ tse3-0.3.1-r1.ebuild 30 May 2009 22:30:45 -0000 1.7
23 @@ -1,8 +1,9 @@
24 -# Copyright 1999-2008 Gentoo Foundation
25 +# Copyright 1999-2009 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/tse3/tse3-0.3.1-r1.ebuild,v 1.6 2008/06/09 11:42:33 flameeyes Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/tse3/tse3-0.3.1-r1.ebuild,v 1.7 2009/05/30 22:30:45 ssuominen Exp $
29
30 -inherit eutils flag-o-matic libtool autotools
31 +EAPI=2
32 +inherit autotools eutils flag-o-matic
33
34 DESCRIPTION="TSE3 Sequencer library"
35 HOMEPAGE="http://TSE3.sourceforge.net"
36 @@ -11,16 +12,12 @@
37 LICENSE="GPL-2"
38 SLOT="0"
39 KEYWORDS="amd64 ppc sparc x86"
40 -IUSE="alsa oss arts"
41 +IUSE="alsa oss"
42
43 -RDEPEND="alsa? ( media-libs/alsa-lib )
44 - arts? ( kde-base/arts )"
45 +RDEPEND="alsa? ( media-libs/alsa-lib )"
46 DEPEND="${RDEPEND}"
47
48 -src_unpack() {
49 - unpack ${A}
50 - cd "${S}"
51 -
52 +src_prepare() {
53 # Try to support OSS, awe_voice.h has been removed from
54 # linux-headers. Using a modified copy from 2.6.17.
55 # Bug 188163.
56 @@ -29,32 +26,28 @@
57 append-flags -DHAVE_AWE_VOICE_H
58 fi
59
60 - # support 64bit machines properly
61 - epatch "${FILESDIR}"/${PN}-0.2.7-size_t-64bit.patch
62 - # gcc-4 patch (bug #100708)
63 - epatch "${FILESDIR}"/${PN}-0.2.7-gcc4.patch
64 -
65 - epatch "${FILESDIR}/${P}-parallelmake.patch"
66 -
67 - epatch "${FILESDIR}"/${P}+gcc-4.3.patch
68 + epatch "${FILESDIR}"/${PN}-0.2.7-size_t-64bit.patch \
69 + "${FILESDIR}"/${PN}-0.2.7-gcc4.patch \
70 + "${FILESDIR}"/${P}-parallelmake.patch \
71 + "${FILESDIR}"/${P}+gcc-4.3.patch
72
73 eautoreconf
74 - elibtoolize
75 }
76
77 -src_compile() {
78 - local myconf="--without-doc-install"
79 +src_configure() {
80 + local myconf
81
82 - use arts || myconf="${myconf} --without-arts"
83 use alsa || myconf="${myconf} --without-alsa"
84 use oss || myconf="${myconf} --without-oss"
85
86 - econf ${myconf} || die "econf failed."
87 - emake || die "emake failed."
88 + econf \
89 + --without-doc-install \
90 + --without-aRts \
91 + ${myconf}
92 }
93
94 src_install() {
95 - emake DESTDIR="${D}" install || die "emake install failed."
96 + emake DESTDIR="${D}" install || die "emake install failed"
97 dodoc AUTHORS NEWS README THANKS TODO doc/History
98 dohtml doc/*.{html,gif,png}
99 }
100
101
102
103 1.29 media-libs/tse3/ChangeLog
104
105 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/tse3/ChangeLog?rev=1.29&view=markup
106 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/tse3/ChangeLog?rev=1.29&content-type=text/plain
107 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/tse3/ChangeLog?r1=1.28&r2=1.29
108
109 Index: ChangeLog
110 ===================================================================
111 RCS file: /var/cvsroot/gentoo-x86/media-libs/tse3/ChangeLog,v
112 retrieving revision 1.28
113 retrieving revision 1.29
114 diff -u -r1.28 -r1.29
115 --- ChangeLog 9 Jun 2008 11:42:33 -0000 1.28
116 +++ ChangeLog 30 May 2009 22:30:45 -0000 1.29
117 @@ -1,6 +1,9 @@
118 # ChangeLog for media-libs/tse3
119 -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
120 -# $Header: /var/cvsroot/gentoo-x86/media-libs/tse3/ChangeLog,v 1.28 2008/06/09 11:42:33 flameeyes Exp $
121 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
122 +# $Header: /var/cvsroot/gentoo-x86/media-libs/tse3/ChangeLog,v 1.29 2009/05/30 22:30:45 ssuominen Exp $
123 +
124 + 30 May 2009; Samuli Suominen <ssuominen@g.o> tse3-0.3.1-r1.ebuild:
125 + Remove arts support wrt #270575.
126
127 09 Jun 2008; Diego Pettenò <flameeyes@g.o>
128 +files/tse3-0.3.1+gcc-4.3.patch, tse3-0.3.1-r1.ebuild: