diff options
author | Ben Kohler <bkohler@gentoo.org> | 2021-01-06 14:51:03 -0600 |
---|---|---|
committer | Ben Kohler <bkohler@gentoo.org> | 2021-01-06 14:51:03 -0600 |
commit | decdcc3165611c3cded6c90c7ba34b043719154b (patch) | |
tree | 7196b7c95267bea2d246e5e16c9d1c65cddc4892 /app-shells | |
parent | sys-fs/udev: add PYTHON_DEPS (diff) | |
download | gentoo-decdcc3165611c3cded6c90c7ba34b043719154b.tar.gz gentoo-decdcc3165611c3cded6c90c7ba34b043719154b.tar.bz2 gentoo-decdcc3165611c3cded6c90c7ba34b043719154b.zip |
app-shells/pdmenu: version bump, comaintain
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Ben Kohler <bkohler@gentoo.org>
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/pdmenu/Manifest | 1 | ||||
-rw-r--r-- | app-shells/pdmenu/metadata.xml | 4 | ||||
-rw-r--r-- | app-shells/pdmenu/pdmenu-1.3.6.ebuild | 61 |
3 files changed, 66 insertions, 0 deletions
diff --git a/app-shells/pdmenu/Manifest b/app-shells/pdmenu/Manifest index 6f1ca4109ff4..71dd0008557e 100644 --- a/app-shells/pdmenu/Manifest +++ b/app-shells/pdmenu/Manifest @@ -1 +1,2 @@ +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/metadata.xml b/app-shells/pdmenu/metadata.xml index 294c350c6960..707bbf679d13 100644 --- a/app-shells/pdmenu/metadata.xml +++ b/app-shells/pdmenu/metadata.xml @@ -4,4 +4,8 @@ <maintainer type="person"> <email>monsieurp@gentoo.org</email> </maintainer> + <maintainer type="person"> + <email>bkohler@gentoo.org</email> + <name>Ben Kohler</name> + </maintainer> </pkgmetadata> diff --git a/app-shells/pdmenu/pdmenu-1.3.6.ebuild b/app-shells/pdmenu/pdmenu-1.3.6.ebuild new file mode 100644 index 000000000000..68faa77355e3 --- /dev/null +++ b/app-shells/pdmenu/pdmenu-1.3.6.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="A simple console menu program" +HOMEPAGE="http://joeyh.name/code/pdmenu/" +SRC_URI="https://dev.gentoo.org/~bkohler/dist/${P}.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 )" + +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() { + 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!" +} |