Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 13 Dec 2012 18:28:12 +0000 (UTC)
From:      Beech Rintoul <beech@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r308863 - head/audio/calf
Message-ID:  <201212131828.qBDISC0g090572@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: beech
Date: Thu Dec 13 18:28:12 2012
New Revision: 308863
URL: http://svnweb.freebsd.org/changeset/ports/308863

Log:
  - Update to version 0.0.19
  
  PR:		ports/174165
  Submitted by:	KATO Tsuguru <tkato432@yahoo.com>

Modified:
  head/audio/calf/Makefile   (contents, props changed)
  head/audio/calf/distinfo   (contents, props changed)
  head/audio/calf/pkg-descr   (contents, props changed)
  head/audio/calf/pkg-plist   (contents, props changed)

Modified: head/audio/calf/Makefile
==============================================================================
--- head/audio/calf/Makefile	Thu Dec 13 18:15:37 2012	(r308862)
+++ head/audio/calf/Makefile	Thu Dec 13 18:28:12 2012	(r308863)
@@ -1,39 +1,68 @@
-# New ports collection makefile for:	calf
-# Date created:		2009-08-26
-# Whom:			 <trasz@FreeBSD.org>
-#
+# Created by: <trasz@FreeBSD.org>
 # $FreeBSD$
-#
 
 PORTNAME=	calf
-PORTVERSION=	0.0.18.6
-PORTREVISION=	1
+PORTVERSION=	0.0.19
 CATEGORIES=	audio
 MASTER_SITES=	SF
 
 MAINTAINER=	ports@FreeBSD.org
-COMMENT=	Calf audio plugin pack
+COMMENT=	Audio plug-in pack for LV2 and JACK environments
 
-LIB_DEPENDS=	dssialsacompat.0:${PORTSDIR}/audio/libdssialsacompat \
-		lo.7:${PORTSDIR}/audio/liblo \
-		jack.0:${PORTSDIR}/audio/jack \
-		lash.2:${PORTSDIR}/audio/lash
-BUILD_DEPENDS=	${LOCALBASE}/include/dssi.h:${PORTSDIR}/audio/dssi \
-		${LOCALBASE}/include/ladspa.h:${PORTSDIR}/audio/ladspa
-RUN_DEPENDS:=	${BUILD_DEPENDS}
+LICENSE=	GPLv2 LGPL21
+LICENSE_COMB=	multi
 
-GNU_CONFIGURE=	yes
+BUILD_DEPENDS=	fftw3>0:${PORTSDIR}/math/fftw3
+LIB_DEPENDS=	fluidsynth:${PORTSDIR}/audio/fluidsynth \
+		jack:${PORTSDIR}/audio/jack \
+		fftw3f:${PORTSDIR}/math/fftw3-float \
+		expat:${PORTSDIR}/textproc/expat2
+
+OPTIONS_DEFINE=	LASH LV2
+OPTIONS_DEFAULT=LASH LV2
+LV2_DESC=	LV2 audio plugin
+
+USE_GCC=	any
+USE_GNOME=	gtk20
 USE_GMAKE=	yes
-USE_GNOME=	gtk20 libglade2
-CFLAGS+=	-I${LOCALBASE}/include -I${LOCALBASE}/include/dssi -L${LOCALBASE}/lib
+GNU_CONFIGURE=	yes
+INSTALLS_ICONS=	yes
+MAKE_JOBS_SAFE=	yes
+
+CPPFLAGS+=	-I${LOCALBASE}/include
+LDFLAGS+=	-L${LOCALBASE}/lib
+
 MAN1=		calfjackhost.1
 MAN7=		calf.7
-INSTALLS_ICONS=	yes
 
-.include <bsd.port.pre.mk>
+.include <bsd.port.options.mk>
+
+.if ${PORT_OPTIONS:MLASH}
+LIB_DEPENDS+=	lash:${PORTSDIR}/audio/lash
+.else
+CONFIGURE_ARGS+=--without-lash
+.endif
+
+.if ${PORT_OPTIONS:MLV2}
+BUILD_DEPENDS+=	lv2core>0:${PORTSDIR}/audio/lv2core
+RUN_DEPENDS+=	lv2core>0:${PORTSDIR}/audio/lv2core
+PLIST_SUB+=	LV2=""
+.else
+CONFIGURE_ARGS+=--without-lv2
+PLIST_SUB+=	LV2="@comment "
+.endif
 
 post-patch:
