summaryrefslogtreecommitdiff
path: root/dev-util/bam/bam-0.5.1.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-09-23 10:22:15 +0100
committerV3n3RiX <venerix@redcorelinux.org>2020-09-23 10:22:15 +0100
commit8b4ace9c50842c5b83401ea7b179dcab940387e1 (patch)
tree230f3135ceaace633cf93e9838b185c4a6664c2e /dev-util/bam/bam-0.5.1.ebuild
parent9ee6d97c2883d42f204a533a8bc1f4562df778fb (diff)
gentoo resync : 23.09.2020
Diffstat (limited to 'dev-util/bam/bam-0.5.1.ebuild')
-rw-r--r--dev-util/bam/bam-0.5.1.ebuild53
1 files changed, 0 insertions, 53 deletions
diff --git a/dev-util/bam/bam-0.5.1.ebuild b/dev-util/bam/bam-0.5.1.ebuild
deleted file mode 100644
index 28b19976824f..000000000000
--- a/dev-util/bam/bam-0.5.1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit python-any-r1 toolchain-funcs
-
-DESCRIPTION="Fast and flexible Lua-based build system"
-HOMEPAGE="https://matricks.github.com/bam/"
-SRC_URI="https://github.com/matricks/bam/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="ZLIB"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-RDEPEND=">=dev-lang/lua-5.3:="
-DEPEND="${RDEPEND}"
-BDEPEND="doc? (
- ${PYTHON_DEPS}
- media-gfx/graphviz
- )
- test? ( ${PYTHON_DEPS} )"
-
-pkg_setup() {
- if use doc || use test; then
- python-any-r1_pkg_setup
- fi
-}
-
-src_prepare() {
- default
- # There is no such file licence.txt
- sed -e '/license\.txt/d' -i scripts/gendocs.py || die
- tc-export CC
-}
-
-src_compile() {
- emake ${PN}
- if use doc; then
- "${EPYTHON}" scripts/gendocs.py || die "doc generation failed"
- fi
-}
-
-src_install() {
- dobin ${PN}
- if use doc; then
- dodoc docs/${PN}{.html,_logo.png}
- fi
-}