summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-util')
-rw-r--r--dev-util/bam/ChangeLog5
-rw-r--r--dev-util/bam/bam-0.4.0.ebuild48
2 files changed, 4 insertions, 49 deletions
diff --git a/dev-util/bam/ChangeLog b/dev-util/bam/ChangeLog
index f7f5bb660ce9..625531f0adc7 100644
--- a/dev-util/bam/ChangeLog
+++ b/dev-util/bam/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/bam
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/bam/ChangeLog,v 1.12 2015/01/26 10:04:05 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/bam/ChangeLog,v 1.13 2015/01/26 10:51:10 pacho Exp $
+
+ 26 Jan 2015; Pacho Ramos <pacho@gentoo.org> -bam-0.4.0.ebuild:
+ drop old
26 Jan 2015; Agostino Sarubbo <ago@gentoo.org> bam-0.4.0-r1.ebuild:
Stable for x86, wrt bug #534724
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
-}