public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in games-roguelike/angband: ChangeLog angband-3.4.1.ebuild
@ 2012-12-02 20:23 Alfredo Tupone (tupone)
  0 siblings, 0 replies; 2+ messages in thread
From: Alfredo Tupone (tupone) @ 2012-12-02 20:23 UTC (permalink / raw
  To: gentoo-commits

tupone      12/12/02 20:23:16

  Modified:             ChangeLog
  Added:                angband-3.4.1.ebuild
  Log:
  Version bump to 3.4.1 Bug #442430
  
  (Portage version: 2.1.11.33/cvs/Linux i686, signed Manifest commit with key 0145142D)

Revision  Changes    Path
1.46                 games-roguelike/angband/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/angband/ChangeLog?rev=1.46&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/angband/ChangeLog?rev=1.46&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/angband/ChangeLog?r1=1.45&r2=1.46

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-roguelike/angband/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog	2 May 2012 21:06:17 -0000	1.45
+++ ChangeLog	2 Dec 2012 20:23:16 -0000	1.46
@@ -1,6 +1,11 @@
 # ChangeLog for games-roguelike/angband
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-roguelike/angband/ChangeLog,v 1.45 2012/05/02 21:06:17 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-roguelike/angband/ChangeLog,v 1.46 2012/12/02 20:23:16 tupone Exp $
+
+*angband-3.4.1 (02 Dec 2012)
+
+  02 Dec 2012; Tupone Alfredo <tupone@gentoo.org> +angband-3.4.1.ebuild:
+  Version bump to 3.4.1 Bug #442430 by Ivan S. Titov
 
   02 May 2012; Jeff Horelick <jdhore@gentoo.org> angband-3.2.0.ebuild,
   angband-3.3.2.ebuild:



1.1                  games-roguelike/angband/angband-3.4.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/angband/angband-3.4.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/angband/angband-3.4.1.ebuild?rev=1.1&content-type=text/plain

Index: angband-3.4.1.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-roguelike/angband/angband-3.4.1.ebuild,v 1.1 2012/12/02 20:23:16 tupone Exp $

EAPI=4
inherit eutils versionator games

MAJOR_PV=$(get_version_component_range 1-2)
MY_P=${PN}-v${PV}

DESCRIPTION="A roguelike dungeon exploration game based on the books of J.R.R. Tolkien"
HOMEPAGE="http://rephial.org/"
SRC_URI="http://rephial.org/downloads/${MAJOR_PV}/${MY_P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="ncurses sdl +sound X"

RDEPEND="X? ( x11-libs/libX11 )
	!ncurses? ( !X? ( !sdl? ( sys-libs/ncurses ) ) )
	ncurses? ( sys-libs/ncurses )
	sdl? ( media-libs/libsdl[video,X]
		media-libs/sdl-ttf
		media-libs/sdl-image
		sound? ( media-libs/sdl-mixer
			media-libs/libsdl[audio] ) )"
DEPEND="${RDEPEND}
	virtual/pkgconfig"

S=${WORKDIR}/${MY_P}

DOCS=( changes.txt faq.txt readme.txt thanks.txt )

src_prepare() {
	sed -i \
		-e "/^.SILENT/d" \
		mk/buildsys.mk.in \
		|| dir "sed failed"
}

src_configure() {
	local myconf

	if use sdl; then
		myconf="$(use_enable sound sdl-mixer)"
	else
		myconf="--disable-sdl-mixer"
	fi

	egamesconf \
		--bindir="${GAMES_BINDIR}" \
		--with-private-dirs \
		$(use_enable X x11) \
		$(use_enable sdl) \
		$(use_enable ncurses curses) \
		$(use !sdl && use !ncurses && use !X && \
			echo --enable-curses) \
		${myconf}
}

src_install() {
	default

	# Edit files are now system config files in Angband, but
	# users will be hidden from applying updates by default
	echo "CONFIG_PROTECT_MASK=\"${GAMES_SYSCONFDIR}/${PN}/edit/\"" \
		> "${T}"/99${PN}
	doenvd "${T}"/99${PN} || die

	# Create desktop entries if required.
	ICON_LOC="${GAMES_DATADIR}/${PN}/xtra/icon/att-32.png"
	if use X; then
		make_desktop_entry "angband -mx11" "Angband (X11)" "${ICON_LOC}"
	fi

	if use sdl; then
		make_desktop_entry "angband -msdl" "Angband (SDL)" "${ICON_LOC}"
	fi

	use ncurses || rm -rf "${D}${GAMES_DATADIR}/${PN}/xtra/graf"
	use sound || rm -rf "${D}${GAMES_DATADIR}/${PN}/xtra/sound"

	prepgamesdirs
}

pkg_postinst() {
	echo
	elog "Angband now uses private savefiles instead of system-wide ones"
	elog "This version of Angband is not compatible with the save files"
	elog "of previous versions"
	echo

	games_pkg_postinst
}





^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-roguelike/angband: ChangeLog angband-3.4.1.ebuild
@ 2014-05-15 16:55 Ulrich Mueller (ulm)
  0 siblings, 0 replies; 2+ messages in thread
From: Ulrich Mueller (ulm) @ 2014-05-15 16:55 UTC (permalink / raw
  To: gentoo-commits

ulm         14/05/15 16:55:57

  Modified:             ChangeLog angband-3.4.1.ebuild
  Log:
  Fix USE dependency on media-libs/libsdl, "audio" USE flag was renamed to "sound", bug 357661.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 9433907D693FB5B8!)

Revision  Changes    Path
1.53                 games-roguelike/angband/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/angband/ChangeLog?rev=1.53&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/angband/ChangeLog?rev=1.53&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/angband/ChangeLog?r1=1.52&r2=1.53

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-roguelike/angband/ChangeLog,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- ChangeLog	13 Dec 2013 20:34:07 -0000	1.52
+++ ChangeLog	15 May 2014 16:55:56 -0000	1.53
@@ -1,6 +1,10 @@
 # ChangeLog for games-roguelike/angband
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-roguelike/angband/ChangeLog,v 1.52 2013/12/13 20:34:07 hasufell Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-roguelike/angband/ChangeLog,v 1.53 2014/05/15 16:55:56 ulm Exp $
+
+  15 May 2014; Ulrich Müller <ulm@gentoo.org> angband-3.4.1.ebuild:
+  Fix USE dependency on media-libs/libsdl, "audio" USE flag was renamed to
+  "sound", bug 357661.
 
   13 Dec 2013; Julian Ospald <hasufell@gentoo.org> angband-3.4.1.ebuild:
   fix datadir install location



1.7                  games-roguelike/angband/angband-3.4.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/angband/angband-3.4.1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/angband/angband-3.4.1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/angband/angband-3.4.1.ebuild?r1=1.6&r2=1.7

Index: angband-3.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-roguelike/angband/angband-3.4.1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- angband-3.4.1.ebuild	13 Dec 2013 20:34:07 -0000	1.6
+++ angband-3.4.1.ebuild	15 May 2014 16:55:56 -0000	1.7
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-roguelike/angband/angband-3.4.1.ebuild,v 1.6 2013/12/13 20:34:07 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-roguelike/angband/angband-3.4.1.ebuild,v 1.7 2014/05/15 16:55:56 ulm Exp $
 
 EAPI=4
 inherit eutils versionator games
@@ -24,7 +24,7 @@
 		media-libs/sdl-ttf
 		media-libs/sdl-image
 		sound? ( media-libs/sdl-mixer
-			media-libs/libsdl[audio] ) )"
+			media-libs/libsdl[sound] ) )"
 DEPEND="${RDEPEND}
 	virtual/pkgconfig"
 





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-05-15 16:56 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-02 20:23 [gentoo-commits] gentoo-x86 commit in games-roguelike/angband: ChangeLog angband-3.4.1.ebuild Alfredo Tupone (tupone)
  -- strict thread matches above, loose matches on Subject: below --
2014-05-15 16:55 Ulrich Mueller (ulm)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox