svn commit: r331809 - head/multimedia/vlc

William Grzybowski wg at FreeBSD.org
Sun Oct 27 22:20:43 UTC 2013


Author: wg
Date: Sun Oct 27 22:20:43 2013
New Revision: 331809
URL: http://svnweb.freebsd.org/changeset/ports/331809

Log:
  multimedia/vlc: fix package without pkgng
  
  - Fix package without pkgng
  
  PR:		ports/183356
  Submitted by:	mandree

Modified:
  head/multimedia/vlc/Makefile

Modified: head/multimedia/vlc/Makefile
==============================================================================
--- head/multimedia/vlc/Makefile	Sun Oct 27 22:01:20 2013	(r331808)
+++ head/multimedia/vlc/Makefile	Sun Oct 27 22:20:43 2013	(r331809)
@@ -720,10 +720,10 @@ post-install:
 	@${FIND} ${STAGEDIR} -type d | ${SED} -e "s,${STAGEDIR},,g" \
 		| while read line; do \
 		${GREP} -qw "^$${line}$$" ${WRKDIR}/.mtree || { \
-			[ -n "$${line}" ] && ${ECHO_CMD} "@dirrmtry $${line}"; \
+			[ -n "$${line}" ] && ${ECHO_CMD} "@unexec rmdir "%D/$${line}" >/dev/null 2>&1 || :"; \
 		}; \
 		done | ${SORT} -r | ${SED} \
-		-e "s,${PREFIX}/,,g" | ${GREP} -v "^@dirrmtry share/licenses" >> ${TMPPLIST} || ${TRUE}
+		-e "s,${PREFIX}/,,g" | ${GREP} -v "^@unexec rmdir %D/share/licenses" >> ${TMPPLIST} || ${TRUE}
 
 
 .include <bsd.port.post.mk>


More information about the svn-ports-all mailing list