diff options
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 -} |