Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 14 Mar 2013 04:05:05 +0000 (UTC)
From:      David Naylor <dbn@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r314128 - head/audio/soundkonverter
Message-ID:  <201303140405.r2E455Kh006024@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dbn
Date: Thu Mar 14 04:05:04 2013
New Revision: 314128
URL: http://svnweb.freebsd.org/changeset/ports/314128

Log:
  Update audio/soundkonverter to 2.0.0.
  
   - Fixes for optional dependencies
   - Set license to GPLv3
   - Initial support for libav (if and when it gets into ports)
  
  ChangeLog:
  new in 2.0.0:
  -Add: Update translations
  -Remove: French translation (only 58% translated)
  
  new in 1.9.90 (2.0.0 rc1):
  -Add: Option to not modify the audio stream of mp3 files when calculating Replay Gain
  -Add: libav plugin
  -Fix: Modify mp3 stream when forcing the recalculation of Replay Gain
  -Fix: Don't try to calculate Replay Gain if it is impossible
  -Fix: Down/upmixing with sox
  -Fix: Sox effects wouldn't work
  -Fix: Recognice mp3 and amr nb encoding support in ffmpeg/libav plugins
  -Fix: Crash when encoding with sox and without filters
  -Fix: Calculate Replay Gain if there is only one track in the album
  
  Approved by:	bdrewery (mentor)

Modified:
  head/audio/soundkonverter/Makefile
  head/audio/soundkonverter/distinfo
  head/audio/soundkonverter/pkg-plist

Modified: head/audio/soundkonverter/Makefile
==============================================================================
--- head/audio/soundkonverter/Makefile	Thu Mar 14 02:42:11 2013	(r314127)
+++ head/audio/soundkonverter/Makefile	Thu Mar 14 04:05:04 2013	(r314128)
@@ -2,13 +2,16 @@
 # $FreeBSD$
 
 PORTNAME=	soundkonverter
-DISTVERSION=	1.9.80
+DISTVERSION=	2.0.0
 CATEGORIES=	audio kde
-MASTER_SITES=	http://dl.dropbox.com/u/29089012/
+MASTER_SITES=	http://kde-apps.org/CONTENT/content-files/
+DISTNAME=	29024-${PORTNAME}-${DISTVERSION}
 
 MAINTAINER=	dbn@FreeBSD.org
 COMMENT=	Frontend to various audio converters (transcoder)
 
+LICENSE=	GPLv3
+
 LIB_DEPENDS=	tag:${PORTSDIR}/audio/taglib \
 		cdda_paranoia:${PORTSDIR}/audio/cdparanoia
 
@@ -18,7 +21,7 @@ USE_KDE4=	automoc4 kdehier kdeprefix kde
 INSTALLS_ICONS=	yes
 
 MAKE_JOBS_SAFE=	yes
-WRKSRC=		${WRKDIR}/${DISTNAME}/src
+WRKSRC=	${WRKDIR}/${PORTNAME}-${PORTVERSION}
 
 OPTIONS_MULTI=	CODEC FILTER REPLAYGAIN
 OPTIONS_MULTI_CODEC=	AFTEN FAAC FFMPEG FLAC FLAKE FLUIDSYNTH LAME MAC MPLAYER \
@@ -47,7 +50,7 @@ VORBISGAIN_DESC=	Ogg Vorbis audio replay
 .include <bsd.port.options.mk>
 
 .if ${PORT_OPTIONS:MAFTEN}
-RUN_DEPENDS+=	AFTEN:${PORTSDIR}/audio/AFTEN
+RUN_DEPENDS+=	aften:${PORTSDIR}/audio/aften
 PLIST_SUB+=	AFTEN=""
 .else
 SK_CMAKE_RM+=	codec_aften
@@ -87,8 +90,8 @@ SK_CMAKE_RM+=	codec_flac replaygain_meta
 PLIST_SUB+=	FLAC="@comment "
 .endif
 
-.if ${PORT_OPTIONS:MFLAKE} && defined(NOT_IMPLEMENTED)
-RUN_DEPENDS+=	flake:${PORTSDIR}/flake
+.if ${PORT_OPTIONS:MFLAKE}
+RUN_DEPENDS+=	flake:${PORTSDIR}/audio/flake
 PLIST_SUB+=	FLAKE=""
 .else
 SK_CMAKE_RM+=	codec_flake
@@ -111,6 +114,14 @@ SK_CMAKE_RM+=	codec_lame
 PLIST_SUB+=	LAME="@comment "
 .endif
 
