From owner-svn-ports-head@FreeBSD.ORG Mon Dec 31 14:23:47 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7287C2BE; Mon, 31 Dec 2012 14:23:47 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 5660E8FC0A; Mon, 31 Dec 2012 14:23:47 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBVENlNe049532; Mon, 31 Dec 2012 14:23:47 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBVENlR4049531; Mon, 31 Dec 2012 14:23:47 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201212311423.qBVENlR4049531@svn.freebsd.org> From: Baptiste Daroussin Date: Mon, 31 Dec 2012 14:23:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r309753 - head/audio/btc 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.14 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, 31 Dec 2012 14:23:47 -0000 Author: bapt Date: Mon Dec 31 14:23:46 2012 New Revision: 309753 URL: http://svnweb.freebsd.org/changeset/ports/309753 Log: Use PORT_OPTIONS:MDOCS instead of NOPORTDOCS Trim headers Modified: head/audio/btc/Makefile Modified: head/audio/btc/Makefile ============================================================================== --- head/audio/btc/Makefile Mon Dec 31 14:22:14 2012 (r309752) +++ head/audio/btc/Makefile Mon Dec 31 14:23:46 2012 (r309753) @@ -1,9 +1,5 @@ -# New ports collection makefile for: btc -# Date created: 1 August 2000 -# Whom: Bill Fumerola -# +# Created by: Bill Fumerola # $FreeBSD$ -# PORTNAME= btc PORTVERSION= 258 @@ -19,12 +15,14 @@ WRKSRC= ${WRKDIR} PLIST_FILES= bin/btc PORTDOCS= btc.doc +.include + do-build: ${CC} ${CFLAGS} -o ${WRKSRC}/${PORTNAME} ${WRKSRC}/${PORTNAME}.c do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.doc ${DOCSDIR} .endif