calchan 14/12/30 05:43:42 Modified: ChangeLog Added: soltys-1.0-r1.ebuild Removed: soltys-1.0.ebuild Log: Remove hq3x as default scaler as it can be too ambitious for some machines and can be changed by the user at run time. (Portage version: 2.2.15/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path 1.2 games-rpg/soltys/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/soltys/ChangeLog?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/soltys/ChangeLog?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/soltys/ChangeLog?r1=1.1&r2=1.2 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/games-rpg/soltys/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- ChangeLog 30 Oct 2014 00:16:18 -0000 1.1 +++ ChangeLog 30 Dec 2014 05:43:42 -0000 1.2 @@ -1,6 +1,13 @@ # ChangeLog for games-rpg/soltys # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-rpg/soltys/ChangeLog,v 1.1 2014/10/30 00:16:18 calchan Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-rpg/soltys/ChangeLog,v 1.2 2014/12/30 05:43:42 calchan Exp $ + +*soltys-1.0-r1 (30 Dec 2014) + + 30 Dec 2014; Denis Dupeyron <[email protected]> -soltys-1.0.ebuild, + +soltys-1.0-r1.ebuild: + Remove hq3x as default scaler as it can be too ambitious for some machines + and can be changed by the user at run time. *soltys-1.0 (30 Oct 2014) 1.1 games-rpg/soltys/soltys-1.0-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/soltys/soltys-1.0-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-rpg/soltys/soltys-1.0-r1.ebuild?rev=1.1&content-type=text/plain Index: soltys-1.0-r1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/games-rpg/soltys/soltys-1.0-r1.ebuild,v 1.1 2014/12/30 05:43:42 calchan Exp $ EAPI=5 inherit unpacker eutils games DESCRIPTION="Classic adventure game" HOMEPAGE="http://wiki.scummvm.org/index.php/Soltys" SRC_URI="linguas_en? ( mirror://sourceforge/scummvm/${PN}-en-v${PV}.zip ) linguas_es? ( mirror://sourceforge/scummvm/${PN}-es-v${PV}.zip ) linguas_pl? ( mirror://sourceforge/scummvm/${PN}-pl-v${PV}.zip ) !linguas_en? ( !linguas_es? ( !linguas_pl? ( mirror://sourceforge/scummvm/${PN}-en-v${PV}.zip ) ) ) http://www.scummvm.org/images/cat-soltys.png" LICENSE="Soltys" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="linguas_en linguas_es linguas_pl" RDEPEND=">=games-engines/scummvm-1.5" DEPEND="$(unpacker_src_uri_depends)" S=${WORKDIR} src_unpack() { if use linguas_en || ( ! use linguas_en && ! use linguas_es && ! use linguas_pl ) ; then mkdir -p en || die unpacker ${PN}-en-v${PV}.zip mv vol.{cat,dat} en/ || die fi if use linguas_es ; then mkdir -p es || die unpacker ${PN}-es-v${PV}.zip mv soltys-es-v1-0/vol.{cat,dat} es/ || die fi if use linguas_pl ; then mkdir -p pl || die unpacker ${PN}-pl-v${PV}.zip mv vol.{cat,dat} pl/ || die fi } src_prepare() { rm -rf license.txt soltys-es-v1-0 } src_install() { insinto "${GAMES_DATADIR}"/${PN} doins -r * newicon "${DISTDIR}"/cat-soltys.png soltys.png if use linguas_en || ( ! use linguas_en && ! use linguas_es && ! use linguas_pl ) ; then games_make_wrapper soltys-en "scummvm -f -p \"${GAMES_DATADIR}/${PN}/en\" soltys" . make_desktop_entry ${PN}-en "Soltys (English)" soltys fi if use linguas_es ; then games_make_wrapper soltys-es "scummvm -f -p \"${GAMES_DATADIR}/${PN}/es\" soltys" . make_desktop_entry ${PN}-es "Soltys (EspaƱol)" soltys fi if use linguas_pl ; then games_make_wrapper soltys-pl "scummvm -f -p \"${GAMES_DATADIR}/${PN}/pl\" soltys" . make_desktop_entry ${PN}-pl "Soltys (Polski)" soltys fi prepgamesdirs }
