mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
3e4ed01146
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav)
39 lines
846 B
Makefile
39 lines
846 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.5
|
|
PORTREVISION= 2
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://sed.free.fr/rubix/
|
|
|
|
MAINTAINER= ports@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>
|