Gentoo Archives: gentoo-commits

From: Ben Kohler <bkohler@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/pdmenu/
Date: Tue, 09 Feb 2021 18:29:53
Message-Id: 1612895382.eaa37888336b6cc749053c3741eb862380cf9ac0.bkohler@gentoo
1 commit: eaa37888336b6cc749053c3741eb862380cf9ac0
2 Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
3 AuthorDate: Tue Feb 9 18:25:07 2021 +0000
4 Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 9 18:29:42 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eaa37888
7
8 app-shells/pdmenu: Remove old
9
10 Bug: https://bugs.gentoo.org/768867
11 Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
12 Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
13
14 app-shells/pdmenu/Manifest | 1 -
15 app-shells/pdmenu/pdmenu-1.3.4-r1.ebuild | 64 --------------------------------
16 2 files changed, 65 deletions(-)
17
18 diff --git a/app-shells/pdmenu/Manifest b/app-shells/pdmenu/Manifest
19 index 71dd0008557..3842a17e440 100644
20 --- a/app-shells/pdmenu/Manifest
21 +++ b/app-shells/pdmenu/Manifest
22 @@ -1,2 +1 @@
23 DIST pdmenu-1.3.6.tar.gz 160265 BLAKE2B 7b5a391e4f2ace71bbf7c9a9c184c997a8db91907d61dbcd79cda3112a5e6319942b3dc57bee19701b417a18689f57cb24f03bf38b9fcc064f3412ee175bef95 SHA512 2a930f98f49c3c94687fb403eb186ddc51fec67068c6b4b8dd6694cadb9fefb6802f878efe6e2caed62ddf68aeae36ec80fc9e56ca268021e32dee819f001fb5
24 -DIST pdmenu_1.3.4.tar.gz 161002 BLAKE2B 51fb2d0384df4b545f908e081e87a1d7414b22a5c1d9e2dffb2ac5f7d4069c7e2e9de8a1bde459a1fed34c8159f37aff8ef20b69e4817e28f9730500b26e654d SHA512 2540b3040a799f4682de1014f8da750501000cef7080ea24b066a7e44971e33452a25e3885849bc47a156727641c4acb8d1268d3c16a2aab2cb37d510f50f3ad
25
26 diff --git a/app-shells/pdmenu/pdmenu-1.3.4-r1.ebuild b/app-shells/pdmenu/pdmenu-1.3.4-r1.ebuild
27 deleted file mode 100644
28 index 272e4ffc8e6..00000000000
29 --- a/app-shells/pdmenu/pdmenu-1.3.4-r1.ebuild
30 +++ /dev/null
31 @@ -1,64 +0,0 @@
32 -# Copyright 1999-2021 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -
37 -inherit toolchain-funcs flag-o-matic
38 -
39 -DESCRIPTION="A simple console menu program"
40 -HOMEPAGE="http://joeyh.name/code/pdmenu/"
41 -SRC_URI="mirror://debian/pool/main/p/${PN}/pdmenu_${PV}.tar.gz"
42 -
43 -LICENSE="GPL-2"
44 -SLOT="0"
45 -KEYWORDS="amd64 ~mips x86"
46 -IUSE="nls gpm examples"
47 -
48 -DEPEND="
49 - sys-libs/slang
50 - gpm? ( sys-libs/gpm )
51 - nls? ( sys-devel/gettext )"
52 -
53 -S="${WORKDIR}/${PN}"
54 -
55 -RESTRICT="test"
56 -
57 -PATCHES=(
58 - "${FILESDIR}"/${PN}-impl-dec.patch
59 -)
60 -
61 -DOCS=( doc/ANNOUNCE doc/BUGS doc/TODO )
62 -
63 -src_prepare() {
64 - default
65 - sed \
66 - -e 's:\(-o pdmenu\):$(LDFLAGS) \1:g' \
67 - -i Makefile || die
68 -}
69 -
70 -src_configure() {
71 - append-flags -fcommon
72 - CC=$(tc-getCC) econf \
73 - $(use_with gpm) \
74 - $(use_enable nls)
75 -}
76 -
77 -src_compile() {
78 - emake CC=$(tc-getCC)
79 -}
80 -
81 -src_install() {
82 - dobin "${PN}"
83 - use examples && dodoc -r examples
84 - mv "doc/${PN}.man" "doc/${PN}.1" || die
85 - mv "doc/${PN}rc.man" "doc/${PN}rc.5" || die
86 - doman "doc/${PN}.1" "doc/${PN}rc.5"
87 - einstalldocs
88 -}
89 -
90 -pkg_postinst() {
91 - ewarn "Note this part from man page: Security warning! Any exec command"
92 - ewarn "that uses the 'edit' flag will be a security hole. The user need"
93 - ewarn "only to enter text with a ';' in it, and they can run an"
94 - ewarn "arbitrary command after the semicolon!"
95 -}