diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2016-06-07 01:21:34 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2016-06-07 01:21:34 +0800 |
commit | fe3d5aacd6efbcb511ed0df9f1336dd5180d26a1 (patch) | |
tree | a5c299d7ee25d8aac9dcbafde3bd545e11bfff94 /games/gnake | |
parent | 4082bfd766c3e81d2020143397471f7837b6f901 (diff) | |
download | freebsd-ports-gnome-fe3d5aacd6efbcb511ed0df9f1336dd5180d26a1.tar.gz freebsd-ports-gnome-fe3d5aacd6efbcb511ed0df9f1336dd5180d26a1.tar.zst freebsd-ports-gnome-fe3d5aacd6efbcb511ed0df9f1336dd5180d26a1.zip |
- Add distfile mirror, unbreak fetch
- Switch to options helpers
PR: 210030
Submitted by: lightside@gmx.com
Diffstat (limited to 'games/gnake')
-rw-r--r-- | games/gnake/Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/games/gnake/Makefile b/games/gnake/Makefile index 3d891c400151..5db516305111 100644 --- a/games/gnake/Makefile +++ b/games/gnake/Makefile @@ -4,20 +4,14 @@ PORTNAME= gnake PORTVERSION= 0.94b CATEGORIES= games -MASTER_SITES= SF/fbsdports/gnake +MASTER_SITES= http://www.sourcefiles.org/Games/Arcade/ DISTNAME= Gnake.${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Nibbles clone for GNU/Linux and *BSD -BROKEN= unfetchable -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2016-07-04 - LICENSE= GPLv2 -OPTIONS_DEFINE= DOCS - LDFLAGS+= -L${LOCALBASE}/lib -lncurses CFLAGS+= -Wall @@ -25,12 +19,16 @@ WRKSRC= ${WRKDIR}/${PORTNAME} PORTDOCS= README PLIST_FILES= bin/${PORTNAME} +OPTIONS_DEFINE= DOCS + do-build: ${CC} ${CFLAGS} ${LDFLAGS} -o ${WRKSRC}/${PORTNAME} \ ${WRKSRC}/gnake.c do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + +do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} |