mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-21 00:25:50 +00:00
Add stage support.
This commit is contained in:
parent
7a85086827
commit
6c6c15821d
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=343537
@ -12,25 +12,22 @@ COMMENT= Minesweeper-style game for text-mode terminals
|
||||
LICENSE= GPLv2 GPLv3
|
||||
LICENSE_COMB= dual
|
||||
|
||||
USE_GMAKE= yes
|
||||
USES= gmake
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --with-prefsdir=${DATADIR} \
|
||||
--with-scoresdir=${DATADIR} \
|
||||
--disable-debug-log
|
||||
ALL_TARGET= ${PORTNAME}
|
||||
|
||||
MAN6= freesweep.6
|
||||
PORTDOCS= CHANGES README
|
||||
PLIST_FILES= bin/freesweep %%DATADIR%%/sweeprc %%DATADIR%%/sweeptimes
|
||||
PLIST_FILES= bin/${PORTNAME} man/man6/${PORTNAME}.6.gz \
|
||||
%%DATADIR%%/sweeprc %%DATADIR%%/sweeptimes
|
||||
PLIST_DIRS= %%DATADIR%%
|
||||
|
||||
NO_STAGE= yes
|
||||
post-install:
|
||||
.if !defined(NOPORTDOCS)
|
||||
@${MKDIR} ${DOCSDIR}
|
||||
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
||||
.for file in ${PORTDOCS}
|
||||
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR}
|
||||
.endfor
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
24
games/freesweep/files/patch-Makefile.in
Normal file
24
games/freesweep/files/patch-Makefile.in
Normal file
@ -0,0 +1,24 @@
|
||||
--- Makefile.in.orig 2003-10-11 16:49:24.000000000 -0400
|
||||
+++ Makefile.in 2014-02-09 13:35:36.000000000 -0500
|
||||
@@ -17,7 +17,7 @@
|
||||
srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
-prefix = @prefix@
|
||||
+prefix = $(DESTDIR)@prefix@
|
||||
exec_prefix = @exec_prefix@
|
||||
#bindir = $(exec_prefix)/bin
|
||||
bindir = @bindir@
|
||||
@@ -61,9 +61,9 @@
|
||||
install: $(TARGET) $(TARGET).6
|
||||
touch sweeptimes
|
||||
./install-sh -c -m 2555 -o root -g games -s $(TARGET) $(bindir)/$(TARGET)
|
||||
- ./install-sh -c -m 0664 -o root -g games sweeptimes @SCORESDIR@/sweeptimes
|
||||
- ./install-sh -c -m 0644 -o root -g games sweeprc @PREFSDIR@/sweeprc
|
||||
- ./install-sh -c -m 0444 -o root -g games $(TARGET).6 @mandir@/man6/$(TARGET).6
|
||||
+ ./install-sh -c -m 0664 -o root -g games sweeptimes $(DESTDIR)@SCORESDIR@/sweeptimes
|
||||
+ ./install-sh -c -m 0644 -o root -g games sweeprc $(DESTDIR)@PREFSDIR@/sweeprc
|
||||
+ ./install-sh -c -m 0444 -o root -g games $(TARGET).6 $(DESTDIR)@mandir@/man6/$(TARGET).6
|
||||
|
||||
distclean:
|
||||
@make sterile
|
Loading…
Reference in New Issue
Block a user