*/*: sync with upstream

Taken from: HardenedBSD
This commit is contained in:
Franco Fichtner 2019-01-14 06:25:24 +01:00
parent c8e51ab71a
commit d6b2b718af
330 changed files with 3681 additions and 991 deletions

View File

@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= tar
PORTVERSION= 1.30
PORTREVISION= 1
PORTVERSION= 1.31
CATEGORIES= archivers sysutils
MASTER_SITES= GNU
PKGNAMEPREFIX= g
@ -18,7 +17,7 @@ INFO= tar
USE_HARDENING= safestack
USES= charsetfix cpe iconv:${STATIC_ARGS} localbase makeinfo tar:xz
USES= charsetfix cpe iconv:${STATIC_ARGS} localbase tar:xz
CPE_VENDOR= gnu
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --program-prefix=g

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1525097977
SHA256 (tar-1.30.tar.xz) = f1bf92dbb1e1ab27911a861ea8dde8208ee774866c46c0bb6ead41f4d1f4d2d3
SIZE (tar-1.30.tar.xz) = 2108028
TIMESTAMP = 1547218928
SHA256 (tar-1.31.tar.xz) = 37f3ef1ceebd8b7e1ebf5b8cc6c65bb8ebf002c7d049032bf456860f25ec2dc1
SIZE (tar-1.31.tar.xz) = 2101044

View File

@ -1,23 +0,0 @@
Fix remfiles01.at and remfiles02.at: error() needs to fetch the
name set by set_program_name().
--- gnu/error.c.orig 2017-12-16 21:23:33 UTC
+++ gnu/error.c
@@ -42,8 +42,6 @@
# define USE_UNLOCKED_IO 0
# define _GL_ATTRIBUTE_FORMAT_PRINTF(a, b)
# define _GL_ARG_NONNULL(a)
-#else
-# include "getprogname.h"
#endif
#if USE_UNLOCKED_IO
@@ -119,7 +117,7 @@ int strerror_r (int errnum, char *buf, s
# endif
# endif
-#define program_name getprogname ()
+extern char *program_name;
# if GNULIB_STRERROR_R_POSIX || HAVE_STRERROR_R || defined strerror_r
# define __strerror_r strerror_r

View File

@ -0,0 +1,14 @@
Remove erroneous abort() call
https://git.savannah.gnu.org/cgit/tar.git/diff/?id=85c005ee1345c342f707f3c55317daf6cb050603
--- src/extract.c.orig 2019-01-13 15:07:22 UTC
+++ src/extract.c
@@ -787,7 +787,7 @@ maybe_recoverable (char *file_name, bool regular, bool
case UNLINK_FIRST_OLD_FILES:
break;
}
- abort (); /* notreached */
+ FALLTHROUGH;
case ENOENT:
/* Attempt creating missing intermediate directories. */

View File

