summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Bauman <bman@gentoo.org>2020-11-29 13:01:50 -0500
committerAaron Bauman <bman@gentoo.org>2020-11-29 13:01:50 -0500
commit05a8fb90f555edfd0a720c18919b19e33a89b0a7 (patch)
tree4219de6811e4d0d3e5845e33af984d7b7c18b2c7 /x11-wm/pekwm
parentnet-analyzer/calamaris: drop old and stable keywords (diff)
downloadgentoo-05a8fb90f555edfd0a720c18919b19e33a89b0a7.tar.gz
gentoo-05a8fb90f555edfd0a720c18919b19e33a89b0a7.tar.bz2
gentoo-05a8fb90f555edfd0a720c18919b19e33a89b0a7.zip
x11-wm/pekwm: drop old
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'x11-wm/pekwm')
-rw-r--r--x11-wm/pekwm/Manifest1
-rw-r--r--x11-wm/pekwm/pekwm-0.1.17-r1.ebuild81
2 files changed, 0 insertions, 82 deletions
diff --git a/x11-wm/pekwm/Manifest b/x11-wm/pekwm/Manifest
index 5bc3d2e8e2d7..7ced27df08e8 100644
--- a/x11-wm/pekwm/Manifest
+++ b/x11-wm/pekwm/Manifest
@@ -1,3 +1,2 @@
-DIST pekwm-0.1.17.tar.bz2 405742 BLAKE2B 6cb47f92f8d32358ece8502fd706880478403ec01bb1aea0a042b2f9a110672c923c7289583f4b63b0e190b3979631c60760fae70174ecb205dfccf15baac398 SHA512 fa4c95ddc7e17f737b4e90f32258a79bf2a0abe96a2ab1a4166b1aa6832ff7a978116d224c98c31a4b33444b3c59e9ecd6095ca062d8a65f0f6174803f5b0811
DIST pekwm-0.1.17.tar.gz 429100 BLAKE2B 2b467539ef47f4404411f25146f9f945f9a63b7e4c85c997ed2cd0bf76ea713758e3a09dc9648064c02ab29818399623d12d78394f250c79f8f667a6e057281c SHA512 1950888402f11c5cd72c9d82de976c472d4a0443da206629a039d19a1729660fd7cd09535d35984d554dcdb366918d9e29536b1272521f36f7e54499df0c14af
DIST pekwm-themes.tar.bz2 138599 BLAKE2B b0c103d7ade6f9bb1ed19b7e12cfcf00fb48be7e1ed141a4b52aee404ebf9c7af5d29af166ff7265a720ca8d122ad7eddb6eaf42a0a8e18b6c1ff3af7b5e12d0 SHA512 c95bc980b5aeeb4f4832cb2dbbf82adf72e4a784fcd46432fd6e6a6577ef02823ec1c4b861d07747c066050fc5040aca975e2cdc78342abab99a3d486888a25d
diff --git a/x11-wm/pekwm/pekwm-0.1.17-r1.ebuild b/x11-wm/pekwm/pekwm-0.1.17-r1.ebuild
deleted file mode 100644
index ec556a922a71..000000000000
--- a/x11-wm/pekwm/pekwm-0.1.17-r1.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils
-
-DESCRIPTION="A lightweight window manager initially based on aewm++"
-HOMEPAGE="http://pekwm.org/"
-SRC_URI="
- http://pekwm.org/projects/pekwm/files/${P}.tar.bz2
- themes? ( mirror://gentoo/${PN}-themes.tar.bz2 )
-"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS=" amd64 ~mips ppc x86"
-IUSE="contrib debug themes truetype xinerama"
-
-RDEPEND="
- media-libs/libpng:0=
- virtual/jpeg:0
- x11-libs/libXpm
- x11-libs/libXrandr
- x11-libs/libXrender
- truetype? ( x11-libs/libXft )
- xinerama? ( x11-libs/libXinerama )
-"
-
-DEPEND="
- ${RDEPEND}
- virtual/pkgconfig
-"
-
-src_prepare() {
- if use themes; then
- rm "${WORKDIR}"/themes/Ace/.theme.swp || die
- fi
-}
-
-src_configure() {
- econf \
- $(use_enable debug) \
- $(use_enable truetype xft) \
- $(use_enable xinerama) \
- --enable-image-jpeg \
- --enable-image-png \
- --enable-image-xpm \
- --enable-shape \
- --enable-xrandr
-}
-
-src_install() {
- default
-
- # Install contributor scripts into doc folder
- if use contrib ; then
- docinto /usr/share/doc/${PF}/contrib
- dodoc contrib/lobo/{check.png,pekwm_autoprop.pl,pekwm_menu_config.pl} \
- contrib/lobo/{pekwm_menu_config.pl.vars,README,uncheck.png}
- fi
-
- if use themes; then
- insinto /usr/share/${PN}/themes
- doins -r "${WORKDIR}"/themes/*
- fi
-
- # Insert an Xsession
- echo -e "#!/bin/sh\n\n/usr/bin/${PN}" > "${T}"/${PN} || die
- exeinto /etc/X11/Sessions
- doexe "${T}"/${PN}
-
- # Insert a GDM/KDM xsession file
- make_session_desktop ${PN} ${PN}
-}
-
-pkg_postinst() {
- if use contrib ; then
- elog " User contributed scripts have been installed into:"
- elog " /usr/share/doc/${PF}/contrib"
- fi
-}