diff options
author | Pacho Ramos <pacho@gentoo.org> | 2015-01-26 10:51:10 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2015-01-26 10:51:10 +0000 |
commit | c17a56ab4d446596f3a8e88e55ad1c734dd21ae5 (patch) | |
tree | 6d32db8ec5e0f9050ee975f22b413df144f29d83 /dev-util/bam/bam-0.4.0.ebuild | |
parent | drop old (diff) | |
download | gentoo-2-c17a56ab4d446596f3a8e88e55ad1c734dd21ae5.tar.gz gentoo-2-c17a56ab4d446596f3a8e88e55ad1c734dd21ae5.tar.bz2 gentoo-2-c17a56ab4d446596f3a8e88e55ad1c734dd21ae5.zip |
drop old
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'dev-util/bam/bam-0.4.0.ebuild')
-rw-r--r-- | dev-util/bam/bam-0.4.0.ebuild | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/dev-util/bam/bam-0.4.0.ebuild b/dev-util/bam/bam-0.4.0.ebuild deleted file mode 100644 index b22644bf3f16..000000000000 --- a/dev-util/bam/bam-0.4.0.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/bam/bam-0.4.0.ebuild,v 1.5 2012/07/22 17:32:58 pacho Exp $ - -EAPI=4 -PYTHON_DEPEND="2" - -inherit eutils python toolchain-funcs - -DESCRIPTION="Fast and flexible Lua-based build system" -HOMEPAGE="http://matricks.github.com/bam/" -SRC_URI="http://github.com/downloads/matricks/${PN}/${P}.tar.bz2" - -LICENSE="ZLIB" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="doc test" - -RDEPEND="dev-lang/lua" -DEPEND="${RDEPEND} - doc? ( dev-lang/python ) - test? ( dev-lang/python )" - -pkg_setup() { - python_set_active_version 2 - python_pkg_setup -} - -src_prepare() { - cp "${FILESDIR}"/${PV}/Makefile "${S}"/Makefile || die "cp failed" - epatch "${FILESDIR}"/${PV}/${P}-test.py.patch - python_convert_shebangs -r 2 . - tc-export CC -} - -src_compile() { - emake ${PN} - if use doc; then - $(PYTHON) scripts/gendocs.py || die "doc generation failed" - fi -} - -src_install() { - dobin ${PN} - if use doc; then - dohtml docs/${PN}{.html,_logo.png} - fi -} |