[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdesktopwaves/

2023-07-04 Thread Conrad Kostecki
commit: 77c26d2358810c82f3deaa3530e4427d8303c451
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Tue Jul  4 21:03:54 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jul  4 22:15:02 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77c26d23

x11-misc/xdesktopwaves: use HTTPS, fix LICENSE

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 x11-misc/xdesktopwaves/xdesktopwaves-1.4.ebuild | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/x11-misc/xdesktopwaves/xdesktopwaves-1.4.ebuild 
b/x11-misc/xdesktopwaves/xdesktopwaves-1.4.ebuild
index 1be0017af311..fe9e411845d7 100644
--- a/x11-misc/xdesktopwaves/xdesktopwaves-1.4.ebuild
+++ b/x11-misc/xdesktopwaves/xdesktopwaves-1.4.ebuild
@@ -1,13 +1,13 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 inherit desktop toolchain-funcs
 
-DESCRIPTION="A cellular automata setting the background of your X Windows 
desktop under water"
-HOMEPAGE="http://xdesktopwaves.sourceforge.net/;
+DESCRIPTION="Cellular automata setting the background of your X Windows 
desktop under water"
+HOMEPAGE="https://xdesktopwaves.sourceforge.net/;
 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-LICENSE="GPL-2"
+LICENSE="GPL-2+"
 
 SLOT="0"
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdesktopwaves/, x11-misc/xdesktopwaves/files/

2021-03-15 Thread Sam James
commit: e5f5d19cb010f0cd60f58c2c87c67d8ce0e690fb
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 21:30:37 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 21:38:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5f5d19c

x11-misc/xdesktopwaves: drop 1.3-r2

Bug: https://bugs.gentoo.org/776463
Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdesktopwaves/Manifest|  1 -
 .../files/xdesktopwaves-1.3-gentoo.patch   | 38 
 x11-misc/xdesktopwaves/xdesktopwaves-1.3-r2.ebuild | 41 --
 3 files changed, 80 deletions(-)

diff --git a/x11-misc/xdesktopwaves/Manifest b/x11-misc/xdesktopwaves/Manifest
index 60a54f7429c..fbd0debff27 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 80e219edc6a..000
--- 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 2104e57383d..000
--- 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"
-}



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdesktopwaves/

2021-03-15 Thread Sam James
commit: 43bc1487f3f9c7e02696aa93d1c6f5f35cc177a4
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 21:23:49 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 21:23:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43bc1487

x11-misc/xdesktopwaves: Stabilize 1.4 ppc, #776463

Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdesktopwaves/xdesktopwaves-1.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdesktopwaves/xdesktopwaves-1.4.ebuild 
b/x11-misc/xdesktopwaves/xdesktopwaves-1.4.ebuild
index a0e57ab704e..1e5d62650fd 100644
--- a/x11-misc/xdesktopwaves/xdesktopwaves-1.4.ebuild
+++ b/x11-misc/xdesktopwaves/xdesktopwaves-1.4.ebuild
@@ -17,7 +17,7 @@ DEPEND="
${RDEPEND}
x11-base/xorg-proto
 "
