diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2011-08-08 22:14:52 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2011-08-08 22:14:52 +0800 |
commit | f2eda336cb3e4e29a9ab40ef5a34f5613badb12e (patch) | |
tree | 3c754b3d2c33962dd674804fdfb10402aa1e53c2 /games | |
parent | 7d88a28583bf18a6e24a1aad931f0c4c6bf9cd3a (diff) | |
download | freebsd-ports-gnome-f2eda336cb3e4e29a9ab40ef5a34f5613badb12e.tar.gz freebsd-ports-gnome-f2eda336cb3e4e29a9ab40ef5a34f5613badb12e.tar.zst freebsd-ports-gnome-f2eda336cb3e4e29a9ab40ef5a34f5613badb12e.zip |
- Update MASTER_SITES and WWW: line
- Support NOPORTDOCS
PR: 159461
Submitted by: KATO Tsuguru <tkato432@yahoo.com>
Diffstat (limited to 'games')
-rw-r--r-- | games/wordplay/Makefile | 31 | ||||
-rw-r--r-- | games/wordplay/files/patch-aa | 12 | ||||
-rw-r--r-- | games/wordplay/pkg-descr | 2 | ||||
-rw-r--r-- | games/wordplay/pkg-plist | 4 |
4 files changed, 20 insertions, 29 deletions
diff --git a/games/wordplay/Makefile b/games/wordplay/Makefile index 02482804413d..f74ee4293147 100644 --- a/games/wordplay/Makefile +++ b/games/wordplay/Makefile @@ -6,30 +6,35 @@ PORTNAME= wordplay PORTVERSION= 7.22 +PORTREVISION= 1 CATEGORIES= games -MASTER_SITES= http://hsvmovies.com/static_subpages/personal/wordplay/ +MASTER_SITES= http://hsvmovies.com/static_subpages/personal_orig/wordplay/ DISTNAME= ${PORTNAME}${PORTVERSION:S/.//} EXTRACT_SUFX= .tar.Z MAINTAINER= ports@FreeBSD.org COMMENT= Simple program to generate anagrams -DEPRECATED= No more public distfiles -EXPIRATION_DATE= 2011-09-01 - NO_WRKSUBDIR= yes -MAKEFILE= makefile -ALL_TARGET= wordplay + +PORTDOCS= readme +PLIST_FILES= bin/${PORTNAME} %%DATADIR%%/words721.txt +PLIST_DIRS= %%DATADIR%% post-patch: - @${REINPLACE_CMD} -e \ - "s#words721.txt#${PREFIX}/share/wordplay/words721.txt#" \ - ${WRKSRC}/wordplay.c + @${REINPLACE_CMD} -e 's|"words721.txt"|"${DATADIR}/words721.txt"| ; \ + s|<ctype.h>|<stdlib.h>|' ${WRKSRC}/wordplay.c + +do-build: + cd ${WRKSRC} && ${CC} ${CFLAGS} ${PORTNAME}.c -o ${PORTNAME} do-install: - @${MKDIR} ${PREFIX}/share/wordplay - ${INSTALL_DATA} ${WRKSRC}/words721.txt ${WRKSRC}/readme \ - ${PREFIX}/share/wordplay - ${INSTALL_PROGRAM} ${WRKSRC}/wordplay ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + @${MKDIR} ${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/words721.txt ${DATADIR} +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/readme ${DOCSDIR} +.endif .include <bsd.port.mk> diff --git a/games/wordplay/files/patch-aa b/games/wordplay/files/patch-aa deleted file mode 100644 index a7d7647984a0..000000000000 --- a/games/wordplay/files/patch-aa +++ /dev/null @@ -1,12 +0,0 @@ ---- makefile.orig Sat Jun 24 19:14:14 2000 -+++ makefile Sat Jun 24 19:14:30 2000 -@@ -1,8 +1,6 @@ - - # If you don't have gcc, try cc instead, if it is an ANSI compiler. - --CC=gcc -- - wordplay : wordplay.c -- $(CC) -O -o wordplay wordplay.c -+ $(CC) ${CFLAGS} -o wordplay wordplay.c - diff --git a/games/wordplay/pkg-descr b/games/wordplay/pkg-descr index c06aa85e8e41..19d104b5c96f 100644 --- a/games/wordplay/pkg-descr +++ b/games/wordplay/pkg-descr @@ -1,2 +1,4 @@ This is a program written in ANSI C that anagrams a given string. It has its own word file, but allows you to use a different one. + +WWW: http://hsvmovies.com/static_subpages/personal_orig/wordplay/ diff --git a/games/wordplay/pkg-plist b/games/wordplay/pkg-plist deleted file mode 100644 index 512ad508a571..000000000000 --- a/games/wordplay/pkg-plist +++ /dev/null @@ -1,4 +0,0 @@ -bin/wordplay -share/wordplay/readme -share/wordplay/words721.txt -@dirrm share/wordplay |