mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
2b3b399de8
Approved by: tabthorpe (co-mentor)
39 lines
856 B
Makefile
39 lines
856 B
Makefile
# New ports collection makefile for: rubix
|
|
# Date created: 19 Nov 1999
|
|
# Whom: Will Andrews <andrews@technologist.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= rubix
|
|
PORTVERSION= 1.0.6
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://sed.free.fr/rubix/ \
|
|
http://mirror.mcx2.org/
|
|
|
|
MAINTAINER= dhn@FreeBSD.org
|
|
COMMENT= Another Rubik's cube game with a rather interesting interface
|
|
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
USE_XORG= x11
|
|
MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS} -DENGLISH" \
|
|
XINC="-I${LOCALBASE}/include" XLIB="-L${LOCALBASE}/lib -lX11"
|
|
ALL_TARGET= ${PORTNAME}
|
|
|
|
PORTDOCS= ${DOCFILES}
|
|
PLIST_FILES= bin/rubix
|
|
|
|
DOCFILES= AUTHORS BUGS INSTALL README TODO
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/rubix ${PREFIX}/bin
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for file in ${DOCFILES}
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|