From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Apr 26 06:10:20 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE4B016A4CE for ; Mon, 26 Apr 2004 06:10:19 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0D6343D46 for ; Mon, 26 Apr 2004 06:10:19 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i3QDAJCN053912 for ; Mon, 26 Apr 2004 06:10:19 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i3QDAJ9P053911; Mon, 26 Apr 2004 06:10:19 -0700 (PDT) (envelope-from gnats) Resent-Date: Mon, 26 Apr 2004 06:10:19 -0700 (PDT) Resent-Message-Id: <200404261310.i3QDAJ9P053911@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 65A9816A4CE for ; Mon, 26 Apr 2004 06:02:18 -0700 (PDT) Received: from hfep02.dion.ne.jp (hfep02.dion.ne.jp [203.181.105.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9726943D5A for ; Mon, 26 Apr 2004 06:02:15 -0700 (PDT) (envelope-from tkato@prontomail.com) Received: from localhost ([61.204.120.170]) by hfep02.dion.ne.jp with SMTP id <20040426130209066.NKUG@hfep02.dion.ne.jp> for ; Mon, 26 Apr 2004 22:02:09 +0900 Message-Id: <20040426220025.6883dd19.tkato@prontomail.com> Date: Mon, 26 Apr 2004 22:00:25 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/65996: Update port: security/shishi X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Apr 2004 13:10:20 -0000 >Number: 65996 >Category: ports >Synopsis: Update port: security/shishi >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Apr 26 06:10:19 PDT 2004 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 4.9-RELEASE-p5 i386 >Organization: >Environment: >Description: - Fix LIB_DEPENDS - Fix handling PKGMESSAGE New file: files/pkg-message.in Remove file: pkg-message >How-To-Repeat: >Fix: diff -urN /usr/ports/security/shishi/Makefile security/shishi/Makefile --- /usr/ports/security/shishi/Makefile Mon Apr 19 11:41:48 2004 +++ security/shishi/Makefile Mon Apr 19 20:07:38 2004 @@ -8,6 +8,7 @@ PORTNAME= shishi PORTVERSION= 0.0.15 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://josefsson.org/${PORTNAME}/releases/ @@ -15,35 +16,40 @@ COMMENT= A free implementation of the Kerberos 5 network security system LIB_DEPENDS= idn.13:${PORTSDIR}/devel/libidn \ + gcrypt.10:${PORTSDIR}/security/libgcrypt-devel \ tasn1.2:${PORTSDIR}/security/libtasn1 +PKGMESSAGE= ${WRKDIR}/pkg-message + USE_PERL5_BUILD= yes USE_GNOME= gnomehack gnometarget pkgconfig GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" \ MAKEINFO="makeinfo --no-split" -CONFIGURE_ARGS= --without-libgcrypt --disable-starttls \ +CONFIGURE_ARGS= --disable-starttls \ --with-db-dir=/var/shishi INSTALLS_SHLIB= yes INFO= shishi -.if !defined(WITHOUT_NLS) +.if defined(WITHOUT_NLS) +CONFIGURE_ARGS+= --disable-nls +PLIST_SUB+= NLS="@comment " +.else USE_GETTEXT= yes PLIST_SUB+= NLS="" -.else -CONFIGURE_ARGS+=--disable-nls -PLIST_SUB+= NLS="@comment " .endif -SED_SCRIPT+= -e 's,%%PREFIX%%,${PREFIX},g' - post-extract: @${RM} -f ${WRKSRC}/doc/shishi.info* +post-patch: + @${SED} -e 's,%%PREFIX%%,${PREFIX},g' \ + ${FILESDIR}/pkg-message.in > ${PKGMESSAGE} + post-install: - @${SED} ${SED_SCRIPT} < ${PKGMESSAGE} + @${CAT} ${PKGMESSAGE} .include "Makefile.man" .include diff -urN /usr/ports/security/shishi/files/pkg-message.in security/shishi/files/pkg-message.in --- /usr/ports/security/shishi/files/pkg-message.in Thu Jan 1 09:00:00 1970 +++ security/shishi/files/pkg-message.in Mon Apr 19 19:51:16 2004 @@ -0,0 +1,7 @@ +================================================================= +NOTE: To finish installing this port, you need to execute the +following commands: + +# mkdir -m 0700 -p /var/shishi +# %%PREFIX%%/bin/shisa -a > %%PREFIX%%/etc/shishi/shishi.keys +================================================================= diff -urN /usr/ports/security/shishi/pkg-message security/shishi/pkg-message --- /usr/ports/security/shishi/pkg-message Mon Apr 19 11:41:48 2004 +++ security/shishi/pkg-message Thu Jan 1 09:00:00 1970 @@ -1,7 +0,0 @@ -================================================================= -NOTE: To finish installing this port, you need to execute the -following commands: - -# mkdir -m 0700 -p /var/shishi -# %%PREFIX%%/bin/shisa -a > %%PREFIX%%/etc/shishi/shishi.keys -================================================================= >Release-Note: >Audit-Trail: >Unformatted: