From owner-svn-ports-head@FreeBSD.ORG Wed Oct 9 06:56:00 2013 Return-Path: Delivered-To: svn-ports-head@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 ESMTP id 3F40C653; Wed, 9 Oct 2013 06:56:00 +0000 (UTC) (envelope-from jhale@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 0F4A02F3B; Wed, 9 Oct 2013 06:56:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r996txp5079532; Wed, 9 Oct 2013 06:55:59 GMT (envelope-from jhale@svn.freebsd.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r996txdP079531; Wed, 9 Oct 2013 06:55:59 GMT (envelope-from jhale@svn.freebsd.org) Message-Id: <201310090655.r996txdP079531@svn.freebsd.org> From: "Jason E. Hale" Date: Wed, 9 Oct 2013 06:55:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r329869 - head/audio/audex 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: Wed, 09 Oct 2013 06:56:00 -0000 Author: jhale Date: Wed Oct 9 06:55:59 2013 New Revision: 329869 URL: http://svnweb.freebsd.org/changeset/ports/329869 Log: - Support staging - Convert LIB_DEPENDS to new syntax - Use options helpers Modified: head/audio/audex/Makefile Modified: head/audio/audex/Makefile ============================================================================== --- head/audio/audex/Makefile Wed Oct 9 06:54:26 2013 (r329868) +++ head/audio/audex/Makefile Wed Oct 9 06:55:59 2013 (r329869) @@ -10,10 +10,9 @@ COMMENT= KDE4 audio CD ripping utility LICENSE= GPLv3 -LIB_DEPENDS= cdda_paranoia:${PORTSDIR}/audio/cdparanoia +LIB_DEPENDS= libcdda_paranoia.so:${PORTSDIR}/audio/cdparanoia USE_XZ= yes -NO_STAGE= yes USES= cmake USE_KDE4= automoc4 kdeprefix kdelibs libkcddb libkcompactdisc USE_QT4= gui dbus network svg xml \ @@ -21,38 +20,21 @@ USE_QT4= gui dbus network svg xml \ OPTIONS_DEFINE= NLS EYED3 FAAC FLAC LAME VORBIS OPTIONS_DEFAULT= FLAC VORBIS +OPTIONS_SUB= yes NO_OPTIONS_SORT= yes +NLS_USES= gettext +NLS_CMAKE_OFF= -DDISABLE_ALL_OPTIONAL_SUBDIRECTORIES=TRUE + EYED3_DESC= Unicode MP3 tag support via audio/py-eyed3 +EYED3_RUN_DEPENDS= eyeD3:${PORTSDIR}/audio/py-eyed3 + +FAAC_RUN_DEPENDS= faac:${PORTSDIR}/audio/faac + +FLAC_RUN_DEPENDS= flac:${PORTSDIR}/audio/flac -.include +LAME_RUN_DEPENDS= lame:${PORTSDIR}/audio/lame -.if ${PORT_OPTIONS:MNLS} -USES+= gettext -PLIST_SUB+= NLS="" -.else -CMAKE_ARGS+= -DDISABLE_ALL_OPTIONAL_SUBDIRECTORIES=TRUE -PLIST_SUB+= NLS="@comment " -.endif - -.if ${PORT_OPTIONS:MEYED3} -RUN_DEPENDS+= eyeD3:${PORTSDIR}/audio/py-eyed3 -.endif - -.if ${PORT_OPTIONS:MFAAC} -RUN_DEPENDS+= faac:${PORTSDIR}/audio/faac -.endif - -.if ${PORT_OPTIONS:MFLAC} -RUN_DEPENDS+= flac:${PORTSDIR}/audio/flac -.endif - -.if ${PORT_OPTIONS:MLAME} -RUN_DEPENDS+= lame:${PORTSDIR}/audio/lame -.endif - -.if ${PORT_OPTIONS:MVORBIS} -RUN_DEPENDS+= oggenc:${PORTSDIR}/audio/vorbis-tools -.endif +VORBIS_RUN_DEPENDS= oggenc:${PORTSDIR}/audio/vorbis-tools .include