public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in games-server/pvpgn: ChangeLog pvpgn-1.8.5.ebuild
@ 2009-06-30  2:01 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2009-06-30  2:01 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    09/06/30 02:01:23

  Modified:             ChangeLog
  Added:                pvpgn-1.8.5.ebuild
  Log:
  version bump (bug #197911)
  (Portage version: 2.1.6.13/cvs/Linux i686)

Revision  Changes    Path
1.17                 games-server/pvpgn/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-server/pvpgn/ChangeLog?rev=1.17&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-server/pvpgn/ChangeLog?rev=1.17&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-server/pvpgn/ChangeLog?r1=1.16&r2=1.17

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-server/pvpgn/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog	21 May 2008 16:02:11 -0000	1.16
+++ ChangeLog	30 Jun 2009 02:01:23 -0000	1.17
@@ -1,6 +1,12 @@
 # ChangeLog for games-server/pvpgn
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-server/pvpgn/ChangeLog,v 1.16 2008/05/21 16:02:11 dev-zero Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-server/pvpgn/ChangeLog,v 1.17 2009/06/30 02:01:23 mr_bones_ Exp $
+
+*pvpgn-1.8.5 (30 Jun 2009)
+
+  30 Jun 2009; Michael Sterrett <mr_bones_@gentoo.org>
+  +files/pvpgn-1.8.5-fhs.patch, +pvpgn-1.8.5.ebuild:
+  version bump (bug #197911)
 
   21 May 2008; Tiziano Müller <dev-zero@gentoo.org> pvpgn-1.8.0.ebuild:
   Changed dependency for postgresql from dev-db/postgresql to



1.1                  games-server/pvpgn/pvpgn-1.8.5.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-server/pvpgn/pvpgn-1.8.5.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-server/pvpgn/pvpgn-1.8.5.ebuild?rev=1.1&content-type=text/plain

Index: pvpgn-1.8.5.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-server/pvpgn/pvpgn-1.8.5.ebuild,v 1.1 2009/06/30 02:01:23 mr_bones_ Exp $

EAPI=2
inherit eutils games

SUPPORTP="${PN}-support-1.2"
DESCRIPTION="A gaming server for Battle.Net compatible clients"
HOMEPAGE="http://pvpgn.berlios.de/"
SRC_URI="mirror://berlios/${PN}/${PN}-${PV/_/}.tar.bz2
	mirror://berlios/${PN}/${SUPPORTP}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc ~x86"
IUSE="mysql postgres"

DEPEND="mysql? ( virtual/mysql )
	postgres? ( >=virtual/postgresql-server-7 )"

PATCHES=( "${FILESDIR}/${P}-fhs.patch" )

src_configure() {
	cd src
	# everything in GAMES_BINDIR (bug #63071)
	egamesconf \
		--sbindir="${GAMES_BINDIR}" \
		$(use_with mysql) \
		$(use_with postgres pgsql)
}

src_compile() {
	emake -C src || die "emake failed"
}

src_install() {
	local f

	dodoc README README.DEV CREDITS BUGS TODO UPDATE version-history.txt
	docinto docs
	dodoc docs/*

	cd src
	emake DESTDIR="${D}" install || die "emake install failed"

	insinto "${GAMES_DATADIR}/${PN}"
	doins "${WORKDIR}/${SUPPORTP}/"* || die "doins failed"

	# GAMES_USER_DED here instead of GAMES_USER (bug #65423)
	for f in bnetd d2cs d2dbs ; do
		newinitd "${FILESDIR}/${PN}.rc" ${f}
		sed -i \
				-e "s:NAME:${f}:g" \
				-e "s:GAMES_BINDIR:${GAMES_BINDIR}:g" \
				-e "s:GAMES_USER:${GAMES_USER_DED}:g" \
				-e "s:GAMES_GROUP:${GAMES_GROUP}:g" \
				"${D}/etc/games/${PN}/${f}.conf" \
				"${D}/etc/init.d/${f}" \
				|| die "sed failed"
	done

	keepdir $(find "${D}${GAMES_STATEDIR}"/${PN} -type d -printf "${GAMES_STATEDIR}/${PN}/%P ") "${GAMES_STATEDIR}"/${PN}/log
	prepgamesdirs

	chown -R ${GAMES_USER_DED}:${GAMES_GROUP} "${D}${GAMES_STATEDIR}/${PN}"
	fperms 0775 "${GAMES_STATEDIR}/${PN}/log"
	fperms 0770 "${GAMES_STATEDIR}/${PN}"
}

pkg_postinst() {
	games_pkg_postinst

	elog "If this is a first installation you need to configure the package by"
	elog "editing the configuration files provided in ${GAMES_SYSCONFDIR}/${PN}"
	elog "Also you should read the documentation in /usr/share/docs/${PF}"
	elog
	elog "If you are upgrading you MUST read UPDATE in /usr/share/docs/${PF}"
	elog "and update your configuration accordingly."
	if use mysql ; then
		elog
		elog "You have enabled MySQL storage support. You will need to edit"
		elog "bnetd.conf to use it. Read README.storage from the docs directory."
	fi
	if use postgres ; then
		elog
		elog "You have enabled PostgreSQL storage support. You will need to edit"
		elog "bnetd.conf to use it. Read README.storage from the docs directory."
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in games-server/pvpgn: ChangeLog pvpgn-1.8.5.ebuild
@ 2015-03-11 21:19 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2015-03-11 21:19 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    15/03/11 21:19:37

  Modified:             ChangeLog
  Removed:              pvpgn-1.8.5.ebuild
  Log:
  old
  
  (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.29                 games-server/pvpgn/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-server/pvpgn/ChangeLog?rev=1.29&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-server/pvpgn/ChangeLog?rev=1.29&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-server/pvpgn/ChangeLog?r1=1.28&r2=1.29

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-server/pvpgn/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog	25 Feb 2015 15:59:16 -0000	1.28
+++ ChangeLog	11 Mar 2015 21:19:37 -0000	1.29
@@ -1,6 +1,9 @@
 # ChangeLog for games-server/pvpgn
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-server/pvpgn/ChangeLog,v 1.28 2015/02/25 15:59:16 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-server/pvpgn/ChangeLog,v 1.29 2015/03/11 21:19:37 mr_bones_ Exp $
+
+  11 Mar 2015; Michael Sterrett <mr_bones_@gentoo.org> -pvpgn-1.8.5.ebuild:
+  old
 
   25 Feb 2015; Agostino Sarubbo <ago@gentoo.org> pvpgn-1.8.5-r1.ebuild:
   Stable for x86, wrt bug #540824





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

end of thread, other threads:[~2015-03-11 21:19 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-11 21:19 [gentoo-commits] gentoo-x86 commit in games-server/pvpgn: ChangeLog pvpgn-1.8.5.ebuild Michael Sterrett (mr_bones_)
  -- strict thread matches above, loose matches on Subject: below --
2009-06-30  2:01 Michael Sterrett (mr_bones_)

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