From owner-svn-ports-all@FreeBSD.ORG Mon Jun 30 14:31:34 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 A6448586; Mon, 30 Jun 2014 14:31:34 +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 93D242DED; Mon, 30 Jun 2014 14:31:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5UEVYHZ026716; Mon, 30 Jun 2014 14:31:34 GMT (envelope-from dryice@svn.freebsd.org) Received: (from dryice@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5UEVYWt026715; Mon, 30 Jun 2014 14:31:34 GMT (envelope-from dryice@svn.freebsd.org) Message-Id: <201406301431.s5UEVYWt026715@svn.freebsd.org> From: Dryice Dong Liu Date: Mon, 30 Jun 2014 14:31:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r359851 - head/databases/bbdb 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: Mon, 30 Jun 2014 14:31:34 -0000 Author: dryice Date: Mon Jun 30 14:31:34 2014 New Revision: 359851 URL: http://svnweb.freebsd.org/changeset/ports/359851 QAT: https://qat.redports.org/buildarchive/r359851/ Log: - support stage - support options Modified: head/databases/bbdb/Makefile Modified: head/databases/bbdb/Makefile ============================================================================== --- head/databases/bbdb/Makefile Mon Jun 30 14:24:44 2014 (r359850) +++ head/databases/bbdb/Makefile Mon Jun 30 14:31:34 2014 (r359851) @@ -26,13 +26,14 @@ MAKE_JOBS_UNSAFE= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-emacs=${EMACS_CMD} -NO_STAGE= yes +.include + do-install: - ${MKDIR} ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME} - ${INSTALL_DATA} ${WRKSRC}/lisp/*.el ${WRKSRC}/lisp/*.elc ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME} -.if !defined(NOPORTDOCS) - ${INSTALL_DATA} ${WRKSRC}/texinfo/bbdb.info ${PREFIX}/info - install-info --section=${DIRSECTION} --entry=${INFOENTRY} ${PREFIX}/info/bbdb.info ${PREFIX}/info/dir + ${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME} + ${INSTALL_DATA} ${WRKSRC}/lisp/*.el ${WRKSRC}/lisp/*.elc ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME} +.if ${PORT_OPTIONS:MDOCS} + ${INSTALL_DATA} ${WRKSRC}/texinfo/bbdb.info ${STAGEDIR}${PREFIX}/info + install-info --section=${DIRSECTION} --entry=${INFOENTRY} ${STAGEDIR}${PREFIX}/info/bbdb.info ${STAGEDIR}${PREFIX}/info/dir .endif .include