From owner-svn-ports-all@FreeBSD.ORG Tue Jun 10 22:12:47 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 832B9D0F; Tue, 10 Jun 2014 22:12:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 5644E28EC; Tue, 10 Jun 2014 22:12:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5AMClSx052422; Tue, 10 Jun 2014 22:12:47 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5AMCkd3052419; Tue, 10 Jun 2014 22:12:46 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201406102212.s5AMCkd3052419@svn.freebsd.org> From: Dmitry Marakasov Date: Tue, 10 Jun 2014 22:12:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r357395 - in head/net/GeoIP: . 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.18 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: Tue, 10 Jun 2014 22:12:47 -0000 Author: amdmi3 Date: Tue Jun 10 22:12:46 2014 New Revision: 357395 URL: http://svnweb.freebsd.org/changeset/ports/357395 QAT: https://qat.redports.org/buildarchive/r357395/ Log: - Swith to USES=libtool - Fix install as non-root - Whitespace fix Approved by: portmgr blanket Added: head/net/GeoIP/files/patch-man__Makefile.in (contents, props changed) Modified: head/net/GeoIP/Makefile Modified: head/net/GeoIP/Makefile ============================================================================== --- head/net/GeoIP/Makefile Tue Jun 10 22:09:53 2014 (r357394) +++ head/net/GeoIP/Makefile Tue Jun 10 22:12:46 2014 (r357395) @@ -3,7 +3,7 @@ PORTNAME= GeoIP PORTVERSION= 1.4.8 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= net geography MASTER_SITES= http://geolite.maxmind.com/download/geoip/api/c/ @@ -11,9 +11,10 @@ MAINTAINER= dhn@FreeBSD.org COMMENT= Find the country that any IP address or hostname originates from CONFIGURE_ARGS= CC="${CC}" PATH="${PATH}" \ - CFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib" + CFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib" -USE_AUTOTOOLS= libtool +GNU_CONFIGURE= yes +USES= libtool:oldver USE_LDCONFIG= yes SUB_FILES= geoipupdate.sh Added: head/net/GeoIP/files/patch-man__Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/GeoIP/files/patch-man__Makefile.in Tue Jun 10 22:12:46 2014 (r357395) @@ -0,0 +1,14 @@ +--- man/Makefile.in.orig 2014-06-05 17:06:15.791427000 +0400 ++++ man/Makefile.in 2014-06-05 17:09:15.000000000 +0400 +@@ -446,9 +446,11 @@ + geoiplookup6.1: geoiplookup6.1.in + + install-data-hook: ++ chmod u+w $(DESTDIR)$(mandir)/man1/*.1 + cat geoipupdate.1 | sed s,DATADIR,$(pkgdatadir), | sed s,CONF_DIR,$(sysconfdir), > $(DESTDIR)$(UPDATE_MAN) + cat geoiplookup.1 | sed s,DATADIR,$(pkgdatadir), > $(DESTDIR)$(LOOKUP_MAN) + cat geoiplookup6.1 | sed s,DATADIR,$(pkgdatadir), > $(DESTDIR)$(LOOKUP6_MAN) ++ chmod u-w $(DESTDIR)$(mandir)/man1/*.1 + + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded.