diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /x11-misc/xdesktopwaves | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
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/metadata.xml | 14 | ||||
-rw-r--r-- | x11-misc/xdesktopwaves/xdesktopwaves-1.3-r1.ebuild | 46 | ||||
-rw-r--r-- | x11-misc/xdesktopwaves/xdesktopwaves-1.3.ebuild | 39 |
5 files changed, 138 insertions, 0 deletions
diff --git a/x11-misc/xdesktopwaves/Manifest b/x11-misc/xdesktopwaves/Manifest new file mode 100644 index 000000000000..76f5aacd6a94 --- /dev/null +++ b/x11-misc/xdesktopwaves/Manifest @@ -0,0 +1 @@ +DIST xdesktopwaves-1.3.tar.gz 49302 SHA256 185a1fe56095610e95580713eec491ad1d93f4c89015ae612f214e1ccee51779 diff --git a/x11-misc/xdesktopwaves/files/xdesktopwaves-1.3-gentoo.patch b/x11-misc/xdesktopwaves/files/xdesktopwaves-1.3-gentoo.patch new file mode 100644 index 000000000000..accbb4d9baec --- /dev/null +++ b/x11-misc/xdesktopwaves/files/xdesktopwaves-1.3-gentoo.patch @@ -0,0 +1,38 @@ +--- xdesktopwaves-1.3/Makefile.org 2004-12-18 06:47:40.000000000 +0100 ++++ xdesktopwaves-1.3/Makefile 2010-02-08 20:05:31.000000000 +0100 +@@ -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 ========================== + +--- xdesktopwaves-1.3/xdwapi/Makefile.org 2004-12-18 06:47:40.000000000 +0100 ++++ xdesktopwaves-1.3/xdwapi/Makefile 2010-02-08 20:08:14.000000000 +0100 +@@ -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/metadata.xml b/x11-misc/xdesktopwaves/metadata.xml new file mode 100644 index 000000000000..e6f7528ea31a --- /dev/null +++ b/x11-misc/xdesktopwaves/metadata.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>desktop-misc</herd> + <longdescription> + xdesktopwaves is a cellular automata setting the background of your + 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. + </longdescription> + <upstream> + <remote-id type="sourceforge">xdesktopwaves</remote-id> + </upstream> +</pkgmetadata> diff --git a/x11-misc/xdesktopwaves/xdesktopwaves-1.3-r1.ebuild b/x11-misc/xdesktopwaves/xdesktopwaves-1.3-r1.ebuild new file mode 100644 index 000000000000..43a8b912963d --- /dev/null +++ b/x11-misc/xdesktopwaves/xdesktopwaves-1.3-r1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +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" +} diff --git a/x11-misc/xdesktopwaves/xdesktopwaves-1.3.ebuild b/x11-misc/xdesktopwaves/xdesktopwaves-1.3.ebuild new file mode 100644 index 000000000000..20b4aa95c6b3 --- /dev/null +++ b/x11-misc/xdesktopwaves/xdesktopwaves-1.3.ebuild @@ -0,0 +1,39 @@ +# 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" +} |