diff options
author | bapt <bapt@FreeBSD.org> | 2016-01-15 07:11:31 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2016-01-15 07:11:31 +0800 |
commit | 29ac9e7df04042bacaa8b967642eb65948490d7c (patch) | |
tree | 72efc366cc3a9cef20cc37a3b43cf6f5d039b22b /www/nspluginwrapper | |
parent | 6cae5ed30a3b31b4c3aac3287f6ecdc40c213b50 (diff) | |
download | freebsd-ports-gnome-29ac9e7df04042bacaa8b967642eb65948490d7c.tar.gz freebsd-ports-gnome-29ac9e7df04042bacaa8b967642eb65948490d7c.tar.zst freebsd-ports-gnome-29ac9e7df04042bacaa8b967642eb65948490d7c.zip |
Fix build and run on recent head with working unicode collation
The right way to upper or lower characters with tr(1) is to use the dedicated
classes instead if listing the characters like [A-Z] because the order is
on the locale
Reported by: kan
Diffstat (limited to 'www/nspluginwrapper')
-rw-r--r-- | www/nspluginwrapper/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/www/nspluginwrapper/Makefile b/www/nspluginwrapper/Makefile index 2bfce9693938..3ff4ff45e2a9 100644 --- a/www/nspluginwrapper/Makefile +++ b/www/nspluginwrapper/Makefile @@ -3,7 +3,7 @@ PORTNAME= nspluginwrapper PORTVERSION= 1.4.4 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= www linux emulators MASTER_SITES= http://nspluginwrapper.org/download/ \ LOCAL/jkim \ @@ -59,6 +59,8 @@ PLIST_SUB+= HOST_AMD64="@comment " post-patch: ${REINPLACE_CMD} -e 's,%%LOCALBASE%%,${LOCALBASE},g' \ ${WRKSRC}/src/npw-config.c + ${REINPLACE_CMD} -e 's,A-Z,:upper:,g; s,a-z,:lower:,g' \ + ${WRKSRC}/configure ${WRKSRC}/src/npw-viewer.sh post-install: ${MKDIR} ${STAGEDIR}${LIBDIR}/i386/linux |