summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2014-08-28 18:34:51 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2014-08-28 18:34:51 +0000
commit22453e06f9e23ac95c9712b00c313400962224fb (patch)
tree313d07a44be7f0f23a84b3bc39be43be28430d36 /games-rpg/drascula
parentUpdate selinux eclass with improved rlpkg call and relabeling package set opt... (diff)
downloadgentoo-2-22453e06f9e23ac95c9712b00c313400962224fb.tar.gz
gentoo-2-22453e06f9e23ac95c9712b00c313400962224fb.tar.bz2
gentoo-2-22453e06f9e23ac95c9712b00c313400962224fb.zip
old
(Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-rpg/drascula')
-rw-r--r--games-rpg/drascula/ChangeLog5
-rw-r--r--games-rpg/drascula/drascula-1.0-r1.ebuild63
2 files changed, 4 insertions, 64 deletions
diff --git a/games-rpg/drascula/ChangeLog b/games-rpg/drascula/ChangeLog
index 159d4ff023f0..3b547d3115cc 100644
--- a/games-rpg/drascula/ChangeLog
+++ b/games-rpg/drascula/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for games-rpg/drascula
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-rpg/drascula/ChangeLog,v 1.9 2014/08/10 17:37:05 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-rpg/drascula/ChangeLog,v 1.10 2014/08/28 18:34:51 mr_bones_ Exp $
+
+ 28 Aug 2014; Michael Sterrett <mr_bones_@gentoo.org> -drascula-1.0-r1.ebuild:
+ old
10 Aug 2014; Agostino Sarubbo <ago@gentoo.org> drascula-1.0-r2.ebuild:
Stable for x86, wrt bug #518062
diff --git a/games-rpg/drascula/drascula-1.0-r1.ebuild b/games-rpg/drascula/drascula-1.0-r1.ebuild
deleted file mode 100644
index 16b359343db5..000000000000
--- a/games-rpg/drascula/drascula-1.0-r1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-rpg/drascula/drascula-1.0-r1.ebuild,v 1.4 2011/03/14 11:21:01 tupone Exp $
-
-EAPI=2
-inherit eutils games
-
-INT_URI="mirror://sourceforge/scummvm/drascula-int-${PV}.zip"
-DAT_PV=0.13.1
-AUD_PV=1.1
-DESCRIPTION="Drascula: The Vampire Strikes Back"
-HOMEPAGE="http://www.alcachofasoft.com/"
-SRC_URI="mirror://sourceforge/scummvm/drascula-${PV}.zip
- http://scummvm.svn.sourceforge.net/svnroot/scummvm/scummvm/tags/release-0-13-1/dists/engine-data/drascula.dat -> drascula-${DAT_PV}.dat
- sound? ( mirror://sourceforge/scummvm/drascula-audio-${AUD_PV}.zip )
- linguas_es? ( ${INT_URI} )
- linguas_de? ( ${INT_URI} )
- linguas_fr? ( ${INT_URI} )
- linguas_it? ( ${INT_URI} )"
-
-LICENSE="drascula"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="linguas_es linguas_de linguas_fr linguas_it +sound"
-RESTRICT="mirror"
-
-RDEPEND=">=games-engines/scummvm-0.13.1"
-DEPEND="${RDEPEND}
- app-arch/unzip"
-
-S=${WORKDIR}
-
-src_unpack() {
- if use linguas_es || use linguas_de || use linguas_fr || use linguas_it; then
- unpack drascula-int-${PV}.zip
- fi
- if use sound; then
- unpack drascula-audio-${AUD_PV}.zip
- fi
- unpack drascula-${PV}.zip
-}
-
-src_install() {
- local lang
-
- games_make_wrapper ${PN} "scummvm -f -p \"${GAMES_DATADIR}/${PN}\" drascula" .
- for lang in es de fr it
- do
- if use linguas_${lang} ; then
- games_make_wrapper ${PN}-${lang} "scummvm -q ${lang} -f -p \"${GAMES_DATADIR}/${PN}\" drascula" .
- make_desktop_entry ${PN}-${lang} "Drascula: The Vampire Strikes Back (${lang})" ${PN}
- fi
- done
- insinto "${GAMES_DATADIR}"/${PN}
- doins P*.* || die "doins failed"
- newins "${DISTDIR}"/drascula-${DAT_PV}.dat drascula.dat || die "newins failed"
- if use sound; then
- doins audio/* || die "doins failed"
- fi
- dodoc readme.txt drascula.doc
- make_desktop_entry ${PN} "Drascula: The Vampire Strikes Back"
- prepgamesdirs
-}