From owner-svn-ports-all@freebsd.org Mon May 16 00:29:37 2016 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 CE347B3342B; Mon, 16 May 2016 00:29:37 +0000 (UTC) (envelope-from allanjude@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 AA1821866; Mon, 16 May 2016 00:29:37 +0000 (UTC) (envelope-from allanjude@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4G0Taa6048551; Mon, 16 May 2016 00:29:36 GMT (envelope-from allanjude@FreeBSD.org) Received: (from allanjude@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4G0Tahw048545; Mon, 16 May 2016 00:29:36 GMT (envelope-from allanjude@FreeBSD.org) Message-Id: <201605160029.u4G0Tahw048545@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: allanjude set sender to allanjude@FreeBSD.org using -f From: Allan Jude Date: Mon, 16 May 2016 00:29:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415292 - in head/www: . varnish-libvmod-maxminddb varnish-libvmod-maxminddb/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-all@freebsd.org X-Mailman-Version: 2.1.22 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, 16 May 2016 00:29:37 -0000 Author: allanjude (src,doc committer) Date: Mon May 16 00:29:36 2016 New Revision: 415292 URL: https://svnweb.freebsd.org/changeset/ports/415292 Log: add www/varnish-libvmod-maxminddb Varnish Module (vmod) for accessing maxminddb geoip data Approved by: feld Sponsored by: ScaleEngine Inc. Differential Revision: https://reviews.freebsd.org/D6380 Added: head/www/varnish-libvmod-maxminddb/ head/www/varnish-libvmod-maxminddb/Makefile (contents, props changed) head/www/varnish-libvmod-maxminddb/distinfo (contents, props changed) head/www/varnish-libvmod-maxminddb/files/ head/www/varnish-libvmod-maxminddb/files/patch-Makefile.am (contents, props changed) head/www/varnish-libvmod-maxminddb/pkg-descr (contents, props changed) head/www/varnish-libvmod-maxminddb/pkg-plist (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Mon May 16 00:29:25 2016 (r415291) +++ head/www/Makefile Mon May 16 00:29:36 2016 (r415292) @@ -2254,6 +2254,7 @@ SUBDIR += uzbl SUBDIR += validator SUBDIR += varnish-libvmod-header + SUBDIR += varnish-libvmod-maxminddb SUBDIR += varnish-libvmod-saintmode SUBDIR += varnish-nagios SUBDIR += varnish4 Added: head/www/varnish-libvmod-maxminddb/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/varnish-libvmod-maxminddb/Makefile Mon May 16 00:29:36 2016 (r415292) @@ -0,0 +1,33 @@ +# $FreeBSD$ + +PORTNAME= libvmod-maxminddb +DISTVERSION= 1.0.0 +CATEGORIES= www +PKGNAMEPREFIX= varnish- + +MAINTAINER= ports@FreeBSD.org +COMMENT= Varnish Module (vmod) for accessing maxminddb geoip data + +LICENSE= BSD2CLAUSE + +BUILD_DEPENDS= varnish4>=4.1.0:www/varnish4 \ + rst2man:textproc/py-docutils + +LIB_DEPENDS= libmaxminddb.so:net/libmaxminddb + +RUN_DEPENDS= varnish4>=4.1.0:www/varnish4 + +USES= autoreconf gmake libtool pkgconfig python:2,build +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --disable-static +CFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/varnish +CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/varnish +LDFLAGS+= -L${LOCALBASE}/lib +INSTALL_TARGET= install-strip + +USE_GITHUB= yes +GH_ACCOUNT= simonvik +GH_PROJECT= libvmod_maxminddb +GH_TAGNAME= 4ae6a7f + +.include Added: head/www/varnish-libvmod-maxminddb/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/varnish-libvmod-maxminddb/distinfo Mon May 16 00:29:36 2016 (r415292) @@ -0,0 +1,3 @@ +TIMESTAMP = 1463350841 +SHA256 (simonvik-libvmod_maxminddb-1.0.0-4ae6a7f_GH0.tar.gz) = d6aab1a15ebcc6136a975250d223223413603b53dbf1c02652dfa5edd83f3d8a +SIZE (simonvik-libvmod_maxminddb-1.0.0-4ae6a7f_GH0.tar.gz) = 3927 Added: head/www/varnish-libvmod-maxminddb/files/patch-Makefile.am ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/varnish-libvmod-maxminddb/files/patch-Makefile.am Mon May 16 00:29:36 2016 (r415292) @@ -0,0 +1,16 @@ +--- Makefile.am.orig 2016-05-15 22:29:56 UTC ++++ Makefile.am +@@ -2,11 +2,11 @@ ACLOCAL_AMFLAGS = -I m4 + + SUBDIRS = src + +-dist_man_MANS = vmod_geoip.3 ++dist_man_MANS = vmod_maxminddb.3 + MAINTAINERCLEANFILES = $(dist_man_MANS) + doc_DATA = README.rst LICENSE + +-vmod_geoip.3: README.rst ++vmod_maxminddb.3: README.rst + if HAVE_RST2MAN + ${RST2MAN} README.rst $@ + else Added: head/www/varnish-libvmod-maxminddb/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/varnish-libvmod-maxminddb/pkg-descr Mon May 16 00:29:36 2016 (r415292) @@ -0,0 +1,3 @@ +Varnish Module (vmod) for accessing maxminddb geoip data + +WWW: https://github.com/simonvik/libvmod_maxminddb Added: head/www/varnish-libvmod-maxminddb/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/varnish-libvmod-maxminddb/pkg-plist Mon May 16 00:29:36 2016 (r415292) @@ -0,0 +1,4 @@ +lib/varnish/vmods/libvmod_maxminddb.so +man/man3/vmod_maxminddb.3.gz +%%PORTDOCS%%%%DOCSDIR%%/LICENSE +%%PORTDOCS%%%%DOCSDIR%%/README.rst