summaryrefslogtreecommitdiff
path: root/x11/mlterm
diff options
context:
space:
mode:
authortsutsui <tsutsui@pkgsrc.org>2017-05-06 13:48:39 +0000
committertsutsui <tsutsui@pkgsrc.org>2017-05-06 13:48:39 +0000
commit6ac8b6ad7d13bccf4bd75c959b6f15918d1d1512 (patch)
treece7c82dab8c364ddd32ec520cc58f725663a19ad /x11/mlterm
parent674080c2b869bb4697af0cca6325d5f272eb6fd2 (diff)
downloadpkgsrc-6ac8b6ad7d13bccf4bd75c959b6f15918d1d1512.tar.gz
Update mlterm to 3.8.1.
Changes noted in doc/en/ReleaseNote: ver 3.8.1 * Support wayland including libvte compatible library. (Build mlterm with --with-gui=wayland option.) (see doc/en/README.wayland) * Support "compose_dec_special_font" / --decsp option on framebuffer and wayland. * "line_space" option accepts negative value. * Add "underline_offset" / --ulpos option. * Rename wskbd_repeat_1 and wskbd_repeat_N options to kbd_repeat_1 and kbd_repeat_N. * Enable --enable-anti-alias option of configure script by default. * Add --enable-fontconfig option which enables fontconfig on framebuffer and wayland to configure script. (This option is enabled by default.) * Add "use_aafont" option which gets mlterm to apply ~/.mlterm/*aafont configurations with the use of fontconfig on framebuffer and wayland. (The default value is true on wayland, while false on framebuffer.) * Search alternative glyphs in other fonts automatically on framebuffer and wayland. (This feature is enabled if mlterm-{fb|wl} is built with freetype and fontconfig.) * libvte compatible library supports vte 0.46.0 API. * Bug fixes: Fix detection failuer of mouse event devices on framebuffer/linux. (Thanks to @nyarla) (See http://the.nyarla.net/entry/2017/03/25/142516 for details.) Fix segfault in using many colors by SGR 38;2;r;g;b or 48;2;r;g;b sequence.
Diffstat (limited to 'x11/mlterm')
-rw-r--r--x11/mlterm/Makefile5
-rw-r--r--x11/mlterm/distinfo10
-rw-r--r--x11/mlterm/options.mk5
3 files changed, 11 insertions, 9 deletions
diff --git a/x11/mlterm/Makefile b/x11/mlterm/Makefile
index 7d11b37ed79..0b988f45377 100644
--- a/x11/mlterm/Makefile
+++ b/x11/mlterm/Makefile
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.133 2017/02/28 15:20:12 ryoon Exp $
+# $NetBSD: Makefile,v 1.134 2017/05/06 13:48:39 tsutsui Exp $
-DISTNAME= mlterm-3.8.0
-PKGREVISION= 3
+DISTNAME= mlterm-3.8.1
CATEGORIES= x11
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=mlterm/}
diff --git a/x11/mlterm/distinfo b/x11/mlterm/distinfo
index a4c0ec151d0..a13ee7028e5 100644
--- a/x11/mlterm/distinfo
+++ b/x11/mlterm/distinfo
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.67 2017/02/04 16:20:12 tsutsui Exp $
+$NetBSD: distinfo,v 1.68 2017/05/06 13:48:39 tsutsui Exp $
-SHA1 (mlterm-3.8.0.tar.gz) = 94476d46abbfd15d7b5f828a51dd166e39d322f8
-RMD160 (mlterm-3.8.0.tar.gz) = c34673c7d4a10dc851a5e397a5e6b573c34d5e59
-SHA512 (mlterm-3.8.0.tar.gz) = 86d163aaf24668dea77e54ff775cb448c6c699bcc82e1d84fe9a9fbed90d9c834ee3e61348de77713b2dbd229b37b76d2be817d788710f224cd5c53e7f93049f
-Size (mlterm-3.8.0.tar.gz) = 3756779 bytes
+SHA1 (mlterm-3.8.1.tar.gz) = 1a36390d46c9921bc4fc6d3cca059044da6dd1a6
+RMD160 (mlterm-3.8.1.tar.gz) = ac2a74a202ddb3034855b68e51053c077cbda753
+SHA512 (mlterm-3.8.1.tar.gz) = fd57ffefb9f96a58bb63751cc06b3381e0b3d5b50c5023cbd95fa5dc0351f958a783f6eabbf71b6625774312d03c5284db957c47f83f5352ae594d0e4864c52e
+Size (mlterm-3.8.1.tar.gz) = 3789935 bytes
SHA1 (patch-configure) = 54643fa501cc65d3513c1e21ece6c2a234a7798a
SHA1 (patch-etc_font-fb) = 03f0b2ecee20ef3201c8e4ce17f03ac90f657b00
diff --git a/x11/mlterm/options.mk b/x11/mlterm/options.mk
index 20986a417dd..712711944c7 100644
--- a/x11/mlterm/options.mk
+++ b/x11/mlterm/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.13 2017/02/04 16:20:12 tsutsui Exp $
+# $NetBSD: options.mk,v 1.14 2017/05/06 13:48:39 tsutsui Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.mlterm
PKG_SUPPORTED_OPTIONS= cairo canna fribidi gdk_pixbuf2 ibus libind m17nlib mlterm-fb otl scim skk uim wnn4 xft2
@@ -116,6 +116,9 @@ CONFIGURE_ARGS+= --disable-wnn
.if !empty(PKG_OPTIONS:Mxft2)
.include "../../x11/libXft/buildlink3.mk"
PLIST.xft2= yes
+CONFIGURE_ARGS+= --enable-fontconfig
+.else
+CONFIGURE_ARGS+= --disable-fontconfig
.endif
.if !empty(PKG_OPTIONS:Mcairo) && !empty(PKG_OPTIONS:Mxft2)