public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in games-kids/childsplay: ChangeLog childsplay-0.90.2.ebuild
@ 2009-01-14 21:17 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 6+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2009-01-14 21:17 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    09/01/14 21:17:15

  Modified:             ChangeLog
  Added:                childsplay-0.90.2.ebuild
  Log:
  version bump
  (Portage version: 2.1.6.4/cvs/Linux 2.6.27.8 i686)

Revision  Changes    Path
1.15                 games-kids/childsplay/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-kids/childsplay/ChangeLog?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-kids/childsplay/ChangeLog?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-kids/childsplay/ChangeLog?r1=1.14&r2=1.15

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-kids/childsplay/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog	9 Nov 2007 19:52:41 -0000	1.14
+++ ChangeLog	14 Jan 2009 21:17:14 -0000	1.15
@@ -1,6 +1,12 @@
 # ChangeLog for games-kids/childsplay
-# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-kids/childsplay/ChangeLog,v 1.14 2007/11/09 19:52:41 mr_bones_ Exp $
+# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-kids/childsplay/ChangeLog,v 1.15 2009/01/14 21:17:14 mr_bones_ Exp $
+
+*childsplay-0.90.2 (14 Jan 2009)
+
+  14 Jan 2009; Michael Sterrett <mr_bones_@gentoo.org>
+  +childsplay-0.90.2.ebuild:
+  version bump
 
   09 Nov 2007; Michael Sterrett <mr_bones_@gentoo.org>
   -childsplay-0.68.ebuild:



1.1                  games-kids/childsplay/childsplay-0.90.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-kids/childsplay/childsplay-0.90.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-kids/childsplay/childsplay-0.90.2.ebuild?rev=1.1&content-type=text/plain

Index: childsplay-0.90.2.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-kids/childsplay/childsplay-0.90.2.ebuild,v 1.1 2009/01/14 21:17:14 mr_bones_ Exp $

EAPI=2
inherit eutils python games

DESCRIPTION="A suite of educational games for young children"
HOMEPAGE="http://childsplay.sourceforge.net/"
PLUGINS_VERSION="0.90"
PLUGINS_LFC_VERSION="0.90"
SRC_URI="mirror://sourceforge/childsplay/${P}.tgz
	mirror://sourceforge/childsplay/${PN}_plugins-${PLUGINS_VERSION}.tgz
	mirror://sourceforge/childsplay/${PN}_plugins_lfc-${PLUGINS_LFC_VERSION}.tgz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

DEPEND=">=dev-lang/python-2.1
	>=dev-python/pygame-1.7.1
	>=media-libs/sdl-image-1.2[gif,jpeg,png]
	>=media-libs/sdl-ttf-2.0
	>=media-libs/sdl-mixer-1.2[vorbis]
	media-libs/libogg"

