diff options
author | Austin English <wizardedit@gentoo.org> | 2017-09-06 17:53:26 -0500 |
---|---|---|
committer | Austin English <wizardedit@gentoo.org> | 2017-09-06 17:58:22 -0500 |
commit | b88e7e5b4b43af26dc11a4462581c9f21b407c64 (patch) | |
tree | 25ff4ec273193fca89312a6e801a747aef022432 /games-fps/tenebrae/tenebrae-1.04-r1.ebuild | |
parent | games-fps/serious-sam-tse: remove deprecated games eclass (diff) | |
download | gentoo-b88e7e5b4b43af26dc11a4462581c9f21b407c64.tar.gz gentoo-b88e7e5b4b43af26dc11a4462581c9f21b407c64.tar.bz2 gentoo-b88e7e5b4b43af26dc11a4462581c9f21b407c64.zip |
games-fps/tenebrae: remove deprecated games eclass
Also update to EAPI 6
Gentoo-Bug: https://bugs.gentoo.org/574082
Package-Manager: Portage-2.3.6, Repoman-2.3.2
Diffstat (limited to 'games-fps/tenebrae/tenebrae-1.04-r1.ebuild')
-rw-r--r-- | games-fps/tenebrae/tenebrae-1.04-r1.ebuild | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/games-fps/tenebrae/tenebrae-1.04-r1.ebuild b/games-fps/tenebrae/tenebrae-1.04-r1.ebuild new file mode 100644 index 000000000000..82648759b40f --- /dev/null +++ b/games-fps/tenebrae/tenebrae-1.04-r1.ebuild @@ -0,0 +1,73 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +#ECVS_SERVER="cvs.tenebrae.sourceforge.net:/cvsroot/tenebrae" +#ECVS_MODULE="tenebrae_0" +#inherit cvs +inherit eutils + +DESCRIPTION="adds stencil shadows and per pixel lights to quake" +HOMEPAGE="http://tenebrae.sourceforge.net/" +SRC_URI="mirror://sourceforge/tenebrae/tenebraedata.zip + mirror://gentoo/${P}.tbz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +RDEPEND=" + virtual/glu + virtual/opengl + media-libs/libpng:0 + x11-libs/libXxf86dga + x11-libs/libXxf86vm" +DEPEND="${RDEPEND} + app-arch/unzip + x11-proto/xextproto + x11-proto/xf86dgaproto + x11-proto/xf86vidmodeproto" + +S=${WORKDIR} + +src_unpack() { + if [[ -z ${ECVS_MODULE} ]] ; then + unpack ${A} + else + cvs_src_unpack + fi +} + +src_prepare() { + cd tenebrae_0 || die "cd failed" + + sed -i \ + -e 's:png_set_gray_1_2_4_to_8:png_set_expand_gray_1_2_4_to_8:g' \ + gl_warp.c || die + + eapply "${FILESDIR}"/${PV}-glhax.patch + eapply "${FILESDIR}"/${P}-exec-stack.patch + eapply "${FILESDIR}"/${P}-redef.patch + + default + + cd linux || die "cd failed" + sed \ + -e "/^LDFLAGS/s:=:+=:" \ + -e "s:-mpentiumpro -O6:${CFLAGS}:" \ + Makefile.i386linux > Makefile || die +} + +src_compile() { + cd "${S}"/tenebrae_0/linux || die "cd failed" + emake MASTER_DIR="/usr/share/quake1" build_release +} + +src_install() { + newbin tenebrae_0/linux/release*/bin/tenebrae.run tenebrae + insinto "/usr/share/quake1/tenebrae" + doins "${WORKDIR}"/tenebrae/* + dodoc tenebrae_0/linux/README "${WORKDIR}"/Tenebrae_Readme.txt +} |