From owner-svn-ports-head@FreeBSD.ORG Thu Nov 7 15:29:23 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 7C6EF66C; Thu, 7 Nov 2013 15:29:23 +0000 (UTC) (envelope-from dbn@FreeBSD.org) 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 69E7E27DE; Thu, 7 Nov 2013 15:29:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rA7FTNip035748; Thu, 7 Nov 2013 15:29:23 GMT (envelope-from dbn@svn.freebsd.org) Received: (from dbn@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rA7FTNH0035747; Thu, 7 Nov 2013 15:29:23 GMT (envelope-from dbn@svn.freebsd.org) Message-Id: <201311071529.rA7FTNH0035747@svn.freebsd.org> From: David Naylor Date: Thu, 7 Nov 2013 15:29:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r333118 - head/audio/kaudiocreator 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: Thu, 07 Nov 2013 15:29:23 -0000 Author: dbn Date: Thu Nov 7 15:29:22 2013 New Revision: 333118 URL: http://svnweb.freebsd.org/changeset/ports/333118 Log: Add stage support to audio/kaudiocreator. - Convert LIB_DEPENDS to new format. Modified: head/audio/kaudiocreator/Makefile Modified: head/audio/kaudiocreator/Makefile ============================================================================== --- head/audio/kaudiocreator/Makefile Thu Nov 7 15:22:45 2013 (r333117) +++ head/audio/kaudiocreator/Makefile Thu Nov 7 15:29:22 2013 (r333118) @@ -13,8 +13,8 @@ COMMENT= Audio-cd ripper and encoder for LICENSE= GPLv2 -LIB_DEPENDS= discid:${PORTSDIR}/audio/libdiscid \ - tag:${PORTSDIR}/audio/taglib +LIB_DEPENDS= libdiscid.so:${PORTSDIR}/audio/libdiscid \ + libtag.so:${PORTSDIR}/audio/taglib RUN_DEPENDS= flac:${PORTSDIR}/audio/flac \ oggenc:${PORTSDIR}/audio/vorbis-tools .if !defined(PACKAGE_BUILDING) @@ -22,7 +22,6 @@ RUN_DEPENDS+= lame:${PORTSDIR}/audio/lam .endif USE_BZIP2= yes -NO_STAGE= yes USES= cmake USE_QT4= moc_build qmake_build rcc_build uic_build USE_KDE4= automoc4 kdehier kdeprefix libkcddb libkcompactdisc @@ -30,18 +29,14 @@ USE_KDE4= automoc4 kdehier kdeprefix lib WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} OPTIONS_DEFINE= NLS +OPTIONS_SUB= yes +NLS_USES= gettext .include -.if ${PORT_OPTIONS:MNLS} -USES+= gettext -PLIST_SUB+= NLS="" -.else -PLIST_SUB+= NLS="@comment " - +.if empty(PORT_OPTIONS:MNLS) post-patch: ${REINPLACE_CMD} 's,add_subdirectory(po),,' ${WRKSRC}/CMakeLists.txt - .endif .include