View | Details | Raw Unified | Return to bug 205052 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (-7 / +10 lines)
Lines 2-18 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	freesweep
4
PORTNAME=	freesweep
5
PORTVERSION=	0.92
5
PORTVERSION=	1.0.1
6
PORTREVISION=	1
6
DISTVERSIONPREFIX=	v
7
CATEGORIES=	games
7
CATEGORIES=	games
8
MASTER_SITES=	GOOGLE_CODE
9
8
10
MAINTAINER=	ports@FreeBSD.org
9
MAINTAINER=	rwestlun@gmail.com
11
COMMENT=	Minesweeper-style game for text-mode terminals
10
COMMENT=	Minesweeper-style game for text-mode terminals
12
11
13
LICENSE=	GPLv2 GPLv3
12
LICENSE=	GPLv2+
14
LICENSE_COMB=	dual
15
13
14
USE_GITHUB=	yes
15
GH_ACCOUNT=	rwestlund
16
16
USES=		gmake ncurses
17
USES=		gmake ncurses
17
GNU_CONFIGURE=	yes
18
GNU_CONFIGURE=	yes
18
CONFIGURE_ARGS=	--with-prefsdir=${DATADIR} \
19
CONFIGURE_ARGS=	--with-prefsdir=${DATADIR} \
Lines 20-26 Link Here
20
		--disable-debug-log
21
		--disable-debug-log
21
ALL_TARGET=	${PORTNAME}
22
ALL_TARGET=	${PORTNAME}
22
23
23
PORTDOCS=	CHANGES README
24
PORTDOCS=	README.md
24
PLIST_FILES=	"@(,games,2555) bin/${PORTNAME}" man/man6/${PORTNAME}.6.gz \
25
PLIST_FILES=	"@(,games,2555) bin/${PORTNAME}" man/man6/${PORTNAME}.6.gz \
25
		%%DATADIR%%/sweeprc "@(,games,0664) %%DATADIR%%/sweeptimes"
26
		%%DATADIR%%/sweeprc "@(,games,0664) %%DATADIR%%/sweeptimes"
26
PLIST_DIRS=	%%DATADIR%%
27
PLIST_DIRS=	%%DATADIR%%
Lines 33-38 Link Here
33
	${TOUCH} ${STAGEDIR}${DATADIR}/sweeptimes
34
	${TOUCH} ${STAGEDIR}${DATADIR}/sweeptimes
34
	${INSTALL_DATA} ${WRKSRC}/sweeprc ${STAGEDIR}${DATADIR}
35
	${INSTALL_DATA} ${WRKSRC}/sweeprc ${STAGEDIR}${DATADIR}
35
	${INSTALL_MAN} ${WRKSRC}/freesweep.6 ${STAGEDIR}${PREFIX}/man/man6
36
	${INSTALL_MAN} ${WRKSRC}/freesweep.6 ${STAGEDIR}${PREFIX}/man/man6
37
38
do-install-DOCS-on:
36
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
39
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
37
.for file in ${PORTDOCS}
40
.for file in ${PORTDOCS}
38
	${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR}
41
	${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR}
(-)distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (freesweep-0.92.tar.gz) = 519c7405c131bd62db7534855fbb92b9cfcf511ded2bf4d2b94f1abaf86aa698
1
SHA256 (rwestlund-freesweep-v1.0.1_GH0.tar.gz) = f2b21fef3f547a5b8d663bf3bf9a0c74ad643d9b4043d170c29aa25248705350
2
SIZE (freesweep-0.92.tar.gz) = 87353
2
SIZE (rwestlund-freesweep-v1.0.1_GH0.tar.gz) = 93966
(-)pkg-descr (-3 / +4 lines)
Lines 1-4 Link Here
1
Minesweeper-type game for text-mode terminals. Features include boards
1
Minesweeper-type game for text-mode terminals.  Features include boards up to
2
up to 1024x1024 and saving and loading the boards.
2
1024x1024, saving and loading of boards, shared and individual "best times"
3
files, and color. 
3
4
4
WWW: http://code.google.com/p/freesweep/
5
WWW: https://github.com/rwestlund/freesweep/

Return to bug 205052