diff options
Diffstat (limited to 'x11/terminator/Makefile')
-rw-r--r-- | x11/terminator/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/x11/terminator/Makefile b/x11/terminator/Makefile index beaa7b409e22..5d60fdffdc0b 100644 --- a/x11/terminator/Makefile +++ b/x11/terminator/Makefile @@ -6,7 +6,7 @@ # PORTNAME= terminator -PORTVERSION= 0.11 +PORTVERSION= 0.12 CATEGORIES= x11 python MASTER_SITES= https://launchpad.net/terminator/trunk/${PORTVERSION}/+download/ \ http://hur.st/mirror/terminator/ @@ -29,9 +29,10 @@ WANT_GNOME= yes .include <bsd.port.pre.mk> +PYSETUP+= --without-icon-cache .ifdef(WITHOUT_NLS) PLIST_SUB+= NLS="@comment " -PYSETUP+= --without-gettext --without-icon-cache +PYSETUP+= --without-gettext .else USE_GETTEXT= yes PLIST_SUB+= NLS="" @@ -47,6 +48,7 @@ MAN1= terminator.1 MAN5= terminator_config.5 post-patch: - @${REINPLACE_CMD} -e 's/0\.10/0.11/' ${WRKSRC}/terminatorlib/version.py + # setup.py installs 32x32 icons in the wrong place. + @${REINPLACE_CMD} -e "s|24x24/apps', glob.glob('data/icons/32x32|32x32/apps', glob.glob('data/icons/32x32|" ${WRKSRC}/setup.py .include <bsd.port.post.mk> |