From owner-freebsd-ports Mon Aug 12 19: 0:11 2002 Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A23737B400 for ; Mon, 12 Aug 2002 19:00:07 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B8BA43E72 for ; Mon, 12 Aug 2002 19:00:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.4/8.12.4) with ESMTP id g7D206JU060791 for ; Mon, 12 Aug 2002 19:00:06 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.4/8.12.4/Submit) id g7D206jU060790; Mon, 12 Aug 2002 19:00:06 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 03A5837B400 for ; Mon, 12 Aug 2002 18:55:00 -0700 (PDT) Received: from mail.speakeasy.net (mail13.speakeasy.net [216.254.0.213]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C2C143E65 for ; Mon, 12 Aug 2002 18:54:59 -0700 (PDT) (envelope-from sean@rand.tgd.net) Received: (qmail 31175 invoked from network); 13 Aug 2002 01:54:58 -0000 Received: from unknown (HELO rand.tgd.net) ([64.81.67.117]) (envelope-sender ) by mail13.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 13 Aug 2002 01:54:58 -0000 Received: by rand.tgd.net (Postfix, from userid 1001) id 4F853D38D0; Mon, 12 Aug 2002 18:54:58 -0700 (PDT) Message-Id: <20020813015458.4F853D38D0@rand.tgd.net> Date: Mon, 12 Aug 2002 18:54:58 -0700 (PDT) From: Sean Chittenden Reply-To: Sean Chittenden To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/41599: security/cyrus-sasl2 uses install -C -d (breaks on -STABLE) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 41599 >Category: ports >Synopsis: security/cyrus-sasl2 uses install -C -d (breaks on -STABLE) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Aug 12 19:00:05 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Sean Chittenden >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD rand.tgd.net 5.0-CURRENT FreeBSD 5.0-CURRENT #1: Mon Aug 5 20:04:08 PDT 2002 sean@rand.tgd.net:/usr/obj/usr/src/sys/DELLAPTOP i386 >Description: On all systems but current, install -C -d is a fatal error. Until such time as the install args patch gets MFC'ed, cyrus-sasl2 will fail to install correctly on many (all?) -STABLE systems. >How-To-Repeat: cd ${PORTSDIR}/security/cyrus-sasl2; make install >Fix: See included patch. Index: security/cyrus-sasl2/Makefile =================================================================== RCS file: /home/ncvs/ports/security/cyrus-sasl2/Makefile,v retrieving revision 1.47 diff -u -r1.47 Makefile --- security/cyrus-sasl2/Makefile 2002/08/09 19:11:41 1.47 +++ security/cyrus-sasl2/Makefile 2002/08/13 01:51:58 @@ -132,7 +132,8 @@ @${SED} -e "s;%%PREFIX%%;${PREFIX};g" ${PWCHECK_SUB} \ ${FILESDIR}/saslauthd.sh > ${PREFIX}/etc/rc.d/saslauthd.sh @${CHMOD} 755 ${PREFIX}/etc/rc.d/saslauthd.sh - ${INSTALL} -d -m 770 -o cyrus -g cyrus /var/state/saslauthd + ${MKDIR} -m 770 /var/state/saslauthd + ${CHOWN} cyrus:cyrus /var/state/saslauthd .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} @${MKDIR} ${DOCSDIR}/html >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message