diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2016-11-06 17:39:20 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2016-11-06 17:39:20 +0000 |
commit | 0a3cdf4e756cdc91645325fa7cc7c7b55d0f8333 (patch) | |
tree | 4a10d4c7d3a96f6108a595d9910681389e213413 /emulators/vice | |
parent | 790de65f029b0cc376d6522161a27fc28194849e (diff) | |
download | ports-0a3cdf4e756cdc91645325fa7cc7c7b55d0f8333.tar.gz ports-0a3cdf4e756cdc91645325fa7cc7c7b55d0f8333.zip |
Notes
Diffstat (limited to 'emulators/vice')
-rw-r--r-- | emulators/vice/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/emulators/vice/Makefile b/emulators/vice/Makefile index 4b53e46ef6ab..93542e471a7c 100644 --- a/emulators/vice/Makefile +++ b/emulators/vice/Makefile @@ -3,7 +3,7 @@ PORTNAME= vice PORTVERSION= 2.4 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= emulators MASTER_SITES= http://www.zimmers.net/anonftp/pub/cbm/crossplatform/emulators/VICE/ \ ftp://ftp.zimmers.net/pub/cbm/crossplatform/emulators/VICE/ @@ -152,6 +152,9 @@ post-patch: ${REINPLACE_CMD} -e 's|lungif|lgif|g' -e 's|== "x|= "x|' \ -e 's|"DATADIRNAME"/locale|share/locale|' \ ${WRKSRC}/configure + ${REINPLACE_CMD} -e 's|CODEC_ID_|AV_CODEC_ID_|' \ + -e 's|PIX_FMT_|AV_PIX_FMT_|' \ + ${WRKSRC}/src/gfxoutputdrv/ffmpegdrv.c .for i in da.po de.po fr.po hu.po it.po nl.po pl.po sv.po tr.po ${MV} "${WRKSRC}/po/${i}" "${WRKSRC}/po/${i}.latin" ${ICONV_CMD} -f latin1 -t utf-8 < "${WRKSRC}/po/${i}.latin" > "${WRKSRC}/po/${i}" |