diff options
author | bjs <bjs@pkgsrc.org> | 2008-02-06 08:03:10 +0000 |
---|---|---|
committer | bjs <bjs@pkgsrc.org> | 2008-02-06 08:03:10 +0000 |
commit | 09f114e51900b8f19d5bdca9b924b6550a40176f (patch) | |
tree | 2568e09fa110782a80ad757ed50fdef409b72afa | |
parent | 3bdc27a73474ead5d0ae07b287fc03094c24a483 (diff) | |
download | pkgsrc-09f114e51900b8f19d5bdca9b924b6550a40176f.tar.gz |
Update to luit-1.0.3. Notable changes:
* Define _XOPEN_SOURCE to 500 on linux
* strdup() is only exposed by glibc headers if _XOPEN_SOURCE is defined
to a value >= 500.
* Replace malloc/strcpy pairs with strdup
* Man page typo fixes
* Fix sparse warnings: non-ANSI function declaration (missing void)
* Fix many sparse warnings of Using plain integer as NULL pointer
* Change luit_CFLAGS to AM_CFLAGS to make automake-1.10 happier
* Fix typo in luit.man
* Match luit locale.alias location to libX11 default
Luit expects to find the locale.alias file in ${libdir}/X11/locale.
However, libX11 installs the locale files in ${datadir}/X11/locale,
by default.
-rw-r--r-- | x11/luit/Makefile | 4 | ||||
-rw-r--r-- | x11/luit/distinfo | 9 | ||||
-rw-r--r-- | x11/luit/patches/patch-aa | 17 |
3 files changed, 6 insertions, 24 deletions
diff --git a/x11/luit/Makefile b/x11/luit/Makefile index fdbcba16be5..9d38768523a 100644 --- a/x11/luit/Makefile +++ b/x11/luit/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.2 2007/06/19 09:39:11 joerg Exp $ +# $NetBSD: Makefile,v 1.3 2008/02/06 08:03:10 bjs Exp $ # -DISTNAME= luit-1.0.2 +DISTNAME= luit-1.0.3 CATEGORIES= x11 MASTER_SITES= http://xorg.freedesktop.org/releases/individual/app/ EXTRACT_SUFX= .tar.bz2 diff --git a/x11/luit/distinfo b/x11/luit/distinfo index 7ae8bfe60df..3145463eb02 100644 --- a/x11/luit/distinfo +++ b/x11/luit/distinfo @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.1.1.1 2007/04/10 13:46:47 joerg Exp $ +$NetBSD: distinfo,v 1.2 2008/02/06 08:03:10 bjs Exp $ -SHA1 (luit-1.0.2.tar.bz2) = 0b811edc2b1cf11716cb24c468613622e72ebf35 -RMD160 (luit-1.0.2.tar.bz2) = 3e85593ea25e92c694c40351d91efa616cf46f66 -Size (luit-1.0.2.tar.bz2) = 99235 bytes -SHA1 (patch-aa) = 61f1a4de4cef760fe54fb96e7cae0c1c1548ecd4 +SHA1 (luit-1.0.3.tar.bz2) = 8b32bcc2f72af7c8c1cdaede3d4ff5b251ecbf31 +RMD160 (luit-1.0.3.tar.bz2) = f03a3ff729284f78c1c1ec90fc3efd1fdee8a43b +Size (luit-1.0.3.tar.bz2) = 104642 bytes diff --git a/x11/luit/patches/patch-aa b/x11/luit/patches/patch-aa deleted file mode 100644 index 9eda157ccfb..00000000000 --- a/x11/luit/patches/patch-aa +++ /dev/null @@ -1,17 +0,0 @@ -$NetBSD: patch-aa,v 1.1.1.1 2007/04/10 13:46:47 joerg Exp $ - ---- configure.orig 2007-04-09 22:15:12.000000000 +0200 -+++ configure -@@ -2025,10 +2025,10 @@ AMSHOWCMDSAT='' - AMDEPSHOWCMDSAT='' - AMPRETTYECHO=true - AMCMDECHO=echo --if test "x$enable_pretty_cmds" == xyes; -+if test "x$enable_pretty_cmds" = xyes; - then - AMSHOWCMDSAT='@' -- test x$enable_dependency_tracking == xno && AMDEPSHOWCMDSAT='@' -+ test x$enable_dependency_tracking = xno && AMDEPSHOWCMDSAT='@' - AMPRETTYECHO=echo - AMCMDECHO=true - LT_QUIET='--quiet' |