-		@${FIND} ${BUILD_WRKSRC} -name '*.cpp' | ${XARGS} \
-			${REINPLACE_CMD} -e "s|<malloc.h>|<stdlib.h>|g"
+	@${FIND} ${BUILD_WRKSRC} -name '*.cpp' | ${XARGS} ${REINPLACE_CMD} -e \
+		's|<malloc.h>|<stdlib.h>|'
+	@${REINPLACE_CMD} -e '/CXXFLAGS/s|-O3||' ${WRKSRC}/configure
+	@${REINPLACE_CMD} -e '/^install-data-am:/s|install-data-local||' \
+		${WRKSRC}/Makefile.in
+
+post-install:
+.if !defined(NOPORTDOCS)
+	@(cd ${INSTALL_WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} \
+		${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} install-data-local)
+.endif
 
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>

Modified: head/audio/calf/distinfo
==============================================================================
--- head/audio/calf/distinfo	Thu Dec 13 18:15:37 2012	(r308862)
+++ head/audio/calf/distinfo	Thu Dec 13 18:28:12 2012	(r308863)
@@ -1,2 +1,2 @@
-SHA256 (calf-0.0.18.6.tar.gz) = 304733efbafc00c94807a0f8d5a56125893769231db48f8d6a889b9ca794860f
-SIZE (calf-0.0.18.6.tar.gz) = 599207
+SHA256 (calf-0.0.19.tar.gz) = 1106e7e27bcd18d47fc58c952a4dbf6c7a763272e13b2b94cee6f1b2fb922cec
+SIZE (calf-0.0.19.tar.gz) = 14960133

Modified: head/audio/calf/pkg-descr
==============================================================================
--- head/audio/calf/pkg-descr	Thu Dec 13 18:15:37 2012	(r308862)
+++ head/audio/calf/pkg-descr	Thu Dec 13 18:28:12 2012	(r308863)
@@ -1,17 +1,7 @@
-The Calf project aims at providing a set of high quality open source
-audio plugins for musicians. All the included plugins are designed
-to be used with multitrack software, as software replacement for
-instruments and guitar stomp boxes.
+Calf Studio Gear is an audio plug-in pack for LV2 and JACK environments.
+The suite contains lots of effects (delay, modulation, signal processing,
+dynamics, distortion and mastering effects), instruments (SF2 player,
+organ simulator and a monophonic synthesizer) and tools (analyzer,
+mono/stereo tools). Calf Studio Gear aims for a professional audience. 
 
-The plugins are available in following formats:
-
- - DSSI (both synthesizers and effects, GTK+ GUI is included)
-
- - Standalone JACK client application with GTK+-based GUI
-
- - LADSPA (only effect plugins, GUI not available unless host supports
-   DSSI-style GUI for LADSPA), with LRDF. Note that use of LADSPA
-   is strongly discouraged, as the limitations of the standard may cause
-   serious inconvenience.
-
-WWW:	http://calf.sourceforge.net/
+WWW: http://calf.sourceforge.net/

Modified: head/audio/calf/pkg-plist
==============================================================================
--- head/audio/calf/pkg-plist	Thu Dec 13 18:15:37 2012	(r308862)
+++ head/audio/calf/pkg-plist	Thu Dec 13 18:28:12 2012	(r308863)
@@ -1,30 +1,303 @@
 bin/calfjackhost
