forked from Lainports/opnsense-ports
*/*: sync with upstream
Taken from: FreeBSD
This commit is contained in:
parent
af7737af5d
commit
39e521def0
2055 changed files with 52888 additions and 4136 deletions
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= caribou
|
||||
PORTVERSION= 0.4.21
|
||||
PORTREVISION= 3
|
||||
PORTREVISION= 4
|
||||
CATEGORIES= accessibility gnome
|
||||
MASTER_SITES= GNOME
|
||||
DIST_SUBDIR= gnome3
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= file-roller
|
||||
PORTVERSION= 3.40.0
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
PORTEPOCH= 1
|
||||
CATEGORIES= archivers gnome
|
||||
MASTER_SITES= GNOME
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# Created by: José García Juanino <jjuanino@gmail.com>
|
||||
|
||||
PORTNAME= bup
|
||||
PORTVERSION= 0.31
|
||||
PORTVERSION= 0.32
|
||||
CATEGORIES= archivers python
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
|
|
@ -17,9 +17,11 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pylibacl>0:security/py-pylibacl@${PY_FLAVOR}
|
|||
par2cmdline>0.4:archivers/par2cmdline
|
||||
BUILD_DEPENDS= bash:shells/bash \
|
||||
git>1.5.6:devel/git
|
||||
RUN_DEPENDS= bash:shells/bash
|
||||
|
||||
USES= python:3.6+ gmake
|
||||
USES= gmake python:3.6+ shebangfix
|
||||
USE_PYTHON= autoplist
|
||||
SHEBANG_FILES= test/ext/test-sparse-files lib/cmd/import-rdiff-backup-cmd.sh
|
||||
|
||||
PLIST_SUB= MANDIR=${PREFIX}/share/man
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1608064432
|
||||
SHA256 (bup-bup-0.31_GH0.tar.gz) = 2f54351aed653b4b9567d3a534af598a5bc63b32efd7cc593bcecac3b89e16d1
|
||||
SIZE (bup-bup-0.31_GH0.tar.gz) = 454636
|
||||
TIMESTAMP = 1646238825
|
||||
SHA256 (bup-bup-0.32_GH0.tar.gz) = a894cfa96c44b9ef48003b2c2104dc5fa6361dd2f4d519261a93178984a51259
|
||||
SIZE (bup-bup-0.32_GH0.tar.gz) = 448487
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
--- Makefile.orig 2020-12-15 12:37:40.871053000 -0800
|
||||
+++ Makefile 2020-12-15 12:38:46.984653000 -0800
|
||||
@@ -28,7 +28,7 @@
|
||||
--- Makefile.orig 2021-01-09 22:11:10 UTC
|
||||
+++ Makefile
|
||||
@@ -28,7 +28,7 @@ current_sampledata := test/sampledata/var/rev/v$(sampl
|
||||
os := $(shell ($(pf); uname | sed 's/[-_].*//') $(isok))
|
||||
os := $(call shout,$(os),Unable to determine OS)
|
||||
|
||||
-CFLAGS := -Wall -Wformat=2 -O2 -Werror -Wno-unknown-pragmas $(CFLAGS)
|
||||
+CFLAGS := -Wall -O2 -Wno-unknown-pragmas $(PYINCLUDE) $(CFLAGS)
|
||||
-CFLAGS := -O2 -Wall -Werror -Wformat=2 $(CFLAGS)
|
||||
+CFLAGS := -Wall $(CFLAGS)
|
||||
CFLAGS := -Wno-unknown-pragmas -Wsign-compare $(CFLAGS)
|
||||
CFLAGS := -D_FILE_OFFSET_BITS=64 $(PYINCLUDE) $(CFLAGS)
|
||||
SOEXT:=.so
|
||||
|
||||
|
|
|
|||
|
|
@ -1,13 +1,10 @@
|
|||
--- config/configure.orig 2020-12-15 16:52:00.017999000 -0800
|
||||
+++ config/configure 2020-12-15 16:53:04.758080000 -0800
|
||||
@@ -66,6 +66,10 @@
|
||||
--- config/configure.orig 2021-01-09 22:11:10 UTC
|
||||
+++ config/configure
|
||||
@@ -66,6 +66,7 @@ expr "$MAKE_VERSION" '>=' '3.81' || AC_FAIL "ERROR: $M
|
||||
AC_SUB bup_make "$MAKE"
|
||||
|
||||
bup_python="$(type -p "$PYTHON")"
|
||||
+test -z "$bup_python" && bup_python="$(bup_find_prog python3.9 '')"
|
||||
+test -z "$bup_python" && bup_python="$(bup_find_prog python3.8 '')"
|
||||
+test -z "$bup_python" && bup_python="$(bup_find_prog python3.7 '')"
|
||||
+test -z "$bup_python" && bup_python="$(bup_find_prog python3.6 '')"
|
||||
test -z "$bup_python" && bup_python="$(bup_find_prog python2.7 '')"
|
||||
test -z "$bup_python" && bup_python="$(bup_find_prog python2.6 '')"
|
||||
test -z "$bup_python" && bup_python="$(bup_find_prog python2 '')"
|
||||
test -z "$bup_python" && bup_python="$(bup_find_prog python3.8 '')"
|
||||
test -z "$bup_python" && bup_python="$(bup_find_prog python3.7 '')"
|
||||
test -z "$bup_python" && bup_python="$(bup_find_prog python3.6 '')"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
--- t/test-sparse-files.sh.orig 2020-12-15 12:42:46.593767000 -0800
|
||||
+++ t/test-sparse-files.sh 2020-12-15 12:43:10.570419000 -0800
|
||||
@@ -31,6 +31,12 @@
|
||||
--- test/ext/test-sparse-files.orig 2021-01-09 22:11:10 UTC
|
||||
+++ test/ext/test-sparse-files
|
||||
@@ -31,6 +31,12 @@ if [ "$probe_size" -ge "$((data_size / 1024))" ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
|
||||
|
||||
PORTNAME= zopfli
|
||||
PORTVERSION= 0.1.9
|
||||
PORTVERSION= 0.2.1
|
||||
CATEGORIES= archivers python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
@ -13,11 +13,15 @@ LICENSE= APACHE20
|
|||
LICENSE_FILE= ${WRKSRC}/COPYING
|
||||
|
||||
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>=0:devel/py-setuptools_scm@${PY_FLAVOR}
|
||||
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=0,1:devel/py-pytest@${PY_FLAVOR}
|
||||
|
||||
USES= python:3.6+ zip
|
||||
USES= python:3.7+ zip
|
||||
USE_PYTHON= autoplist concurrent distutils
|
||||
|
||||
post-install:
|
||||
${FIND} ${STAGEDIR}${PYTHON_SITELIBDIR} -name '*.so' -exec ${STRIP_CMD} {} +
|
||||
|
||||
do-test:
|
||||
cd ${WRKSRC} && ${SETENV} PYTHONPATH=${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} ${PYTHON_CMD} -m pytest -rs -v
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1635181027
|
||||
SHA256 (zopfli-0.1.9.zip) = 78de3cc08a8efaa8013d61528907d91ac4d6cc014ffd8a41cc10ee75e9e60d7b
|
||||
SIZE (zopfli-0.1.9.zip) = 79873
|
||||
TIMESTAMP = 1647264490
|
||||
SHA256 (zopfli-0.2.1.zip) = e5263d2806e2c1ccb23f52b2972a235d31d42f22f3fa3032cc9aded51e9bf2c6
|
||||
SIZE (zopfli-0.2.1.zip) = 205086
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
PORTNAME= xar
|
||||
PORTVERSION= 1.6.1
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= archivers
|
||||
MASTER_SITES= https://github.com/downloads/mackyle/xar/ \
|
||||
GENTOO
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
PORTNAME= xarchiver
|
||||
PORTVERSION= 0.5.4.17
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= archivers
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= foxtrotgps
|
||||
PORTVERSION= 1.2.2
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= astro geography
|
||||
MASTER_SITES= http://www.foxtrotgps.org/releases/
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= gpscorrelate
|
||||
PORTVERSION= 1.6.1
|
||||
PORTREVISION= 7
|
||||
PORTREVISION= 8
|
||||
CATEGORIES= astro geography
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# Created by: thierry@pompo.net
|
||||
|
||||
PORTNAME= kosmorro
|
||||
PORTVERSION= 0.10.9
|
||||
PORTVERSION= 0.10.10
|
||||
CATEGORIES= astro python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
|
||||
|
|
@ -10,18 +10,22 @@ COMMENT= Ephemerides computation
|
|||
|
||||
LICENSE= AGPLv3
|
||||
|
||||
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tabulate>0:devel/py-tabulate@${PY_FLAVOR}\
|
||||
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Babel>0:devel/py-babel@${PY_FLAVOR}\
|
||||
${PYTHON_PKGNAMEPREFIX}tabulate>0:devel/py-tabulate@${PY_FLAVOR}\
|
||||
${PYTHON_PKGNAMEPREFIX}Babel>0:devel/py-babel@${PY_FLAVOR}\
|
||||
${PYTHON_PKGNAMEPREFIX}dateutil>0:devel/py-dateutil@${PY_FLAVOR}\
|
||||
${PYTHON_PKGNAMEPREFIX}termcolor>0:devel/py-termcolor@${PY_FLAVOR}\
|
||||
${PYTHON_PKGNAMEPREFIX}kosmorrolib>0:astro/py-kosmorrolib@${PY_FLAVOR}
|
||||
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tabulate>0:devel/py-tabulate@${PY_FLAVOR}\
|
||||
${PYTHON_PKGNAMEPREFIX}kosmorrolib>0:astro/py-kosmorrolib@${PY_FLAVOR}\
|
||||
${PYTHON_PKGNAMEPREFIX}importlib-metadata>0:devel/py-importlib-metadata@${PY_FLAVOR}
|
||||
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Babel>0:devel/py-babel@${PY_FLAVOR}\
|
||||
${PYTHON_PKGNAMEPREFIX}tabulate>0:devel/py-tabulate@${PY_FLAVOR}\
|
||||
${PYTHON_PKGNAMEPREFIX}dateutil>0:devel/py-dateutil@${PY_FLAVOR}\
|
||||
${PYTHON_PKGNAMEPREFIX}termcolor>0:devel/py-termcolor@${PY_FLAVOR}\
|
||||
${PYTHON_PKGNAMEPREFIX}kosmorrolib>0:astro/py-kosmorrolib@${PY_FLAVOR}
|
||||
|
||||
#USE_GITHUB= yes
|
||||
|
||||
USES= python:3.7+ shebangfix
|
||||
USES= gettext-runtime:run python:3.7+ shebangfix
|
||||
USE_PYTHON= distutils noflavors
|
||||
SHEBANG_FILES= ${PORTNAME}
|
||||
|
||||
|
|
@ -32,7 +36,4 @@ PDF_RUN_DEPENDS=pdflatex:print/tex-formats
|
|||
|
||||
NO_ARCH= yes
|
||||
|
||||
post-install:
|
||||
${FIND} ${STAGEDIR}${PYTHON_SITELIBDIR}/_kosmorro/locales -name "*.mo" -delete
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1642019829
|
||||
SHA256 (kosmorro-0.10.9.tar.gz) = c08a6ae055cf91b92d535910c33b3a34d65472f62486d726b53e1a4b85ac90ab
|
||||
SIZE (kosmorro-0.10.9.tar.gz) = 518133
|
||||
TIMESTAMP = 1648234300
|
||||
SHA256 (kosmorro-0.10.10.tar.gz) = e9283750023446f2af54b2fbd60a7e0e82a01bfe48525b6040ee4e185fc6d091
|
||||
SIZE (kosmorro-0.10.10.tar.gz) = 513964
|
||||
|
|
|
|||
|
|
@ -1,72 +1,75 @@
|
|||
bin/kosmorro
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/__init__.py
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.pyc
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/__pycache__/__version__%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/__pycache__/__version__%%PYTHON_EXT_SUFFIX%%.pyc
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/__pycache__/date%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/__pycache__/date%%PYTHON_EXT_SUFFIX%%.pyc
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/__pycache__/debug%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/__pycache__/debug%%PYTHON_EXT_SUFFIX%%.pyc
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/__pycache__/dumper%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/__pycache__/dumper%%PYTHON_EXT_SUFFIX%%.pyc
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/__pycache__/environment%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/__pycache__/environment%%PYTHON_EXT_SUFFIX%%.pyc
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/__pycache__/exceptions%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/__pycache__/exceptions%%PYTHON_EXT_SUFFIX%%.pyc
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/__pycache__/main%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/__pycache__/main%%PYTHON_EXT_SUFFIX%%.pyc
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/__version__.py
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/assets/moonphases/png/first-quarter.png
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/assets/moonphases/png/full-moon.png
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/assets/moonphases/png/last-quarter.png
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/assets/moonphases/png/new-moon.png
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/assets/moonphases/png/unknown.png
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/assets/moonphases/png/waning-crescent.png
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/assets/moonphases/png/waning-gibbous.png
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/assets/moonphases/png/waxing-crescent.png
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/assets/moonphases/png/waxing-gibbous.png
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/assets/moonphases/svg/first-quarter.svg
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/assets/moonphases/svg/full-moon.svg
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/assets/moonphases/svg/last-quarter.svg
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/assets/moonphases/svg/new-moon.svg
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/assets/moonphases/svg/unknown.svg
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/assets/moonphases/svg/waning-crescent.svg
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/assets/moonphases/svg/waning-gibbous.svg
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/assets/moonphases/svg/waxing-crescent.svg
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/assets/moonphases/svg/waxing-gibbous.svg
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/assets/pdf/kosmorro.sty
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/assets/pdf/template.tex
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/assets/png/kosmorro-icon-white.png
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/assets/png/kosmorro-icon.png
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/assets/png/kosmorro-logo-white.png
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/assets/png/kosmorro-logo.png
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/assets/svg/kosmorro-icon-white.svg
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/assets/svg/kosmorro-icon.svg
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/assets/svg/kosmorro-logo-white.svg
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/assets/svg/kosmorro-logo.svg
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/date.py
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/debug.py
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/dumper.py
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/environment.py
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/exceptions.py
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/i18n/__init__.py
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/i18n/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/i18n/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.pyc
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/i18n/__pycache__/strings%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/i18n/__pycache__/strings%%PYTHON_EXT_SUFFIX%%.pyc
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/i18n/__pycache__/utils%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/i18n/__pycache__/utils%%PYTHON_EXT_SUFFIX%%.pyc
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/i18n/strings.py
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/i18n/utils.py
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/locales/de/LC_MESSAGES/messages.po
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/locales/en_XA/LC_MESSAGES/messages.po
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/locales/es/LC_MESSAGES/messages.po
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/locales/fr/LC_MESSAGES/messages.po
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/locales/messages.pot
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/locales/nb_NO/LC_MESSAGES/messages.po
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/locales/nl/LC_MESSAGES/messages.po
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/locales/ru/LC_MESSAGES/messages.po
|
||||
%%PYTHON_SITELIBDIR%%/_kosmorro/main.py
|
||||
man/man1/kosmorro.1.gz
|
||||
man/man7/kosmorro.7.gz
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/__init__.py
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/__main__.py
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.pyc
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/__pycache__/__main__%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/__pycache__/__main__%%PYTHON_EXT_SUFFIX%%.pyc
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/__pycache__/date%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/__pycache__/date%%PYTHON_EXT_SUFFIX%%.pyc
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/__pycache__/debug%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/__pycache__/debug%%PYTHON_EXT_SUFFIX%%.pyc
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/__pycache__/dumper%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/__pycache__/dumper%%PYTHON_EXT_SUFFIX%%.pyc
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/__pycache__/environment%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/__pycache__/environment%%PYTHON_EXT_SUFFIX%%.pyc
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/__pycache__/exceptions%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/__pycache__/exceptions%%PYTHON_EXT_SUFFIX%%.pyc
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/__pycache__/utils%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/__pycache__/utils%%PYTHON_EXT_SUFFIX%%.pyc
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/assets/moonphases/png/first-quarter.png
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/assets/moonphases/png/full-moon.png
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/assets/moonphases/png/last-quarter.png
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/assets/moonphases/png/new-moon.png
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/assets/moonphases/png/unknown.png
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/assets/moonphases/png/waning-crescent.png
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/assets/moonphases/png/waning-gibbous.png
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/assets/moonphases/png/waxing-crescent.png
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/assets/moonphases/png/waxing-gibbous.png
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/assets/moonphases/svg/first-quarter.svg
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/assets/moonphases/svg/full-moon.svg
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/assets/moonphases/svg/last-quarter.svg
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/assets/moonphases/svg/new-moon.svg
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/assets/moonphases/svg/unknown.svg
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/assets/moonphases/svg/waning-crescent.svg
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/assets/moonphases/svg/waning-gibbous.svg
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/assets/moonphases/svg/waxing-crescent.svg
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/assets/moonphases/svg/waxing-gibbous.svg
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/assets/pdf/kosmorro.sty
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/assets/pdf/template.tex
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/assets/png/kosmorro-icon-white.png
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/assets/png/kosmorro-icon.png
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/assets/png/kosmorro-logo-white.png
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/assets/png/kosmorro-logo.png
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/assets/svg/kosmorro-icon-white.svg
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/assets/svg/kosmorro-icon.svg
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/assets/svg/kosmorro-logo-white.svg
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/assets/svg/kosmorro-logo.svg
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/date.py
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/debug.py
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/dumper.py
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/environment.py
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/exceptions.py
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/i18n/__init__.py
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/i18n/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/i18n/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.pyc
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/i18n/__pycache__/strings%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/i18n/__pycache__/strings%%PYTHON_EXT_SUFFIX%%.pyc
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/i18n/__pycache__/utils%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/i18n/__pycache__/utils%%PYTHON_EXT_SUFFIX%%.pyc
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/i18n/strings.py
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/i18n/utils.py
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/locales/de/LC_MESSAGES/messages.mo
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/locales/de/LC_MESSAGES/messages.po
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/locales/es/LC_MESSAGES/messages.mo
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/locales/es/LC_MESSAGES/messages.po
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/locales/fr/LC_MESSAGES/messages.mo
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/locales/fr/LC_MESSAGES/messages.po
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/locales/messages.pot
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/locales/nb_NO/LC_MESSAGES/messages.mo
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/locales/nb_NO/LC_MESSAGES/messages.po
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/locales/nl/LC_MESSAGES/messages.mo
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/locales/nl/LC_MESSAGES/messages.po
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/locales/ru/LC_MESSAGES/messages.mo
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/locales/ru/LC_MESSAGES/messages.po
|
||||
%%PYTHON_SITELIBDIR%%/kosmorro/utils.py
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# Created by: thierry@pompo.net
|
||||
|
||||
PORTNAME= kosmorrolib
|
||||
PORTVERSION= 1.0.5
|
||||
PORTVERSION= 1.0.6
|
||||
CATEGORIES= astro python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1645555075
|
||||
SHA256 (kosmorrolib-1.0.5.tar.gz) = 1dd63aea8407164ba8ecabcf2760f9c4c2a6fb3b13f39bc8b1aa100df60dc9bc
|
||||
SIZE (kosmorrolib-1.0.5.tar.gz) = 24623
|
||||
TIMESTAMP = 1648234102
|
||||
SHA256 (kosmorrolib-1.0.6.tar.gz) = 8c77f40b346d183147cb3e927b3ea5c7d4d7067ce7e49edb73821566f74d5e51
|
||||
SIZE (kosmorrolib-1.0.6.tar.gz) = 24986
|
||||
|
|
|
|||
182
astro/py-pysofa/files/patch-2to3
Normal file
182
astro/py-pysofa/files/patch-2to3
Normal file
|
|
@ -0,0 +1,182 @@
|
|||
--- pysofa/pysofa_ctypes.py.orig 2011-01-30 09:53:37 UTC
|
||||
+++ pysofa/pysofa_ctypes.py
|
||||
@@ -156,7 +156,7 @@ def af2a(s, ideg, iamin, asec):
|
||||
.. seealso:: |MANUAL| page 21
|
||||
"""
|
||||
|
||||
- if __sofa_version < (2010, 12, 01):
|
||||
+ if __sofa_version < (2010, 12, 0o1):
|
||||
raise NotImplementedError
|
||||
rad = c_double()
|
||||
s = _sofa.iauAf2a(str(s), ideg, iamin, asec, byref(rad))
|
||||
@@ -1011,7 +1011,7 @@ def dtf2d(scale, iy, im, id, ihr, imn, sec):
|
||||
.. seealso:: |MANUAL| page 64
|
||||
"""
|
||||
|
||||
- if __sofa_version < (2010, 12, 01):
|
||||
+ if __sofa_version < (2010, 12, 0o1):
|
||||
raise NotImplementedError
|
||||
d1 = c_double()
|
||||
d2 = c_double()
|
||||
@@ -4236,7 +4236,7 @@ def taitt(tai1, tai2):
|
||||
|
||||
.. seealso:: |MANUAL| page 224
|
||||
"""
|
||||
- if __sofa_version < (2010, 12, 01):
|
||||
+ if __sofa_version < (2010, 12, 0o1):
|
||||
raise NotImplementedError
|
||||
tt1 = c_double()
|
||||
tt2 = c_double()
|
||||
@@ -4269,7 +4269,7 @@ def taiut1(tai1, tai2, dta):
|
||||
|
||||
.. seealso:: |MANUAL| page 225
|
||||
"""
|
||||
- if __sofa_version < (2010, 12, 01):
|
||||
+ if __sofa_version < (2010, 12, 0o1):
|
||||
raise NotImplementedError
|
||||
ut11 = c_double()
|
||||
ut12 = c_double()
|
||||
@@ -4309,7 +4309,7 @@ def taiutc(tai1, tai2):
|
||||
|
||||
.. seealso:: |MANUAL| page 226
|
||||
"""
|
||||
- if __sofa_version < (2010, 12, 01):
|
||||
+ if __sofa_version < (2010, 12, 0o1):
|
||||
raise NotImplementedError
|
||||
utc1 = c_double()
|
||||
utc2 = c_double()
|
||||
@@ -4342,7 +4342,7 @@ def tcbtdb(tcb1, tcb2):
|
||||
|
||||
.. seealso:: |MANUAL| page 227
|
||||
"""
|
||||
- if __sofa_version < (2010, 12, 01):
|
||||
+ if __sofa_version < (2010, 12, 0o1):
|
||||
raise NotImplementedError
|
||||
tdb1 = c_double()
|
||||
tdb2 = c_double()
|
||||
@@ -4371,7 +4371,7 @@ def tcgtt(tcg1, tcg2):
|
||||
|
||||
.. seealso:: |MANUAL| page 228
|
||||
"""
|
||||
- if __sofa_version < (2010, 12, 01):
|
||||
+ if __sofa_version < (2010, 12, 0o1):
|
||||
raise NotImplementedError
|
||||
tt1 = c_double()
|
||||
tt2 = c_double()
|
||||
@@ -4400,7 +4400,7 @@ def tdbtcb(tdb1, tdb2):
|
||||
|
||||
.. seealso:: |MANUAL| page 229
|
||||
"""
|
||||
- if __sofa_version < (2010, 12, 01):
|
||||
+ if __sofa_version < (2010, 12, 0o1):
|
||||
raise NotImplementedError
|
||||
tcb1 = c_double()
|
||||
tcb2 = c_double()
|
||||
@@ -4433,7 +4433,7 @@ def tdbtt(tdb1, tdb2, dtr):
|
||||
|
||||
.. seealso:: |MANUAL| page 230
|
||||
"""
|
||||
- if __sofa_version < (2010, 12, 01):
|
||||
+ if __sofa_version < (2010, 12, 0o1):
|
||||
raise NotImplementedError
|
||||
tt1 = c_double()
|
||||
tt2 = c_double()
|
||||
@@ -4472,7 +4472,7 @@ def tf2a(s, ihour, imin, sec):
|
||||
.. seealso:: |MANUAL| page 231
|
||||
"""
|
||||
|
||||
- if __sofa_version < (2010, 12, 01):
|
||||
+ if __sofa_version < (2010, 12, 0o1):
|
||||
raise NotImplementedError
|
||||
rad = c_double()
|
||||
s = _sofa.iauTf2a(str(s), ihour, imin, sec, byref(rad))
|
||||
@@ -4510,7 +4510,7 @@ def tf2d(s, ihour, imin, sec):
|
||||
.. seealso:: |MANUAL| page 232
|
||||
"""
|
||||
|
||||
- if __sofa_version < (2010, 12, 01):
|
||||
+ if __sofa_version < (2010, 12, 0o1):
|
||||
raise NotImplementedError
|
||||
days = c_double()
|
||||
s = _sofa.iauTf2d(str(s), ihour, imin, sec, byref(days))
|
||||
@@ -4600,7 +4600,7 @@ def tttai(tt1, tt2):
|
||||
|
||||
.. seealso:: |MANUAL| page 236
|
||||
"""
|
||||
- if __sofa_version < (2010, 12, 01):
|
||||
+ if __sofa_version < (2010, 12, 0o1):
|
||||
raise NotImplementedError
|
||||
tai1 = c_double()
|
||||
tai2 = c_double()
|
||||
@@ -4629,7 +4629,7 @@ def tttcg(tt1, tt2):
|
||||
|
||||
.. seealso:: |MANUAL| page 237
|
||||
"""
|
||||
- if __sofa_version < (2010, 12, 01):
|
||||
+ if __sofa_version < (2010, 12, 0o1):
|
||||
raise NotImplementedError
|
||||
tcg1 = c_double()
|
||||
tcg2 = c_double()
|
||||
@@ -4662,7 +4662,7 @@ def tttdb(tt1, tt2, dtr):
|
||||
|
||||
.. seealso:: |MANUAL| page 238
|
||||
"""
|
||||
- if __sofa_version < (2010, 12, 01):
|
||||
+ if __sofa_version < (2010, 12, 0o1):
|
||||
raise NotImplementedError
|
||||
tdb1 = c_double()
|
||||
tdb2 = c_double()
|
||||
@@ -4695,7 +4695,7 @@ def ttut1(tt1, tt2, dt):
|
||||
|
||||
.. seealso:: |MANUAL| page 239
|
||||
"""
|
||||
- if __sofa_version < (2010, 12, 01):
|
||||
+ if __sofa_version < (2010, 12, 0o1):
|
||||
raise NotImplementedError
|
||||
ut11 = c_double()
|
||||
ut12 = c_double()
|
||||
@@ -4728,7 +4728,7 @@ def ut1tai(ut11, ut12, dta):
|
||||
|
||||
.. seealso:: |MANUAL| page 240
|
||||
"""
|
||||
- if __sofa_version < (2010, 12, 01):
|
||||
+ if __sofa_version < (2010, 12, 0o1):
|
||||
raise NotImplementedError
|
||||
tai1 = c_double()
|
||||
tai2 = c_double()
|
||||
@@ -4761,7 +4761,7 @@ def ut1tt(ut11, ut12, dt):
|
||||
|
||||
.. seealso:: |MANUAL| page 241
|
||||
"""
|
||||
- if __sofa_version < (2010, 12, 01):
|
||||
+ if __sofa_version < (2010, 12, 0o1):
|
||||
raise NotImplementedError
|
||||
tt1 = c_double()
|
||||
tt2 = c_double()
|
||||
@@ -4805,7 +4805,7 @@ def ut1utc(ut11, ut12, dut1):
|
||||
|
||||
.. seealso:: |MANUAL| page 242
|
||||
"""
|
||||
- if __sofa_version < (2010, 12, 01):
|
||||
+ if __sofa_version < (2010, 12, 0o1):
|
||||
raise NotImplementedError
|
||||
utc1 = c_double()
|
||||
utc2 = c_double()
|
||||
@@ -4849,7 +4849,7 @@ def utctai(utc1, utc2):
|
||||
|
||||
.. seealso:: |MANUAL| page 243
|
||||
"""
|
||||
- if __sofa_version < (2010, 12, 01):
|
||||
+ if __sofa_version < (2010, 12, 0o1):
|
||||
raise NotImplementedError
|
||||
tai1 = c_double()
|
||||
tai2 = c_double()
|
||||
@@ -4897,7 +4897,7 @@ def utcut1(utc1, utc2, dut1):
|
||||
|
||||
.. seealso:: |MANUAL| page 244
|
||||
"""
|
||||
- if __sofa_version < (2010, 12, 01):
|
||||
+ if __sofa_version < (2010, 12, 0o1):
|
||||
raise NotImplementedError
|
||||
ut11 = c_double()
|
||||
ut12 = c_double()
|
||||
191
astro/py-ro/files/patch-2to3
Normal file
191
astro/py-ro/files/patch-2to3
Normal file
|
|
@ -0,0 +1,191 @@
|
|||
--- python/RO/AddCallback.py.orig 2015-11-03 17:58:36 UTC
|
||||
+++ python/RO/AddCallback.py
|
||||
@@ -1,4 +1,4 @@
|
||||
-from __future__ import absolute_import, division, print_function
|
||||
+
|
||||
"""Mixing class(es) for adding callback capabilities.
|
||||
|
||||
History:
|
||||
@@ -145,7 +145,7 @@ class BaseMixin(object):
|
||||
return
|
||||
|
||||
if not callable(callFunc):
|
||||
- raise ValueError, "callFunc %r is not callable" % (callFunc,)
|
||||
+ raise ValueError("callFunc %r is not callable" % (callFunc,))
|
||||
|
||||
# add new function
|
||||
if callFunc not in self._callbacks:
|
||||
@@ -264,7 +264,7 @@ class TkButtonMixin(BaseMixin):
|
||||
|
||||
if command is not None:
|
||||
if not callable(command):
|
||||
- raise ValueError, "command %r is not callable" % (command,)
|
||||
+ raise ValueError("command %r is not callable" % (command,))
|
||||
def doCommand(wdg):
|
||||
return command()
|
||||
self.addCallback(doCommand)
|
||||
--- python/RO/procFiles.py.orig 2015-09-24 22:49:08 UTC
|
||||
+++ python/RO/procFiles.py
|
||||
@@ -1,5 +1,5 @@
|
||||
#!/usr/bin/env python
|
||||
-from __future__ import absolute_import, division, print_function
|
||||
+
|
||||
"""procFiles calls a user-supplied function "func" to process a set of files one by one.
|
||||
The processed data is typically concatenated into one output file, but this behavior
|
||||
is controlled by outPath.
|
||||
@@ -161,7 +161,7 @@ def procFiles (
|
||||
):
|
||||
# make sure func is callable
|
||||
if not callable(func):
|
||||
- raise RuntimeError, "supplied function is not callable"
|
||||
+ raise RuntimeError("supplied function is not callable")
|
||||
|
||||
# handle case of inPathList being a single string
|
||||
inPathList = RO.SeqUtil.asSequence(inPathList)
|
||||
@@ -212,7 +212,7 @@ def procFiles (
|
||||
sys.stdout = file(outPath, 'w')
|
||||
except ImportError:
|
||||
# unknown platform; use standard prompt
|
||||
- outFile = raw_input(
|
||||
+ outFile = input(
|
||||
"output file relative to %r [stdout]: " % outDir)
|
||||
|
||||
# generate outPath, and if it's a file, open it and redirect stdout
|
||||
--- python/RO/Wdg/PythonWdg.py.orig 2015-09-24 22:59:33 UTC
|
||||
+++ python/RO/Wdg/PythonWdg.py
|
||||
@@ -1,5 +1,5 @@
|
||||
#!/usr/bin/env python
|
||||
-from __future__ import division, print_function
|
||||
+
|
||||
"""An interactive Python session and simple script file editor/runner
|
||||
that may be used from Tkinter scripts. Before running a script,x=Tk() is replaced with x=Toplevel() and mainloop() is eliminated. Hence some Tk scripts
|
||||
may be safely run. Presumably there are limitations. I suspect that mucking about
|
||||
@@ -41,13 +41,13 @@ __all__ = ['PythonWdg']
|
||||
|
||||
import os
|
||||
import re
|
||||
-import Tkinter
|
||||
-import tkFileDialog
|
||||
+import tkinter
|
||||
+import tkinter.filedialog
|
||||
import RO.CnvUtil
|
||||
import RO.OS
|
||||
-import Text
|
||||
+from . import Text
|
||||
|
||||
-class PythonWdg(Tkinter.Frame):
|
||||
+class PythonWdg(tkinter.Frame):
|
||||
"""A frame containing text window into which you may enter Python code.
|
||||
|
||||
Inputs:
|
||||
@@ -60,7 +60,7 @@ class PythonWdg(Tkinter.Frame):
|
||||
filePath = None,
|
||||
helpURL = None,
|
||||
**kargs):
|
||||
- Tkinter.Frame.__init__(self, master, **kargs)
|
||||
+ tkinter.Frame.__init__(self, master, **kargs)
|
||||
|
||||
self.master=master
|
||||
self.filePath = filePath
|
||||
@@ -71,39 +71,39 @@ class PythonWdg(Tkinter.Frame):
|
||||
height = 10,
|
||||
helpURL = helpURL
|
||||
)
|
||||
- self.inputWdg.grid(row=0, column=0, sticky=Tkinter.NSEW)
|
||||
+ self.inputWdg.grid(row=0, column=0, sticky=tkinter.NSEW)
|
||||
self.inputWdg.bind("<Key-Escape>", self.run)
|
||||
|
||||
- self.scroll = Tkinter.Scrollbar(self, command=self.inputWdg.yview)
|
||||
+ self.scroll = tkinter.Scrollbar(self, command=self.inputWdg.yview)
|
||||
self.inputWdg.configure(yscrollcommand=self.scroll.set)
|
||||
- self.scroll.grid(row=0, column=1, sticky=Tkinter.NS)
|
||||
+ self.scroll.grid(row=0, column=1, sticky=tkinter.NS)
|
||||
|
||||
if self.filePath:
|
||||
fd = RO.OS.openUniv(self.filePath)
|
||||
try:
|
||||
- self.inputWdg.delete(1.0, Tkinter.END)
|
||||
+ self.inputWdg.delete(1.0, tkinter.END)
|
||||
for line in fd.readlines():
|
||||
- self.inputWdg.insert(Tkinter.END, line)
|
||||
+ self.inputWdg.insert(tkinter.END, line)
|
||||
finally:
|
||||
fd.close()
|
||||
|
||||
- self.cmdbar = Tkinter.Frame(self, borderwidth=2, relief=Tkinter.SUNKEN)
|
||||
- self.open = Tkinter.Button(self.cmdbar, text='Open...', command=self.open)
|
||||
- self.open.pack(side=Tkinter.LEFT, expand=0, padx=3, pady=3)
|
||||
- self.save = Tkinter.Button(self.cmdbar, text='Save...', command=self.save)
|
||||
- self.save.pack(side=Tkinter.LEFT, expand=0, padx=3, pady=3)
|
||||
- self.clr = Tkinter.Button(self.cmdbar, text='Clear', command=self.clr)
|
||||
- self.clr.pack(side=Tkinter.LEFT, expand=0, padx=3, pady=3)
|
||||
- self.run =Tkinter.Button(self.cmdbar, text='Run', command=self.run)
|
||||
- self.run.pack(side=Tkinter.RIGHT, expand=0, padx=3, pady=3)
|
||||
- self.cmdbar.grid(row=1, column=0, columnspan=2, sticky=Tkinter.EW)
|
||||
+ self.cmdbar = tkinter.Frame(self, borderwidth=2, relief=tkinter.SUNKEN)
|
||||
+ self.open = tkinter.Button(self.cmdbar, text='Open...', command=self.open)
|
||||
+ self.open.pack(side=tkinter.LEFT, expand=0, padx=3, pady=3)
|
||||
+ self.save = tkinter.Button(self.cmdbar, text='Save...', command=self.save)
|
||||
+ self.save.pack(side=tkinter.LEFT, expand=0, padx=3, pady=3)
|
||||
+ self.clr = tkinter.Button(self.cmdbar, text='Clear', command=self.clr)
|
||||
+ self.clr.pack(side=tkinter.LEFT, expand=0, padx=3, pady=3)
|
||||
+ self.run =tkinter.Button(self.cmdbar, text='Run', command=self.run)
|
||||
+ self.run.pack(side=tkinter.RIGHT, expand=0, padx=3, pady=3)
|
||||
+ self.cmdbar.grid(row=1, column=0, columnspan=2, sticky=tkinter.EW)
|
||||
|
||||
self.grid_rowconfigure(0, weight=1)
|
||||
self.grid_columnconfigure(0, weight=1)
|
||||
self.inputWdg.focus_set()
|
||||
|
||||
def run(self, evt=None, globs=None, locs=None):
|
||||
- script = self.inputWdg.get(1.0, Tkinter.END)
|
||||
+ script = self.inputWdg.get(1.0, tkinter.END)
|
||||
|
||||
# replace x = Tk() with x = Toplevel()
|
||||
tkPat = re.compile(r"^(.*=\s*)(:?ROStd)?Tk\(\)(.*)$", re.MULTILINE)
|
||||
@@ -118,26 +118,26 @@ class PythonWdg(Tkinter.Frame):
|
||||
globs = __main__.__dict__
|
||||
if locs is None:
|
||||
locs = globs
|
||||
- exec script in globs, locs
|
||||
+ exec(script, globs, locs)
|
||||
|
||||
def open(self):
|
||||
- filePath = tkFileDialog.askopenfilename()
|
||||
+ filePath = tkinter.filedialog.askopenfilename()
|
||||
if not filePath:
|
||||
return
|
||||
filePath = RO.CnvUtil.asStr(filePath)
|
||||
- top = Tkinter.Toplevel(self.master, )
|
||||
+ top = tkinter.Toplevel(self.master, )
|
||||
top.title(os.path.basename(filePath))
|
||||
frame = PythonWdg(top, filePath=filePath)
|
||||
- frame.pack(expand=Tkinter.YES, fill=Tkinter.BOTH)
|
||||
+ frame.pack(expand=tkinter.YES, fill=tkinter.BOTH)
|
||||
|
||||
def save(self, forPrt=None):
|
||||
- script = self.inputWdg.get(1.0, Tkinter.END)
|
||||
+ script = self.inputWdg.get(1.0, tkinter.END)
|
||||
if not script:
|
||||
return
|
||||
if forPrt:
|
||||
filePath = 'prt.tmp'
|
||||
else:
|
||||
- filePath = tkFileDialog.asksaveasfilename(initialfile=self.filePath)
|
||||
+ filePath = tkinter.filedialog.asksaveasfilename(initialfile=self.filePath)
|
||||
if not filePath:
|
||||
return
|
||||
self.filePath = RO.CnvUtil.asStr(filePath)
|
||||
@@ -152,10 +152,10 @@ class PythonWdg(Tkinter.Frame):
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
- root = Tkinter.Tk()
|
||||
+ root = tkinter.Tk()
|
||||
|
||||
testFrame = PythonWdg(root)
|
||||
root.geometry("+0+450")
|
||||
- testFrame.pack(expand=Tkinter.YES, fill=Tkinter.BOTH)
|
||||
+ testFrame.pack(expand=tkinter.YES, fill=tkinter.BOTH)
|
||||
|
||||
root.mainloop()
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
PORTNAME= abGate
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 1.2.0
|
||||
PORTREVISION= 2
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= audio
|
||||
PKGNAMESUFFIX= -lv2
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
PORTNAME= amarok
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 2.9.71
|
||||
PORTREVISION= 2
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= audio kde
|
||||
|
||||
MAINTAINER= kde@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= aqualung
|
||||
PORTVERSION= 1.0
|
||||
PORTREVISION= 17
|
||||
PORTREVISION= 18
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= SF
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= ardour6
|
||||
PORTVERSION= 6.9.0
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= LOCAL/nc/mirror/ \
|
||||
https://community.ardour.org/srctar/ \
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
PORTNAME= ario
|
||||
PORTVERSION= 1.6
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= SF/ario-player/ario-player/${PORTVERSION}
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= denemo
|
||||
PORTVERSION= 2.0.6
|
||||
PORTREVISION= 13
|
||||
PORTREVISION= 14
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= GNU
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= easytag
|
||||
PORTVERSION= 2.4.3
|
||||
PORTREVISION= 3
|
||||
PORTREVISION= 4
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= GNOME
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= eq10q
|
||||
DISTVERSION= 2.2
|
||||
PORTREVISION= 3
|
||||
PORTREVISION= 4
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= SF/${PORTNAME}
|
||||
PKGNAMESUFFIX= -lv2
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= ezstream
|
||||
PORTVERSION= 0.5.6
|
||||
PORTREVISION= 6
|
||||
PORTREVISION= 7
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= https://downloads.xiph.org/releases/ezstream/ \
|
||||
https://ftp.osuosl.org/pub/xiph/releases/ezstream/
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= fluidsynth
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 2.2.4
|
||||
DISTVERSION= 2.2.6
|
||||
CATEGORIES= audio
|
||||
|
||||
MAINTAINER= multimedia@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1637940656
|
||||
SHA256 (FluidSynth-fluidsynth-v2.2.4_GH0.tar.gz) = 83cb1dba04c632ede74f0c0717018b062c0e00b639722203b23f77a961afd390
|
||||
SIZE (FluidSynth-fluidsynth-v2.2.4_GH0.tar.gz) = 1746638
|
||||
TIMESTAMP = 1648069802
|
||||
SHA256 (FluidSynth-fluidsynth-v2.2.6_GH0.tar.gz) = ca90fe675cacd9a7b442662783c4e7fa0e1fd638b28d64105a4e3fe0f618d20f
|
||||
SIZE (FluidSynth-fluidsynth-v2.2.6_GH0.tar.gz) = 1749202
|
||||
|
|
|
|||
|
|
@ -19,6 +19,6 @@ include/fluidsynth/version.h
|
|||
include/fluidsynth/voice.h
|
||||
lib/libfluidsynth.so
|
||||
lib/libfluidsynth.so.3
|
||||
lib/libfluidsynth.so.3.0.4
|
||||
lib/libfluidsynth.so.3.0.6
|
||||
libdata/pkgconfig/fluidsynth.pc
|
||||
man/man1/fluidsynth.1.gz
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= forked-daapd
|
||||
DISTVERSION= 27.2
|
||||
PORTREVISION= 2
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= https://github.com/ejurgensen/forked-daapd/releases/download/${DISTVERSION}/
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
PORTNAME= ganv
|
||||
PORTVERSION= 1.8.0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= https://download.drobilla.net/
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= gbemol
|
||||
PORTVERSION= 0.3.2
|
||||
PORTREVISION= 13
|
||||
PORTREVISION= 14
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= SF
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= glurp
|
||||
PORTVERSION= 0.12.3
|
||||
PORTREVISION= 4
|
||||
PORTREVISION= 5
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= SF
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= gmpc-discogs
|
||||
PORTVERSION= 0.20.0
|
||||
PORTREVISION= 6
|
||||
PORTREVISION= 7
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= http://download.sarine.nl/Programs/gmpc/${PORTVERSION}/
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= gmpc-extraplaylist
|
||||
PORTVERSION= 0.20.0
|
||||
PORTREVISION= 6
|
||||
PORTREVISION= 7
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= http://download.sarine.nl/Programs/gmpc/${PORTVERSION}/
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= gmpc-lastfm
|
||||
PORTVERSION= 0.20.0
|
||||
PORTREVISION= 6
|
||||
PORTREVISION= 7
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= http://download.sarine.nl/Programs/gmpc/${PORTVERSION}/
|
||||
DISTNAME= gmpc-last-fm-${PORTVERSION}
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= gmpc-lyrics
|
||||
PORTVERSION= 11.8.16
|
||||
PORTREVISION= 5
|
||||
PORTREVISION= 6
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= http://download.sarine.nl/Programs/gmpc/${PORTVERSION}/
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= gmpc-lyricsplugin
|
||||
PORTVERSION= 0.20.0
|
||||
PORTREVISION= 6
|
||||
PORTREVISION= 7
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= http://download.sarine.nl/Programs/gmpc/${PORTVERSION}/
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= gmpc-magnatune
|
||||
PORTVERSION= 11.8.16
|
||||
PORTREVISION= 6
|
||||
PORTREVISION= 7
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= http://download.sarine.nl/Programs/gmpc/${PORTVERSION}/
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= gmpc-mdcover
|
||||
PORTVERSION= 0.20.0
|
||||
PORTREVISION= 6
|
||||
PORTREVISION= 7
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= http://download.sarine.nl/Programs/gmpc/${PORTVERSION}/
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= gmpc-mserver
|
||||
PORTVERSION= 0.20.0
|
||||
PORTREVISION= 17
|
||||
PORTREVISION= 18
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= http://download.sarine.nl/Programs/gmpc/${PORTVERSION}/
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= gmpc-shout
|
||||
PORTVERSION= 0.20.0
|
||||
PORTREVISION= 6
|
||||
PORTREVISION= 7
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= http://download.sarine.nl/Programs/gmpc/${PORTVERSION}/
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= gmpc
|
||||
PORTVERSION= 11.8.16
|
||||
PORTREVISION= 5
|
||||
PORTREVISION= 6
|
||||
PORTEPOCH= 1
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= http://download.sarine.nl/Programs/gmpc/${PORTVERSION}/
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
PORTNAME= gmtp
|
||||
PORTVERSION= 1.3.11
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= SF/${PORTNAME}/gMTP-${PORTVERSION}/
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= gnaural
|
||||
PORTVERSION= 1.0.20110606
|
||||
PORTREVISION= 5
|
||||
PORTREVISION= 6
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= SF/${PORTNAME}/Gnaural/ \
|
||||
LOCAL/martymac
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
PORTNAME= gsequencer
|
||||
DISTVERSION= 3.10.4
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= SAVANNAH/gsequencer/${DISTVERSION:R}.x
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
|
||||
COMMENT= GStreamer ATSC A/52 stream aka AC-3 (dvd audio) plugin
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
|
||||
COMMENT= GStreamer OpenCore based Adaptive Multi-Rate Narrow-Band plugin
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
PKGNAMESUFFIX= 1-plugins-amrwbdec
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
|
||||
COMMENT= GStreamer Bauer Stereophonic to Banaural BSP (bs2b) plugin
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
|
||||
COMMENT= GStreamer CDDA extraction (aka audio ripping) plugin
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
|
||||
COMMENT= GStreamer audio fingerprint extracting plugin
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
|
||||
COMMENT= GStreamer MPEG-2 and MPEG-4 AAC encoder plugin
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
|
||||
COMMENT= GStreamer MPEG-2 and MPEG-4 AAC decoder plugin
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
|
||||
COMMENT= GStreamer free lossless audio encoder/decoder plugin
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
|
||||
COMMENT= GStreamer flite run-time speech synthesis engine plugin
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
|
||||
COMMENT= GStreamer emulate gaming console sound processors plugin
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
|
||||
COMMENT= GStreamer gsm encoding/decoding plugin
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
|
||||
COMMENT= GStreamer low-latency audio server plugin
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
|
||||
COMMENT= Gstreamer ladspa (Linux Audio Developer's Simple Plugin API) plugin
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
|
||||
COMMENT= GStreamer High-quality free mp3 encode plugin
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
|
||||
COMMENT= Gstreamer lv2 wrapper plugin
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
|
||||
COMMENT= GStreamer module decoder based on modplug egine plugin
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
|
||||
COMMENT= GStreamer MPEG Layer 1, 2, and 3 plugin
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
|
||||
COMMENT= Gstreamer musepack mpc encoder/decoder plugin
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
|
||||
COMMENT= GStreamer Ogg bitstream plugin
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= audio
|
||||
|
||||
COMMENT= GStreamer OpenMPT audio decoder plugin
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
|
||||
COMMENT= GStreamer Opus audio encoder/decoder plugin
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
|
||||
COMMENT= GStreamer pulseaudio plugin
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
|
||||
COMMENT= GStreamer icecast output plugin
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
|
||||
COMMENT= GStreamer Commodore SID audio decoder plugin
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# Created by: Michael Johnson <ahze@FreeBSD.org>
|
||||
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= audio
|
||||
|
||||
COMMENT= Gstreamer sndfile plugin
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= audio
|
||||
|
||||
COMMENT= GStreamer soundtouch plugin
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
|
||||
COMMENT= GStreamer speex voice encode/decode plugin
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
|
||||
COMMENT= GStreamer taglib plugin for adding APEv2 and ID3v2 headers
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
|
||||
COMMENT= GStreamer High-quality free MP2 encoder plugin
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
|
||||
COMMENT= GStreamer vorbis encoder/decoder plugin
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
|
||||
COMMENT= GStreamer wavpack encode/decode plugin
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= audio
|
||||
|
||||
COMMENT= GStreamer WebRTC Audio Processing plugin
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
PORTNAME= gtkguitune
|
||||
PORTVERSION= 0.8
|
||||
DISTVERSIONPREFIX= gtk2-
|
||||
PORTREVISION= 10
|
||||
PORTREVISION= 11
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= GENTOO \
|
||||
http://www.oocities.org/harpin_floh/mysoft/
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= gtkpod
|
||||
PORTVERSION= 1.0.0
|
||||
PORTREVISION= 9
|
||||
PORTREVISION= 10
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
PORTNAME= guitarix
|
||||
DISTVERSION= 0.43.1
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/
|
||||
PKGNAMESUFFIX= -lv2
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
PORTNAME= icecast
|
||||
DISTVERSIONPREFIX= icecast-
|
||||
DISTVERSION= 2.4.0-kh15
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio net
|
||||
PKGNAMESUFFIX= -kh
|
||||
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
PORTNAME= icecast
|
||||
PORTVERSION= 2.4.4
|
||||
PORTREVISION= 1
|
||||
PORTEPOCH= 1
|
||||
CATEGORIES= audio net
|
||||
MASTER_SITES= https://downloads.xiph.org/releases/icecast/:source \
|
||||
|
|
@ -25,7 +26,7 @@ LIB_DEPENDS= libcurl.so:ftp/curl \
|
|||
libtheora.so:multimedia/libtheora \
|
||||
libvorbis.so:audio/libvorbis
|
||||
|
||||
USES= cpe gmake gnome localbase ssl
|
||||
USES= cpe gmake gnome localbase pkgconfig ssl
|
||||
USE_GNOME= libxml2 libxslt
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
|
|
|
|||
410
audio/icecast/files/patch-configure
Normal file
410
audio/icecast/files/patch-configure
Normal file
|
|
@ -0,0 +1,410 @@
|
|||
--- configure.orig 2018-10-31 18:26:07 UTC
|
||||
+++ configure
|
||||
@@ -673,7 +673,13 @@ OGG_LDFLAGS
|
||||
OGG_CFLAGS
|
||||
OGG_LIBS
|
||||
OGG_PREFIX
|
||||
-XSLTCONFIG
|
||||
+LIBXML2_LIBS
|
||||
+LIBXML2_CFLAGS
|
||||
+LIBXSLT_LIBS
|
||||
+LIBXSLT_CFLAGS
|
||||
+PKG_CONFIG_LIBDIR
|
||||
+PKG_CONFIG_PATH
|
||||
+PKG_CONFIG
|
||||
CPP
|
||||
LT_SYS_LIBRARY_PATH
|
||||
OTOOL64
|
||||
@@ -806,7 +812,6 @@ with_gnu_ld
|
||||
with_sysroot
|
||||
enable_libtool_lock
|
||||
enable_largefile
|
||||
-with_xslt_config
|
||||
with_ogg
|
||||
with_vorbis
|
||||
with_theora
|
||||
@@ -826,7 +831,13 @@ LIBS
|
||||
CPPFLAGS
|
||||
LT_SYS_LIBRARY_PATH
|
||||
CPP
|
||||
-XSLTCONFIG
|
||||
+PKG_CONFIG
|
||||
+PKG_CONFIG_PATH
|
||||
+PKG_CONFIG_LIBDIR
|
||||
+LIBXSLT_CFLAGS
|
||||
+LIBXSLT_LIBS
|
||||
+LIBXML2_CFLAGS
|
||||
+LIBXML2_LIBS
|
||||
OGG_PREFIX
|
||||
VORBIS_PREFIX
|
||||
THEORA
|
||||
@@ -1488,7 +1499,6 @@ Optional Packages:
|
||||
--with-gnu-ld assume the C compiler uses GNU ld [default=no]
|
||||
--with-sysroot[=DIR] Search for dependent libraries within DIR (or the
|
||||
compiler's sysroot if not specified).
|
||||
- --with-xslt-config=PATH use xslt-config in PATH to find libxslt
|
||||
--with-ogg=PREFIX Prefix where libogg is installed (optional)
|
||||
--with-vorbis=PREFIX Prefix where libvorbis is installed (optional)
|
||||
--with-theora=PREFIX Prefix where libtheora is installed (optional)
|
||||
@@ -1509,7 +1519,19 @@ Some influential environment variables:
|
||||
LT_SYS_LIBRARY_PATH
|
||||
User-defined run-time library search path.
|
||||
CPP C preprocessor
|
||||
- XSLTCONFIG XSLT configuration program
|
||||
+ PKG_CONFIG path to pkg-config utility
|
||||
+ PKG_CONFIG_PATH
|
||||
+ directories to add to pkg-config's search path
|
||||
+ PKG_CONFIG_LIBDIR
|
||||
+ path overriding pkg-config's built-in search path
|
||||
+ LIBXSLT_CFLAGS
|
||||
+ C compiler flags for LIBXSLT, overriding pkg-config
|
||||
+ LIBXSLT_LIBS
|
||||
+ linker flags for LIBXSLT, overriding pkg-config
|
||||
+ LIBXML2_CFLAGS
|
||||
+ C compiler flags for LIBXML2, overriding pkg-config
|
||||
+ LIBXML2_LIBS
|
||||
+ linker flags for LIBXML2, overriding pkg-config
|
||||
OGG_PREFIX path to ogg installation
|
||||
VORBIS_PREFIX
|
||||
path to vorbis installation
|
||||
@@ -13031,22 +13053,66 @@ fi
|
||||
|
||||
|
||||
|
||||
-# Check whether --with-xslt-config was given.
|
||||
-if test "${with_xslt_config+set}" = set; then :
|
||||
- withval=$with_xslt_config; XSLTCONFIG="$withval"
|
||||
+
|
||||
+
|
||||
+
|
||||
+
|
||||
+
|
||||
+if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
|
||||
+ if test -n "$ac_tool_prefix"; then
|
||||
+ # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
|
||||
+set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
|
||||
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
||||
+$as_echo_n "checking for $ac_word... " >&6; }
|
||||
+if ${ac_cv_path_PKG_CONFIG+:} false; then :
|
||||
+ $as_echo_n "(cached) " >&6
|
||||
else
|
||||
- for ac_prog in xslt-config
|
||||
+ case $PKG_CONFIG in
|
||||
+ [\\/]* | ?:[\\/]*)
|
||||
+ ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path.
|
||||
+ ;;
|
||||
+ *)
|
||||
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
||||
+for as_dir in $PATH
|
||||
do
|
||||
- # Extract the first word of "$ac_prog", so it can be a program name with args.
|
||||
-set dummy $ac_prog; ac_word=$2
|
||||
+ IFS=$as_save_IFS
|
||||
+ test -z "$as_dir" && as_dir=.
|
||||
+ for ac_exec_ext in '' $ac_executable_extensions; do
|
||||
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
||||
+ ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
|
||||
+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
||||
+ break 2
|
||||
+ fi
|
||||
+done
|
||||
+ done
|
||||
+IFS=$as_save_IFS
|
||||
+
|
||||
+ ;;
|
||||
+esac
|
||||
+fi
|
||||
+PKG_CONFIG=$ac_cv_path_PKG_CONFIG
|
||||
+if test -n "$PKG_CONFIG"; then
|
||||
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5
|
||||
+$as_echo "$PKG_CONFIG" >&6; }
|
||||
+else
|
||||
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||
+$as_echo "no" >&6; }
|
||||
+fi
|
||||
+
|
||||
+
|
||||
+fi
|
||||
+if test -z "$ac_cv_path_PKG_CONFIG"; then
|
||||
+ ac_pt_PKG_CONFIG=$PKG_CONFIG
|
||||
+ # Extract the first word of "pkg-config", so it can be a program name with args.
|
||||
+set dummy pkg-config; ac_word=$2
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
||||
$as_echo_n "checking for $ac_word... " >&6; }
|
||||
-if ${ac_cv_path_XSLTCONFIG+:} false; then :
|
||||
+if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then :
|
||||
$as_echo_n "(cached) " >&6
|
||||
else
|
||||
- case $XSLTCONFIG in
|
||||
+ case $ac_pt_PKG_CONFIG in
|
||||
[\\/]* | ?:[\\/]*)
|
||||
- ac_cv_path_XSLTCONFIG="$XSLTCONFIG" # Let the user override the test with a path.
|
||||
+ ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path.
|
||||
;;
|
||||
*)
|
||||
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
||||
@@ -13056,7 +13122,7 @@ do
|
||||
test -z "$as_dir" && as_dir=.
|
||||
for ac_exec_ext in '' $ac_executable_extensions; do
|
||||
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
||||
- ac_cv_path_XSLTCONFIG="$as_dir/$ac_word$ac_exec_ext"
|
||||
+ ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
|
||||
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
||||
break 2
|
||||
fi
|
||||
@@ -13067,35 +13133,198 @@ IFS=$as_save_IFS
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
-XSLTCONFIG=$ac_cv_path_XSLTCONFIG
|
||||
-if test -n "$XSLTCONFIG"; then
|
||||
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XSLTCONFIG" >&5
|
||||
-$as_echo "$XSLTCONFIG" >&6; }
|
||||
+ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG
|
||||
+if test -n "$ac_pt_PKG_CONFIG"; then
|
||||
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5
|
||||
+$as_echo "$ac_pt_PKG_CONFIG" >&6; }
|
||||
else
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||
$as_echo "no" >&6; }
|
||||
fi
|
||||
|
||||
+ if test "x$ac_pt_PKG_CONFIG" = x; then
|
||||
+ PKG_CONFIG=""
|
||||
+ else
|
||||
+ case $cross_compiling:$ac_tool_warned in
|
||||
+yes:)
|
||||
+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
|
||||
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
|
||||
+ac_tool_warned=yes ;;
|
||||
+esac
|
||||
+ PKG_CONFIG=$ac_pt_PKG_CONFIG
|
||||
+ fi
|
||||
+else
|
||||
+ PKG_CONFIG="$ac_cv_path_PKG_CONFIG"
|
||||
+fi
|
||||
|
||||
- test -n "$XSLTCONFIG" && break
|
||||
-done
|
||||
-test -n "$XSLTCONFIG" || XSLTCONFIG=""""
|
||||
+fi
|
||||
+if test -n "$PKG_CONFIG"; then
|
||||
+ _pkg_min_version=0.9.0
|
||||
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5
|
||||
+$as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; }
|
||||
+ if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
|
||||
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||
+$as_echo "yes" >&6; }
|
||||
+ else
|
||||
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||
+$as_echo "no" >&6; }
|
||||
+ PKG_CONFIG=""
|
||||
+ fi
|
||||
+fi
|
||||
|
||||
+pkg_failed=no
|
||||
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBXSLT" >&5
|
||||
+$as_echo_n "checking for LIBXSLT... " >&6; }
|
||||
|
||||
+if test -n "$LIBXSLT_CFLAGS"; then
|
||||
+ pkg_cv_LIBXSLT_CFLAGS="$LIBXSLT_CFLAGS"
|
||||
+ elif test -n "$PKG_CONFIG"; then
|
||||
+ if test -n "$PKG_CONFIG" && \
|
||||
+ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libxslt\""; } >&5
|
||||
+ ($PKG_CONFIG --exists --print-errors "libxslt") 2>&5
|
||||
+ ac_status=$?
|
||||
+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
||||
+ test $ac_status = 0; }; then
|
||||
+ pkg_cv_LIBXSLT_CFLAGS=`$PKG_CONFIG --cflags "libxslt" 2>/dev/null`
|
||||
+ test "x$?" != "x0" && pkg_failed=yes
|
||||
+else
|
||||
+ pkg_failed=yes
|
||||
fi
|
||||
+ else
|
||||
+ pkg_failed=untried
|
||||
+fi
|
||||
+if test -n "$LIBXSLT_LIBS"; then
|
||||
+ pkg_cv_LIBXSLT_LIBS="$LIBXSLT_LIBS"
|
||||
+ elif test -n "$PKG_CONFIG"; then
|
||||
+ if test -n "$PKG_CONFIG" && \
|
||||
+ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libxslt\""; } >&5
|
||||
+ ($PKG_CONFIG --exists --print-errors "libxslt") 2>&5
|
||||
+ ac_status=$?
|
||||
+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
||||
+ test $ac_status = 0; }; then
|
||||
+ pkg_cv_LIBXSLT_LIBS=`$PKG_CONFIG --libs "libxslt" 2>/dev/null`
|
||||
+ test "x$?" != "x0" && pkg_failed=yes
|
||||
+else
|
||||
+ pkg_failed=yes
|
||||
+fi
|
||||
+ else
|
||||
+ pkg_failed=untried
|
||||
+fi
|
||||
|
||||
-if test "x$XSLTCONFIG" = "x"; then
|
||||
- as_fn_error $? "XSLT configuration could not be found" "$LINENO" 5
|
||||
+
|
||||
+
|
||||
+if test $pkg_failed = yes; then
|
||||
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||
+$as_echo "no" >&6; }
|
||||
+
|
||||
+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
|
||||
+ _pkg_short_errors_supported=yes
|
||||
+else
|
||||
+ _pkg_short_errors_supported=no
|
||||
fi
|
||||
-if ! test -x "$XSLTCONFIG"; then
|
||||
- as_fn_error $? "$XSLTCONFIG cannot be executed" "$LINENO" 5
|
||||
+ if test $_pkg_short_errors_supported = yes; then
|
||||
+ LIBXSLT_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libxslt" 2>&1`
|
||||
+ else
|
||||
+ LIBXSLT_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libxslt" 2>&1`
|
||||
+ fi
|
||||
+ # Put the nasty error message in config.log where it belongs
|
||||
+ echo "$LIBXSLT_PKG_ERRORS" >&5
|
||||
+
|
||||
+
|
||||
+ as_fn_error $? "${LIBXSLT_PKG_ERRORS}. libxslt is required." "$LINENO" 5
|
||||
+
|
||||
+elif test $pkg_failed = untried; then
|
||||
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||
+$as_echo "no" >&6; }
|
||||
+
|
||||
+ as_fn_error $? "${LIBXSLT_PKG_ERRORS}. libxslt is required." "$LINENO" 5
|
||||
+
|
||||
+else
|
||||
+ LIBXSLT_CFLAGS=$pkg_cv_LIBXSLT_CFLAGS
|
||||
+ LIBXSLT_LIBS=$pkg_cv_LIBXSLT_LIBS
|
||||
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||
+$as_echo "yes" >&6; }
|
||||
+
|
||||
fi
|
||||
-XSLT_LIBS="$($XSLTCONFIG --libs)"
|
||||
-XSLT_CFLAGS="$($XSLTCONFIG --cflags)"
|
||||
-ac_xslt_save_LIBS="$LIBS"
|
||||
-ac_xslt_save_CFLAGS="$CFLAGS"
|
||||
-LIBS="$XSLT_LIBS $LIBS"
|
||||
-CFLAGS="$CFLAGS $XSLT_CFLAGS"
|
||||
+
|
||||
+CFLAGS="${CFLAGS} ${LIBXSLT_CFLAGS}"
|
||||
+LIBS="${LIBS} ${LIBXSLT_LIBS}"
|
||||
+
|
||||
+
|
||||
+pkg_failed=no
|
||||
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBXML2" >&5
|
||||
+$as_echo_n "checking for LIBXML2... " >&6; }
|
||||
+
|
||||
+if test -n "$LIBXML2_CFLAGS"; then
|
||||
+ pkg_cv_LIBXML2_CFLAGS="$LIBXML2_CFLAGS"
|
||||
+ elif test -n "$PKG_CONFIG"; then
|
||||
+ if test -n "$PKG_CONFIG" && \
|
||||
+ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libxml-2.0\""; } >&5
|
||||
+ ($PKG_CONFIG --exists --print-errors "libxml-2.0") 2>&5
|
||||
+ ac_status=$?
|
||||
+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
||||
+ test $ac_status = 0; }; then
|
||||
+ pkg_cv_LIBXML2_CFLAGS=`$PKG_CONFIG --cflags "libxml-2.0" 2>/dev/null`
|
||||
+ test "x$?" != "x0" && pkg_failed=yes
|
||||
+else
|
||||
+ pkg_failed=yes
|
||||
+fi
|
||||
+ else
|
||||
+ pkg_failed=untried
|
||||
+fi
|
||||
+if test -n "$LIBXML2_LIBS"; then
|
||||
+ pkg_cv_LIBXML2_LIBS="$LIBXML2_LIBS"
|
||||
+ elif test -n "$PKG_CONFIG"; then
|
||||
+ if test -n "$PKG_CONFIG" && \
|
||||
+ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libxml-2.0\""; } >&5
|
||||
+ ($PKG_CONFIG --exists --print-errors "libxml-2.0") 2>&5
|
||||
+ ac_status=$?
|
||||
+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
||||
+ test $ac_status = 0; }; then
|
||||
+ pkg_cv_LIBXML2_LIBS=`$PKG_CONFIG --libs "libxml-2.0" 2>/dev/null`
|
||||
+ test "x$?" != "x0" && pkg_failed=yes
|
||||
+else
|
||||
+ pkg_failed=yes
|
||||
+fi
|
||||
+ else
|
||||
+ pkg_failed=untried
|
||||
+fi
|
||||
+
|
||||
+
|
||||
+
|
||||
+if test $pkg_failed = yes; then
|
||||
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||
+$as_echo "no" >&6; }
|
||||
+
|
||||
+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
|
||||
+ _pkg_short_errors_supported=yes
|
||||
+else
|
||||
+ _pkg_short_errors_supported=no
|
||||
+fi
|
||||
+ if test $_pkg_short_errors_supported = yes; then
|
||||
+ LIBXML2_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libxml-2.0" 2>&1`
|
||||
+ else
|
||||
+ LIBXML2_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libxml-2.0" 2>&1`
|
||||
+ fi
|
||||
+ # Put the nasty error message in config.log where it belongs
|
||||
+ echo "$LIBXML2_PKG_ERRORS" >&5
|
||||
+
|
||||
+
|
||||
+ as_fn_error $? "${LIBXML2_PKG_ERRORS}. libxml2 is required." "$LINENO" 5
|
||||
+
|
||||
+elif test $pkg_failed = untried; then
|
||||
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||
+$as_echo "no" >&6; }
|
||||
+
|
||||
+ as_fn_error $? "${LIBXML2_PKG_ERRORS}. libxml2 is required." "$LINENO" 5
|
||||
+
|
||||
+else
|
||||
+ LIBXML2_CFLAGS=$pkg_cv_LIBXML2_CFLAGS
|
||||
+ LIBXML2_LIBS=$pkg_cv_LIBXML2_LIBS
|
||||
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||
+$as_echo "yes" >&6; }
|
||||
+
|
||||
+fi
|
||||
for ac_func in xsltSaveResultToString
|
||||
do :
|
||||
ac_fn_c_check_func "$LINENO" "xsltSaveResultToString" "ac_cv_func_xsltSaveResultToString"
|
||||
@@ -13107,37 +13336,9 @@ _ACEOF
|
||||
fi
|
||||
done
|
||||
|
||||
-CFLAGS="$ac_xslt_save_CFLAGS"
|
||||
-LIBS="$ac_xslt_save_LIBS"
|
||||
|
||||
-
|
||||
-for arg in $XSLT_CFLAGS
|
||||
-do
|
||||
- if { cat <<EOF
|
||||
- $XIPH_CPPFLAGS x
|
||||
-EOF
|
||||
-} | $FGREP -v -e " $arg " > /dev/null
|
||||
- then
|
||||
- XIPH_CPPFLAGS="$XIPH_CPPFLAGS $arg"
|
||||
- fi
|
||||
-done
|
||||
-
|
||||
-
|
||||
-xt_compare="$XIPH_LIBS"
|
||||
-xt_filtered=""
|
||||
-for arg in $XSLT_LIBS
|
||||
-do
|
||||
- if { cat <<EOF
|
||||
- $xt_compare x
|
||||
-EOF
|
||||
-} | $FGREP -v -e " $arg " > /dev/null
|
||||
- then
|
||||
- xt_compare="$arg $xt_compare"
|
||||
- xt_filtered="$xt_filtered $arg"
|
||||
- fi
|
||||
-done
|
||||
-XIPH_LIBS="$xt_filtered $XIPH_LIBS"
|
||||
-
|
||||
+CFLAGS="${CFLAGS} ${LIBXML2_CFLAGS}"
|
||||
+LIBS="${LIBS} ${LIBXML2_LIBS}"
|
||||
|
||||
|
||||
|
||||
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
PORTNAME= ices
|
||||
PORTVERSION= 2.0.3
|
||||
PORTREVISION= 1
|
||||
PORTEPOCH= 1
|
||||
CATEGORIES= audio net
|
||||
MASTER_SITES= https://downloads.xiph.org/releases/ices/ \
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
PORTNAME= jalv-select
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 1.3
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= jalv
|
||||
DISTVERSION= 1.6.6
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= http://download.drobilla.net/
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= kid3
|
||||
PORTVERSION= 3.9.1
|
||||
PORTREVISION?= 0
|
||||
PORTREVISION?= 1
|
||||
CATEGORIES= audio kde
|
||||
MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION}
|
||||
PKGNAMESUFFIX= -${SLAVE}
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= lame
|
||||
PORTVERSION= 3.100
|
||||
PORTREVISION= 3
|
||||
PORTREVISION= 4
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= SF/${PORTNAME:tl}/${PORTNAME:tl}/3.100
|
||||
|
||||
|
|
@ -20,7 +20,12 @@ CPE_VENDOR= lame_project
|
|||
|
||||
DOC_FILES= API LICENSE README TODO USAGE
|
||||
|
||||
OPTIONS_DEFINE= DOCS
|
||||
OPTIONS_DEFINE= DOCS SNDFILE
|
||||
OPTIONS_DEFAULT=DOCS
|
||||
|
||||
SNDFILE_CONFIGURE_ON= --with-fileio=sndfile
|
||||
SNDFILE_CONFIGURE_OFF= --with-fileio=lame
|
||||
SNDFILE_LIB_DEPENDS= libsndfile.so:audio/libsndfile
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= lash
|
||||
PORTVERSION= 0.5.4
|
||||
PORTREVISION= 15
|
||||
PORTREVISION= 16
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= SAVANNAH
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
# Created by: David Naylor <dbn@FreeBSD.org>
|
||||
|
||||
PORTREVISION= 1
|
||||
PKGNAMESUFFIX= -sharp
|
||||
|
||||
MAINTAINER= mono@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= libgpod
|
||||
PORTVERSION= 0.8.3
|
||||
PORTREVISION= 9
|
||||
PORTREVISION= 10
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= SF/gtkpod/${PORTNAME}/${PORTNAME}-${PORTVERSION:R}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
PORTNAME= libmusicbrainz
|
||||
DISTVERSIONPREFIX= release-
|
||||
DISTVERSION= 5.1.0-19
|
||||
PORTREVISION= 1
|
||||
DISTVERSIONSUFFIX= -ge29cc9a
|
||||
CATEGORIES= audio
|
||||
PKGNAMESUFFIX= 5
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
PORTNAME= mate-media
|
||||
PORTVERSION= 1.26.0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio mate
|
||||
MASTER_SITES= MATE
|
||||
DIST_SUBDIR= mate
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= muse-sequencer
|
||||
DISTVERSION= 4.0.0
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= audio
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
PORTNAME= paprefs
|
||||
PORTVERSION= 1.2
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= http://freedesktop.org/software/pulseaudio/${PORTNAME}/
|
||||
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue