aboutsummaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
authorpawel <pawel@FreeBSD.org>2014-06-13 19:00:39 +0800
committerpawel <pawel@FreeBSD.org>2014-06-13 19:00:39 +0800
commit2bfc0ce1212eda467b0c6e4e9d20f5a1d2bb79a7 (patch)
tree064341ce6c01112c10cfc674409a1cd5c738fa78 /misc
parentf497a3f2cfff230b1157869c8403c6824ed83cfe (diff)
downloadfreebsd-ports-gnome-2bfc0ce1212eda467b0c6e4e9d20f5a1d2bb79a7.tar.gz
freebsd-ports-gnome-2bfc0ce1212eda467b0c6e4e9d20f5a1d2bb79a7.tar.zst
freebsd-ports-gnome-2bfc0ce1212eda467b0c6e4e9d20f5a1d2bb79a7.zip
Add staging support
Diffstat (limited to 'misc')
-rw-r--r--misc/shuffle/Makefile22
1 files changed, 3 insertions, 19 deletions
diff --git a/misc/shuffle/Makefile b/misc/shuffle/Makefile
index c412411f27cd..ee72db954673 100644
--- a/misc/shuffle/Makefile
+++ b/misc/shuffle/Makefile
@@ -10,27 +10,11 @@ MASTER_SITE_SUBDIR= dd
MAINTAINER= ports@FreeBSD.org
COMMENT= Produce random permutations
-MANSECTS= 1
-MAN1= shuffle.1
-MANCOMPRESSED= maybe
+PLIST_FILES= bin/shuffle man/man1/shuffle.1.gz
-# MAN page COMPression SUFFIX
-.if !defined(NO_MANCOMPRESS)
-MANCOMPSUFFIX= .gz
-.else
-MANCOMPSUFFIX=
-.endif
-
-PLIST_FILES= bin/shuffle
-
-NO_STAGE= yes
do-install:
- @${INSTALL_PROGRAM} ${WRKSRC}/shuffle ${PREFIX}/bin/shuffle
-.for __s in ${MANSECTS}
-.for __m in ${MAN${__s}:S/$/${MANCOMPSUFFIX}/}
- @${INSTALL_MAN} ${WRKSRC}/${__m} ${PREFIX}/man/man${__s}/${__m}
-.endfor
-.endfor
+ ${INSTALL_PROGRAM} ${WRKSRC}/shuffle ${STAGEDIR}${PREFIX}/bin/shuffle
+ ${INSTALL_MAN} ${WRKSRC}/shuffle.1.gz ${STAGEDIR}${PREFIX}/man/man1
#
# Ports build/install stuff stops here. Tarball creation stuff begins here.