hasufell 14/06/01 22:27:37 Modified: ChangeLog Added: crrcsim-0.9.12-r1.ebuild Removed: crrcsim-0.9.12.ebuild Log: respect GAMES variables wrt #494202, install icon and desktop file wrt #494224 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key BDEED020)
Revision Changes Path 1.10 games-simulation/crrcsim/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/crrcsim/ChangeLog?rev=1.10&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/crrcsim/ChangeLog?rev=1.10&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/crrcsim/ChangeLog?r1=1.9&r2=1.10 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/games-simulation/crrcsim/ChangeLog,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- ChangeLog 15 May 2014 16:59:51 -0000 1.9 +++ ChangeLog 1 Jun 2014 22:27:36 -0000 1.10 @@ -1,6 +1,13 @@ # ChangeLog for games-simulation/crrcsim # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-simulation/crrcsim/ChangeLog,v 1.9 2014/05/15 16:59:51 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-simulation/crrcsim/ChangeLog,v 1.10 2014/06/01 22:27:36 hasufell Exp $ + +*crrcsim-0.9.12-r1 (01 Jun 2014) + + 01 Jun 2014; Julian Ospald <hasuf...@gentoo.org> -crrcsim-0.9.12.ebuild, + +crrcsim-0.9.12-r1.ebuild, files/crrcsim-buildsystem.patch: + respect GAMES variables wrt #494202, install icon and desktop file wrt + #494224 15 May 2014; Ulrich Müller <u...@gentoo.org> crrcsim-0.9.12.ebuild: Fix USE dependency on media-libs/libsdl, "audio" USE flag was renamed to 1.1 games-simulation/crrcsim/crrcsim-0.9.12-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/crrcsim/crrcsim-0.9.12-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/crrcsim/crrcsim-0.9.12-r1.ebuild?rev=1.1&content-type=text/plain Index: crrcsim-0.9.12-r1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/games-simulation/crrcsim/crrcsim-0.9.12-r1.ebuild,v 1.1 2014/06/01 22:27:36 hasufell Exp $ EAPI=5 WANT_AUTOMAKE="1.10" inherit autotools eutils gnome2-utils games DESCRIPTION="model-airplane flight simulation program" HOMEPAGE="http://sourceforge.net/projects/crrcsim/" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="portaudio" RDEPEND="sci-mathematics/cgal media-libs/plib media-libs/libsdl[X,sound,joystick,opengl,video] portaudio? ( media-libs/portaudio )" DEPEND="${RDEPEND}" src_prepare() { epatch "${FILESDIR}"/${PN}-buildsystem.patch if has_version "sci-mathematics/cgal[gmp(+)]" ; then epatch "${FILESDIR}"/${PN}-cgal_gmp.patch fi eautoreconf } src_configure() { egamesconf \ --datarootdir="${EPREFIX%/}/usr/share" \ --datadir="${GAMES_DATADIR}" \ --docdir="${EPREFIX%/}/usr/share/doc/${PF}" \ $(use_with portaudio) } src_install() { emake DESTDIR="${D}" install dodoc AUTHORS HISTORY NEWS README doicon -s 32 packages/icons/${PN}.png make_desktop_entry ${PN} prepgamesdirs } pkg_preinst() { games_pkg_preinst gnome2_icon_savelist } pkg_postinst() { games_pkg_postinst gnome2_icon_cache_update } pkg_postrm() { gnome2_icon_cache_update }