-lib/ladspa/calf.so
-lib/dssi/calf/calf_gtk
-lib/dssi/calf.so
-share/calf/presets.xml
-share/calf/knob.png
-share/calf/gui-filter.xml
-share/calf/gui-filterclavier.xml
-share/calf/gui-flanger.xml
-share/calf/gui-reverb.xml
-share/calf/gui-monosynth.xml
-share/calf/gui-vintagedelay.xml
-share/calf/gui-organ.xml
-share/calf/gui-rotaryspeaker.xml
-share/calf/gui-phaser.xml
-share/calf/gui-multichorus.xml
-share/calf/gui-compressor.xml
-share/calf/gui-sidechaingate.xml
-share/calf/calf.glade
-share/ladspa/rdf/calf.rdf
+lib/calf/calf.a
+lib/calf/calf.la
+lib/calf/calf.so
+%%LV2%%lib/lv2/calf.lv2/Analyzer.ttl
+%%LV2%%lib/lv2/calf.lv2/BassEnhancer.ttl
+%%LV2%%lib/lv2/calf.lv2/Compressor.ttl
+%%LV2%%lib/lv2/calf.lv2/Deesser.ttl
+%%LV2%%lib/lv2/calf.lv2/Equalizer12Band.ttl
+%%LV2%%lib/lv2/calf.lv2/Equalizer5Band.ttl
+%%LV2%%lib/lv2/calf.lv2/Equalizer8Band.ttl
+%%LV2%%lib/lv2/calf.lv2/Exciter.ttl
+%%LV2%%lib/lv2/calf.lv2/Filter.ttl
+%%LV2%%lib/lv2/calf.lv2/Filterclavier.ttl
+%%LV2%%lib/lv2/calf.lv2/Flanger.ttl
+%%LV2%%lib/lv2/calf.lv2/Gate.ttl
+%%LV2%%lib/lv2/calf.lv2/Limiter.ttl
+%%LV2%%lib/lv2/calf.lv2/MonoInput.ttl
+%%LV2%%lib/lv2/calf.lv2/Monosynth.ttl
+%%LV2%%lib/lv2/calf.lv2/MultiChorus.ttl
+%%LV2%%lib/lv2/calf.lv2/Multibandcompressor.ttl
+%%LV2%%lib/lv2/calf.lv2/Multibandgate.ttl
+%%LV2%%lib/lv2/calf.lv2/Multibandlimiter.ttl
+%%LV2%%lib/lv2/calf.lv2/Organ.ttl
+%%LV2%%lib/lv2/calf.lv2/Phaser.ttl
+%%LV2%%lib/lv2/calf.lv2/Pulsator.ttl
+%%LV2%%lib/lv2/calf.lv2/Reverb.ttl
+%%LV2%%lib/lv2/calf.lv2/RotarySpeaker.ttl
+%%LV2%%lib/lv2/calf.lv2/Saturator.ttl
+%%LV2%%lib/lv2/calf.lv2/Sidechaincompressor.ttl
+%%LV2%%lib/lv2/calf.lv2/Sidechaingate.ttl
+%%LV2%%lib/lv2/calf.lv2/StereoTools.ttl
+%%LV2%%lib/lv2/calf.lv2/VintageDelay.ttl
+%%LV2%%lib/lv2/calf.lv2/calf.so
+%%LV2%%lib/lv2/calf.lv2/calflv2gui.so
+%%LV2%%lib/lv2/calf.lv2/manifest.ttl
+%%LV2%%lib/lv2/calf.lv2/presets-Filter.ttl
+%%LV2%%lib/lv2/calf.lv2/presets-Flanger.ttl
+%%LV2%%lib/lv2/calf.lv2/presets-Monosynth.ttl
+%%LV2%%lib/lv2/calf.lv2/presets-Organ.ttl
+%%LV2%%lib/lv2/calf.lv2/presets-Reverb.ttl
+share/applications/calf.desktop
+%%DATADIR%%/background_black.png
+%%DATADIR%%/background_blue.png
+%%DATADIR%%/background_dark.png
+%%DATADIR%%/background_fur.png
+%%DATADIR%%/background_fur_bw.png
+%%DATADIR%%/background_fur_white.png
+%%DATADIR%%/background_light_alu.png
+%%DATADIR%%/background_light_calf.png
+%%DATADIR%%/background_light_green.png
+%%DATADIR%%/background_light_metal.png
+%%DATADIR%%/blank.png
+%%DATADIR%%/button.png
+%%DATADIR%%/button_active.png
+%%DATADIR%%/button_default.png
+%%DATADIR%%/button_default_active.png
+%%DATADIR%%/button_default_prelight.png
+%%DATADIR%%/button_insens.png
+%%DATADIR%%/button_normal.png
+%%DATADIR%%/button_prelight.png
+%%DATADIR%%/calf-gui.xml
+%%DATADIR%%/calf.rc
+%%DATADIR%%/combo.png
+%%DATADIR%%/combo_active.png
+%%DATADIR%%/combo_arrow.png
+%%DATADIR%%/combo_inactive.png
+%%DATADIR%%/entry.png
+%%DATADIR%%/entry_inactive.png
+%%DATADIR%%/frame.png
+%%DATADIR%%/frame_bottom_end.png
+%%DATADIR%%/frame_bottom_start.png
+%%DATADIR%%/frame_left_end.png
+%%DATADIR%%/frame_left_start.png
+%%DATADIR%%/frame_right_end.png
+%%DATADIR%%/frame_right_start.png
+%%DATADIR%%/frame_top_end.png
+%%DATADIR%%/frame_top_start.png
+%%DATADIR%%/gui-analyzer.xml
+%%DATADIR%%/gui-bassenhancer.xml
+%%DATADIR%%/gui-compressor.xml
+%%DATADIR%%/gui-deesser.xml
+%%DATADIR%%/gui-enhancer.xml
+%%DATADIR%%/gui-eq12.xml
+%%DATADIR%%/gui-eq5.xml
+%%DATADIR%%/gui-eq8.xml
+%%DATADIR%%/gui-exciter.xml
+%%DATADIR%%/gui-filter.xml
+%%DATADIR%%/gui-filterclavier.xml
+%%DATADIR%%/gui-flanger.xml
+%%DATADIR%%/gui-fluidsynth.xml
+%%DATADIR%%/gui-gate.xml
+%%DATADIR%%/gui-limiter.xml
+%%DATADIR%%/gui-mono.xml
+%%DATADIR%%/gui-monosynth.xml
+%%DATADIR%%/gui-multibandcompressor.xml
+%%DATADIR%%/gui-multibandgate.xml
+%%DATADIR%%/gui-multibandlimiter.xml
+%%DATADIR%%/gui-multichorus.xml
+%%DATADIR%%/gui-organ.xml
+%%DATADIR%%/gui-phaser.xml
+%%DATADIR%%/gui-pulsator.xml
+%%DATADIR%%/gui-reverb.xml
+%%DATADIR%%/gui-rotaryspeaker.xml
+%%DATADIR%%/gui-saturator.xml
+%%DATADIR%%/gui-sidechaincompressor.xml
+%%DATADIR%%/gui-sidechaingate.xml
+%%DATADIR%%/gui-stereo.xml
+%%DATADIR%%/gui-vintagedelay.xml
+%%DATADIR%%/gui-wavetable.xml
+%%DATADIR%%/handle-h.png
+%%DATADIR%%/handle-v.png
+%%DATADIR%%/hline.png
+%%DATADIR%%/knob1.png
+%%DATADIR%%/knob2.png
+%%DATADIR%%/knob3.png
+%%DATADIR%%/knob4.png
+%%DATADIR%%/knob5.png
+%%DATADIR%%/led2_active.png
+%%DATADIR%%/led2_inactive.png
+%%DATADIR%%/led2_normal.png
+%%DATADIR%%/led2_prelight.png
+%%DATADIR%%/led_active.png
+%%DATADIR%%/led_inactive.png
+%%DATADIR%%/led_normal.png
+%%DATADIR%%/led_prelight.png
+%%DATADIR%%/light_bottom.png
+%%DATADIR%%/light_top.png
+%%DATADIR%%/logo_button.png
+%%DATADIR%%/notebook.png
+%%DATADIR%%/notebook_bottom.png
+%%DATADIR%%/notebook_left.png
+%%DATADIR%%/notebook_right.png
+%%DATADIR%%/notebook_top.png
+%%DATADIR%%/null.png
+%%DATADIR%%/presets.xml
+%%DATADIR%%/rect3155.png
+%%DATADIR%%/screw1.png
+%%DATADIR%%/screw2.png
+%%DATADIR%%/scroll-thumb-horiz.png
+%%DATADIR%%/scroll-thumb-vert.png
+%%DATADIR%%/scroller-horiz-insens.png
+%%DATADIR%%/scroller-horiz-prelight.png
+%%DATADIR%%/scroller-horiz.png
+%%DATADIR%%/scroller-vert-insens.png
+%%DATADIR%%/scroller-vert-prelight.png
+%%DATADIR%%/scroller-vert.png
+%%DATADIR%%/side_d_e.png
+%%DATADIR%%/side_d_ne.png
+%%DATADIR%%/side_d_nw.png
+%%DATADIR%%/side_d_se.png
+%%DATADIR%%/side_d_sw.png
+%%DATADIR%%/side_d_w.png
+%%DATADIR%%/side_e.png
+%%DATADIR%%/side_e_logo.png
+%%DATADIR%%/side_ne.png
+%%DATADIR%%/side_nw.png
+%%DATADIR%%/side_se.png
+%%DATADIR%%/side_sw.png
+%%DATADIR%%/side_w.png
+%%DATADIR%%/slider1-horiz-prelight.png
+%%DATADIR%%/slider1-horiz.png
+%%DATADIR%%/slider1-vert-prelight.png
+%%DATADIR%%/slider1-vert.png
+%%DATADIR%%/slider2-horiz-prelight.png
+%%DATADIR%%/slider2-horiz.png
+%%DATADIR%%/slider2-vert-prelight.png
+%%DATADIR%%/slider2-vert.png
+%%DATADIR%%/spin_down_active.png
+%%DATADIR%%/spin_down_inactive.png
+%%DATADIR%%/spin_down_normal.png
+%%DATADIR%%/spin_down_prelight.png
+%%DATADIR%%/spin_up_active.png
+%%DATADIR%%/spin_up_inactive.png
+%%DATADIR%%/spin_up_normal.png
+%%DATADIR%%/spin_up_prelight.png
+%%DATADIR%%/tab_bottom_normal.png
+%%DATADIR%%/tab_bottom_prelight.png
+%%DATADIR%%/tab_left_normal.png
+%%DATADIR%%/tab_left_prelight.png
+%%DATADIR%%/tab_right_normal.png
+%%DATADIR%%/tab_right_prelight.png
+%%DATADIR%%/tab_top_normal.png
+%%DATADIR%%/tab_top_prelight.png
+%%DATADIR%%/toggle1_black.png
+%%DATADIR%%/toggle1_silver.png
+%%DATADIR%%/toggle2_black.png
+%%DATADIR%%/toggle2_silver.png
+%%DATADIR%%/trough1-horizontal.png
+%%DATADIR%%/trough1-vertical.png
+%%DATADIR%%/trough2-horizontal.png
+%%DATADIR%%/trough2-vertical.png
+%%DATADIR%%/tubeH1.png
+%%DATADIR%%/tubeH2.png
+%%DATADIR%%/tubeV1.png
+%%DATADIR%%/tubeV2.png
+%%DATADIR%%/vline.png
+%%PORTDOCS%%%%DOCSDIR%%/About.html
+%%PORTDOCS%%%%DOCSDIR%%/Analyzer.html
+%%PORTDOCS%%%%DOCSDIR%%/Bass Enhancer.html
+%%PORTDOCS%%%%DOCSDIR%%/Calf.html
+%%PORTDOCS%%%%DOCSDIR%%/Compressor.html
+%%PORTDOCS%%%%DOCSDIR%%/Controls.html
+%%PORTDOCS%%%%DOCSDIR%%/Deesser.html
+%%PORTDOCS%%%%DOCSDIR%%/Equalizer12band.html
+%%PORTDOCS%%%%DOCSDIR%%/Equalizer5band.html
+%%PORTDOCS%%%%DOCSDIR%%/Equalizer8band.html
+%%PORTDOCS%%%%DOCSDIR%%/Exciter.html
+%%PORTDOCS%%%%DOCSDIR%%/Filter.html
+%%PORTDOCS%%%%DOCSDIR%%/Filterclavier.html
+%%PORTDOCS%%%%DOCSDIR%%/Flanger.html
+%%PORTDOCS%%%%DOCSDIR%%/Gate.html
+%%PORTDOCS%%%%DOCSDIR%%/Limiter.html
+%%PORTDOCS%%%%DOCSDIR%%/Mono Input.html
+%%PORTDOCS%%%%DOCSDIR%%/Monosynth.html
+%%PORTDOCS%%%%DOCSDIR%%/Multi Chorus.html
+%%PORTDOCS%%%%DOCSDIR%%/Multiband Compressor.html
+%%PORTDOCS%%%%DOCSDIR%%/Multiband Gate.html
+%%PORTDOCS%%%%DOCSDIR%%/Multiband Limiter.html
+%%PORTDOCS%%%%DOCSDIR%%/Organ.html
+%%PORTDOCS%%%%DOCSDIR%%/Phaser.html
+%%PORTDOCS%%%%DOCSDIR%%/Pulsator.html
+%%PORTDOCS%%%%DOCSDIR%%/Reverb.html
+%%PORTDOCS%%%%DOCSDIR%%/Rotary Speaker.html
+%%PORTDOCS%%%%DOCSDIR%%/Saturator.html
+%%PORTDOCS%%%%DOCSDIR%%/Sidechain Compressor.html
+%%PORTDOCS%%%%DOCSDIR%%/Sidechain Gate.html
+%%PORTDOCS%%%%DOCSDIR%%/Stereo Tools.html
+%%PORTDOCS%%%%DOCSDIR%%/Vintage Delay.html
+%%PORTDOCS%%%%DOCSDIR%%/_blank.html
+%%PORTDOCS%%%%DOCSDIR%%/images/About.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Analyzer.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Bass Enhancer.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Compressor.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Controls.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Deesser.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Equalizer 12 Band.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Equalizer 5 Band.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Equalizer 8 Band.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Exciter.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Filter.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Filterclavier.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Flanger.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Gate.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Limiter.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Mono Input.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Monosynth - Audio Path.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Monosynth - Modulation Matrix.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Monosynth - Modulation.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Multi Chorus.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Multiband Compressor.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Multiband Gate.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Multiband Limiter.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Organ - Advanced.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Organ - Sound Processor.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Organ - Tone Generator.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Phaser.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Pulsator.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Reverb.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Rotary Speaker.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Saturator.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Sidechain Compressor.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Sidechain Gate.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Stereo Tools.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf - Vintage Delay.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Calf.png
+%%PORTDOCS%%%%DOCSDIR%%/images/Index.png
+%%PORTDOCS%%%%DOCSDIR%%/images/background_dark.png
+%%PORTDOCS%%%%DOCSDIR%%/images/plugins.png
+%%PORTDOCS%%%%DOCSDIR%%/images/style_logo.png
+%%PORTDOCS%%%%DOCSDIR%%/images/style_p.png
+%%PORTDOCS%%%%DOCSDIR%%/index.html
+%%PORTDOCS%%%%DOCSDIR%%/scripts/jquery.js
+%%PORTDOCS%%%%DOCSDIR%%/scripts/manual.js
+%%PORTDOCS%%%%DOCSDIR%%/scripts/style.css
+%%PORTDOCS%%%%DOCSDIR%%/scripts/thickbox.css
+%%PORTDOCS%%%%DOCSDIR%%/scripts/thickbox.js
+share/icons/hicolor/128x128/apps/calf.png
+share/icons/hicolor/128x128/apps/calf_plugin.png
 share/icons/hicolor/16x16/apps/calf.png
