diff options
author | Tilman Keskinoz <arved@FreeBSD.org> | 2002-11-24 23:48:28 +0000 |
---|---|---|
committer | Tilman Keskinoz <arved@FreeBSD.org> | 2002-11-24 23:48:28 +0000 |
commit | 8484d010980872e5e936871f5534c9c590949551 (patch) | |
tree | 13a12ef45e5d7cd69a99c75c91e2c2f831cea72d /games/grhino/Makefile | |
parent | d160c9a8010680f4c17aebc93741c66663b5686a (diff) |
Add grhino, another reversi/othello Clone
PR: 43452
Submitted by: UMENO Takashi <umeno@rr.iij4u.or.jp>
Notes
Notes:
svn path=/head/; revision=71050
Diffstat (limited to 'games/grhino/Makefile')
-rw-r--r-- | games/grhino/Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/games/grhino/Makefile b/games/grhino/Makefile new file mode 100644 index 000000000000..ed4016dd3306 --- /dev/null +++ b/games/grhino/Makefile @@ -0,0 +1,30 @@ +# New ports collection makefile for: grhino +# Date created: 21 Sep 2002 +# Whom: UMENO Takashi <umeno@rr.iij4u.or.jp> +# +# $FreeBSD$ +# + +PORTNAME= grhino +PORTVERSION= 0.7.0 +CATEGORIES= games gnome +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= rhino + +MAINTAINER= umeno@rr.iij4u.or.jp + +USE_X_PREFIX= yes +USE_REINPLACE= yes +USE_GNOMENG= yes +USE_GNOME= gnomelibs gnomeprefix +USE_PERL5_BUILD=yes +GNU_CONFIGURE= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" +PLIST_SUB+= VERSION=${PORTVERSION} + +post-patch: + @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ + s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure + +.include <bsd.port.mk> |