From owner-svn-ports-head@FreeBSD.ORG Fri Nov 29 19:56:52 2013 Return-Path: Delivered-To: svn-ports-head@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 2F13A874; Fri, 29 Nov 2013 19:56:52 +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 106E91C63; Fri, 29 Nov 2013 19:56:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rATJupjf086319; Fri, 29 Nov 2013 19:56:51 GMT (envelope-from dinoex@svn.freebsd.org) Received: (from dinoex@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rATJup6S086316; Fri, 29 Nov 2013 19:56:51 GMT (envelope-from dinoex@svn.freebsd.org) Message-Id: <201311291956.rATJup6S086316@svn.freebsd.org> From: Dirk Meyer Date: Fri, 29 Nov 2013 19:56:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r335217 - in head: mail/rbl-milter multimedia/xanim security/tinc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Nov 2013 19:56:52 -0000 Author: dinoex Date: Fri Nov 29 19:56:51 2013 New Revision: 335217 URL: http://svnweb.freebsd.org/changeset/ports/335217 Log: - use STAGEDIR Modified: head/mail/rbl-milter/Makefile head/multimedia/xanim/Makefile head/security/tinc/Makefile Modified: head/mail/rbl-milter/Makefile ============================================================================== --- head/mail/rbl-milter/Makefile Fri Nov 29 19:55:29 2013 (r335216) +++ head/mail/rbl-milter/Makefile Fri Nov 29 19:56:51 2013 (r335217) @@ -10,8 +10,6 @@ MASTER_SITES= http://opensource.confusti MAINTAINER= dinoex@FreeBSD.org COMMENT= A milter that adds mail header warnings on mail from open-relays -NO_STAGE= yes - USE_RC_SUBR= rblmilter GNU_CONFIGURE= yes USE_GMAKE= yes @@ -22,13 +20,9 @@ PLIST_FILES= sbin/rbl-milter .if defined(NO_WERROR) pre-configure: - @${CP} ${WRKSRC}/configure ${WRKSRC}/configure.sed - @${SED} 's!-Werror!!' ${WRKSRC}/configure.sed >${WRKSRC}/configure + ${REINPLACE_CMD} -e 's!-Werror!!' ${WRKSRC}/configure .endif -post-install: - @${CAT} ${PKGMESSAGE} - .include .include "${PORTSDIR}/mail/sendmail/bsd.milter.mk" Modified: head/multimedia/xanim/Makefile ============================================================================== --- head/multimedia/xanim/Makefile Fri Nov 29 19:55:29 2013 (r335216) +++ head/multimedia/xanim/Makefile Fri Nov 29 19:56:51 2013 (r335217) @@ -16,18 +16,16 @@ MAINTAINER= dinoex@FreeBSD.org COMMENT= Play most popular animation formats and show pictures NO_CDROM= redistributed without fee -NO_STAGE= yes +#NO_STAGE= yes # clang's cpp destroys whitespace, particularly hard tabs in makefiles, # which is fatal for imake. USES= imake USE_GCC= any USE_XORG= xext xt sm ice xext x11 -MAN1= xanim.1 MAKE_ARGS+= -j 2 # safe and helps even the single-CPU machines DLLDIR= ${PREFIX}/lib/X11/xanim -PLIST_FILES+= bin/xanim -NO_CDROM= without fee +PLIST_FILES+= bin/xanim man/man1/xanim.1.gz post-extract: ${CP} ${WRKSRC}/docs/xanim.man ${WRKSRC} @@ -56,9 +54,9 @@ PLIST_FILES+= lib/X11/xanim/cvid.readme PLIST_DIRS+= lib/X11/xanim post-install: - @${MKDIR} ${DLLDIR} - ${INSTALL_DATA} ${WRKDIR}/*.readme ${DLLDIR} - ${INSTALL_DATA} ${WRKDIR}/*.xa ${DLLDIR} + ${MKDIR} ${STAGEDIR}${DLLDIR} + ${INSTALL_DATA} ${WRKDIR}/*.readme ${STAGEDIR}${DLLDIR}/ + ${INSTALL_DATA} ${WRKDIR}/*.xa ${STAGEDIR}${DLLDIR}/ .endif .include Modified: head/security/tinc/Makefile ============================================================================== --- head/security/tinc/Makefile Fri Nov 29 19:55:29 2013 (r335216) +++ head/security/tinc/Makefile Fri Nov 29 19:56:51 2013 (r335217) @@ -15,8 +15,6 @@ LIB_DEPENDS= lzo2:${PORTSDIR}/archivers/ LICENSE= GPLv3 -NO_STAGE= yes - USE_OPENSSL= yes GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include @@ -24,9 +22,9 @@ LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ARGS= --localstatedir=/var USE_RC_SUBR= tincd -PLIST_FILES= sbin/tincd -MAN5= tinc.conf.5 -MAN8= tincd.8 +PLIST_FILES= sbin/tincd \ + man/man5/tinc.conf.5.gz man/man8/tincd.8.gz + INFO= tinc .include