From owner-svn-ports-all@FreeBSD.ORG Thu Oct 17 03:31:57 2013 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 ESMTP id 588A4168; Thu, 17 Oct 2013 03:31:57 +0000 (UTC) (envelope-from hrs@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 35FCB2DE2; Thu, 17 Oct 2013 03:31:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9H3Vv9O084174; Thu, 17 Oct 2013 03:31:57 GMT (envelope-from hrs@svn.freebsd.org) Received: (from hrs@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9H3VunK084168; Thu, 17 Oct 2013 03:31:56 GMT (envelope-from hrs@svn.freebsd.org) Message-Id: <201310170331.r9H3VunK084168@svn.freebsd.org> From: Hiroki Sato Date: Thu, 17 Oct 2013 03:31:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r330598 - in head/net/dhcp6: . 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.14 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: Thu, 17 Oct 2013 03:31:57 -0000 Author: hrs Date: Thu Oct 17 03:31:56 2013 New Revision: 330598 URL: http://svnweb.freebsd.org/changeset/ports/330598 Log: Fix Makefile to get the manual pages compressed. Modified: head/net/dhcp6/Makefile head/net/dhcp6/files/patch-Makefile.in head/net/dhcp6/pkg-plist Modified: head/net/dhcp6/Makefile ============================================================================== --- head/net/dhcp6/Makefile Thu Oct 17 02:31:03 2013 (r330597) +++ head/net/dhcp6/Makefile Thu Oct 17 03:31:56 2013 (r330598) @@ -15,8 +15,6 @@ LICENSE= BSD LICENSE_FILE= ${WRKSRC}/COPYRIGHT GNU_CONFIGURE= yes -GNU_CONFIGURE_PREFIX= ${STAGEDIR}${PREFIX} -MANPREFIX= ${STAGEDIR}${PREFIX} CONFIGURE_ARGS= --sysconfdir=${LOCALBASE}/etc \ --with-localdbdir=/var/db USE_RC_SUBR= dhcp6c dhcp6relay dhcp6s Modified: head/net/dhcp6/files/patch-Makefile.in ============================================================================== --- head/net/dhcp6/files/patch-Makefile.in Thu Oct 17 02:31:03 2013 (r330597) +++ head/net/dhcp6/files/patch-Makefile.in Thu Oct 17 03:31:56 2013 (r330598) @@ -1,9 +1,10 @@ ---- Makefile.in.orig 2013-10-17 05:40:19.000000000 +0900 -+++ Makefile.in 2013-10-17 05:40:57.000000000 +0900 -@@ -103,13 +103,13 @@ +--- Makefile.in.orig 2007-03-21 18:52:58.000000000 +0900 ++++ Makefile.in 2013-10-17 12:26:22.000000000 +0900 +@@ -102,14 +102,14 @@ + expand bootp-dhcp-parameters | perl gentab.pl > ianaopts.h install:: - -mkdir -p $(sbindir) $(mandir)/man5 $(mandir)/man8 +- -mkdir -p $(sbindir) $(mandir)/man5 $(mandir)/man8 - $(INSTALL_PROGRAM) -s -o $(user) -g $(group) $(TARGET) $(sbindir) - $(INSTALL_DATA) -o $(user) -g $(group) dhcp6c.8 $(mandir)/man8 - $(INSTALL_DATA) -o $(user) -g $(group) dhcp6s.8 $(mandir)/man8 @@ -11,13 +12,14 @@ - $(INSTALL_DATA) -o $(user) -g $(group) dhcp6ctl.8 $(mandir)/man8 - $(INSTALL_DATA) -o $(user) -g $(group) dhcp6c.conf.5 $(mandir)/man5 - $(INSTALL_DATA) -o $(user) -g $(group) dhcp6s.conf.5 $(mandir)/man5 -+ $(INSTALL_PROGRAM) $(TARGET) $(sbindir) -+ $(INSTALL_DATA) dhcp6c.8 $(mandir)/man8 -+ $(INSTALL_DATA) dhcp6s.8 $(mandir)/man8 -+ $(INSTALL_DATA) dhcp6relay.8 $(mandir)/man8 -+ $(INSTALL_DATA) dhcp6ctl.8 $(mandir)/man8 -+ $(INSTALL_DATA) dhcp6c.conf.5 $(mandir)/man5 -+ $(INSTALL_DATA) dhcp6s.conf.5 $(mandir)/man5 ++ -mkdir -p $(DESTDIR)$(sbindir) $(DESTDIR)$(mandir)/man5 $(DESTDIR)$(mandir)/man8 ++ $(INSTALL_PROGRAM) $(TARGET) $(DESTDIR)$(sbindir) ++ $(INSTALL_DATA) dhcp6c.8 $(DESTDIR)$(mandir)/man8 ++ $(INSTALL_DATA) dhcp6s.8 $(DESTDIR)$(mandir)/man8 ++ $(INSTALL_DATA) dhcp6relay.8 $(DESTDIR)$(mandir)/man8 ++ $(INSTALL_DATA) dhcp6ctl.8 $(DESTDIR)$(mandir)/man8 ++ $(INSTALL_DATA) dhcp6c.conf.5 $(DESTDIR)$(mandir)/man5 ++ $(INSTALL_DATA) dhcp6s.conf.5 $(DESTDIR)$(mandir)/man5 includes:: Modified: head/net/dhcp6/pkg-plist ============================================================================== --- head/net/dhcp6/pkg-plist Thu Oct 17 02:31:03 2013 (r330597) +++ head/net/dhcp6/pkg-plist Thu Oct 17 03:31:56 2013 (r330598) @@ -11,9 +11,9 @@ sbin/dhcp6c sbin/dhcp6relay sbin/dhcp6s sbin/dhcp6ctl -man/man5/dhcp6c.conf.5 -man/man5/dhcp6s.conf.5 -man/man8/dhcp6c.8 -man/man8/dhcp6ctl.8 -man/man8/dhcp6relay.8 -man/man8/dhcp6s.8 +man/man5/dhcp6c.conf.5.gz +man/man5/dhcp6s.conf.5.gz +man/man8/dhcp6c.8.gz +man/man8/dhcp6ctl.8.gz +man/man8/dhcp6relay.8.gz +man/man8/dhcp6s.8.gz