+.if ${PORT_OPTIONS:MLIBAV} && defined(NOT_IMPLEMENTED)
+RUN_DEPENDS+=	avconv:${PORTSDIR}/audio/libav
+PLIST_SUB+=	LIBAV=""
+.else
+SK_CMAKE_RM+=	codec_libav
+PLIST_SUB+=	LIBAV="@comment "
+.endif
+
 .if ${PORT_OPTIONS:MMAC}
 RUN_DEPENDS+=	mac:${PORTSDIR}/audio/mac
 PLIST_SUB+=	MAC=""
@@ -144,7 +155,7 @@ PLIST_SUB+=	MUSEPACK="@comment "
 .endif
 
 .if ${PORT_OPTIONS:MNEROAAC}
-RUN_DEPENDS+=	neroAacEnc:${PORTSDIR}/linux-neroaaccodec
+RUN_DEPENDS+=	neroAacEnc:${PORTSDIR}/audio/linux-neroaaccodec
 PLIST_SUB+=	NEROAAC=""
 .else
 SK_CMAKE_RM+=	codec_neroaac

Modified: head/audio/soundkonverter/distinfo
==============================================================================
--- head/audio/soundkonverter/distinfo	Thu Mar 14 02:42:11 2013	(r314127)
+++ head/audio/soundkonverter/distinfo	Thu Mar 14 04:05:04 2013	(r314128)
@@ -1,2 +1,2 @@
-SHA256 (soundkonverter-1.9.80.tar.gz) = 3937c4526b69eba432dc8e2cfea71ab218dbe341c2b8de298cbb7907c27647a1
-SIZE (soundkonverter-1.9.80.tar.gz) = 479452
+SHA256 (29024-soundkonverter-2.0.0.tar.gz) = 57ec2ba3358d241fde70196c3ed5628a8fd4ae8961abf98175633b14105c5ba6
+SIZE (29024-soundkonverter-2.0.0.tar.gz) = 540197

Modified: head/audio/soundkonverter/pkg-plist
==============================================================================
--- head/audio/soundkonverter/pkg-plist	Thu Mar 14 02:42:11 2013	(r314127)
+++ head/audio/soundkonverter/pkg-plist	Thu Mar 14 04:05:04 2013	(r314128)
@@ -6,6 +6,7 @@ bin/soundkonverter
 %%FLAKE%%lib/kde4/soundkonverter_codec_flake.so
 %%FLUIDSYNTH%%lib/kde4/soundkonverter_codec_fluidsynth.so
 %%LAME%%lib/kde4/soundkonverter_codec_lame.so
+%%LIBAV%%lib/kde4/soundkonverter_codec_libav.so
 %%MAC%%lib/kde4/soundkonverter_codec_mac.so
 %%MPLAYER%%lib/kde4/soundkonverter_codec_mplayer.so
 %%MUSEPACK%%lib/kde4/soundkonverter_codec_musepack.so
@@ -46,7 +47,6 @@ share/icons/hicolor/64x64/apps/soundkonv
 %%NLS%%share/locale/de/LC_MESSAGES/soundkonverter.mo
 %%NLS%%share/locale/es/LC_MESSAGES/soundkonverter.mo
 %%NLS%%share/locale/et/LC_MESSAGES/soundkonverter.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/soundkonverter.mo
 %%NLS%%share/locale/hu/LC_MESSAGES/soundkonverter.mo
 %%NLS%%share/locale/pt/LC_MESSAGES/soundkonverter.mo
 %%NLS%%share/locale/pt_BR/LC_MESSAGES/soundkonverter.mo
@@ -58,6 +58,7 @@ share/icons/hicolor/64x64/apps/soundkonv
 %%FLAKE%%share/kde4/services/soundkonverter_codec_flake.desktop
 %%FLUIDSYNTH%%share/kde4/services/soundkonverter_codec_fluidsynth.desktop
 %%LAME%%share/kde4/services/soundkonverter_codec_lame.desktop
+%%LIBAV%%share/kde4/services/soundkonverter_codec_libav.desktop
 %%MAC%%share/kde4/services/soundkonverter_codec_mac.desktop
 %%MPLAYER%%share/kde4/services/soundkonverter_codec_mplayer.desktop
 %%MUSEPACK%%share/kde4/services/soundkonverter_codec_musepack.desktop



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201303140405.r2E455Kh006024>