diff options
author | dburr <dburr@FreeBSD.org> | 1998-06-07 19:03:09 +0800 |
---|---|---|
committer | dburr <dburr@FreeBSD.org> | 1998-06-07 19:03:09 +0800 |
commit | eae916dc356f13e3f5aed905f46fb48990cac051 (patch) | |
tree | 7c7dc9c8d269578e6e0270a6ef07772a6b6d8eb8 /games/xconq/Makefile | |
parent | 697851e3a27af92a6712b46617f9e68c000b4005 (diff) | |
download | freebsd-ports-graphics-eae916dc356f13e3f5aed905f46fb48990cac051.tar.gz freebsd-ports-graphics-eae916dc356f13e3f5aed905f46fb48990cac051.tar.zst freebsd-ports-graphics-eae916dc356f13e3f5aed905f46fb48990cac051.zip |
PR: ports/6877
Submitted by: Don Croyle <croyle@gelemna.ft-wayne.in.us>
Import of new port games/xconq, a graphical multi-player strategy
game and game design system.
Diffstat (limited to 'games/xconq/Makefile')
-rw-r--r-- | games/xconq/Makefile | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/games/xconq/Makefile b/games/xconq/Makefile new file mode 100644 index 00000000000..4807149942d --- /dev/null +++ b/games/xconq/Makefile @@ -0,0 +1,42 @@ +# New ports collection makefile for: xconq +# Version required: 7.2.1 +# Date created: 2 Jun 1998 +# Whom: Don Croyle <croyle@gelemna.ft-wayne.in.us> +# +# $Id$ +# + +DISTNAME= xconq-7.2.1 +CATEGORIES= games x11 +MASTER_SITES= ftp://ftp.cygnus.com/pub/xconq/ + +MAINTAINER= croyle@gelemna.ft-wayne.in.us + +LIB_DEPENDS= Xpm\\.4\\.:${PORTSDIR}/graphics/xpm + +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --with-xpm + +USE_X11= yes + +MAN6= xconq.6 cconq.6 + +pre-configure: + ${CP} ${FILESDIR}/mh-freebsd ${WRKSRC}/config/ + +post-build: + cd ${WRKSRC}/doc && make info + +post-install: +.for file in xconq cconq + strip ${PREFIX}/bin/${file} +.endfor + cd ${WRKSRC}/doc && make install-info + if [ ! -f ${PREFIX}/info/dir ]; then \ + ${SED} -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \ + fi +.for info in xconq xcdesign + install-info ${PREFIX}/info/${info}.info ${PREFIX}/info/dir +.endfor + +.include <bsd.port.mk> |