diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2007-08-05 23:07:24 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2007-08-05 23:07:24 +0000 |
commit | 686ec7cd0bfacd5dd01e18d189cf8744ba4ce446 (patch) | |
tree | 3847b31d2410b466c8977e42c8e1a0976504d4e1 /games/belooted/Makefile | |
parent | b65fe56db40a00eb4b951db8e05c55524a416ca8 (diff) |
Notes
Diffstat (limited to 'games/belooted/Makefile')
-rw-r--r-- | games/belooted/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/games/belooted/Makefile b/games/belooted/Makefile new file mode 100644 index 000000000000..38f9bf78d47f --- /dev/null +++ b/games/belooted/Makefile @@ -0,0 +1,33 @@ +# New ports collection makefile for: belooted +# Date created: 1 August 2007 +# Whom: Yinghong Liu <relaxbsd@gmail.com> +# +# $FreeBSD$ +# + +PORTNAME= belooted +PORTVERSION= 0.1.3 +CATEGORIES= games +MASTER_SITES= http://boby.joe.free.fr/dev/belooted/files/ + +MAINTAINER= relaxbsd@gmail.com +COMMENT= A popular 32-card trick-taking game played in France + +USE_GNOME= gtk20 +USE_GMAKE= yes +GNU_CONFIGURE= yes + +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" + +PORTDOCS= AUTHORS COPYING ChangeLog INSTALL NEWS README TODO + +post-install: +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} +.for doc in ${PORTDOCS} + @${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR} +.endfor +.endif + +.include <bsd.port.mk> |