summaryrefslogtreecommitdiff
path: root/dev-games/vamos/vamos-0.8.2.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
commit1798c4aeca70ac8d0a243684d6a798fbc65735f8 (patch)
treee48e19cb6fa03de18e1c63e1a93371b7ebc4eb56 /dev-games/vamos/vamos-0.8.2.ebuild
parentd87262dd706fec50cd150aab3e93883b6337466d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-games/vamos/vamos-0.8.2.ebuild')
-rw-r--r--dev-games/vamos/vamos-0.8.2.ebuild61
1 files changed, 0 insertions, 61 deletions
diff --git a/dev-games/vamos/vamos-0.8.2.ebuild b/dev-games/vamos/vamos-0.8.2.ebuild
deleted file mode 100644
index 51a6149d8609..000000000000
--- a/dev-games/vamos/vamos-0.8.2.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_{4,5,6} )
-
-inherit autotools python-single-r1
-
-DESCRIPTION="An automotive simulation framework"
-HOMEPAGE="http://vamos.sourceforge.net/"
-SRC_URI="mirror://sourceforge/vamos/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="test"
-
-RDEPEND="
- ${PYTHON_DEPS}
- dev-libs/boost:=[python,${PYTHON_USEDEP}]
- media-libs/freealut
- media-libs/freeglut
- media-libs/libpng:0=
- media-libs/libsdl[joystick,video]
- media-libs/openal
- virtual/glu
- virtual/opengl"
-DEPEND="${RDEPEND}
- >=sys-devel/autoconf-archive-2016.09.16
- virtual/pkgconfig"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-0.8.2-fix-buildsystem.patch
- "${FILESDIR}"/${PN}-0.8.2-fix-c++14.patch
-)
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- econf \
- --with-x \
- --disable-static \
- --with-boost-python="${EPYTHON#python}" \
- $(use_enable test unit-tests) \
- PYTHON="${EPYTHON}"
-}
-
-src_install() {
- MAKEOPTS="${MAKEOPTS} -j1" default #646014
-
- dobin caelum/.libs/caelum
- newdoc caelum/README README.caelum
-
- find "${D}" -name '*.la' -delete || die
-}