diff options
-rw-r--r-- | x11-plugins/wmlpq/Manifest | 1 | ||||
-rw-r--r-- | x11-plugins/wmlpq/files/wmlpq-makefile-ldflags.patch | 30 | ||||
-rw-r--r-- | x11-plugins/wmlpq/files/wmlpq.desktop | 8 | ||||
-rw-r--r-- | x11-plugins/wmlpq/metadata.xml | 8 | ||||
-rw-r--r-- | x11-plugins/wmlpq/wmlpq-0.2.1-r3.ebuild | 38 |
5 files changed, 0 insertions, 85 deletions
diff --git a/x11-plugins/wmlpq/Manifest b/x11-plugins/wmlpq/Manifest deleted file mode 100644 index 6c78e46b86da..000000000000 --- a/x11-plugins/wmlpq/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST wmlpq_0.2.1.tar.gz 15180 BLAKE2B b9834ca6be81b0db0d1387cb9b51893e7cdcb09820831052b9858d222fe22f7a4b8af86200d20c54f588d630f4d1a61b37befc45dd2f5fa5002b5d2bcf8f5e71 SHA512 757dc6f63d13f4715de7acf4cd436514de96ca78f7eb0e32f156c3a5f75c59e7e9c3d300a81bc1ce8e5def8a66f7678ca7b4b77969ef62f231c9db578c91ce4a diff --git a/x11-plugins/wmlpq/files/wmlpq-makefile-ldflags.patch b/x11-plugins/wmlpq/files/wmlpq-makefile-ldflags.patch deleted file mode 100644 index 308e7f4e687e..000000000000 --- a/x11-plugins/wmlpq/files/wmlpq-makefile-ldflags.patch +++ /dev/null @@ -1,30 +0,0 @@ ---- /Makefile.orig 2009-01-16 17:01:47.000000000 +0100 -+++ /Makefile 2009-01-16 17:04:18.000000000 +0100 -@@ -2,11 +2,11 @@ - CPPFLAGS = -I/usr/X11R6/include -I/usr/local/include - LIBS = -lXpm -lX11 -ldockapp - LDFLAGS = -L/usr/X11R6/lib -L/usr/local/lib --CFLAGS = -O2 -Wall -+CFLAGS = -Wall - DFLAGS = -ggdb3 -Wall -+DESTDIR = /usr/bin/ - - wmlpq: wmlpq.c wmlpq-master.xpm -- cc $(CFLAGS) $(LDFLAGS) $(CPPFLAGS) -o wmlpq $(LIBS) wmlpq.c -+ $(CC) $(CFLAGS) $(LDFLAGS) $(CPPFLAGS) wmlpq.c -o wmlpq $(LIBS) -- strip wmlpq - - debug: wmlpq.c wmlpq-master.xpm -@@ -18,10 +19,8 @@ - rm -f wmlpq - - install: wmlpq -- cp -f wmlpq /usr/local/bin/ -- chmod 755 /usr/local/bin/wmlpq -- cp -f wmlpq.1x /usr/local/man/man1/ -- chmod 644 /usr/local/man/man1/wmlpq.1x -+ cp -f wmlpq ${DESTDIR} -+ chmod 755 ${DESTDIR}/wmlpq - - install-debian: wmlpq - cp -f wmlpq $(prefix)/usr/X11R6/bin/ diff --git a/x11-plugins/wmlpq/files/wmlpq.desktop b/x11-plugins/wmlpq/files/wmlpq.desktop deleted file mode 100644 index 3939b0c85aa0..000000000000 --- a/x11-plugins/wmlpq/files/wmlpq.desktop +++ /dev/null @@ -1,8 +0,0 @@ -[Desktop Entry] -Name=WmLpq -Comment=Printqueues monitor -Comment[pl]=Monitor kolejki drukarek -Exec=wmlpq -Type=Application -Terminal=false -Categories=System; diff --git a/x11-plugins/wmlpq/metadata.xml b/x11-plugins/wmlpq/metadata.xml deleted file mode 100644 index 7d273a80ff68..000000000000 --- a/x11-plugins/wmlpq/metadata.xml +++ /dev/null @@ -1,8 +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/wmlpq/wmlpq-0.2.1-r3.ebuild b/x11-plugins/wmlpq/wmlpq-0.2.1-r3.ebuild deleted file mode 100644 index e22b8a4f12ca..000000000000 --- a/x11-plugins/wmlpq/wmlpq-0.2.1-r3.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit eutils flag-o-matic toolchain-funcs - -DESCRIPTION="Windowmaker dockapp which monitors up to 5 printqueues" -HOMEPAGE="http://www.ur.uklinux.net/wmlpq/" -SRC_URI="http://www.ur.uklinux.net/${PN}/dl/${P/-/_}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -DEPEND=">=x11-libs/libdockapp-0.7:=" -RDEPEND="${DEPEND}" - -src_prepare() { - epatch "${FILESDIR}/${PN}-makefile-ldflags.patch" - - sed -e 's#<dockapp.h>#<libdockapp/dockapp.h>#' -i *.c || die -} - -src_compile() { - emake CC=$(tc-getCC) LDFLAGS="${LDFLAGS}" -} - -src_install() { - dodir /usr/bin - emake DESTDIR="${D}"/usr/bin install - - dodoc README sample.wmlpqrc - newman wmlpq.1x wmlpq.1 - - domenu "${FILESDIR}/${PN}.desktop" -} |