ChangeLog

# ChangeLog for games-arcade/openbubbles
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/openbubbles/ChangeLog,v 1.6 2008/03/25 13:54:56 coldwind Exp $

25 Mar 2008; Santiago M. Mola
openbubbles-1.2.ebuild:
amd64 stable

24 Apr 2007; Timothy Redaelli openbubbles-1.2.ebuild:
Add ~x86-fbsd keyword.
Thanks to Nathan Smith for reporting wrt bug #175779

29 Mar 2007; Michael Sterrett
openbubbles-1.2.ebuild:
stable for x86; tidy

26 Mar 2007; openbubbles-1.2.ebuild:
Added ~x86 keyword. Bug 172263 by Will Briggs

*openbubbles-1.2 (24 Mar 2007)

24 Mar 2007; +metadata.xml, +openbubbles-1.2.ebuild:
New package. Request with bug #115199 by charly

Manifest

DIST openbubbles-1.2.tar.bz2 1090220 RMD160 75fb1a8bc81f11cd882d6b79ab3fb7d6384dcd6b SHA1 4b15c04b09c1ef353f2fbfc18b0eab1550c1f643 SHA256 7d5d4633a4881559f475b0b9e3778d593f856dd1dbf0acf979b79852f8d63dbb
EBUILD openbubbles-1.2.ebuild 780 RMD160 77945a927a0c54e7a8e70488010b66b4d62460e1 SHA1 8805497cd1b70667d268a1168a932608177902aa SHA256 5de5c6bfd0f3664cfdeaba725a1d2c170322446bc2438ebdc15bcfc88c4ce74b
MISC ChangeLog 847 RMD160 02c8186a6be46180d75dc9d42f196299ef690454 SHA1 d8a492c95fc4aabb53e7d6e22ee12d6ce9225b07 SHA256 a5863020ad84fa9c41029e06c3fbd42a6cf3cee7f0a844314cd9183443bb46cc
MISC metadata.xml 1102 RMD160 496565b037368d998c1027d5e08713cec251db51 SHA1 0226800950c7676e40c9652845b280c4f7549a46 SHA256 6279b49b267d4bdb6d35769dcec4aa69d30216381200824053989aadd1f04a25

metadata.xml




games

This is a clone of Evan Bailey's game Bubbles. Why did I reinvent the wheel? In
this case, the wheel is made in Game Maker, so anyone who wants to do any
serious programming would not be able to unless they A) ran Windows and B) ran a
program that doesn't give the user very great power. OpenBubbles is written in
C++ using SDL, so the programmer has some pretty powerful tools at his/her
disposal; in addition, because SDL is cross-platform, OpenBubbles can be ported
to any (major) platform, including Windows. Of course, I only run Unix, so I
will only be producing Unix source code. Though it was a relatively minor issue,
Evan's license is only semi-free because it doesn't permit commercial use of the
source code. Now, you are free to make as much money as you want off of
improvements of OpenBubbles (provided, of course, that you share them with me
and everyone else under the GPL, too).

openbubbles-1.2.ebuild

# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/openbubbles/openbubbles-1.2.ebuild,v 1.5 2008/03/25 13:54:56 coldwind Exp $

inherit eutils games

DESCRIPTION="A clone of Evan Bailey's game Bubbles"
HOMEPAGE="http://www.freewebs.com/lasindi/openbubbles/index.html"
SRC_URI="http://www.freewebs.com/lasindi/openbubbles/${P}.tar.bz2"

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

DEPEND="media-libs/libsdl
media-libs/sdl-image
media-libs/sdl-gfx"

src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog NEWS README
newicon data/bubble.png ${PN}.png
make_desktop_entry ${PN} "OpenBubbles"
prepgamesdirs
}