From owner-svn-ports-head@freebsd.org Mon May 9 18:19:17 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BF926B34900; Mon, 9 May 2016 18:19:17 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9A39C16CA; Mon, 9 May 2016 18:19:17 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u49IJGM4071948; Mon, 9 May 2016 18:19:16 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u49IJGs5071944; Mon, 9 May 2016 18:19:16 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201605091819.u49IJGs5071944@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Mon, 9 May 2016 18:19:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r414877 - in head/www/nostromo: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 May 2016 18:19:17 -0000 Author: pi Date: Mon May 9 18:19:16 2016 New Revision: 414877 URL: https://svnweb.freebsd.org/changeset/ports/414877 Log: www/nostromo: fix build with LIBRESSL, submitter becomes maintainer PR: 209400 Submitted by: Axel Gonzalez Modified: head/www/nostromo/Makefile head/www/nostromo/files/patch-src-libmy-Makefile head/www/nostromo/files/patch-src-nhttpd-Makefile head/www/nostromo/files/patch-src-tools-Makefile Modified: head/www/nostromo/Makefile ============================================================================== --- head/www/nostromo/Makefile Mon May 9 18:08:43 2016 (r414876) +++ head/www/nostromo/Makefile Mon May 9 18:19:16 2016 (r414877) @@ -6,7 +6,7 @@ PORTVERSION= 1.9.6 CATEGORIES= www ipv6 MASTER_SITES= http://www.nazgul.ch/dev/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= loox@e-shell.net COMMENT= Fast, secure HTTP/1.1 CGI/1.1 SSL IPv4/IPv6 webserver LICENSE= ISCL Modified: head/www/nostromo/files/patch-src-libmy-Makefile ============================================================================== --- head/www/nostromo/files/patch-src-libmy-Makefile Mon May 9 18:08:43 2016 (r414876) +++ head/www/nostromo/files/patch-src-libmy-Makefile Mon May 9 18:19:16 2016 (r414877) @@ -1,7 +1,6 @@ ---- src/libmy/Makefile.orig 2011-03-20 11:23:57.000000000 +0100 -+++ src/libmy/Makefile 2011-03-20 11:24:15.000000000 +0100 -@@ -2,9 +2,9 @@ - SRCS= strcutl.c strcutw.c strcuts.c strcuti.c strcutf.c flog.c flogd.c fparse.c strlower.c strb64d.c +--- src/libmy/Makefile.orig 2016-04-07 19:58:48 UTC ++++ src/libmy/Makefile +@@ -3,8 +3,8 @@ SRCS= strcutl.c strcutw.c strcuts.c strc CFLAGS+= -Wall -Werror -Wstrict-prototypes MAN= Modified: head/www/nostromo/files/patch-src-nhttpd-Makefile ============================================================================== --- head/www/nostromo/files/patch-src-nhttpd-Makefile Mon May 9 18:08:43 2016 (r414876) +++ head/www/nostromo/files/patch-src-nhttpd-Makefile Mon May 9 18:19:16 2016 (r414877) @@ -1,6 +1,9 @@ ---- src/nhttpd/Makefile 2016-04-12 15:02:06.000000000 -0400 -+++ src/nhttpd/Makefile 2016-04-13 12:29:49.861046000 -0400 -@@ -13,8 +13,15 @@ +--- src/nhttpd/Makefile.orig 2016-04-12 19:02:06 UTC ++++ src/nhttpd/Makefile +@@ -10,12 +10,19 @@ PIPE= -pipe + + MAN= nhttpd.8 + -BINOWN= root +BINOWN?= root BINMOD= 0555 @@ -10,7 +13,7 @@ OS!= uname -s +.if defined(OPENSSLLIB) && "${OPENSSLLIB}" != "/usr/lib" -+LDADD+= -L${OPENSSLIB} ++LDADD+= -L${OPENSSLLIB} +.endif +.if defined(OPENSSLINC) && "${OPENSSLINC}" != "/usr/include" +CFLAGS+=-I${OPENSSLINC} @@ -18,3 +21,4 @@ + LDADD+= -lssl -lcrypto .if ${OS} == "FreeBSD" + LDADD+= -lcrypt Modified: head/www/nostromo/files/patch-src-tools-Makefile ============================================================================== --- head/www/nostromo/files/patch-src-tools-Makefile Mon May 9 18:08:43 2016 (r414876) +++ head/www/nostromo/files/patch-src-tools-Makefile Mon May 9 18:19:16 2016 (r414877) @@ -1,6 +1,9 @@ ---- src/tools/Makefile 2016-04-12 15:02:58.000000000 -0400 -+++ src/tools/Makefile 2016-04-13 12:33:40.546452000 -0400 -@@ -12,5 +12,5 @@ +--- src/tools/Makefile.orig 2016-04-12 19:02:58 UTC ++++ src/tools/Makefile +@@ -9,9 +9,9 @@ PIPE= -pipe + + MAN= + -BINOWN= root +BINOWN?= root BINMOD= 0555 @@ -8,3 +11,4 @@ +BINDIR= ${PREFIX}/sbin OS!= uname -s +