summaryrefslogtreecommitdiff
path: root/multimedia
diff options
context:
space:
mode:
authorMario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>2002-05-28 16:33:27 +0000
committerMario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>2002-05-28 16:33:27 +0000
commit389d318e31a745bf7362dc9ad602ef904568aebc (patch)
treed9821541b7b5bbd8da84eae4273c9e1ef42f7a3a /multimedia
parentUpdate to 0.5.16. (diff)
After update of linux_base to 7.1 in rev 1.60, correct detection
of strip tool since it is not part of 7.1
Notes
Notes: svn path=/head/; revision=60205
Diffstat (limited to 'multimedia')
-rw-r--r--multimedia/linux-divxplayer/Makefile16
1 files changed, 9 insertions, 7 deletions
diff --git a/multimedia/linux-divxplayer/Makefile b/multimedia/linux-divxplayer/Makefile
index 86f3505a91e3..a1a871e86e61 100644
--- a/multimedia/linux-divxplayer/Makefile
+++ b/multimedia/linux-divxplayer/Makefile
@@ -35,12 +35,6 @@ post-patch:
@${SED} -e "s|%%DATADIR%%|${DATADIR}|" ${FILESDIR}/wrapper.sh \
> ${WRKDIR}/wrapper.sh
-pre-install:
-.if exists(${STRIP_CMD})
- @${STRIP_CMD} ${WRKSRC}/${BINARY_NAME}
-.endif
- @${BRANDELF} -t Linux ${WRKSRC}/${BINARY_NAME}
-
do-install:
# skin files
@${MKDIR} ${DATADIR}
@@ -52,4 +46,12 @@ do-install:
${PREFIX}/bin/${BINARY_NAME:S/.bin$//}
@${CAT} ${PKGMESSAGE}
-.include <bsd.port.mk>
+.include <bsd.port.pre.mk>
+
+pre-install:
+.if exists(${STRIP_CMD})
+ @${STRIP_CMD} ${WRKSRC}/${BINARY_NAME}
+.endif
+ @${BRANDELF} -t Linux ${WRKSRC}/${BINARY_NAME}
+
+.include <bsd.port.post.mk>