-KEYWORDS="amd64 ~ppc x86"
+KEYWORDS="amd64 ppc x86"
 
 PATCHES=(
"${FILESDIR}"/${PN}-1.4-gentoo.patch



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdesktopwaves/

2021-03-15 Thread Sam James
commit: f146713a11c5cb5253066bf5f50335768343ae62
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 21:19:38 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 21:21:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f146713a

x11-misc/xdesktopwaves: Stabilize 1.4 amd64, #776463

Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdesktopwaves/xdesktopwaves-1.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdesktopwaves/xdesktopwaves-1.4.ebuild 
b/x11-misc/xdesktopwaves/xdesktopwaves-1.4.ebuild
index 7cd8529ecaa..a0e57ab704e 100644
--- a/x11-misc/xdesktopwaves/xdesktopwaves-1.4.ebuild
+++ b/x11-misc/xdesktopwaves/xdesktopwaves-1.4.ebuild
@@ -17,7 +17,7 @@ DEPEND="
${RDEPEND}
x11-base/xorg-proto
 "
-KEYWORDS="~amd64 ~ppc x86"
+KEYWORDS="amd64 ~ppc x86"
 
 PATCHES=(
"${FILESDIR}"/${PN}-1.4-gentoo.patch



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdesktopwaves/

2021-03-15 Thread Sam James
commit: 6c0bbdff0b13b1c69b863ae2e6629ef3c5ac28c9
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar 15 21:16:00 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 15 21:17:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c0bbdff

x11-misc/xdesktopwaves: Stabilize 1.4 x86, #776463

Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdesktopwaves/xdesktopwaves-1.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-misc/xdesktopwaves/xdesktopwaves-1.4.ebuild 
b/x11-misc/xdesktopwaves/xdesktopwaves-1.4.ebuild
index 901b11eb778..7cd8529ecaa 100644
--- a/x11-misc/xdesktopwaves/xdesktopwaves-1.4.ebuild
+++ b/x11-misc/xdesktopwaves/xdesktopwaves-1.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -17,7 +17,7 @@ DEPEND="
${RDEPEND}
x11-base/xorg-proto
 "
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~ppc x86"
 
 PATCHES=(
"${FILESDIR}"/${PN}-1.4-gentoo.patch



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdesktopwaves/files/

2019-07-23 Thread Jeroen Roovers
commit: 838649d0303192e8344be421cd64593a4b5eaf5f
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Jul 23 09:43:09 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Jul 23 10:03:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=838649d0

x11-misc/xdesktopwaves: Clean up patch

Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Jeroen Roovers  gentoo.org>

 x11-misc/xdesktopwaves/files/xdesktopwaves-1.3-gentoo.patch | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/x11-misc/xdesktopwaves/files/xdesktopwaves-1.3-gentoo.patch 
b/x11-misc/xdesktopwaves/files/xdesktopwaves-1.3-gentoo.patch
index accbb4d9bae..80e219edc6a 100644
--- a/x11-misc/xdesktopwaves/files/xdesktopwaves-1.3-gentoo.patch
+++ b/x11-misc/xdesktopwaves/files/xdesktopwaves-1.3-gentoo.patch
@@ -1,5 +1,5 @@
 xdesktopwaves-1.3/Makefile.org 2004-12-18 06:47:40.0 +0100
-+++ xdesktopwaves-1.3/Makefile 2010-02-08 20:05:31.0 +0100
+--- a/Makefile
 b/Makefile
 @@ -11,14 +11,13 @@
  
  #=== C compiler configuration 
==
@@ -19,8 +19,8 @@
  
  # Installer configuration 
==
  
 xdesktopwaves-1.3/xdwapi/Makefile.org  2004-12-18 06:47:40.0 
+0100
-+++ xdesktopwaves-1.3/xdwapi/Makefile  2010-02-08 20:08:14.0 +0100
+--- a/xdwapi/Makefile
 b/xdwapi/Makefile
 @@ -1,10 +1,9 @@
  # Makefile for the xdesktopwaves API and its demo program
  



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdesktopwaves/files/, x11-misc/xdesktopwaves/

2019-07-23 Thread Jeroen Roovers
commit: 5601cabf5c3865f8b3267162eb3588f89bda2c91
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Jul 23 10:03:16 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Jul 23 10:03:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5601cabf

x11-misc/xdesktopwaves: Version 1.4

Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Jeroen Roovers  gentoo.org>

 x11-misc/xdesktopwaves/Manifest|  1 +
 .../files/xdesktopwaves-1.4-gentoo.patch   | 40 ++
 x11-misc/xdesktopwaves/xdesktopwaves-1.4.ebuild| 39 +
 3 files changed, 80 insertions(+)

diff --git a/x11-misc/xdesktopwaves/Manifest b/x11-misc/xdesktopwaves/Manifest
index 89734173b05..60a54f7429c 100644
--- a/x11-misc/xdesktopwaves/Manifest
+++ b/x11-misc/xdesktopwaves/Manifest
@@ -1 +1,2 @@
 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.4-gentoo.patch 
b/x11-misc/xdesktopwaves/files/xdesktopwaves-1.4-gentoo.patch
new file mode 100644
index 000..528e4780f6f
--- /dev/null
+++ b/x11-misc/xdesktopwaves/files/xdesktopwaves-1.4-gentoo.patch
@@ -0,0 +1,40 @@
+--- a/Makefile
 b/Makefile
+@@ -11,14 +11,14 @@
+ 
+ #=== C compiler configuration 
==
+ 
+-CC = gcc
+-CFLAGS = -I/usr/X11R6/include -O2
++CC ?= gcc
++CFLAGS += $(shell $(PKG_CONFIG) --cflags x11 xext)
+ 
+ #= Linker configuration 

+ 
+-LINK   = gcc
+-LFLAGS = -L/usr/X11R6/lib64 -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,10 @@
+ # Makefile for the xdesktopwaves API and its demo program
+ 
+-CC = gcc
+-CFLAGS = -I/usr/X11R6/include -O2
+-LINK   = gcc
+-LFLAGS = -L/usr/X11R6/lib64 -L/usr/X11R6/lib
+-LIBS   = -lm -lX11
++CC ?= gcc
++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.4.ebuild 
b/x11-misc/xdesktopwaves/xdesktopwaves-1.4.ebuild
new file mode 100644
index 000..901b11eb778
--- /dev/null
+++ b/x11-misc/xdesktopwaves/xdesktopwaves-1.4.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit desktop 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"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.4-gentoo.patch
+)
+
+src_compile() {
+   tc-export CC PKG_CONFIG
+   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
+}



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdesktopwaves/

2017-11-26 Thread David Seifert
commit: 61481241e5b5e623e1b226a979bca53900ba9d26
Author: David Seifert  gentoo  org>
AuthorDate: Sun Nov 26 13:13:36 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sun Nov 26 23:31:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61481241

x11-misc/xdesktopwaves: [QA] Consistent whitespace in metadata.xml

 x11-misc/xdesktopwaves/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdesktopwaves/metadata.xml 
b/x11-misc/xdesktopwaves/metadata.xml
index 5e3210314f1..678112183b9 100644
--- a/x11-misc/xdesktopwaves/metadata.xml
+++ b/x11-misc/xdesktopwaves/metadata.xml
@@ -10,7 +10,7 @@
X Windows desktop under water. Windows and mouse are like ships 
on the
sea. Each movement of these ends up in moving water waves. You 
can even
have rain and/or storm stirring up the water.
-  
+   

xdesktopwaves




[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdesktopwaves/

2017-04-01 Thread David Seifert
commit: f796629da87c0c8cbca8557fd1b3a5184af7
Author: Harri Nieminen  gmail  com>
AuthorDate: Tue Mar 28 18:28:46 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:23:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f796629d

x11-misc/xdesktopwaves: Remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4319

 x11-misc/xdesktopwaves/xdesktopwaves-1.3-r1.ebuild | 45 --
 1 file changed, 45 deletions(-)

diff --git a/x11-misc/xdesktopwaves/xdesktopwaves-1.3-r1.ebuild 
b/x11-misc/xdesktopwaves/xdesktopwaves-1.3-r1.ebuild
deleted file mode 100644
index 792e0dcda2d..000
--- a/x11-misc/xdesktopwaves/xdesktopwaves-1.3-r1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="2"
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="A cellular automata setting the background of your X Windows 
desktop under water"
-HOMEPAGE="http://xdesktopwaves.sourceforge.net/;
-LICENSE="GPL-2"
-RDEPEND="x11-libs/libXext"
-DEPEND="${RDEPEND}
-   x11-proto/xextproto"
-
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE=""
-
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-src_prepare() {
-   epatch "${FILESDIR}"/${P}-gentoo.patch
-}
-
-src_compile() {
-   tc-export CC
-   emake || die "failed building program"
-   cd xdwapi
-   emake || die "failed building demo"
-}
-
-src_install() {
-   dobin xdesktopwaves xdwapi/xdwapidemo
-   doman xdesktopwaves.1
-   insinto /usr/share/pixmaps
-   doins xdesktopwaves.xpm
-   make_desktop_entry xdesktopwaves
-   dodoc README
-}
-
-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"
-}



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdesktopwaves/

2017-03-22 Thread Michael Weber
commit: f5e00b70fd54735ff0c817fdda2be82e160fa169
Author: Michael Weber  gentoo  org>
AuthorDate: Tue Mar 21 15:32:45 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Wed Mar 22 07:29:25 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5e00b70

x11-misc/xdesktopwaves: ppc stable (bug 613104)

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="amd64 arm arm64 ppc ppc64"

 x11-misc/xdesktopwaves/xdesktopwaves-1.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdesktopwaves/xdesktopwaves-1.3-r2.ebuild 
b/x11-misc/xdesktopwaves/xdesktopwaves-1.3-r2.ebuild
index 9cc2a49fd4d..cf84faf3f80 100644
--- a/x11-misc/xdesktopwaves/xdesktopwaves-1.3-r2.ebuild
+++ b/x11-misc/xdesktopwaves/xdesktopwaves-1.3-r2.ebuild
@@ -14,7 +14,7 @@ SLOT="0"
 RDEPEND="x11-libs/libXext"
 DEPEND="${RDEPEND}
x11-proto/xextproto"
-KEYWORDS="amd64 ~ppc x86"
+KEYWORDS="amd64 ppc x86"
 IUSE=""
 
 PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdesktopwaves/

2017-03-20 Thread Agostino Sarubbo
commit: 6cbd01eb9ad67c986eaf0c387af805169feb936b
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Mar 20 11:02:48 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Mar 20 11:02:48 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cbd01eb

x11-misc/xdesktopwaves: amd64 stable wrt bug #613104

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 x11-misc/xdesktopwaves/xdesktopwaves-1.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdesktopwaves/xdesktopwaves-1.3-r2.ebuild 
b/x11-misc/xdesktopwaves/xdesktopwaves-1.3-r2.ebuild
index 5f59113be29..82ae486b6d9 100644
--- a/x11-misc/xdesktopwaves/xdesktopwaves-1.3-r2.ebuild
+++ b/x11-misc/xdesktopwaves/xdesktopwaves-1.3-r2.ebuild
@@ -14,7 +14,7 @@ SLOT="0"
 RDEPEND="x11-libs/libXext"
 DEPEND="${RDEPEND}
x11-proto/xextproto"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
 IUSE=""
 
 PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdesktopwaves/

2017-02-06 Thread David Seifert
commit: 21a6ee18b9bd70f4f008604f1fcac95c15746cbf
Author: Harri Nieminen  gmail  com>
AuthorDate: Mon Feb  6 17:50:34 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Feb  6 22:46:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21a6ee18

x11-misc/xdesktopwaves: EAPI bump 2 -> 6

Package-Manager: Portage-2.3.3, Repoman-2.3.1
Closes: https://github.com/gentoo/gentoo/pull/3853

 x11-misc/xdesktopwaves/xdesktopwaves-1.3-r2.ebuild | 42 ++
 1 file changed, 42 insertions(+)

diff --git a/x11-misc/xdesktopwaves/xdesktopwaves-1.3-r2.ebuild 
b/x11-misc/xdesktopwaves/xdesktopwaves-1.3-r2.ebuild
new file mode 100644
index ..c4a5b06
--- /dev/null
+++ b/x11-misc/xdesktopwaves/xdesktopwaves-1.3-r2.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+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-proto/xextproto"
+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"
+}



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdesktopwaves/

2015-09-13 Thread Manuel Rüger
commit: e4b566bc118e2fc56fb0774a7c3e043706ef2363
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Sep 13 18:45:47 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Sep 13 18:45:47 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4b566bc

x11-misc/xdesktopwaves: Remove old

Package-Manager: portage-2.2.20.1

 x11-misc/xdesktopwaves/xdesktopwaves-1.3.ebuild | 39 -
 1 file changed, 39 deletions(-)

diff --git a/x11-misc/xdesktopwaves/xdesktopwaves-1.3.ebuild 
b/x11-misc/xdesktopwaves/xdesktopwaves-1.3.ebuild
deleted file mode 100644
index 20b4aa9..000
--- a/x11-misc/xdesktopwaves/xdesktopwaves-1.3.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit eutils
-
-DESCRIPTION="A cellular automata setting the background of your X Windows 
desktop under water"
-HOMEPAGE="http://xdesktopwaves.sourceforge.net/;
-LICENSE="GPL-2"
-RDEPEND="x11-libs/libXext"
-DEPEND="${RDEPEND}
-   x11-proto/xextproto"
-
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE=""
-
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-src_compile() {
-   emake || die "failed building program"
-   cd xdwapi
-   emake || die "failed building demo"
-}
-
-src_install() {
-   dobin xdesktopwaves xdwapi/xdwapidemo
-   doman xdesktopwaves.1
-   insinto /usr/share/pixmaps
-   doins xdesktopwaves.xpm
-   make_desktop_entry xdesktopwaves
-   dodoc README
-}
-
-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"
-}