From owner-svn-ports-all@FreeBSD.ORG Mon Feb 17 13:11:26 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5A9C8A55; Mon, 17 Feb 2014 13:11:26 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 45F7D1FAE; Mon, 17 Feb 2014 13:11:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1HDBQAT054263; Mon, 17 Feb 2014 13:11:26 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1HDBQNW054262; Mon, 17 Feb 2014 13:11:26 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201402171311.s1HDBQNW054262@svn.freebsd.org> From: Baptiste Daroussin Date: Mon, 17 Feb 2014 13:11:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r344733 - head/dns/totd 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.17 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, 17 Feb 2014 13:11:26 -0000 Author: bapt Date: Mon Feb 17 13:11:25 2014 New Revision: 344733 URL: http://svnweb.freebsd.org/changeset/ports/344733 QAT: https://qat.redports.org/buildarchive/r344733/ Log: Support stage Support packaging as a user Avoid useless patching to define the compiler Modified: head/dns/totd/Makefile Modified: head/dns/totd/Makefile ============================================================================== --- head/dns/totd/Makefile Mon Feb 17 13:05:39 2014 (r344732) +++ head/dns/totd/Makefile Mon Feb 17 13:11:25 2014 (r344733) @@ -10,20 +10,23 @@ MASTER_SITES= ftp://ftp.pasta.cs.uit.no/ MAINTAINER= ed@FreeBSD.org COMMENT= DNS proxy that supports IPv6 <==> IPv4 record translation +USES= desthack uidfix + USE_RC_SUBR= totd GNU_CONFIGURE= yes -MAN8= totd.8 -PLIST_FILES= etc/totd.conf.sample sbin/totd +PLIST_FILES= etc/totd.conf.sample sbin/totd \ + man/man8/totd.8.gz EXTRA_PATCHES= ${FILESDIR}/extra-patch-ne_mesg.c \ ${FILESDIR}/extra-patch-tcp_response.c -NO_STAGE= yes +MAKE_ARGS= CC="${CC}" + post-patch: - @${REINPLACE_CMD} -e '/^CC/d' ${WRKSRC}/${MAKEFILE}.in + ${REINPLACE_CMD} -e 's/-o bin -g bin//g; s/-o root -g wheel//g' ${WRKSRC}/Makefile.in post-install: - ${INSTALL_DATA} ${FILESDIR}/totd.conf.sample ${PREFIX}/etc + ${INSTALL_DATA} ${FILESDIR}/totd.conf.sample ${STAGEDIR}${PREFIX}/etc .include