From owner-freebsd-gnome@FreeBSD.ORG Wed Oct 5 14:13:13 2005 Return-Path: X-Original-To: gnome@FreeBSD.org Delivered-To: freebsd-gnome@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 663E616A420 for ; Wed, 5 Oct 2005 14:13:13 +0000 (GMT) (envelope-from mi@blue.virtual-estates.net) Received: from blue.virtual-estates.net (aldan.algebra.com [216.254.65.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B61643D49 for ; Wed, 5 Oct 2005 14:13:12 +0000 (GMT) (envelope-from mi@blue.virtual-estates.net) Received: from blue.virtual-estates.net (blue [127.0.0.1]) by blue.virtual-estates.net (8.13.4/8.13.4) with ESMTP id j95EDBXt038519 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Wed, 5 Oct 2005 10:13:11 -0400 (EDT) (envelope-from mi@blue.virtual-estates.net) Received: (from mi@localhost) by blue.virtual-estates.net (8.13.4/8.13.4/Submit) id j95EDBi2038518 for gnome@FreeBSD.org; Wed, 5 Oct 2005 10:13:11 -0400 (EDT) (envelope-from mi) From: "Mikhail T." Message-Id: <200510051413.j95EDBi2038518@blue.virtual-estates.net> To: gnome@FreeBSD.org Date: Wed, 5 Oct 2005 10:13:11 -0400 (EDT) X-Face: %UW#n0|w>ydeGt/b@1-.UFP=K^~-:0f#O:D7w hJ5G_<5143Bb3kOIs9XpX+"V+~$adGP:J|SLieM31VIhqXeLBli" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Oct 2005 14:13:13 -0000 Hi! I just noticed, that there is nothing under /usr/local/include/nss other than another nss subdirectory. Fixing this is trivial -- we are only installing nss headers -- but the impact on the dependant ports may not be. It is still desirable, though, IMHO... While at it, there is, probably, no need to make the libraries executable nor to strip them -- use INSTALL_DATA instead of INSTALL_PROGRAM. Yours, -mi Index: Makefile =================================================================== RCS file: /home/pcvs/ports/security/nss/Makefile,v retrieving revision 1.28 diff -U2 -r1.28 Makefile --- Makefile 30 Aug 2005 20:52:18 -0000 1.28 +++ Makefile 5 Oct 2005 14:03:44 -0000 @@ -8,4 +8,5 @@ PORTNAME= nss PORTVERSION= 3.10 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_MOZILLA} @@ -75,5 +76,4 @@ do-install: - ${MKDIR} ${PREFIX}/include/nss - ${TAR} -C ${DIST}/public --dereference -cf - . | \ + ${TAR} -C ${DIST}/public --dereference -cf - nss | \ ${TAR} -C ${PREFIX}/include/ -xf - - ${INSTALL_PROGRAM} ${DIST}/FreeBSD${OSREL:C/.$/*/}_OPT.OBJ/lib/*.so.1 \ + ${INSTALL_DATA} ${DIST}/FreeBSD${OSREL:C/.$/*/}_OPT.OBJ/lib/*.so.1 \