diff options
author | Mikle Kolyada <zlogene@gentoo.org> | 2018-01-06 01:40:00 +0300 |
---|---|---|
committer | Mikle Kolyada <zlogene@gentoo.org> | 2018-01-06 01:40:00 +0300 |
commit | aae8261d2468fb4d03a57363c575d52fc2d30a93 (patch) | |
tree | 5eb6e498ea76352d6b6ec283f2cf1ebf90aa876c /x11-plugins | |
parent | x11-plugins/wmdf: remove last rited package (bug #639914) (diff) | |
download | gentoo-aae8261d2468fb4d03a57363c575d52fc2d30a93.tar.gz gentoo-aae8261d2468fb4d03a57363c575d52fc2d30a93.tar.bz2 gentoo-aae8261d2468fb4d03a57363c575d52fc2d30a93.zip |
x11-plugins/wmdl: remove last rited package (bug #639914)
Diffstat (limited to 'x11-plugins')
-rw-r--r-- | x11-plugins/wmdl/Manifest | 1 | ||||
-rw-r--r-- | x11-plugins/wmdl/files/makefile.diff | 44 | ||||
-rw-r--r-- | x11-plugins/wmdl/metadata.xml | 9 | ||||
-rw-r--r-- | x11-plugins/wmdl/wmdl-1.4.1.ebuild | 35 |
4 files changed, 0 insertions, 89 deletions
diff --git a/x11-plugins/wmdl/Manifest b/x11-plugins/wmdl/Manifest deleted file mode 100644 index a60772cfb167..000000000000 --- a/x11-plugins/wmdl/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST wmdl-1.4.1.tar.gz 45557 BLAKE2B 589c4f0b8b698583a9b9196650cc5d31bd6e6346c01c49144db367349733d4bfb33b78180b28754a49e6192caa8ba1b734cea539b1406f9e737831981c1f3b85 SHA512 6c5b9050d83f15a8e05f4991fa52d6722b6da0d429540f0e0984e2582838f2b0bde0e2a7d817dc01c72424504b655a186ab1f1b20c370034365bc7f697b777d0 diff --git a/x11-plugins/wmdl/files/makefile.diff b/x11-plugins/wmdl/files/makefile.diff deleted file mode 100644 index 90491b7a93e9..000000000000 --- a/x11-plugins/wmdl/files/makefile.diff +++ /dev/null @@ -1,44 +0,0 @@ -diff -urN wmdl-1.4.1/Makefile wmdl-1.4.1-modified/Makefile ---- Makefile 2009-04-28 16:34:24.000000000 +0200 -+++ Makefile.new 2009-04-28 16:33:55.000000000 +0200 -@@ -1,23 +1,14 @@ - --INCLUDES = -I/usr/include \ -- -I/usr/local/include \ -- -I/usr/openwin/share/include/X11 -- --LIBINC = -L/usr/lib/X11 \ -- -L/usr/X11/lib \ -- -L/usr/X11R6/lib \ -- -L/usr/local/lib/X11 -+INCLUDES = -+ -+LIBINC = -L/usr/X11R6/lib - - PIXMAPINC = -I./images - - LIBS = -lm -lX11 -lXpm -lXext - - --CC=gcc --#CC=cc -- --#CFLAGS= -g --verbose --CFLAGS= -g -+FLAGS=${CFLAGS} - - TARGET=wmdl - SOURCE=wmdl.c -@@ -25,10 +16,10 @@ - all: ${TARGET} - - ${TARGET}: ${SOURCE} -- $(CC) $(CFLAGS) -o ${TARGET} ${SOURCE} ${INCLUDES} ${LIBINC} ${PIXMAPINC} ${LIBS} -+ $(CC) $(FLAGS) -o ${TARGET} ${SOURCE} ${INCLUDES} ${LIBINC} ${PIXMAPINC} ${LIBS} - - clean: - if [ -e wmdl ] ; then rm wmdl; fi - - install: -- if [ -e /usr/local/bin ] ; then cp wmdl /usr/local/bin ; fi -+ if [ -e /usr/bin ] ; then cp wmdl /usr/bin ; fi diff --git a/x11-plugins/wmdl/metadata.xml b/x11-plugins/wmdl/metadata.xml deleted file mode 100644 index 1d5e6504004e..000000000000 --- a/x11-plugins/wmdl/metadata.xml +++ /dev/null @@ -1,9 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<maintainer type="person"> - <email>voyageur@gentoo.org</email> - <name>Bernard Cafarelli</name> -</maintainer> - -</pkgmetadata> diff --git a/x11-plugins/wmdl/wmdl-1.4.1.ebuild b/x11-plugins/wmdl/wmdl-1.4.1.ebuild deleted file mode 100644 index 67c681520637..000000000000 --- a/x11-plugins/wmdl/wmdl-1.4.1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -inherit eutils - -IUSE="" -DESCRIPTION="WindowMaker Doom Load dockapp" -HOMEPAGE="http://the.homepage.doesnt.appear.to.exist.anymore.com" -SRC_URI="http://www.ibiblio.org/pub/linux/distributions/gentoo/distfiles/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc sparc x86" - -RDEPEND="x11-libs/libX11 - x11-libs/libXext - x11-libs/libXpm" -DEPEND="${RDEPEND} - x11-proto/xproto - x11-proto/xextproto" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/makefile.diff - -} - -src_compile() { - emake FLAGS="${CFLAGS} ${LDFLAGS}" || die "parallel make failed" -} - -src_install() { - dobin wmdl || die "dobin failed." -} |