@ -1,14 +1,14 @@
Work around an iconv(3) portability issue that trips up sparse07.at.
https://lists.gnu.org/archive/html/bug-tar/2018-04/threads.html
https://lists.gnu.org/archive/html/bug-tar/2018-04/msg00019.html
--- src/utf8.c.orig 2018-04-30 17:25:34 UTC
--- src/utf8.c.orig 2019-01-11 17:46:41 UTC
+++ src/utf8.c
@@ -85,7 +85,7 @@ utf8_convert (bool to_utf, char const *i
@@ -81,7 +81,7 @@ utf8_convert (bool to_utf, char const *input, char **o
outlen = inlen * MB_LEN_MAX + 1;
ob = ret = xmalloc (outlen);
ib = (char ICONV_CONST *) input;
rc = iconv (cd, &ib, &inlen, &ob, &outlen);
*ob = 0;
- return rc != -1;
+ return rc == 0;
}
- if (iconv (cd, &ib, &inlen, &ob, &outlen) == -1)
+ if (iconv (cd, &ib, &inlen, &ob, &outlen) != 0)
{
free (ret);
return false;

View File

@ -1,17 +0,0 @@
https://git.savannah.gnu.org/cgit/tar.git/commit/?id=847a36f064efed676ae007b1def3c0db364cdddb
https://lists.gnu.org/archive/html/bug-tar/2018-04/msg00012.html
--- tests/difflink.at.orig 2017-11-10 03:55:18 UTC
+++ tests/difflink.at
@@ -20,8 +20,8 @@ AT_TAR_CHECK([
mkdir a
genfile -f a/x
ln -s x a/y
-ln a/y a/z
-tar cf a.tar a
+ln -P a/y a/z
+tar cf a.tar a/x a/y a/z
rm a/z
ln -s x a/z
tar df a.tar

View File

@ -0,0 +1,14 @@
cmp(1) Capsicum error if stdin closed
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=234885
--- tests/multiv01.at.orig 2019-01-11 20:11:26 UTC
+++ tests/multiv01.at
@@ -28,7 +28,7 @@ AT_KEYWORDS([multivolume multiv multiv01 chdir])
# TRUSS=strace
AT_TAR_CHECK([
-exec <&-
+#exec <&-
genfile --length 7168 --file file1
for block in " 1" " 2" " 3" " 4" " 5" " 6" " 7" " 8" \

View File

@ -0,0 +1,14 @@
cmp(1) Capsicum error if stdin closed
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=234885
--- tests/multiv03.at.orig 2019-01-11 20:11:26 UTC
+++ tests/multiv03.at
@@ -47,7 +47,7 @@ EOF
genfile --length 15360 --file $AFILE
-exec <&-
+#exec <&-
tar -M -L 10 -c -f arch.1 -f arch.2 $AFILE || exit 1
tar -tM -f arch.1 -f arch.2 || exit 1

View File

@ -0,0 +1,14 @@
cmp(1) Capsicum error if stdin closed
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=234885
--- tests/multiv05.at.orig 2019-01-11 20:11:26 UTC
+++ tests/multiv05.at
@@ -28,7 +28,7 @@ AT_KEYWORDS([multivolume multiv multiv05 sync])
m4_pushdef([FILELIST],[jeden,dwa,trzy,cztery,piec,szesc])
AT_TAR_CHECK([
-exec <&-
+#exec <&-
m4_foreach([f],
[FILELIST],

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= Compress-Raw-Lzma
PORTVERSION= 2.084
PORTVERSION= 2.085
CATEGORIES= archivers perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1546784459
SHA256 (Compress-Raw-Lzma-2.084.tar.gz) = 7098a6b2147d7ea5d5b42a1662edcb136e1236e06bd8673187dc20548a737d81
SIZE (Compress-Raw-Lzma-2.084.tar.gz) = 114242
TIMESTAMP = 1547397113
SHA256 (Compress-Raw-Lzma-2.085.tar.gz) = d4681f057e26cd3a4be0ee8264fa4d7cee1ba146d4c613e0afb1357ecbb0d1e1
SIZE (Compress-Raw-Lzma-2.085.tar.gz) = 114860

View File

@ -7,15 +7,16 @@ CATEGORIES= astro
MAINTAINER= yuri@FreeBSD.org
COMMENT= SKA Radio telescope simulator
ONLY_FOR_ARCHS= amd64 i386 powerpc powerpc64
ONLY_FOR_ARCHS_REASON= gccfeatures.h:54:4: This code has only been tested on x86 and powerpc platforms
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/LICENSE
ONLY_FOR_ARCHS= amd64 i386 powerpc powerpc64
ONLY_FOR_ARCHS_REASON= gccfeatures.h:54:4: This code has only been tested on x86 and powerpc platforms
LIB_DEPENDS= libcfitsio.so:astro/cfitsio
USES= cmake localbase:ldflags python qt:5 shebangfix
USES= cmake compiler:c++11-lang localbase:ldflags python qt:5 \
shebangfix
SHEBANG_FILES= apps/oskar_convert_cst_to_scalar.py
USE_GITHUB= yes
GH_ACCOUNT= OxfordSKA

View File

@ -13,8 +13,7 @@ COMMENT= Multichannel drum sampler
LICENSE= LGPL3+
LICENSE_FILE= ${WRKSRC}/COPYING
BUILD_DEPENDS= lv2>=1.14.0:audio/lv2 \
pkg-config:devel/pkgconf
BUILD_DEPENDS= lv2>=1.14.0:audio/lv2
LIB_DEPENDS= libsmf.so:audio/libsmf \
libzita-resampler.so:audio/zita-resampler \
libjack.so:audio/jack \
@ -22,7 +21,7 @@ LIB_DEPENDS= libsmf.so:audio/libsmf \
libexpat.so:textproc/expat2
GNU_CONFIGURE= yes
USES= compiler:c++11-lang gettext-runtime gnome libtool
USES= compiler:c++11-lang gettext-runtime gnome libtool pkgconfig
USE_GNOME= glib20
USE_XORG= x11 xext

View File

@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING
LIB_DEPENDS= libqjson-qt5.so:devel/qjson@qt5
USES= cmake qt:5 pkgconfig
USES= cmake compiler:c++11-lang pkgconfig qt:5
USE_LDCONFIG= yes
USE_GITHUB= yes
GH_ACCOUNT= lfranchi

View File

@ -1,8 +1,7 @@
# $FreeBSD$
PORTNAME= musicpd
PORTVERSION= 0.21.3
PORTREVISION= 3
PORTVERSION= 0.21.4
CATEGORIES= audio ipv6
MASTER_SITES= https://www.musicpd.org/download/mpd/${PORTVERSION:R}/
DISTNAME= mpd-${PORTVERSION}
@ -141,7 +140,6 @@ JACK_MESON_ON= -Djack=enabled
JACK_LIB_DEPENDS= libjack.so:audio/jack
OPENAL_MESON_ON= -Dopenal=enabled
OPENAL_USES= openal
OPENAL_VARS= LLD_UNSAFE=yes # cf. PR 226980
PULSEAUDIO_MESON_ON= -Dpulse=enabled
PULSEAUDIO_LIB_DEPENDS= libpulse.so:audio/pulseaudio
SHOUTCAST_MESON_ON= -Dshout=enabled

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1542528753
SHA256 (mpd-0.21.3.tar.xz) = 6cf60e644870c6063a008d833a6c876272b7679a400b83012ed209c15ce06e2a
SIZE (mpd-0.21.3.tar.xz) = 664992
TIMESTAMP = 1547301787
SHA256 (mpd-0.21.4.tar.xz) = 247112eabf1b818a4052db7f0f5917ab00831ebc60a1ec3bf1154da4dc16a5c7
SIZE (mpd-0.21.4.tar.xz) = 663648

View File

@ -0,0 +1,20 @@
--- src/zeroconf/meson.build.orig 2019-01-04 18:22:21 UTC
+++ src/zeroconf/meson.build
@@ -30,10 +30,14 @@ if zeroconf_option == 'bonjour'
if not compiler.has_header('dns_sd.h')
error('dns_sd.h not found')
endif
-
- bonjour_dep = declare_dependency(link_args: ['-framework', 'dnssd'])
+
+ if is_darwin
+ bonjour_dep = declare_dependency(link_args: ['-framework', 'dnssd'])
+ else
+ bonjour_dep = declare_dependency(link_args: ['-ldns_sd'])
+ endif
conf.set('HAVE_BONJOUR', true)
-
+
zeroconf = static_library(
'zeroconf_bonjour',
'ZeroconfGlue.cxx',

View File

@ -3,7 +3,7 @@
PORTNAME= pithos
PORTVERSION= 1.0.0
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= audio
MAINTAINER= jhixson@FreeBSD.org
@ -16,13 +16,12 @@ USE_GITHUB= yes
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/xdg/__init__.py:devel/py-xdg@${PY_FLAVOR} \
${PYTHON_SITELIBDIR}/dbus/__init__.py:devel/py-dbus@${PY_FLAVOR} \
${PYTHON_SITELIBDIR}/gi/overrides/Gst.py:multimedia/py-gstreamer1@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pylast>0:audio/py-pylast@${PY_FLAVOR} \
git:devel/git
${PYTHON_PKGNAMEPREFIX}pylast>0:audio/py-pylast@${PY_FLAVOR}
USE_GNOME= gtk30 pygobject3
USES= python:3.4+
USE_PYTHON= distutils autoplist optsuffix
USE_GSTREAMER= core good bad soup
USE_GSTREAMER1= core good bad soup
post-install:
${MKDIR} ${STAGEDIR}${DATADIR}

View File

@ -103,6 +103,7 @@
SUBDIR += varkon
SUBDIR += verilog-mode.el
SUBDIR += xcircuit
SUBDIR += xtrkcad
SUBDIR += z88
SUBDIR += zcad

58
cad/xtrkcad/Makefile Normal file
View File

@ -0,0 +1,58 @@
# $FreeBSD$
PORTNAME= xtrkcad
DISTVERSIONPREFIX= source-
DISTVERSION= 5.1.2a
CATEGORIES= cad
MASTER_SITES= SF/xtrkcad-fork/XTrackCad/Version%20${DISTVERSION:C/[:alpha:]//}
MAINTAINER= freebsd@rheinwolf.de
COMMENT= CAD program for designing model railroad layouts
LICENSE= GPLv2
LIB_DEPENDS= libcmocka.so:sysutils/cmocka \
libfontconfig.so:x11-fonts/fontconfig \
libfreetype.so:print/freetype2 \
libsoup-2.4.so:devel/libsoup \
libwebkitgtk-1.0.so:www/webkit-gtk2
USES= cmake gnome pkgconfig
USE_GNOME= gdkpixbuf2 gtk20 cairo
CMAKE_ON= XTRKCAD_USE_GTK
CMAKE_OFF= XTRKCAD_TESTING
OPTIONS_DEFINE= DOCS EXAMPLES NLS
OPTIONS_SUB= NLS
DOCS_BUILD_DEPENDS= pandoc:textproc/hs-pandoc
NLS_USES= gettext-runtime:lib gettext-tools:build
NLS_CMAKE_BOOL= XTRKCAD_USE_GETTEXT
post-install:
${MKDIR} ${STAGEDIR}${DESKTOPDIR} \
${STAGEDIR}${DOCSDIR} \
${STAGEDIR}${EXAMPLESDIR} \
${STAGEDIR}${PREFIX}/share/pixmaps
${MV} ${STAGEDIR}/usr/share/applications/xtrkcad.desktop ${STAGEDIR}${DESKTOPDIR}
${MV} ${STAGEDIR}/usr/share/pixmaps/xtrkcad.png ${STAGEDIR}${PREFIX}/share/pixmaps
${RM} ${STAGEDIR}${DATADIR}/COPYING
${RMDIR} ${STAGEDIR}/usr/share/applications ${STAGEDIR}/usr/share/pixmaps ${STAGEDIR}/usr/share
post-install-DOCS-on:
${MV} ${STAGEDIR}${DATADIR}/CHANGELOG.txt ${STAGEDIR}${DOCSDIR}
${MV} ${STAGEDIR}${DATADIR}/Readme.txt ${STAGEDIR}${DOCSDIR}
post-install-DOCS-off:
${RM} ${STAGEDIR}${DATADIR}/*.txt
post-install-EXAMPLES-on:
${MV} ${STAGEDIR}${DATADIR}/examples/* ${STAGEDIR}${EXAMPLESDIR}
${RMDIR} ${STAGEDIR}${DATADIR}/examples
post-install-EXAMPLES-off:
${RM} -rf ${STAGEDIR}${DATADIR}/examples
.include <bsd.port.mk>

3
cad/xtrkcad/distinfo Normal file
View File

@ -0,0 +1,3 @@
TIMESTAMP = 1545943850
SHA256 (xtrkcad-source-5.1.2a.tar.gz) = 6ef8d92af48eef4dfc1d15d7449525951ea102e34042d3fa1d7b4bbc63e23488
SIZE (xtrkcad-source-5.1.2a.tar.gz) = 12667102

View File

@ -0,0 +1,10 @@
--- app/bin/ccornu.c.orig 2018-10-04 16:29:16 UTC
+++ app/bin/ccornu.c
@@ -64,6 +64,7 @@
#include "track.h"
+#include "bezctx.h"
#include "spiro.h"
#include "spiroentrypoints.h"
#include "bezctx_xtrkcad.h"

3
cad/xtrkcad/pkg-descr Normal file
View File

@ -0,0 +1,3 @@
XTrackCAD is a CAD program for designing model railroad layouts.
WWW: http://www.xtrkcad.org/

833
cad/xtrkcad/pkg-plist Normal file
View File

@ -0,0 +1,833 @@
bin/xtrkcad
share/applications/xtrkcad.desktop
share/pixmaps/xtrkcad.png
%%NLS%%share/locale/de_DE/LC_MESSAGES/xtrkcad.mo
%%NLS%%share/locale/fi/LC_MESSAGES/xtrkcad.mo
%%NLS%%share/locale/pt_BR/LC_MESSAGES/xtrkcad.mo
%%PORTDOCS%%%%DOCSDIR%%/CHANGELOG.txt
%%PORTDOCS%%%%DOCSDIR%%/Readme.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/2_train_round_mrklnhomde_v1_2014_01.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/2oval8_mrklnhomde_v1_2013_03.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/2way2loop_mrklnhomde_v1_2013_04.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/2x8+L+layout+01c.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3_circles_loops_mrklnhomde_2013_06_jruppert.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3oval1circle_mrklnhomde_v1_2013_03.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3oval2loops_mrklnhomde_v1_2013_04.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3oval8_mrklnhomde_v1_2013_03.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3way_track_and_looping_mrklnhomde_2013_02_jruppert.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/4_Triangles_mrklnhomde_2012_11_jruppert.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Bridge_over_central_station.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Central_Station_City_mrklnhomde_2013_06_jruppert.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Central_Station_mrklnhomde_2013_04_jruppert.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Control-Panels.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/DVRR v3.0 E Stroudsburg - Pt Jervis.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Eishindo T Track Test Layout.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/MaerklinLayout_ReverseLoop4.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Station_2ladder_v1_2014_07_jruppert.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Station_and_Circles_mrklnhomde_2013_02_jruppert.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bridge_and_loops_mrklnhomde_v1_2013_03.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cascade.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/iota.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/katoxing.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/laurel_hon3.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mr03.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mrklnhomde_v1_geometry.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ntrak4.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ntrak6.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ntrak8.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pmi.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/port_dinllean.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/psr.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rack-rail-ski-train-t-trak-triple-double-wide.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/spagw1.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/spagw2.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/spagw3.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/spagw4.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/spagw5.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stonega.xtc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/timesavr.xtc
%%DATADIR%%/demos/dmadjend.xtr
%%DATADIR%%/demos/dmbench.xtr
%%DATADIR%%/demos/dmcancel.xtr
%%DATADIR%%/demos/dmcircle.xtr
%%DATADIR%%/demos/dmconn1.xtr
%%DATADIR%%/demos/dmconn2.xtr
%%DATADIR%%/demos/dmcrvtrk.xtr
%%DATADIR%%/demos/dmctlpnl.xtr
%%DATADIR%%/demos/dmdelund.xtr
%%DATADIR%%/demos/dmdialog.xtr
%%DATADIR%%/demos/dmdimlin.xtr
%%DATADIR%%/demos/dmease.xtr
%%DATADIR%%/demos/dmelev.xtr
%%DATADIR%%/demos/dmexcept.xtr
%%DATADIR%%/demos/dmextend.xtr
%%DATADIR%%/demos/dmflip.xtr
%%DATADIR%%/demos/dmgroup.xtr
%%DATADIR%%/demos/dmhelix.xtr
%%DATADIR%%/demos/dmhndld.xtr
%%DATADIR%%/demos/dmintro.xtr
%%DATADIR%%/demos/dmjcir.xtr
%%DATADIR%%/demos/dmjnabut.xtr
%%DATADIR%%/demos/dmjncs.xtr
%%DATADIR%%/demos/dmjnmove.xtr
%%DATADIR%%/demos/dmjnss.xtr
%%DATADIR%%/demos/dmjntt.xtr
%%DATADIR%%/demos/dmlines.xtr
%%DATADIR%%/demos/dmlines2.xtr
%%DATADIR%%/demos/dmmouse.xtr
%%DATADIR%%/demos/dmmovabt.xtr
%%DATADIR%%/demos/dmnotes.xtr
%%DATADIR%%/demos/dmparall.xtr
%%DATADIR%%/demos/dmplymod.xtr
%%DATADIR%%/demos/dmprof.xtr
%%DATADIR%%/demos/dmrescal.xtr
%%DATADIR%%/demos/dmrotate.xtr
%%DATADIR%%/demos/dmruler.xtr
%%DATADIR%%/demos/dmselect.xtr
%%DATADIR%%/demos/dmsplit.xtr
%%DATADIR%%/demos/dmstrtrk.xtr
%%DATADIR%%/demos/dmtbledg.xtr
%%DATADIR%%/demos/dmtodes.xtr
%%DATADIR%%/demos/dmtosel.xtr
%%DATADIR%%/demos/dmtotrim.xtr
%%DATADIR%%/demos/dmtoyard.xtr
%%DATADIR%%/demos/dmtrkwid.xtr
%%DATADIR%%/demos/dmtrntab.xtr
%%DATADIR%%/html/EasementsCornu.html
%%DATADIR%%/html/EasementsSectional.html
%%DATADIR%%/html/EasementsTraditional.html
%%DATADIR%%/html/ExportDXF.html
%%DATADIR%%/html/GNUGPLicense.html
%%DATADIR%%/html/IndexPage.html
%%DATADIR%%/html/Linux.html
%%DATADIR%%/html/LinuxInstall.html
%%DATADIR%%/html/MS-Windows.html
%%DATADIR%%/html/MSG_2ND_TRK_NOT_SEL_UNSEL.html
%%DATADIR%%/html/MSG_BITMAP_SIZE_WARNING.html
%%DATADIR%%/html/MSG_BITMAP_TOO_LARGE.html
%%DATADIR%%/html/MSG_CANNOT_CHANGE.html
%%DATADIR%%/html/MSG_CANNOT_GROUP_TRACK.html
%%DATADIR%%/html/MSG_CANT_GROUP_BUMPER1.html
%%DATADIR%%/html/MSG_CANT_MODIFY_FROZEN_TRK.html
%%DATADIR%%/html/MSG_CANT_MOVE_UNDER_TRAIN.html
%%DATADIR%%/html/MSG_CANT_PASTE.html
%%DATADIR%%/html/MSG_CANT_PLACE_FROGPOINTS.html
%%DATADIR%%/html/MSG_CANT_SPLIT_TRK.html
%%DATADIR%%/html/MSG_CARDESC_VALUE_ZERO.html
%%DATADIR%%/html/MSG_CARIMP_DUP_COLUMNS.html
%%DATADIR%%/html/MSG_CARIMP_DUP_INDEX.html
%%DATADIR%%/html/MSG_CARIMP_IGNORED_COLUMN.html
%%DATADIR%%/html/MSG_CARIMP_MISSING_COLUMNS.html
%%DATADIR%%/html/MSG_CARIMP_MISSING_DIMS.html
%%DATADIR%%/html/MSG_CARIMP_MISSING_PARTNO.html
%%DATADIR%%/html/MSG_CARIMP_NO_DATA.html
%%DATADIR%%/html/MSG_CARPART_DUPNAME.html
%%DATADIR%%/html/MSG_CARPROTO_BADSEGS.html
%%DATADIR%%/html/MSG_CARPROTO_DUPNAME.html
%%DATADIR%%/html/MSG_CHANGE_ELEV_MODE.html
%%DATADIR%%/html/MSG_COMMAND_DISABLED.html
%%DATADIR%%/html/MSG_CONN_PARAMS_TOO_BIG.html
%%DATADIR%%/html/MSG_CONN_PARAMS_TOO_SMALL.html
%%DATADIR%%/html/MSG_CURVE_OUT_OF_RANGE.html
%%DATADIR%%/html/MSG_CURVE_TOO_LARGE.html
%%DATADIR%%/html/MSG_CUSTMGM_CANT_WRITE.html
%%DATADIR%%/html/MSG_CUSTMGM_DELETE_CONFIRM.html
%%DATADIR%%/html/MSG_DESC_NOT_VISIBLE.html
%%DATADIR%%/html/MSG_DOMOUSE_BAD_OP.html
%%DATADIR%%/html/MSG_ENTERED_STRING_TRUNCATED.html
%%DATADIR%%/html/MSG_EP_ON_PATH.html
%%DATADIR%%/html/MSG_GRID_ENABLE_SPACE_GTR_0.html
%%DATADIR%%/html/MSG_GRID_SHOW_SPACE_GTR_0.html
%%DATADIR%%/html/MSG_GROUP_NONBLANK.html
%%DATADIR%%/html/MSG_HELIX_TURNS_GTR_0.html
%%DATADIR%%/html/MSG_JOIN_CORNU_SAME.html
%%DATADIR%%/html/MSG_JOIN_DIFFER_ELEV.html
%%DATADIR%%/html/MSG_JOIN_EASEMENTS.html
%%DATADIR%%/html/MSG_JOIN_SAME.html
%%DATADIR%%/html/MSG_JOIN_TURNTABLE.html
%%DATADIR%%/html/MSG_LARGE_FONT.html
%%DATADIR%%/html/MSG_LAYER_FREEZE.html
%%DATADIR%%/html/MSG_LAYER_HIDE.html
%%DATADIR%%/html/MSG_LAYER_SEL_FROZEN.html
%%DATADIR%%/html/MSG_MOVE_OUT_OF_BOUNDS.html
%%DATADIR%%/html/MSG_MOVE_POINTS_AWAY_CLOSE.html
%%DATADIR%%/html/MSG_MOVE_POINTS_AWAY_NO_INTERSECTION.html
%%DATADIR%%/html/MSG_MOVE_POINTS_OTHER_SIDE.html
%%DATADIR%%/html/MSG_NO_CARPROTO.html
%%DATADIR%%/html/MSG_NO_CARS.html
%%DATADIR%%/html/MSG_NO_PATH_TO_EP.html
%%DATADIR%%/html/MSG_NO_REDO.html
%%DATADIR%%/html/MSG_NO_ROOM_BTW_TRKS.html
%%DATADIR%%/html/MSG_NO_SELECTED_TRK.html
%%DATADIR%%/html/MSG_NO_TURNOUTS_AVAILABLE.html
%%DATADIR%%/html/MSG_NO_UNCONN_EP.html
%%DATADIR%%/html/MSG_NO_UNDO.html
%%DATADIR%%/html/MSG_OBJECT_TOO_SHORT.html
%%DATADIR%%/html/MSG_OUT_OF_BOUNDS.html
%%DATADIR%%/html/MSG_PARALLEL_SEP_GTR_0.html
%%DATADIR%%/html/MSG_PLAYBACK_LISTENTRY.html
%%DATADIR%%/html/MSG_PLAYBACK_VERSION_UPGRADE.html
%%DATADIR%%/html/MSG_POINT_INSIDE_TURNTABLE.html
%%DATADIR%%/html/MSG_POLY_SHAPES_3_SIDES.html
%%DATADIR%%/html/MSG_PRINT_MAX_SIZE.html
%%DATADIR%%/html/MSG_PRINT_NO_PAGES.html
%%DATADIR%%/html/MSG_PRMFIL_NO_CONTENTS.html
%%DATADIR%%/html/MSG_PRMFIL_NO_MAP.html
%%DATADIR%%/html/MSG_PRMFIL_OPEN_NEW.html
%%DATADIR%%/html/MSG_PROG_CORRUPTED.html
%%DATADIR%%/html/MSG_PT_IS_NOT_TRK.html
%%DATADIR%%/html/MSG_PULL_FEW_SECTIONS.html
%%DATADIR%%/html/MSG_RADIUS_GTR_0.html
%%DATADIR%%/html/MSG_RADIUS_GTR_10000.html
%%DATADIR%%/html/MSG_RADIUS_LSS_EASE_MIN.html
%%DATADIR%%/html/MSG_RADIUS_TOO_BIG.html
%%DATADIR%%/html/MSG_RESCALE_TOO_BIG.html
%%DATADIR%%/html/MSG_SAVE_CHANGES.html
%%DATADIR%%/html/MSG_SEGMENTS_DIFFER.html
%%DATADIR%%/html/MSG_SELECTED_TRACKS_PARALLEL.html
%%DATADIR%%/html/MSG_SEL_POS_FIRST.html
%%DATADIR%%/html/MSG_SEL_TRK_FROZEN.html
%%DATADIR%%/html/MSG_SPLIT_PATH_NOT_UNIQUE.html
%%DATADIR%%/html/MSG_SPLIT_POS_BTW_MERGEPTS.html
%%DATADIR%%/html/MSG_STRUCT_NO_STRUCTS.html
%%DATADIR%%/html/MSG_TODSGN_CROSSOVER_TOO_SHORT.html
%%DATADIR%%/html/MSG_TODSGN_DESC_NONBLANK.html
%%DATADIR%%/html/MSG_TODSGN_REPLACE.html
%%DATADIR%%/html/MSG_TODSGN_VALUES_GTR_0.html
%%DATADIR%%/html/MSG_TOOMANYSEGSINGROUP.html
%%DATADIR%%/html/MSG_TOO_FAR_APART_DIVERGE.html
%%DATADIR%%/html/MSG_TRK_ALREADY_CONN.html
%%DATADIR%%/html/MSG_TRK_TOO_SHORT.html
%%DATADIR%%/html/MSG_TURNOUT_NO_TURNOUT.html
%%DATADIR%%/html/MSG_TURNTABLE_DIAM_GTR_0.html
%%DATADIR%%/html/MSG_UNDO_ASSERT.html
%%DATADIR%%/html/MSG_UPGRADE_VERSION1.html
%%DATADIR%%/html/MSG_UPGRADE_VERSION2.html
%%DATADIR%%/html/MSG_WBITMAP_FAILED.html
%%DATADIR%%/html/MSWinInstall.html
%%DATADIR%%/html/MessagesandExplanations.html
%%DATADIR%%/html/NoteDialog.html
%%DATADIR%%/html/aboutmanual.html
%%DATADIR%%/html/addFeatures.html
%%DATADIR%%/html/addM.html
%%DATADIR%%/html/addText.html
%%DATADIR%%/html/addshortcutkeys.html
%%DATADIR%%/html/bugs.html
%%DATADIR%%/html/bugs_enhancements.html
%%DATADIR%%/html/carpart.html
%%DATADIR%%/html/carprototype.html
%%DATADIR%%/html/changeM.html
%%DATADIR%%/html/chgBezier.html
%%DATADIR%%/html/chgCornu.html
%%DATADIR%%/html/chgTrackLength.html
%%DATADIR%%/html/chgTrackRadius.html
%%DATADIR%%/html/clrElev.html
%%DATADIR%%/html/cmdAboveBelow.html
%%DATADIR%%/html/cmdAcclKeys.html
%%DATADIR%%/html/cmdAdd.html
%%DATADIR%%/html/cmdBlock.html
%%DATADIR%%/html/cmdCarinv.html
%%DATADIR%%/html/cmdCarpart.html
%%DATADIR%%/html/cmdChange.html
%%DATADIR%%/html/cmdCircle.html
%%DATADIR%%/html/cmdCircleL.html
%%DATADIR%%/html/cmdCmdopt.html
%%DATADIR%%/html/cmdConnect.html
%%DATADIR%%/html/cmdContmgm.html
%%DATADIR%%/html/cmdControl.html
%%DATADIR%%/html/cmdCurve.html
%%DATADIR%%/html/cmdCurvedL.html
%%DATADIR%%/html/cmdCustmgm.html
%%DATADIR%%/html/cmdDelete.html
%%DATADIR%%/html/cmdDemo.html
%%DATADIR%%/html/cmdDescribe.html
%%DATADIR%%/html/cmdDisplay.html
%%DATADIR%%/html/cmdDraw.html
%%DATADIR%%/html/cmdDrawCircle.html
%%DATADIR%%/html/cmdDrawCurve.html
%%DATADIR%%/html/cmdDrawShape.html
%%DATADIR%%/html/cmdDrawStraight.html
%%DATADIR%%/html/cmdEasement.html
%%DATADIR%%/html/cmdEdit.html
%%DATADIR%%/html/cmdElev.html
%%DATADIR%%/html/cmdEnum.html
%%DATADIR%%/html/cmdExport.html
%%DATADIR%%/html/cmdFile.html
%%DATADIR%%/html/cmdFlip.html
%%DATADIR%%/html/cmdGrid.html
%%DATADIR%%/html/cmdGroup.html
%%DATADIR%%/html/cmdHandLaidTurnout.html
%%DATADIR%%/html/cmdHelix.html
%%DATADIR%%/html/cmdHotBar.html
%%DATADIR%%/html/cmdImport.html
%%DATADIR%%/html/cmdJoin.html
%%DATADIR%%/html/cmdLayer.html
%%DATADIR%%/html/cmdLayout.html
%%DATADIR%%/html/cmdMacro.html
%%DATADIR%%/html/cmdManage.html
%%DATADIR%%/html/cmdMap.html
%%DATADIR%%/html/cmdModify.html
%%DATADIR%%/html/cmdMove.html
%%DATADIR%%/html/cmdMoveLabel.html
%%DATADIR%%/html/cmdNote.html
%%DATADIR%%/html/cmdOption.html
%%DATADIR%%/html/cmdOutputbitmap.html
%%DATADIR%%/html/cmdPan.html
%%DATADIR%%/html/cmdParallel.html
%%DATADIR%%/html/cmdPref.html
%%DATADIR%%/html/cmdPricelist.html
%%DATADIR%%/html/cmdPrint.html
%%DATADIR%%/html/cmdPrmfile.html
%%DATADIR%%/html/cmdProfile.html
%%DATADIR%%/html/cmdRaiseElev.html
%%DATADIR%%/html/cmdRefreshSpecial.html
%%DATADIR%%/html/cmdRescale.html
%%DATADIR%%/html/cmdRgbcolor.html
%%DATADIR%%/html/cmdRotate.html
%%DATADIR%%/html/cmdRuler.html
%%DATADIR%%/html/cmdSelect.html
%%DATADIR%%/html/cmdSensor.html
%%DATADIR%%/html/cmdShapes.html
%%DATADIR%%/html/cmdSignal.html
%%DATADIR%%/html/cmdSplitTrack.html
%%DATADIR%%/html/cmdStatusbar.html
%%DATADIR%%/html/cmdSticky.html
%%DATADIR%%/html/cmdStraight.html
%%DATADIR%%/html/cmdStraightL.html
%%DATADIR%%/html/cmdStructure.html
%%DATADIR%%/html/cmdSwitchmotor.html
%%DATADIR%%/html/cmdText.html
%%DATADIR%%/html/cmdTrain.html
%%DATADIR%%/html/cmdTunnel.html
%%DATADIR%%/html/cmdTurnout.html
%%DATADIR%%/html/cmdTurnoutNew.html
%%DATADIR%%/html/cmdTurntable.html
%%DATADIR%%/html/cmdUndo.html
%%DATADIR%%/html/cmdUngroup.html
%%DATADIR%%/html/cmdUpdatetitle.html
%%DATADIR%%/html/cmdView.html
%%DATADIR%%/html/cmdZoom.html
%%DATADIR%%/html/commandMenus.html
%%DATADIR%%/html/computeElevations.html
%%DATADIR%%/html/contents.html
%%DATADIR%%/html/controlElementScripts.html
%%DATADIR%%/html/copydist.html
%%DATADIR%%/html/createTangent.html
%%DATADIR%%/html/dirOverview.html
%%DATADIR%%/html/directories.html
%%DATADIR%%/html/editM.html
%%DATADIR%%/html/enhancements.html
%%DATADIR%%/html/enterValue.html
%%DATADIR%%/html/extendTrack.html
%%DATADIR%%/html/faqs.html
%%DATADIR%%/html/faqsButtonColor.html
%%DATADIR%%/html/faqsHotBar.html
%%DATADIR%%/html/faqsJoin.html
%%DATADIR%%/html/faqsPrototype.html
%%DATADIR%%/html/faqsTransfer.html
%%DATADIR%%/html/fileM.html
%%DATADIR%%/html/fontSelW.html
%%DATADIR%%/html/generalTerms.html
%%DATADIR%%/html/generaloperation.html
%%DATADIR%%/html/glossary.html
%%DATADIR%%/html/hbStructures.html
%%DATADIR%%/html/hbTurnouts.html
%%DATADIR%%/html/helpM.html
%%DATADIR%%/html/index.html
%%DATADIR%%/html/installDir.html
%%DATADIR%%/html/installSoftware.html
%%DATADIR%%/html/introQT.html
%%DATADIR%%/html/joinCornu.html
%%DATADIR%%/html/joinNormalEasment.html
%%DATADIR%%/html/joinTrackCurve.html
%%DATADIR%%/html/joinTrackMove.html
%%DATADIR%%/html/joinTrackStraight.html
%%DATADIR%%/html/kbshortcutHotBar.html
%%DATADIR%%/html/kbshortcutMainCanvas.html
%%DATADIR%%/html/kbshortcutdraw.html
%%DATADIR%%/html/kbshortcuts.html
%%DATADIR%%/html/keyFeatures.html
%%DATADIR%%/html/macroM.html
%%DATADIR%%/html/mainW.html
%%DATADIR%%/html/manageM.html
%%DATADIR%%/html/messageList.html
%%DATADIR%%/html/messageType.html
%%DATADIR%%/html/mouseBcmd.html
%%DATADIR%%/html/moveByMenu.html
%%DATADIR%%/html/moveByMouse.html
%%DATADIR%%/html/navigation.html
%%DATADIR%%/html/optionM.html
%%DATADIR%%/html/performance.html
%%DATADIR%%/html/png.d/ahelix.png
%%DATADIR%%/html/png.d/bblock.png
%%DATADIR%%/html/png.d/bcircl1.png
%%DATADIR%%/html/png.d/bcircl2.png
%%DATADIR%%/html/png.d/bcircl3.png
%%DATADIR%%/html/png.d/bcircle.png
%%DATADIR%%/html/png.d/bconnect.png
%%DATADIR%%/html/png.d/bcontrol.png
%%DATADIR%%/html/png.d/bcurve.png
%%DATADIR%%/html/png.d/bcurve1.png
%%DATADIR%%/html/png.d/bcurve2.png
%%DATADIR%%/html/png.d/bcurve3.png
%%DATADIR%%/html/png.d/bcurve4.png
%%DATADIR%%/html/png.d/bdelete.png
%%DATADIR%%/html/png.d/bdescrib.png
%%DATADIR%%/html/png.d/bdraw.png
%%DATADIR%%/html/png.d/beasement.png
%%DATADIR%%/html/png.d/belev.png
%%DATADIR%%/html/png.d/bezier.png
%%DATADIR%%/html/png.d/bflip.png
%%DATADIR%%/html/png.d/bgsnap.png
%%DATADIR%%/html/png.d/bgundo.png
%%DATADIR%%/html/png.d/bgzoom.png
%%DATADIR%%/html/png.d/bhelix.png
%%DATADIR%%/html/png.d/bhndldto.png
%%DATADIR%%/html/png.d/bitmap.png
%%DATADIR%%/html/png.d/bjoin.png
%%DATADIR%%/html/png.d/blayer.png
%%DATADIR%%/html/png.d/block.png
%%DATADIR%%/html/png.d/blockBoth.png
%%DATADIR%%/html/png.d/blockBottom.png
%%DATADIR%%/html/png.d/blockNone.png
%%DATADIR%%/html/png.d/blockTop.png
%%DATADIR%%/html/png.d/bmap.png
%%DATADIR%%/html/png.d/bmcircle.png
%%DATADIR%%/html/png.d/bmcurved.png
%%DATADIR%%/html/png.d/bmenu.png
%%DATADIR%%/html/png.d/bmodify.png
%%DATADIR%%/html/png.d/bmove.png
%%DATADIR%%/html/png.d/bmovedes.png
%%DATADIR%%/html/png.d/bnew.png
%%DATADIR%%/html/png.d/bnewcar.png
%%DATADIR%%/html/png.d/bnote.png
%%DATADIR%%/html/png.d/bopen.png
%%DATADIR%%/html/png.d/bparalle.png
%%DATADIR%%/html/png.d/brotate.png
%%DATADIR%%/html/png.d/bruler.png
%%DATADIR%%/html/png.d/bsave.png
%%DATADIR%%/html/png.d/bselect.png
%%DATADIR%%/html/png.d/bsensor.png
%%DATADIR%%/html/png.d/bsignal.png
%%DATADIR%%/html/png.d/bsplit.png
%%DATADIR%%/html/png.d/bstraigh.png
%%DATADIR%%/html/png.d/bstruct.png
%%DATADIR%%/html/png.d/bswitchmotor.png
%%DATADIR%%/html/png.d/btext.png
%%DATADIR%%/html/png.d/btop_bottom.png
%%DATADIR%%/html/png.d/btrain.png
%%DATADIR%%/html/png.d/btunnel.png
%%DATADIR%%/html/png.d/bturnout.png
%%DATADIR%%/html/png.d/bturntbl.png
%%DATADIR%%/html/png.d/carinv.png
%%DATADIR%%/html/png.d/caritem.png
%%DATADIR%%/html/png.d/carlist.png
%%DATADIR%%/html/png.d/carpart.png
%%DATADIR%%/html/png.d/carproto.png
%%DATADIR%%/html/png.d/celev.png
%%DATADIR%%/html/png.d/cgroup.png
%%DATADIR%%/html/png.d/chelix.png
%%DATADIR%%/html/png.d/cmdopt.png
%%DATADIR%%/html/png.d/colorw.png
%%DATADIR%%/html/png.d/control.png
%%DATADIR%%/html/png.d/custmgm.png
%%DATADIR%%/html/png.d/dbench.png
%%DATADIR%%/html/png.d/dbezier.png
%%DATADIR%%/html/png.d/dbox.png
%%DATADIR%%/html/png.d/dchgelev.png
%%DATADIR%%/html/png.d/dcircle2.png
%%DATADIR%%/html/png.d/dcircle3.png
%%DATADIR%%/html/png.d/dcprofile.png
%%DATADIR%%/html/png.d/dcurve1.png
%%DATADIR%%/html/png.d/dcurve2.png
%%DATADIR%%/html/png.d/dcurve3.png
%%DATADIR%%/html/png.d/dcurve4.png
%%DATADIR%%/html/png.d/ddimlin.png
%%DATADIR%%/html/png.d/demo.png
%%DATADIR%%/html/png.d/dfilbox.png
%%DATADIR%%/html/png.d/dfilpoly.png
%%DATADIR%%/html/png.d/dflcrcl2.png
%%DATADIR%%/html/png.d/dflcrcl3.png
%%DATADIR%%/html/png.d/displayopt.png
%%DATADIR%%/html/png.d/dlayer.png
%%DATADIR%%/html/png.d/dlayers.png
%%DATADIR%%/html/png.d/dline.png
%%DATADIR%%/html/png.d/dpoly.png
%%DATADIR%%/html/png.d/dprmfile.png
%%DATADIR%%/html/png.d/dproperties.png
%%DATADIR%%/html/png.d/dpropertieshighlight.png
%%DATADIR%%/html/png.d/drotateangle.png
%%DATADIR%%/html/png.d/dtbledge.png
%%DATADIR%%/html/png.d/dtipofday.png
%%DATADIR%%/html/png.d/easeex1.png
%%DATADIR%%/html/png.d/easeex2.png
%%DATADIR%%/html/png.d/easew.png
%%DATADIR%%/html/png.d/exportfile.png
%%DATADIR%%/html/png.d/exportfiledxf.png
%%DATADIR%%/html/png.d/flip1.png
%%DATADIR%%/html/png.d/flip2.png
%%DATADIR%%/html/png.d/flip3.png
%%DATADIR%%/html/png.d/flip4.png
%%DATADIR%%/html/png.d/fonts.png
%%DATADIR%%/html/png.d/grid.png
%%DATADIR%%/html/png.d/hotbar.png
%%DATADIR%%/html/png.d/iconnote.png
%%DATADIR%%/html/png.d/import.png
%%DATADIR%%/html/png.d/joincornu1.png
%%DATADIR%%/html/png.d/joincornu2.png
%%DATADIR%%/html/png.d/joincornu3.png
%%DATADIR%%/html/png.d/joincornu4.png
%%DATADIR%%/html/png.d/joincornu5.png
%%DATADIR%%/html/png.d/joincrv1.png
%%DATADIR%%/html/png.d/joincrv2.png
%%DATADIR%%/html/png.d/joincrv3.png
%%DATADIR%%/html/png.d/joincrv4.png
%%DATADIR%%/html/png.d/joincrv5.png
%%DATADIR%%/html/png.d/joinmove1.png
%%DATADIR%%/html/png.d/joinmove2.png
%%DATADIR%%/html/png.d/joinmove3.png
%%DATADIR%%/html/png.d/joinmove4.png
%%DATADIR%%/html/png.d/joinstrt1.png
%%DATADIR%%/html/png.d/joinstrt2.png
%%DATADIR%%/html/png.d/joinstrt3.png
%%DATADIR%%/html/png.d/layout.png
%%DATADIR%%/html/png.d/lcemanager.png
%%DATADIR%%/html/png.d/madd.png
%%DATADIR%%/html/png.d/main.png
%%DATADIR%%/html/png.d/main1.png
%%DATADIR%%/html/png.d/maincanvas.png
%%DATADIR%%/html/png.d/map.png
%%DATADIR%%/html/png.d/mchange.png
%%DATADIR%%/html/png.d/mdraw.png
%%DATADIR%%/html/png.d/mdrawcircles.png
%%DATADIR%%/html/png.d/mdrawcurve.png
%%DATADIR%%/html/png.d/mdrawshapes.png
%%DATADIR%%/html/png.d/mdrawstraight.png
%%DATADIR%%/html/png.d/medit.png
%%DATADIR%%/html/png.d/menu.png
%%DATADIR%%/html/png.d/menu.xcf
%%DATADIR%%/html/png.d/mfile.png
%%DATADIR%%/html/png.d/mhelp.png
%%DATADIR%%/html/png.d/mhelpdemos.png
%%DATADIR%%/html/png.d/mhelprecent.png
%%DATADIR%%/html/png.d/mmacro.png
%%DATADIR%%/html/png.d/mmanage.png
%%DATADIR%%/html/png.d/mmanageturnoutdesign.png
%%DATADIR%%/html/png.d/mmovedraw.png
%%DATADIR%%/html/png.d/moptions.png
%%DATADIR%%/html/png.d/mrotatealign.png
%%DATADIR%%/html/png.d/mrotatefixed.png
%%DATADIR%%/html/png.d/mrotatemove.png
%%DATADIR%%/html/png.d/mselect.png
%%DATADIR%%/html/png.d/mselected.png
%%DATADIR%%/html/png.d/msplitblock.png
%%DATADIR%%/html/png.d/msplitblockLR.png
%%DATADIR%%/html/png.d/mtoolbar.png
%%DATADIR%%/html/png.d/mtrainmanagement.png
%%DATADIR%%/html/png.d/mview.png
%%DATADIR%%/html/png.d/mwindow.png
%%DATADIR%%/html/png.d/mzoomscale.png
%%DATADIR%%/html/png.d/openwindows.png
%%DATADIR%%/html/png.d/pan.png
%%DATADIR%%/html/png.d/partslist.png
%%DATADIR%%/html/png.d/pref.png
%%DATADIR%%/html/png.d/pricelist.png
%%DATADIR%%/html/png.d/print.png
%%DATADIR%%/html/png.d/printset.png
%%DATADIR%%/html/png.d/printset_win.png
%%DATADIR%%/html/png.d/rescale.png
%%DATADIR%%/html/png.d/satusbarparallel.png
%%DATADIR%%/html/png.d/sensor.png
%%DATADIR%%/html/png.d/signal.png
%%DATADIR%%/html/png.d/splitConnect.png
%%DATADIR%%/html/png.d/splitDisconnect.png
%%DATADIR%%/html/png.d/splitNotYet.png
%%DATADIR%%/html/png.d/statusbar.png
%%DATADIR%%/html/png.d/statusbartrain.png
%%DATADIR%%/html/png.d/statusbarturntable.png
%%DATADIR%%/html/png.d/statustext.png
%%DATADIR%%/html/png.d/sticky.png
%%DATADIR%%/html/png.d/strsel.png
%%DATADIR%%/html/png.d/switchmotor.png
%%DATADIR%%/html/png.d/title.png
%%DATADIR%%/html/png.d/toolbar.png
%%DATADIR%%/html/png.d/trainbar.png
%%DATADIR%%/html/png.d/trainctrl.png
%%DATADIR%%/html/png.d/trainsimulator.png
%%DATADIR%%/html/png.d/turndes.png
%%DATADIR%%/html/png.d/turnsel.png
%%DATADIR%%/html/png.d/updttl.png
%%DATADIR%%/html/png.d/xtrkcad_logo.gif
%%DATADIR%%/html/printSetup.html
%%DATADIR%%/html/rotateByAlign.html
%%DATADIR%%/html/rotateByMenu.html
%%DATADIR%%/html/rotateByMouse.html
%%DATADIR%%/html/splitBlockGap.html
%%DATADIR%%/html/splitDisconnect.html
%%DATADIR%%/html/splitDivide.html
%%DATADIR%%/html/startSoftware.html
%%DATADIR%%/html/toolbarM.html
%%DATADIR%%/html/uninstall.html
%%DATADIR%%/html/upgrades.html
%%DATADIR%%/html/v4.0.3_revisions.html
%%DATADIR%%/html/v4.0.x_revisions.html
%%DATADIR%%/html/viewM.html
%%DATADIR%%/html/warranty.html
%%DATADIR%%/html/warrantyLicenseCopy.html
%%DATADIR%%/html/whyXTrackCAD.html
%%DATADIR%%/html/windowM.html
%%DATADIR%%/html/windowTerms.html
%%DATADIR%%/html/workDir.html
%%DATADIR%%/html/xtrkcad_lin.css
%%DATADIR%%/logo.bmp
%%DATADIR%%/params/ACG19.350 Track.xtp
%%DATADIR%%/params/ACG20.000 Track.xtp
%%DATADIR%%/params/ACG20.000_Track.xtp
%%DATADIR%%/params/Any-CTC_panel.xtp
%%DATADIR%%/params/Any-CabooseIndustries.xtp
%%DATADIR%%/params/Any-ElecSymbol.xtp
%%DATADIR%%/params/AtlasTrueTrk.xtp
%%DATADIR%%/params/Azatrax.xtp
%%DATADIR%%/params/BachmannEZ-HO.xtp
%%DATADIR%%/params/BachmannEZ-N.xtp
%%DATADIR%%/params/Central Valley turnout kits.xtp
%%DATADIR%%/params/Central Valley turnouts.xtp
%%DATADIR%%/params/Circuits.xtp
%%DATADIR%%/params/DiamondSc.xtp
%%DATADIR%%/params/EM-UK Fine Scale.xtp
%%DATADIR%%/params/F-NMRA-RP12-21.xtp
%%DATADIR%%/params/FastTrack-HO.xtp
%%DATADIR%%/params/FastTrack_n.xtp
%%DATADIR%%/params/G-NMRA-RP12-23.xtp
%%DATADIR%%/params/G-NQD-AMAX Plastic.xtp
%%DATADIR%%/params/G-aristo.xtp
%%DATADIR%%/params/Gn15-nmra.xtp
%%DATADIR%%/params/H0_ncb-Roads.xtp
%%DATADIR%%/params/HO-AtlasHOstruct.xtp
%%DATADIR%%/params/HO-DapolHOOO.xtp
%%DATADIR%%/params/HO-Frateschi.xtp
%%DATADIR%%/params/HO-HornbyHO.xtp
%%DATADIR%%/params/HO-LifeLike-Power-Loc.xtp
%%DATADIR%%/params/HO-Mehano.xtp
%%DATADIR%%/params/HO-MetcalfeHOOO.xtp
%%DATADIR%%/params/HO-MicroEngineering.xtp
%%DATADIR%%/params/HO-OldJouefHO100.xtp
%%DATADIR%%/params/HO-Peco-Code100Setrack.xtp
%%DATADIR%%/params/HO-Peco-Code100Streamline.xtp
%%DATADIR%%/params/HO-Peco-Code75Finescale.xtp
%%DATADIR%%/params/HO-Peco-Code83.xtp
%%DATADIR%%/params/HO-Peco70USA.xtp
%%DATADIR%%/params/HO-RatioHOOO.xtp
%%DATADIR%%/params/HO-Slot-Car-AFX-Track.xtp
%%DATADIR%%/params/HO-Slot-Car-Adapter-Track.xtp
%%DATADIR%%/params/HO-Slot-Car-Aurora-Track-Manually-Modified.xtp
%%DATADIR%%/params/HO-Slot-Car-Aurora-Track.xtp
%%DATADIR%%/params/HO-Slot-Cars.xtp
%%DATADIR%%/params/HO-Superquick.xtp
%%DATADIR%%/params/HO-WalthCornerstone 1.xtp
%%DATADIR%%/params/HO-Weinert-Code75.xtp
%%DATADIR%%/params/HO-WillsHOOO.xtp
%%DATADIR%%/params/HO-atl100ho.xtp
%%DATADIR%%/params/HO-cmr-ho.xtp
%%DATADIR%%/params/HO_toolkit-Roads.xtp
%%DATADIR%%/params/HOn3-BlackStoneProTraxx.xtp
%%DATADIR%%/params/HOn3-MicroEngineering.xtp
%%DATADIR%%/params/HOn30_Minitrains.xtp
%%DATADIR%%/params/Hornby Dublo 2 Rail Buildings.xtp
%%DATADIR%%/params/Hornby Dublo 2 Rail.xtp
%%DATADIR%%/params/Hornby Dublo 3 Rail with Turntable.xtp
%%DATADIR%%/params/Hornby Dublo Signals.xtp
%%DATADIR%%/params/Hornby Dublo Wood Buildings.xtp
%%DATADIR%%/params/HornbyOO.xtp
%%DATADIR%%/params/JouefHO.xtp
%%DATADIR%%/params/K-Line O Structures (Kits).xtp
%%DATADIR%%/params/Lego-Track.xtp
%%DATADIR%%/params/LifeLike-N.xtp
%%DATADIR%%/params/LimaHO.xtp
%%DATADIR%%/params/Lionel O Misc.xtp
%%DATADIR%%/params/Lionel O Operating Structures.xtp
%%DATADIR%%/params/Lionel O Structures (Kits).xtp
%%DATADIR%%/params/Lionel-O-O27.xtp
%%DATADIR%%/params/Lionel-O.xtp
%%DATADIR%%/params/Lionel27.xtp
%%DATADIR%%/params/LionelFasttrack.xtp
%%DATADIR%%/params/Lionel_Marx Beacons & Floodlight Towers.xtp
%%DATADIR%%/params/Lionel_Marx Highway Signals & Blocks.xtp
%%DATADIR%%/params/Marx.xtp
%%DATADIR%%/params/N-AtlasTrueTrack.xtp
%%DATADIR%%/params/N-BRIDGES.xtp
%%DATADIR%%/params/N-Bonus Commercial Structures.xtp
%%DATADIR%%/params/N-Bonus Generic Industrial Structures.xtp
%%DATADIR%%/params/N-Bonus Industrial Structures.xtp
%%DATADIR%%/params/N-Bonus Railroad Structures.xtp
%%DATADIR%%/params/N-Bonus Residential Structures.xtp
%%DATADIR%%/params/N-Bonus Structures.xtp
%%DATADIR%%/params/N-BritishFinescaleFineTraxC40.xtp
%%DATADIR%%/params/N-DESIGN-PRESERVATION.xtp
%%DATADIR%%/params/N-GRAIN-ELEVATORS.xtp
%%DATADIR%%/params/N-Greenmax-Engine sheds.xtp
%%DATADIR%%/params/N-Greenmax-Island platform 16.xtp
%%DATADIR%%/params/N-Ibertren.xtp
%%DATADIR%%/params/N-Kato-Unitram.xtp
%%DATADIR%%/params/N-Katocn.xtp
%%DATADIR%%/params/N-LifeLike Power-Loc.xtp
%%DATADIR%%/params/N-ME Structures.xtp
%%DATADIR%%/params/N-MOBILE-HOMES.xtp
%%DATADIR%%/params/N-N- 90ft-ROUNDHOUSE.xtp
%%DATADIR%%/params/N-NScaleArchitect.xtp
%%DATADIR%%/params/N-NULINE.xtp
%%DATADIR%%/params/N-PecoCode55Finescale.xtp
%%DATADIR%%/params/N-PecoCode80Setrack.xtp
%%DATADIR%%/params/N-PecoCode80Streamline.xtp
%%DATADIR%%/params/N-Rix-Pikestuff.xtp
%%DATADIR%%/params/N-Shinohara70.xtp
%%DATADIR%%/params/N-atlasn55.xtp
%%DATADIR%%/params/N-cmr.xtp
%%DATADIR%%/params/N-fl.xtp
%%DATADIR%%/params/N-kato-n-gl-trk.xtp
%%DATADIR%%/params/N-kato-turntable.xtp
%%DATADIR%%/params/N-kato.xtp
%%DATADIR%%/params/N-me.xtp
%%DATADIR%%/params/N-walth-n.xtp
%%DATADIR%%/params/NJI.xtp
%%DATADIR%%/params/NScale_SectorPlate_Traverser_Examples.xtp
%%DATADIR%%/params/Ninco_SCX Slot Car.xtp
%%DATADIR%%/params/Nm-NTram.xtp
%%DATADIR%%/params/Nn3-FastTrack.xtp
%%DATADIR%%/params/O-Bassett-Lowke (discontinued).xtp
%%DATADIR%%/params/O-ETS TramTrack.xtp
%%DATADIR%%/params/O-ETS.xtp
%%DATADIR%%/params/O-Lehnhardt Tramrails.xtp
%%DATADIR%%/params/O-Lenz.xtp
%%DATADIR%%/params/O-RealTrax.xtp
%%DATADIR%%/params/O-Ross.xtp
%%DATADIR%%/params/O-atlaso3rail.xtp
%%DATADIR%%/params/O-nmra-lapped.xtp
%%DATADIR%%/params/On14mm KBScale.xtp
%%DATADIR%%/params/On30-FastTrack.xtp
%%DATADIR%%/params/On30-Guy.xtp
%%DATADIR%%/params/On30-Interfaceplates.xtp
%%DATADIR%%/params/On30.xtp
%%DATADIR%%/params/Peco-On30.xtp
%%DATADIR%%/params/Piko-A.xtp
%%DATADIR%%/params/Piko-g.xtp
%%DATADIR%%/params/ProZ-Track.xtp
%%DATADIR%%/params/Proto-AmSlotCar.xtp
%%DATADIR%%/params/RSLaserKits.xtp
%%DATADIR%%/params/RocoGeoLineHO.xtp
%%DATADIR%%/params/S-AmericanModel.xtp
%%DATADIR%%/params/S-MTH S-Trax.xtp
%%DATADIR%%/params/S-SHelper S-Trax.xtp
%%DATADIR%%/params/S-Trax.xtp
%%DATADIR%%/params/S_ACG_18.824in Radius Track.xtp
%%DATADIR%%/params/S_ACG_20.000 Track.xtp
%%DATADIR%%/params/SideTrk.xtp
%%DATADIR%%/params/T-Eishindo.xtp
%%DATADIR%%/params/TT-Kuehn.xtp
%%DATADIR%%/params/TT-Roco-Turntable.xtp
%%DATADIR%%/params/TT-TilligAdvBeddingTrack.xtp
%%DATADIR%%/params/TT-Trak Modules.xtp
%%DATADIR%%/params/TTi-AuhagenNG.xtp
%%DATADIR%%/params/Tables (all scales).xtp
%%DATADIR%%/params/TilligAdvTT.xtp
%%DATADIR%%/params/TilligH0EliteCode83.xtp
%%DATADIR%%/params/TilligH0e.xtp
%%DATADIR%%/params/TilligH0m.xtp
%%DATADIR%%/params/TilligTTModellGS.xtp
%%DATADIR%%/params/USA-G.xtp
%%DATADIR%%/params/Woodland.xtp
%%DATADIR%%/params/Z-Atlas55.xtp
%%DATADIR%%/params/Z-Fasttrack.xtp
%%DATADIR%%/params/Z-Peco60.xtp
%%DATADIR%%/params/Z-Rokuhan.xtp
%%DATADIR%%/params/Z-T-Trak.xtp
%%DATADIR%%/params/accurail.xtp
%%DATADIR%%/params/amb-n.xtp
%%DATADIR%%/params/arnold.xtp
%%DATADIR%%/params/atl83ho.xtp
%%DATADIR%%/params/atlascho.xtp
%%DATADIR%%/params/atlascn.xtp
%%DATADIR%%/params/atlaseho.xtp
%%DATADIR%%/params/atlasen.xtp
%%DATADIR%%/params/atlasn.xtp
%%DATADIR%%/params/atlaso2rail.xtp
%%DATADIR%%/params/bach-n.xtp
%%DATADIR%%/params/br.xtp
%%DATADIR%%/params/busch-HOf.xtp
%%DATADIR%%/params/ctlpanel.xtp
%%DATADIR%%/params/dpm-ho.xtp
%%DATADIR%%/params/dpm-n.xtp
%%DATADIR%%/params/eu.xtp
%%DATADIR%%/params/fallerho.xtp
%%DATADIR%%/params/fl-model.xtp
%%DATADIR%%/params/fl-profi.xtp
%%DATADIR%%/params/flnpicco.xtp
%%DATADIR%%/params/gargrv-o.xtp
%%DATADIR%%/params/ho-amb.xtp
%%DATADIR%%/params/ho-barm.xtp
%%DATADIR%%/params/ho-blair.xtp
%%DATADIR%%/params/ho-branc.xtp
%%DATADIR%%/params/ho-campb.xtp
%%DATADIR%%/params/ho-craft.xtp
%%DATADIR%%/params/ho-fos.xtp
%%DATADIR%%/params/ho-jlinn.xtp
%%DATADIR%%/params/ho-ncb-roads.xtp
%%DATADIR%%/params/hon3-peco.xtp
%%DATADIR%%/params/hornby3r.xtp
%%DATADIR%%/params/hubner1.xtp
%%DATADIR%%/params/kato-ho.xtp
%%DATADIR%%/params/kato-n-DblTrk.xtp
%%DATADIR%%/params/kato-n.xtp
%%DATADIR%%/params/lgb.xtp
%%DATADIR%%/params/marcway-EM.xtp
%%DATADIR%%/params/me-ho.xtp
%%DATADIR%%/params/minitrix.xtp
%%DATADIR%%/params/mp-n.xtp
%%DATADIR%%/params/mrkholde.xtp
%%DATADIR%%/params/mrkhomde.xtp
%%DATADIR%%/params/mrkln1.xtp
%%DATADIR%%/params/mrklnhoc-de.xtp
%%DATADIR%%/params/mrklnhoc.xtp
%%DATADIR%%/params/mrklnhok.xtp
%%DATADIR%%/params/mrklnhom.xtp
%%DATADIR%%/params/mrklnz.xtp
%%DATADIR%%/params/mtl-z.xtp
%%DATADIR%%/params/nmra-0-lapped.xtp
%%DATADIR%%/params/nmra-ho.xtp
%%DATADIR%%/params/nmra-ho3.xtp
%%DATADIR%%/params/nmra-n.xtp
%%DATADIR%%/params/nmra-o.xtp
%%DATADIR%%/params/nmra-o3.xtp
%%DATADIR%%/params/nmra-s.xtp
%%DATADIR%%/params/nmra-tt.xtp
%%DATADIR%%/params/nmra-z.xtp
%%DATADIR%%/params/p4.xtp
%%DATADIR%%/params/peco turntable wo routes.xtp
%%DATADIR%%/params/peco-O-Bullhead.xtp
%%DATADIR%%/params/pecohom.xtp
%%DATADIR%%/params/pecohon30.xtp
%%DATADIR%%/params/pikestuf.xtp
%%DATADIR%%/params/protoam.xtp
%%DATADIR%%/params/protosteam.xtp
%%DATADIR%%/params/prototype-de.xtp
%%DATADIR%%/params/revell.xtp
%%DATADIR%%/params/rocho100.xtp
%%DATADIR%%/params/rocho83.xtp
%%DATADIR%%/params/signals_HO.xtp
%%DATADIR%%/params/smltown.xtp
%%DATADIR%%/params/supero.xtp
%%DATADIR%%/params/t-trak-notes.txt
%%DATADIR%%/params/t-trak.xtp
%%DATADIR%%/params/taylor-ho.xtp
%%DATADIR%%/params/tomix-n.xtp
%%DATADIR%%/params/toolkit-n.xtp
%%DATADIR%%/params/tortoise.xtp
%%DATADIR%%/params/trees.xtp
%%DATADIR%%/params/walth-bkgrd-ho.xtp
%%DATADIR%%/params/walth-ho.xtp
%%DATADIR%%/params/walth-n.xtp
%%DATADIR%%/params/wlthho10.xtp
%%DATADIR%%/params/wlthho83.xtp
%%DATADIR%%/xdg-open
%%DATADIR%%/xtrkcad.tip
%%DATADIR%%/xtrkcad.xtq

View File

@ -13,12 +13,11 @@ COMMENT= Logitech Harmony configuration library
LICENSE= GPLv2
BUILD_DEPENDS= pkg-config:devel/pkgconf
LIB_DEPENDS= libhidapi.so:comms/hidapi \
libzip.so:archivers/libzip
USE_LDCONFIG= yes
USES= tar:bzip2 libtool shared-mime-info
USES= tar:bzip2 libtool pkgconfig shared-mime-info
WRKSRC_SUBDIR= libconcord
GNU_CONFIGURE= yes
CFLAGS+= -I${LOCALBASE}/include

View File

@ -19,10 +19,9 @@ LIB_DEPENDS?= libgsm.so:audio/gsm \
libpopt.so:devel/popt \
libopus.so:audio/opus \
librtlsdr.so:comms/rtl-sdr
BUILD_DEPENDS= pkg-config:devel/pkgconf \
${LOCALBASE}/include/linux/input.h:devel/evdev-proto
BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:devel/evdev-proto
USES+= cmake compiler:c++11-lang tcl groff
USES+= cmake compiler:c++11-lang groff pkgconfig tcl
USE_GITHUB= yes
GH_ACCOUNT= sm0svx
GH_PROJECT= svxlink

View File

@ -803,6 +803,7 @@
SUBDIR += py-pg_pqueue
SUBDIR += py-pgcli
SUBDIR += py-pgdbconn
SUBDIR += py-pglast
SUBDIR += py-pglite
SUBDIR += py-pgspecial
SUBDIR += py-pgxnclient

View File

@ -1,8 +1,7 @@
# $FreeBSD$
PORTNAME= mariadb-connector-c
PORTVERSION= 3.0.7
PORTREVISION= 1
PORTVERSION= 3.0.8
CATEGORIES= databases ipv6
MASTER_SITES= http://ftp.osuosl.org/pub/${SITESDIR}/ \
http://mirrors.supportex.net/${SITESDIR}/ \

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1543094226
SHA256 (mariadb-connector-c-3.0.7-src.tar.gz) = f63883c9360675d111646fba5c97feb0d08e0def5873dd189d78bafbb75fa004
SIZE (mariadb-connector-c-3.0.7-src.tar.gz) = 667274
TIMESTAMP = 1547390170
SHA256 (mariadb-connector-c-3.0.8-src.tar.gz) = 2ca368fd79e87e80497a5c9fd18922d8316af8584d87cecb35bd5897cb1efd05
SIZE (mariadb-connector-c-3.0.8-src.tar.gz) = 674455

View File

@ -18,6 +18,7 @@ lib/mariadb/libmariadb.so
lib/mariadb/libmariadb.so.3
lib/mariadb/libmariadbclient.a
lib/mariadb/plugin/auth_gssapi_client.so
lib/mariadb/plugin/caching_sha2_password.so
lib/mariadb/plugin/dialog.so
lib/mariadb/plugin/mysql_clear_password.so
lib/mariadb/plugin/remote_io.so

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= mariadb
DISTVERSION= 3.0.7
DISTVERSION= 3.0.8
CATEGORIES= databases ipv6
MASTER_SITES= http://ftp.osuosl.org/pub/${SITESDIR}/ \
http://mirrors.supportex.net/${SITESDIR}/ \

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1543094519
SHA256 (mariadb-connector-odbc-3.0.7-ga-src.tar.gz) = 96acf5ead7ecd8be1085a4d2109d2ef59afaef26ed827a12a6a9043f16034666
SIZE (mariadb-connector-odbc-3.0.7-ga-src.tar.gz) = 194531
TIMESTAMP = 1547391357
SHA256 (mariadb-connector-odbc-3.0.8-ga-src.tar.gz) = a7f3b735b94d69bdbb7a2debcd92a1d002fdf7e96781ce137e48bb40b4033c6a
SIZE (mariadb-connector-odbc-3.0.8-ga-src.tar.gz) = 195026

View File

@ -23,11 +23,6 @@ CLIENT_ONLY= yes
CONFLICTS_INSTALL= databases/mytop
post-configure:
${REINPLACE_CMD} -Ee 's|(#define INCLUDE.*)"$$|\1 -I${PREFIX}/include"|' \
-e 's|(#define LIBS .*)"$$|\1 -L${PREFIX}/lib"|' \
${WRKSRC}/libmariadb/mariadb_config/mariadb_config.c
post-install:
${RM} -r ${STAGEDIR}${DATADIR}
${RM} -r ${STAGEDIR}${PREFIX}/include/mysql/server

View File

@ -2,8 +2,8 @@
# $FreeBSD$
PORTNAME?= mariadb
PORTVERSION= 10.3.11
PORTREVISION?= 2
PORTVERSION= 10.3.12
PORTREVISION?= 0
CATEGORIES= databases ipv6
MASTER_SITES= http://mirrors.supportex.net/${SITESDIR}/ \
http://mirror2.hs-esslingen.de/pub/Mirrors/${SITESDIR}/ \
@ -29,7 +29,7 @@ PKGMESSAGE= ${WRKDIR}/pkg-message
SLAVEDIRS= databases/mariadb102-client
USES= bison:build cmake:insource,noninja compiler:c++11-lib cpe iconv:translit libedit ncurses shebangfix ssl
USE_LDCONFIG= ${PREFIX}/lib/mysql
SHEBANG_FILES= scripts/*.sh storage/rocksdb/myrocks_hotbackup
SHEBANG_FILES= scripts/*.sh
SITESDIR= mariadb/mariadb-${PORTVERSION}/source
DOCSDIR= ${PREFIX}/share/doc/mysql
@ -87,6 +87,7 @@ CMAKE_ARGS+= -DINSTALL_DOCDIR="share/doc/mysql" \
-DDEFAULT_SYSCONFDIR="${PREFIX}/etc" \
-DWITH_JEMALLOC="system" \
-DWITH_LIBWRAP=1 \
-DWITH_CONNECT_WITH_MONGO="OFF" \
-DWITH_SSL="${OPENSSLBASE}" \
-DWITH_UNIT_TESTS=0 \
-DWITHOUT_DOCS=1 \
@ -192,6 +193,7 @@ CMAKE_ARGS+= -DWITHOUT_TOKUDB
.endif
post-patch:
${REINPLACE_CMD} 's|/usr/bin/env python|${PYTHON_CMD}|' ${WRKSRC}/CMakeLists.txt
${REINPLACE_CMD} 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/mysys/my_default.c
${REINPLACE_CMD} 's|%%LOCALBASE%%|${LOCALBASE}|g' ${WRKSRC}/scripts/mysql_config.sh \
${WRKSRC}/storage/tokudb/PerconaFT/cmake_modules/TokuThirdParty.cmake

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1542715300
SHA256 (mariadb-10.3.11.tar.gz) = 211655b794c9d5397ba3be6c90737eac02e882f296268299239db47ba328f1b2
SIZE (mariadb-10.3.11.tar.gz) = 70669435
TIMESTAMP = 1547313088
SHA256 (mariadb-10.3.12.tar.gz) = f7449a34c25e0455928d7983dae83fd2069fe1f16c4c5f4aeed9ed9d3f081ff6
SIZE (mariadb-10.3.12.tar.gz) = 70666408

View File

@ -49,8 +49,6 @@ bin/resolveip
%%WSREP%%bin/wsrep_sst_mysqldump
%%WSREP%%bin/wsrep_sst_rsync
%%WSREP%%bin/wsrep_sst_rsync_wan
%%WSREP%%bin/wsrep_sst_xtrabackup
%%WSREP%%bin/wsrep_sst_xtrabackup-v2
@comment data/test/db.opt
@comment include/mysql/my_config.h
@comment include/mysql/my_global.h
@ -164,6 +162,7 @@ lib/mysql/plugin/auth_ed25519.so
lib/mysql/plugin/auth_pam.so
lib/mysql/plugin/auth_socket.so
lib/mysql/plugin/auth_test_plugin.so
lib/mysql/plugin/caching_sha2_password.so
@comment lib/mysql/plugin/daemon_example.ini
lib/mysql/plugin/debug_key_management.so
@comment lib/mysql/plugin/dialog.so

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= mysql
PORTREVISION= 1
PORTREVISION= 0
PKGNAMESUFFIX= 80-client
COMMENT= Multithreaded SQL database (client)

View File

@ -9,20 +9,20 @@
MYSQL_ADD_EXECUTABLE(mysql_upgrade
upgrade/program.cc
@@ -57,11 +58,14 @@ ADD_COMPILE_FLAGS(
TARGET_LINK_LIBRARIES(mysql_upgrade mysqlclient client_base mysqlcheck_core)
ADD_DEPENDENCIES(mysql_upgrade GenFixPrivs GenSysSchema)
TARGET_LINK_LIBRARIES(mysql_upgrade mysqlclient client_base mysqlcheck_core)
ADD_DEPENDENCIES(mysql_upgrade GenFixPrivs GenSysSchema GenBootstrapPriv)
ENDIF()
+ENDIF()
SET(MYSQLTEST_SRC
mysqltest/mysqltest_expected_error.cc
)
+IF(FALSE)
MYSQL_ADD_EXECUTABLE(mysqltest mysqltest.cc COMPONENT Test)
SET_SOURCE_FILES_PROPERTIES(mysqltest.cc PROPERTIES COMPILE_FLAGS "-DTHREADS")
MYSQL_ADD_EXECUTABLE(mysqltest mysqltest.cc ${MYSQLTEST_SRC} COMPONENT Test)
TARGET_LINK_LIBRARIES(mysqltest mysqlclient regex)
ADD_DEPENDENCIES(mysqltest GenError GenClientError)
+ENDIF()
ADD_CONVENIENCE_LIBRARY(mysqlcheck_core check/mysqlcheck_core.cc)
TARGET_LINK_LIBRARIES(mysqlcheck_core mysqlclient)
@@ -113,8 +117,10 @@ TARGET_LINK_LIBRARIES(mysqlslap mysqlcli
MYSQL_ADD_EXECUTABLE(mysql_config_editor mysql_config_editor.cc)
TARGET_LINK_LIBRARIES(mysql_config_editor mysqlclient)

View File

@ -0,0 +1,32 @@
--- cmake/os/FreeBSD.cmake.orig 2018-10-04 05:48:22 UTC
+++ cmake/os/FreeBSD.cmake
@@ -30,12 +30,26 @@ IF(NOT FORCE_UNSUPPORTED_COMPILER)
IF(NOT HAVE_SUPPORTED_CLANG_VERSION)
MESSAGE(FATAL_ERROR "Clang 3.3 or newer is required!")
ENDIF()
- ELSE()
- MESSAGE(FATAL_ERROR "Unsupported compiler!")
+ CHECK_C_SOURCE_RUNS("
+ int main()
+ {
+ return (__clang_major__ >= 4);
+ }" I386_ATOMIC_BUILTINS)
+ IF((CMAKE_SYSTEM_PROCESSOR MATCHES "i386") AND (NOT I386_ATOMIC_BUILTINS))
+ SET(HAVE_GCC_ATOMIC_BUILTINS CACHE INTERNAL "")
+ ENDIF()
+ ELSEIF(CMAKE_COMPILER_IS_GNUCC)
+ EXECUTE_PROCESS(COMMAND ${CMAKE_C_COMPILER} -dumpversion
+ OUTPUT_VARIABLE GCC_VERSION)
+ IF(GCC_VERSION VERSION_LESS 4.4)
+ MESSAGE(FATAL_ERROR "GCC 4.4 or newer is required!")
+ ENDIF()
ENDIF()
ENDIF()
# Should not be needed any more, but kept for easy resurrection if needed
# #Legacy option, maybe not needed anymore , taken as is from autotools build
# ADD_DEFINITIONS(-DNET_RETRY_COUNT=1000000)
-
+# For GCC maybe it's also good idea to use
+# ADD_DEFINITIONS(-D_GNU_SOURCE)
+

View File

@ -1,6 +1,6 @@
--- scripts/CMakeLists.txt.orig 2016-03-28 18:06:12 UTC
--- scripts/CMakeLists.txt.orig 2018-11-04 20:58:12 UTC
+++ scripts/CMakeLists.txt
@@ -43,6 +43,7 @@ ELSE()
@@ -80,6 +80,7 @@ ELSE()
MESSAGE(FATAL_ERROR "Cannot concatenate files")
ENDIF()
@ -8,7 +8,7 @@
# Build mysql_fix_privilege_tables.c
ADD_CUSTOM_COMMAND(
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/mysql_fix_privilege_tables_sql.c
@@ -63,6 +64,7 @@ ADD_CUSTOM_TARGET(GenFixPrivs
@@ -100,6 +101,7 @@ ADD_CUSTOM_TARGET(GenFixPrivs
DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/mysql_fix_privilege_tables_sql.c
${CMAKE_CURRENT_BINARY_DIR}/sql_commands_sys_schema.h
)
@ -16,23 +16,23 @@
# If we do not have performance schema compiled in then sys will not work,
# so only create an empty sys database with an auto-generated file,
@@ -143,6 +145,7 @@ IF(NOT WITHOUT_SERVER)
@@ -204,6 +206,7 @@ IF(NOT WITHOUT_SERVER)
)
ENDIF()
+IF(FALSE)
IF(UNIX)
FILE(WRITE ${CMAKE_CURRENT_BINARY_DIR}/make_binary_distribution
FILE(WRITE ${CMAKE_CURRENT_BINARY_DIR}/make_binary_distribution
"cd ${CMAKE_BINARY_DIR} && '${CMAKE_CPACK_COMMAND}' -G TGZ --config CPackConfig.cmake\n" )
@@ -150,6 +153,7 @@ IF(UNIX)
@@ -211,6 +214,7 @@ IF(UNIX)
COMMAND chmod +x ${CMAKE_CURRENT_BINARY_DIR}/make_binary_distribution
)
ENDIF()
+ENDIF()
IF(NOT WITHOUT_SERVER)
INSTALL(FILES
@@ -347,6 +351,8 @@ MACRO(EXTRACT_LINK_LIBRARIES target var)
# TCMalloc hacks
IF(MALLOC_LIB)
@@ -372,6 +376,8 @@ MACRO(EXTRACT_LINK_LIBRARIES target var)
GET_FILENAME_COMPONENT(lib "${lib}" NAME_WE)
STRING(REGEX REPLACE "^lib" "" lib "${lib}")
SET(${var} "${${var}}-l${lib} " )
@ -41,7 +41,7 @@
ELSE()
SET(${var} "${${var}}-l${lib} " )
ENDIF()
@@ -430,19 +436,7 @@ ELSE()
@@ -454,19 +460,7 @@ ELSE()
# On Unix, most of the files end up in the bin directory
SET(mysql_config_COMPONENT COMPONENT Development)

View File

@ -2,8 +2,8 @@
# $FreeBSD$
PORTNAME?= mysql
PORTVERSION= 8.0.12
PORTREVISION?= 3
PORTVERSION= 8.0.13
PORTREVISION?= 0
CATEGORIES= databases ipv6
MASTER_SITES= MYSQL/MySQL-8.0
PKGNAMESUFFIX?= 80-server
@ -17,8 +17,8 @@ LICENSE= GPLv2
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}${DISTVERSIONSUFFIX}
SLAVEDIRS= databases/mysql80-client
USES= bison:build cmake:noninja compiler:c++14-lang \
compiler:c++14-lib cpe libedit localbase perl5 shebangfix ssl
USES= bison:build cmake:noninja compiler:c++14-lang cpe \
libedit localbase perl5 shebangfix ssl
USE_PERL5= run
@ -41,7 +41,7 @@ CMAKE_ARGS+= -DINSTALL_LAYOUT=FREEBSD \
-DINSTALL_DOCDIR="share/doc/mysql" \
-DINSTALL_DOCREADMEDIR="share/doc/mysql" \
-DINSTALL_INCLUDEDIR="include/mysql" \
-DINSTALL_INFODIR="info" \
-DINSTALL_INFODIR="${INFO_PATH}" \
-DINSTALL_LIBDIR="lib/mysql" \
-DINSTALL_MANDIR="man" \
-DINSTALL_MYSQLDATADIR="${MY_DBDIR}" \
@ -63,6 +63,7 @@ CMAKE_ARGS+= -DINSTALL_LAYOUT=FREEBSD \
-DWITH_ICU=system \
-DWITH_RE2=system \
-DWITH_PROTOBUF=system \
-DBUILD_BUNDLED_ZLIB=0 \
-DINSTALL_MYSQLTESTDIR=0
SHEBANG_FILES= scripts/*.pl* scripts/*.sh

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1534018331
SHA256 (mysql-boost-8.0.12.tar.gz) = 99abae6660b53a462cff7c9fefb56d17f52823e9a964831aee1ae5633d9a2982
SIZE (mysql-boost-8.0.12.tar.gz) = 83152486
TIMESTAMP = 1541000462
SHA256 (mysql-boost-8.0.13.tar.gz) = 61f97906050c2a0cc008be347f70c2c6612425c85342466f549088c570b35ff4
SIZE (mysql-boost-8.0.13.tar.gz) = 106396721

View File

@ -0,0 +1,31 @@
--- cmake/os/FreeBSD.cmake.orig 2018-10-04 05:48:22 UTC
+++ cmake/os/FreeBSD.cmake
@@ -30,6 +30,20 @@ IF(NOT FORCE_UNSUPPORTED_COMPILER)
IF(NOT HAVE_SUPPORTED_CLANG_VERSION)
MESSAGE(FATAL_ERROR "Clang 3.3 or newer is required!")
ENDIF()
+ CHECK_C_SOURCE_RUNS("
+ int main()
+ {
+ return (__clang_major__ >= 4);
+ }" I386_ATOMIC_BUILTINS)
+ IF((CMAKE_SYSTEM_PROCESSOR MATCHES "i386") AND (NOT I386_ATOMIC_BUILTINS))
+ SET(HAVE_GCC_ATOMIC_BUILTINS CACHE INTERNAL "")
+ ENDIF()
+ ELSEIF(CMAKE_COMPILER_IS_GNUCC)
+ EXECUTE_PROCESS(COMMAND ${CMAKE_C_COMPILER} -dumpversion
+ OUTPUT_VARIABLE GCC_VERSION)
+ IF(GCC_VERSION VERSION_LESS 4.4)
+ MESSAGE(FATAL_ERROR "GCC 4.4 or newer is required!")
+ ENDIF()
ELSE()
MESSAGE(FATAL_ERROR "Unsupported compiler!")
ENDIF()
@@ -38,4 +52,6 @@ ENDIF()
# Should not be needed any more, but kept for easy resurrection if needed
# #Legacy option, maybe not needed anymore , taken as is from autotools build
# ADD_DEFINITIONS(-DNET_RETRY_COUNT=1000000)
-
+# For GCC maybe it's also good idea to use
+# ADD_DEFINITIONS(-D_GNU_SOURCE)
+

View File

@ -4,21 +4,21 @@
ADD_SUBDIRECTORY(authentication_ldap)
# Merge several convenience libraries into one big mysqlclient
-MERGE_CONVENIENCE_LIBRARIES(mysqlclient ${LIBS} COMPONENT Development)
+MERGE_CONVENIENCE_LIBRARIES(mysqlclient ${LIBS} COMPONENT Development SKIP_INSTALL)
-MERGE_CONVENIENCE_LIBRARIES(mysqlclient ${LIBS_TO_MERGE} COMPONENT Development)
+MERGE_CONVENIENCE_LIBRARIES(mysqlclient ${LIBS_TO_MERGE} COMPONENT Development SKIP_INSTALL)
TARGET_LINK_LIBRARIES(mysqlclient ${LIBS_TO_LINK})
# Visual Studio users need debug static library for debug projects
IF(MSVC)
@@ -257,7 +257,8 @@ IF(NOT DISABLE_SHARED)
# and link them together into shared library.
MERGE_LIBRARIES(libmysql SHARED ${LIBS}
MERGE_LIBRARIES_SHARED(libmysql ${LIBS_TO_MERGE}
EXPORTS ${CLIENT_API_FUNCTIONS} ${CLIENT_API_FUNCTIONS_UNDOCUMENTED}
- COMPONENT SharedLibraries)
+ COMPONENT SharedLibraries SKIP_INSTALL)
TARGET_LINK_LIBRARIES(libmysql ${LIBS_TO_LINK})
+IF(FALSE)
IF(UNIX)
# libtool compatability
IF(CMAKE_SYSTEM_NAME MATCHES "FreeBSD" OR APPLE)
IF(WIN32)
@@ -313,6 +314,7 @@ ENDIF()
# to initialize api_calls[] array in api_test.c
#

View File

@ -1,6 +1,6 @@
--- plugin/x/CMakeLists.txt.orig 2018-04-08 06:44:49 UTC
+++ plugin/x/CMakeLists.txt
@@ -82,12 +82,15 @@ INCLUDE_DIRECTORIES(
@@ -89,12 +89,15 @@ INCLUDE_DIRECTORIES(
${MYSQLX_GENERATE_DIR}
${MYSQLX_PROTOCOL_INCLUDE_DIR}
${MYSQLX_CLIENT_INCLUDE_DIR}
@ -9,7 +9,7 @@
INCLUDE_DIRECTORIES(SYSTEM
${PROTOBUF_INCLUDE_DIRS}
${LIBEVENT_INCLUDE_DIR}
${LIBEVENT_INCLUDE_DIRS}
${ICU_INCLUDE_DIRS}
+ ${SSL_INCLUDE_DIRS}
+ ${ZLIB_INCLUDE_DIR}

View File

@ -1,11 +0,0 @@
--- plugin/x/src/xpl_regex.cc.orig 2018-08-11 18:13:47 UTC
+++ plugin/x/src/xpl_regex.cc
@@ -53,7 +53,7 @@ bool xpl::Regex::match(const char *value
* and parse the text patter each time that xpl::Regex::match
* is called.
*/
- UnicodeString value_as_utf8{icu::UnicodeString::fromUTF8(value)};
+ icu::UnicodeString value_as_utf8{icu::UnicodeString::fromUTF8(value)};
std::unique_ptr<icu::RegexMatcher> regexp{
m_pattern->matcher(value_as_utf8, match_status)};

View File

@ -0,0 +1,11 @@
--- router/src/harness/CMakeLists.txt.orig 2018-11-04 22:41:07 UTC
+++ router/src/harness/CMakeLists.txt
@@ -128,7 +128,7 @@ IF(WIN32)
COMPILE_FLAGS -DHARNESS_STATIC_DEFINE)
ENDIF()
IF(THREADS_HAVE_PTHREAD_ARG)
- target_compile_options(PUBLIC harness-archive "-pthread")
+ target_compile_options(harness-archive PUBLIC "-pthread")
ENDIF()
# create harness library - dynamic version

View File

@ -1,15 +1,15 @@
--- sql/mysqld.cc.orig 2018-04-08 06:44:49 UTC
--- sql/mysqld.cc.orig 2018-10-07 08:44:22 UTC
+++ sql/mysqld.cc
@@ -4309,7 +4309,7 @@ static int warn_self_signed_ca() {
static void init_ssl() {
#ifdef HAVE_OPENSSL
#ifndef HAVE_WOLFSSL
@@ -4493,7 +4493,7 @@ static int warn_self_signed_ca() {
static PSI_memory_key key_memory_openssl = PSI_NOT_INSTRUMENTED;
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
+#if defined(LIBRESSL_VERSION_NUMBER) || OPENSSL_VERSION_NUMBER < 0x10100000L
CRYPTO_malloc_init();
#else /* OPENSSL_VERSION_NUMBER < 0x10100000L */
OPENSSL_malloc_init();
@@ -4321,7 +4321,7 @@ static void init_ssl() {
#define FILE_LINE_ARGS
#else
#define FILE_LINE_ARGS , const char *, int
@@ -4530,7 +4530,7 @@ static void init_ssl() {
static int init_ssl_communication() {
#ifdef HAVE_OPENSSL
@ -18,7 +18,7 @@
char ssl_err_string[OPENSSL_ERROR_LENGTH] = {'\0'};
int ret_fips_mode = set_fips_mode(opt_ssl_fips_mode, ssl_err_string);
if (ret_fips_mode != 1) {
@@ -8647,7 +8647,7 @@ bool mysqld_get_one_option(int optid,
@@ -8919,7 +8919,7 @@ bool mysqld_get_one_option(int optid,
One can disable SSL later by using --skip-ssl or --ssl=0.
*/
opt_use_ssl = true;

View File

@ -1,3 +1,5 @@
LICENSE.router
README.router
bin/ibd2sdi
bin/innochecksum
bin/my_print_defaults
@ -11,12 +13,24 @@ bin/mysql_upgrade
bin/mysqld_multi
bin/mysqld_safe
bin/mysqldumpslow
bin/mysqlrouter
bin/mysqlrouter_plugin_info
bin/mysqltest
bin/mysqlxtest
bin/perror
bin/resolve_stack_dump
bin/resolveip
bin/zlib_decompress
lib/mysql/libmysqlharness.a
lib/mysql/libmysqlharness.so
lib/mysql/libmysqlharness.so.1
lib/mysql/libmysqlrouter.so
lib/mysql/libmysqlrouter.so.1
lib/mysql/mysqlrouter/keepalive.so
lib/mysql/mysqlrouter/metadata_cache.so
lib/mysql/mysqlrouter/mysql_protocol.so
lib/mysql/mysqlrouter/routing.so
lib/mysql/mysqlrouter/syslog.so
lib/mysql/plugin/adt_null.so
lib/mysql/plugin/auth.so
lib/mysql/plugin/auth_test_plugin.so
@ -61,6 +75,7 @@ lib/mysql/plugin/connection_control.so
lib/mysql/plugin/daemon_example.ini
lib/mysql/plugin/group_replication.so
%%NO_EXAMPLE%%lib/mysql/plugin/ha_example.so
lib/mysql/plugin/ha_mock.so
lib/mysql/plugin/keyring_file.so
lib/mysql/plugin/libdaemon_example.so
lib/mysql/plugin/libtest_framework.so
@ -158,7 +173,6 @@ man/man8/mysqld.8.gz
%%DATADIR%%/english/errmsg.sys
%%DATADIR%%/errmsg-utf8.txt
%%DATADIR%%/estonian/errmsg.sys
%%DATADIR%%/fill_help_tables.sql
%%DATADIR%%/french/errmsg.sys
%%DATADIR%%/german/errmsg.sys
%%DATADIR%%/greek/errmsg.sys
@ -171,11 +185,6 @@ man/man8/mysqld.8.gz
%%DATADIR%%/magic
%%DATADIR%%/mysql-log-rotate
%%DATADIR%%/mysql.server
%%DATADIR%%/mysql_sys_schema.sql
%%DATADIR%%/mysql_system_tables.sql
%%DATADIR%%/mysql_system_tables_data.sql
%%DATADIR%%/mysql_system_users.sql
%%DATADIR%%/mysql_test_data_timezone.sql
%%DATADIR%%/mysqld_multi.server
%%DATADIR%%/norwegian-ny/errmsg.sys
%%DATADIR%%/norwegian/errmsg.sys

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= pgroonga
PORTVERSION= 2.1.7
PORTVERSION= 2.1.8
CATEGORIES= databases textproc
MASTER_SITES= http://packages.groonga.org/source/pgroonga/

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1546273828
SHA256 (pgroonga-2.1.7.tar.gz) = 9aa7aeb5478ad34f895423fcca62edb0e1716592339f5e221265c2e290d0f6d6
SIZE (pgroonga-2.1.7.tar.gz) = 326115
TIMESTAMP = 1547370010
SHA256 (pgroonga-2.1.8.tar.gz) = 3a009f7acff446dc5556e9796808c8282a34a147531fb1750a7ab58c0aed6c4c
SIZE (pgroonga-2.1.8.tar.gz) = 328034

View File

@ -1,5 +1,6 @@
lib/postgresql/pgroonga.so
lib/postgresql/pgroonga_check.so
lib/postgresql/pgroonga_database.so
share/postgresql/extension/pgroonga--1.0.0--1.0.1.sql
share/postgresql/extension/pgroonga--1.0.1--1.0.2.sql
share/postgresql/extension/pgroonga--1.0.2--1.0.3.sql
@ -41,5 +42,9 @@ share/postgresql/extension/pgroonga--2.1.3--2.1.4.sql
share/postgresql/extension/pgroonga--2.1.4--2.1.5.sql
share/postgresql/extension/pgroonga--2.1.5--2.1.6.sql
share/postgresql/extension/pgroonga--2.1.6--2.1.7.sql
share/postgresql/extension/pgroonga--2.1.7.sql
share/postgresql/extension/pgroonga--2.1.7--2.1.8.sql
share/postgresql/extension/pgroonga--2.1.8.sql
share/postgresql/extension/pgroonga_database--2.1.8.sql
share/postgresql/extension/pgroonga_database.control
share/postgresql/extension/pgroonga.control

View File

@ -0,0 +1,25 @@
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
# $FreeBSD$
PORTNAME= pglast
PORTVERSION= 1.1
CATEGORIES= databases python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= a.wolk@fudosecurity.com
COMMENT= PostgreSQL Languages AST and statements prettifier
LICENSE= GPLv3+
#LICENSE_FILE= ${WRKSRC}/
USES= gmake python:3.4+
USE_PYTHON= autoplist distutils
post-patch:
@${REINPLACE_CMD} -e 's|make|gmake|' ${WRKSRC}/setup.py
post-install:
${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/pglast/parser.so
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1547379267
SHA256 (pglast-1.1.tar.gz) = 3149c8b80c84f54fcdc56685e9e12625a7774e02352469d90ad9a30edcca759c
SIZE (pglast-1.1.tar.gz) = 1483748

View File

@ -0,0 +1,7 @@
PostgreSQL Languages AST and statements prettifier
Exposes the parse tree of a PostgreSQL statement (extracted by the almost
standard PG parser repackaged as a standalone static library by libpg_query)
as set of interconnected nodes, usually called an abstract syntax tree.
WWW: https://github.com/lelit/pglast

View File

@ -0,0 +1,11 @@
--- configure.orig 2018-11-02 22:07:01 UTC
+++ configure
@@ -24218,7 +24218,7 @@ $CXXCPP $cxxcpp_flags\
-DREVISION="\"$REVISION\""\
$dash_d_visibility\
$srcdir/include/xapian/version_h.cc|\
- ${SED-sed} '0,/const char \* dummy/d;/"/!d;s/^ *//;/^#/d;s/ *$//;s/" *,//;s/"//g;s/@@/"/g;s/ */ /g;s/ *,\r$//;s/ *,$//;s/____/ /g;s/\\\\$/\\/'\
+ ${SED-sed} '0,/const char \* dummy/d;/"/!d;s/^ *//;/^#/d;s/ *$//;s/" *,//;s/"//g;s/@@/"/g;s/ */ /g;s/ *,$//;s/____/ /g;s/\\\\$/\\/'\
> include/xapian/version.h.tmp
touch include/xapian/version.h.timestamp
if cmp include/xapian/version.h.tmp include/xapian/version.h >/dev/null 2>&1

View File

@ -0,0 +1,11 @@
--- configure.orig 2011-01-14 04:41:05 UTC
+++ configure
@@ -22153,7 +22153,7 @@ if test yes = "$GXX" ; then
done
fi
rm -f include/xapian/version.h.tmp
-$CXXCPP $cxxcpp_flags -DSTRING_VERSION="\"@@$MAIN_VERSION@@\"" -DMAJOR_VERSION="\"$MAJOR_VERSION\"" -DMINOR_VERSION="\"$MINOR_VERSION\"" -DREVISION="\"$REVISION\"" $srcdir/include/xapian/version_h.cc|${SED-sed} '/"/!d;s/^ *//;/^#/d;s/ *$//;s/" *,//;s/"//g;s/@@/"/g;s/ */ /g;s/ *,\r$//;s/ *,$//' > include/xapian/version.h.tmp
+$CXXCPP $cxxcpp_flags -DSTRING_VERSION="\"@@$MAIN_VERSION@@\"" -DMAJOR_VERSION="\"$MAJOR_VERSION\"" -DMINOR_VERSION="\"$MINOR_VERSION\"" -DREVISION="\"$REVISION\"" $srcdir/include/xapian/version_h.cc|${SED-sed} '/"/!d;s/^ *//;/^#/d;s/ *$//;s/" *,//;s/"//g;s/@@/"/g;s/ */ /g;s/ *,$//' > include/xapian/version.h.tmp
touch include/xapian/version.h.timestamp
if cmp include/xapian/version.h.tmp include/xapian/version.h >/dev/null 2>&1
then

View File

@ -0,0 +1,11 @@
--- configure.orig 2017-09-27 01:50:56 UTC
+++ configure
@@ -22590,7 +22590,7 @@ $CXXCPP $cxxcpp_flags\
-DREVISION="\"$REVISION\""\
$dash_d_visibility\
$srcdir/include/xapian/version_h.cc|\
- ${SED-sed} '/"/!d;s/^ *//;/^#/d;s/ *$//;s/" *,//;s/"//g;s/@@/"/g;s/ */ /g;s/ *,\r$//;s/ *,$//'\
+ ${SED-sed} '/"/!d;s/^ *//;/^#/d;s/ *$//;s/" *,//;s/"//g;s/@@/"/g;s/ */ /g;s/ *,$//'\
> include/xapian/version.h.tmp
touch include/xapian/version.h.timestamp
if cmp include/xapian/version.h.tmp include/xapian/version.h >/dev/null 2>&1

View File

@ -202,6 +202,7 @@
SUBDIR += py-bugwarrior
SUBDIR += py-khal
SUBDIR += py-khard
SUBDIR += py-py3status
SUBDIR += py-pystash
SUBDIR += py-send2trash
SUBDIR += py-taskw

View File

@ -20,7 +20,7 @@ LIB_DEPENDS= libfreetype.so:print/freetype2 \
CONFLICTS= gnome-utils-2.[0-9]*
PORTSCOUT= limitw:1,even
USES= desktop-file-utils gettext localbase meson pkgconfig tar:xz
USES= compiler:c11 desktop-file-utils gettext localbase meson pkgconfig tar:xz
USE_LDCONFIG= yes
INSTALLS_ICONS= yes
USE_GNOME= cairo gtk30 gnomedesktop3

View File

@ -2,10 +2,8 @@
# $FreeBSD$
PORTNAME= griffith
PORTVERSION= 0.13
PORTREVISION= 7
PORTVERSION= 0.15
CATEGORIES= deskutils
MASTER_SITES= http://launchpadlibrarian.net/87859599/
MAINTAINER= ports@FreeBSD.org
COMMENT= Lightweight film collection manager
@ -14,30 +12,30 @@ LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/COPYING
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>=0:databases/py-sqlite3@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}sqlalchemy10>=0.5:databases/py-sqlalchemy10@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pillow>=0:graphics/py-pillow@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}reportlab1>=1.19:print/py-reportlab1@${PY_FLAVOR}
${PYTHON_PKGNAMEPREFIX}sqlalchemy12>=1.1:databases/py-sqlalchemy12@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pillow>=4.3:graphics/py-pillow@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}reportlab>=3.4:print/py-reportlab@${PY_FLAVOR}
USES= gettext-runtime gmake gnome python:3.4+ shebangfix
USE_GITLAB= yes
GL_ACCOUNT= Strit
GL_COMMIT= a593201179695efe93829d9c9a70962ef29dd109
USES= gmake gettext python:2.7 shebangfix tar:xz
SHEBANG_FILES= griffith
USE_GNOME= pygtk2
USE_GNOME= pygobject3
NO_BUILD= yes
NO_ARCH= yes
OPTIONS_DEFINE= CHARDET LXML
OPTIONS_DEFAULT= LXML
OPTIONS_DEFINE= CHARDET
CHARDET_DESC= chardet support
CHARDET_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}chardet>=0:textproc/py-chardet@${PY_FLAVOR}
LXML_DESC= lxml support
LXML_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lxml>=0:devel/py-lxml@${PY_FLAVOR}
post-patch:
.for file in Makefile
@${REINPLACE_CMD} -e \
'/^LANGUAGES=/s|find.*|cd i18n/\&\&ls -d *)|g ; \
/^PREFIX/s|?=|=|g ; s|/usr|${PREFIX}|; /ln -s/d; \
/^PREFIX/s|?=|=|g ; s|/usr|${PREFIX}|; /ln -s/d; /chmod +x/d; \
/^ETCDIR/s|=.*|= $$(PREFIX)/etc|g' ${WRKSRC}/${file}
.endfor
.for f in docs/en/Makefile docs/pl/Makefile docs/pt/Makefile
@ -47,7 +45,7 @@ post-patch:
${WRKSRC}/${f}
.endfor
pre-install:
${LN} -s ${DATADIR}/lib/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
post-install:
${RLN} ${STAGEDIR}${DATADIR}/lib/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
.include <bsd.port.mk>

View File

@ -1,2 +1,3 @@
SHA256 (griffith-0.13.tar.xz) = b704bf79109ffe787cf194af24152b897ef826ee54eab4b05f29a51f945af304
SIZE (griffith-0.13.tar.xz) = 758668
TIMESTAMP = 1547195358
SHA256 (Strit-griffith-a593201179695efe93829d9c9a70962ef29dd109_GL0.tar.gz) = f05f2813d39d59a2e3316ccc2ca5e71be7ad3493a78249e347f159aece028af1
SIZE (Strit-griffith-a593201179695efe93829d9c9a70962ef29dd109_GL0.tar.gz) = 1478116

View File

@ -0,0 +1,17 @@
--- griffith.orig 2019-01-10 08:50:33 UTC
+++ griffith
@@ -1289,11 +1289,11 @@ class Griffith(object):
gutils.run_browser(self._trailer_url)
def on_goto_homepage_activate(site, *args):
- gutils.run_browser('https://github.com/Strit/griffith')
+ gutils.run_browser('https://gitlab.com/Strit/griffith')
def on_goto_forum_activate(site, *args):
- gutils.run_browser('https://github.com/Strit/griffith')
+ gutils.run_browser('https://gitlab.com/Strit/griffith')
def on_goto_report_bug_activate(site, *args):
- gutils.run_browser('https://github.com/Strit/griffith/issues')
+ gutils.run_browser('https://gitlab.com/Strit/griffith/issues')
# toolbar -------------------------------------------------------------
def toggle_toolbar(self, *args):

View File

@ -0,0 +1,31 @@
--- lib/plugins/movie/PluginMovieIMDB.py.orig 2019-01-10 08:53:18 UTC
+++ lib/plugins/movie/PluginMovieIMDB.py
@@ -43,7 +43,7 @@ class Plugin(movie.Movie):
def initialize(self):
self.cast_page = self.open_page(url=self.url + '/fullcredits')
- self.plot_page = self.open_page(url=self.url + '/plotsummary')
+ self.plot_page = self.open_page(url=self.url)
self.comp_page = self.open_page(url=self.url + '/companycredits')
self.tagl_page = self.open_page(url=self.url + '/taglines')
@@ -78,17 +78,8 @@ class Plugin(movie.Movie):
self.director = self.director[0:len(self.director) - 2]
def get_plot(self):
- self.plot = gutils.regextrim(self.page, 'itemprop="description"', '<')
- self.plot = gutils.after(self.plot, '>')
- elements = self.plot_page.split('<p class="plotpar">')
- if len(elements) < 2:
- elements = re.split('<li class="(?:odd|even)">', self.plot_page)
- if len(elements) > 1:
- self.plot = self.plot + '\n\n'
- elements[0] = ''
- for element in elements[1:]:
- if element != '':
- self.plot = self.plot + gutils.strip_tags(gutils.before(element, '</a>')) + '\n\n'
+ self.plot = gutils.trim(self.page, '<h2>Storyline</h2>', '</span>')
+ self.plot = gutils.after(self.plot, '<span> ')
def get_year(self):
self.year = gutils.trim(self.page, '<a href="/year/', '</a>')

View File

@ -30,11 +30,11 @@ share/applications/griffith.desktop
%%DATADIR%%/export_templates/xml/page.tpl
%%DATADIR%%/glade/add_poster.png
%%DATADIR%%/glade/delete_poster.png
%%DATADIR%%/glade/exporthtml.glade
%%DATADIR%%/glade/griffith.glade
%%DATADIR%%/glade/exporthtml.ui
%%DATADIR%%/glade/griffith.ui
%%DATADIR%%/glade/griffith.png
%%DATADIR%%/glade/import.glade
%%DATADIR%%/glade/importcsv.glade
%%DATADIR%%/glade/import.ui
%%DATADIR%%/glade/importcsv.ui
%%DATADIR%%/glade/nill.png
%%DATADIR%%/images/00.png
%%DATADIR%%/images/01.png
@ -68,6 +68,7 @@ share/applications/griffith.desktop
%%DATADIR%%/images/meter09.png
%%DATADIR%%/images/nill.png
%%DATADIR%%/images/seen.png
%%DATADIR%%/images/tmdb.png
%%DATADIR%%/images/unseen.png
%%DATADIR%%/lib/__init__.py
%%DATADIR%%/lib/about.py
@ -125,49 +126,22 @@ share/applications/griffith.desktop
%%DATADIR%%/lib/plugins/imp/MovieTrack.py
%%DATADIR%%/lib/plugins/imp/MyDVDs.py
%%DATADIR%%/lib/plugins/imp/PersonalVideoDatabase.py
%%DATADIR%%/lib/plugins/imp/Tellico.py
%%DATADIR%%/lib/plugins/imp/TheMovieLibrary.py
%%DATADIR%%/lib/plugins/imp/WintoolzFilmdatenbank.py
%%DATADIR%%/lib/plugins/imp/__init__.py
%%DATADIR%%/lib/plugins/imp/eXtremeMovieManager.py
%%DATADIR%%/lib/plugins/movie/PluginMovie7arte.py
%%DATADIR%%/lib/plugins/movie/PluginMovieAllRovi.py
%%DATADIR%%/lib/plugins/movie/PluginMovieAllocine.py
%%DATADIR%%/lib/plugins/movie/PluginMovieAmazon.py
%%DATADIR%%/lib/plugins/movie/PluginMovieAniDB.py
%%DATADIR%%/lib/plugins/movie/PluginMovieCSFD.py
%%DATADIR%%/lib/plugins/movie/PluginMovieCineMovies.py
%%DATADIR%%/lib/plugins/movie/PluginMovieCinematografo.py
%%DATADIR%%/lib/plugins/movie/PluginMovieCineteka.py
%%DATADIR%%/lib/plugins/movie/PluginMovieClubedevideo.py
%%DATADIR%%/lib/plugins/movie/PluginMovieCulturalia.py
%%DATADIR%%/lib/plugins/movie/PluginMovieDVDEmpire.py
%%DATADIR%%/lib/plugins/movie/PluginMovieDVDPalace.py
%%DATADIR%%/lib/plugins/movie/PluginMovieE-Pipoca.py
%%DATADIR%%/lib/plugins/movie/PluginMovieFDb.py
%%DATADIR%%/lib/plugins/movie/PluginMovieFilmAffinity.py
%%DATADIR%%/lib/plugins/movie/PluginMovieFilmDb.py
%%DATADIR%%/lib/plugins/movie/PluginMovieFilmeVonAZ.py
%%DATADIR%%/lib/plugins/movie/PluginMovieDVDpt.py
%%DATADIR%%/lib/plugins/movie/PluginMovieFilmtipset.py
%%DATADIR%%/lib/plugins/movie/PluginMovieFilmweb.py
%%DATADIR%%/lib/plugins/movie/PluginMovieHKMDB.py
%%DATADIR%%/lib/plugins/movie/PluginMovieIMDB-de.py
%%DATADIR%%/lib/plugins/movie/PluginMovieIMDB-es.py
%%DATADIR%%/lib/plugins/movie/PluginMovieIMDB-it.py
%%DATADIR%%/lib/plugins/movie/PluginMovieIMDB-pt.py
%%DATADIR%%/lib/plugins/movie/PluginMovieIMDB.py
%%DATADIR%%/lib/plugins/movie/PluginMovieInterfilmes.py
%%DATADIR%%/lib/plugins/movie/PluginMovieKinoDe.py
%%DATADIR%%/lib/plugins/movie/PluginMovieMediadis.py
%%DATADIR%%/lib/plugins/movie/PluginMovieMovieMeter.py
%%DATADIR%%/lib/plugins/movie/PluginMovieMoviefone.py
%%DATADIR%%/lib/plugins/movie/PluginMovieMyMoviesIt.py
%%DATADIR%%/lib/plugins/movie/PluginMovieOFDb.py
%%DATADIR%%/lib/plugins/movie/PluginMovieOnet.py
%%DATADIR%%/lib/plugins/movie/PluginMoviePTGate.py
%%DATADIR%%/lib/plugins/movie/PluginMovieScope.py
%%DATADIR%%/lib/plugins/movie/PluginMovieStopklatka.py
%%DATADIR%%/lib/plugins/movie/PluginMovieTanukiAnime.py
%%DATADIR%%/lib/plugins/movie/PluginMovieWP.py
%%DATADIR%%/lib/plugins/movie/PluginMovieTMDB.py
%%DATADIR%%/lib/plugins/movie/PluginMovieZelluloid.py
%%DATADIR%%/lib/plugins/movie/__init__.py
%%DATADIR%%/lib/preferences.py

View File

@ -0,0 +1,33 @@
# Created by: Martin Wilke
# $FreeBSD$
PORTNAME= py3status
PORTVERSION= 3.15
CATEGORIES= deskutils python
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= miwi@FreeBSD.org
COMMENT= Extensible i3status wrapper written in python
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dateutil>=0:devel/py-dateutil@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}google-api-python-client>=0:www/py-google-api-python-client@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}httplib2>=0:www/py-httplib2@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}python-gflags>=0:devel/py-python-gflags@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}oauth2client>0:security/py-oauth2client@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}gevent>0:devel/py-gevent@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pyudev>0:devel/py-pyudev@${PY_FLAVOR}
USES= python:3.5+
USE_PYTHON= distutils autoplist
USE_GITHUB= yes
GH_ACCOUNT= ultrabug
GH_PROJECT= py3status
NO_BUILD= yes
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1546576650
SHA256 (ultrabug-py3status-3.15_GH0.tar.gz) = 79e487017e827e3428ae526f5c967f9e819b34a84bafee4fac2121d5de84ef1c
SIZE (ultrabug-py3status-3.15_GH0.tar.gz) = 319839

View File

@ -0,0 +1,11 @@
py3status is an extensible i3status wrapper written in python.
You can take control of your i3bar easily by:
* using one of the available modules shipped with py3status
* grouping multiple modules and automatically or manually cycle their display
* writing your own modules and have their output displayed on your bar
* handling click events on your i3bar and play with them in no time
* seeing your clock tick every second whatever your i3status interval
WWW: https://github.com/ultrabug/py3status

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= zim
PORTVERSION= 0.68
PORTVERSION= 0.69
CATEGORIES= deskutils python
MASTER_SITES= http://www.zim-wiki.org/downloads/
@ -17,11 +17,12 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}xdg>0:devel/py-xdg@${PY_FLAVOR} \
xdg-open:devel/xdg-utils \
${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR}
NO_ARCH= yes
USES= desktop-file-utils gettext python:-2.7 shared-mime-info
USE_GNOME= pygtk2
USE_PYTHON= autoplist distutils
INSTALLS_ICONS= yes
NO_ARCH= yes
OPTIONS_DEFINE= BZR DITAA GIT GNUPLOT GNUR GRAPHVIZ LATEX \
MERCURIAL SCROT

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1523480995
SHA256 (zim-0.68.tar.gz) = d91518e010f6a6e951a75314138b5545a4c51151fc99f513aa7768a18858df15
SIZE (zim-0.68.tar.gz) = 2044224
TIMESTAMP = 1547396129
SHA256 (zim-0.69.tar.gz) = 41990870893976a6e20271e1f59a0b896000f367218f26c13a88471252a004c8
SIZE (zim-0.69.tar.gz) = 2044631

View File

@ -4611,6 +4611,7 @@
SUBDIR += py-itypes
SUBDIR += py-jaraco
SUBDIR += py-jaraco.classes
SUBDIR += py-jaraco.context
SUBDIR += py-jaraco.functools
SUBDIR += py-jaraco.itertools
SUBDIR += py-jaraco.logging
@ -5373,6 +5374,7 @@
SUBDIR += qt5-qdoc
SUBDIR += qt5-qdoc-data
SUBDIR += qt5-qmake
SUBDIR += qt5-remoteobjects
SUBDIR += qt5-script
SUBDIR += qt5-scripttools
SUBDIR += qt5-scxml
@ -5418,6 +5420,7 @@
SUBDIR += root-doc
SUBDIR += rote
SUBDIR += rpc2
SUBDIR += rpclib
SUBDIR += rpm-spec-mode.el
SUBDIR += rsvndump
SUBDIR += rth

View File

@ -4,7 +4,7 @@
PORTNAME= aegis
PORTVERSION= 4.25
DISTVERSIONSUFFIX= .D510
PORTREVISION= 10
PORTREVISION= 11
CATEGORIES= devel
MASTER_SITES= SF
@ -18,7 +18,6 @@ RUN_DEPENDS= tkdiff:textproc/tkdiff
USES= gettext ghostscript groff perl5 tk
USE_GNOME= libxml2
USE_GCC= any
GNU_CONFIGURE= yes
CPPFLAGS+= "-I${LOCALBASE}/include"
CONFIGURE_ARGS= --with-nlsdir="${PREFIX}/share/locale"

View File

@ -0,0 +1,26 @@
--- common/ac/shared_ptr.h.orig 2012-12-04 02:03:33 UTC
+++ common/ac/shared_ptr.h
@@ -21,23 +21,6 @@
#define COMMON_AC_SHARED_PTR_H
#include <common/config.h>
-
-#ifdef HAVE_TR1_MEMORY
-
-#include <tr1/memory>
-
-#define aegis_shared_ptr std::tr1::shared_ptr
-
-#elif HAVE_BOOST_SHARED_PTR_HPP
-
-#include <boost/shared_ptr.hpp>
-
-#define aegis_shared_ptr boost::shared_ptr
-
-#else
-
#include <common/ac/shared_ptr/aegis.h>
-#endif
-
#endif // COMMON_AC_SHARED_PTR_H

View File

@ -0,0 +1,15 @@
--- common/ac/string.h.orig 2012-12-04 02:03:33 UTC
+++ common/ac/string.h
@@ -128,10 +128,12 @@ size_t strlcat(char *dst, const char *sr
char *strendcpy(char *dst, const char *src, const char *end);
#endif
+/*
#undef strcat
#define strcat strcat_is_unsafe__use_strendcat_instead@
#undef strcpy
#define strcpy strcpy_is_unsafe__use_strendcpy_instead@
+*/
#ifndef HAVE_MEMMEM
void *memmem(const void *, size_t, const void *, size_t);

View File

@ -0,0 +1,37 @@
--- etc/configure.ac.orig 2012-12-04 02:03:33 UTC
+++ etc/configure.ac
@@ -649,8 +649,8 @@ AC_CHECK_SIZEOF(int)
AC_CHECK_SIZEOF(long)
AC_CHECK_SIZEOF(long long)
-AC_COMPUTE_INT(ac_cv_long_bit, [sizeof(long) * CHAR_BIT], [#include <limits.h>],
- [ac_cv_long_bit="sizeof(long) * CHAR_BIT"])
+AC_COMPUTE_INT(ac_cv_long_bit, [LONG_BIT], [#include <limits.h>],
+ [ac_cv_long_bit="LONG_BIT"])
AC_DEFINE_UNQUOTED(LONG_BIT, [$ac_cv_long_bit],
[Define this symbol to be the number of bits in a long.
This is analogous to the standard CHAR_BIT define.])
@@ -849,15 +849,15 @@ dnl!
AC_MSG_CHECKING([for tm_zone in struct tm])
AC_TRY_COMPILE([
#include <stdio.h>
-#ifdef TIME_WITH_SYS_TIME
-#include <sys/time.h>
-#include <time.h>
-#else
-#ifdef HAVE_SYS_TIME_H
+dnl! #ifdef TIME_WITH_SYS_TIME
#include <sys/time.h>
-#else
-#include <time.h>
-#endif
+dnl! #include <time.h>
+dnl! #else
+dnl! #ifdef HAVE_SYS_TIME_H
+dnl! #include <sys/time.h>
+dnl! #else
+dnl! #include <time.h>
+dnl! #endif
#endif], [struct tm *tm;
printf("%s\n", tm->tm_zone);],
AC_DEFINE(HAVE_tm_zone,1,

View File

@ -0,0 +1,10 @@
--- libaegis/introspector/time.h.orig 2012-12-04 02:03:33 UTC
+++ libaegis/introspector/time.h
@@ -19,6 +19,7 @@
#ifndef LIBAEGIS_INTROSPECTOR_TIME_H
#define LIBAEGIS_INTROSPECTOR_TIME_H
+#include <time.h>
#include <libaegis/introspector.h>
#include <libaegis/output.h>

View File

@ -0,0 +1,10 @@
--- libaegis/introspector/vector.h.orig 2012-12-04 02:03:33 UTC
+++ libaegis/introspector/vector.h
@@ -19,6 +19,7 @@
#ifndef LIBAEGIS_INTROSPECTOR_VECTOR_H
#define LIBAEGIS_INTROSPECTOR_VECTOR_H
+#include <sys/types.h>
#include <libaegis/introspector.h>
/**

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= ccls
DISTVERSION= 0.20181225.5
DISTVERSION= 0.20181225.6
CATEGORIES= devel
MAINTAINER= tobik@FreeBSD.org
@ -17,8 +17,8 @@ LIB_DEPENDS= libLLVM-${LLVM_DEFAULT:C/[0-9]$//}.so:devel/llvm${LLVM_DEFAULT}
USES= cmake compiler:c++17-lang localbase
USE_GITHUB= yes
GH_ACCOUNT= MaskRay
# Commit matching 0.20181225.5:
#GH_TAGNAME= 71022e81a62cd2ef58215e6628870436a9749efa
# Commit matching 0.20181225.6:
#GH_TAGNAME= 77b2eef49ae0582f80c9036e319cef76c62bee52
CMAKE_ARGS= -DCLANG_ROOT:String="${LOCALBASE}/llvm${LLVM_DEFAULT}"
CMAKE_ON= SYSTEM_CLANG USE_SHARED_LLVM

View File

@ -1,5 +1,5 @@
TIMESTAMP = 1547271876
TIMESTAMP = 1547379979
SHA256 (MaskRay-ccls.wiki-20181210.tar.gz) = fedd812479e504ae7b6df9f5e6fe4d3f89dabacec05184ce6dc4f991c230d971
SIZE (MaskRay-ccls.wiki-20181210.tar.gz) = 25372
SHA256 (MaskRay-ccls-0.20181225.5_GH0.tar.gz) = da99f2c482dffaa9129c328552ae0e2ab1a93ec1cb67c9106ce7bacf26bd0c0e
SIZE (MaskRay-ccls-0.20181225.5_GH0.tar.gz) = 158111
SHA256 (MaskRay-ccls-0.20181225.6_GH0.tar.gz) = 490ee9b077fb95b4dc92651bd56fc0f896a6696074c5f54e3bf03f7e5895c4d5
SIZE (MaskRay-ccls-0.20181225.6_GH0.tar.gz) = 158184

View File

@ -12,11 +12,10 @@ COMMENT= Grassroots DICOM library
LICENSE= BSD3CLAUSE
BUILD_DEPENDS= pkgconf:devel/pkgconf
LIB_DEPENDS= libopenjp2.so:graphics/openjpeg \
libexpat.so:textproc/expat2
USES= alias cmake compiler:c++11-lang tar:bzip2 ssl
USES= alias cmake compiler:c++11-lang pkgconfig tar:bzip2 ssl
OPTIONS_DEFINE= VTK6
OPTIONS_SUB= yes

View File

@ -16,6 +16,9 @@ LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= GeoIP>=1.4.8:net/GeoIP
DEPRECATED= Uses legacy GeoIP 1 format which no longer works; switch to GeoIP 2 where possible
EXPIRATION_DATE=2019-02-15
USES= zip
USE_JAVA= yes

View File

@ -19,11 +19,13 @@ BROKEN_mips64= invokes x86 assembler
BROKEN_sparc64= invokes x86 assembler
BROKEN_powerpc64= invokes x86 assembler
USES= gmake
WRKSRC= ${WRKDIR}/${PORTNAME}/Src
USES= gmake
ALL_TARGET= build
BINARY_ALIAS= gcc=${CC}
PLIST_FILES= bin/${PORTNAME} bin/kio ${BIN_SYMLINKS}
BIN_SYMLINKS= bin/k12 bin/k14 bin/k16 bin/ktest

View File

@ -1,13 +0,0 @@
--- Makefile.orig 2014-10-31 11:52:38 UTC
+++ Makefile
@@ -43,6 +43,10 @@ PLATFORM:=$(shell uname -m)
ifeq "$(SYSTEM)" "FreeBSD"
ifneq (,$(findstring 10.,$(RELEASE)))
CC=cc
+ else ifneq (,$(findstring 11.,$(RELEASE)))
+ CC=cc
+ else ifneq (,$(findstring 12.,$(RELEASE)))
+ CC=cc
else
CC=gcc
endif

View File

@ -14,8 +14,6 @@ COMMENT= Library of optimized inner loops
LICENSE= BSD2CLAUSE BSD3CLAUSE MIT
LICENSE_COMB= multi
BROKEN_powerpc64= fails to compile vec_memcpy.S
USES= libtool pathfix pkgconfig
PATHFIX_MAKEFILEIN= configure
GNU_CONFIGURE= yes

View File

@ -35,8 +35,7 @@
#ifdef LIBMOTOVEC
b memcpy // b to memcpy with correct args in r3 and r4
#else
- b _vec_memcpy // b to vec_memcpy with correct args in r3 and r4
+ b _vec_memcpy@plt // b to vec_memcpy with correct args in r3 and r4
b _vec_memcpy // b to vec_memcpy with correct args in r3 and r4
#endif
+ .size vec_bcopy, . - vec_bcopy
// End of bcopy in AltiVec

View File

@ -28,8 +28,7 @@
#ifdef LIBMOTOVEC
b memset
#else
- b _vec_memset
+ b _vec_memset@plt
b _vec_memset
#endif
+ .size vec_bzero, . - vec_bzero

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= osc
PORTVERSION= 0.163.0
PORTVERSION= 0.164.0
CATEGORIES= devel
MAINTAINER= amdmi3@FreeBSD.org
@ -11,21 +11,19 @@ COMMENT= Command Line Interface to work with an openSUSE Build Service
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/COPYING
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}m2crypto>0:security/py-m2crypto@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}urlgrabber>0:www/py-urlgrabber@${PY_FLAVOR}
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}urlgrabber>0:www/py-urlgrabber@${PY_FLAVOR}
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}m2crypto>0:security/py-m2crypto@${PY_FLAVOR}
USE_GITHUB= yes
GH_ACCOUNT= openSUSE
CPE_VENDOR= suse
CPE_PRODUCT= opensuse_osc
USES= cpe python:2.7
USE_PYTHON= autoplist distutils
PLIST_FILES= bin/osc
NO_ARCH= yes
CPE_VENDOR= suse
CPE_PRODUCT= opensuse_osc
PORTDOCS= *
OPTIONS_DEFINE= CA_BUNDLE DOCS

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1535278917
SHA256 (openSUSE-osc-0.163.0_GH0.tar.gz) = 3d994350fe55f00c1819c669f11ab633b19df22a4bd55c3e5ef08364e600823d
SIZE (openSUSE-osc-0.163.0_GH0.tar.gz) = 346300
TIMESTAMP = 1547295635
SHA256 (openSUSE-osc-0.164.0_GH0.tar.gz) = a8ea3e2ab6703061685a4ae08e232e70728022e8f9308fc3b626d21c8584da55
SIZE (openSUSE-osc-0.164.0_GH0.tar.gz) = 347163

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= Config-Model
PORTVERSION= 2.132
PORTVERSION= 2.133
CATEGORIES= devel perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1545619917
SHA256 (Config-Model-2.132.tar.gz) = 4203e83c8497beca809e8181e515df86ceba4b4e20b39ec5bcd5334a8eafd7d5
SIZE (Config-Model-2.132.tar.gz) = 356129
TIMESTAMP = 1547432225
SHA256 (Config-Model-2.133.tar.gz) = 4538e51f65b555536aa718b6600c6778e1ec6625f726c5d04c66bfa5d9347651
SIZE (Config-Model-2.133.tar.gz) = 356839

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= Log-Any-App
PORTVERSION= 0.53
PORTVERSION= 0.540
CATEGORIES= devel perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
@ -27,8 +27,9 @@ RUN_DEPENDS= p5-File-HomeDir>=0:devel/p5-File-HomeDir \
p5-Log-Dispatch-FileWriteRotate>=0.04:devel/p5-Log-Dispatch-FileWriteRotate
TEST_DEPENDS= p5-File-Slurper>=0:devel/p5-File-Slurper
NO_ARCH= yes
USES= perl5
USE_PERL5= configure
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -1,2 +1,3 @@
SHA256 (Log-Any-App-0.53.tar.gz) = c64de82ea5ae848574398a137e926d56c03fc427f6bc7bd6da925b8f30ebec41
SIZE (Log-Any-App-0.53.tar.gz) = 51446
TIMESTAMP = 1547401628
SHA256 (Log-Any-App-0.540.tar.gz) = c734783ca6631f832af51fcccea03e022eba84dca4232d114b9c77bd76eca9e1
SIZE (Log-Any-App-0.540.tar.gz) = 53161

View File

@ -10,7 +10,11 @@ PKGNAMEPREFIX= p5-
MAINTAINER= kuriyama@FreeBSD.org
COMMENT= Perl extension to handle versions of loaded modules
LICENSE= ART10 GPLv1+
LICENSE_COMB= dual
USES= perl5 zip
USE_PERL5= configure
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= POE-Component-Hailo
PORTVERSION= 0.10
PORTREVISION= 1
PORTVERSION= 0.11
CATEGORIES= devel perl5
MASTER_SITES= CPAN
MASTER_SITE_SUBDIR= CPAN:HINRIK
@ -14,10 +13,14 @@ COMMENT= Non-blocking wrapper around Hailo
LICENSE= ART10 GPLv1+
LICENSE_COMB= dual
LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= ${RUN_DEPENDS}
RUN_DEPENDS= p5-Hailo>=0:textproc/p5-Hailo \
p5-POE>=0:devel/p5-POE
p5-JSON>=0:converters/p5-JSON \
p5-POE>=0:devel/p5-POE \
p5-Try-Tiny>=0:lang/p5-Try-Tiny \
p5-libwww>=0:www/p5-libwww
USES= perl5
USE_PERL5= configure

View File

@ -1,2 +1,3 @@
SHA256 (POE-Component-Hailo-0.10.tar.gz) = 2fb1a36b2bf4ed1b055be0427be95fad441f5c9bbc42dbc0f216d01d3f558edc
SIZE (POE-Component-Hailo-0.10.tar.gz) = 12258
TIMESTAMP = 1547401630
SHA256 (POE-Component-Hailo-0.11.tar.gz) = 65e79a81afbabf00f31a36dfffb5d2303a30ae3b25d2d976dd0ef1b79f8400fa
SIZE (POE-Component-Hailo-0.11.tar.gz) = 12189

View File

@ -3,6 +3,7 @@
PORTNAME= Horde_Nls
PORTVERSION= 2.2.1
PORTREVISION= 1
CATEGORIES= devel www pear
MASTER_SITES= http://pear.horde.org/get/
@ -13,10 +14,4 @@ USES= horde
USE_HORDE_RUN= Horde_Translation \
Horde_Util
OPTIONS_DEFINE= GEOIP
GEOIP_DESC= Depend on geoip PHP extension
GEOIP_USES= php
GEOIP_RUN_DEPENDS= ${PHPBASE}/lib/php/${PHP_EXT_DIR}/geoip.so:net/pecl-geoip@${PHP_FLAVOR}
.include <bsd.port.mk>

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= PyExecJS
PORTVERSION= 1.4.0
DISTVERSION= 1.5.1
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@ -12,7 +12,7 @@ COMMENT= Run JavaScript code from Python
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= python zip
USES= python
USE_PYTHON= distutils autoplist
OPTIONS_GROUP= RUNTIME

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1495173948
SHA256 (PyExecJS-1.4.0.zip) = 31346cdf19d1e64840f0104f8be1c1231cb9ce3de9919828419814567cc2e691
SIZE (PyExecJS-1.4.0.zip) = 22179
TIMESTAMP = 1547405405
SHA256 (PyExecJS-1.5.1.tar.gz) = 34cc1d070976918183ff7bdc0ad71f8157a891c92708c00c5fbbff7a769f505c
SIZE (PyExecJS-1.5.1.tar.gz) = 13344

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= aniso8601
PORTVERSION= 4.0.1
PORTVERSION= 4.1.0
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1546544375
SHA256 (aniso8601-4.0.1.tar.gz) = e7560de91bf00baa712b2550a2fdebf0188c5fce2fcd1162fbac75c19bb29c95
SIZE (aniso8601-4.0.1.tar.gz) = 109849
TIMESTAMP = 1547399956
SHA256 (aniso8601-4.1.0.tar.gz) = 03c0ffeeb04edeca1ed59684cc6836dc377f58e52e315dc7be3af879909889f4
SIZE (aniso8601-4.1.0.tar.gz) = 39902

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