*/*: sync with upstream

Taken from: FreeBSD
This commit is contained in:
Franco Fichtner 2022-01-03 11:55:03 +01:00
parent 07efaec964
commit 069f3654e0
3424 changed files with 32702 additions and 42050 deletions

View File

@ -1,5 +1,5 @@
PORTNAME= feedbackd
PORTVERSION= s20211019
PORTVERSION= s20211029
CATEGORIES= accessibility
MAINTAINER= jbeich@FreeBSD.org
@ -16,7 +16,7 @@ USE_GNOME= glib20
USE_LDCONFIG= yes
GL_SITE= https://source.puri.sm
GL_ACCOUNT= Librem5
GL_COMMIT= 8e9bbd9d4ccc092a1f8b37551b7cdf2c32b5f8b8
GL_COMMIT= b2a8061cdc7be4fa76f7fa976c67bac4f5a0055c
SHEBANG_FILES= build-aux/post_install.py
GLIB_SCHEMAS= org.sigxcpu.feedbackd.gschema.xml

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1634653444
SHA256 (Librem5-feedbackd-8e9bbd9d4ccc092a1f8b37551b7cdf2c32b5f8b8_GL0.tar.gz) = 40cb77294faffec6523f760fe7a885f2cc1b9019127f0d342fbeb9b368f7b6e7
SIZE (Librem5-feedbackd-8e9bbd9d4ccc092a1f8b37551b7cdf2c32b5f8b8_GL0.tar.gz) = 81788
TIMESTAMP = 1640221574
SHA256 (Librem5-feedbackd-b2a8061cdc7be4fa76f7fa976c67bac4f5a0055c_GL0.tar.gz) = 39c65e958e55c6ee764712ec3dc8d3a238befb6c93aca19a7bd307bf75135439
SIZE (Librem5-feedbackd-b2a8061cdc7be4fa76f7fa976c67bac4f5a0055c_GL0.tar.gz) = 81798

View File

@ -1,15 +1,15 @@
PORTNAME= speech
DISTVERSION= ${QT5_VERSION}
PORTREVISION= 2
PORTVERSION= ${QT5_VERSION}${QT5_KDE_PATCH}
CATEGORIES= accessibility
PKGNAMEPREFIX= qt5-
MAINTAINER= kde@FreeBSD.org
COMMENT= Accessibilty features for Qt5
USES= compiler:c++11-lang gl pkgconfig qmake:outsource,norecursive \
USES= compiler:c++11-lang gl pkgconfig perl5 qmake:outsource,norecursive \
qt-dist:5,speech xorg
USE_GL= gl
USE_PERL5= extract
USE_QT= core gui buildtools_build qmake_build
OPTIONS_DEFINE= ALSA

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1639423750
SHA256 (KDE/Qt/5.15.2/kde-qtspeech-5.15.2p2.tar.xz) = 83f3543ef261b7603615fd07a3f9d938ba1377aa2a955e449b0cc87efd543989
SIZE (KDE/Qt/5.15.2/kde-qtspeech-5.15.2p2.tar.xz) = 80208

View File

@ -1,6 +1,5 @@
PORTNAME= 7-zip
DISTVERSION= 21.06
PORTREVISION= 1
DISTVERSION= 21.07
CATEGORIES= archivers
MASTER_SITES= https://www.7-zip.org/a/
DISTNAME= 7z${DISTVERSION:S/.//}-src
@ -28,7 +27,8 @@ MAKE_ARGS= LOCAL_FLAGS="${CFLAGS}" \
NO_WRKSUBDIR= yes
BUILD_WRKSRC= ${WRKSRC}/CPP/7zip/Bundles/Alone2
DOS2UNIX_FILES= CPP/7zip/7zip_gcc.mak \
DOS2UNIX_FILES= C/CpuArch.c \
CPP/7zip/7zip_gcc.mak \
CPP/7zip/var_gcc.mak \
CPP/Windows/SystemInfo.cpp

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1639126647
SHA256 (7z2106-src.7z) = 675eaa90de3c6a3cd69f567bba4faaea309199ca75a6ad12bac731dcdae717ac
SIZE (7z2106-src.7z) = 1215031
TIMESTAMP = 1640701508
SHA256 (7z2107-src.7z) = d1074d56f415aab99d99e597a7b66dc455dba6349ae8a4c89df76475b6a1284c
SIZE (7z2107-src.7z) = 1219373

View File

@ -1,4 +1,4 @@
--- CPP/Windows/SystemInfo.cpp.orig 2021-12-10 11:30:40 UTC
--- CPP/Windows/SystemInfo.cpp.orig 2021-12-28 14:08:56 UTC
+++ CPP/Windows/SystemInfo.cpp
@@ -20,6 +20,15 @@
@ -16,3 +16,12 @@
// #undef AT_HWCAP // to debug
// #undef AT_HWCAP2 // to debug
@@ -36,7 +45,7 @@
#endif
*/
-#ifdef MY_CPU_ARM_OR_ARM64
+#if defined(MY_CPU_ARM_OR_ARM64) && !defined(__FreeBSD__)
#include <asm/hwcap.h>
#endif
#endif

View File

