summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2004-09-02 01:35:57 +0000
committerMike Frysinger <vapier@gentoo.org>2004-09-02 01:35:57 +0000
commitee94265ede638f6a8910da74a907d6501256fc67 (patch)
tree95d6c8910ee7d91e3afae6c9e61d9e642d2c8505 /eclass
parentInitial import. Ebuild submitted by Hwang Joonhyung <envia@chol.com>, closing... (diff)
downloadgentoo-2-ee94265ede638f6a8910da74a907d6501256fc67.tar.gz
gentoo-2-ee94265ede638f6a8910da74a907d6501256fc67.tar.bz2
gentoo-2-ee94265ede638f6a8910da74a907d6501256fc67.zip
spit out the configure line
Diffstat (limited to 'eclass')
-rw-r--r--eclass/games.eclass12
1 files changed, 11 insertions, 1 deletions
diff --git a/eclass/games.eclass b/eclass/games.eclass
index e74a3161e9ec..11340d734514 100644
--- a/eclass/games.eclass
+++ b/eclass/games.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.69 2004/07/05 23:53:39 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.70 2004/09/02 01:35:57 vapier Exp $
#
# devlist: {vapier,wolf31o2,mr_bones_}@gentoo.org
#
@@ -36,6 +36,16 @@ export GAMES_GROUP="${GAMES_GROUP:-games}"
egamesconf() {
if [ -x ./configure ] ; then
+ echo \
+ ./configure \
+ --prefix=${GAMES_PREFIX} \
+ --host=${CHOST} \
+ --mandir=/usr/share/man \
+ --infodir=/usr/share/info \
+ --datadir=${GAMES_DATADIR} \
+ --sysconfdir=${GAMES_SYSCONFDIR} \
+ --localstatedir=${GAMES_STATEDIR} \
+ "$@"
./configure \
--prefix=${GAMES_PREFIX} \
--host=${CHOST} \