From owner-svn-ports-head@FreeBSD.ORG Mon Jan 27 11:59:41 2014 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 20BB8246; Mon, 27 Jan 2014 11:59:41 +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 0BFE310CB; Mon, 27 Jan 2014 11:59:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0RBxeFt082094; Mon, 27 Jan 2014 11:59:40 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0RBxeEA082093; Mon, 27 Jan 2014 11:59:40 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401271159.s0RBxeEA082093@svn.freebsd.org> From: Baptiste Daroussin Date: Mon, 27 Jan 2014 11:59:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341383 - head/devel/atlas 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.17 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: Mon, 27 Jan 2014 11:59:41 -0000 Author: bapt Date: Mon Jan 27 11:59:40 2014 New Revision: 341383 URL: http://svnweb.freebsd.org/changeset/ports/341383 QAT: https://qat.redports.org/buildarchive/r341383/ Log: Support stage Add doc option Simplify the ports to let the ustream build process install the docs, stage will take care of only packaging what we want. add GNU_CONFIGURE to properly let the configure process happen with the ports framework variables set Modified: head/devel/atlas/Makefile Modified: head/devel/atlas/Makefile ============================================================================== --- head/devel/atlas/Makefile Mon Jan 27 11:54:47 2014 (r341382) +++ head/devel/atlas/Makefile Mon Jan 27 11:59:40 2014 (r341383) @@ -9,23 +9,15 @@ MASTER_SITES= SF/worldforge/OldFiles DISTNAME= ${PORTNAME}-C++-${PORTVERSION} MAINTAINER= oliver@FreeBSD.org -COMMENT= A C++ reference implementation of the Atlas protocol +COMMENT= C++ reference implementation of the Atlas protocol +OPTIONS_DEFINE= DOCS + +GNU_CONFIGURE= yes +USES= pathfix USE_AUTOTOOLS= libtool USE_LDCONFIG= YES USE_BZIP2= YES -USES= pathfix - -NO_STAGE= yes -post-patch: - @${REINPLACE_CMD} -e 's| install-docDATA | |g' ${WRKSRC}/Makefile.in - -post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} -.for docfile in README COPYING AUTHORS THANKS NEWS ChangeLog TODO HACKING ROADMAP - @${INSTALL_DATA} ${WRKSRC}/${docfile} ${DOCSDIR} -.endfor -.endif +MAKE_ARGS= docdir=${DOCSDIR} .include