@ -0,0 +1,34 @@
--- C/CpuArch.c.orig 2021-12-12 14:45:15 UTC
+++ C/CpuArch.c
@@ -417,6 +417,23 @@ BoolInt CPU_IsSupported_AES (void) { return APPLE_CRYP
#include <sys/auxv.h>
+#if defined(__FreeBSD__)
+static UInt64 get_hwcap() {
+ unsigned long hwcap;
+ if(elf_aux_info(AT_HWCAP, &hwcap, sizeof(unsigned long)) != 0) {
+ return(0);
+ }
+ return hwcap;
+}
+
+BoolInt CPU_IsSupported_CRC32(void) { return get_hwcap() & HWCAP_CRC32; }
+BoolInt CPU_IsSupported_NEON(void) { return 1; }
+BoolInt CPU_IsSupported_SHA1(void){ return get_hwcap() & HWCAP_SHA1; }
+BoolInt CPU_IsSupported_SHA2(void) { return get_hwcap() & HWCAP_SHA2; }
+BoolInt CPU_IsSupported_AES(void) { return get_hwcap() & HWCAP_AES; }
+
+#else // __FreeBSD__
+
#define USE_HWCAP
#ifdef USE_HWCAP
@@ -450,6 +467,7 @@ MY_HWCAP_CHECK_FUNC (SHA1)
MY_HWCAP_CHECK_FUNC (SHA2)
MY_HWCAP_CHECK_FUNC (AES)
+#endif // FreeBSD
#endif // __APPLE__
#endif // _WIN32

View File

@ -133,7 +133,6 @@
SUBDIR += p5-PerlIO-gzip
SUBDIR += p5-PerlIO-via-Bzip2
SUBDIR += p7zip
SUBDIR += p7zip-codec-rar
SUBDIR += packddir
SUBDIR += paq
SUBDIR += par
@ -162,9 +161,13 @@
SUBDIR += php74-zip
SUBDIR += php74-zlib
SUBDIR += php80-bz2
SUBDIR += php81-bz2
SUBDIR += php80-phar
SUBDIR += php81-phar
SUBDIR += php80-zip
SUBDIR += php81-zip
SUBDIR += php80-zlib
SUBDIR += php81-zlib
SUBDIR += pigz
SUBDIR += pixz
SUBDIR += plzip

View File

@ -1,6 +1,6 @@
PORTNAME= nfpm
DISTVERSIONPREFIX= v
DISTVERSION= 2.8.0
DISTVERSION= 2.11.3
CATEGORIES= archivers
MAINTAINER= yuri@FreeBSD.org

View File

@ -1,5 +1,5 @@
TIMESTAMP = 1636305598
SHA256 (go/archivers_nfpm/nfpm-v2.8.0/v2.8.0.mod) = 7cba7c05e82108ccc47dd5a038e8c517ae86ffbe929c3443a9989ecad4d8b2eb
SIZE (go/archivers_nfpm/nfpm-v2.8.0/v2.8.0.mod) = 2904
SHA256 (go/archivers_nfpm/nfpm-v2.8.0/v2.8.0.zip) = dd8871575fcf82e4f2b8ece6eb3735d67da13eb08f706915fda48b18ec06bae3
SIZE (go/archivers_nfpm/nfpm-v2.8.0/v2.8.0.zip) = 504646
TIMESTAMP = 1640836932
SHA256 (go/archivers_nfpm/nfpm-v2.11.3/v2.11.3.mod) = 16939a0ac3af712328bdec0f197f8d817b57063fcad46c39627f4578ea72b71a
SIZE (go/archivers_nfpm/nfpm-v2.11.3/v2.11.3.mod) = 2815
SHA256 (go/archivers_nfpm/nfpm-v2.11.3/v2.11.3.zip) = 6251580625b3823eaee71aa1df929e50fdcb1a2fd4a7ab545ac1856f088c22d4
SIZE (go/archivers_nfpm/nfpm-v2.11.3/v2.11.3.zip) = 517500

View File

@ -1,23 +0,0 @@
PKGNAMESUFFIX= -codec-rar
PORTREVISION= 2
COMMENT= RAR decoder codec for p7zip
LICENSE= LGPL21 UNRAR
LICENSE_COMB= multi
LICENSE_NAME_UNRAR= unRAR usage restriction license
LICENSE_FILE_UNRAR= ${WRKSRC}/DOC/unRarLicense.txt
LICENSE_PERMS_UNRAR= auto-accept dist-mirror dist-sell pkg-mirror pkg-sell
MASTERDIR= ${.CURDIR}/../p7zip
ALL_TARGET= common7z
DESCR= ${.CURDIR}/pkg-descr
PLIST= ${.CURDIR}/pkg-plist
OPTIONS_EXCLUDE= DOCS
do-install:
${MKDIR} ${STAGEDIR}${PREFIX}/libexec/p7zip/Codecs
${INSTALL_LIB} ${WRKSRC}/bin/Codecs/Rar.so ${STAGEDIR}${PREFIX}/libexec/p7zip/Codecs
.include "${MASTERDIR}/Makefile"

View File

@ -1,3 +0,0 @@
A codec for uncompressing RAR files using the p7zip archiver.
WWW: http://p7zip.sourceforge.net/

View File

@ -1 +0,0 @@
libexec/p7zip/Codecs/Rar.so

View File

@ -0,0 +1,7 @@
CATEGORIES= archivers
MASTERDIR= ${.CURDIR}/../../lang/php81
PKGNAMESUFFIX= -bz2
.include "${MASTERDIR}/Makefile"

View File

@ -0,0 +1,7 @@
CATEGORIES= archivers
MASTERDIR= ${.CURDIR}/../../lang/php81
PKGNAMESUFFIX= -phar
.include "${MASTERDIR}/Makefile"

View File

@ -0,0 +1,41 @@
--- config.m4.orig 2016-06-21 19:56:50 UTC
+++ config.m4
@@ -4,8 +4,38 @@ dnl config.m4 for extension phar
PHP_ARG_ENABLE(phar, for phar archive support,
[ --disable-phar Disable phar support], yes)
+PHP_ARG_WITH(pcre-dir, pcre install prefix,
+[ --with-pcre-dir PHAR: pcre install prefix], no, no)
+
+
if test "$PHP_PHAR" != "no"; then
+
+ dnl This is PECL build, check if bundled PCRE library is used
+ old_CPPFLAGS=$CPPFLAGS
+ CPPFLAGS=$INCLUDES
+ AC_EGREP_CPP(yes,[
+#include <main/php_config.h>
+#if defined(HAVE_BUNDLED_PCRE) && !defined(COMPILE_DL_PCRE)
+yes
+#endif
+ ],[
+ PHP_PCRE_REGEX=yes
+ ],[
+ AC_EGREP_CPP(yes,[
+#include <main/php_config.h>
+#if defined(HAVE_PCRE) && !defined(COMPILE_DL_PCRE)
+yes
+#endif
+ ],[
+ PHP_PCRE_REGEX=pecl
+ PHP_ADD_INCLUDE($PHP_PCRE_DIR/include)
+ ],[
+ PHP_PCRE_REGEX=no
+ ])
+ ])
+
PHP_NEW_EXTENSION(phar, util.c tar.c zip.c stream.c func_interceptors.c dirstream.c phar.c phar_object.c phar_path_check.c, $ext_shared,, -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1)
+ PHP_HASH=yes
AC_MSG_CHECKING([for phar openssl support])
if test "$PHP_HASH_SHARED" != "yes"; then
if test "$PHP_HASH" != "no"; then

View File

@ -0,0 +1,7 @@
CATEGORIES= archivers
MASTERDIR= ${.CURDIR}/../../lang/php81
PKGNAMESUFFIX= -zip
.include "${MASTERDIR}/Makefile"

View File

@ -0,0 +1,7 @@
CATEGORIES= archivers
MASTERDIR= ${.CURDIR}/../../lang/php81
PKGNAMESUFFIX= -zlib
.include "${MASTERDIR}/Makefile"

View File

@ -0,0 +1,10 @@
--- zlib.c.orig 2016-06-21 19:57:08 UTC
+++ zlib.c
@@ -1480,6 +1480,7 @@ static PHP_MSHUTDOWN_FUNCTION(zlib)
/* {{{ PHP_RINIT_FUNCTION */
static PHP_RINIT_FUNCTION(zlib)
{
+ ZLIBG(output_compression) = 0;
ZLIBG(compression_coding) = 0;
if (!ZLIBG(handler_registered)) {
ZLIBG(output_compression) = ZLIBG(output_compression_default);

View File

@ -1,7 +1,7 @@
# Created by: Yuri Victorovich <yuri@rawbw.com>
PORTNAME= python-lzo
DISTVERSION= 1.12
DISTVERSION= 1.14
CATEGORIES= archivers python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1527456280
SHA256 (python-lzo-1.12.tar.gz) = 97a8e46825e8f1abd84c2a3372bc09adae9745a5be5d3af2692cd850dac35345
SIZE (python-lzo-1.12.tar.gz) = 14042
TIMESTAMP = 1640837881
SHA256 (python-lzo-1.14.tar.gz) = 83cbd8ecaae284735250e31d6c0ecc18ac08763fab2a8c910dc5a6910db6250c
SIZE (python-lzo-1.14.tar.gz) = 14050

View File

@ -6,22 +6,23 @@ PORTREVISION= 5
CATEGORIES= archivers devel
MASTER_SITES= http://www.oberhumer.com/opensource/ucl/download/
MAINTAINER= ports@FreeBSD.org
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Data compression library with low memory usage
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/COPYING
CONFLICTS_INSTALL= libucl
USES= libtool
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-shared
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
INSTALL_TARGET= install-strip
USE_LDCONFIG= yes
PORTDOCS= AUTHORS NEWS README THANKS TODO
CONFLICTS_INSTALL= libucl
OPTIONS_DEFINE= DOCS
post-install:

View File

@ -1,7 +1,9 @@
UCL is a portable lossless data compression library written in ANSI C.
UCL implements a number of compression algorithms that achieve an excellent
compression ratio while allowing *very* fast decompression. Decompression
compression ratio while allowing *very* fast decompression. Decompression
requires no additional memory.
WWW: http://www.oberhumer.com/opensource/ucl
UCL is an OpenSource re-implementation of some NRV compression algorithms.
WWW: https://www.oberhumer.com/opensource/ucl/

View File

@ -1,11 +1,11 @@
# Created by: Max Khon <fjoe@FreeBSD.org>
PORTNAME= upx
PORTVERSION= 3.96
DISTVERSIONPREFIX= v
DISTVERSION= 3.95
CATEGORIES= archivers
MAINTAINER= ports@FreeBSD.org
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Ultimate Packer for eXecutables
LICENSE= GPLv2+
@ -14,30 +14,21 @@ LICENSE_FILE= ${WRKSRC}/LICENSE
LIB_DEPENDS= libucl.so:archivers/ucl
USES= cpe gmake perl5
USE_GITHUB= yes
USE_PERL5= build # provides pod2man/pod2html/pod2text required for docs
CPE_VENDOR= upx_project
GH_TUPLE= upx:upx-lzma-sdk:${DISTVERSIONPREFIX}${DISTVERSION}:lzma/src/lzma-sdk
USE_PERL5= build
MAKE_ENV= UPX_UCLDIR=${LOCALBASE} \
target=freebsd
PORTDOCS= BUGS COPYING LICENSE NEWS PROJECTS README \
README.1ST README.SRC THANKS
PLIST_FILES= bin/upx \
man/man1/upx.1.gz
OPTIONS_DEFINE= DOCS
CPE_VENDOR= upx_project
GH_TUPLE= upx:upx-lzma-sdk:v${PORTVERSION}:lzma/src/lzma-sdk
USE_GITHUB= yes
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/upx.out ${STAGEDIR}${PREFIX}/bin/upx
${INSTALL_MAN} ${WRKSRC}/doc/upx.1 ${STAGEDIR}${MANPREFIX}/man/man1
post-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
${INSTALL_MAN} ${WRKSRC}/doc/upx.1 ${STAGEDIR}${PREFIX}/man/man1
.include <bsd.port.mk>

View File

@ -1,5 +1,5 @@
TIMESTAMP = 1544570151
SHA256 (upx-upx-v3.95_GH0.tar.gz) = fdb79c8238360115770e9c13bdaeb48da6fb09c813b0a461c5f9faee176d6fb9
SIZE (upx-upx-v3.95_GH0.tar.gz) = 1663470
SHA256 (upx-upx-lzma-sdk-v3.95_GH0.tar.gz) = 4932ed7b79cf47aa91fe737c068f74553e17033161c7e7e532e4b967f02f1557
SIZE (upx-upx-lzma-sdk-v3.95_GH0.tar.gz) = 109697
TIMESTAMP = 1638556458
SHA256 (upx-upx-v3.96_GH0.tar.gz) = 6882b4ea89c7a0ed74b86d3c0f1d07814b492eaf649b43ab8b4dfefa9e2d7387
SIZE (upx-upx-v3.96_GH0.tar.gz) = 1676172
SHA256 (upx-upx-lzma-sdk-v3.96_GH0.tar.gz) = e465670abe0900a0995f7e6166bff86caed06b253f6ff02d6490df6263aecc67
SIZE (upx-upx-lzma-sdk-v3.96_GH0.tar.gz) = 109692

View File

@ -1,15 +1,6 @@
--- src/miniacc.h.orig 2017-05-12 11:01:20 UTC
--- src/miniacc.h.orig 2020-01-22 21:29:58 UTC
+++ src/miniacc.h
@@ -523,7 +523,7 @@
# if defined(_AIX) || defined(__AIX__) || defined(__aix__)
# define ACC_OS_POSIX_AIX 1
# define ACC_INFO_OS_POSIX "aix"
-# elif defined(__FreeBSD__)
+# elif defined(__FreeBSD__) || defined(__DragonFly__)
# define ACC_OS_POSIX_FREEBSD 1
# define ACC_INFO_OS_POSIX "freebsd"
# elif defined(__hpux__) || defined(__hpux)
@@ -2502,11 +2502,11 @@ ACC_COMPILE_TIME_ASSERT_HEADER(ACC_SIZEO
@@ -2547,11 +2547,11 @@ ACC_COMPILE_TIME_ASSERT_HEADER(ACC_SIZEOF_PTRDIFF_T ==
#elif !(ACC_ABI_BIG_ENDIAN) && !(ACC_ABI_LITTLE_ENDIAN)
#if (ACC_ARCH_ALPHA) && (ACC_ARCH_CRAY_MPP)
# define ACC_ABI_BIG_ENDIAN 1

View File

@ -0,0 +1,11 @@
--- src/p_mach.cpp.orig 2020-01-22 21:29:58 UTC
+++ src/p_mach.cpp
@@ -467,7 +467,7 @@ PackMachBase<T>::compare_segment_command(void const *c
if (a->vmsize) return -1; // 'a' is first
if (b->vmsize) return 1; // 'a' is last
// What could remain?
- return 0;
+ return 0;
}
#undef PAGE_MASK

View File

@ -1,12 +1,6 @@
UPX is a free, portable, extendable, high-performance executable
packer for several different executable formats. It achieves an
excellent compression ratio and offers very fast decompression.
Your executables suffer no memory overhead or other drawbacks
because of in-place decompression.
UPX is copyrighted software distributed under the terms of the
GNU General Public License, with special exceptions granting
the free usage for commercial programs as stated in the
UPX License Agreement.
UPX is a free, portable, extendable, high-performance executable packer for
several different executable formats. It achieves an excellent compression ratio
and offers very fast decompression. Your executables suffer no memory overhead
or other drawbacks because of in-place decompression.
WWW: https://upx.github.io/

View File

@ -1,6 +1,6 @@
PORTNAME= zstr
DISTVERSIONPREFIX= v
DISTVERSION= 1.0.4
DISTVERSION= 1.0.5
CATEGORIES= archivers devel
MAINTAINER= yuri@FreeBSD.org

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1610695544
SHA256 (mateidavid-zstr-v1.0.4_GH0.tar.gz) = a594a3a9c192a6d9e93f9585910d41f7ee6791eb7c454d40c922656324b3058e
SIZE (mateidavid-zstr-v1.0.4_GH0.tar.gz) = 11326
TIMESTAMP = 1640221804
SHA256 (mateidavid-zstr-v1.0.5_GH0.tar.gz) = c6ae65f1ed97f8fe2e9b0fa7d71a0980151e3936ec50d17403b8d233efa8276d
SIZE (mateidavid-zstr-v1.0.5_GH0.tar.gz) = 12131

View File

@ -11,7 +11,6 @@
SUBDIR += geographiclib
SUBDIR += gkrellmoon2
SUBDIR += gnuastro
SUBDIR += google-earth
SUBDIR += gpsbabel
SUBDIR += gpsbabel14
SUBDIR += gpscorrelate

View File

@ -1,46 +0,0 @@
PORTNAME= google-earth
PORTVERSION= 7.1.7.2606
PORTREVISION= 1
PORTEPOCH= 3
CATEGORIES= astro deskutils geography
MASTER_SITES= https://dl.google.com/dl/earth/client/current/
DISTFILES_amd64=google-earth-stable_current_x86_64.rpm
DISTFILES_i386= google-earth-stable_current_i386.rpm
DIST_SUBDIR= ${PORTNAME}/${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Virtual globe, map and geographical information program
# Converted from RESTRICTED
LICENSE= GEARTH
LICENSE_NAME= Google Earth
LICENSE_TEXT= Not really sure about the redistribution terms
LICENSE_PERMS= auto-accept
DEPRECATED= Needs newer version to connect to server
EXPIRATION_DATE=2022-01-01
NO_BUILD= yes
NO_WRKSUBDIR= yes
PLIST_SUB= LINUXBASE=${LINUXBASE}
USES= desktop-file-utils linux
USE_LINUX= dri xorglibs
post-patch:
@${SED} -i '' 's/^Exec=[^[:space:]]*/Exec=googleearth/' \
${WRKSRC}/opt/google/earth/free/google-earth.desktop
do-install:
.for s in 16 22 24 32 48 64 128 256
${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/${s}x${s}/apps
${INSTALL_DATA} ${WRKSRC}/opt/google/earth/free/product_logo_${s}.png \
${STAGEDIR}${PREFIX}/share/icons/hicolor/${s}x${s}/apps/google-earth.png
.endfor
${INSTALL_DATA} ${WRKSRC}/opt/google/earth/free/google-earth.desktop \
${STAGEDIR}${DESKTOPDIR}
${MKDIR} ${STAGEDIR}${LINUXBASE}
(cd ${WRKSRC} && ${COPYTREE_SHARE} opt ${STAGEDIR}${LINUXBASE})
${CHMOD} +x ${STAGEDIR}${LINUXBASE}/opt/google/earth/free/googleearth-bin
${INSTALL_SCRIPT} ${FILESDIR}/googleearth ${STAGEDIR}${PREFIX}/bin
.include <bsd.port.mk>

View File

@ -1,5 +0,0 @@
TIMESTAMP = 1485895464
SHA256 (google-earth/7.1.7.2606/google-earth-stable_current_i386.rpm) = 0e8d1af7008ef1df0d40561a329b3ea7ccad0c5ca7dd647968f623769b56dd86
SIZE (google-earth/7.1.7.2606/google-earth-stable_current_i386.rpm) = 59902359
SHA256 (google-earth/7.1.7.2606/google-earth-stable_current_x86_64.rpm) = 18206397baa74f729eb7e8ca65f75cd6c40343cce37a5e623cd7dba1a3835cfd
SIZE (google-earth/7.1.7.2606/google-earth-stable_current_x86_64.rpm) = 61599864

View File

@ -1,2 +0,0 @@
#! /bin/sh
exec /compat/linux/bin/sh /opt/google/earth/free/googleearth "$@"

View File

@ -1,13 +0,0 @@
Explore the world with Google Earth. View satellite imagery, maps, terrain,
3D buildings, galaxies far in space, and the deepest depths of the ocean.
Available features include:
- Explore rich geographical content
- Zoom from outer space to street level
- Search for business locations
- Visualize your GPS tracks and share with others
- Fly around cities (or the entire world) in 3D
- Go back in time with historical imagery
- Dive beneath the surface of the ocean
WWW: https://www.google.com/earth/

View File

@ -1,12 +0,0 @@
[
{ type: install
message: <<EOM
Google Earth needs linprocfs mounted on /compat/linux/proc. Add the
following line to /etc/fstab:
linprocfs /compat/linux/proc linprocfs rw 0 0
Then run "mount /compat/linux/proc".
EOM
}
]

View File

@ -1,282 +0,0 @@
%%LINUXBASE%%/opt/google/earth/free/ImporterGlobalSettings.ini
%%LINUXBASE%%/opt/google/earth/free/ImporterUISettings.ini
%%LINUXBASE%%/opt/google/earth/free/PCOptimizations.ini
%%LINUXBASE%%/opt/google/earth/free/drivers.ini
%%LINUXBASE%%/opt/google/earth/free/google-earth
%%LINUXBASE%%/opt/google/earth/free/google-earth.desktop
%%LINUXBASE%%/opt/google/earth/free/googleearth
%%LINUXBASE%%/opt/google/earth/free/googleearth-bin
%%LINUXBASE%%/opt/google/earth/free/gpl.txt
%%LINUXBASE%%/opt/google/earth/free/gpsbabel
%%LINUXBASE%%/opt/google/earth/free/kh20
%%LINUXBASE%%/opt/google/earth/free/lang/ar.qm
%%LINUXBASE%%/opt/google/earth/free/lang/bg.qm
%%LINUXBASE%%/opt/google/earth/free/lang/ca.qm
%%LINUXBASE%%/opt/google/earth/free/lang/cs.qm
%%LINUXBASE%%/opt/google/earth/free/lang/da.qm
%%LINUXBASE%%/opt/google/earth/free/lang/de.qm
%%LINUXBASE%%/opt/google/earth/free/lang/el.qm
%%LINUXBASE%%/opt/google/earth/free/lang/en.qm
%%LINUXBASE%%/opt/google/earth/free/lang/es-419.qm
%%LINUXBASE%%/opt/google/earth/free/lang/es.qm
%%LINUXBASE%%/opt/google/earth/free/lang/fa.qm
%%LINUXBASE%%/opt/google/earth/free/lang/fi.qm
%%LINUXBASE%%/opt/google/earth/free/lang/fil.qm
%%LINUXBASE%%/opt/google/earth/free/lang/fr.qm
%%LINUXBASE%%/opt/google/earth/free/lang/he.qm
%%LINUXBASE%%/opt/google/earth/free/lang/hi.qm
%%LINUXBASE%%/opt/google/earth/free/lang/hr.qm
%%LINUXBASE%%/opt/google/earth/free/lang/hu.qm
%%LINUXBASE%%/opt/google/earth/free/lang/id.qm
%%LINUXBASE%%/opt/google/earth/free/lang/it.qm
%%LINUXBASE%%/opt/google/earth/free/lang/ja.qm
%%LINUXBASE%%/opt/google/earth/free/lang/ko.qm
%%LINUXBASE%%/opt/google/earth/free/lang/lt.qm
%%LINUXBASE%%/opt/google/earth/free/lang/lv.qm
%%LINUXBASE%%/opt/google/earth/free/lang/nl.qm
%%LINUXBASE%%/opt/google/earth/free/lang/no.qm
%%LINUXBASE%%/opt/google/earth/free/lang/pl.qm
%%LINUXBASE%%/opt/google/earth/free/lang/pt-PT.qm
%%LINUXBASE%%/opt/google/earth/free/lang/pt.qm
%%LINUXBASE%%/opt/google/earth/free/lang/ro.qm
%%LINUXBASE%%/opt/google/earth/free/lang/ru.qm
%%LINUXBASE%%/opt/google/earth/free/lang/sk.qm
%%LINUXBASE%%/opt/google/earth/free/lang/sl.qm
%%LINUXBASE%%/opt/google/earth/free/lang/sr.qm
%%LINUXBASE%%/opt/google/earth/free/lang/sv.qm
%%LINUXBASE%%/opt/google/earth/free/lang/th.qm
%%LINUXBASE%%/opt/google/earth/free/lang/tr.qm
%%LINUXBASE%%/opt/google/earth/free/lang/uk.qm
%%LINUXBASE%%/opt/google/earth/free/lang/vi.qm
%%LINUXBASE%%/opt/google/earth/free/lang/zh-Hans.qm
%%LINUXBASE%%/opt/google/earth/free/lang/zh-Hant-HK.qm
%%LINUXBASE%%/opt/google/earth/free/lang/zh-Hant.qm
%%LINUXBASE%%/opt/google/earth/free/libIGAttrs.so
%%LINUXBASE%%/opt/google/earth/free/libIGCore.so
%%LINUXBASE%%/opt/google/earth/free/libIGExportCommon.so
%%LINUXBASE%%/opt/google/earth/free/libIGGfx.so
%%LINUXBASE%%/opt/google/earth/free/libIGMath.so
%%LINUXBASE%%/opt/google/earth/free/libIGOpt.so
%%LINUXBASE%%/opt/google/earth/free/libIGSg.so
%%LINUXBASE%%/opt/google/earth/free/libIGUtils.so
%%LINUXBASE%%/opt/google/earth/free/libLeap.so
%%LINUXBASE%%/opt/google/earth/free/libQtCore.so.4
%%LINUXBASE%%/opt/google/earth/free/libQtGui.so.4
%%LINUXBASE%%/opt/google/earth/free/libQtNetwork.so.4
%%LINUXBASE%%/opt/google/earth/free/libQtWebKit.so.4
%%LINUXBASE%%/opt/google/earth/free/libaction.so
%%LINUXBASE%%/opt/google/earth/free/libalchemyext.so
%%LINUXBASE%%/opt/google/earth/free/libapiloader.so
%%LINUXBASE%%/opt/google/earth/free/libauth.so
%%LINUXBASE%%/opt/google/earth/free/libbase.so
%%LINUXBASE%%/opt/google/earth/free/libbasicingest.so
%%LINUXBASE%%/opt/google/earth/free/libcollada.so
%%LINUXBASE%%/opt/google/earth/free/libcommon.so
%%LINUXBASE%%/opt/google/earth/free/libcommon_gui.so
%%LINUXBASE%%/opt/google/earth/free/libcommon_platform.so
%%LINUXBASE%%/opt/google/earth/free/libcommon_webbrowser.so
%%LINUXBASE%%/opt/google/earth/free/libcomponentframework.so
%%LINUXBASE%%/opt/google/earth/free/libevll.so
%%LINUXBASE%%/opt/google/earth/free/libexpat.so.1
%%LINUXBASE%%/opt/google/earth/free/libfilmstrip.so
%%LINUXBASE%%/opt/google/earth/free/libflightsim.so
%%LINUXBASE%%/opt/google/earth/free/libfreebl3.so
%%LINUXBASE%%/opt/google/earth/free/libfusioncommon.so
%%LINUXBASE%%/opt/google/earth/free/libgdal.so.1
%%LINUXBASE%%/opt/google/earth/free/libgdata.so
%%LINUXBASE%%/opt/google/earth/free/libge_cache.so
%%LINUXBASE%%/opt/google/earth/free/libge_chrome_net.so
%%LINUXBASE%%/opt/google/earth/free/libge_net.so
%%LINUXBASE%%/opt/google/earth/free/libgeobase.so
%%LINUXBASE%%/opt/google/earth/free/libgeobaseutils.so
%%LINUXBASE%%/opt/google/earth/free/libglobalnew.so
%%LINUXBASE%%/opt/google/earth/free/libgoogleapi.so
%%LINUXBASE%%/opt/google/earth/free/libgoogleearth_free.so
%%LINUXBASE%%/opt/google/earth/free/libgooglesearch.so
%%LINUXBASE%%/opt/google/earth/free/libgps.so
%%LINUXBASE%%/opt/google/earth/free/libicudata.so.50
%%LINUXBASE%%/opt/google/earth/free/libicuuc.so.50
%%LINUXBASE%%/opt/google/earth/free/libinput_plugin.so
%%LINUXBASE%%/opt/google/earth/free/liblayer.so
%%LINUXBASE%%/opt/google/earth/free/liblayout.so
%%LINUXBASE%%/opt/google/earth/free/libmaps.so
%%LINUXBASE%%/opt/google/earth/free/libmath.so
%%LINUXBASE%%/opt/google/earth/free/libmeasure.so
%%LINUXBASE%%/opt/google/earth/free/libmoduleframework.so
%%LINUXBASE%%/opt/google/earth/free/libnavigate.so
%%LINUXBASE%%/opt/google/earth/free/libnspr4.so
%%LINUXBASE%%/opt/google/earth/free/libnss3.so
%%LINUXBASE%%/opt/google/earth/free/libnssckbi.so
%%LINUXBASE%%/opt/google/earth/free/libnssdbm3.so
%%LINUXBASE%%/opt/google/earth/free/libnsssysinit.so
%%LINUXBASE%%/opt/google/earth/free/libnssutil3.so
%%LINUXBASE%%/opt/google/earth/free/libplc4.so
%%LINUXBASE%%/opt/google/earth/free/libplds4.so
%%LINUXBASE%%/opt/google/earth/free/libport.so
%%LINUXBASE%%/opt/google/earth/free/libprintmodule.so
%%LINUXBASE%%/opt/google/earth/free/libprofile.so
%%LINUXBASE%%/opt/google/earth/free/libproj.so.0
%%LINUXBASE%%/opt/google/earth/free/librender.so
%%LINUXBASE%%/opt/google/earth/free/libreporting.so
%%LINUXBASE%%/opt/google/earth/free/libsearch.so
%%LINUXBASE%%/opt/google/earth/free/libsearchmodule.so
%%LINUXBASE%%/opt/google/earth/free/libsgutil.so
%%LINUXBASE%%/opt/google/earth/free/libsmime3.so
%%LINUXBASE%%/opt/google/earth/free/libsoftokn3.so
%%LINUXBASE%%/opt/google/earth/free/libspatial.so
%%LINUXBASE%%/opt/google/earth/free/libsqlite3.so
%%LINUXBASE%%/opt/google/earth/free/libssl3.so
%%LINUXBASE%%/opt/google/earth/free/libviewsync.so
%%LINUXBASE%%/opt/google/earth/free/libwebbrowser.so
%%LINUXBASE%%/opt/google/earth/free/libwmsbase.so
%%LINUXBASE%%/opt/google/earth/free/libxsltransform.so
%%LINUXBASE%%/opt/google/earth/free/plugins/imageformats/libqgif.so
%%LINUXBASE%%/opt/google/earth/free/plugins/imageformats/libqjpeg.so
%%LINUXBASE%%/opt/google/earth/free/plugins/libnpgeinprocessplugin.so
%%LINUXBASE%%/opt/google/earth/free/product_logo_128.png
%%LINUXBASE%%/opt/google/earth/free/product_logo_16.png
%%LINUXBASE%%/opt/google/earth/free/product_logo_22.png
%%LINUXBASE%%/opt/google/earth/free/product_logo_24.png
%%LINUXBASE%%/opt/google/earth/free/product_logo_256.png
%%LINUXBASE%%/opt/google/earth/free/product_logo_32.png
%%LINUXBASE%%/opt/google/earth/free/product_logo_32.xpm
%%LINUXBASE%%/opt/google/earth/free/product_logo_48.png
%%LINUXBASE%%/opt/google/earth/free/product_logo_64.png
%%LINUXBASE%%/opt/google/earth/free/resources/application.rcc
%%LINUXBASE%%/opt/google/earth/free/resources/balloons.rcc
%%LINUXBASE%%/opt/google/earth/free/resources/builtin_webdata.rcc
%%LINUXBASE%%/opt/google/earth/free/resources/cursor_crosshair_inverse.png
%%LINUXBASE%%/opt/google/earth/free/resources/cursor_crosshair_thick.png
%%LINUXBASE%%/opt/google/earth/free/resources/default_myplaces.rcc
%%LINUXBASE%%/opt/google/earth/free/resources/doppler.txt
%%LINUXBASE%%/opt/google/earth/free/resources/effects.rcc
%%LINUXBASE%%/opt/google/earth/free/resources/filmstrip.rcc
%%LINUXBASE%%/opt/google/earth/free/resources/flightsim/aircraft/f16.acf
%%LINUXBASE%%/opt/google/earth/free/resources/flightsim/aircraft/sr22.acf
%%LINUXBASE%%/opt/google/earth/free/resources/flightsim/controller/generic.ini
%%LINUXBASE%%/opt/google/earth/free/resources/flightsim/controller/genius_maxfighter_f16u.ini
%%LINUXBASE%%/opt/google/earth/free/resources/flightsim/controller/logitech_attack3.ini
%%LINUXBASE%%/opt/google/earth/free/resources/flightsim/controller/logitech_extreme_3d.ini
%%LINUXBASE%%/opt/google/earth/free/resources/flightsim/controller/logitech_force_3d.ini
%%LINUXBASE%%/opt/google/earth/free/resources/flightsim/controller/logitech_freedom.ini
%%LINUXBASE%%/opt/google/earth/free/resources/flightsim/controller/saitek_cyborg_evo.ini
%%LINUXBASE%%/opt/google/earth/free/resources/flightsim/controller/saitek_x52.ini
%%LINUXBASE%%/opt/google/earth/free/resources/flightsim/controller/speed_link_black_hawk.ini
%%LINUXBASE%%/opt/google/earth/free/resources/flightsim/controller/speed_link_black_widow.ini
%%LINUXBASE%%/opt/google/earth/free/resources/flightsim/controller/speed_link_cougar_flightstick.ini
%%LINUXBASE%%/opt/google/earth/free/resources/flightsim/controller/speed_link_dark_tornado.ini
%%LINUXBASE%%/opt/google/earth/free/resources/flightsim/controller/xbox_360.ini
%%LINUXBASE%%/opt/google/earth/free/resources/flightsim/flightsim.ini
%%LINUXBASE%%/opt/google/earth/free/resources/flightsim/hud/generic.ini
%%LINUXBASE%%/opt/google/earth/free/resources/flightsim/hud/sr22.ini
%%LINUXBASE%%/opt/google/earth/free/resources/flightsim/keyboard/generic.ini
%%LINUXBASE%%/opt/google/earth/free/resources/flightsim/keyboard/sr22.ini
%%LINUXBASE%%/opt/google/earth/free/resources/flightsim/planet/earth.ini
%%LINUXBASE%%/opt/google/earth/free/resources/leftpanel-common.rcc
%%LINUXBASE%%/opt/google/earth/free/resources/leftpanel-layer.rcc
%%LINUXBASE%%/opt/google/earth/free/resources/localshapes.rcc
%%LINUXBASE%%/opt/google/earth/free/resources/mouse3dgui.rcc
%%LINUXBASE%%/opt/google/earth/free/resources/navcontrols.rcc
%%LINUXBASE%%/opt/google/earth/free/resources/notifications.rcc
%%LINUXBASE%%/opt/google/earth/free/resources/print.rcc
%%LINUXBASE%%/opt/google/earth/free/resources/progress.rcc
%%LINUXBASE%%/opt/google/earth/free/resources/renderui.rcc
%%LINUXBASE%%/opt/google/earth/free/resources/search.rcc
%%LINUXBASE%%/opt/google/earth/free/resources/spin_icon.png
%%LINUXBASE%%/opt/google/earth/free/resources/startinglocations-nonmac.rcc
%%LINUXBASE%%/opt/google/earth/free/resources/startinglocations.rcc
%%LINUXBASE%%/opt/google/earth/free/resources/statusbar.rcc
%%LINUXBASE%%/opt/google/earth/free/resources/terrainmgr.rcc
%%LINUXBASE%%/opt/google/earth/free/resources/tmcontrols.rcc
%%LINUXBASE%%/opt/google/earth/free/resources/toolbar.rcc
%%LINUXBASE%%/opt/google/earth/free/resources/tourcontrols.rcc
%%LINUXBASE%%/opt/google/earth/free/resources/unknown_plugin.png
%%LINUXBASE%%/opt/google/earth/free/resources/userpalette.kml
%%LINUXBASE%%/opt/google/earth/free/resources/webbrowser.rcc
%%LINUXBASE%%/opt/google/earth/free/shaders/atmosphere.glslesf
%%LINUXBASE%%/opt/google/earth/free/shaders/atmosphere.glslesv
%%LINUXBASE%%/opt/google/earth/free/shaders/atmosphere.glsllib
%%LINUXBASE%%/opt/google/earth/free/shaders/color.h
%%LINUXBASE%%/opt/google/earth/free/shaders/glsles.h
%%LINUXBASE%%/opt/google/earth/free/shaders/hammer_aitoff.glslesf
%%LINUXBASE%%/opt/google/earth/free/shaders/hammer_aitoff.glslesv
%%LINUXBASE%%/opt/google/earth/free/shaders/lighting.h
%%LINUXBASE%%/opt/google/earth/free/shaders/precipitation_double_cone.glslesf
%%LINUXBASE%%/opt/google/earth/free/shaders/precipitation_double_cone.glslesv
%%LINUXBASE%%/opt/google/earth/free/shaders/speedtree_configuration_glsles.h
%%LINUXBASE%%/opt/google/earth/free/shaders/speedtree_utils_glsles.h
%%LINUXBASE%%/opt/google/earth/free/shaders/stars.glslesf
%%LINUXBASE%%/opt/google/earth/free/shaders/stars.glslesv
%%LINUXBASE%%/opt/google/earth/free/shaders/stbillboard.arbfp1
%%LINUXBASE%%/opt/google/earth/free/shaders/stbillboard.arbvp1
%%LINUXBASE%%/opt/google/earth/free/shaders/stbillboard.asd
%%LINUXBASE%%/opt/google/earth/free/shaders/stbillboard.cfg
%%LINUXBASE%%/opt/google/earth/free/shaders/stbillboard.glslesf
%%LINUXBASE%%/opt/google/earth/free/shaders/stbillboard.glslesv
%%LINUXBASE%%/opt/google/earth/free/shaders/stbillboard.ps_2_0
%%LINUXBASE%%/opt/google/earth/free/shaders/stbillboard.vs_2_0
%%LINUXBASE%%/opt/google/earth/free/shaders/stbranch.arbfp1
%%LINUXBASE%%/opt/google/earth/free/shaders/stbranch.arbvp1
%%LINUXBASE%%/opt/google/earth/free/shaders/stbranch.asd
%%LINUXBASE%%/opt/google/earth/free/shaders/stbranch.cfg
%%LINUXBASE%%/opt/google/earth/free/shaders/stbranch.glslesf
%%LINUXBASE%%/opt/google/earth/free/shaders/stbranch.glslesv
%%LINUXBASE%%/opt/google/earth/free/shaders/stbranch.ps_2_0
%%LINUXBASE%%/opt/google/earth/free/shaders/stbranch.vs_2_0
%%LINUXBASE%%/opt/google/earth/free/shaders/stcommonobjects.ini
%%LINUXBASE%%/opt/google/earth/free/shaders/stfrond.arbfp1
%%LINUXBASE%%/opt/google/earth/free/shaders/stfrond.arbvp1
%%LINUXBASE%%/opt/google/earth/free/shaders/stfrond.asd
%%LINUXBASE%%/opt/google/earth/free/shaders/stfrond.cfg
%%LINUXBASE%%/opt/google/earth/free/shaders/stfrond.glslesf
%%LINUXBASE%%/opt/google/earth/free/shaders/stfrond.glslesv
%%LINUXBASE%%/opt/google/earth/free/shaders/stfrond.ps_2_0
%%LINUXBASE%%/opt/google/earth/free/shaders/stfrond.vs_2_0
%%LINUXBASE%%/opt/google/earth/free/shaders/stleafcard.arbfp1
%%LINUXBASE%%/opt/google/earth/free/shaders/stleafcard.arbvp1
%%LINUXBASE%%/opt/google/earth/free/shaders/stleafcard.asd
%%LINUXBASE%%/opt/google/earth/free/shaders/stleafcard.cfg
%%LINUXBASE%%/opt/google/earth/free/shaders/stleafcard.glslesf
%%LINUXBASE%%/opt/google/earth/free/shaders/stleafcard.glslesv
%%LINUXBASE%%/opt/google/earth/free/shaders/stleafcard.ps_2_0
%%LINUXBASE%%/opt/google/earth/free/shaders/stleafcard.vs_2_0
%%LINUXBASE%%/opt/google/earth/free/shaders/stleafmesh.arbfp1
%%LINUXBASE%%/opt/google/earth/free/shaders/stleafmesh.arbvp1
%%LINUXBASE%%/opt/google/earth/free/shaders/stleafmesh.asd
%%LINUXBASE%%/opt/google/earth/free/shaders/stleafmesh.cfg
%%LINUXBASE%%/opt/google/earth/free/shaders/stleafmesh.glslesf
%%LINUXBASE%%/opt/google/earth/free/shaders/stleafmesh.glslesv
%%LINUXBASE%%/opt/google/earth/free/shaders/stleafmesh.ps_2_0
%%LINUXBASE%%/opt/google/earth/free/shaders/stleafmesh.vs_2_0
%%LINUXBASE%%/opt/google/earth/free/shaders/viewshed.h
%%LINUXBASE%%/opt/google/earth/free/shaders/water.glsllib
%%LINUXBASE%%/opt/google/earth/free/shaders/watersurface.glslesf
%%LINUXBASE%%/opt/google/earth/free/shaders/watersurface.glslesv
%%LINUXBASE%%/opt/google/earth/free/xdg-mime
%%LINUXBASE%%/opt/google/earth/free/xdg-settings
bin/googleearth
share/applications/google-earth.desktop
share/icons/hicolor/128x128/apps/google-earth.png
share/icons/hicolor/16x16/apps/google-earth.png
share/icons/hicolor/22x22/apps/google-earth.png
share/icons/hicolor/24x24/apps/google-earth.png
share/icons/hicolor/256x256/apps/google-earth.png
share/icons/hicolor/32x32/apps/google-earth.png
share/icons/hicolor/48x48/apps/google-earth.png
share/icons/hicolor/64x64/apps/google-earth.png
@dir %%LINUXBASE%%/opt/google/earth/free/lang
@dir %%LINUXBASE%%/opt/google/earth/free/plugins/imageformats
@dir %%LINUXBASE%%/opt/google/earth/free/plugins
@dir %%LINUXBASE%%/opt/google/earth/free/resources/flightsim/aircraft
@dir %%LINUXBASE%%/opt/google/earth/free/resources/flightsim/controller
@dir %%LINUXBASE%%/opt/google/earth/free/resources/flightsim/hud
@dir %%LINUXBASE%%/opt/google/earth/free/resources/flightsim/keyboard
@dir %%LINUXBASE%%/opt/google/earth/free/resources/flightsim/planet
@dir %%LINUXBASE%%/opt/google/earth/free/resources/flightsim
@dir %%LINUXBASE%%/opt/google/earth/free/resources
@dir %%LINUXBASE%%/opt/google/earth/free/shaders
@dir %%LINUXBASE%%/opt/google/earth/free
@dir %%LINUXBASE%%/opt/google/earth
@dir %%LINUXBASE%%/opt/google
@dir %%LINUXBASE%%/opt
@dir %%LINUXBASE%%

View File

@ -1,5 +1,5 @@
PORTNAME= mkgmap
PORTVERSION= r4836
PORTVERSION= r4837
CATEGORIES= astro converters java
MASTER_SITES= https://www.mkgmap.org.uk/download/

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1639501856
SHA256 (mkgmap-r4836.tar.gz) = f9937975d56aa97349af6bd15ea07b2161a1d9d2647614960a64c791ad19a287
SIZE (mkgmap-r4836.tar.gz) = 3519469
TIMESTAMP = 1640690248
SHA256 (mkgmap-r4837.tar.gz) = 01042211323bab2528a0bfade9b849fcf2d4f60c6e3c7662946e0e6a874ee8dc
SIZE (mkgmap-r4837.tar.gz) = 3519623

View File

@ -1,7 +1,7 @@
# Created by: db
PORTNAME= ephem
PORTVERSION= 4.1.2
PORTVERSION= 4.1.3
CATEGORIES= astro math python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1638809855
SHA256 (ephem-4.1.2.tar.gz) = d65bf7c85d96ca830de82729d9ce54ba854a9625916d8765c1954c1f29680b76
SIZE (ephem-4.1.2.tar.gz) = 1254878
TIMESTAMP = 1640183112
SHA256 (ephem-4.1.3.tar.gz) = 7fa18685981ba528edd504052a9d5212a09aa5bf15c11a734edc6a86e8a8b56a
SIZE (ephem-4.1.3.tar.gz) = 1255144

View File

@ -1,7 +1,7 @@
# Created by: thierry@pompo.net
PORTNAME= jplephem
PORTVERSION= 2.16
PORTVERSION= 2.17
CATEGORIES= astro python
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1625477454
SHA256 (brandon-rhodes-python-jplephem-2.16_GH0.tar.gz) = 2643d94411d5f40b19afd31485722be7d53653a64504fd54853437dd392ae5f1
SIZE (brandon-rhodes-python-jplephem-2.16_GH0.tar.gz) = 59002295
TIMESTAMP = 1641053142
SHA256 (brandon-rhodes-python-jplephem-2.17_GH0.tar.gz) = c398154bc00c832238318ef5aa6ca198c9d0be78deca5e9ad0605810b018797e
SIZE (brandon-rhodes-python-jplephem-2.17_GH0.tar.gz) = 59002172

View File

@ -1,7 +1,7 @@
# Created by: Jean-Yves Lefort <jylefort@brutele.be>
PORTNAME= ${GH_ACCOUNT:tl}
PORTVERSION= 0.21.2
PORTVERSION= 0.21.3
DISTVERSIONPREFIX= v
CATEGORIES= astro
EXTRACT_ONLY= ${_DISTFILES:Nstars_*.cat:N*.pdf}
@ -25,7 +25,7 @@ PORTDOCS= CREDITS.md ChangeLog README.md \
stellarium_user_guide-${GUIDE_VERSION}-1.pdf
OPTIONS_DEFINE= DOCS GPS MORE_STARS MULTIMEDIA NLS SCRIPTS \
TEXTURES TELESCOPE
TELESCOPE TEST TEXTURES
OPTIONS_DEFAULT= GPS MULTIMEDIA SCRIPTS TELESCOPE
OPTIONS_SUB= yes
@ -58,6 +58,9 @@ SCRIPTS_CMAKE_OFF= -DENABLE_SCRIPTING:BOOL=OFF
TELESCOPE_USE= QT=serialport
TELESCOPE_CMAKE_OFF= -DUSE_PLUGIN_TELESCOPECONTROL:BOOL=OFF
TEST_USE= QT=testlib_build
TEST_CMAKE_ON= -DENABLE_TESTING:BOOL=ON
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MMORE_STARS}
@ -73,6 +76,10 @@ post-extract-DOCS-on:
@${LN} -sf ${_DISTDIR}/stellarium_user_guide-${GUIDE_VERSION}-1.pdf \
${WRKSRC}
post-patch:
@${REINPLACE_CMD} -e '/ADD_PLUGIN(OnlineQueries/s,1,0,' \
${WRKSRC}/CMakeLists.txt
post-install:
@${RMDIR} ${STAGEDIR}${DATADIR}/skycultures/greek_almagest/almstars
@ -96,4 +103,7 @@ post-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
do-test-TEST-on:
@cd ${TEST_WRKSRC} && ctest -C ${CMAKE_BUILD_TYPE} ${_MAKE_JOBS}
.include <bsd.port.mk>

View File

@ -1,8 +1,8 @@
TIMESTAMP = 1632756407
SHA256 (Stellarium-stellarium-v0.21.2_GH0.tar.gz) = 581732fc4912cd385c1b43d3dfff325757cd3951cc10416b11c35f6fa09ceccd
SIZE (Stellarium-stellarium-v0.21.2_GH0.tar.gz) = 387216665
SHA256 (stellarium_user_guide-0.21.2-1.pdf) = 6b66ae89ec84f90292eb7e88cd1364131de09fcb0f75d2cc53bfaa037fe27453
SIZE (stellarium_user_guide-0.21.2-1.pdf) = 31351844
TIMESTAMP = 1640426104
SHA256 (Stellarium-stellarium-v0.21.3_GH0.tar.gz) = 25199c3a4edd44536e0ac9807c4ad66b9e9786ef3be8a2e87934af9815055145
SIZE (Stellarium-stellarium-v0.21.3_GH0.tar.gz) = 390277712
SHA256 (stellarium_user_guide-0.21.3-1.pdf) = 06413945e71309c22e1b84343f5bb6a158a7a302ea506f3608117167ebc6a6f8
SIZE (stellarium_user_guide-0.21.3-1.pdf) = 31253904
SHA256 (stars_4_1v0_2.cat) = 15589d9193b850cac68a031bd02dcb59da36c03946ca1be373fbabdb6b1edd63
SIZE (stars_4_1v0_2.cat) = 16948302
SHA256 (stars_5_2v0_1.cat) = c4ebd18d05a805308cfac85fe224e3f0a75db6579cae65c935a0954da13f4164

View File

@ -76,6 +76,7 @@ share/mime/packages/stellarium.xml
%%DATADIR%%/landscapes/garching/description.tr.utf8
%%DATADIR%%/landscapes/garching/description.uk.utf8
%%DATADIR%%/landscapes/garching/description.zh_CN.utf8
%%DATADIR%%/landscapes/garching/description.zh_HK.utf8
%%DATADIR%%/landscapes/garching/description.zh_TW.utf8
%%DATADIR%%/landscapes/garching/fogridge.png
%%DATADIR%%/landscapes/garching/garching-gl1.png
@ -114,6 +115,7 @@ share/mime/packages/stellarium.xml
%%DATADIR%%/landscapes/geneva/description.tr.utf8
%%DATADIR%%/landscapes/geneva/description.uk.utf8
%%DATADIR%%/landscapes/geneva/description.zh_CN.utf8
%%DATADIR%%/landscapes/geneva/description.zh_HK.utf8
%%DATADIR%%/landscapes/geneva/description.zh_TW.utf8
%%DATADIR%%/landscapes/geneva/horizon_Geneve.txt
%%DATADIR%%/landscapes/geneva/landscape.ini
@ -148,6 +150,7 @@ share/mime/packages/stellarium.xml
%%DATADIR%%/landscapes/grossmugl/description.tr.utf8
%%DATADIR%%/landscapes/grossmugl/description.uk.utf8
%%DATADIR%%/landscapes/grossmugl/description.zh_CN.utf8
%%DATADIR%%/landscapes/grossmugl/description.zh_HK.utf8
%%DATADIR%%/landscapes/grossmugl/description.zh_TW.utf8
%%DATADIR%%/landscapes/grossmugl/gazetteer.bn.utf8
%%DATADIR%%/landscapes/grossmugl/gazetteer.de.utf8
@ -192,6 +195,7 @@ share/mime/packages/stellarium.xml
%%DATADIR%%/landscapes/guereins/description.tr.utf8
%%DATADIR%%/landscapes/guereins/description.uk.utf8
%%DATADIR%%/landscapes/guereins/description.zh_CN.utf8
%%DATADIR%%/landscapes/guereins/description.zh_HK.utf8
%%DATADIR%%/landscapes/guereins/description.zh_TW.utf8
%%DATADIR%%/landscapes/guereins/fog.png
%%DATADIR%%/landscapes/guereins/guereins1.png
@ -223,6 +227,7 @@ share/mime/packages/stellarium.xml
%%DATADIR%%/landscapes/hurricane/description.hu.utf8
%%DATADIR%%/landscapes/hurricane/description.id.utf8
%%DATADIR%%/landscapes/hurricane/description.ja.utf8
%%DATADIR%%/landscapes/hurricane/description.ko.utf8
%%DATADIR%%/landscapes/hurricane/description.nb.utf8
%%DATADIR%%/landscapes/hurricane/description.nl.utf8
%%DATADIR%%/landscapes/hurricane/description.pt_BR.utf8
@ -236,6 +241,7 @@ share/mime/packages/stellarium.xml
%%DATADIR%%/landscapes/hurricane/description.tr.utf8
%%DATADIR%%/landscapes/hurricane/description.uk.utf8
%%DATADIR%%/landscapes/hurricane/description.zh_CN.utf8
%%DATADIR%%/landscapes/hurricane/description.zh_HK.utf8
%%DATADIR%%/landscapes/hurricane/description.zh_TW.utf8
%%DATADIR%%/landscapes/hurricane/fogridge.png
%%DATADIR%%/landscapes/hurricane/hurricane1.png
@ -278,6 +284,7 @@ share/mime/packages/stellarium.xml
%%DATADIR%%/landscapes/jupiter/description.tr.utf8
%%DATADIR%%/landscapes/jupiter/description.uk.utf8
%%DATADIR%%/landscapes/jupiter/description.zh_CN.utf8
%%DATADIR%%/landscapes/jupiter/description.zh_HK.utf8
%%DATADIR%%/landscapes/jupiter/description.zh_TW.utf8
%%DATADIR%%/landscapes/jupiter/jupiter-256.png
%%DATADIR%%/landscapes/jupiter/landscape.ini
@ -299,6 +306,7 @@ share/mime/packages/stellarium.xml
%%DATADIR%%/landscapes/mars/description.hu.utf8
%%DATADIR%%/landscapes/mars/description.id.utf8
%%DATADIR%%/landscapes/mars/description.ja.utf8
%%DATADIR%%/landscapes/mars/description.ko.utf8
%%DATADIR%%/landscapes/mars/description.lb.utf8
%%DATADIR%%/landscapes/mars/description.nb.utf8
%%DATADIR%%/landscapes/mars/description.nl.utf8
@ -313,6 +321,7 @@ share/mime/packages/stellarium.xml
%%DATADIR%%/landscapes/mars/description.tr.utf8
%%DATADIR%%/landscapes/mars/description.uk.utf8
%%DATADIR%%/landscapes/mars/description.zh_CN.utf8
%%DATADIR%%/landscapes/mars/description.zh_HK.utf8
%%DATADIR%%/landscapes/mars/description.zh_TW.utf8
%%DATADIR%%/landscapes/mars/landscape.ini
%%DATADIR%%/landscapes/mars/mars.png
@ -352,6 +361,7 @@ share/mime/packages/stellarium.xml
%%DATADIR%%/landscapes/moon/description.tr.utf8
%%DATADIR%%/landscapes/moon/description.uk.utf8
%%DATADIR%%/landscapes/moon/description.zh_CN.utf8
%%DATADIR%%/landscapes/moon/description.zh_HK.utf8
%%DATADIR%%/landscapes/moon/description.zh_TW.utf8
%%DATADIR%%/landscapes/moon/landscape.ini
%%DATADIR%%/landscapes/neptune/description.ar.utf8
@ -386,6 +396,7 @@ share/mime/packages/stellarium.xml
%%DATADIR%%/landscapes/neptune/description.tr.utf8
%%DATADIR%%/landscapes/neptune/description.uk.utf8
%%DATADIR%%/landscapes/neptune/description.zh_CN.utf8
%%DATADIR%%/landscapes/neptune/description.zh_HK.utf8
%%DATADIR%%/landscapes/neptune/description.zh_TW.utf8
%%DATADIR%%/landscapes/neptune/landscape.ini
%%DATADIR%%/landscapes/neptune/neptune-256.png
@ -424,6 +435,7 @@ share/mime/packages/stellarium.xml
%%DATADIR%%/landscapes/ocean/description.tr.utf8
%%DATADIR%%/landscapes/ocean/description.uk.utf8
%%DATADIR%%/landscapes/ocean/description.zh_CN.utf8
%%DATADIR%%/landscapes/ocean/description.zh_HK.utf8
%%DATADIR%%/landscapes/ocean/description.zh_TW.utf8
%%DATADIR%%/landscapes/ocean/fog.png
%%DATADIR%%/landscapes/ocean/landscape.ini
@ -468,6 +480,7 @@ share/mime/packages/stellarium.xml
%%DATADIR%%/landscapes/saturn/description.tr.utf8
%%DATADIR%%/landscapes/saturn/description.uk.utf8
%%DATADIR%%/landscapes/saturn/description.zh_CN.utf8
%%DATADIR%%/landscapes/saturn/description.zh_HK.utf8
%%DATADIR%%/landscapes/saturn/description.zh_TW.utf8
%%DATADIR%%/landscapes/saturn/landscape.ini
%%DATADIR%%/landscapes/saturn/saturn-256.png
@ -501,6 +514,7 @@ share/mime/packages/stellarium.xml
%%DATADIR%%/landscapes/sun/description.tr.utf8
%%DATADIR%%/landscapes/sun/description.uk.utf8
%%DATADIR%%/landscapes/sun/description.zh_CN.utf8
%%DATADIR%%/landscapes/sun/description.zh_HK.utf8
%%DATADIR%%/landscapes/sun/description.zh_TW.utf8
%%DATADIR%%/landscapes/sun/landscape.ini
%%DATADIR%%/landscapes/sun/sun-256.png
@ -541,6 +555,7 @@ share/mime/packages/stellarium.xml
%%DATADIR%%/landscapes/trees/description.tr.utf8
%%DATADIR%%/landscapes/trees/description.uk.utf8
%%DATADIR%%/landscapes/trees/description.zh_CN.utf8
%%DATADIR%%/landscapes/trees/description.zh_HK.utf8
%%DATADIR%%/landscapes/trees/description.zh_TW.utf8
%%DATADIR%%/landscapes/trees/landscape.ini
%%DATADIR%%/landscapes/trees/trees_512.png
@ -578,6 +593,7 @@ share/mime/packages/stellarium.xml
%%DATADIR%%/landscapes/uranus/description.tr.utf8
%%DATADIR%%/landscapes/uranus/description.uk.utf8
%%DATADIR%%/landscapes/uranus/description.zh_CN.utf8
%%DATADIR%%/landscapes/uranus/description.zh_HK.utf8
%%DATADIR%%/landscapes/uranus/description.zh_TW.utf8
%%DATADIR%%/landscapes/uranus/landscape.ini
%%DATADIR%%/landscapes/uranus/uranus-256.png
@ -600,6 +616,7 @@ share/mime/packages/stellarium.xml
%%DATADIR%%/landscapes/zero/description.hu.utf8
%%DATADIR%%/landscapes/zero/description.id.utf8
%%DATADIR%%/landscapes/zero/description.ja.utf8
%%DATADIR%%/landscapes/zero/description.ko.utf8
%%DATADIR%%/landscapes/zero/description.lb.utf8
%%DATADIR%%/landscapes/zero/description.nl.utf8
%%DATADIR%%/landscapes/zero/description.pt_BR.utf8
@ -613,6 +630,7 @@ share/mime/packages/stellarium.xml
%%DATADIR%%/landscapes/zero/description.tr.utf8
%%DATADIR%%/landscapes/zero/description.uk.utf8
%%DATADIR%%/landscapes/zero/description.zh_CN.utf8
%%DATADIR%%/landscapes/zero/description.zh_HK.utf8
%%DATADIR%%/landscapes/zero/description.zh_TW.utf8
%%DATADIR%%/landscapes/zero/landscape.ini
%%DATADIR%%/landscapes/zero/zero_horizon.txt
@ -1242,15 +1260,20 @@ share/mime/packages/stellarium.xml
%%DATADIR%%/scenery3d/Sterngarten/description.bn.utf8
%%DATADIR%%/scenery3d/Sterngarten/description.de.utf8
%%DATADIR%%/scenery3d/Sterngarten/description.en.utf8
%%DATADIR%%/scenery3d/Sterngarten/description.en_GB.utf8
%%DATADIR%%/scenery3d/Sterngarten/description.es.utf8
%%DATADIR%%/scenery3d/Sterngarten/description.et.utf8
%%DATADIR%%/scenery3d/Sterngarten/description.fr.utf8
%%DATADIR%%/scenery3d/Sterngarten/description.gd.utf8
%%DATADIR%%/scenery3d/Sterngarten/description.gl.utf8
%%DATADIR%%/scenery3d/Sterngarten/description.ko.utf8
%%DATADIR%%/scenery3d/Sterngarten/description.nl.utf8
%%DATADIR%%/scenery3d/Sterngarten/description.pt_BR.utf8
%%DATADIR%%/scenery3d/Sterngarten/description.ru.utf8
%%DATADIR%%/scenery3d/Sterngarten/description.sk.utf8
%%DATADIR%%/scenery3d/Sterngarten/description.uk.utf8
%%DATADIR%%/scenery3d/Sterngarten/description.zh_CN.utf8
%%DATADIR%%/scenery3d/Sterngarten/description.zh_HK.utf8
%%DATADIR%%/scenery3d/Sterngarten/description.zh_TW.utf8
%%DATADIR%%/scenery3d/Sterngarten/scenery3d.ini
%%DATADIR%%/scenery3d/Sterngarten/viewpoints.ini
@ -1289,14 +1312,19 @@ share/mime/packages/stellarium.xml
%%DATADIR%%/scenery3d/Testscene/description.bn.utf8
%%DATADIR%%/scenery3d/Testscene/description.de.utf8
%%DATADIR%%/scenery3d/Testscene/description.en.utf8
%%DATADIR%%/scenery3d/Testscene/description.en_GB.utf8
%%DATADIR%%/scenery3d/Testscene/description.es.utf8
%%DATADIR%%/scenery3d/Testscene/description.et.utf8
%%DATADIR%%/scenery3d/Testscene/description.gd.utf8
%%DATADIR%%/scenery3d/Testscene/description.gl.utf8
%%DATADIR%%/scenery3d/Testscene/description.ko.utf8
%%DATADIR%%/scenery3d/Testscene/description.nl.utf8
%%DATADIR%%/scenery3d/Testscene/description.pt_BR.utf8
%%DATADIR%%/scenery3d/Testscene/description.ru.utf8
%%DATADIR%%/scenery3d/Testscene/description.sk.utf8
%%DATADIR%%/scenery3d/Testscene/description.uk.utf8
%%DATADIR%%/scenery3d/Testscene/description.zh_CN.utf8
%%DATADIR%%/scenery3d/Testscene/description.zh_HK.utf8
%%DATADIR%%/scenery3d/Testscene/description.zh_TW.utf8
%%DATADIR%%/scenery3d/Testscene/scenery3d.ini
%%SCRIPTS%%%%DATADIR%%/scripts/analemma.ssc
@ -1405,6 +1433,8 @@ share/mime/packages/stellarium.xml
%%DATADIR%%/skycultures/al-sufi/constellation_names.eng.fab
%%DATADIR%%/skycultures/al-sufi/constellationsart.fab
%%DATADIR%%/skycultures/al-sufi/constellationship.fab
%%DATADIR%%/skycultures/al-sufi/description.ar.utf8
%%DATADIR%%/skycultures/al-sufi/description.de.utf8
%%DATADIR%%/skycultures/al-sufi/description.en.utf8
%%DATADIR%%/skycultures/al-sufi/description.es.utf8
%%DATADIR%%/skycultures/al-sufi/description.gl.utf8
@ -1432,28 +1462,50 @@ share/mime/packages/stellarium.xml
%%DATADIR%%/skycultures/anutan/description.sk.utf8
%%DATADIR%%/skycultures/anutan/description.uk.utf8
%%DATADIR%%/skycultures/anutan/description.zh_CN.utf8
%%DATADIR%%/skycultures/anutan/description.zh_TW.utf8
%%DATADIR%%/skycultures/anutan/dso_names.fab
%%DATADIR%%/skycultures/anutan/info.ini
%%DATADIR%%/skycultures/anutan/planet_names.fab
%%DATADIR%%/skycultures/anutan/star_names.fab
%%DATADIR%%/skycultures/arabic_moon_stations/constellation_names.eng.fab
%%DATADIR%%/skycultures/arabic_moon_stations/constellationship.fab
%%DATADIR%%/skycultures/arabic_moon_stations/description.ar.utf8
%%DATADIR%%/skycultures/arabic_moon_stations/description.be.utf8
%%DATADIR%%/skycultures/arabic_moon_stations/description.bn.utf8
%%DATADIR%%/skycultures/arabic_moon_stations/description.en.utf8
%%DATADIR%%/skycultures/arabic_moon_stations/description.es.utf8
%%DATADIR%%/skycultures/arabic_moon_stations/description.gl.utf8
%%DATADIR%%/skycultures/arabic_moon_stations/description.hr.utf8
%%DATADIR%%/skycultures/arabic_moon_stations/description.nl.utf8
%%DATADIR%%/skycultures/arabic_moon_stations/description.ru.utf8
%%DATADIR%%/skycultures/arabic_moon_stations/description.sk.utf8
%%DATADIR%%/skycultures/arabic_moon_stations/description.uk.utf8
%%DATADIR%%/skycultures/arabic_moon_stations/description.zh_CN.utf8
%%DATADIR%%/skycultures/arabic_moon_stations/description.zh_HK.utf8
%%DATADIR%%/skycultures/arabic_moon_stations/description.zh_TW.utf8
%%DATADIR%%/skycultures/arabic_moon_stations/info.ini
%%DATADIR%%/skycultures/arabic_moon_stations/star_names.fab
%%DATADIR%%/skycultures/arabian_peninsula/arabian_peninsula.jpg
%%DATADIR%%/skycultures/arabian_peninsula/constellation_names.eng.fab
%%DATADIR%%/skycultures/arabian_peninsula/constellationship.fab
%%DATADIR%%/skycultures/arabian_peninsula/description.ar.utf8
%%DATADIR%%/skycultures/arabian_peninsula/description.de.utf8
%%DATADIR%%/skycultures/arabian_peninsula/description.en.utf8
%%DATADIR%%/skycultures/arabian_peninsula/description.es.utf8
%%DATADIR%%/skycultures/arabian_peninsula/description.sk.utf8
%%DATADIR%%/skycultures/arabian_peninsula/description.uk.utf8
%%DATADIR%%/skycultures/arabian_peninsula/dso_names.fab
%%DATADIR%%/skycultures/arabian_peninsula/info.ini
%%DATADIR%%/skycultures/arabian_peninsula/planet_names.fab
%%DATADIR%%/skycultures/arabian_peninsula/reference.fab
%%DATADIR%%/skycultures/arabian_peninsula/star_names.fab
%%DATADIR%%/skycultures/arabic/constellation_names.eng.fab
%%DATADIR%%/skycultures/arabic/constellationship.fab
%%DATADIR%%/skycultures/arabic/description.ar.utf8
%%DATADIR%%/skycultures/arabic/description.de.utf8
%%DATADIR%%/skycultures/arabic/description.en.utf8
%%DATADIR%%/skycultures/arabic/description.es.utf8
%%DATADIR%%/skycultures/arabic/description.sk.utf8
%%DATADIR%%/skycultures/arabic/description.uk.utf8
%%DATADIR%%/skycultures/arabic/dso_names.fab
%%DATADIR%%/skycultures/arabic/info.ini
%%DATADIR%%/skycultures/arabic/planet_names.fab
%%DATADIR%%/skycultures/arabic/reference.fab
%%DATADIR%%/skycultures/arabic/star_names.fab
%%DATADIR%%/skycultures/arabic_lunar_stations/constellation_names.eng.fab
%%DATADIR%%/skycultures/arabic_lunar_stations/constellationship.fab
%%DATADIR%%/skycultures/arabic_lunar_stations/description.ar.utf8
%%DATADIR%%/skycultures/arabic_lunar_stations/description.en.utf8
%%DATADIR%%/skycultures/arabic_lunar_stations/description.es.utf8
%%DATADIR%%/skycultures/arabic_lunar_stations/description.sk.utf8
%%DATADIR%%/skycultures/arabic_lunar_stations/description.uk.utf8
%%DATADIR%%/skycultures/arabic_lunar_stations/dso_names.fab
%%DATADIR%%/skycultures/arabic_lunar_stations/info.ini
%%DATADIR%%/skycultures/arabic_lunar_stations/planet_names.fab
%%DATADIR%%/skycultures/arabic_lunar_stations/reference.fab
%%DATADIR%%/skycultures/arabic_lunar_stations/star_names.fab
%%DATADIR%%/skycultures/aztec/Primeros_Memoriales.png
%%DATADIR%%/skycultures/aztec/Tianquiztli_T.png
%%DATADIR%%/skycultures/aztec/aztec0.png
@ -1501,11 +1553,14 @@ share/mime/packages/stellarium.xml
%%DATADIR%%/skycultures/babylonian_mulapin/800px-MulApin-BritishMuseum.jpg
%%DATADIR%%/skycultures/babylonian_mulapin/Balance_bg.png
%%DATADIR%%/skycultures/babylonian_mulapin/Bow+Arrow_bg.png
%%DATADIR%%/skycultures/babylonian_mulapin/Bull_bg.png
%%DATADIR%%/skycultures/babylonian_mulapin/Crab_bg.png
%%DATADIR%%/skycultures/babylonian_mulapin/Crook_bg.png
%%DATADIR%%/skycultures/babylonian_mulapin/Eagle_bg.png
%%DATADIR%%/skycultures/babylonian_mulapin/Enki_older_bg.jpg
%%DATADIR%%/skycultures/babylonian_mulapin/Enlil2_bg.png
%%DATADIR%%/skycultures/babylonian_mulapin/Field_bg.png
%%DATADIR%%/skycultures/babylonian_mulapin/Fish_bg.png
%%DATADIR%%/skycultures/babylonian_mulapin/Furrow_bg.png
%%DATADIR%%/skycultures/babylonian_mulapin/GoatFish_bg.png
%%DATADIR%%/skycultures/babylonian_mulapin/GreatTwins_bg.jpg
@ -1513,6 +1568,7 @@ share/mime/packages/stellarium.xml
%%DATADIR%%/skycultures/babylonian_mulapin/Harrow_bg.png
%%DATADIR%%/skycultures/babylonian_mulapin/HiredMan_bg.png
%%DATADIR%%/skycultures/babylonian_mulapin/HornCrown_bg.png
%%DATADIR%%/skycultures/babylonian_mulapin/Horse_bg.png
%%DATADIR%%/skycultures/babylonian_mulapin/Hund_bg.png
%%DATADIR%%/skycultures/babylonian_mulapin/Ishtar_bg.png
%%DATADIR%%/skycultures/babylonian_mulapin/KhabasiranuMouse_bg.png
@ -1521,10 +1577,12 @@ share/mime/packages/stellarium.xml
%%DATADIR%%/skycultures/babylonian_mulapin/Mush-Snake_b.png
%%DATADIR%%/skycultures/babylonian_mulapin/OldMan_bg.png
%%DATADIR%%/skycultures/babylonian_mulapin/Pabilsang+ship_bg.png
%%DATADIR%%/skycultures/babylonian_mulapin/Pig_bg.png
%%DATADIR%%/skycultures/babylonian_mulapin/Plough_bg.png
%%DATADIR%%/skycultures/babylonian_mulapin/Rooster_bg.png
%%DATADIR%%/skycultures/babylonian_mulapin/Scorpion_bg.png
%%DATADIR%%/skycultures/babylonian_mulapin/Spadix_bg.png
%%DATADIR%%/skycultures/babylonian_mulapin/Stag_bg.png
%%DATADIR%%/skycultures/babylonian_mulapin/Swallow_bg.png
%%DATADIR%%/skycultures/babylonian_mulapin/TrueShepherd_bg.png
%%DATADIR%%/skycultures/babylonian_mulapin/Urgulu_bg.png
@ -1534,6 +1592,7 @@ share/mime/packages/stellarium.xml
%%DATADIR%%/skycultures/babylonian_mulapin/constellation_names.eng.fab
%%DATADIR%%/skycultures/babylonian_mulapin/constellationsart.fab
%%DATADIR%%/skycultures/babylonian_mulapin/constellationship.fab
%%DATADIR%%/skycultures/babylonian_mulapin/corpse_bg.png
%%DATADIR%%/skycultures/babylonian_mulapin/corvus_bg.png
%%DATADIR%%/skycultures/babylonian_mulapin/description.bn.utf8
%%DATADIR%%/skycultures/babylonian_mulapin/description.de.utf8
@ -1914,7 +1973,9 @@ share/mime/packages/stellarium.xml
%%DATADIR%%/skycultures/greek_farnese/description.en.utf8
%%DATADIR%%/skycultures/greek_farnese/description.es.utf8
%%DATADIR%%/skycultures/greek_farnese/description.gl.utf8
%%DATADIR%%/skycultures/greek_farnese/description.nl.utf8
%%DATADIR%%/skycultures/greek_farnese/description.ru.utf8
%%DATADIR%%/skycultures/greek_farnese/description.sk.utf8
%%DATADIR%%/skycultures/greek_farnese/description.uk.utf8
%%DATADIR%%/skycultures/greek_farnese/dra_bg.png
%%DATADIR%%/skycultures/greek_farnese/dra_sw_bg.png
@ -2005,6 +2066,9 @@ share/mime/packages/stellarium.xml
%%DATADIR%%/skycultures/greek_leidenAratea/description.de.utf8
%%DATADIR%%/skycultures/greek_leidenAratea/description.en.utf8
%%DATADIR%%/skycultures/greek_leidenAratea/description.es.utf8
%%DATADIR%%/skycultures/greek_leidenAratea/description.gl.utf8
%%DATADIR%%/skycultures/greek_leidenAratea/description.nl.utf8
%%DATADIR%%/skycultures/greek_leidenAratea/description.sk.utf8
%%DATADIR%%/skycultures/greek_leidenAratea/description.uk.utf8
%%DATADIR%%/skycultures/greek_leidenAratea/dso_names.fab
%%DATADIR%%/skycultures/greek_leidenAratea/gem_Aratea_bg.jpg
@ -2542,6 +2606,27 @@ share/mime/packages/stellarium.xml
%%DATADIR%%/skycultures/romanian/vacarul.png
%%DATADIR%%/skycultures/romanian/varsatorul.png
%%DATADIR%%/skycultures/romanian/vierii.png
%%DATADIR%%/skycultures/russian_siberian/constellation_names.eng.fab
%%DATADIR%%/skycultures/russian_siberian/constellationship.fab
%%DATADIR%%/skycultures/russian_siberian/description.be.utf8
%%DATADIR%%/skycultures/russian_siberian/description.bn.utf8
%%DATADIR%%/skycultures/russian_siberian/description.en.utf8
%%DATADIR%%/skycultures/russian_siberian/description.es.utf8
%%DATADIR%%/skycultures/russian_siberian/description.gl.utf8
%%DATADIR%%/skycultures/russian_siberian/description.hr.utf8
%%DATADIR%%/skycultures/russian_siberian/description.hu.utf8
%%DATADIR%%/skycultures/russian_siberian/description.ja.utf8
%%DATADIR%%/skycultures/russian_siberian/description.nl.utf8
%%DATADIR%%/skycultures/russian_siberian/description.pt_BR.utf8
%%DATADIR%%/skycultures/russian_siberian/description.ru.utf8
%%DATADIR%%/skycultures/russian_siberian/description.sk.utf8
%%DATADIR%%/skycultures/russian_siberian/description.uk.utf8
%%DATADIR%%/skycultures/russian_siberian/description.zh_CN.utf8
%%DATADIR%%/skycultures/russian_siberian/description.zh_HK.utf8
%%DATADIR%%/skycultures/russian_siberian/description.zh_TW.utf8
%%DATADIR%%/skycultures/russian_siberian/info.ini
%%DATADIR%%/skycultures/russian_siberian/planet_names.fab
%%DATADIR%%/skycultures/russian_siberian/star_names.fab
%%DATADIR%%/skycultures/sami/constellation_names.eng.fab
%%DATADIR%%/skycultures/sami/constellationship.fab
%%DATADIR%%/skycultures/sami/description.ar.utf8
@ -2589,27 +2674,6 @@ share/mime/packages/stellarium.xml
%%DATADIR%%/skycultures/sardinian/info.ini
%%DATADIR%%/skycultures/sardinian/planet_names.fab
%%DATADIR%%/skycultures/sardinian/star_names.fab
%%DATADIR%%/skycultures/siberian/constellation_names.eng.fab
%%DATADIR%%/skycultures/siberian/constellationship.fab
%%DATADIR%%/skycultures/siberian/description.be.utf8
%%DATADIR%%/skycultures/siberian/description.bn.utf8
%%DATADIR%%/skycultures/siberian/description.en.utf8
%%DATADIR%%/skycultures/siberian/description.es.utf8
%%DATADIR%%/skycultures/siberian/description.gl.utf8
%%DATADIR%%/skycultures/siberian/description.hr.utf8
%%DATADIR%%/skycultures/siberian/description.hu.utf8
%%DATADIR%%/skycultures/siberian/description.ja.utf8
%%DATADIR%%/skycultures/siberian/description.nl.utf8
%%DATADIR%%/skycultures/siberian/description.pt_BR.utf8
%%DATADIR%%/skycultures/siberian/description.ru.utf8
%%DATADIR%%/skycultures/siberian/description.sk.utf8
%%DATADIR%%/skycultures/siberian/description.uk.utf8
%%DATADIR%%/skycultures/siberian/description.zh_CN.utf8
%%DATADIR%%/skycultures/siberian/description.zh_HK.utf8
%%DATADIR%%/skycultures/siberian/description.zh_TW.utf8
%%DATADIR%%/skycultures/siberian/info.ini
%%DATADIR%%/skycultures/siberian/planet_names.fab
%%DATADIR%%/skycultures/siberian/star_names.fab
%%DATADIR%%/skycultures/tongan/constellation_names.eng.fab
%%DATADIR%%/skycultures/tongan/constellationsart.fab
%%DATADIR%%/skycultures/tongan/constellationship.fab
@ -2876,6 +2940,7 @@ share/mime/packages/stellarium.xml
%%DATADIR%%/skycultures/western_rey/star_names.fab
%%DATADIR%%/stars/default/cross-id.dat
%%DATADIR%%/stars/default/defaultStarsConfig.json
%%DATADIR%%/stars/default/extra_name.fab
%%DATADIR%%/stars/default/gcvs_hip_part.dat
%%DATADIR%%/stars/default/hip_plx_err.dat
%%DATADIR%%/stars/default/hip_pm.dat

View File

@ -1,7 +1,7 @@
# Created by: Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net>
PORTNAME= weather
PORTVERSION= 2.4.1
PORTVERSION= 2.4.2
CATEGORIES= astro python
MASTER_SITES= http://fungi.yuggoth.org/weather/src/ \
LOCAL/sunpoet

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1598970889
SHA256 (weather-2.4.1.tar.xz) = da37ab3b8d758fd2d4bf13be6ff286931e85b0a446c2b6d5a35ba8431b40c659
SIZE (weather-2.4.1.tar.xz) = 8359156
TIMESTAMP = 1638556460
SHA256 (weather-2.4.2.tar.xz) = a89979ac50e4df5166fad991ebe2228a1731eaac9df5a947cf62faef6a4d26c7
SIZE (weather-2.4.2.tar.xz) = 8824904

View File

@ -80,7 +80,6 @@
SUBDIR += cd2mp3
SUBDIR += cddb-bundle
SUBDIR += cdparanoia
SUBDIR += celt
SUBDIR += checkmate
SUBDIR += cheesecutter
SUBDIR += chordpack
@ -187,7 +186,6 @@
SUBDIR += flac
SUBDIR += flac123
SUBDIR += flacon
SUBDIR += flake
SUBDIR += flite
SUBDIR += fluid-soundfont
SUBDIR += fluida-lv2
@ -318,7 +316,6 @@
SUBDIR += id3ren
SUBDIR += id3tool
SUBDIR += id3v2
SUBDIR += ifp-line
SUBDIR += infamous-plugins-lv2
SUBDIR += inscore
SUBDIR += intersect-lv2
@ -353,7 +350,6 @@
SUBDIR += lenticular-lv2
SUBDIR += lewton
SUBDIR += liba52
SUBDIR += libaacplus
SUBDIR += libadplug
SUBDIR += libaiff
SUBDIR += libamrnb
@ -402,7 +398,6 @@
SUBDIR += libmusicbrainz5
SUBDIR += libmusicxml
SUBDIR += libmysofa
SUBDIR += libnjb
SUBDIR += libnoise
SUBDIR += libogg
SUBDIR += liboggz
@ -454,7 +449,6 @@
SUBDIR += logitechmediaserver-sqlplaylist
SUBDIR += logitechmediaserver-trackstat
SUBDIR += lollypop
SUBDIR += lpac
SUBDIR += lsp-plugins-lv2
SUBDIR += lua-mpd
SUBDIR += luppp
@ -497,7 +491,6 @@
SUBDIR += mous
SUBDIR += mp-player
SUBDIR += mp3-archive-tools
SUBDIR += mp32ogg
SUBDIR += mp3_check
SUBDIR += mp3asm
SUBDIR += mp3blaster
@ -525,7 +518,6 @@
SUBDIR += mpg123
SUBDIR += mpg123.el
SUBDIR += mpg321
SUBDIR += mpiosh
SUBDIR += mps
SUBDIR += mpz
SUBDIR += mumble
@ -564,7 +556,6 @@
SUBDIR += opusfile
SUBDIR += opustags
SUBDIR += orbit-lv2
SUBDIR += osalp
SUBDIR += osd-lyrics
SUBDIR += osdmixer
SUBDIR += oss
@ -704,7 +695,6 @@
SUBDIR += rnnoise
SUBDIR += rnnoise-nu
SUBDIR += rosegarden
SUBDIR += rplay
SUBDIR += rsynth
SUBDIR += rtaudio
SUBDIR += rtmidi

View File

@ -2,7 +2,7 @@
PORTNAME= alsa-plugins
PORTVERSION= 1.2.2
PORTREVISION= 3
PORTREVISION= 4
DISTVERSIONPREFIX= v
CATEGORIES= audio
MASTER_SITES= GH
@ -19,6 +19,7 @@ LICENSE= LGPL21+
LIB_DEPENDS= libasound.so:audio/alsa-lib
USES= alias autoreconf libtool:keepla localbase pkgconfig tar:bzip2
USE_LDCONFIG= ${PREFIX}/lib/alsa-lib
GNU_CONFIGURE= yes
MAKE_ARGS+= RM="${RM}"
EXTRA_PATCHES+= ${FILESDIR}/alsa-plugins.patch

View File

@ -2,15 +2,11 @@
PORTNAME= alsa-utils
PORTVERSION= 1.2.2
PORTREVISION= 1
DISTVERSIONPREFIX= v
PORTREVISION= 2
CATEGORIES= audio
MASTER_SITES= GH
USE_GITHUB= yes
GH_ACCOUNT= alsa-project
GH_PROJECT= ${PORTNAME}
MAINTAINER= ports@FreeBSD.org
COMMENT= ALSA compatibility utilities
@ -24,27 +20,32 @@ RUN_DEPENDS= ${LOCALBASE}/lib/alsa-lib/libasound_module_pcm_oss.so:audio/alsa-pl
USES= autoreconf gettext-tools gmake libtool localbase ncurses shebangfix \
tar:bzip2 pkgconfig
USE_GITHUB= yes
GH_ACCOUNT= alsa-project
GH_PROJECT= ${PORTNAME}
SHEBANG_FILES= alsa-info/alsa-info.sh alsaconf/alsaconf.in bat/alsabat-test.sh
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-udev-rules-dir="\$${prefix}/lib/udev"
SHEBANG_FILES= alsa-info/alsa-info.sh alsaconf/alsaconf.in bat/alsabat-test.sh
INSTALL_TARGET= install-strip
CPPFLAGS+= -I${.CURDIR}/../alsa-lib/files
CFLAGS+= -Dlseek64=lseek -DSCHED_IDLE=SCHED_OTHER \
-I${LOCALBASE}/include/libepoll-shim
CPPFLAGS+= -I${.CURDIR}/../alsa-lib/files
LDFLAGS+= -linotify -lepoll-shim
OPTIONS_SUB= yes
OPTIONS_DEFINE= BAT MANPAGES NLS SAMPLERATE
OPTIONS_DEFAULT= BAT MANPAGES
OPTIONS_SUB= yes
BAT_DESC= Basic Audio Tester support
BAT_LIB_DEPENDS= libfftw3.so:math/fftw3 \
libfftw3f.so:math/fftw3-float
BAT_CONFIGURE_ENABLE= bat
MANPAGES_BUILD_DEPENDS= minixmlto:textproc/minixmlto
MANPAGES_CONFIGURE_ENV= ac_cv_prog_xmlto=minixmlto
MANPAGES_BUILD_DEPENDS= minixmlto:textproc/minixmlto \
rst2man:textproc/py-docutils
MANPAGES_CONFIGURE_ENABLE= xmlto
MANPAGES_BINARY_ALIAS= xmlto=minixmlto
NLS_USES= gettext-runtime
NLS_CONFIGURE_ENABLE= nls

View File

@ -1,8 +0,0 @@
--- alsactl/Makefile.am.orig 2020-02-19 12:02:10 UTC
+++ alsactl/Makefile.am
@@ -66,4 +66,4 @@ CLEANFILES = \
90-alsa-restore.rules
%.7: %.xml
- xmlto man $?
+ $(xmlto) man $?

View File

@ -17,27 +17,30 @@ bin/iecset
bin/speaker-test
lib/udev/89-alsa-ucm.rules
lib/udev/90-alsa-restore.rules
man/fr/man8/alsaconf.8.gz
man/man1/aconnect.1.gz
man/man1/alsa-info.sh.1.gz
%%BAT%%man/man1/alsabat.1.gz
man/man1/alsactl.1.gz
man/man1/alsaloop.1.gz
man/man1/alsamixer.1.gz
man/man1/amidi.1.gz
man/man1/amixer.1.gz
man/man1/aplay.1.gz
man/man1/aplaymidi.1.gz
man/man1/arecord.1.gz
man/man1/arecordmidi.1.gz
man/man1/aseqdump.1.gz
man/man1/aseqnet.1.gz
man/man1/axfer-list.1.gz
man/man1/axfer-transfer.1.gz
man/man1/axfer.1.gz
man/man1/iecset.1.gz
man/man1/speaker-test.1.gz
man/man8/alsaconf.8.gz
%%MANPAGES%%man/fr/man8/alsaconf.8.gz
%%MANPAGES%%man/man1/aconnect.1.gz
%%MANPAGES%%man/man1/alsa-info.sh.1.gz
%%MANPAGES%%%%BAT%%man/man1/alsabat.1.gz
%%MANPAGES%%man/man1/alsactl.1.gz
%%MANPAGES%%man/man1/alsaloop.1.gz
%%MANPAGES%%man/man1/alsamixer.1.gz
%%MANPAGES%%man/man1/alsatplg.1.gz
%%MANPAGES%%man/man1/alsaucm.1.gz
%%MANPAGES%%man/man1/amidi.1.gz
%%MANPAGES%%man/man1/amixer.1.gz
%%MANPAGES%%man/man1/aplay.1.gz
%%MANPAGES%%man/man1/aplaymidi.1.gz
%%MANPAGES%%man/man1/arecord.1.gz
%%MANPAGES%%man/man1/arecordmidi.1.gz
%%MANPAGES%%man/man1/aseqdump.1.gz
%%MANPAGES%%man/man1/aseqnet.1.gz
%%MANPAGES%%man/man1/axfer-list.1.gz
%%MANPAGES%%man/man1/axfer-transfer.1.gz
%%MANPAGES%%man/man1/axfer.1.gz
%%MANPAGES%%man/man1/iecset.1.gz
%%MANPAGES%%man/man1/speaker-test.1.gz
%%MANPAGES%%man/man7/alsactl_init.7.gz
%%MANPAGES%%man/man8/alsaconf.8.gz
sbin/alsa-info.sh
%%BAT%%sbin/alsabat-test.sh
sbin/alsaconf

View File

@ -2,7 +2,7 @@
PORTNAME= audacity
DISTVERSIONPREFIX= Audacity-
DISTVERSION= 3.1.2
DISTVERSION= 3.1.3
CATEGORIES= audio
MAINTAINER= xxjack12xx@gmail.com
@ -15,6 +15,7 @@ BUILD_DEPENDS= conan:sysutils/conan
LIB_DEPENDS= libasound.so:audio/alsa-lib \
libexpat.so:textproc/expat2 \
libmp3lame.so:audio/lame \
libopus.so:audio/opus \
libportaudio.so:audio/portaudio \
libportmidi.so:audio/portmidi \
libsndfile.so:audio/libsndfile \

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1637121152
SHA256 (audacity-audacity-Audacity-3.1.2_GH0.tar.gz) = 4bd1175e613ddba2bebf98c244975b157d7998b5112de7f0a6dba8bd7b77214d
SIZE (audacity-audacity-Audacity-3.1.2_GH0.tar.gz) = 56448821
TIMESTAMP = 1640677957
SHA256 (audacity-audacity-Audacity-3.1.3_GH0.tar.gz) = 07aed333a20b8df381d5c0a167840883fff8ef65f5e5f71e654c0925d6c60de8
SIZE (audacity-audacity-Audacity-3.1.3_GH0.tar.gz) = 56500219

View File

@ -1,26 +0,0 @@
# Created by: Edward Tomasz Napierala <trasz@FreeBSD.org>
PORTNAME= celt
PORTVERSION= 0.11.3
PORTREVISION= 3
CATEGORIES= audio
MASTER_SITES= http://downloads.us.xiph.org/releases/celt/
MAINTAINER= multimedia@FreeBSD.org
COMMENT= The CELT ultra-low delay audio codec
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/COPYING
DEPRECATED= Deprecated and considered obsolete by upstream in 2016 in favour of (lib)opus
EXPIRATION_DATE=2021-12-31
LIB_DEPENDS= libogg.so:audio/libogg
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-ogg=${LOCALBASE}
USE_LDCONFIG= yes
USES= gmake libtool:keepla pathfix
INSTALL_TARGET= install-strip
.include <bsd.port.mk>

View File

@ -1,2 +0,0 @@
SHA256 (celt-0.11.3.tar.gz) = 7e64815d4a8a009d0280ecd235ebd917da3abdcfd8f7d0812218c085f9480836
SIZE (celt-0.11.3.tar.gz) = 465020

View File

@ -1,6 +0,0 @@
The CELT codec is an experimental audio codec for use in low-delay
speech and audio communication. It's meant to close the gap between
Vorbis and Speex for applications where both high quality audio
and low delay are desired.
WWW: http://www.celt-codec.org/

View File

@ -1,11 +0,0 @@
bin/celtenc
bin/celtdec
include/celt/celt.h
include/celt/celt_types.h
include/celt/celt_header.h
lib/libcelt0.so.2.0.0
lib/libcelt0.so.2
lib/libcelt0.so
lib/libcelt0.la
lib/libcelt0.a
libdata/pkgconfig/celt.pc

View File

@ -1,8 +1,7 @@
PORTNAME= codec2
DISTVERSION= 0.8.1
PORTREVISION= 2
DISTVERSIONPREFIX=v
DISTVERSION= 1.0.1
CATEGORIES= audio hamradio
MASTER_SITES= https://hobbes1069.fedorapeople.org/freetel/codec2/
MAINTAINER= hamradio@FreeBSD.org
COMMENT= Low bit rate codec
@ -12,9 +11,13 @@ LICENSE_FILE= ${WRKSRC}/COPYING
LIB_DEPENDS= libspeexdsp.so:audio/speexdsp
CONFLICTS= libcodec2
USES= cmake pathfix pkgconfig shebangfix tar:xz
USES= cmake pathfix pkgconfig python:3.6+ shebangfix tar:xz
GH_ACCOUNT= drowe67
GH_PROJECT= codec2
USE_LDCONFIG= yes
USE_GITHUB= yes
OPTIONS_DEFINE= EXAMPLES TEST
OPTIONS_SUB= yes
@ -24,25 +27,26 @@ TEST_CMAKE_ON= -DUNITTEST=ON
TEST_SRCFILES= cohpsk_ch cohpsk_demod cohpsk_get_test_bits cohpsk_mod\
cohpsk_put_test_bits fdmdv_channel freedv_rx freedv_tx\
generate_codebook
TEST_UNITTESTFILES= c2validate create_interleaver de extract fdmdv_mem\
genlsp genres polar2rect\
pre raw2h scalarlsptest speexnoisesup t16_8\
t16_8_short tcohpsk test_cohpsk_ch tfdmdv tfifo\
tnlp tprede vq_train_jvm\
vqtrain
TEST_UNITTESTFILES= compare_ints fdmdv_mem ofdm_mem ofdm_stack \
t16_8 t16_8_short tcohpsk tdeframer tesno_est \
test_phi0 tfdmdv tfifo tfmfsk tfreedv_2400A_rawdata \
tfreedv_2400B_rawdata tfreedv_800XA_rawdata \
tfreedv_data_channel tfsk tfsk_llr thash tnewamp1 \
tofdm tofdm_acq tqam16 tst_codec2_fft_init tvq_mbest
SHEBANG_FILES= ${WRKSRC}/octave/fsk_horus_stream.m\
${WRKSRC}/script/menu.sh
SHEBANG_LANG= octave
SHEBANG_FILES= ${WRKSRC}/script/gen_phi0 \
${WRKSRC}/script/phi0_plot.py \
${WRKSRC}/script/build_cml.sh \
${WRKSRC}/script/subsetvq.sh \
${WRKSRC}/script/train_700c_quant.sh \
${WRKSRC}/script/ofdm_stack_use.py \
${WRKSRC}/script/train_sub_quant.sh
TEST_RUN_DEPENDS= octave:math/octave
TEST_LIB_DEPENDS= libsamplerate.so:audio/libsamplerate
PORTEXAMPLES= *
pre-patch-TEST-on:
${REINPLACE_CMD} 's|%ld|%u|' ${WRKSRC}/unittest/fdmdv_mem.c
post-install-TEST-on:
.for a in ${TEST_SRCFILES}
${INSTALL_PROGRAM} ${WRKDIR}/.build/src/${a} ${STAGEDIR}${PREFIX}/bin

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1536032594
SHA256 (codec2-0.8.1.tar.xz) = a07cdaacf59c3f7dbb1c63b769d443af486c434b3bd031fb4edd568ce3e613d6
SIZE (codec2-0.8.1.tar.xz) = 8868212
TIMESTAMP = 1640012007
SHA256 (drowe67-codec2-v1.0.1_GH0.tar.gz) = 14227963940d79e0ec5af810f37101b30e1c7e8555abd96c56b3c0473abac8ef
SIZE (drowe67-codec2-v1.0.1_GH0.tar.gz) = 15062219

View File

@ -1,38 +0,0 @@
--- CMakeLists.txt.orig 2020-08-24 16:23:49 UTC
+++ CMakeLists.txt
@@ -14,6 +14,7 @@ mark_as_advanced(CLEAR
CMAKE_INSTALL_BINDIR
CMAKE_INSTALL_INCLUDEDIR
CMAKE_INSTALL_LIBDIR
+ CMAKE_INSTALL_LIBEXECDIR
)
#
@@ -114,7 +115,7 @@ option(INSTALL_EXAMPLES "Install example code." OFF)
if(INSTALL_EXAMPLES)
install(DIRECTORY octave raw script wav
USE_SOURCE_PERMISSIONS
- DESTINATION ${CMAKE_INSTALL_DATADIR}/codec2)
+ DESTINATION share/examples/codec2)
endif()
@@ -176,6 +177,18 @@ if(UNITTEST)
message(STATUS " Speex DSP library: ${SPEEXDSP_LIBRARY}")
if(NOT SPEEXDSP_INCLUDE_DIR AND NOT SPEEXDSP_LIBRARY)
message(FATAL_ERROR "Speex DSP library not found!")
+ endif()
+
+ #
+ # Find samplerate library
+ #
+ message(STATUS "Looking for samplerate library.")
+ find_path(SAMPLERATE_INCLUDE_DIR samplerate.h)
+ find_library(SAMPLERATE_LIBRARY samplerate)
+ message(STATUS " samplerate headers: ${SAMPLERATE_INCLUDE_DIR}")
+ message(STATUS " samplerate library: ${SAMPLERATE_LIBRARY}")
+ if(NOT SAMPLERATE_INCLUDE_DIR AND NOT SAMPLERATE_LIBRARY)
+ message(FATAL_ERROR "samplerate library not found!")
endif()
#

View File

@ -1,20 +0,0 @@
--- src/freedv_api.c.orig 2018-05-29 05:59:17 UTC
+++ src/freedv_api.c
@@ -36,7 +36,7 @@
#ifdef __APPLE__
#include <malloc/malloc.h>
#else
-#include <malloc.h>
+#include <stdlib.h>
#endif /* __APPLE__ */
#include "fsk.h"
@@ -75,6 +75,8 @@
#define NORM_PWR_OFDM 1.00
/* OFDM payload data test frame for 700D */
+
+extern const struct OFDM_CONFIG * OFDM_CONFIG_700D;
extern int payload_data_bits[];

View File

@ -1,14 +0,0 @@
--- src/codec2_ofdm.h.orig 2018-05-24 01:33:34 UTC
+++ src/codec2_ofdm.h
@@ -49,9 +49,10 @@ extern "C" {
#define OFDM_SYNC_MANUAL 2 /* fall out of sync only under operator control */
struct OFDM;
+struct OFDM_CONFIG;
/* Default configuration for '700D' mode */
-const struct OFDM_CONFIG * OFDM_CONFIG_700D;
+//const struct OFDM_CONFIG * OFDM_CONFIG_700D;
/* create and destroy modem states */

View File

@ -1,11 +0,0 @@
--- src/ofdm_demod.c.orig 2020-08-24 16:51:44 UTC
+++ src/ofdm_demod.c
@@ -49,6 +49,8 @@
#define NFRAMES 100 /* just log the first 100 frames */
#define NDISCARD 20 /* BER2measure disctrds first 20 frames */
+const struct OFDM_CONFIG * OFDM_CONFIG_700D;
+
extern int payload_data_bits[];
extern int test_bits_ofdm[];

View File

@ -1,11 +0,0 @@
--- src/ofdm_get_test_bits.c.orig 2020-08-24 17:10:37 UTC
+++ src/ofdm_get_test_bits.c
@@ -36,6 +36,8 @@
#include "ofdm_internal.h"
#include "test_bits_ofdm.h"
+extern const struct OFDM_CONFIG * OFDM_CONFIG_700D;
+
int main(int argc, char *argv[])
{
struct OFDM *ofdm;

View File

@ -1,10 +0,0 @@
--- src/ofdm_mod.c.orig 2020-08-24 17:09:09 UTC
+++ src/ofdm_mod.c
@@ -41,6 +41,7 @@
extern int payload_data_bits[];
extern int test_bits_ofdm[];
+extern const struct OFDM_CONFIG * OFDM_CONFIG_700D;
int opt_exists(char *argv[], int argc, char opt[]) {
int i;

View File

@ -1,11 +0,0 @@
--- src/ofdm_put_test_bits.c.orig 2020-08-24 17:20:41 UTC
+++ src/ofdm_put_test_bits.c
@@ -36,6 +36,8 @@
#include "codec2_ofdm.h"
#include "test_bits_ofdm.h"
+extern const struct OFDM_CONFIG * OFDM_CONFIG_700D;
+
#define LOG_FRAMES 100
#define NDISCARD 20

View File

@ -1,14 +0,0 @@
--- unittest/CMakeLists.txt.orig 2018-04-12 23:12:25 UTC
+++ unittest/CMakeLists.txt
@@ -92,7 +92,10 @@ add_executable(tnewamp1 tnewamp1.c ../sr
target_link_libraries(tnewamp1 codec2)
add_executable(tsrc tsrc.c)
-target_link_libraries(tsrc samplerate)
+target_link_libraries(tsrc ${SAMPLERATE_LIBRARY})
+set_target_properties(tsrc
+ PROPERTIES INCLUDE_DIRECTORIES ${SAMPLERATE_INCLUDE_DIR}
+)
add_executable(tlininterp tlininterp.c)
add_executable(tdec tdec.c)

View File

@ -1,19 +1,38 @@
bin/c2dec
bin/c2demo
bin/c2enc
bin/c2sim
bin/drs232
bin/drs232_ldpc
bin/fdmdv_demod
bin/fdmdv_get_test_bits
bin/fdmdv_interleave
bin/fdmdv_mod
bin/fdmdv_put_test_bits
bin/fec_dec
bin/fec_enc
bin/fm_demod
bin/fsk_mod
bin/insert_errors
%%TEST%%bin/cohpsk_ch
%%TEST%%bin/cohpsk_demod
%%TEST%%bin/cohpsk_get_test_bits
%%TEST%%bin/cohpsk_mod
%%TEST%%bin/cohpsk_put_test_bits
%%TEST%%bin/compare_ints
%%TEST%%bin/fdmdv_channel
%%TEST%%bin/fdmdv_mem
%%TEST%%bin/freedv_rx
%%TEST%%bin/freedv_tx
%%TEST%%bin/generate_codebook
%%TEST%%bin/ofdm_mem
%%TEST%%bin/ofdm_stack
%%TEST%%bin/t16_8
%%TEST%%bin/t16_8_short
%%TEST%%bin/tcohpsk
%%TEST%%bin/tdeframer
%%TEST%%bin/tesno_est
%%TEST%%bin/test_phi0
%%TEST%%bin/tfdmdv
%%TEST%%bin/tfifo
%%TEST%%bin/tfmfsk
%%TEST%%bin/tfreedv_2400A_rawdata
%%TEST%%bin/tfreedv_2400B_rawdata
%%TEST%%bin/tfreedv_800XA_rawdata
%%TEST%%bin/tfreedv_data_channel
%%TEST%%bin/tfsk
%%TEST%%bin/tfsk_llr
%%TEST%%bin/thash
%%TEST%%bin/tnewamp1
%%TEST%%bin/tofdm
%%TEST%%bin/tofdm_acq
%%TEST%%bin/tqam16
%%TEST%%bin/tst_codec2_fft_init
%%TEST%%bin/tvq_mbest
include/codec2/codec2.h
include/codec2/codec2_cohpsk.h
include/codec2/codec2_fdmdv.h
@ -21,46 +40,224 @@ include/codec2/codec2_fifo.h
include/codec2/codec2_fm.h
include/codec2/codec2_ofdm.h
include/codec2/comp.h
include/codec2/comp_prim.h
include/codec2/freedv_api.h
include/codec2/freedv_api_internal.h
include/codec2/fsk.h
include/codec2/golay23.h
include/codec2/kiss_fft.h
include/codec2/modem_stats.h
include/codec2/varicode.h
include/codec2/reliable_text.h
include/codec2/version.h
lib/cmake/codec2/codec2-config-%%CMAKE_BUILD_TYPE%%.cmake
lib/cmake/codec2/codec2-config.cmake
lib/libcodec2.so
lib/libcodec2.so.0.8
lib/libcodec2.so.1.0
libdata/pkgconfig/codec2.pc
%%TEST%%bin/c2validate
%%TEST%%bin/cohpsk_ch
%%TEST%%bin/cohpsk_demod
%%TEST%%bin/cohpsk_get_test_bits
%%TEST%%bin/cohpsk_mod
%%TEST%%bin/cohpsk_put_test_bits
%%TEST%%bin/create_interleaver
%%TEST%%bin/de
%%TEST%%bin/extract
%%TEST%%bin/fdmdv_channel
%%TEST%%bin/fdmdv_mem
%%TEST%%bin/freedv_rx
%%TEST%%bin/freedv_tx
%%TEST%%bin/generate_codebook
%%TEST%%bin/genlsp
%%TEST%%bin/genres
%%TEST%%bin/polar2rect
%%TEST%%bin/pre
%%TEST%%bin/raw2h
%%TEST%%bin/scalarlsptest
%%TEST%%bin/speexnoisesup
%%TEST%%bin/t16_8
%%TEST%%bin/t16_8_short
%%TEST%%bin/tcohpsk
%%TEST%%bin/test_cohpsk_ch
%%TEST%%bin/tfdmdv
%%TEST%%bin/tfifo
%%TEST%%bin/tnlp
%%TEST%%bin/tprede
%%TEST%%bin/vq_train_jvm
%%TEST%%bin/vqtrain
%%EXAMPLES%%%%DATADIR%%/octave/2400ab_frame_design.ods
%%EXAMPLES%%%%DATADIR%%/octave/H2064_516_sparse.mat
%%EXAMPLES%%%%DATADIR%%/octave/HRA_112_112.txt
%%EXAMPLES%%%%DATADIR%%/octave/HRA_112_56.txt
%%EXAMPLES%%%%DATADIR%%/octave/HRA_504_396.txt
%%EXAMPLES%%%%DATADIR%%/octave/HRA_56_28.txt
%%EXAMPLES%%%%DATADIR%%/octave/HRA_56_56.txt
%%EXAMPLES%%%%DATADIR%%/octave/HRAa_1536_512.mat
%%EXAMPLES%%%%DATADIR%%/octave/H_1024_2048_4f.mat
%%EXAMPLES%%%%DATADIR%%/octave/H_128_256_5.mat
%%EXAMPLES%%%%DATADIR%%/octave/H_256_512_4.mat
%%EXAMPLES%%%%DATADIR%%/octave/H_256_768_22.txt
%%EXAMPLES%%%%DATADIR%%/octave/H_4096_8192_3d.mat
%%EXAMPLES%%%%DATADIR%%/octave/Mat2Hrows.m
%%EXAMPLES%%%%DATADIR%%/octave/apsk_ser.m
%%EXAMPLES%%%%DATADIR%%/octave/autotest.m
%%EXAMPLES%%%%DATADIR%%/octave/c2wideband_map
%%EXAMPLES%%%%DATADIR%%/octave/channel_lib.m
%%EXAMPLES%%%%DATADIR%%/octave/closed_quant_slope.m
%%EXAMPLES%%%%DATADIR%%/octave/cma.m
%%EXAMPLES%%%%DATADIR%%/octave/cml.patch
%%EXAMPLES%%%%DATADIR%%/octave/codec2_demo.m
%%EXAMPLES%%%%DATADIR%%/octave/cohpsk_ch_fading.m
%%EXAMPLES%%%%DATADIR%%/octave/cohpsk_demod_plot.m
%%EXAMPLES%%%%DATADIR%%/octave/cohpsk_dev.m
%%EXAMPLES%%%%DATADIR%%/octave/cohpsk_lib.m
%%EXAMPLES%%%%DATADIR%%/octave/cohpsk_plots.m
%%EXAMPLES%%%%DATADIR%%/octave/crc16.m
%%EXAMPLES%%%%DATADIR%%/octave/diff_fft_mag.m
%%EXAMPLES%%%%DATADIR%%/octave/doppler_spread.m
%%EXAMPLES%%%%DATADIR%%/octave/doppler_spread_ut.m
%%EXAMPLES%%%%DATADIR%%/octave/esno_est.m
%%EXAMPLES%%%%DATADIR%%/octave/estsnr.m
%%EXAMPLES%%%%DATADIR%%/octave/fdmdv.m
%%EXAMPLES%%%%DATADIR%%/octave/fdmdv_common.m
%%EXAMPLES%%%%DATADIR%%/octave/fdmdv_demod.m
%%EXAMPLES%%%%DATADIR%%/octave/fdmdv_demod_c.m
%%EXAMPLES%%%%DATADIR%%/octave/fdmdv_demod_coh.m
%%EXAMPLES%%%%DATADIR%%/octave/fdmdv_mod.m
%%EXAMPLES%%%%DATADIR%%/octave/fdmdv_ut.m
%%EXAMPLES%%%%DATADIR%%/octave/fdmdv_ut_freq_off.m
%%EXAMPLES%%%%DATADIR%%/octave/fm.m
%%EXAMPLES%%%%DATADIR%%/octave/fm_radio_filt_model.txt
%%EXAMPLES%%%%DATADIR%%/octave/fmfsk.m
%%EXAMPLES%%%%DATADIR%%/octave/fsk4_dmr.m
%%EXAMPLES%%%%DATADIR%%/octave/fsk_basic.m
%%EXAMPLES%%%%DATADIR%%/octave/fsk_cml.m
%%EXAMPLES%%%%DATADIR%%/octave/fsk_cml_sam.m
%%EXAMPLES%%%%DATADIR%%/octave/fsk_demod_BER_test.py
%%EXAMPLES%%%%DATADIR%%/octave/fsk_demod_file.m
%%EXAMPLES%%%%DATADIR%%/octave/fsk_horus.m
%%EXAMPLES%%%%DATADIR%%/octave/fsk_lib.m
%%EXAMPLES%%%%DATADIR%%/octave/fsk_lib_demo.m
%%EXAMPLES%%%%DATADIR%%/octave/fsk_lib_ldpc.m
%%EXAMPLES%%%%DATADIR%%/octave/fsk_lib_ldpc_demo.m
%%EXAMPLES%%%%DATADIR%%/octave/fsk_lib_ldpc_rx.m
%%EXAMPLES%%%%DATADIR%%/octave/fsk_lib_ldpc_tx.m
%%EXAMPLES%%%%DATADIR%%/octave/fsk_llr_plot.m
%%EXAMPLES%%%%DATADIR%%/octave/fsk_llr_test.m
%%EXAMPLES%%%%DATADIR%%/octave/fsk_lock_down.m
%%EXAMPLES%%%%DATADIR%%/octave/fsk_v_afsk.m
%%EXAMPLES%%%%DATADIR%%/octave/fskdemodgui.py
%%EXAMPLES%%%%DATADIR%%/octave/gen_rn_coeffs.m
%%EXAMPLES%%%%DATADIR%%/octave/gmsk.m
%%EXAMPLES%%%%DATADIR%%/octave/gp_interleaver.m
%%EXAMPLES%%%%DATADIR%%/octave/h0p25d.mat
%%EXAMPLES%%%%DATADIR%%/octave/hackrf_dc.m
%%EXAMPLES%%%%DATADIR%%/octave/hackrf_twotone.m
%%EXAMPLES%%%%DATADIR%%/octave/hackrf_uc.m
%%EXAMPLES%%%%DATADIR%%/octave/hf_modem_curves.m
%%EXAMPLES%%%%DATADIR%%/octave/hf_sim.m
%%EXAMPLES%%%%DATADIR%%/octave/horus_high_speed.bin
%%EXAMPLES%%%%DATADIR%%/octave/horus_msg.txt
%%EXAMPLES%%%%DATADIR%%/octave/horus_payload_rtty.txt
%%EXAMPLES%%%%DATADIR%%/octave/horus_tx_bits_binary.txt
%%EXAMPLES%%%%DATADIR%%/octave/hp_filt.m
%%EXAMPLES%%%%DATADIR%%/octave/impulse_noise.m
%%EXAMPLES%%%%DATADIR%%/octave/ldpc.m
%%EXAMPLES%%%%DATADIR%%/octave/ldpc_fsk_lib.m
%%EXAMPLES%%%%DATADIR%%/octave/ldpc_gen_c_h_file.m
%%EXAMPLES%%%%DATADIR%%/octave/ldpc_gen_h_file.m
%%EXAMPLES%%%%DATADIR%%/octave/ldpcut.m
%%EXAMPLES%%%%DATADIR%%/octave/linreg.m
%%EXAMPLES%%%%DATADIR%%/octave/load_comp.m
%%EXAMPLES%%%%DATADIR%%/octave/load_f32.m
%%EXAMPLES%%%%DATADIR%%/octave/load_hackrf.m
%%EXAMPLES%%%%DATADIR%%/octave/load_raw.m
%%EXAMPLES%%%%DATADIR%%/octave/load_rtlsdr.m
%%EXAMPLES%%%%DATADIR%%/octave/mag_to_phase.m
%%EXAMPLES%%%%DATADIR%%/octave/make_hilb.m
%%EXAMPLES%%%%DATADIR%%/octave/make_ssbfilt.m
%%EXAMPLES%%%%DATADIR%%/octave/mancyfsk.m
%%EXAMPLES%%%%DATADIR%%/octave/melvq.m
%%EXAMPLES%%%%DATADIR%%/octave/mfsk.m
%%EXAMPLES%%%%DATADIR%%/octave/newamp1_fbf.m
%%EXAMPLES%%%%DATADIR%%/octave/newamp_700c.m
%%EXAMPLES%%%%DATADIR%%/octave/nf_from_gr.m
%%EXAMPLES%%%%DATADIR%%/octave/nf_from_stdio.m
%%EXAMPLES%%%%DATADIR%%/octave/ofdm_acquisition.m
%%EXAMPLES%%%%DATADIR%%/octave/ofdm_demod_c.m
%%EXAMPLES%%%%DATADIR%%/octave/ofdm_ldpc_rx.m
%%EXAMPLES%%%%DATADIR%%/octave/ofdm_ldpc_tx.m
%%EXAMPLES%%%%DATADIR%%/octave/ofdm_lib.m
%%EXAMPLES%%%%DATADIR%%/octave/ofdm_load_const.m
%%EXAMPLES%%%%DATADIR%%/octave/ofdm_rx.m
%%EXAMPLES%%%%DATADIR%%/octave/ofdm_time_sync.m
%%EXAMPLES%%%%DATADIR%%/octave/ofdm_tx.m
%%EXAMPLES%%%%DATADIR%%/octave/oqpsk.m
%%EXAMPLES%%%%DATADIR%%/octave/papr_test.m
%%EXAMPLES%%%%DATADIR%%/octave/phase_noise.m
%%EXAMPLES%%%%DATADIR%%/octave/pitch_test.m
%%EXAMPLES%%%%DATADIR%%/octave/pl.m
%%EXAMPLES%%%%DATADIR%%/octave/pl2.m
%%EXAMPLES%%%%DATADIR%%/octave/pl_scatter.m
%%EXAMPLES%%%%DATADIR%%/octave/plamp.m
%%EXAMPLES%%%%DATADIR%%/octave/plinterp.m
%%EXAMPLES%%%%DATADIR%%/octave/pllpcpf.m
%%EXAMPLES%%%%DATADIR%%/octave/pllsp.m
%%EXAMPLES%%%%DATADIR%%/octave/pllspdt.m
%%EXAMPLES%%%%DATADIR%%/octave/plnlp.m
%%EXAMPLES%%%%DATADIR%%/octave/plot_fsk_demod_stats.py
%%EXAMPLES%%%%DATADIR%%/octave/plot_specgram.m
%%EXAMPLES%%%%DATADIR%%/octave/plphase.m
%%EXAMPLES%%%%DATADIR%%/octave/plpitch.m
%%EXAMPLES%%%%DATADIR%%/octave/plvoicing.m
%%EXAMPLES%%%%DATADIR%%/octave/png.m
%%EXAMPLES%%%%DATADIR%%/octave/power_from_stdio.m
%%EXAMPLES%%%%DATADIR%%/octave/pulse.m
%%EXAMPLES%%%%DATADIR%%/octave/qam16.m
%%EXAMPLES%%%%DATADIR%%/octave/qam16_test.m
%%EXAMPLES%%%%DATADIR%%/octave/qpsk.m
%%EXAMPLES%%%%DATADIR%%/octave/rf_bpf.m
%%EXAMPLES%%%%DATADIR%%/octave/rf_design.m
%%EXAMPLES%%%%DATADIR%%/octave/rf_vhf_amp.m
%%EXAMPLES%%%%DATADIR%%/octave/rf_vhf_pa.m
%%EXAMPLES%%%%DATADIR%%/octave/sample_clock_offset.m
%%EXAMPLES%%%%DATADIR%%/octave/save_array_c_header.m
%%EXAMPLES%%%%DATADIR%%/octave/save_comp.m
%%EXAMPLES%%%%DATADIR%%/octave/save_f32.m
%%EXAMPLES%%%%DATADIR%%/octave/save_hackrf.m
%%EXAMPLES%%%%DATADIR%%/octave/save_raw.m
%%EXAMPLES%%%%DATADIR%%/octave/spec.m
%%EXAMPLES%%%%DATADIR%%/octave/tcohpsk.m
%%EXAMPLES%%%%DATADIR%%/octave/tdetphase.m
%%EXAMPLES%%%%DATADIR%%/octave/test_dqpsk2.m
%%EXAMPLES%%%%DATADIR%%/octave/test_ldpc_fsk_lib.m
%%EXAMPLES%%%%DATADIR%%/octave/tfdmdv.m
%%EXAMPLES%%%%DATADIR%%/octave/tfmfsk.m
%%EXAMPLES%%%%DATADIR%%/octave/tfsk.m
%%EXAMPLES%%%%DATADIR%%/octave/tfsk_2400a.m
%%EXAMPLES%%%%DATADIR%%/octave/tnewamp1.m
%%EXAMPLES%%%%DATADIR%%/octave/tofdm.m
%%EXAMPLES%%%%DATADIR%%/octave/tofdm_acq.m
%%EXAMPLES%%%%DATADIR%%/octave/train_120_1.txt
%%EXAMPLES%%%%DATADIR%%/octave/train_120_2.txt
%%EXAMPLES%%%%DATADIR%%/octave/train_all_speech_1.txt
%%EXAMPLES%%%%DATADIR%%/octave/train_all_speech_2.txt
%%EXAMPLES%%%%DATADIR%%/octave/trellis.m
%%EXAMPLES%%%%DATADIR%%/octave/trellis_dec3_nstage3.txt
%%EXAMPLES%%%%DATADIR%%/octave/vq
%%EXAMPLES%%%%DATADIR%%/octave/vq_700c_eq.m
%%EXAMPLES%%%%DATADIR%%/octave/vq_binary_switch.m
%%EXAMPLES%%%%DATADIR%%/octave/vq_compare.m
%%EXAMPLES%%%%DATADIR%%/octave/vq_nm_xx_11_40_hpf150
%%EXAMPLES%%%%DATADIR%%/raw/700d_end_over.raw
%%EXAMPLES%%%%DATADIR%%/raw/big_dog.raw
%%EXAMPLES%%%%DATADIR%%/raw/cq_ref.raw
%%EXAMPLES%%%%DATADIR%%/raw/cross.raw
%%EXAMPLES%%%%DATADIR%%/raw/f2400.raw
%%EXAMPLES%%%%DATADIR%%/raw/forig.raw
%%EXAMPLES%%%%DATADIR%%/raw/g3plx.raw
%%EXAMPLES%%%%DATADIR%%/raw/hts.raw
%%EXAMPLES%%%%DATADIR%%/raw/hts1.raw
%%EXAMPLES%%%%DATADIR%%/raw/hts1a.raw
%%EXAMPLES%%%%DATADIR%%/raw/hts2.raw
%%EXAMPLES%%%%DATADIR%%/raw/hts2a.raw
%%EXAMPLES%%%%DATADIR%%/raw/kristoff.raw
%%EXAMPLES%%%%DATADIR%%/raw/m2400.raw
%%EXAMPLES%%%%DATADIR%%/raw/mmt1.raw
%%EXAMPLES%%%%DATADIR%%/raw/morig.raw
%%EXAMPLES%%%%DATADIR%%/raw/sine1k_2Hz_spread.raw
%%EXAMPLES%%%%DATADIR%%/raw/sine1k_2ms_delay_2Hz_spread.raw
%%EXAMPLES%%%%DATADIR%%/raw/speech_orig_16k.wav
%%EXAMPLES%%%%DATADIR%%/raw/test_datac1_006.raw
%%EXAMPLES%%%%DATADIR%%/raw/testframes_700d.raw
%%EXAMPLES%%%%DATADIR%%/raw/ve9qrp.raw
%%EXAMPLES%%%%DATADIR%%/raw/ve9qrp_10s.raw
%%EXAMPLES%%%%DATADIR%%/raw/vk5qi.raw
%%EXAMPLES%%%%DATADIR%%/script/build_cml.sh
%%EXAMPLES%%%%DATADIR%%/script/gen_phi0
%%EXAMPLES%%%%DATADIR%%/script/ofdm_stack_use.py
%%EXAMPLES%%%%DATADIR%%/script/phi0_plot.py
%%EXAMPLES%%%%DATADIR%%/script/separate_all.sh
%%EXAMPLES%%%%DATADIR%%/script/subsetvq.sh
%%EXAMPLES%%%%DATADIR%%/script/train_700c_quant.sh
%%EXAMPLES%%%%DATADIR%%/script/train_sub_quant.sh
%%EXAMPLES%%%%DATADIR%%/wav/all.wav
%%EXAMPLES%%%%DATADIR%%/wav/big_dog.wav
%%EXAMPLES%%%%DATADIR%%/wav/cross.wav
%%EXAMPLES%%%%DATADIR%%/wav/david4.wav
%%EXAMPLES%%%%DATADIR%%/wav/f2400.wav
%%EXAMPLES%%%%DATADIR%%/wav/forig.wav
%%EXAMPLES%%%%DATADIR%%/wav/hts1a.wav
%%EXAMPLES%%%%DATADIR%%/wav/hts2a.wav
%%EXAMPLES%%%%DATADIR%%/wav/m2400.wav
%%EXAMPLES%%%%DATADIR%%/wav/mmt1.wav
%%EXAMPLES%%%%DATADIR%%/wav/morig.wav
%%EXAMPLES%%%%DATADIR%%/wav/ve9qrp.wav
%%EXAMPLES%%%%DATADIR%%/wav/vk2tpm_004.wav
%%EXAMPLES%%%%DATADIR%%/wav/vk5qi.wav
%%EXAMPLES%%%%DATADIR%%/wav/wia_16kHz.wav

View File

@ -1,6 +1,5 @@
PORTNAME= drumstick
DISTVERSION= 2.4.0
PORTREVISION= 2
DISTVERSION= 2.5.0
CATEGORIES= audio multimedia
MASTER_SITES= SF/${PORTNAME}/${PORTVERSION}/

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1632208256
SHA256 (drumstick-2.4.0.tar.bz2) = edd802bb1db15279de6db5cad1e727a4e88516a381daa77e5df71a49b5d83331
SIZE (drumstick-2.4.0.tar.bz2) = 1576294
TIMESTAMP = 1640285640
SHA256 (drumstick-2.5.0.tar.bz2) = 8709d8a7c438c1d09091827ce5fd8286d387a046a8f717a1a34546d9ca3d902a
SIZE (drumstick-2.5.0.tar.bz2) = 1472996

View File

@ -1,17 +1,6 @@
--- CMakeLists.txt.orig 2021-06-28 15:28:22 UTC
--- CMakeLists.txt.orig 2021-12-10 10:36:02 UTC
+++ CMakeLists.txt
@@ -111,8 +111,8 @@ else()
message(FATAL_ERROR "Program pkg-config not found")
endif()
-if(${CMAKE_SYSTEM} MATCHES "Linux")
- pkg_check_modules(ALSA REQUIRED IMPORTED_TARGET alsa>=1.0.0)
+if(${CMAKE_SYSTEM} MATCHES "Linux|FreeBSD")
+ #pkg_check_modules(ALSA REQUIRED IMPORTED_TARGET alsa>=1.0.0)
if(ALSA_FOUND)
message(STATUS "Found ALSA version = ${ALSA_VERSION}")
endif()
@@ -179,7 +179,7 @@ endif()
@@ -251,7 +251,7 @@ endif()
if(UNIX AND NOT APPLE)
if (BUILD_DOCS)
@ -20,7 +9,7 @@
if(DOXYGEN_FOUND)
string(REPLACE ";" " " DOXYGEN_INCLUDE_DIRS "${Qt${QT_VERSION_MAJOR}Core_INCLUDE_DIRS}")
configure_file("${CMAKE_SOURCE_DIR}/Doxyfile.in"
@@ -192,9 +192,9 @@ if(UNIX AND NOT APPLE)
@@ -264,9 +264,9 @@ if(UNIX AND NOT APPLE)
endif()
configure_file(drumstick.spec.in drumstick.spec IMMEDIATE @ONLY)
if(ALSA_FOUND AND PKG_CONFIG_FOUND)

View File

@ -36,13 +36,13 @@ lib/drumstick2/libdrumstick-rt-oss-in.so
lib/drumstick2/libdrumstick-rt-oss-out.so
lib/libdrumstick-file.so
lib/libdrumstick-file.so.2
lib/libdrumstick-file.so.2.4.0
lib/libdrumstick-file.so.2.5.0
lib/libdrumstick-rt.so
lib/libdrumstick-rt.so.2
lib/libdrumstick-rt.so.2.4.0
lib/libdrumstick-rt.so.2.5.0
lib/libdrumstick-widgets.so
lib/libdrumstick-widgets.so.2
lib/libdrumstick-widgets.so.2.4.0
lib/libdrumstick-widgets.so.2.5.0
%%QT_PLUGINDIR%%/designer/libdrumstick-vpiano-plugin.so
libdata/pkgconfig/drumstick-file.pc
libdata/pkgconfig/drumstick-rt.pc

View File

@ -1,5 +1,5 @@
PORTNAME= exhale
DISTVERSION= 1.1.8
DISTVERSION= 1.1.9
CATEGORIES= audio
MAINTAINER= diizzy@FreeBSD.org
@ -14,7 +14,7 @@ USES= cmake compiler:c++11-lang
USE_GITLAB= yes
GL_ACCOUNT= ecodis
GL_COMMIT= 7688ab502ecbd1203bde1e605676f7440cd9fd5e
GL_COMMIT= 00423757b1f266f9164eff35e69b6e7d4d967f41
USE_LDCONFIG= yes

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1636500203
SHA256 (ecodis-exhale-7688ab502ecbd1203bde1e605676f7440cd9fd5e_GL0.tar.gz) = 148ae206b8f60d0803f7a0a6eb75ce7e1fa135005d6779bac2773d9cc6fc3c62
SIZE (ecodis-exhale-7688ab502ecbd1203bde1e605676f7440cd9fd5e_GL0.tar.gz) = 138442
TIMESTAMP = 1641071622
SHA256 (ecodis-exhale-00423757b1f266f9164eff35e69b6e7d4d967f41_GL0.tar.gz) = 1851a4721b26ffeff5922eba029dcd52ad5bb48d81ef881563766b7d2df36ec1
SIZE (ecodis-exhale-00423757b1f266f9164eff35e69b6e7d4d967f41_GL0.tar.gz) = 139352

View File

@ -2,6 +2,7 @@
PORTNAME= faust
DISTVERSION= 2.37.3
PORTREVISION= 1
CATEGORIES= audio devel
MAINTAINER= yuri@FreeBSD.org

View File

@ -1,5 +1,6 @@
PORTNAME= faustlive
DISTVERSION= 2.5.7
PORTREVISION= 1
CATEGORIES= audio
MAINTAINER= yuri@FreeBSD.org

View File

@ -1,7 +1,7 @@
# Created by: Alexey Dokuchaev <danfe@FreeBSD.org>
PORTNAME= flacon
PORTVERSION= 8.1.0
PORTVERSION= 8.2.0
DISTVERSIONPREFIX= v
CATEGORIES= audio
@ -21,6 +21,7 @@ USE_QT= buildtools_build concurrent_build qmake_build testlib_build \
CMAKE_ARGS= -DBUILD_TESTS:BOOL=YES
do-test:
@cd ${TEST_WRKSRC} && ctest -C ${CMAKE_BUILD_TYPE} ${_MAKE_JOBS}
@cd ${TEST_WRKSRC} && LC_ALL=C.UTF-8 ctest -C ${CMAKE_BUILD_TYPE} \
${_MAKE_JOBS}
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1637871978
SHA256 (flacon-flacon-v8.1.0_GH0.tar.gz) = 26830ef5eaf2c91d0a4802630c904b448235cb0f72ebfd470a76423bee4de8d8
SIZE (flacon-flacon-v8.1.0_GH0.tar.gz) = 3720292
TIMESTAMP = 1640100305
SHA256 (flacon-flacon-v8.2.0_GH0.tar.gz) = 7fd0f97f9bca87c5ec0f7eee30c6480b9cc51c8c60f79d9726ed09db756c60b9
SIZE (flacon-flacon-v8.2.0_GH0.tar.gz) = 3757221

View File

@ -1,23 +0,0 @@
# Created by: David Naylor <dbn@FreeBSD.org>
PORTNAME= flake
PORTVERSION= 0.11
CATEGORIES= audio
MASTER_SITES= SF/${PORTNAME:tl}-enc/${PORTNAME:tl}/${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= FLAC audio encoder
LICENSE= LGPL21
DEPRECATED= Abandoned upstream, no new release since 2007
EXPIRATION_DATE=2021-12-31
CONFIGURE_ARGS+= --cc="${CC}"
HAS_CONFIGURE= yes
USES= gmake tar:bzip2
MAKE_JOBS_UNSAFE= yes
PLIST_FILES= bin/flake include/flake.h lib/libflake.a
.include <bsd.port.mk>

View File

@ -1,2 +0,0 @@
SHA256 (flake-0.11.tar.bz2) = 8dd249888005c2949cb4564f02b6badb34b2a0f408a7ec7ab01e11ceca1b7f19
SIZE (flake-0.11.tar.bz2) = 43319

View File

@ -1,20 +0,0 @@
The Flake encoder project was started as a way for the author to learn more
about lossless audio encoding. The author chose the FLAC format because it is
open and well-documented. Although the FLAC reference encoder is also free and
open-source, the author's goal was to implement the standard from scratch as an
independent project. Flake is licensed under the GNU LGPL.
Once Flake progressed to a usable state, the author submitted the encoder to be
included as part of FFmpeg. It was included and improved upon by other FFmpeg
developers. Since then, Ithe author has added more features to Flake and
improved the encoding speed. The author plan to add some of these features into
FFmpeg as the encoder progresses.
There are both benefits and drawbacks to using Flake as a FLAC encoder
alternative. In its current state, Flake gives, on average, slightly better
compression than the FLAC reference encoder and is about twice as fast.
However, it does not currently implement all the advanced features such as
tagging, cuesheets, 24-bit audio, embedded pictures, and ogg encapsulation.
The author hopes to add these to Flake in future releases.
WWW: http://flake-enc.sourceforge.net

View File

@ -2,7 +2,7 @@
PORTNAME= gmpc-mserver
PORTVERSION= 0.20.0
PORTREVISION= 15
PORTREVISION= 16
CATEGORIES= audio
MASTER_SITES= http://download.sarine.nl/Programs/gmpc/${PORTVERSION}/

View File

@ -0,0 +1,20 @@
--- cargo-crates/crossbeam-epoch-0.9.5/no_atomic.rs.orig 2021-07-12 16:01:21.814570000 +0200
+++ cargo-crates/crossbeam-epoch-0.9.5/no_atomic.rs 2021-07-12 16:01:34.083879000 +0200
@@ -30,6 +30,7 @@
"mipsel-unknown-none",
"mipsisa32r6-unknown-linux-gnu",
"mipsisa32r6el-unknown-linux-gnu",
+ "powerpc-unknown-freebsd",
"powerpc-unknown-linux-gnu",
"powerpc-unknown-linux-gnuspe",
"powerpc-unknown-linux-musl",
--- cargo-crates/crossbeam-utils-0.8.5/no_atomic.rs.orig 2021-07-12 16:01:05.023177000 +0200
+++ cargo-crates/crossbeam-utils-0.8.5/no_atomic.rs 2021-07-12 16:01:16.538869000 +0200
@@ -30,6 +30,7 @@
"mipsel-unknown-none",
"mipsisa32r6-unknown-linux-gnu",
"mipsisa32r6el-unknown-linux-gnu",
+ "powerpc-unknown-freebsd",
"powerpc-unknown-linux-gnu",
"powerpc-unknown-linux-gnuspe",
"powerpc-unknown-linux-musl",

View File

@ -1,36 +0,0 @@
# Created by: riggs
PORTNAME= ifp-line
PORTVERSION= 0.3
PORTREVISION= 1
CATEGORIES= audio
MASTER_SITES= SF/ifp-driver/${PORTNAME}/${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Command line interface to iRiver music players
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
DEPRECATED= Abandoned upstream, no new release since 2005
EXPIRATION_DATE=2021-12-31
USES= iconv
GNU_CONFIGURE= yes
CONFIGURE_ARGS= LIBUSB_LIBS=-lusb
MAKE_JOBS_UNSAFE= yes
PLIST_FILES= bin/ifp man/man1/ifp.1.gz
PORTDOCS= NEWS README TIPS nonroot.sh
OPTIONS_DEFINE= DOCS
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/ifp ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/ifp.1 ${STAGEDIR}${MANPREFIX}/man/man1
do-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
(cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR})
.include <bsd.port.mk>

View File

@ -1,2 +0,0 @@
SHA256 (ifp-line-0.3.tar.gz) = 2d44807abbd5d2202d253b550b867dfa3776a71bf6d3f202b0f1254e66325257
SIZE (ifp-line-0.3.tar.gz) = 138272

View File

@ -1,284 +0,0 @@
--- configure.orig 2005-12-10 07:27:54 UTC
+++ configure
@@ -3860,281 +3860,6 @@ _ACEOF
-# Check whether --with-libusb-prefix or --without-libusb-prefix was given.
-if test "${with_libusb_prefix+set}" = set; then
- withval="$with_libusb_prefix"
- libusb_prefix="$withval"
-else
- libusb_prefix=""
-fi;
-
-# Check whether --with-libusb-exec-prefix or --without-libusb-exec-prefix was given.
-if test "${with_libusb_exec_prefix+set}" = set; then
- withval="$with_libusb_exec_prefix"
- libusb_exec_prefix="$withval"
-else
- libusb_exec_prefix=""
-fi;
-
- if test x$libusb_exec_prefix != x ; then
- libusb_config_args="$libusb_config_args --exec-prefix=$libusb_exec_prefix"
- if test x${LIBUSB_CONFIG+set} != xset ; then
- LIBUSB_CONFIG=$libusb_exec_prefix/bin/libusb-config
- fi
- fi
- if test x$libusb_prefix != x ; then
- libusb_config_args="$libusb_config_args --prefix=$libusb_prefix"
- if test x${LIBUSB_CONFIG+set} != xset ; then
- LIBUSB_CONFIG=$libusb_prefix/bin/libusb-config
- fi
- fi
-
- # Extract the first word of "libusb-config", so it can be a program name with args.
-set dummy libusb-config; ac_word=$2
-echo "$as_me:$LINENO: checking for $ac_word" >&5
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
-if test "${ac_cv_path_LIBUSB_CONFIG+set}" = set; then
- echo $ECHO_N "(cached) $ECHO_C" >&6
-else
- case $LIBUSB_CONFIG in
- [\\/]* | ?:[\\/]*)
- ac_cv_path_LIBUSB_CONFIG="$LIBUSB_CONFIG" # Let the user override the test with a path.
- ;;
- *)
- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH
-do
- IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- for ac_exec_ext in '' $ac_executable_extensions; do
- if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- ac_cv_path_LIBUSB_CONFIG="$as_dir/$ac_word$ac_exec_ext"
- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
- break 2
- fi
-done
-done
-
- test -z "$ac_cv_path_LIBUSB_CONFIG" && ac_cv_path_LIBUSB_CONFIG="no"
- ;;
-esac
-fi
-LIBUSB_CONFIG=$ac_cv_path_LIBUSB_CONFIG
-
-if test -n "$LIBUSB_CONFIG"; then
- echo "$as_me:$LINENO: result: $LIBUSB_CONFIG" >&5
-echo "${ECHO_T}$LIBUSB_CONFIG" >&6
-else
- echo "$as_me:$LINENO: result: no" >&5
-echo "${ECHO_T}no" >&6
-fi
-
- min_libusb_version=0.1.7
- echo "$as_me:$LINENO: checking for libusb - version >= $min_libusb_version" >&5
-echo $ECHO_N "checking for libusb - version >= $min_libusb_version... $ECHO_C" >&6
- no_libusb=""
- if test "$LIBUSB_CONFIG" = "no" ; then
- no_libusb="yes"
- else
- LIBUSB_CFLAGS=`$LIBUSB_CONFIG $libusb_config_args --cflags`
- LIBUSB_LIBS=`$LIBUSB_CONFIG $libusb_config_args --libs`
-
- libusb_major_version=`$LIBUSB_CONFIG $libusb_args --version | \
- sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\1/'`
- libusb_minor_version=`$LIBUSB_CONFIG $libusb_args --version | \
- sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\2/'`
- libusb_micro_version=`$LIBUSB_CONFIG $libusb_args --version | \
- sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\3/'`
- if test "x$enable_libusbtext" = "xyes" ; then
- ac_save_CFLAGS="$CFLAGS"
- ac_save_LIBS="$LIBS"
- CFLAGS="$CFLAGS $LIBUSB_CFLAGS"
- LIBS="$LIBS $LIBUSB_LIBS"
- rm -f conf.libusbtest
- if test "$cross_compiling" = yes; then
- echo $ac_n "cross compiling; assumed OK... $ac_c"
-else
- cat >conftest.$ac_ext <<_ACEOF
-/* confdefs.h. */
-_ACEOF
-cat confdefs.h >>conftest.$ac_ext
-cat >>conftest.$ac_ext <<_ACEOF
-/* end confdefs.h. */
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <usb.h>
-
-char*
-my_strdup (char *str)
-{
- char *new_str;
-
- if (str)
- {
- new_str = malloc ((strlen (str) + 1) * sizeof(char));
- strcpy (new_str, str);
- }
- else
- new_str = NULL;
-
- return new_str;
-}
-
-int main ()
-{
- int major, minor, micro;
- char *tmp_version;
-
- system ("touch conf.libusbtest");
-
- /* HP/UX 9 (%@#!) writes to sscanf strings */
- tmp_version = my_strdup("$min_libusb_version");
- if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, &micro) != 3) {
- printf("%s, bad version string\n", "$min_libusb_version");
- exit(1);
- }
-
- if (($libusb_major_version > major) ||
- (($libusb_major_version == major) && ($libusb_minor_version > minor)) ||
- (($libusb_major_version == major) && ($libusb_minor_version == minor) &&
- ($libusb_micro_version >= micro)))
- {
- return 0;
- }
- else
- {
- printf("\n*** 'libusb-config --version' returned %d.%d, but the minimum version\n", $libusb_major_version, $libusb_minor_version);
- printf("*** of libusb required is %d.%d. If libusb-config is correct, then it is\n", major, minor);
- printf("*** best to upgrade to the required version.\n");
- printf("*** If libusb-config was wrong, set the environment variable LIBUSB_CONFIG\n");
- printf("*** to point to the correct copy of libusb-config, and remove the file\n");
- printf("*** config.cache before re-running configure\n");
- return 1;
- }
-}
-
-
-_ACEOF
-rm -f conftest$ac_exeext
-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
- (eval $ac_link) 2>&5
- ac_status=$?
- echo "$as_me:$LINENO: \$? = $ac_status" >&5
- (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
- (eval $ac_try) 2>&5
- ac_status=$?
- echo "$as_me:$LINENO: \$? = $ac_status" >&5
- (exit $ac_status); }; }; then
- :
-else
- echo "$as_me: program exited with status $ac_status" >&5
-echo "$as_me: failed program was:" >&5
-sed 's/^/| /' conftest.$ac_ext >&5
-
-( exit $ac_status )
-no_libusb=yes
-fi
-rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
-fi
- CFLAGS="$ac_save_CFLAGS"
- LIBS="$ac_save_LIBS"
- fi
- fi
- if test "x$no_libusb" = x ; then
- echo "$as_me:$LINENO: result: yes" >&5
-echo "${ECHO_T}yes" >&6
- :
- else
- echo "$as_me:$LINENO: result: no" >&5
-echo "${ECHO_T}no" >&6
- if test "$LIBUSB_CONFIG" = "no" ; then
- echo "*** The libusb-config script installed by libusb could not be found"
- echo "*** If libusb was installed in PREFIX, make sure PREFIX/bin is in"
- echo "*** your path, or set the LIBUSB_CONFIG environment variable to the"
- echo "*** full path to libusb-config."
- else
- if test -f conf.libusbtest ; then
- :
- else
- echo "*** Could not run libusb test program, checking why..."
- CFLAGS="$CFLAGS $LIBUSB_CFLAGS"
- LIBS="$LIBS $LIBUSB_LIBS"
- cat >conftest.$ac_ext <<_ACEOF
-/* confdefs.h. */
-_ACEOF
-cat confdefs.h >>conftest.$ac_ext
-cat >>conftest.$ac_ext <<_ACEOF
-/* end confdefs.h. */
-
-#include <stdio.h>
-#include <usb.h>
-
-int
-main ()
-{
- return 0;
- ;
- return 0;
-}
-_ACEOF
-rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
- (eval $ac_link) 2>conftest.er1
- ac_status=$?
- grep -v '^ *+' conftest.er1 >conftest.err
- rm -f conftest.er1
- cat conftest.err >&5
- echo "$as_me:$LINENO: \$? = $ac_status" >&5
- (exit $ac_status); } &&
- { ac_try='test -z "$ac_c_werror_flag"
- || test ! -s conftest.err'
- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
- (eval $ac_try) 2>&5
- ac_status=$?
- echo "$as_me:$LINENO: \$? = $ac_status" >&5
- (exit $ac_status); }; } &&
- { ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
- (eval $ac_try) 2>&5
- ac_status=$?
- echo "$as_me:$LINENO: \$? = $ac_status" >&5
- (exit $ac_status); }; }; then
- echo "*** The test program compiled, but did not run. This usually means"
- echo "*** that the run-time linker is not finding libusb or finding the wrong"
- echo "*** version of libusb. If it is not finding libusb, you'll need to set your"
- echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
- echo "*** to the installed location Also, make sure you have run ldconfig if that"
- echo "*** is required on your system"
- echo "***"
- echo "*** If you have an old version installed, it is best to remove it, although"
- echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"
-else
- echo "$as_me: failed program was:" >&5
-sed 's/^/| /' conftest.$ac_ext >&5
-
- echo "*** The test program failed to compile or link. See the file config.log for the"
- echo "*** exact error that occured. This usually means libusb was incorrectly installed"
- echo "*** or that you have moved libusb since it was installed. In the latter case, you"
- echo "*** may want to edit the libusb-config script: $LIBUSB_CONFIG"
-fi
-rm -f conftest.err conftest.$ac_objext \
- conftest$ac_exeext conftest.$ac_ext
- CFLAGS="$ac_save_CFLAGS"
- LIBS="$ac_save_LIBS"
- fi
- fi
- LIBUSB_CFLAGS=""
- LIBUSB_LIBS=""
- { { echo "$as_me:$LINENO: error: libusb is required." >&5
-echo "$as_me: error: libusb is required." >&2;}
- { (exit 1); exit 1; }; }
- fi
-
-
- rm -f conf.libusbtest
# Checks for header files.

View File

@ -1,9 +0,0 @@
ifp-line is a simple command-line tool to provide basic
functionality to manage files on iRiver music players
which are using the "manager firmware".
Using this tool, you can
o add/remove files on the player
o view information about the player, e.g. battery status
o flash your firmware using an .hex file
WWW: http://ifp-driver.sourceforge.net/

View File

@ -1,13 +0,0 @@
[
{ type: install
message: <<EOM
ifp directly accesses the usb/ugen devices via libusb. So
if you want to use this application as a non-root user, you
have to make sure that the corresponding device nodes
/dev/usb<somenumber> and /dev/ugen<somenumber> where
<somenumber> is dependent on your personal usb environment
are readable and writable by the user intended to use the
tool.
EOM
}
]

View File

@ -1,5 +1,6 @@
PORTNAME= inscore
PORTVERSION= 1.31
PORTREVISION= 1
CATEGORIES= audio
MAINTAINER= yuri@FreeBSD.org

View File

@ -1,6 +1,6 @@
PORTNAME= jacktrip
DISTVERSIONPREFIX= v
DISTVERSION= 1.4.2
DISTVERSION= 1.4.3
CATEGORIES= audio
MAINTAINER= yuri@FreeBSD.org

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1639597069
SHA256 (jacktrip-jacktrip-v1.4.2-d5e110c_GH0.tar.gz) = 85d197d3fb81d4d188685733bd020cb067965ce9606b2e0d6d0c0c78a1536f08
SIZE (jacktrip-jacktrip-v1.4.2-d5e110c_GH0.tar.gz) = 4229494
TIMESTAMP = 1640213318
SHA256 (jacktrip-jacktrip-v1.4.3-d5e110c_GH0.tar.gz) = 85d197d3fb81d4d188685733bd020cb067965ce9606b2e0d6d0c0c78a1536f08
SIZE (jacktrip-jacktrip-v1.4.3-d5e110c_GH0.tar.gz) = 4229494

View File

@ -1,6 +1,7 @@
PORTNAME= jamulus
DISTVERSIONPREFIX= r
DISTVERSION= 3_8_1
PORTREVISION= 1
CATEGORIES= audio
MAINTAINER= yuri@FreeBSD.org

View File

@ -5,9 +5,11 @@
# KEYWORD: shutdown
# Add the following lines to /etc/rc.conf to enable jamulus_server:
# jamulus_server_enable : set to "YES" to enable the daemon, default is "NO"
# jamulus_server_flags : any extra flags, default is ""
# - list of all possible flags: https://jamulus.io/wiki/Command-Line-Options
# jamulus_server_enable : set to "YES" to enable the daemon, default is "NO"
# jamulus_server_uname : user to run jamulus-server as, default is "%%USER%%"
# jamulus_server_flags : extra flags to pass to daemon(8), default is ""
# jamulus_server_args : any arguments to pass to jamulus-server, default is ""
# - list of all possible arguments: https://jamulus.io/wiki/Command-Line-Options
. /etc/rc.subr
@ -17,12 +19,14 @@ rcvar=jamulus_server_enable
load_rc_config $name
jamulus_server_enable=${jamulus_server_enable:-"NO"}
jamulus_server_uname=${jamulus_server_uname:-"%%USER%%"}
jamulus_server_flags=${jamulus_server_flags:-""}
jamulus_server_args=${jamulus_server_args:-""}
logfile="/var/log/${name}.log"
procname=%%PREFIX%%/bin/jamulus-server
command="/usr/sbin/daemon"
command_args="-u %%USER%% -o ${logfile} -t ${name} %%PREFIX%%/bin/jamulus-server -s ${jamulus_server_flags}"
command_args="-u ${jamulus_server_uname} -o ${logfile} -t ${name} %%PREFIX%%/bin/jamulus-server -s ${jamulus_server_args}"
run_rc_command "$1"

View File

@ -1,57 +0,0 @@
PORTNAME= libaacplus
PORTVERSION= 2.0.2
PORTREVISION= 9
CATEGORIES= audio
MASTER_SITES= http://tipok.org.ua/downloads/media/aacplus/libaacplus/ \
ftp://ftp.3gpp.org/Specs/archive/26_series/26.410/:site2 \
https://www.3gpp.org/ftp/Specs/archive/26_series/26.410/:site2
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \
${SRC26410}.zip:site2
MAINTAINER= takefu@airport.fm
COMMENT= HE-AAC+ Codec as Shared Library
LICENSE= libaacplus
LICENSE_NAME= 3GPP
LICENSE_TEXT= unclear legal status, probably need licenses from 3GPP, Via Licensing and Coding Technologies
LICENSE_PERMS= no-dist-mirror no-dist-sell no-pkg-mirror no-pkg-sell auto-accept
DEPRECATED= Abandoned upstream, no new release since 2011
EXPIRATION_DATE=2021-12-31
USES= autoreconf cpe pathfix pkgconfig libtool
USE_CSTD= gnu89
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
MAKE_JOBS_UNSAFE= yes
INSTALL_TARGET= install-strip
CPE_VENDOR= libaacplus_project
CONFLICTS= aacplusenc-0*
OPTIONS_DEFINE= FFTW3
OPTIONS_DEFAULT=FFTW3
FFTW3_DESC= Use FFTW3 library for performance
FFTW3_LIB_DEPENDS= libfftw3.so:math/fftw3 \
libfftw3f.so:math/fftw3-float
FFTW3_CONFIGURE_ON= --with-fftw3=yes --with-fftw3-prefix=${LOCALBASE}
FFTW3_CONFIGURE_OFF= --with-fftw3=no
LICENSE_DISTFILES_3GPP= ${SRC26410}.zip
SRC26410= 26410-g00
pre-configure:
@${CP} ${DISTDIR}/${SRC26410}.zip ${WRKSRC}/src
@${REINPLACE_CMD} -e 's,@includedir@\/aacplus,@prefix@\/include,' \
${WRKSRC}/aacplus.pc.in
@${REINPLACE_CMD} -e 's,\/aacplus\.h,\/libaacplus\/aacplus\.h,' \
${WRKSRC}/aacplus.spec.in
@${REINPLACE_CMD} -e 's,INCLUDES,AM_CPPFLAGS,'\
${WRKSRC}/frontend/Makefile.am ${WRKSRC}/src/Makefile.am
@${REINPLACE_CMD} -e 's,%%SRC26410%%,${SRC26410},g' \
${WRKSRC}/src/Makefile.am
.include <bsd.port.mk>

View File

@ -1,5 +0,0 @@
TIMESTAMP = 1630653095
SHA256 (libaacplus-2.0.2.tar.gz) = 60dceb64d4ecf0be8d21661d5af2f214710f9d5b6ab389a5bdebf746baa7e1d7
SIZE (libaacplus-2.0.2.tar.gz) = 42155
SHA256 (26410-g00.zip) = 2a180b4a71160bdf37f49c47be6e67e0674f560b7d329088b2f13d232ed82db2
SIZE (26410-g00.zip) = 1215311

View File

@ -1,35 +0,0 @@
--- configure.ac.orig 2010-11-10 21:27:45 UTC
+++ configure.ac
@@ -8,7 +8,7 @@ AM_INIT_AUTOMAKE
AM_CONFIG_HEADER(config.h)
AC_CONFIG_MACRO_DIR([m4])
# Checks for programs.
-AC_PROG_CC
+AC_PROG_CC(clang gcc cc)
AM_PROG_CC_C_O
AC_PROG_CPP
AC_PROG_INSTALL
@@ -16,10 +16,10 @@ AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_LIBTOOL_WIN32_DLL
AM_PROG_LIBTOOL
-AC_PATH_PROG([UNZIP],[unzip])
-if test x"$UNZIP" = x -a ! -f "aacenc.c" ; then
- AC_MSG_ERROR([You need unzip utility to prepare sources.])
-fi
+dnl AC_PATH_PROG([UNZIP],[unzip])
+dnl if test x"$UNZIP" = x -a ! -f "aacenc.c" ; then
+dnl AC_MSG_ERROR([You need unzip utility to prepare sources.])
+dnl fi
AC_PATH_PROG([PATCH],[patch])
if test x"$PATCH" = x -a ! -f "aacenc.c" ; then
AC_MSG_ERROR([You need patch utility to prepare sources.])
@@ -123,7 +123,7 @@ AM_CONDITIONAL([HAVE_PKGCONFIG], [test "
AACPLUS_VERSION="$VERSION"
AACPLUS_CPPFLAGS="-I$aacplus_includedir $FFTW3_CPPFLAGS"
-AACPLUS_CFLAGS+="$FFTW3_CFLAGS"
+AACPLUS_CFLAGS="$AACPLUS_CFLAGS $FFTW3_CFLAGS"
AACPLUS_LIBS="-laacplus -lm ${FFTW3_LIB}"
AC_SUBST(AACPLUS_LIBS)

View File

@ -1,11 +0,0 @@
--- include/aacplus.h.orig 2010-11-10 21:27:38 UTC
+++ include/aacplus.h
@@ -12,7 +12,7 @@ typedef void *aacplusEncHandle;
typedef enum {
AACPLUS_INPUT_16BIT = 0,
- AACPLUS_INPUT_FLOAT,
+ AACPLUS_INPUT_FLOAT
} aacplusInFormat;

Some files were not shown because too many files have changed in this diff Show More