diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2016-01-01 14:36:17 -0500 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2016-01-01 14:36:41 -0500 |
commit | de02ff13e27641154dd8d4c6fcc2e115857a7920 (patch) | |
tree | 1f2035dd089e3c678ea475a35d76ba9e3ba35a29 /games-fps/industri | |
parent | dev-perl/DateTime-Format-Mail: Remove old (diff) | |
download | gentoo-de02ff13e27641154dd8d4c6fcc2e115857a7920.tar.gz gentoo-de02ff13e27641154dd8d4c6fcc2e115857a7920.tar.bz2 gentoo-de02ff13e27641154dd8d4c6fcc2e115857a7920.zip |
games-fps/industri: EAPI=5; tidy
Package-Manager: portage-2.2.24
Diffstat (limited to 'games-fps/industri')
-rw-r--r-- | games-fps/industri/industri-1.01.ebuild | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/games-fps/industri/industri-1.01.ebuild b/games-fps/industri/industri-1.01.ebuild index ecffa516a041..be29d3ce13ee 100644 --- a/games-fps/industri/industri-1.01.ebuild +++ b/games-fps/industri/industri-1.01.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=2 +EAPI=5 inherit eutils toolchain-funcs games DESCRIPTION="Quake/Tenebrae based, single player game" @@ -20,7 +20,7 @@ RDEPEND="virtual/opengl x11-libs/libXext x11-libs/libX11 x11-libs/libXxf86vm - media-libs/libpng + media-libs/libpng:0 cdinstall? ( games-fps/quake1-data )" DEPEND="${RDEPEND} x11-proto/xf86dgaproto @@ -33,15 +33,14 @@ S=${WORKDIR}/industri_BIN src_prepare() { mv linux/Makefile{.i386linux,} - sed -i -e "s:-mpentiumpro.*:${CFLAGS} \\\\:" linux/Makefile || die "sed failed" + sed -i -e "s:-mpentiumpro.*:${CFLAGS} \\\\:" linux/Makefile || die # Remove duplicated typedefs #71841 for typ in PFNGLFLUSHVERTEXARRAYRANGEAPPLEPROC PFNGLVERTEXARRAYRANGEAPPLEPROC ; do if echo '#include <GL/gl.h>' | $(tc-getCC) -E - 2>/dev/null | grep -sq ${typ} ; then sed -i \ -e "/^typedef.*${typ}/d" \ - glquake.h \ - || die "sed failed" + glquake.h || die fi done @@ -58,27 +57,25 @@ src_compile() { emake \ -C linux \ MASTER_DIR="${GAMES_DATADIR}"/quake1 \ - build_release \ - || die "emake failed" + build_release } src_install() { - newgamesbin linux/release*/bin/industri.run industri || die - dogamesbin "${FILESDIR}"/industri.pretty || die + newgamesbin linux/release*/bin/industri.run industri + dogamesbin "${FILESDIR}"/industri.pretty insinto /usr/share/icons - doins industri.ico quake.ico || die + doins industri.ico quake.ico dodoc linux/README cd "${WORKDIR}"/${PN} dodoc *.txt insinto "${GAMES_DATADIR}"/quake1/${PN} - doins *.pak *.cfg || die + doins *.pak *.cfg prepgamesdirs } pkg_postinst() { games_pkg_postinst - if ! use cdinstall - then + if ! use cdinstall ; then elog "You need to copy pak0.pak to ${GAMES_DATADIR}/quake1 to play." fi } |