diff options
author | Pacho Ramos <pacho@gentoo.org> | 2017-01-15 12:14:55 +0100 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2017-01-15 12:20:30 +0100 |
commit | 86f1292d45cea6c96389183e913f4b2fd939ba9d (patch) | |
tree | 0ae8c52a475112122777d2e1bf3a52161d956bb4 /x11-misc/menumaker/menumaker-0.99.7.ebuild | |
parent | x11-misc/icewmcp: Drop old (diff) | |
download | gentoo-86f1292d45cea6c96389183e913f4b2fd939ba9d.tar.gz gentoo-86f1292d45cea6c96389183e913f4b2fd939ba9d.tar.bz2 gentoo-86f1292d45cea6c96389183e913f4b2fd939ba9d.zip |
x11-misc/menumaker: Drop old
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'x11-misc/menumaker/menumaker-0.99.7.ebuild')
-rw-r--r-- | x11-misc/menumaker/menumaker-0.99.7.ebuild | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/x11-misc/menumaker/menumaker-0.99.7.ebuild b/x11-misc/menumaker/menumaker-0.99.7.ebuild deleted file mode 100644 index a0f6bfa48dad..000000000000 --- a/x11-misc/menumaker/menumaker-0.99.7.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="3" -PYTHON_DEPEND="2" - -inherit multilib python - -DESCRIPTION="Utility that scans through the system and generates a menu of installed programs" -HOMEPAGE="http://menumaker.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~ppc x86 ~x86-fbsd" -IUSE="doc" - -DEPEND="doc? ( sys-apps/texinfo )" -RDEPEND="" - -pkg_setup() { - python_set_active_version 2 - python_pkg_setup -} - -src_configure() { - econf PYTHON="$(PYTHON)" -} - -src_compile() { - emake -j1 || die "emake failed" - - if use doc; then - cd doc - emake html || die "Generation of documentation failed" - fi -} - -src_install() { - emake -j1 DESTDIR="${D}" install || die "emake install failed" - python_need_rebuild - - find "${D}" "(" -name "*.pyc" -o -name "*.pyo" ")" -print0 | xargs -0 rm -fr - - dodoc ChangeLog README NEWS AUTHORS INSTALL - - if use doc; then - dohtml doc/mmaker.html/* - fi -} - -pkg_postinst() { - python_mod_optimize /usr/$(get_libdir)/menumaker -} - -pkg_postrm() { - python_mod_cleanup /usr/$(get_libdir)/menumaker -} |