diff options
author | Johannes Huber <johu@gentoo.org> | 2012-08-22 09:20:50 +0000 |
---|---|---|
committer | Johannes Huber <johu@gentoo.org> | 2012-08-22 09:20:50 +0000 |
commit | a48544522d99fbf58600c6faedd5966a91d36cae (patch) | |
tree | be6fc7a5b91e5d4beb31137a20ad404ed037e78c /app-shells | |
parent | Stable for x86, wrt bug #428898 (diff) | |
download | gentoo-2-a48544522d99fbf58600c6faedd5966a91d36cae.tar.gz gentoo-2-a48544522d99fbf58600c6faedd5966a91d36cae.tar.bz2 gentoo-2-a48544522d99fbf58600c6faedd5966a91d36cae.zip |
Remove old.
(Portage version: 2.2.0_alpha121/cvs/Linux x86_64)
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/pdmenu/ChangeLog | 7 | ||||
-rw-r--r-- | app-shells/pdmenu/pdmenu-1.2.89.ebuild | 53 | ||||
-rw-r--r-- | app-shells/pdmenu/pdmenu-1.2.95.ebuild | 57 |
3 files changed, 5 insertions, 112 deletions
diff --git a/app-shells/pdmenu/ChangeLog b/app-shells/pdmenu/ChangeLog index bb3efab6c1a8..f81e951a1457 100644 --- a/app-shells/pdmenu/ChangeLog +++ b/app-shells/pdmenu/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-shells/pdmenu # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/pdmenu/ChangeLog,v 1.21 2012/08/22 09:17:13 johu Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/pdmenu/ChangeLog,v 1.22 2012/08/22 09:20:49 johu Exp $ + + 22 Aug 2012; Johannes Huber <johu@gentoo.org> -pdmenu-1.2.89.ebuild, + -pdmenu-1.2.95.ebuild: + Remove old. 22 Aug 2012; Johannes Huber <johu@gentoo.org> pdmenu-1.3.2.ebuild: Stable for x86, wrt bug #428898 @@ -80,4 +84,3 @@ 20 Aug 2006; Bryan Østergaard <kloeri@gentoo.org> +metadata.xml, +pdmenu-1.2.89.ebuild: Initial commit. Ebuild by Alexander H. Færøy <alex@stener.nu> - diff --git a/app-shells/pdmenu/pdmenu-1.2.89.ebuild b/app-shells/pdmenu/pdmenu-1.2.89.ebuild deleted file mode 100644 index 8a32b8d797c9..000000000000 --- a/app-shells/pdmenu/pdmenu-1.2.89.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/pdmenu/pdmenu-1.2.89.ebuild,v 1.15 2012/07/08 15:26:09 armin76 Exp $ - -DESCRIPTION="A simple console menu program" -HOMEPAGE="http://joeyh.name/code/pdmenu/" -SRC_URI="mirror://debian/pool/main/p/pdmenu/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 )" -RDEPEND="${DEPEND}" - -S=${WORKDIR}/${PN} - -RESTRICT="test" - -src_compile() { - econf \ - $(use_with gpm) \ - $(use_enable nls) \ - || die "econf failed" - - emake || die "emake failed" -} - -src_install() { - dodoc doc/ANNOUNCE doc/BUGS doc/TODO - - if use examples; then - insinto /usr/share/doc/${PF} - doins -r examples - fi - - mv doc/pdmenu.man doc/pdmenu.1 - mv doc/pdmenurc.man doc/pdmenurc.5 - doman doc/pdmenu.1 doc/pdmenurc.5 - - dobin pdmenu -} - -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!" -} diff --git a/app-shells/pdmenu/pdmenu-1.2.95.ebuild b/app-shells/pdmenu/pdmenu-1.2.95.ebuild deleted file mode 100644 index 94ec8a81a84d..000000000000 --- a/app-shells/pdmenu/pdmenu-1.2.95.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/pdmenu/pdmenu-1.2.95.ebuild,v 1.6 2012/07/08 15:26:09 armin76 Exp $ - -EAPI=4 - -inherit eutils - -DESCRIPTION="A simple console menu program" -HOMEPAGE="http://joeyh.name/code/pdmenu/" -SRC_URI="mirror://debian/pool/main/p/pdmenu/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() { - sed \ - -e 's:\(-o pdmenu\):$(LDFLAGS) \1:g' \ - -i Makefile || die -} - -src_configure() { - econf \ - $(use_with gpm) \ - $(use_enable nls) -} - -src_install() { - dobin pdmenu - - dodoc doc/ANNOUNCE doc/BUGS doc/TODO - - use examples && doins -r examples - - mv doc/pdmenu.man doc/pdmenu.1 - mv doc/pdmenurc.man doc/pdmenurc.5 - doman doc/pdmenu.1 doc/pdmenurc.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!" -} |