mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
87c2fa72e7
- Support CC/CFLAGS/PREFIX properly - Change location of data file from lib/ to share/ PR: 22552 Submitted by: Ports Fury
35 lines
849 B
Makefile
35 lines
849 B
Makefile
# New ports collection makefile for: connect4
|
|
# Date created: Thu May 8 16:41:01 EST 1997
|
|
# Whom: Joel Sutton <jsutton@bbcon.com.au>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= connect4
|
|
PORTVERSION= 3.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= games
|
|
MASTER_SITES= ${MASTER_SITE_COMP_SOURCES}
|
|
MASTER_SITE_SUBDIR= games/volume6
|
|
DISTNAME= ${PORTNAME}
|
|
EXTRACT_SUFX= .Z
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
|
|
BUILD_DEPENDS= gunshar:${PORTSDIR}/archivers/gshar+gunshar
|
|
|
|
EXTRACT_CMD= ${GZCAT}
|
|
EXTRACT_BEFORE_ARGS= # empty
|
|
EXTRACT_AFTER_ARGS= | gunshar
|
|
|
|
NO_WRKSUBDIR= yes
|
|
MAN6= connect4.6
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} -m 2755 -o root -g games ${WRKSRC}/c4 ${PREFIX}/bin/connect4
|
|
@${MKDIR} ${PREFIX}/share/connect4
|
|
${INSTALL_DATA} -m 664 -o root -g games /dev/null ${PREFIX}/share/connect4/scores
|
|
${INSTALL_MAN} ${FILESDIR}/connect4.6 ${MANPREFIX}/man/man6
|
|
|
|
.include <bsd.port.mk>
|