diff options
author | adamw <adamw@FreeBSD.org> | 2003-11-12 17:33:41 +0800 |
---|---|---|
committer | adamw <adamw@FreeBSD.org> | 2003-11-12 17:33:41 +0800 |
commit | 4b71a58a5b43001edb0153ada0a1d63258f7fe12 (patch) | |
tree | e4aace81f890124b2e3de8424cfdd04abe1c7ca3 /games/freesweep/Makefile | |
parent | 31708b4182680862a861f3aefbfaecbd5505d262 (diff) | |
download | freebsd-ports-gnome-4b71a58a5b43001edb0153ada0a1d63258f7fe12.tar.gz freebsd-ports-gnome-4b71a58a5b43001edb0153ada0a1d63258f7fe12.tar.zst freebsd-ports-gnome-4b71a58a5b43001edb0153ada0a1d63258f7fe12.zip |
Update to 0.90.
Grab maintainership. I like this program.
Diffstat (limited to 'games/freesweep/Makefile')
-rw-r--r-- | games/freesweep/Makefile | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/games/freesweep/Makefile b/games/freesweep/Makefile index f6370c58c26f..a6b2cd9d79d0 100644 --- a/games/freesweep/Makefile +++ b/games/freesweep/Makefile @@ -6,31 +6,31 @@ # PORTNAME= freesweep -PORTVERSION= 0.88 +PORTVERSION= 0.90 CATEGORIES= games MASTER_SITES= http://www.upl.cs.wisc.edu/~hartmann/sweep/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= adamw@FreeBSD.org COMMENT= Minesweeper-style game for text-mode terminals USE_GMAKE= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-prefsdir=${PREFIX}/share/freesweep \ - --with-scoresdir=${PREFIX}/share/freesweep \ +CONFIGURE_ARGS= --with-prefsdir=${DATADIR} \ + --with-scoresdir=${DATADIR}\ --disable-debug-log +USE_GETOPT_LONG= yes +CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL} +CONFIGURE_ENV= CFLAGS="${CFLAGS} -I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ + LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" + ALL_TARGET= # empty MAN6= freesweep.6 -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/freesweep ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/freesweep.6 ${PREFIX}/man/man6 - @${MKDIR} ${PREFIX}/share/freesweep - ${INSTALL_DATA} ${WRKSRC}/sweeprc ${PREFIX}/share/freesweep +post-install: .if !defined(NOPORTDOCS) - @${MKDIR} ${PREFIX}/share/doc/freesweep - ${INSTALL_DATA} ${WRKSRC}/CHANGES ${PREFIX}/share/doc/freesweep - ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/freesweep + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/CHANGES ${WRKSRC}/README ${DOCSDIR} .endif .include <bsd.port.mk> |