Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/rss-glx/
Date: Sat, 29 Dec 2018 11:56:53
Message-Id: 1546084605.85368dd3eb27b9d8489bf0c8b3349b9247562fdd.jer@gentoo
1 commit: 85368dd3eb27b9d8489bf0c8b3349b9247562fdd
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 29 11:52:59 2018 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 29 11:56:45 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85368dd3
7
8 x11-misc/rss-glx: Old
9
10 Package-Manager: Portage-2.3.53, Repoman-2.3.12
11 Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
12
13 x11-misc/rss-glx/rss-glx-0.9.1.ebuild | 119 ----------------------------------
14 1 file changed, 119 deletions(-)
15
16 diff --git a/x11-misc/rss-glx/rss-glx-0.9.1.ebuild b/x11-misc/rss-glx/rss-glx-0.9.1.ebuild
17 deleted file mode 100644
18 index 33678d15e88..00000000000
19 --- a/x11-misc/rss-glx/rss-glx-0.9.1.ebuild
20 +++ /dev/null
21 @@ -1,119 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -inherit autotools eutils multilib
27 -
28 -MY_P=${PN}_${PV}
29 -
30 -DESCRIPTION="Really Slick OpenGL Screensavers for XScreenSaver"
31 -HOMEPAGE="http://rss-glx.sourceforge.net"
32 -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
33 -
34 -LICENSE="GPL-2"
35 -SLOT="0"
36 -KEYWORDS="~alpha amd64 ppc ~ppc64 sparc x86"
37 -IUSE="+bzip2 openal quesoglc"
38 -
39 -RDEPEND="x11-libs/libX11
40 - x11-libs/libXext
41 - >=media-libs/glew-1.5.1
42 - media-libs/mesa
43 - >=media-gfx/imagemagick-6.4
44 - >=x11-misc/xscreensaver-5.08-r2
45 - bzip2? ( app-arch/bzip2 )
46 - openal? ( >=media-libs/freealut-1.1.0-r1 )
47 - quesoglc? ( media-libs/quesoglc )"
48 -DEPEND="${RDEPEND}
49 - x11-base/xorg-proto
50 - virtual/pkgconfig
51 - sys-apps/sed"
52 -
53 -DOCS="ChangeLog README*"
54 -S=${WORKDIR}/${MY_P}
55 -
56 -src_prepare() {
57 - sed -i \
58 - -e '/CFLAGS=/s:-O2:${CFLAGS}:' \
59 - -e '/CXXFLAGS=/s:-O2:${CXXFLAGS}:' \
60 - -e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' \
61 - configure.in || die
62 - epatch "${FILESDIR}"/${P}-quesoglc.patch \
63 - "${FILESDIR}"/${P}-asneeded.patch
64 - eautoreconf
65 -}
66 -
67 -src_configure() {
68 - econf \
69 - --bindir=/usr/$(get_libdir)/misc/xscreensaver \
70 - --enable-shared \
71 - --disable-dependency-tracking \
72 - $(use_enable bzip2) \
73 - $(use_enable openal sound) \
74 - $(use_with quesoglc) \
75 - --with-configdir=/usr/share/xscreensaver/config
76 -}
77 -
78 -pkg_postinst() {
79 - local xssconf="${ROOT}usr/share/X11/app-defaults/XScreenSaver"
80 -
81 - if [ -f ${xssconf} ]; then
82 - sed -e '/*programs:/a\
83 - GL: \"Cyclone\" cyclone --root \\n\\\
84 - GL: \"Euphoria\" euphoria --root \\n\\\
85 - GL: \"Fieldlines\" fieldlines --root \\n\\\
86 - GL: \"Flocks\" flocks --root \\n\\\
87 - GL: \"Flux\" flux --root \\n\\\
88 - GL: \"Helios\" helios --root \\n\\\
89 - GL: \"Hyperspace\" hyperspace --root \\n\\\
90 - GL: \"Lattice\" lattice --root \\n\\\
91 - GL: \"Plasma\" plasma --root \\n\\\
92 - GL: \"Pixelcity\" pixelcity --root \\n\\\
93 - GL: \"Skyrocket\" skyrocket --root \\n\\\
94 - GL: \"Solarwinds\" solarwinds --root \\n\\\
95 - GL: \"Colorfire\" colorfire --root \\n\\\
96 - GL: \"Hufos Smoke\" hufo_smoke --root \\n\\\
97 - GL: \"Hufos Tunnel\" hufo_tunnel --root \\n\\\
98 - GL: \"Sundancer2\" sundancer2 --root \\n\\\
99 - GL: \"BioF\" biof --root \\n\\\
100 - GL: \"BusySpheres\" busyspheres --root \\n\\\
101 - GL: \"SpirographX\" spirographx --root \\n\\\
102 - GL: \"MatrixView\" matrixview --root \\n\\\
103 - GL: \"Lorenz\" lorenz --root \\n\\\
104 - GL: \"Drempels\" drempels --root \\n\\\
105 - GL: \"Feedback\" feedback --root \\n\\' \
106 - -i ${xssconf} || die "sed failed"
107 - fi
108 -}
109 -
110 -pkg_postrm() {
111 - local xssconf="${ROOT}usr/share/X11/app-defaults/XScreenSaver"
112 -
113 - if [ -f ${xssconf} ]; then
114 - sed \
115 - -e '/\"Cyclone\" cyclone/d' \
116 - -e '/\"Euphoria\" euphoria/d' \
117 - -e '/\"Fieldlines\" fieldlines/d' \
118 - -e '/\"Flocks\" flocks/d' \
119 - -e '/\"Flux\" flux/d' \
120 - -e '/\"Helios\" helios/d' \
121 - -e '/\"Hyperspace\" hyperspace/d' \
122 - -e '/\"Lattice\" lattice/d' \
123 - -e '/\"Plasma\" plasma/d' \
124 - -e '/\"Pixelcity\" pixelcity/d' \
125 - -e '/\"Skyrocket\" skyrocket/d' \
126 - -e '/\"Solarwinds\" solarwinds/d' \
127 - -e '/\"Colorfire\" colorfire/d' \
128 - -e '/\"Hufos Smoke\" hufo_smoke/d' \
129 - -e '/\"Hufos Tunnel\" hufo_tunnel/d' \
130 - -e '/\"Sundancer2\" sundancer2/d' \
131 - -e '/\"BioF\" biof/d' \
132 - -e '/\"BusySpheres\" busyspheres/d' \
133 - -e '/\"SpirographX\" spirographx/d' \
134 - -e '/\"MatrixView\" matrixview/d' \
135 - -e '/\"Lorenz\" lorenz/d' \
136 - -e '/\"Drempels\" drempels/d' \
137 - -e '/\"Feedback\" feedback/d' \
138 - -i ${xssconf} || die "sed failed"
139 - fi
140 -}