diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2016-12-26 01:13:09 +0100 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2016-12-26 01:29:42 +0100 |
commit | 5cd6b4ba39ea43200c4a5fdadf4be7404d25dc51 (patch) | |
tree | c9c235ff78630fe6d141375e59b2261dea287134 /app-shells/pdmenu | |
parent | app-shells/pdmenu: stable for all. (diff) | |
download | gentoo-5cd6b4ba39ea43200c4a5fdadf4be7404d25dc51.tar.gz gentoo-5cd6b4ba39ea43200c4a5fdadf4be7404d25dc51.tar.bz2 gentoo-5cd6b4ba39ea43200c4a5fdadf4be7404d25dc51.zip |
app-shells/pdmenu: clean up old.
Package-Manager: portage-2.3.0
Diffstat (limited to 'app-shells/pdmenu')
-rw-r--r-- | app-shells/pdmenu/pdmenu-1.3.4.ebuild | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/app-shells/pdmenu/pdmenu-1.3.4.ebuild b/app-shells/pdmenu/pdmenu-1.3.4.ebuild deleted file mode 100644 index bce67fcabf53..000000000000 --- a/app-shells/pdmenu/pdmenu-1.3.4.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit eutils toolchain-funcs - -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" - -src_prepare() { - epatch "${FILESDIR}"/${PN}-impl-dec.patch - 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) || die -} - -src_install() { - dobin "${PN}" - dodoc doc/ANNOUNCE doc/BUGS doc/TODO - 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" - -} - -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!" -} |