From 3d68bd6a13949b1445f2881c40796358cbd21731 Mon Sep 17 00:00:00 2001 From: cperciva Date: Wed, 17 Apr 2013 09:28:35 +0000 Subject: Fix documentation install. Respect ${PREFIX} for installing binaries. Reported by: Jimmy Olgeni Feature safe: yes --- sysutils/spiped/Makefile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'sysutils/spiped') diff --git a/sysutils/spiped/Makefile b/sysutils/spiped/Makefile index 4ed51c271da4..5b8ba50b6cf5 100644 --- a/sysutils/spiped/Makefile +++ b/sysutils/spiped/Makefile @@ -2,6 +2,7 @@ PORTNAME= spiped PORTVERSION= 1.3.1 +PORTREVISION= 1 CATEGORIES= sysutils security MASTER_SITES= http://www.tarsnap.com/spiped/ EXTRACT_SUFX= .tgz @@ -16,6 +17,9 @@ LICENSE_FILE= ${WRKSRC}/COPYRIGHT MAKE_ARGS= MAN1DIR=${MANPREFIX}/man/man1 MAN1= spiped.1 spipe.1 +# Binaries go into ${PREFIX}/bin +MAKE_ARGS+= BINDIR=${PREFIX}/bin + # Force __BSD_VISIBLE on since it works and improves performance MAKE_ARGS+= CFLAGS="-O2 -D__BSD_VISIBLE" @@ -24,10 +28,12 @@ PLIST_FILES= bin/spiped bin/spipe USE_RC_SUBR= spiped +.include + post-install: -.if defined(PORT_OPTIONS:MDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} - (cd ${WRKSRC} && ${INSTALL_MAN} ${DOCFILES} ${DOCSDIR}) + (cd ${WRKSRC} && ${INSTALL_MAN} ${PORTDOCS} ${DOCSDIR}) .endif .include -- cgit