diff options
author | Julian Ospald <hasufell@gentoo.org> | 2013-10-19 21:51:45 +0000 |
---|---|---|
committer | Julian Ospald <hasufell@gentoo.org> | 2013-10-19 21:51:45 +0000 |
commit | 6ce32d5c6d2ab04f3d5224dafc4abf2127ccf96b (patch) | |
tree | b6f10065617fc9a9f640c7eef3f1d52ed7fbfbf2 /games-rpg | |
parent | amd64 stable, bug #486312 (diff) | |
download | gentoo-2-6ce32d5c6d2ab04f3d5224dafc4abf2127ccf96b.tar.gz gentoo-2-6ce32d5c6d2ab04f3d5224dafc4abf2127ccf96b.tar.bz2 gentoo-2-6ce32d5c6d2ab04f3d5224dafc4abf2127ccf96b.zip |
version bump
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
Diffstat (limited to 'games-rpg')
-rw-r--r-- | games-rpg/arx-libertatis/ChangeLog | 7 | ||||
-rw-r--r-- | games-rpg/arx-libertatis/arx-libertatis-1.1.2.ebuild | 98 |
2 files changed, 104 insertions, 1 deletions
diff --git a/games-rpg/arx-libertatis/ChangeLog b/games-rpg/arx-libertatis/ChangeLog index ad41d9c075c9..d66e758a7b9e 100644 --- a/games-rpg/arx-libertatis/ChangeLog +++ b/games-rpg/arx-libertatis/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-rpg/arx-libertatis # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-rpg/arx-libertatis/ChangeLog,v 1.21 2013/09/30 17:16:43 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-rpg/arx-libertatis/ChangeLog,v 1.22 2013/10/19 21:51:45 hasufell Exp $ + +*arx-libertatis-1.1.2 (19 Oct 2013) + + 19 Oct 2013; Julian Ospald <hasufell@gentoo.org> +arx-libertatis-1.1.2.ebuild: + version bump 30 Sep 2013; Agostino Sarubbo <ago@gentoo.org> arx-libertatis-1.1.1.ebuild: Stable for x86, wrt bug #486234 diff --git a/games-rpg/arx-libertatis/arx-libertatis-1.1.2.ebuild b/games-rpg/arx-libertatis/arx-libertatis-1.1.2.ebuild new file mode 100644 index 000000000000..c1151c131a8f --- /dev/null +++ b/games-rpg/arx-libertatis/arx-libertatis-1.1.2.ebuild @@ -0,0 +1,98 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-rpg/arx-libertatis/arx-libertatis-1.1.2.ebuild,v 1.1 2013/10/19 21:51:45 hasufell Exp $ + +EAPI=5 + +CMAKE_WARN_UNUSED_CLI=yes +inherit eutils cmake-utils gnome2-utils games + +DESCRIPTION="Cross-platform port of Arx Fatalis, a first-person role-playing game" +HOMEPAGE="http://arx-libertatis.org/" +SRC_URI="mirror://sourceforge/arx/${P}/${P}.tar.xz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="c++0x debug +unity-build crash-reporter static tools" + +COMMON_DEPEND=" + media-libs/freetype + media-libs/libsdl[X,video,opengl] + media-libs/openal + sys-libs/zlib + virtual/opengl + crash-reporter? ( + dev-qt/qtcore:4[ssl] + dev-qt/qtgui:4 + ) + !static? ( media-libs/glew )" +RDEPEND="${COMMON_DEPEND} + crash-reporter? ( sys-devel/gdb )" +DEPEND="${COMMON_DEPEND} + dev-libs/boost + virtual/pkgconfig + static? ( media-libs/glew[static-libs] )" + +DOCS=( README.md AUTHORS CHANGELOG ) + +src_configure() { + # editor does not build + local mycmakeargs=( + $(cmake-utils_use_build crash-reporter CRASHREPORTER) + -DBUILD_EDITOR=OFF + $(cmake-utils_use_build tools TOOLS) + -DCMAKE_INSTALL_DATAROOTDIR="${GAMES_DATADIR_BASE}" + -DCMAKE_INSTALL_PREFIX="${GAMES_PREFIX}" + $(cmake-utils_use debug DEBUG) + -DGAMESBINDIR="${GAMES_BINDIR}" + -DICONDIR=/usr/share/icons/hicolor/128x128/apps + -DINSTALL_SCRIPTS=ON + -DSET_OPTIMIZATION_FLAGS=OFF + -DSTRICT_USE=ON + $(cmake-utils_use unity-build UNITY_BUILD) + $(cmake-utils_use_use c++0x CXX11) + -DUSE_NATIVE_FS=ON + -DUSE_OPENAL=ON + -DUSE_OPENGL=ON + -DUSE_SDL=ON + $(usex crash-reporter "-DUSE_QT5=OFF" "") + $(cmake-utils_use_use static STATIC_LIBS) + ) + + cmake-utils_src_configure +} + +src_compile() { + cmake-utils_src_compile +} + +src_install() { + cmake-utils_src_install + prepgamesdirs +} + +pkg_preinst() { + games_pkg_preinst + gnome2_icon_savelist +} + +pkg_postinst() { + elog "optional dependencies:" + elog " games-rpg/arx-fatalis-data (from CD or GOG)" + elog " games-rpg/arx-fatalis-demo (free demo)" + elog + elog "This package only installs the game binary." + elog "You need the demo or full game data. Also see:" + elog "http://wiki.arx-libertatis.org/Getting_the_game_data" + elog + elog "If you have already installed the game or use the STEAM version," + elog "run \"${GAMES_BINDIR}/arx-install-data\"" + + games_pkg_postinst + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +} |