* [gentoo-commits] repo/gentoo:master commit in: games-kids/crayon-physics/
@ 2015-10-31 16:07 Michael Sterrett
0 siblings, 0 replies; 4+ messages in thread
From: Michael Sterrett @ 2015-10-31 16:07 UTC (permalink / raw
To: gentoo-commits
commit: a0daf8cdc2fb0db9f3c91fe781e6a85bcf7acf76
Author: Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 31 16:06:50 2015 +0000
Commit: Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
CommitDate: Sat Oct 31 16:06:50 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0daf8cd
drop pulseaudio dep per Marcin Deranek (bug #563896)
Package-Manager: portage-2.2.20.1
games-kids/crayon-physics/crayon-physics-55.ebuild | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/games-kids/crayon-physics/crayon-physics-55.ebuild b/games-kids/crayon-physics/crayon-physics-55.ebuild
index 0bf114e..2ef6c6b 100644
--- a/games-kids/crayon-physics/crayon-physics-55.ebuild
+++ b/games-kids/crayon-physics/crayon-physics-55.ebuild
@@ -19,9 +19,7 @@ MYGAMEDIR=${GAMES_PREFIX_OPT}/${PN}
QA_PREBUILT="${MYGAMEDIR#/}/crayon
${MYGAMEDIR#/}/lib32/*"
-# fuck this pulseaudio linkage
RDEPEND="
- media-sound/pulseaudio[abi_x86_32(-)]
dev-qt/qtcore:4[abi_x86_32(-)]
dev-qt/qtgui:4[abi_x86_32(-)]
virtual/glu[abi_x86_32(-)]
@@ -36,7 +34,7 @@ RDEPEND="
media-libs/sdl-mixer[vorbis,wav]
media-libs/smpeg[X,opengl]
media-libs/tiff:0
- virtual/jpeg
+ virtual/jpeg:0
)
)"
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-kids/crayon-physics/
@ 2016-08-05 16:35 Austin English
0 siblings, 0 replies; 4+ messages in thread
From: Austin English @ 2016-08-05 16:35 UTC (permalink / raw
To: gentoo-commits
commit: e9b8ac9a03f4ea641fb67ffb4cc0971fa4af9f1f
Author: Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 5 15:36:06 2016 +0000
Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
CommitDate: Fri Aug 5 16:35:21 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9b8ac9a
games-kids/crayon-physics: remove deprecated games eclass
Also update to EAPI 6
Gentoo-Bug: https://bugs.gentoo.org/574082
Package-Manager: portage-2.3.0
.../crayon-physics/crayon-physics-55-r1.ebuild | 81 ++++++++++++++++++++++
1 file changed, 81 insertions(+)
diff --git a/games-kids/crayon-physics/crayon-physics-55-r1.ebuild b/games-kids/crayon-physics/crayon-physics-55-r1.ebuild
new file mode 100644
index 0000000..c9a69a5
--- /dev/null
+++ b/games-kids/crayon-physics/crayon-physics-55-r1.ebuild
@@ -0,0 +1,81 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit eutils gnome2-utils
+
+DESCRIPTION="2D physics puzzle/sandbox game with drawing"
+HOMEPAGE="http://www.crayonphysics.com/"
+SRC_URI="crayon_physics_deluxe-linux-release${PV}.tar.gz"
+
+LICENSE="CRAYON-PHYSICS"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~x86"
+IUSE="bundled-libs"
+RESTRICT="bindist fetch splitdebug"
+
+MYGAMEDIR="/opt/${PN}"
+QA_PREBUILT="${MYGAMEDIR#/}/crayon
+ ${MYGAMEDIR#/}/lib32/*"
+
+RDEPEND="
+ dev-qt/qtcore:4[abi_x86_32(-)]
+ dev-qt/qtgui:4[abi_x86_32(-)]
+ virtual/glu[abi_x86_32(-)]
+ virtual/opengl[abi_x86_32(-)]
+ x11-libs/libX11[abi_x86_32(-)]
+ x86? (
+ !bundled-libs? (
+ media-libs/libmikmod
+ media-libs/libsdl:0[X,sound,video,opengl,joystick]
+ media-libs/libvorbis
+ media-libs/sdl-image[png,jpeg,tiff]
+ media-libs/sdl-mixer[vorbis,wav]
+ media-libs/smpeg[X,opengl]
+ media-libs/tiff:0
+ virtual/jpeg:0
+ )
+ )"
+
+S=${WORKDIR}/CrayonPhysicsDeluxe
+
+pkg_nofetch() {
+ einfo "Please buy & download ${SRC_URI} from:"
+ einfo " ${HOMEPAGE}"
+ einfo "and move it to ${DISTDIR}"
+ einfo
+}
+
+src_prepare() {
+ if use bundled-libs ; then
+ mv lib32/_libSDL-1.2.so.0 lib32/libSDL-1.2.so.0 || die
+ fi
+}
+
+src_install() {
+ insinto "${MYGAMEDIR}"
+ use bundled-libs && doins -r lib32
+ doins -r cache data crayon autoexec.txt version.xml
+
+ newicon -s 256 icon.png ${PN}.png
+ make_desktop_entry ${PN}
+ make_wrapper ${PN} "./crayon" "${MYGAMEDIR}" "${MYGAMEDIR}/lib32"
+
+ dodoc changelog.txt linux_hotfix_notes.txt
+ dohtml readme.html
+
+ fperms +x "${MYGAMEDIR}"/crayon
+}
+
+pkg_preinst() {
+ gnome2_icon_savelist
+}
+
+pkg_postinst() {
+ gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+ gnome2_icon_cache_update
+}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-kids/crayon-physics/
@ 2016-09-01 22:07 Austin English
0 siblings, 0 replies; 4+ messages in thread
From: Austin English @ 2016-09-01 22:07 UTC (permalink / raw
To: gentoo-commits
commit: 6e96ba438edd852b4ab2c75562d1fa6ee3336384
Author: Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 1 20:52:20 2016 +0000
Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
CommitDate: Thu Sep 1 22:07:22 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e96ba43
games-kids/crayon-physics: add missing default in src_prepare()
Gentoo-Bug: https://bugs.gentoo.org/590618
Package-Manager: portage-2.3.0
games-kids/crayon-physics/crayon-physics-55-r1.ebuild | 2 ++
1 file changed, 2 insertions(+)
diff --git a/games-kids/crayon-physics/crayon-physics-55-r1.ebuild b/games-kids/crayon-physics/crayon-physics-55-r1.ebuild
index c9a69a5..9d0747d 100644
--- a/games-kids/crayon-physics/crayon-physics-55-r1.ebuild
+++ b/games-kids/crayon-physics/crayon-physics-55-r1.ebuild
@@ -48,6 +48,8 @@ pkg_nofetch() {
}
src_prepare() {
+ default
+
if use bundled-libs ; then
mv lib32/_libSDL-1.2.so.0 lib32/libSDL-1.2.so.0 || die
fi
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-kids/crayon-physics/
@ 2018-05-06 16:08 Mart Raudsepp
0 siblings, 0 replies; 4+ messages in thread
From: Mart Raudsepp @ 2018-05-06 16:08 UTC (permalink / raw
To: gentoo-commits
commit: e7712744aa7cdb6064cb883ae672355c826e23bc
Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Sun May 6 15:08:16 2018 +0000
Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Sun May 6 16:07:52 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7712744
games-kids/crayon-physics: update manifest hashes
Package-Manager: Portage-2.3.28, Repoman-2.3.9
games-kids/crayon-physics/Manifest | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/games-kids/crayon-physics/Manifest b/games-kids/crayon-physics/Manifest
index c84d9520f0d..f1a885b4c98 100644
--- a/games-kids/crayon-physics/Manifest
+++ b/games-kids/crayon-physics/Manifest
@@ -1 +1 @@
-DIST crayon_physics_deluxe-linux-release55.tar.gz 33236439 SHA256 1a8f29fc298abea8fdde2b926d33e00e88500f2a8eef5d78c97355b5483d4a8b SHA512 1840cabba5b922f155b90c4442c460e7dc5c63aa2e1348a5f175211d5264c645c08af9a3bd43861aa8497e111678a7314b94d2ba0035b2e07e811200f1af07eb WHIRLPOOL 4413692ea91a09f0e87c56e2eb030e2e5874a3994579bd744bc0c3d10a2919db1780ff16d0073ae9fc56f1fc8bed264b947f02396c306d7f70b497b19da1ac9e
+DIST crayon_physics_deluxe-linux-release55.tar.gz 33236439 BLAKE2B 6e0a98abda292184b1fd122157491e9fe63bc41f1f73932c109b39b8f4728923a61cfe3f59f2597b4ea9025b288026893991976eee7924a89fe844bb60402082 SHA512 1840cabba5b922f155b90c4442c460e7dc5c63aa2e1348a5f175211d5264c645c08af9a3bd43861aa8497e111678a7314b94d2ba0035b2e07e811200f1af07eb
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-05-06 16:08 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-31 16:07 [gentoo-commits] repo/gentoo:master commit in: games-kids/crayon-physics/ Michael Sterrett
-- strict thread matches above, loose matches on Subject: below --
2016-08-05 16:35 Austin English
2016-09-01 22:07 Austin English
2018-05-06 16:08 Mart Raudsepp
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox