# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/games-server/pvpgn/pvpgn-1.8.0.ebuild,v 1.8 2008/01/29 10:17:31 nyhm Exp $ inherit eutils games SUPPORTP="pvpgn-support-1.0" 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? ( >=dev-db/postgresql-7 )" S=${WORKDIR}/${PN}-${PV/_/} src_unpack() { unpack ${A} cd "${S}" epatch "${FILESDIR}/${PV}-fhs.patch" } src_compile() { cd src # everything in GAMES_BINDIR (bug #63071) egamesconf \ --sbindir="${GAMES_BINDIR}" \ $(use_with mysql) \ $(use_with postgres pgsql) \ || die emake || 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}/pvpgn" 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 prepgamesdirs keepdir "${GAMES_STATEDIR}/pvpgn/log" chown -R ${GAMES_USER_DED}:${GAMES_GROUP} "${D}${GAMES_STATEDIR}/pvpgn" fperms 0775 "${GAMES_STATEDIR}/pvpgn/log" fperms 0770 "${GAMES_STATEDIR}/pvpgn" } 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}/pvpgn" 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 acordingly." 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 dir." 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 dir." fi }