From owner-svn-ports-all@freebsd.org Mon Dec 25 09:00:40 2017 Return-Path: Delivered-To: svn-ports-all@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 F2DFBEA9132; Mon, 25 Dec 2017 09:00:40 +0000 (UTC) (envelope-from amdmi3@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 CD46E7D141; Mon, 25 Dec 2017 09:00:40 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBP90dwd080625; Mon, 25 Dec 2017 09:00:39 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBP90diZ080619; Mon, 25 Dec 2017 09:00:39 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201712250900.vBP90diZ080619@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 25 Dec 2017 09:00:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r457211 - in head/www/crawl: . files X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: in head/www/crawl: . files X-SVN-Commit-Revision: 457211 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Dec 2017 09:00:41 -0000 Author: amdmi3 Date: Mon Dec 25 09:00:39 2017 New Revision: 457211 URL: https://svnweb.freebsd.org/changeset/ports/457211 Log: - Switch to options helpers - Regenerate patches - Update WWW Modified: head/www/crawl/Makefile head/www/crawl/files/patch-Makefile.in head/www/crawl/files/patch-compat__gai-errnos.h head/www/crawl/files/patch-configure head/www/crawl/files/patch-dns.c head/www/crawl/pkg-descr Modified: head/www/crawl/Makefile ============================================================================== --- head/www/crawl/Makefile Mon Dec 25 08:52:24 2017 (r457210) +++ head/www/crawl/Makefile Mon Dec 25 09:00:39 2017 (r457211) @@ -26,7 +26,7 @@ post-patch: @${REINPLACE_CMD} -e 's,/usr/include/db2,${BDB_INCLUDE_DIR},g' \ -e 's,db2,${BDB_LIB_NAME},g' ${WRKSRC}/configure.in -post-install: +post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/crawl.conf ${STAGEDIR}${EXAMPLESDIR} Modified: head/www/crawl/files/patch-Makefile.in ============================================================================== --- head/www/crawl/files/patch-Makefile.in Mon Dec 25 08:52:24 2017 (r457210) +++ head/www/crawl/files/patch-Makefile.in Mon Dec 25 09:00:39 2017 (r457211) @@ -1,6 +1,6 @@ ---- Makefile.in.orig Sat May 17 20:50:51 2003 -+++ Makefile.in Sun Dec 21 12:19:52 2003 -@@ -159,7 +154,6 @@ +--- Makefile.in.orig 2003-05-18 01:50:51 UTC ++++ Makefile.in +@@ -159,7 +159,6 @@ $(srcdir)/config.h.in: $(srcdir)/stamp-h $(MAKE) $(srcdir)/stamp-h.in; \ else :; fi $(srcdir)/stamp-h.in: $(top_srcdir)/configure.in $(ACLOCAL_M4) acconfig.h Modified: head/www/crawl/files/patch-compat__gai-errnos.h ============================================================================== --- head/www/crawl/files/patch-compat__gai-errnos.h Mon Dec 25 08:52:24 2017 (r457210) +++ head/www/crawl/files/patch-compat__gai-errnos.h Mon Dec 25 09:00:39 2017 (r457211) @@ -1,5 +1,5 @@ ---- compat/gai-errnos.h.orig Fri Mar 12 07:29:36 2004 -+++ compat/gai-errnos.h Fri Mar 12 07:29:52 2004 +--- compat/gai-errnos.h.orig 2003-05-17 16:39:02 UTC ++++ compat/gai-errnos.h @@ -10,5 +10,7 @@ /* for old netdb.h */ #ifndef EAI_NODATA Modified: head/www/crawl/files/patch-configure ============================================================================== --- head/www/crawl/files/patch-configure Mon Dec 25 08:52:24 2017 (r457210) +++ head/www/crawl/files/patch-configure Mon Dec 25 09:00:39 2017 (r457211) @@ -1,6 +1,6 @@ ---- configure.orig Sun Dec 21 12:18:11 2003 -+++ configure Sun Dec 21 12:18:28 2003 -@@ -2545,11 +2545,11 @@ +--- configure.orig 2003-05-18 01:50:55 UTC ++++ configure +@@ -2545,11 +2545,11 @@ echo "${ECHO_T}no" >&6 *) echo "$as_me:$LINENO: result: $withval" >&5 echo "${ECHO_T}$withval" >&6 Modified: head/www/crawl/files/patch-dns.c ============================================================================== --- head/www/crawl/files/patch-dns.c Mon Dec 25 08:52:24 2017 (r457210) +++ head/www/crawl/files/patch-dns.c Mon Dec 25 09:00:39 2017 (r457211) @@ -1,6 +1,6 @@ ---- dns.c.orig Sun May 18 10:21:33 2003 -+++ dns.c Mon May 30 16:20:14 2005 -@@ -562,8 +562,13 @@ +--- dns.c.orig 2003-05-18 01:21:33 UTC ++++ dns.c +@@ -562,8 +562,13 @@ dns_resolve(char *ip, struct addrinfo ** if (res != 0) { fprintf(stderr, "%s: getaddrinfo(%s): %s\n", __func__, ip, gai_strerror(res)); Modified: head/www/crawl/pkg-descr ============================================================================== --- head/www/crawl/pkg-descr Mon Dec 25 08:52:24 2017 (r457210) +++ head/www/crawl/pkg-descr Mon Dec 25 09:00:39 2017 (r457211) @@ -17,4 +17,4 @@ Some of the main features: - Very small and efficient code - Supports robots.txt -WWW: http://www.monkey.org/~provos/crawl/ +WWW: https://www.monkey.org/~provos/crawl/