From owner-svn-ports-head@FreeBSD.ORG Mon Dec 31 12:52:05 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 E93A8494; Mon, 31 Dec 2012 12:52:05 +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 B3D218FC13; Mon, 31 Dec 2012 12:52:05 +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 qBVCq5Dc034331; Mon, 31 Dec 2012 12:52:05 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBVCq5wc034330; Mon, 31 Dec 2012 12:52:05 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201212311252.qBVCq5wc034330@svn.freebsd.org> From: Baptiste Daroussin Date: Mon, 31 Dec 2012 12:52:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r309736 - head/www/cplanet 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 12:52:06 -0000 Author: bapt Date: Mon Dec 31 12:52:05 2012 New Revision: 309736 URL: http://svnweb.freebsd.org/changeset/ports/309736 Log: Trim headers Convert to new options framework remove shlib numbers Modified: head/www/cplanet/Makefile Modified: head/www/cplanet/Makefile ============================================================================== --- head/www/cplanet/Makefile Mon Dec 31 12:50:47 2012 (r309735) +++ head/www/cplanet/Makefile Mon Dec 31 12:52:05 2012 (r309736) @@ -1,9 +1,4 @@ -# New ports collection makefile for: cplanet -# Date created: 2010-02-22 -# Whom: Bapt -# # $FreeBSD$ -# PORTNAME= cplanet PORTVERSION= 0.9 @@ -14,16 +9,18 @@ MAINTAINER= bapt@FreeBSD.org COMMENT= RSS Feed Aggregator that generate static html BUILD_DEPENDS= ${LOCALBASE}/lib/libneo_cs.a:${PORTSDIR}/www/clearsilver -LIB_DEPENDS= expat.6:${PORTSDIR}/textproc/expat2 \ - curl.6:${PORTSDIR}/ftp/curl +LIB_DEPENDS= expat:${PORTSDIR}/textproc/expat2 \ + curl:${PORTSDIR}/ftp/curl LICENSE= BSD MAN1= cplanet.1 -.include +OPTIONS_DEFINE= EXAMPLES + +.include post-install: -.if !defined(NOPORTEXAMPLES) +.if ${PORT_OPTIONS:MEXAMPLES} ${MKDIR} ${EXAMPLESDIR} ${INSTALL} -o root -g wheel -m 644 ${WRKSRC}/samples/cplanet-atom.cs ${EXAMPLESDIR} ${INSTALL} -o root -g wheel -m 644 ${WRKSRC}/samples/cplanet-opml.cs ${EXAMPLESDIR} @@ -32,4 +29,4 @@ post-install: ${INSTALL} -o root -g wheel -m 644 ${WRKSRC}/samples/cplanet.hdf ${EXAMPLESDIR} .endif -.include +.include