diff options
author | David Seifert <soap@gentoo.org> | 2017-12-20 22:30:28 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-12-21 02:51:18 +0100 |
commit | 888e2e34b89e6a1c9b27e89270fd2b8ca2895709 (patch) | |
tree | 61898d85fce6a5d1c56dc4bde6926d7acd5b45d4 /games-rpg | |
parent | games-rpg/wastesedge: Remove old (diff) | |
download | gentoo-888e2e34b89e6a1c9b27e89270fd2b8ca2895709.tar.gz gentoo-888e2e34b89e6a1c9b27e89270fd2b8ca2895709.tar.bz2 gentoo-888e2e34b89e6a1c9b27e89270fd2b8ca2895709.zip |
games-rpg/xu4: Remove old
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'games-rpg')
-rw-r--r-- | games-rpg/xu4/xu4-0.9.ebuild | 72 |
1 files changed, 0 insertions, 72 deletions
diff --git a/games-rpg/xu4/xu4-0.9.ebuild b/games-rpg/xu4/xu4-0.9.ebuild deleted file mode 100644 index 23b0ee38d53e..000000000000 --- a/games-rpg/xu4/xu4-0.9.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit eutils games - -DESCRIPTION="A remake of the computer game Ultima IV" -HOMEPAGE="http://xu4.sourceforge.net/" -SRC_URI="mirror://sourceforge/xu4/${P}.tar.gz - mirror://sourceforge/xu4/ultima4-1.01.zip - mirror://sourceforge/xu4/u4upgrad.zip" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND="dev-libs/libxml2 - media-libs/sdl-mixer[timidity] - media-libs/libsdl[sound,video]" -DEPEND="${RDEPEND} - app-arch/unzip" - -S=${WORKDIR}/u4 - -src_unpack() { - # xu4 will read the data files right out of the zip files - # but we want the docs from the original. - unpack ${P}.tar.gz - cp "${DISTDIR}"/{ultima4-1.01.zip,u4upgrad.zip} . || die - cd "${WORKDIR}" - mv ultima4-1.01.zip ultima4.zip - mkdir u4-dos - cd u4-dos - unzip -q ../ultima4.zip || die -} - -src_prepare() { - epatch "${FILESDIR}/${PV}-savegame.patch" \ - "${FILESDIR}"/${P}-ldflags.patch \ - "${FILESDIR}"/${P}-zip.patch \ - "${FILESDIR}"/${P}-warnings.patch - sed -i \ - -e "s:/usr/local/lib/u4:$(games_get_libdir)/u4:" src/u4file.c \ - || die - sed -i \ - -e 's:-Wall:$(E_CFLAGS):' src/Makefile \ - || die -} - -src_compile() { - emake -C src \ - DEBUGCFLAGS= \ - E_CFLAGS="${CFLAGS}" \ - bindir="${GAMES_BINDIR}" \ - datadir="/usr/share" \ - libdir="$(games_get_libdir)" -} - -src_install() { - emake -C src \ - DEBUGCFLAGS= \ - E_CFLAGS="${CFLAGS}" \ - bindir="${D}${GAMES_BINDIR}" \ - datadir="${D}/usr/share" \ - libdir="${D}$(games_get_libdir)" \ - install - dodoc AUTHORS README doc/*txt "${WORKDIR}/u4-dos/ULTIMA4/"*TXT - insinto "$(games_get_libdir)/u4" - doins "${WORKDIR}/"*zip - prepgamesdirs -} |