src_unpack() {
	local DIR

	# Copy the plugins into the main package.
	unpack ${A}
	for DIR in ${PN}_plugins-${PLUGINS_VERSION} ${PN}_plugins_lfc-${PLUGINS_LFC_VERSION}; do
		cp -r ${DIR}/Data/*.icon.png ${P}/Data/icons || die
		cp -r ${DIR}/lib/* ${P}/lib || die
		cp -r ${DIR}/assetml/* ${P}/assetml || die
	done
	cp -r ${PN}_plugins-${PLUGINS_VERSION}/Data/AlphabetSounds ${P}/Data || die
	cp ${PN}_plugins-${PLUGINS_VERSION}/add-score.py ${P} || die
	cd "${S}"
	gunzip man/childsplay.6.gz
}

src_install() {
	local fn

	# The following variables are based on Childsplay's INSTALL.sh
	_LOCALEDIR=/usr/share/locale
	_ASSETMLDIR=/usr/share/assetml
	_SCOREDIR=${GAMES_STATEDIR}
	_SCOREFILE=${_SCOREDIR}/childsplay.score
	_CPDIR=$(games_get_libdir)/childsplay
	_SHAREDIR=${GAMES_DATADIR}/childsplay
	_LIBDIR=${_CPDIR}/lib
	_MODULESDIR=${_LIBDIR}
	_SHARELIBDATADIR=${_SHAREDIR}/lib
	_SHAREDATADIR=${_SHAREDIR}/Data
	_RCDIR=${_SHARELIBDATADIR}/ConfigData
	_HOME_DIR_NAME=.childsplay
	_CHILDSPLAYRC=childsplayrc

	dodir \
		"${_CPDIR}" \
		"${_LIBDIR}" \
		"${_SHAREDIR}" \
		"${_SHARELIBDATADIR}" \
		"${_SCOREDIR}" \
		"${_LOCALEDIR}" \
		"${_ASSETMLDIR}"

	# create BASEPATH.py
	cat >BASEPATH.py <<EOF
## Automated file--please do not edit
LOCALEDIR="${_LOCALEDIR}"
ASSETMLDIR="${_ASSETMLDIR}"
SCOREDIR="${_SCOREDIR}"
SCOREFILE="${_SCOREFILE}"
CPDIR="${_CPDIR}"
SHAREDIR="${_SHAREDIR}"
LIBDIR="${_LIBDIR}"
MODULESDIR="${_MODULESDIR}"
SHARELIBDATADIR="${_SHARELIBDATADIR}"
SHAREDATADIR="${_SHAREDATADIR}"
RCDIR="${_RCDIR}"
HOME_DIR_NAME="${_HOME_DIR_NAME}"
CHILDSPLAYRC="${_CHILDSPLAYRC}"
EOF

	# copy software and data
	cp -r *.py "${D}/${_CPDIR}" || die "cp failed"
	cp -r Data "${D}/${_SHAREDIR}" || die "cp failed"
	rm "${D}/${_SHAREDIR}/Data/childsplay.score"  # this copy won't be used

	for fn in $(ls lib); do
		if [[ -d lib/${fn} ]] ; then
			cp -r lib/${fn} "${D}/${_SHARELIBDATADIR}" || die
		else
			cp lib/${fn} "${D}/${_LIBDIR}" || die
		fi
	done

	cp -r locale/* "${D}/${_LOCALEDIR}" || die
	cp -r assetml/* "${D}/${_ASSETMLDIR}" || die

	# initialize the score file
	cp Data/childsplay.score "${D}/${_SCOREFILE}" || die
	SCORE_GAMES="Packid,Numbers,Soundmemory,Fallingletters,Findsound,Findsound2,Billiard"
	python add-score.py "${D}/${_SCOREDIR}" $SCORE_GAMES

	# translate for the letters game
	python letters-trans.py "${D}/${_ASSETMLDIR}"

	doman man/childsplay.6
	dodoc doc/README* doc/Changelog doc/copyright

	# Make a launcher.
	dogamesbin "${FILESDIR}"/childsplay || die
	sed -i \
		-e "s:GENTOO_DIR:${_CPDIR}:" \
		"${D}${GAMES_BINDIR}"/childsplay \
		|| die "sed failed"

	newicon assetml/childsplay/childsplay-images/chpl-icon-48.png ${PN}.png
	make_desktop_entry childsplay Childsplay

	prepgamesdirs
	fperms g+w "${_SCOREFILE}"
}

pkg_postinst() {
	python_mod_optimize "${_CPDIR}"
	games_pkg_postinst
}

pkg_postrm() {
	python_mod_cleanup "${_CPDIR}"
}






^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-kids/childsplay: ChangeLog childsplay-0.90.2.ebuild
@ 2009-11-26 21:07 Markus Meier (maekke)
  0 siblings, 0 replies; 6+ messages in thread
From: Markus Meier (maekke) @ 2009-11-26 21:07 UTC (permalink / raw
  To: gentoo-commits

maekke      09/11/26 21:07:05

  Modified:             ChangeLog childsplay-0.90.2.ebuild
  Log:
  x86 stable, bug #294562
  (Portage version: 2.2_rc52/cvs/Linux x86_64)

Revision  Changes    Path
1.16                 games-kids/childsplay/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-kids/childsplay/ChangeLog?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-kids/childsplay/ChangeLog?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-kids/childsplay/ChangeLog?r1=1.15&r2=1.16

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-kids/childsplay/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog	14 Jan 2009 21:17:14 -0000	1.15
+++ ChangeLog	26 Nov 2009 21:07:05 -0000	1.16
@@ -1,6 +1,9 @@
 # ChangeLog for games-kids/childsplay
-# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-kids/childsplay/ChangeLog,v 1.15 2009/01/14 21:17:14 mr_bones_ Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-kids/childsplay/ChangeLog,v 1.16 2009/11/26 21:07:05 maekke Exp $
+
+  26 Nov 2009; Markus Meier <maekke@gentoo.org> childsplay-0.90.2.ebuild:
+  x86 stable, bug #294562
 
 *childsplay-0.90.2 (14 Jan 2009)
 



1.2                  games-kids/childsplay/childsplay-0.90.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-kids/childsplay/childsplay-0.90.2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-kids/childsplay/childsplay-0.90.2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-kids/childsplay/childsplay-0.90.2.ebuild?r1=1.1&r2=1.2

Index: childsplay-0.90.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-kids/childsplay/childsplay-0.90.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- childsplay-0.90.2.ebuild	14 Jan 2009 21:17:14 -0000	1.1
+++ childsplay-0.90.2.ebuild	26 Nov 2009 21:07:05 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-kids/childsplay/childsplay-0.90.2.ebuild,v 1.1 2009/01/14 21:17:14 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-kids/childsplay/childsplay-0.90.2.ebuild,v 1.2 2009/11/26 21:07:05 maekke Exp $
 
 EAPI=2
 inherit eutils python games
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE=""
 
 DEPEND=">=dev-lang/python-2.1






^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-kids/childsplay: ChangeLog childsplay-0.90.2.ebuild
@ 2010-04-26 10:27 Alfredo Tupone (tupone)
  0 siblings, 0 replies; 6+ messages in thread
From: Alfredo Tupone (tupone) @ 2010-04-26 10:27 UTC (permalink / raw
  To: gentoo-commits

tupone      10/04/26 10:27:00

  Modified:             ChangeLog childsplay-0.90.2.ebuild
  Log:
  Force python2 fixing bug #312251
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.17                 games-kids/childsplay/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-kids/childsplay/ChangeLog?rev=1.17&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-kids/childsplay/ChangeLog?rev=1.17&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-kids/childsplay/ChangeLog?r1=1.16&r2=1.17

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-kids/childsplay/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog	26 Nov 2009 21:07:05 -0000	1.16
+++ ChangeLog	26 Apr 2010 10:27:00 -0000	1.17
@@ -1,6 +1,10 @@
 # ChangeLog for games-kids/childsplay
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-kids/childsplay/ChangeLog,v 1.16 2009/11/26 21:07:05 maekke Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-kids/childsplay/ChangeLog,v 1.17 2010/04/26 10:27:00 tupone Exp $
+
+  26 Apr 2010; Tupone Alfredo <tupone@gentoo.org> childsplay-0.90.2.ebuild,
+  +files/childsplay-0.90.2-gentoo.patch:
+  Force python2 fixing bug #312251 by arfrever@gentoo.org
 
   26 Nov 2009; Markus Meier <maekke@gentoo.org> childsplay-0.90.2.ebuild:
   x86 stable, bug #294562



1.3                  games-kids/childsplay/childsplay-0.90.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-kids/childsplay/childsplay-0.90.2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-kids/childsplay/childsplay-0.90.2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-kids/childsplay/childsplay-0.90.2.ebuild?r1=1.2&r2=1.3

Index: childsplay-0.90.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-kids/childsplay/childsplay-0.90.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- childsplay-0.90.2.ebuild	26 Nov 2009 21:07:05 -0000	1.2
+++ childsplay-0.90.2.ebuild	26 Apr 2010 10:27:00 -0000	1.3
@@ -1,8 +1,9 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-kids/childsplay/childsplay-0.90.2.ebuild,v 1.2 2009/11/26 21:07:05 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-kids/childsplay/childsplay-0.90.2.ebuild,v 1.3 2010/04/26 10:27:00 tupone Exp $
 
 EAPI=2
+PYTHON_DEPEND="2"
 inherit eutils python games
 
 DESCRIPTION="A suite of educational games for young children"
@@ -18,27 +19,33 @@
 KEYWORDS="~amd64 x86"
 IUSE=""
 
-DEPEND=">=dev-lang/python-2.1
-	>=dev-python/pygame-1.7.1
+DEPEND=">=dev-python/pygame-1.7.1
 	>=media-libs/sdl-image-1.2[gif,jpeg,png]
 	>=media-libs/sdl-ttf-2.0
 	>=media-libs/sdl-mixer-1.2[vorbis]
 	media-libs/libogg"
 
-src_unpack() {
+pkg_setup() {
+	python_set_active_version 2
+	games_pkg_setup
+}
+
+src_prepare() {
 	local DIR
 
 	# Copy the plugins into the main package.
-	unpack ${A}
+	mv ../${PN}_plugins-${PLUGINS_VERSION}/Data/AlphabetSounds Data || die
+	mv ../${PN}_plugins-${PLUGINS_VERSION}/add-score.py . || die
 	for DIR in ${PN}_plugins-${PLUGINS_VERSION} ${PN}_plugins_lfc-${PLUGINS_LFC_VERSION}; do
-		cp -r ${DIR}/Data/*.icon.png ${P}/Data/icons || die
-		cp -r ${DIR}/lib/* ${P}/lib || die
-		cp -r ${DIR}/assetml/* ${P}/assetml || die
+		mv ../${DIR}/Data/*.icon.png Data/icons || die
+		cp -r ../${DIR}/lib/* lib || die
+		mv ../${DIR}/assetml/${PN}/* assetml/${PN} || die
+		rm -rf ../${DIR}
 	done
-	cp -r ${PN}_plugins-${PLUGINS_VERSION}/Data/AlphabetSounds ${P}/Data || die
-	cp ${PN}_plugins-${PLUGINS_VERSION}/add-score.py ${P} || die
-	cd "${S}"
 	gunzip man/childsplay.6.gz
+	epatch "${FILESDIR}"/${P}-gentoo.patch \
+		|| die "epatch failed"
+	python_convert_shebangs -r 2 .
 }
 
 src_install() {
@@ -105,10 +112,10 @@
 	# initialize the score file
 	cp Data/childsplay.score "${D}/${_SCOREFILE}" || die
 	SCORE_GAMES="Packid,Numbers,Soundmemory,Fallingletters,Findsound,Findsound2,Billiard"
-	python add-score.py "${D}/${_SCOREDIR}" $SCORE_GAMES
+	$(PYTHON) add-score.py "${D}/${_SCOREDIR}" $SCORE_GAMES
 
 	# translate for the letters game
-	python letters-trans.py "${D}/${_ASSETMLDIR}"
+	$(PYTHON) letters-trans.py "${D}/${_ASSETMLDIR}"
 
 	doman man/childsplay.6
 	dodoc doc/README* doc/Changelog doc/copyright
@@ -117,6 +124,7 @@
 	dogamesbin "${FILESDIR}"/childsplay || die
 	sed -i \
 		-e "s:GENTOO_DIR:${_CPDIR}:" \
+		-e "s:python:$(PYTHON):" \
 		"${D}${GAMES_BINDIR}"/childsplay \
 		|| die "sed failed"
 






^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-kids/childsplay: ChangeLog childsplay-0.90.2.ebuild
@ 2011-04-25 20:31 Arfrever Frehtes Taifersar Arahesis (arfrever)
  0 siblings, 0 replies; 6+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2011-04-25 20:31 UTC (permalink / raw
  To: gentoo-commits

arfrever    11/04/25 20:31:32

  Modified:             ChangeLog childsplay-0.90.2.ebuild
  Log:
  Fix deprecation warnings.
  
  (Portage version: 2.2.0_alpha30_p2/cvs/Linux x86_64)

Revision  Changes    Path
1.18                 games-kids/childsplay/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-kids/childsplay/ChangeLog?rev=1.18&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-kids/childsplay/ChangeLog?rev=1.18&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-kids/childsplay/ChangeLog?r1=1.17&r2=1.18

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-kids/childsplay/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog	26 Apr 2010 10:27:00 -0000	1.17
+++ ChangeLog	25 Apr 2011 20:31:32 -0000	1.18
@@ -1,6 +1,10 @@
 # ChangeLog for games-kids/childsplay
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-kids/childsplay/ChangeLog,v 1.17 2010/04/26 10:27:00 tupone Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-kids/childsplay/ChangeLog,v 1.18 2011/04/25 20:31:32 arfrever Exp $
+
+  25 Apr 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+  childsplay-0.90.2.ebuild:
+  Fix deprecation warnings.
 
   26 Apr 2010; Tupone Alfredo <tupone@gentoo.org> childsplay-0.90.2.ebuild,
   +files/childsplay-0.90.2-gentoo.patch:



1.4                  games-kids/childsplay/childsplay-0.90.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-kids/childsplay/childsplay-0.90.2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-kids/childsplay/childsplay-0.90.2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-kids/childsplay/childsplay-0.90.2.ebuild?r1=1.3&r2=1.4

Index: childsplay-0.90.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-kids/childsplay/childsplay-0.90.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- childsplay-0.90.2.ebuild	26 Apr 2010 10:27:00 -0000	1.3
+++ childsplay-0.90.2.ebuild	25 Apr 2011 20:31:32 -0000	1.4
@@ -1,8 +1,8 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-kids/childsplay/childsplay-0.90.2.ebuild,v 1.3 2010/04/26 10:27:00 tupone Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-kids/childsplay/childsplay-0.90.2.ebuild,v 1.4 2011/04/25 20:31:32 arfrever Exp $
 
-EAPI=2
+EAPI=3
 PYTHON_DEPEND="2"
 inherit eutils python games
 






^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-kids/childsplay: ChangeLog childsplay-0.90.2.ebuild
@ 2012-04-12  7:21 Alfredo Tupone (tupone)
  0 siblings, 0 replies; 6+ messages in thread
From: Alfredo Tupone (tupone) @ 2012-04-12  7:21 UTC (permalink / raw
  To: gentoo-commits

tupone      12/04/12 07:21:10

  Modified:             ChangeLog childsplay-0.90.2.ebuild
  Log:
  Honor LINGUAS for locale files. Bug #409965
  
  (Portage version: 2.1.10.56/cvs/Linux i686)

Revision  Changes    Path
1.19                 games-kids/childsplay/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-kids/childsplay/ChangeLog?rev=1.19&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-kids/childsplay/ChangeLog?rev=1.19&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-kids/childsplay/ChangeLog?r1=1.18&r2=1.19

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-kids/childsplay/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog	25 Apr 2011 20:31:32 -0000	1.18
+++ ChangeLog	12 Apr 2012 07:21:10 -0000	1.19
@@ -1,6 +1,9 @@
 # ChangeLog for games-kids/childsplay
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-kids/childsplay/ChangeLog,v 1.18 2011/04/25 20:31:32 arfrever Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-kids/childsplay/ChangeLog,v 1.19 2012/04/12 07:21:10 tupone Exp $
+
+  12 Apr 2012; Tupone Alfredo <tupone@gentoo.org> childsplay-0.90.2.ebuild:
+  Honor LINGUAS for locale files. Bug #409965 by Piotr Szymaniak
 
   25 Apr 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
   childsplay-0.90.2.ebuild:



1.5                  games-kids/childsplay/childsplay-0.90.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-kids/childsplay/childsplay-0.90.2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-kids/childsplay/childsplay-0.90.2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-kids/childsplay/childsplay-0.90.2.ebuild?r1=1.4&r2=1.5

Index: childsplay-0.90.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-kids/childsplay/childsplay-0.90.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- childsplay-0.90.2.ebuild	25 Apr 2011 20:31:32 -0000	1.4
+++ childsplay-0.90.2.ebuild	12 Apr 2012 07:21:10 -0000	1.5
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-kids/childsplay/childsplay-0.90.2.ebuild,v 1.4 2011/04/25 20:31:32 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-kids/childsplay/childsplay-0.90.2.ebuild,v 1.5 2012/04/12 07:21:10 tupone Exp $
 
 EAPI=3
 PYTHON_DEPEND="2"
@@ -106,7 +106,13 @@
 		fi
 	done
 
-	cp -r locale/* "${D}/${_LOCALEDIR}" || die
+	if [[ ${LINGUAS+set} ]]; then
+		for lang in $LINGUAS; do
+			[[ -d locale/$lang ]] && cp -r locale/$lang "${D}/${_LOCALEDIR}"
+		done
+	else
+		cp -r locale/* "${D}/${_LOCALEDIR}" || die
+	fi
 	cp -r assetml/* "${D}/${_ASSETMLDIR}" || die
 
 	# initialize the score file






^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-kids/childsplay: ChangeLog childsplay-0.90.2.ebuild
@ 2015-02-01 20:41 Alfredo Tupone (tupone)
  0 siblings, 0 replies; 6+ messages in thread
From: Alfredo Tupone (tupone) @ 2015-02-01 20:41 UTC (permalink / raw
  To: gentoo-commits

tupone      15/02/01 20:41:42

  Modified:             ChangeLog
  Removed:              childsplay-0.90.2.ebuild
  Log:
  Removing old
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0145142D)

Revision  Changes    Path
1.21                 games-kids/childsplay/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-kids/childsplay/ChangeLog?rev=1.21&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-kids/childsplay/ChangeLog?rev=1.21&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-kids/childsplay/ChangeLog?r1=1.20&r2=1.21

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-kids/childsplay/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog	1 Feb 2015 17:19:16 -0000	1.20
+++ ChangeLog	1 Feb 2015 20:41:42 -0000	1.21
@@ -1,6 +1,9 @@
 # ChangeLog for games-kids/childsplay
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-kids/childsplay/ChangeLog,v 1.20 2015/02/01 17:19:16 tupone Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-kids/childsplay/ChangeLog,v 1.21 2015/02/01 20:41:42 tupone Exp $
+
+  01 Feb 2015; Tupone Alfredo <tupone@gentoo.org> -childsplay-0.90.2.ebuild:
+  Removing old
 
 *childsplay-0.90.2-r1 (01 Feb 2015)
 





^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2015-02-01 20:41 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-01 20:41 [gentoo-commits] gentoo-x86 commit in games-kids/childsplay: ChangeLog childsplay-0.90.2.ebuild Alfredo Tupone (tupone)
  -- strict thread matches above, loose matches on Subject: below --
2012-04-12  7:21 Alfredo Tupone (tupone)
2011-04-25 20:31 Arfrever Frehtes Taifersar Arahesis (arfrever)
2010-04-26 10:27 Alfredo Tupone (tupone)
2009-11-26 21:07 Markus Meier (maekke)
2009-01-14 21:17 Michael Sterrett (mr_bones_)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox