Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/terminatorx: terminatorx-3.84-r1.ebuild ChangeLog terminatorx-3.84.ebuild terminatorx-3.83.ebuild
Date: Thu, 29 Jan 2015 10:28:52
Message-Id: 20150129102847.4086C10914@oystercatcher.gentoo.org
1 pacho 15/01/29 10:28:47
2
3 Modified: ChangeLog
4 Added: terminatorx-3.84-r1.ebuild
5 Removed: terminatorx-3.84.ebuild terminatorx-3.83.ebuild
6 Log:
7 Use gnome2.eclass properly, fix compilation with current zlib (#413623), drop old
8
9 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
10
11 Revision Changes Path
12 1.36 media-sound/terminatorx/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/terminatorx/ChangeLog?rev=1.36&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/terminatorx/ChangeLog?rev=1.36&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/terminatorx/ChangeLog?r1=1.35&r2=1.36
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/media-sound/terminatorx/ChangeLog,v
21 retrieving revision 1.35
22 retrieving revision 1.36
23 diff -u -r1.35 -r1.36
24 --- ChangeLog 5 May 2012 09:02:12 -0000 1.35
25 +++ ChangeLog 29 Jan 2015 10:28:47 -0000 1.36
26 @@ -1,6 +1,14 @@
27 # ChangeLog for media-sound/terminatorx
28 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/media-sound/terminatorx/ChangeLog,v 1.35 2012/05/05 09:02:12 mgorny Exp $
30 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/media-sound/terminatorx/ChangeLog,v 1.36 2015/01/29 10:28:47 pacho Exp $
32 +
33 +*terminatorx-3.84-r1 (29 Jan 2015)
34 +
35 + 29 Jan 2015; Pacho Ramos <pacho@g.o>
36 + +files/terminatorx-3.84-new-zlib.patch, +terminatorx-3.84-r1.ebuild,
37 + -terminatorx-3.83.ebuild, -terminatorx-3.84.ebuild:
38 + Use gnome2.eclass properly, fix compilation with current zlib (#413623), drop
39 + old
40
41 05 May 2012; Michał Górny <mgorny@g.o> terminatorx-3.82.ebuild,
42 terminatorx-3.83.ebuild, terminatorx-3.84.ebuild:
43 @@ -133,4 +141,3 @@
44
45 Submitted by Dietrich Heise <dietrich@×××××××××.de>
46 Thanks Dietrich
47 -
48
49
50
51 1.1 media-sound/terminatorx/terminatorx-3.84-r1.ebuild
52
53 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/terminatorx/terminatorx-3.84-r1.ebuild?rev=1.1&view=markup
54 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/terminatorx/terminatorx-3.84-r1.ebuild?rev=1.1&content-type=text/plain
55
56 Index: terminatorx-3.84-r1.ebuild
57 ===================================================================
58 # Copyright 1999-2015 Gentoo Foundation
59 # Distributed under the terms of the GNU General Public License v2
60 # $Header: /var/cvsroot/gentoo-x86/media-sound/terminatorx/terminatorx-3.84-r1.ebuild,v 1.1 2015/01/29 10:28:47 pacho Exp $
61
62 EAPI=5
63 GCONF_DEBUG="no"
64
65 inherit gnome2 eutils
66
67 MY_P=${P/terminatorx/terminatorX}
68 DESCRIPTION='realtime audio synthesizer that allows you to "scratch" on digitally sampled audio data'
69 HOMEPAGE="http://www.terminatorx.org/"
70 SRC_URI="http://www.terminatorx.org/dist/${MY_P}.tar.gz"
71
72 LICENSE="GPL-2"
73 SLOT="0"
74 KEYWORDS="~amd64 ~x86"
75 IUSE="alsa debug mad vorbis sox"
76
77 RDEPEND="
78 alsa? ( media-libs/alsa-lib )
79 mad? ( media-sound/madplay )
80 vorbis? ( media-libs/libvorbis )
81 sox? ( media-sound/sox
82 media-sound/mpg123 )
83 >=x11-libs/gtk+-2.2:2
84 >=dev-libs/glib-2.2:2
85 x11-libs/libXi
86 x11-libs/libXxf86dga
87 dev-libs/libxml2
88 media-libs/audiofile
89 media-libs/ladspa-sdk
90 media-libs/ladspa-cmt
91 app-text/scrollkeeper
92 media-libs/liblrdf
93 "
94 DEPEND="${RDEPEND}
95 virtual/pkgconfig
96 x11-proto/xproto
97 x11-proto/inputproto
98 x11-proto/xf86dgaproto
99 "
100
101 S=${WORKDIR}/${MY_P}
102
103 src_prepare() {
104 # Patch from debian to compile with recent zlib
105 epatch "${FILESDIR}"/${PN}-3.84-new-zlib.patch
106 gnome2_src_prepare
107 }
108
109 src_configure() {
110 gnome2_src_configure \
111 $(use_enable alsa) \
112 $(use_enable debug) \
113 $(use_enable mad) \
114 $(use_enable vorbis) \
115 $(use_enable sox)
116 }
117
118 src_install() {
119 gnome2_src_install
120 newicon gnome-support/terminatorX-app.png terminatorX.png
121 make_desktop_entry terminatorX terminatorX terminatorX AudioVideo
122 }