summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikle Kolyada <zlogene@gentoo.org>2018-06-03 09:56:59 +0300
committerMikle Kolyada <zlogene@gentoo.org>2018-06-03 09:56:59 +0300
commit73d3e385d787666ff7204d86726ed3b3e639a770 (patch)
treef6b79313a725a40f0b13aaf17f0ea99c1b37bffd /x11-wm/windowlab
parentx11-wm/windowlab: amd64/x86/ppc stable wrt bug #657180 (diff)
downloadgentoo-73d3e385d787666ff7204d86726ed3b3e639a770.tar.gz
gentoo-73d3e385d787666ff7204d86726ed3b3e639a770.tar.bz2
gentoo-73d3e385d787666ff7204d86726ed3b3e639a770.zip
x11-wm/windowlab: Drop old
Package-Manager: Portage-2.3.40, Repoman-2.3.7
Diffstat (limited to 'x11-wm/windowlab')
-rw-r--r--x11-wm/windowlab/Manifest1
-rw-r--r--x11-wm/windowlab/windowlab-1.34.ebuild56
2 files changed, 0 insertions, 57 deletions
diff --git a/x11-wm/windowlab/Manifest b/x11-wm/windowlab/Manifest
index cde6438620de..368bab2bb4b5 100644
--- a/x11-wm/windowlab/Manifest
+++ b/x11-wm/windowlab/Manifest
@@ -1,2 +1 @@
-DIST windowlab-1.34.tar 163840 BLAKE2B 5a4a310f3a9ef4047d6374119c3b9d6239ab450bb11139dc1686e57848d9f5125bab603f7b28a0b33e21403049176e14473d783e503604b7b83a229fd1e410eb SHA512 1d24065fdc2e66d9906d7a1c383d547f677db3c1343176501251637588c7683c08c2803473a505097cafda38486efbdc055bf9597c9ce00456c5ae0d1781e930
DIST windowlab-1.40.tar 174080 BLAKE2B 9091565b40e886f921f33251c293b39ad4ec544a98d91046e52fa4e1aae66141934645e724ee224750dd7c50fba5a45fe2b4482c46e860c752a10c2b00dd05a5 SHA512 abea16f4f85f846d426fecce548cef2bf867fc6545a720ec2d3a8d93eb5a4abd6942e44534bb7faef6cffe0551181764effa99d835b8f067a1510f7d50af6d3d
diff --git a/x11-wm/windowlab/windowlab-1.34.ebuild b/x11-wm/windowlab/windowlab-1.34.ebuild
deleted file mode 100644
index 56ce2b4b3c07..000000000000
--- a/x11-wm/windowlab/windowlab-1.34.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit eutils
-
-DESCRIPTION="small and simple window manager of novel design"
-HOMEPAGE="http://www.nickgravgaard.com/windowlab/"
-SRC_URI="http://www.nickgravgaard.com/${PN}/${P}.tar"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~mips ppc x86"
-IUSE="truetype"
-
-RDEPEND="truetype? ( x11-libs/libXft )
- x11-libs/libXext"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- x11-base/xorg-proto"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}/${PN}-1.34-fixed-font.patch"
-}
-
-src_compile() {
- if use truetype ; then
- export DEFINES=-DXFT
- export EXTRA_INC=$(pkg-config --cflags xft)
- export EXTRA_LIBS=$(pkg-config --libs xft)
- fi
- emake CFLAGS="${CFLAGS}" || die "emake failed"
-}
-
-src_install() {
- dobin ${PN} || die
-
- newman ${PN}.1x ${PN}.1 || die
- dodoc CHANGELOG README TODO || die
-
- dodir /etc/X11/${PN} || die
- insinto /etc/X11/${PN}
- doins ${PN}.menurc || die
-
- dodir /etc/X11/Sessions || die
- echo "/usr/bin/${PN}" > ${D}/etc/X11/Sessions/${PN}
- fperms a+x /etc/X11/Sessions/${PN}
-}
-
-pkg_postinst() {
- elog "${PN}'s menu config file has been changed from"
- elog "/etc/X11/${PN}/menurc to /etc/X11/${PN}/${PN}.menurc"
-}