Date: Sun, 19 Apr 2020 23:26:43 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r532164 - in head/audio: . fogpad-lv2 fogpad-lv2/files Message-ID: <202004192326.03JNQh3e046832@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Sun Apr 19 23:26:42 2020 New Revision: 532164 URL: https://svnweb.freebsd.org/changeset/ports/532164 Log: New port: audio/fogpad-lv2: Reverb effect with frozen/pitch-shifted/disintegrated reflections Added: head/audio/fogpad-lv2/ head/audio/fogpad-lv2/Makefile (contents, props changed) head/audio/fogpad-lv2/distinfo (contents, props changed) head/audio/fogpad-lv2/files/ head/audio/fogpad-lv2/files/mntent.h (contents, props changed) head/audio/fogpad-lv2/pkg-descr (contents, props changed) head/audio/fogpad-lv2/pkg-plist (contents, props changed) Modified: head/audio/Makefile Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Sun Apr 19 21:53:51 2020 (r532163) +++ head/audio/Makefile Sun Apr 19 23:26:42 2020 (r532164) @@ -189,6 +189,7 @@ SUBDIR += fluidsynth SUBDIR += fluidsynth-dssi SUBDIR += fmit + SUBDIR += fogpad-lv2 SUBDIR += fomp-lv2 SUBDIR += foo-yc20 SUBDIR += forked-daapd Added: head/audio/fogpad-lv2/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/fogpad-lv2/Makefile Sun Apr 19 23:26:42 2020 (r532164) @@ -0,0 +1,40 @@ +# $FreeBSD$ + +PORTNAME= fogpad +DISTVERSIONPREFIX= v +DISTVERSION= 1.0.0-1 +DISTVERSIONSUFFIX= -g618cbaf +CATEGORIES= audio +PKGNAMESUFFIX= -lv2 + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Reverb effect with frozen/pitch-shifted/disintegrated reflections + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= lv2>0:audio/lv2 \ + bash:shells/bash + +USES= gmake gnome pkgconfig shebangfix xorg +SHEBANG_FILES= dpf/utils/generate-ttl.sh +USE_GITHUB= yes +GH_ACCOUNT= linuxmao-org +GH_PROJECT= fogpad-port # a more recently updated fork of https://github.com/igorski/fogpad +GH_TUPLE= DISTRHO:DPF:4e180a77ec6e93abb021b28495bd84b43498bf31:DISTRHO_DPF/dpf +USE_GNOME= cairo +USE_XORG= x11 + +CXXFLAGS+= -I${FILESDIR} + +MAKE_ARGS= BUILD_VST2=false BUILD_DSSI=false # VST and DSSI plugins fail to install: https://github.com/linuxmao-org/fogpad-port/issues/2 + +OPTIONS_DEFINE= JACK +OPTIONS_DEFAULT= JACK +OPTIONS_SUB= yes + +JACK_MAKE_ARGS= BUILD_JACK=true +JACK_MAKE_ARGS_OFF= BUILD_JACK=false +JACK_LIB_DEPENDS= libjack.so:audio/jack + +.include <bsd.port.mk> Added: head/audio/fogpad-lv2/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/fogpad-lv2/distinfo Sun Apr 19 23:26:42 2020 (r532164) @@ -0,0 +1,5 @@ +TIMESTAMP = 1587334431 +SHA256 (linuxmao-org-fogpad-port-v1.0.0-1-g618cbaf_GH0.tar.gz) = 9a189915ee5e7f4c8b5ece6f09cbdcb2cb3481fe0dfc9668fbf6eb8601152e21 +SIZE (linuxmao-org-fogpad-port-v1.0.0-1-g618cbaf_GH0.tar.gz) = 187768 +SHA256 (DISTRHO-DPF-4e180a77ec6e93abb021b28495bd84b43498bf31_GH0.tar.gz) = 9c9242b2dbf041511ad07201719b13111eaafb59f477c81959a91a9b08bc821a +SIZE (DISTRHO-DPF-4e180a77ec6e93abb021b28495bd84b43498bf31_GH0.tar.gz) = 2114543 Added: head/audio/fogpad-lv2/files/mntent.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/fogpad-lv2/files/mntent.h Sun Apr 19 23:26:42 2020 (r532164) @@ -0,0 +1,64 @@ +# $FreeBSD$ + +/* + * mntent + * mntent.h - compatability header for FreeBSD + * + * Copyright (c) 2001 David Rufino <daverufino@btinternet.com> + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ + +#if defined(HAVE_MNTENT_H) +#include <mntent.h> +#else +#ifndef _MNTENT_H +#define _MNTENT_H +#include <stdio.h> + +#define MOUNTED "dummy" + +#define MNTTYPE_NFS "nfs" + +struct mntent { + char *mnt_fsname; + char *mnt_dir; + char *mnt_type; + char *mnt_opts; + int mnt_freq; + int mnt_passno; +}; + +#define setmntent(x,y) ((FILE *)0x1) +#ifdef __cplusplus +extern "C" { +#endif +struct mntent *getmntent __P ((FILE *fp)); +char *hasmntopt __P ((const struct mntent *mnt, const char *option)); +#ifdef __cplusplus +}; // extern "C" +#endif +#define endmntent(x) ((int)1) + +#endif /* _MNTENT_H */ +#endif /* HAVE_MNTENT_H */ Added: head/audio/fogpad-lv2/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/fogpad-lv2/pkg-descr Sun Apr 19 23:26:42 2020 (r532164) @@ -0,0 +1,4 @@ +A reverb effect in which the reflections can be frozen, filtered, pitch shifted +and ultimately disintegrated. + +WWW: https://github.com/linuxmao-org/fogpad-port Added: head/audio/fogpad-lv2/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/fogpad-lv2/pkg-plist Sun Apr 19 23:26:42 2020 (r532164) @@ -0,0 +1,6 @@ +%%JACK%%bin/fogpad +lib/lv2/fogpad.lv2/fogpad_dsp.so +lib/lv2/fogpad.lv2/fogpad_dsp.ttl +lib/lv2/fogpad.lv2/fogpad_ui.so +lib/lv2/fogpad.lv2/fogpad_ui.ttl +lib/lv2/fogpad.lv2/manifest.ttl
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004192326.03JNQh3e046832>