svn commit: r308498 - head/games/minecraft-server

Jason E. Hale jhale at FreeBSD.org
Sun Dec 9 00:21:31 UTC 2012


Author: jhale
Date: Sun Dec  9 00:21:30 2012
New Revision: 308498
URL: http://svnweb.freebsd.org/changeset/ports/308498

Log:
  - Fix install due to distfile relocation in last commit
  
  Feature safe:	yes

Modified:
  head/games/minecraft-server/Makefile

Modified: head/games/minecraft-server/Makefile
==============================================================================
--- head/games/minecraft-server/Makefile	Sat Dec  8 23:54:44 2012	(r308497)
+++ head/games/minecraft-server/Makefile	Sun Dec  9 00:21:30 2012	(r308498)
@@ -60,9 +60,9 @@ PLIST_SUB+=	X11="@comment "
 
 do-install:
 	${MKDIR} ${DATADIR}
-	(${INSTALL_DATA} "${DISTDIR}/minecraft_server.jar" ${DATADIR}/)
+	${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/minecraft_server.jar ${DATADIR}/
 .if ${PORT_OPTIONS:MX11}
-	(${INSTALL_DATA} "${DISTDIR}/Bookshelf.png" ${PREFIX}/share/pixmaps/minecraft-server.png)
+	${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/Bookshelf.png ${PREFIX}/share/pixmaps/minecraft-server.png
 .endif
 	echo "#!/bin/sh"				>  ${WRKDIR}/${PORTNAME}
 	echo "if ! test -d ~/.minecraft-server ; then"	>> ${WRKDIR}/${PORTNAME}


More information about the svn-ports-all mailing list