diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2015-03-12 19:04:20 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2015-03-12 19:04:20 +0000 |
commit | 15d90932b505605ce6dcbfd6fec0663c00e2fd4e (patch) | |
tree | 1fa903e392de2b50a3f709284b12b1303bf1e278 /games-engines | |
parent | old (diff) | |
download | gentoo-2-15d90932b505605ce6dcbfd6fec0663c00e2fd4e.tar.gz gentoo-2-15d90932b505605ce6dcbfd6fec0663c00e2fd4e.tar.bz2 gentoo-2-15d90932b505605ce6dcbfd6fec0663c00e2fd4e.zip |
old
(Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-engines')
-rw-r--r-- | games-engines/scummvm/ChangeLog | 5 | ||||
-rw-r--r-- | games-engines/scummvm/scummvm-1.7.0.ebuild | 108 |
2 files changed, 4 insertions, 109 deletions
diff --git a/games-engines/scummvm/ChangeLog b/games-engines/scummvm/ChangeLog index 5fe436c7468c..137568171ad0 100644 --- a/games-engines/scummvm/ChangeLog +++ b/games-engines/scummvm/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-engines/scummvm # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.144 2015/02/23 11:18:16 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.145 2015/03/12 19:04:20 mr_bones_ Exp $ + + 12 Mar 2015; Michael Sterrett <mr_bones_@gentoo.org> -scummvm-1.7.0.ebuild: + old 23 Feb 2015; Agostino Sarubbo <ago@gentoo.org> scummvm-1.7.0-r2.ebuild: Stable for ppc64, wrt bug #539002 diff --git a/games-engines/scummvm/scummvm-1.7.0.ebuild b/games-engines/scummvm/scummvm-1.7.0.ebuild deleted file mode 100644 index 884759041a65..000000000000 --- a/games-engines/scummvm/scummvm-1.7.0.ebuild +++ /dev/null @@ -1,108 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-1.7.0.ebuild,v 1.6 2014/10/27 16:04:52 ago Exp $ - -EAPI=5 -inherit eutils flag-o-matic gnome2-utils toolchain-funcs games - -DESCRIPTION="Reimplementation of the SCUMM game engine used in Lucasarts adventures" -HOMEPAGE="http://scummvm.sourceforge.net/" -SRC_URI="mirror://sourceforge/scummvm/${P/_/}.tar.bz2" - -LICENSE="GPL-2 LGPL-2.1 BSD GPL-3-with-font-exception" -SLOT="0" -KEYWORDS="amd64 ppc ppc64 x86 ~x86-fbsd" -IUSE="aac alsa debug flac fluidsynth jpeg mpeg2 mp3 opengl png theora jpeg truetype vorbis zlib" -RESTRICT="test" # it only looks like there's a test there #77507 - -RDEPEND=">=media-libs/libsdl-1.2.2[sound,joystick,video] - zlib? ( sys-libs/zlib ) - jpeg? ( virtual/jpeg:0 ) - png? ( media-libs/libpng:0 ) - vorbis? ( media-libs/libogg media-libs/libvorbis ) - theora? ( media-libs/libtheora ) - aac? ( media-libs/faad2 ) - alsa? ( media-libs/alsa-lib ) - mp3? ( media-libs/libmad ) - mpeg2? ( media-libs/libmpeg2 ) - flac? ( media-libs/flac ) - opengl? ( virtual/opengl ) - truetype? ( media-libs/freetype:2 ) - fluidsynth? ( media-sound/fluidsynth )" -DEPEND="${RDEPEND} - x86? ( dev-lang/nasm )" - -S=${WORKDIR}/${P/_/} - -src_prepare() { - # -g isn't needed for nasm here - sed -i \ - -e '/NASMFLAGS/ s/-g//' \ - configure || die - sed -i \ - -e '/INSTALL.*doc/d' \ - -e '/INSTALL.*\/pixmaps/d' \ - -e 's/-s //' \ - ports.mk || die -} - -src_configure() { - local myconf - - # bug #137547 - use fluidsynth || myconf="${myconf} --disable-fluidsynth" - - use x86 && append-ldflags -Wl,-z,noexecstack - - # NOT AN AUTOCONF SCRIPT SO DONT CALL ECONF - ./configure \ - --backend=sdl \ - --host=$CHOST \ - --enable-verbose-build \ - --prefix=/usr \ - --bindir="${GAMES_BINDIR}" \ - --datadir="${GAMES_DATADIR}"/${PN} \ - --libdir="${GAMES_LIBDIR}" \ - --enable-zlib \ - $(use_enable debug) \ - $(use_enable zlib) \ - $(use_enable aac faad) \ - $(use_enable alsa) \ - $(use_enable jpeg) \ - $(use_enable png) \ - $(use_enable mp3 mad) \ - $(use_enable mpeg2) \ - $(use_enable flac) \ - $(use_enable opengl) \ - $(use_enable vorbis) \ - $(use_enable theora theoradec) \ - $(use_enable truetype freetype2) \ - $(use_enable x86 nasm) \ - ${myconf} || die -} - -src_compile() { - emake AR="$(tc-getAR) cru" RANLIB=$(tc-getRANLIB) -} - -src_install() { - emake DESTDIR="${D}" install - dodoc AUTHORS NEWS README TODO - doicon -s scalable icons/scummvm.svg - make_desktop_entry scummvm ScummVM scummvm "Game;AdventureGame" - prepgamesdirs -} - -pkg_preinst() { - games_pkg_preinst - gnome2_icon_savelist -} - -pkg_postinst() { - games_pkg_postinst - gnome2_icon_cache_update -} - -pkg_postrm() { - gnome2_icon_cache_update -} |