Received: by mail.netbsd.org (Postfix, from userid 605) id 043C984D66; Thu, 23 Feb 2023 19:10:08 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3687984D57 for ; Thu, 23 Feb 2023 19:10:07 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id gVfLoqsKH87x for ; Thu, 23 Feb 2023 19:10:06 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 9655C84D44 for ; Thu, 23 Feb 2023 19:10:06 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 89735FA90; Thu, 23 Feb 2023 19:10:06 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1677179406116010" MIME-Version: 1.0 Date: Thu, 23 Feb 2023 19:10:06 +0000 From: "Paolo Vincenzo Olivo" Subject: CVS commit: pkgsrc/wm/cde To: pkgsrc-changes@NetBSD.org Reply-To: vins@netbsd.org X-Mailer: log_accum Message-Id: <20230223191006.89735FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1677179406116010 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: vins Date: Thu Feb 23 19:10:06 UTC 2023 Modified Files: pkgsrc/wm/cde: Makefile options.mk pkgsrc/wm/cde/files: README.netbsd Log Message: wm/cde: few adjustments. * Move SPACIAL_PERMS for dtsession where they belong (systems w/o PAM support). * Change main package category fom x11 to wm (wip leftover). * Fix syntax of the hostname entry in /etc/hosts: addresses bug with ttsession coredumping upon startup. * Bump revision. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/wm/cde/Makefile pkgsrc/wm/cde/options.mk cvs rdiff -u -r1.1 -r1.2 pkgsrc/wm/cde/files/README.netbsd Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1677179406116010 Content-Disposition: inline Content-Length: 1948 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/wm/cde/Makefile diff -u pkgsrc/wm/cde/Makefile:1.1 pkgsrc/wm/cde/Makefile:1.2 --- pkgsrc/wm/cde/Makefile:1.1 Sun Feb 12 16:34:15 2023 +++ pkgsrc/wm/cde/Makefile Thu Feb 23 19:10:06 2023 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.1 2023/02/12 16:34:15 vins Exp $ +# $NetBSD: Makefile,v 1.2 2023/02/23 19:10:06 vins Exp $ DISTNAME= cde-2.5.1 -CATEGORIES= x11 +PKGREVISION= 1 +CATEGORIES= wm x11 MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=cdesktopenv/files/src/} MAINTAINER= vins@NetBSD.org Index: pkgsrc/wm/cde/options.mk diff -u pkgsrc/wm/cde/options.mk:1.1 pkgsrc/wm/cde/options.mk:1.2 --- pkgsrc/wm/cde/options.mk:1.1 Sun Feb 12 16:34:15 2023 +++ pkgsrc/wm/cde/options.mk Thu Feb 23 19:10:06 2023 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.1 2023/02/12 16:34:15 vins Exp $ +# $NetBSD: options.mk,v 1.2 2023/02/23 19:10:06 vins Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.cde @@ -44,8 +44,6 @@ CONF_FILES+= ${EGDIR}/pam.d/cde \ MAKE_DIRS+= ${PKG_SYSCONFDIR}/pam.d INSTALLATION_DIRS+= share/examples/${PKGBASE}/pam.d -SPECIAL_PERMS+= ${PREFIX}/dt/bin/dtsession ${SETUID_ROOT_PERMS} - PLIST.pam= yes pre-install: @@ -53,4 +51,5 @@ pre-install: ${DESTDIR}${EGDIR}/pam.d/cde .else CONFIGURE_ENV+= ac_cv_lib_pam_pam_start=no +SPECIAL_PERMS+= ${PREFIX}/dt/bin/dtsession ${SETUID_ROOT_PERMS} .endif Index: pkgsrc/wm/cde/files/README.netbsd diff -u pkgsrc/wm/cde/files/README.netbsd:1.1 pkgsrc/wm/cde/files/README.netbsd:1.2 --- pkgsrc/wm/cde/files/README.netbsd:1.1 Sun Feb 12 16:34:15 2023 +++ pkgsrc/wm/cde/files/README.netbsd Thu Feb 23 19:10:06 2023 @@ -16,5 +16,6 @@ cmsd 100068 dtcalendar ttdbserver 100083 ttooltalk /etc/hosts -127.0.0.1 localhost localhost.my.domain hostname +::1 localhost localhost. +127.0.0.1 localhost localhost. ----------------------------------------------------------------------- --_----------=_1677179406116010--