Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 17 Dec 2018 08:13:15 +0000 (UTC)
From:      Dirk Meyer <dinoex@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r487660 - head/emulators/vice
Message-ID:  <201812170813.wBH8DFMj079712@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201812170813.wBH8DFMj079712>