diff options
author | martti <martti@pkgsrc.org> | 2006-03-20 06:29:09 +0000 |
---|---|---|
committer | martti <martti@pkgsrc.org> | 2006-03-20 06:29:09 +0000 |
commit | 2a382a9c947ec741ce6d43e1de261875e058f69c (patch) | |
tree | 3e2210978ef40624fc638dd35b2b253defba7eb2 /x11 | |
parent | 2cbefd82adcb3c505b2674526ad6196a3556e2f5 (diff) | |
download | pkgsrc-2a382a9c947ec741ce6d43e1de261875e058f69c.tar.gz |
Updated x11/xfce4-utils to 4.2.3nb3
Fix the 'id -u' issue on Solaris (pkg/33027). The remaining changes (like
sshagent startup) should go via xfce.org.
Diffstat (limited to 'x11')
-rw-r--r-- | x11/xfce4-utils/Makefile | 5 | ||||
-rw-r--r-- | x11/xfce4-utils/buildlink3.mk | 4 | ||||
-rw-r--r-- | x11/xfce4-utils/distinfo | 3 | ||||
-rw-r--r-- | x11/xfce4-utils/patches/patch-ab | 23 |
4 files changed, 29 insertions, 6 deletions
diff --git a/x11/xfce4-utils/Makefile b/x11/xfce4-utils/Makefile index 704b49a1a26..9e078b0079a 100644 --- a/x11/xfce4-utils/Makefile +++ b/x11/xfce4-utils/Makefile @@ -1,11 +1,10 @@ -# $NetBSD: Makefile,v 1.22 2006/02/17 06:49:26 martti Exp $ +# $NetBSD: Makefile,v 1.23 2006/03/20 06:29:09 martti Exp $ .include "../../meta-pkgs/xfce4/Makefile.common" DISTNAME= xfce-utils-${XFCE4_VERSION} PKGNAME= xfce4-utils-${XFCE4_VERSION} -#PKGREVISION= 1 -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES= x11 COMMENT= Xfce utilities diff --git a/x11/xfce4-utils/buildlink3.mk b/x11/xfce4-utils/buildlink3.mk index 3de020aa9bc..0dace7038f0 100644 --- a/x11/xfce4-utils/buildlink3.mk +++ b/x11/xfce4-utils/buildlink3.mk @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.13 2006/02/17 06:49:26 martti Exp $ +# $NetBSD: buildlink3.mk,v 1.14 2006/03/20 06:29:09 martti Exp $ BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+ XFCE4_UTILS_BUILDLINK3_MK:= ${XFCE4_UTILS_BUILDLINK3_MK}+ @@ -12,7 +12,7 @@ BUILDLINK_PACKAGES+= xfce4-utils .if !empty(XFCE4_UTILS_BUILDLINK3_MK:M+) BUILDLINK_DEPENDS.xfce4-utils+= xfce4-utils>=4.2.3 -BUILDLINK_RECOMMENDED.xfce4-utils?= xfce4-utils>=4.2.3nb2 +BUILDLINK_RECOMMENDED.xfce4-utils?= xfce4-utils>=4.2.3nb3 BUILDLINK_PKGSRCDIR.xfce4-utils?= ../../x11/xfce4-utils .endif # XFCE4_UTILS_BUILDLINK3_MK diff --git a/x11/xfce4-utils/distinfo b/x11/xfce4-utils/distinfo index 5bed375c7b3..ff8fc1bd252 100644 --- a/x11/xfce4-utils/distinfo +++ b/x11/xfce4-utils/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.13 2005/11/09 06:42:59 martti Exp $ +$NetBSD: distinfo,v 1.14 2006/03/20 06:29:09 martti Exp $ SHA1 (xfce-utils-4.2.3.tar.gz) = a19e68dd676743636dec80d9ce2b0d6149c7a315 RMD160 (xfce-utils-4.2.3.tar.gz) = acbe18beeac5a2b6d4866ec98343d4fc98b4dd12 Size (xfce-utils-4.2.3.tar.gz) = 1303388 bytes SHA1 (patch-aa) = deafbcd8b3c367d377aa25416c9d25043f907e60 +SHA1 (patch-ab) = 39c4fd41775cefc4cc2f10bc86060d9bbcc7b795 diff --git a/x11/xfce4-utils/patches/patch-ab b/x11/xfce4-utils/patches/patch-ab new file mode 100644 index 00000000000..31352f30591 --- /dev/null +++ b/x11/xfce4-utils/patches/patch-ab @@ -0,0 +1,23 @@ +$NetBSD: patch-ab,v 1.1 2006/03/20 06:29:09 martti Exp $ + +--- scripts/xinitrc.orig 2005-11-05 19:03:34.000000000 +0200 ++++ scripts/xinitrc 2006-03-20 06:20:23.000000000 +0200 +@@ -1,8 +1,17 @@ + #!/bin/sh + + # fix broken $UID on some system... ++OPSYS=`uname -s` ++case "$OPSYS" in ++ *SunOS*) ++ ID_EXEC=/usr/xpg4/bin/id ++ ;; ++ *) ++ ID_EXEC=id ++ ;; ++esac + if test "x$UID" = "x"; then +- UID=`id -u` ++ UID=`$ID_EXEC -u` + fi + + # create temp file for X resources |