summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakov Smolic <jakov.smolic@sartura.hr>2021-02-09 19:25:07 +0100
committerBen Kohler <bkohler@gentoo.org>2021-02-09 12:29:42 -0600
commiteaa37888336b6cc749053c3741eb862380cf9ac0 (patch)
tree12cb336e5e02b586184ac97712760a263c9a3448 /app-shells
parentdev-python/pyxDamerauLevenshtein: Bump to 1.6.2 (diff)
downloadgentoo-eaa37888336b6cc749053c3741eb862380cf9ac0.tar.gz
gentoo-eaa37888336b6cc749053c3741eb862380cf9ac0.tar.bz2
gentoo-eaa37888336b6cc749053c3741eb862380cf9ac0.zip
app-shells/pdmenu: Remove old
Bug: https://bugs.gentoo.org/768867 Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr> Signed-off-by: Ben Kohler <bkohler@gentoo.org>
Diffstat (limited to 'app-shells')
-rw-r--r--app-shells/pdmenu/Manifest1
-rw-r--r--app-shells/pdmenu/pdmenu-1.3.4-r1.ebuild64
2 files changed, 0 insertions, 65 deletions
diff --git a/app-shells/pdmenu/Manifest b/app-shells/pdmenu/Manifest
index 71dd0008557e..3842a17e4408 100644
--- a/app-shells/pdmenu/Manifest
+++ b/app-shells/pdmenu/Manifest
@@ -1,2 +1 @@
DIST pdmenu-1.3.6.tar.gz 160265 BLAKE2B 7b5a391e4f2ace71bbf7c9a9c184c997a8db91907d61dbcd79cda3112a5e6319942b3dc57bee19701b417a18689f57cb24f03bf38b9fcc064f3412ee175bef95 SHA512 2a930f98f49c3c94687fb403eb186ddc51fec67068c6b4b8dd6694cadb9fefb6802f878efe6e2caed62ddf68aeae36ec80fc9e56ca268021e32dee819f001fb5
-DIST pdmenu_1.3.4.tar.gz 161002 BLAKE2B 51fb2d0384df4b545f908e081e87a1d7414b22a5c1d9e2dffb2ac5f7d4069c7e2e9de8a1bde459a1fed34c8159f37aff8ef20b69e4817e28f9730500b26e654d SHA512 2540b3040a799f4682de1014f8da750501000cef7080ea24b066a7e44971e33452a25e3885849bc47a156727641c4acb8d1268d3c16a2aab2cb37d510f50f3ad
diff --git a/app-shells/pdmenu/pdmenu-1.3.4-r1.ebuild b/app-shells/pdmenu/pdmenu-1.3.4-r1.ebuild
deleted file mode 100644
index 272e4ffc8e60..000000000000
--- a/app-shells/pdmenu/pdmenu-1.3.4-r1.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs flag-o-matic
-
-DESCRIPTION="A simple console menu program"
-HOMEPAGE="http://joeyh.name/code/pdmenu/"
-SRC_URI="mirror://debian/pool/main/p/${PN}/pdmenu_${PV}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~mips x86"
-IUSE="nls gpm examples"
-
-DEPEND="
- sys-libs/slang
- gpm? ( sys-libs/gpm )
- nls? ( sys-devel/gettext )"
-
-S="${WORKDIR}/${PN}"
-
-RESTRICT="test"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-impl-dec.patch
-)
-
-DOCS=( doc/ANNOUNCE doc/BUGS doc/TODO )
-
-src_prepare() {
- default
- sed \
- -e 's:\(-o pdmenu\):$(LDFLAGS) \1:g' \
- -i Makefile || die
-}
-
-src_configure() {
- append-flags -fcommon
- CC=$(tc-getCC) econf \
- $(use_with gpm) \
- $(use_enable nls)
-}
-
-src_compile() {
- emake CC=$(tc-getCC)
-}
-
-src_install() {
- dobin "${PN}"
- use examples && dodoc -r examples
- mv "doc/${PN}.man" "doc/${PN}.1" || die
- mv "doc/${PN}rc.man" "doc/${PN}rc.5" || die
- doman "doc/${PN}.1" "doc/${PN}rc.5"
- einstalldocs
-}
-
-pkg_postinst() {
- ewarn "Note this part from man page: Security warning! Any exec command"
- ewarn "that uses the 'edit' flag will be a security hole. The user need"
- ewarn "only to enter text with a ';' in it, and they can run an"
- ewarn "arbitrary command after the semicolon!"
-}