summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernard Cafarelli <voyageur@gentoo.org>2017-12-05 14:42:56 +0100
committerBernard Cafarelli <voyageur@gentoo.org>2017-12-05 16:10:49 +0100
commit298f106fc1d9d996277aa20e8b7a7f21908d4426 (patch)
tree236da8de4d96379c840d0d27c8b6436c3f34af15 /x11-plugins
parentdev-perl/Net-LDAPapi: Bump to version 3.0.5 (diff)
downloadgentoo-298f106fc1d9d996277aa20e8b7a7f21908d4426.tar.gz
gentoo-298f106fc1d9d996277aa20e8b7a7f21908d4426.tar.bz2
gentoo-298f106fc1d9d996277aa20e8b7a7f21908d4426.zip
x11-plugins/wmmixer: drop old
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'x11-plugins')
-rw-r--r--x11-plugins/wmmixer/Manifest1
-rw-r--r--x11-plugins/wmmixer/files/wmmixer-1.7-respect_flags.patch34
-rw-r--r--x11-plugins/wmmixer/wmmixer-1.7.ebuild37
3 files changed, 0 insertions, 72 deletions
diff --git a/x11-plugins/wmmixer/Manifest b/x11-plugins/wmmixer/Manifest
index 2abcfbf794f4..79c1040aea1f 100644
--- a/x11-plugins/wmmixer/Manifest
+++ b/x11-plugins/wmmixer/Manifest
@@ -1,2 +1 @@
DIST wmmixer-1.8.tar.gz 102723 SHA256 bbcb1e3cecd7a97be79c25cf4338aa5ddf47360192324ad9bd947d4902011159 SHA512 3b5c7f27da6ed2cbf8d06c431584186799d17e72db663db6ffc488f777c31de0b13fcc3f665099925efab036a14e70da4bbbabaff6ffc12280698e91f555e276 WHIRLPOOL 1e7a30a0d6ab586760d8b50b72e5639567220bd5c1c85bf546c5c2738e93b1fde646a29badb97c75c404dbff05aa0fc5b5d3fe0c8f55f35da2e61a96dd06327c
-DIST wmmixer_1.7.orig.tar.gz 24916 SHA256 ee4ae77130dddeb8eb26d00fbbe879f09e1542d3cf8a3e713d8f8f8a91f4aecd SHA512 81e32a821df423aff4ee0eef8c1dbd7a8302f0f43f3a6cfec3fd71b26dfca536ae2f8e0313404976eb21c217724e074eed9bf40c67360f28e901d4265580a1e4 WHIRLPOOL 9baa5ae9c4b9b23836346539ef9fd70a494d45c0a583986b6572efe98e0ff036b67681da39f95fa344f7c3ab32dc8e1c24a6cdcf2f56c33157c828e367834b97
diff --git a/x11-plugins/wmmixer/files/wmmixer-1.7-respect_flags.patch b/x11-plugins/wmmixer/files/wmmixer-1.7-respect_flags.patch
deleted file mode 100644
index feb03166dddd..000000000000
--- a/x11-plugins/wmmixer/files/wmmixer-1.7-respect_flags.patch
+++ /dev/null
@@ -1,34 +0,0 @@
---- Makefile.orig 2012-08-21 11:03:31.028266807 +0200
-+++ Makefile 2012-08-21 11:05:06.808876995 +0200
-@@ -1,19 +1,12 @@
- # $Id$
-
--prefix = /usr/local
-+prefix = /usr
- exec_prefix = ${prefix}
- bindir = ${exec_prefix}/bin
- mandir = ${prefix}/share/man
-
--DESTDIR =
--
--CXX = g++
--CXXFLAGS = -O -Wall
--EXTRA_LIBS = -L/usr/X11R6/lib -lX11 -lXpm -lXext
--
--
--LD = g++
--LDFLAGS = -o $(EXECUTABLE) $(CXXFLAGS)
-+CXX ?= g++
-+LIBS = -lX11 -lXpm -lXext
-
- EXECUTABLE = wmmixer
- OBJS = xhandler.o mixctl.o wmmixer.o exception.o
-@@ -26,7 +19,7 @@
- $(CXX) $(CXXFLAGS) -c -o $@ $<
-
- $(EXECUTABLE): $(OBJS)
-- $(LD) $(LDFLAGS) $(OBJS) $(EXTRA_LIBDIRS) $(EXTRA_LIBS)
-+ $(CXX) $(LDFLAGS) $(OBJS) $(LIBS) -o $(EXECUTABLE)
-
- all: $(EXECUTABLE)
-
diff --git a/x11-plugins/wmmixer/wmmixer-1.7.ebuild b/x11-plugins/wmmixer/wmmixer-1.7.ebuild
deleted file mode 100644
index c2f78e5f1afc..000000000000
--- a/x11-plugins/wmmixer/wmmixer-1.7.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="A mixer designed for WindowMaker"
-HOMEPAGE="https://packages.qa.debian.org/w/wmmixer.html"
-SRC_URI="mirror://debian/pool/main/w/${PN}/${PN}_${PV}.orig.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~mips ~sparc ~x86"
-IUSE=""
-
-RDEPEND="x11-libs/libX11
- x11-libs/libXext
- x11-libs/libXpm"
-DEPEND="${RDEPEND}
- x11-proto/xproto
- x11-proto/xextproto"
-
-S=${WORKDIR}/${PN}
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-respect_flags.patch
-}
-
-src_compile() {
- emake CXX=$(tc-getCXX)
-}
-
-src_install() {
- emake DESTDIR="${D}" install
- dodoc CHANGES home.wmmixer README
-}