svn commit: r487660 - head/emulators/vice

Dirk Meyer dinoex at FreeBSD.org
Mon Dec 17 08:13:16 UTC 2018


Author: dinoex
Date: Mon Dec 17 08:13:15 2018
New Revision: 487660
URL: https://svnweb.freebsd.org/changeset/ports/487660

Log:
  - workaround USES=iconv does not support patch and lib depends at the same time.

Modified:
  head/emulators/vice/Makefile

Modified: head/emulators/vice/Makefile
==============================================================================
--- head/emulators/vice/Makefile	Mon Dec 17 07:59:57 2018	(r487659)
+++ head/emulators/vice/Makefile	Mon Dec 17 08:13:15 2018	(r487660)
@@ -115,18 +115,16 @@ INFO+=		vice
 USE_SDL=	sdl2
 .endif
 
-post-patch:
-.for i in da.po de.po fr.po
-	${MV} "${WRKSRC}/po/${i}" "${WRKSRC}/po/${i}.latin"
-	${ICONV_CMD} -f latin1 -t utf-8 < "${WRKSRC}/po/${i}.latin" > "${WRKSRC}/po/${i}"
-	${REINPLACE_CMD} -e 's|ISO-8859-1|UTF-8|' ${WRKSRC}/Makefile.in
-.endfor
-
 pre-configure:
 	${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|g" \
 		${WRKSRC}/man/vice.1
 	${REINPLACE_CMD} -e 's|^localedir.*|localedir = $$(DESTDIR)${LOCALBASE}/share/locale|' \
 		${WRKSRC}/po/Makefile.in.in
+.for i in da.po de.po fr.po
+	${MV} "${WRKSRC}/po/${i}" "${WRKSRC}/po/${i}.latin"
+	${ICONV_CMD} -f latin1 -t utf-8 < "${WRKSRC}/po/${i}.latin" > "${WRKSRC}/po/${i}"
+	${REINPLACE_CMD} -e 's|ISO-8859-1|UTF-8|' ${WRKSRC}/Makefile.in
+.endfor
 .if ! ${PORT_OPTIONS:MDOCS}
 	${REINPLACE_CMD} -e 's| doc||' ${WRKSRC}/Makefile.in
 .endif


More information about the svn-ports-all mailing list