diff options
author | Sam James <sam@gentoo.org> | 2021-03-15 21:30:37 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-03-15 21:38:33 +0000 |
commit | e5f5d19cb010f0cd60f58c2c87c67d8ce0e690fb (patch) | |
tree | c7f60b851e30519c39dc53a9a940dd9fb157de0c /x11-misc/xdesktopwaves | |
parent | x11-misc/dclock: drop 2.2.2_p9 (diff) | |
download | gentoo-e5f5d19cb010f0cd60f58c2c87c67d8ce0e690fb.tar.gz gentoo-e5f5d19cb010f0cd60f58c2c87c67d8ce0e690fb.tar.bz2 gentoo-e5f5d19cb010f0cd60f58c2c87c67d8ce0e690fb.zip |
x11-misc/xdesktopwaves: drop 1.3-r2
Bug: https://bugs.gentoo.org/776463
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'x11-misc/xdesktopwaves')
-rw-r--r-- | x11-misc/xdesktopwaves/Manifest | 1 | ||||
-rw-r--r-- | x11-misc/xdesktopwaves/files/xdesktopwaves-1.3-gentoo.patch | 38 | ||||
-rw-r--r-- | x11-misc/xdesktopwaves/xdesktopwaves-1.3-r2.ebuild | 41 |
3 files changed, 0 insertions, 80 deletions
diff --git a/x11-misc/xdesktopwaves/Manifest b/x11-misc/xdesktopwaves/Manifest index 60a54f7429c9..fbd0debff27d 100644 --- a/x11-misc/xdesktopwaves/Manifest +++ b/x11-misc/xdesktopwaves/Manifest @@ -1,2 +1 @@ -DIST xdesktopwaves-1.3.tar.gz 49302 BLAKE2B 96348d80ba71a179df09afbaa8f2fb79725e049203e9644769e5a41b7fa8a9cae06ef2002ac3062f317f84419ae2ef739e7a90142b9b06118f51754d295e70ed SHA512 7dd3eb4f3a9291e9afab7aab7385cc271af2754adecde85ef3a2dfbc6a0bd96bab440cdb9f34cabb9e7c6d9ee25cdc64bf57ba7edc4df03f344b5b10404cd52e DIST xdesktopwaves-1.4.tar.gz 50259 BLAKE2B 5512746c9a035878f50abfc35c088f2953c5a0decaab6e0fc3cd31e29e75d100430c36df5a0043f64222521e939797ad24b9147a66cf5ba20f7f4c22fc78767d SHA512 06ec5bea51737d066beccad57db63ef7e56e59c18bb7c1dcaf06f6691940ac32a32b7cd06d9e3f16ad472e3d793c391b072a753e0088ab71ae7304b20b2fa3ba diff --git a/x11-misc/xdesktopwaves/files/xdesktopwaves-1.3-gentoo.patch b/x11-misc/xdesktopwaves/files/xdesktopwaves-1.3-gentoo.patch deleted file mode 100644 index 80e219edc6a8..000000000000 --- a/x11-misc/xdesktopwaves/files/xdesktopwaves-1.3-gentoo.patch +++ /dev/null @@ -1,38 +0,0 @@ ---- a/Makefile -+++ b/Makefile -@@ -11,14 +11,13 @@ - - #=========================== C compiler configuration ========================== - --CC = gcc --CFLAGS = -I/usr/X11R6/include -O2 -+CFLAGS += $(shell pkg-config --cflags x11 xext) - - #============================= Linker configuration ============================ - --LINK = gcc --LFLAGS = -L/usr/X11R6/lib --LIBS = -lm -lX11 -lXext -+LINK = $(CC) -+LFLAGS = $(LDFLAGS) -+LIBS = -lm $(shell pkg-config --libs x11 xext) - - #============================ Installer configuration ========================== - ---- a/xdwapi/Makefile -+++ b/xdwapi/Makefile -@@ -1,10 +1,9 @@ - # Makefile for the xdesktopwaves API and its demo program - --CC = gcc --CFLAGS = -I/usr/X11R6/include -O2 --LINK = gcc --LFLAGS = -L/usr/X11R6/lib --LIBS = -lm -lX11 -+CFLAGS += $(shell pkg-config --cflags x11 xext) -+LINK = $(CC) -+LFLAGS = $(LDFLAGS) -+LIBS = -lm $(shell pkg-config --libs x11 xext) - - all: xdwapidemo - diff --git a/x11-misc/xdesktopwaves/xdesktopwaves-1.3-r2.ebuild b/x11-misc/xdesktopwaves/xdesktopwaves-1.3-r2.ebuild deleted file mode 100644 index 2104e57383da..000000000000 --- a/x11-misc/xdesktopwaves/xdesktopwaves-1.3-r2.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit eutils toolchain-funcs - -DESCRIPTION="A cellular automata setting the background of your X Windows desktop under water" -HOMEPAGE="http://xdesktopwaves.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" -LICENSE="GPL-2" - -SLOT="0" -RDEPEND="x11-libs/libXext" -DEPEND="${RDEPEND} - x11-base/xorg-proto" -KEYWORDS="amd64 ppc x86" -IUSE="" - -PATCHES=( "${FILESDIR}"/${P}-gentoo.patch ) - -src_compile() { - tc-export CC - emake - emake -C xdwapi -} - -src_install() { - dobin xdesktopwaves xdwapi/xdwapidemo - doman xdesktopwaves.1 - insinto /usr/share/pixmaps - doins xdesktopwaves.xpm - make_desktop_entry xdesktopwaves - einstalldocs -} - -pkg_preinst() { - elog "To see what xdesktopwaves is able to do, start it by running" - elog "'xdesktopwaves' and then run 'xdwapidemo'. You should see the" - elog "supported effects on your desktop" -} |