# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/games-server/tetrix/tetrix-1.13.16.1.40c-r2.ebuild,v 1.7 2004/06/24 23:21:29 agriffis Exp $ inherit eutils gcc games MY_SV=${PV#*.*.*.} MY_PV=${PV%.${MY_SV}} MY_P="tetrinetx-${MY_PV}+qirc-${MY_SV}" DESCRIPTION="A GNU TetriNET server" HOMEPAGE="http://tetrinetx.sourceforge.net/" SRC_URI="mirror://sourceforge/tetrinetx/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86" IUSE="" DEPEND="net-libs/adns" S="${WORKDIR}/${MY_P}" src_unpack() { unpack ${A} cd ${S} epatch ${FILESDIR}/${PV}-droproot.patch epatch ${FILESDIR}/${PV}-paths.patch sed -i \ -e "s:GENTOO_CONFDIR:${GAMES_SYSCONFDIR}/${PN}:" \ -e "s:GENTOO_STATEDIR:${GAMES_STATEDIR}/${PN}:" \ -e "s:GENTOO_LOGDIR:${GAMES_LOGDIR}:" \ src/config.h bin/game.conf } src_compile() { cd src $(gcc-getCC) ${CFLAGS} main.c -o tetrix -ladns || die "compile failed" } src_install() { dodoc AUTHORS ChangeLog README README.qirc.spectators dogamesbin src/tetrix insinto ${GAMES_SYSCONFDIR}/${PN} doins bin/* exeinto /etc/init.d newexe ${FILESDIR}/tetrix.rc tetrix keepdir ${GAMES_STATEDIR}/${PN} dodir ${GAMES_LOGDIR} touch ${D}/${GAMES_LOGDIR}/${PN}.log prepgamesdirs fowners ${GAMES_USER_DED}:${GAMES_GROUP} ${GAMES_STATEDIR}/${PN} fowners ${GAMES_USER_DED}:${GAMES_GROUP} ${GAMES_LOGDIR}/${PN}.log }