diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2009-07-10 21:14:49 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2009-07-10 21:14:49 +0000 |
commit | 1879a691d68ec91e395e2abadd401b9f546d074a (patch) | |
tree | af039bc671c16311c0a74534333cbfffde9c616c /dev-games | |
parent | Initial import, based on an ebuild by Sander Siemonsma (#275060) (diff) | |
download | gentoo-2-1879a691d68ec91e395e2abadd401b9f546d074a.tar.gz gentoo-2-1879a691d68ec91e395e2abadd401b9f546d074a.tar.bz2 gentoo-2-1879a691d68ec91e395e2abadd401b9f546d074a.zip |
version bump - perl/java support disabled; patches welcome to fix build issues
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'dev-games')
-rw-r--r-- | dev-games/crystalspace/ChangeLog | 10 | ||||
-rw-r--r-- | dev-games/crystalspace/crystalspace-1.2.1.ebuild | 128 |
2 files changed, 136 insertions, 2 deletions
diff --git a/dev-games/crystalspace/ChangeLog b/dev-games/crystalspace/ChangeLog index ff1eb93677b7..e053e6f9292e 100644 --- a/dev-games/crystalspace/ChangeLog +++ b/dev-games/crystalspace/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-games/crystalspace -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-games/crystalspace/ChangeLog,v 1.37 2007/11/21 02:08:16 dirtyepic Exp $ +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-games/crystalspace/ChangeLog,v 1.38 2009/07/10 21:14:49 mr_bones_ Exp $ + +*crystalspace-1.2.1 (10 Jul 2009) + + 10 Jul 2009; Michael Sterrett <mr_bones_@gentoo.org> + +crystalspace-1.2.1.ebuild: + version bump - perl/java support disabled; patches welcome to fix build issues 21 Nov 2007; Ryan Hill <dirtyepic@gentoo.org> crystalspace-1.0.1.ebuild, crystalspace-1.2.ebuild: diff --git a/dev-games/crystalspace/crystalspace-1.2.1.ebuild b/dev-games/crystalspace/crystalspace-1.2.1.ebuild new file mode 100644 index 000000000000..db1915ae5213 --- /dev/null +++ b/dev-games/crystalspace/crystalspace-1.2.1.ebuild @@ -0,0 +1,128 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-games/crystalspace/crystalspace-1.2.1.ebuild,v 1.1 2009/07/10 21:14:49 mr_bones_ Exp $ + +EAPI=2 +inherit flag-o-matic multilib wxwidgets + +MY_P=${PN}-src-${PV} +DESCRIPTION="Portable 3D Game Development Kit written in C++" +HOMEPAGE="http://crystal.sourceforge.net/" +SRC_URI="mirror://sourceforge/crystal/${MY_P}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="3ds alsa cal3d cegui cg doc javascript jpeg mng ode png python +sdl truetype vorbis wxwindows" + +RDEPEND="virtual/opengl + virtual/glu + cg? ( media-gfx/nvidia-cg-toolkit ) + ode? ( dev-games/ode ) + cal3d? ( >=media-libs/cal3d-0.11 ) + jpeg? ( media-libs/jpeg ) + sdl? ( media-libs/libsdl ) + vorbis? ( media-libs/libogg + media-libs/libvorbis ) + truetype? ( >=media-libs/freetype-2.1 ) + alsa? ( media-libs/alsa-lib ) + mng? ( media-libs/libmng ) + png? ( media-libs/libpng ) + wxwindows? ( x11-libs/pango + =x11-libs/wxGTK-2.6* ) + javascript? ( dev-lang/spidermonkey ) + cegui? ( >=dev-games/cegui-0.5.0 ) + x11-libs/libXaw + x11-libs/libXxf86vm" +DEPEND="${RDEPEND} + 3ds? ( media-libs/lib3ds ) + dev-util/ftjam + dev-lang/swig + dev-util/pkgconfig" + +S=${WORKDIR}/${MY_P} + +src_prepare() { + # Installing doc conflict with dodoc on src_install + # Removing conflicting target + sed -i \ + -e "/^InstallDoc/d" \ + Jamfile.in \ + docs/Jamfile \ + || die "sed failed" +} + +src_configure() { + if useq wxwindows; then + WX_GTK_VER=2.6 + need-wxwidgets gtk2 + fi + + # -O3 is hanging compilation of python script plugin + # trying -O2 just in case + replace-flags -O3 -O2 + econf --enable-cpu-specific-optimizations=no \ + --disable-separate-debug-info \ + --without-lcms \ + --without-caca \ + --without-bullet \ + --without-openal \ + --without-jackasyn \ + --without-mikmod \ + --without-perl \ + --without-java \ + --disable-make-emulation \ + $(use_with python) \ + $(use_with png) \ + $(use_with jpeg) \ + $(use_with mng) \ + $(use_with vorbis) \ + $(use_with 3ds) \ + $(use_with ode) \ + $(use_with truetype freetype2) \ + $(use_with cal3d) \ + $(use_with sdl) \ + $(use_with wxwindows wx) \ + $(use_with cegui CEGUI) \ + $(use_with cg Cg) \ + $(use_with javascript js) \ + $(use_with alsa asound) + #remove unwanted CFLAGS added by ./configure + sed -i -e '/COMPILER\.CFLAGS\.optimize/d' \ + Jamconfig \ + || die "sed failed" +} + +src_compile() { + jam -q || die "compile failed" +} + +src_install() { + for installTarget in install_bin install_plugin install_lib \ + install_include install_data install_config + do + jam -q -s DESTDIR="${D}" ${installTarget} \ + || die "jam ${installTarget} failed" + done + if use doc; then + jam -q -s DESTDIR="${D}" install_doc || die "jam install_doc failed" + fi + dodoc README docs/history* docs/todo_* + + echo "CRYSTAL_PLUGIN=/usr/$(get_libdir)/${P}" > 90crystalspace + echo "CRYSTAL_CONFIG=/etc/${P}" >> 90crystalspace + doenvd 90crystalspace +} + +pkg_postinst() { + elog "Examples coming with this package, need correct light calculation" + elog "Do the following commands, with the root account, to fix that:" + # Fill cache directory for the examples + local dir + for dir in castle flarge isomap parallaxtest partsys r3dtest stenciltest \ + terrain terrainf; + do + elog "cslight -video=null /usr/share/${PN}/data/maps/${dir}" + done +} |