From owner-svn-ports-head@FreeBSD.ORG Tue Mar 12 17:18:44 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id EA87A24A; Tue, 12 Mar 2013 17:18:44 +0000 (UTC) (envelope-from sunpoet@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 D7C5E1FA; Tue, 12 Mar 2013 17:18:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2CHIiUo061518; Tue, 12 Mar 2013 17:18:44 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2CHIigo061517; Tue, 12 Mar 2013 17:18:44 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201303121718.r2CHIigo061517@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 12 Mar 2013 17:18:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r313988 - head/multimedia/libquvi 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: Tue, 12 Mar 2013 17:18:45 -0000 Author: sunpoet Date: Tue Mar 12 17:18:44 2013 New Revision: 313988 URL: http://svnweb.freebsd.org/changeset/ports/313988 Log: - Pet portlint: remove ABI version number from LIB_DEPENDS - Convert to new options framework - Use USES macro - Bump PORTREVISION for dependency change - Cleanup Makefile header Modified: head/multimedia/libquvi/Makefile (contents, props changed) Modified: head/multimedia/libquvi/Makefile ============================================================================== --- head/multimedia/libquvi/Makefile Tue Mar 12 17:16:37 2013 (r313987) +++ head/multimedia/libquvi/Makefile Tue Mar 12 17:18:44 2013 (r313988) @@ -1,12 +1,9 @@ -# New ports collection makefile for: libquvi -# Date created: 2011-10-06 -# Whom: Sunpoet Po-Chuan Hsieh -# +# Created by: Sunpoet Po-Chuan Hsieh # $FreeBSD$ -# PORTNAME= libquvi PORTVERSION= 0.4.1 +PORTREVISION= 1 CATEGORIES= multimedia devel MASTER_SITES= SF/quvi/${PORTVERSION:R}/${PORTNAME}/ \ GOOGLE_CODE @@ -15,23 +12,27 @@ MAINTAINER= sunpoet@FreeBSD.org COMMENT= Cross-platform library for parsing flash media stream URLs BUILD_DEPENDS= libquvi-scripts>=0.4.0:${PORTSDIR}/multimedia/libquvi-scripts -LIB_DEPENDS= curl.6:${PORTSDIR}/ftp/curl +LIB_DEPENDS= curl:${PORTSDIR}/ftp/curl RUN_DEPENDS= libquvi-scripts>=0.4.0:${PORTSDIR}/multimedia/libquvi-scripts +OPTIONS_DEFINE= DOCS + CPPFLAGS+= -I${LOCALBASE}/include GNU_CONFIGURE= yes -USE_GNOME= gnomehack pkgconfig USE_ICONV= yes USE_LDCONFIG= yes USE_LUA= yes USE_XZ= yes +USES= pathfix MAN3= libquvi.3 PROJECTHOST= quvi +.include + post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR}/ cd ${WRKSRC}/doc/nd/ && ${COPYTREE_SHARE} . ${DOCSDIR}/ .endif