+share/icons/hicolor/16x16/apps/calf_plugin.png
+share/icons/hicolor/22x22/apps/calf.png
+share/icons/hicolor/22x22/apps/calf_plugin.png
 share/icons/hicolor/24x24/apps/calf.png
+share/icons/hicolor/24x24/apps/calf_plugin.png
+share/icons/hicolor/256x256/apps/calf.png
+share/icons/hicolor/256x256/apps/calf_plugin.png
 share/icons/hicolor/32x32/apps/calf.png
+share/icons/hicolor/32x32/apps/calf_plugin.png
 share/icons/hicolor/48x48/apps/calf.png
-share/applications/calf.desktop
-@dirrm lib/dssi/calf
-@dirrm share/calf
-@dirrmtry share/ladspa/rdf
-@dirrmtry share/ladspa
+share/icons/hicolor/48x48/apps/calf_plugin.png
+share/icons/hicolor/64x64/apps/calf.png
+share/icons/hicolor/64x64/apps/calf_plugin.png
+share/icons/hicolor/scalable/apps/calf.svg
+share/icons/hicolor/scalable/apps/calf_plugin.svg
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/scripts
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/images
+%%PORTDOCS%%@dirrm %%DOCSDIR%%
+@dirrm %%DATADIR%%
 @dirrmtry share/applications
+%%LV2%%@dirrm lib/lv2/calf.lv2
+%%LV2%%@dirrmtry lib/lv2
+@dirrm lib/calf
\ No newline at end of file



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