Date: Mon, 11 Dec 2017 13:27:27 +0000 (UTC) From: Roman Bogorodskiy <novel@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r456029 - head/audio/easytag Message-ID: <201712111327.vBBDRRj5054838@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: novel Date: Mon Dec 11 13:27:27 2017 New Revision: 456029 URL: https://svnweb.freebsd.org/changeset/ports/456029 Log: audio/easytag: adjust dependencies - Explicitly add dependencies easytag requires: * cairo * audio/ogg for ogg vorbis support * audio/opus for opus support - Add runtime dependency on dconf to make sure users could always have their configuration saved - Enable file format support options (WAVPACK, OPUS, SPEEX) by default by adding them to OPTIONS_DEFAULT - Bump PORTREVISION Modified: head/audio/easytag/Makefile Modified: head/audio/easytag/Makefile ============================================================================== --- head/audio/easytag/Makefile Mon Dec 11 13:04:53 2017 (r456028) +++ head/audio/easytag/Makefile Mon Dec 11 13:27:27 2017 (r456029) @@ -3,6 +3,7 @@ PORTNAME= easytag PORTVERSION= 2.4.3 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= GNOME @@ -19,10 +20,11 @@ LIB_DEPENDS= libid3.so:audio/id3lib \ libid3tag.so:audio/libid3tag \ libvorbis.so:audio/libvorbis \ libFLAC.so:audio/flac \ - libtag.so:audio/taglib + libtag.so:audio/taglib \ + libogg.so:audio/libogg USES= desktop-file-utils gettext-tools gmake pkgconfig tar:xz -USE_GNOME= gtk30 intlhack libxslt +USE_GNOME= cairo dconf:run gtk30 intlhack libxslt GLIB_SCHEMAS= org.gnome.EasyTAG.gschema.xml org.gnome.EasyTAG.enums.xml INSTALLS_ICONS= yes GNU_CONFIGURE= yes @@ -36,12 +38,14 @@ CONFIGURE_ARGS= --disable-appdata-validate \ PORTDOCS= HACKING THANKS TODO OPTIONS_DEFINE= WAVPACK NLS OPUS SPEEX DOCS +OPTIONS_DEFAULT= WAVPACK OPUS SPEEX OPTIONS_SUB= yes WAVPACK_LIB_DEPENDS= libwavpack.so:audio/wavpack WAVPACK_CONFIGURE_ENABLE= wavpack NLS_CONFIGURE_ENABLE= nls -OPUS_LIB_DEPENDS= libopusfile.so:audio/opusfile +OPUS_LIB_DEPENDS= libopusfile.so:audio/opusfile \ + libopus.so:audio/opus OPUS_CONFIGURE_ENABLE= opus SPEEX_LIB_DEPENDS= libspeex.so:audio/speex SPEEX_CONFIGURE_ENABLE= speex
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201712111327.vBBDRRj5054838>