*/*: sync with upstream
Taken from: HardenedBSD
This commit is contained in:
parent
da576d7d3a
commit
7cc0d1896f
113 changed files with 2053 additions and 207 deletions
|
|
@ -3,4 +3,4 @@ a client-side library that implements a custom algorithm for
|
|||
extracting fingerprints from any audio source. Also included is
|
||||
fpcalc, a small utility for calculating AcoustID fingerprints.
|
||||
|
||||
WWW: http://acoustid.org/chromaprint
|
||||
WWW: https://acoustid.org/chromaprint
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= flacon
|
||||
PORTVERSION= 3.0.0
|
||||
PORTVERSION= 3.1.1
|
||||
DISTVERSIONPREFIX= v
|
||||
CATEGORIES= audio
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1497981519
|
||||
SHA256 (flacon-flacon-v3.0.0_GH0.tar.gz) = 5349fdc29c6cb173e7d40260e7ea4ba13ae39f4a144c22028fbfa132ceef5bb3
|
||||
SIZE (flacon-flacon-v3.0.0_GH0.tar.gz) = 430724
|
||||
TIMESTAMP = 1502219275
|
||||
SHA256 (flacon-flacon-v3.1.1_GH0.tar.gz) = ca5bd24ba61fc06a39e95b4b7fda188af437ad3eff666b55071895bde11bd15a
|
||||
SIZE (flacon-flacon-v3.1.1_GH0.tar.gz) = 431743
|
||||
|
|
|
|||
62
audio/flacon/files/patch-49e72de
Normal file
62
audio/flacon/files/patch-49e72de
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
diff --git a/formats/format.cpp b/formats/format.cpp
|
||||
index 53f7ed0..89abaf9 100644
|
||||
--- formats/format.cpp.orig
|
||||
+++ formats/format.cpp
|
||||
@@ -32,7 +32,14 @@
|
||||
#include <QByteArray>
|
||||
#include <QFile>
|
||||
|
||||
-AudioFormatList AudioFormat::mAllFormats;
|
||||
+/************************************************
|
||||
+ *
|
||||
+ ************************************************/
|
||||
+AudioFormatList &formatList()
|
||||
+{
|
||||
+ static AudioFormatList *afl = new AudioFormatList();
|
||||
+ return *afl;
|
||||
+}
|
||||
|
||||
|
||||
/************************************************
|
||||
@@ -43,9 +50,9 @@ bool AudioFormat::registerFormat(const AudioFormat &f)
|
||||
// Some formats can be embedded as a chunk of RIFF stream.
|
||||
// So the WAV format should be last and be checked in the last turn.
|
||||
if (f.ext() == "wav")
|
||||
- mAllFormats.append(&f);
|
||||
+ formatList().append(&f);
|
||||
else
|
||||
- mAllFormats.insert(0, &f);
|
||||
+ formatList().insert(0, &f);
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -71,7 +78,7 @@ AudioFormat::~AudioFormat()
|
||||
************************************************/
|
||||
const AudioFormatList &AudioFormat::allFormats()
|
||||
{
|
||||
- return mAllFormats;
|
||||
+ return formatList();
|
||||
}
|
||||
|
||||
|
||||
diff --git a/formats/format.h b/formats/format.h
|
||||
index b159b7a..0f9fcb6 100644
|
||||
--- formats/format.h.orig
|
||||
+++ formats/format.h
|
||||
@@ -70,8 +70,6 @@ class AudioFormat
|
||||
protected:
|
||||
virtual bool checkMagic(const QByteArray &data) const;
|
||||
|
||||
-private:
|
||||
- static QList<const AudioFormat*> mAllFormats;
|
||||
};
|
||||
|
||||
|
||||
@@ -79,6 +77,6 @@ class AudioFormat
|
||||
|
||||
#define REGISTER_FORMAT(FORMAT) \
|
||||
static FORMAT static_##FORMAT##_Instance; \
|
||||
- static bool is_##FORMAT##_loaded = AudioFormat::registerFormat(static_##FORMAT##_Instance);
|
||||
+ static bool is_##FORMAT##_loaded = AudioFormat::registerFormat(static_##FORMAT##_Instance);
|
||||
|
||||
#endif // FORMAT_H
|
||||
|
|
@ -2,9 +2,8 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= gqrx
|
||||
PORTVERSION= 2.6.1
|
||||
PORTVERSION= 2.7
|
||||
DISTVERSIONPREFIX= v
|
||||
PORTREVISION= 2
|
||||
PORTEPOCH= 1
|
||||
CATEGORIES= comms hamradio
|
||||
|
||||
|
|
@ -19,12 +18,9 @@ LIB_DEPENDS= libgnuradio-runtime.so:comms/gnuradio \
|
|||
libgnuradio-blocks.so:comms/gnuradio \
|
||||
libgnuradio-filter.so:comms/gnuradio \
|
||||
libgnuradio-fft.so:comms/gnuradio \
|
||||
libgnuradio-audio.so:comms/gnuradio \
|
||||
libgnuradio-digital.so:comms/gnuradio \
|
||||
libgnuradio-pmt.so:comms/gnuradio \
|
||||
libgnuradio-osmosdr.so:comms/gr-osmosdr \
|
||||
libpulse.so:audio/pulseaudio \
|
||||
libpulse-simple.so:audio/pulseaudio \
|
||||
libboost_system.so:devel/boost-libs \
|
||||
libboost_program_options.so:devel/boost-libs
|
||||
|
||||
|
|
@ -36,6 +32,19 @@ USES= pkgconfig qmake
|
|||
USE_GL= gl
|
||||
USE_QT5= buildtools_build core gui svg network widgets
|
||||
|
||||
OPTIONS_RADIO= AUDIO
|
||||
AUDIO_DESC= Audio backend
|
||||
OPTIONS_RADIO_AUDIO= PULSEAUDIO PORTAUDIO GRAUDIO
|
||||
OPTIONS_DEFAULT= AUDIO PULSEAUDIO
|
||||
PULSEAUDIO_LIB_DEPENDS= libpulse.so:audio/pulseaudio \
|
||||
libpulse-simple.so:audio/pulseaudio
|
||||
PULSEAUDIO_QMAKE_ON= AUDIO_BACKEND=pulseaudio
|
||||
PORTAUDIO_LIB_DEPENDS= libportaudio.so:audio/portaudio
|
||||
PORTAUDIO_QMAKE_ON= AUDIO_BACKEND=portaudio
|
||||
GRAUDIO_LIB_DEPENDS= libgnuradio-audio.so:comms/gnuradio
|
||||
GRAUDIO_QMAKE_ON= AUDIO_BACKEND=gr-audio
|
||||
GRAUDIO_DESC= GNU Radio audio library support
|
||||
|
||||
PLIST_FILES= bin/gqrx share/applications/gqrx.desktop
|
||||
|
||||
do-install:
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1487343674
|
||||
SHA256 (csete-gqrx-v2.6.1_GH0.tar.gz) = 2736a963dac4051ca8ae91a440ee6643ef7d26c9de5b9c83a369d5fc9328d453
|
||||
SIZE (csete-gqrx-v2.6.1_GH0.tar.gz) = 1196123
|
||||
TIMESTAMP = 1503401061
|
||||
SHA256 (csete-gqrx-v2.7_GH0.tar.gz) = b58d5b4ba4c656df5a97071640eabdbd53171d411fe3d504f9786178c3638178
|
||||
SIZE (csete-gqrx-v2.7_GH0.tar.gz) = 1326826
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= cego
|
||||
PORTVERSION= 2.35.1
|
||||
PORTVERSION= 2.35.2
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= http://www.lemke-it.com/
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1503594557
|
||||
SHA256 (cego-2.35.1.tar.gz) = 2ebd95b1a25ff08c58b1d3b221eeeb11e39f77a0ff806b459d34318d0d19139d
|
||||
SIZE (cego-2.35.1.tar.gz) = 1414127
|
||||
TIMESTAMP = 1503690202
|
||||
SHA256 (cego-2.35.2.tar.gz) = fe6521fdd91f1a41431f232817261ab55d957e244ccffe25969a4e85bbc2fee6
|
||||
SIZE (cego-2.35.2.tar.gz) = 1414149
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= influxdb
|
||||
PORTVERSION= 1.3.0
|
||||
PORTVERSION= 1.3.3
|
||||
DISTVERSIONPREFIX= v
|
||||
CATEGORIES= databases net-mgmt
|
||||
|
||||
|
|
@ -9,25 +9,16 @@ MAINTAINER= cheffo@freebsd-bg.org
|
|||
COMMENT= Open-source distributed time series database
|
||||
|
||||
LICENSE= MIT
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
ONLY_FOR_ARCHS= amd64 armv6 i386
|
||||
|
||||
BUILD_DEPENDS= go>=1.8.1:lang/go
|
||||
|
||||
OPTIONS_DEFINE= MANPAGES
|
||||
OPTIONS_DEFAULT= MANPAGES
|
||||
|
||||
MANPAGES_BUILD_DEPENDS= xmlto:textproc/xmlto \
|
||||
asciidoc:textproc/asciidoc \
|
||||
docbook-xml>0:textproc/docbook-xml
|
||||
MANPAGES_USES= gmake
|
||||
OPTIONS_SUB= yes
|
||||
|
||||
ONLY_FOR_ARCHS= i386 amd64 armv6
|
||||
|
||||
USE_RC_SUBR= influxd
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= influxdata:DEFAULT
|
||||
|
||||
GH_TUPLE= BurntSushi:toml:9906417:toml/src/github.com/BurntSushi/toml \
|
||||
bmizerany:pat:c068ca2:pat/src/github.com/bmizerany/pat \
|
||||
boltdb:bolt:4b1ebc1:bolt/src/github.com/boltdb/bolt \
|
||||
|
|
@ -50,7 +41,7 @@ GH_TUPLE= BurntSushi:toml:9906417:toml/src/github.com/BurntSushi/toml \
|
|||
golang:crypto:9477e0b:crypto/src/golang.org/x/crypto
|
||||
|
||||
SUB_FILES= influxd
|
||||
SUB_LIST+= INFLUXD_USER=${INFLUXD_USER} \
|
||||
SUB_LIST= INFLUXD_USER=${INFLUXD_USER} \
|
||||
INFLUXD_GROUP=${INFLUXD_GROUP} \
|
||||
INFLUXD_DBDIR=${INFLUXD_DBDIR} \
|
||||
INFLUXD_PIDDIR=${INFLUXD_PIDDIR} \
|
||||
|
|
@ -62,17 +53,24 @@ PLIST_SUB= INFLUXD_USER=${INFLUXD_USER} \
|
|||
INFLUXD_PIDDIR=${INFLUXD_PIDDIR} \
|
||||
INFLUXD_LOGDIR=${INFLUXD_LOGDIR}
|
||||
|
||||
INFLUXD_USER?= influxd
|
||||
INFLUXD_GROUP?= influxd
|
||||
|
||||
INFLUXD_DBDIR= /var/db/${PORTNAME}/
|
||||
INFLUXD_LOGDIR= /var/log/${PORTNAME}/
|
||||
INFLUXD_PIDDIR= /var/run/${PORTNAME}/
|
||||
INFLUXD_USER= influxd
|
||||
INFLUXD_GROUP= influxd
|
||||
|
||||
USERS= ${INFLUXD_USER}
|
||||
GROUPS= ${INFLUXD_GROUP}
|
||||
|
||||
STRIP= # stripping can break go binaries
|
||||
OPTIONS_DEFINE= MANPAGES
|
||||
OPTIONS_DEFAULT= MANPAGES
|
||||
OPTIONS_SUB= yes
|
||||
|
||||
MANPAGES_BUILD_DEPENDS= xmlto:textproc/xmlto \
|
||||
asciidoc:textproc/asciidoc \
|
||||
docbook-xml>0:textproc/docbook-xml
|
||||
MANPAGES_USES= gmake
|
||||
|
||||
INFLUXD_DBDIR= /var/db/${PORTNAME}/
|
||||
INFLUXD_LOGDIR= /var/log/${PORTNAME}/
|
||||
INFLUXD_PIDDIR= /var/run/${PORTNAME}/
|
||||
|
||||
post-patch:
|
||||
@${MKDIR} ${WRKSRC}/src/github.com/${GH_ACCOUNT_DEFAULT}/${PORTNAME}
|
||||
|
|
@ -83,7 +81,7 @@ post-patch:
|
|||
Dockerfile_build_ubuntu32 Dockerfile_build_ubuntu64 \
|
||||
Dockerfile_build_ubuntu64_git Dockerfile_test_ubuntu32 \
|
||||
errors.go etc gobuild.sh Godeps importer influxdb.go influxql \
|
||||
internal LICENSE LICENSE_OF_DEPENDENCIES.md Makefile man models \
|
||||
internal LICENSE_OF_DEPENDENCIES.md Makefile man models \
|
||||
monitor nightly.sh node.go pkg QUERIES.md README.md \
|
||||
scripts services stress tcp test.sh tests TODO.md toml tsdb uuid \
|
||||
${WRKSRC}/src/github.com/${GH_ACCOUNT_DEFAULT}/${PORTNAME}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
TIMESTAMP = 1499164867
|
||||
SHA256 (influxdata-influxdb-v1.3.0_GH0.tar.gz) = dc4d90ba69581122e74a9a6a4486840668f1ac9352f546895b1e3467d69b02e7
|
||||
SIZE (influxdata-influxdb-v1.3.0_GH0.tar.gz) = 1067205
|
||||
TIMESTAMP = 1502885041
|
||||
SHA256 (influxdata-influxdb-v1.3.3_GH0.tar.gz) = 4efe9e1fec6fc618d532107001743fbce14da29e87eb3446995a78d2a512dfb4
|
||||
SIZE (influxdata-influxdb-v1.3.3_GH0.tar.gz) = 1075167
|
||||
SHA256 (BurntSushi-toml-9906417_GH0.tar.gz) = a980407edcf8275d58651f9af3c74dc802f0aaf702936c78b36059289421de8c
|
||||
SIZE (BurntSushi-toml-9906417_GH0.tar.gz) = 39914
|
||||
SHA256 (bmizerany-pat-c068ca2_GH0.tar.gz) = 1bff463e4313717c5561a97020e5b6ae8095560fa834aa565c488b85b5549433
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
PORTNAME= carbon
|
||||
PORTVERSION= 0.9.15
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= databases python
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
|
|
@ -11,14 +11,16 @@ MAINTAINER= swills@FreeBSD.org
|
|||
COMMENT= Backend storage application for graphite
|
||||
|
||||
LICENSE= APACHE20
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}txamqp>=0.3:net/py-txamqp \
|
||||
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}twisted>=0:devel/py-twisted \
|
||||
${PYTHON_PKGNAMEPREFIX}txamqp>=0.3:net/py-txamqp \
|
||||
${PYTHON_PKGNAMEPREFIX}whisper>=0.9.10:databases/py-whisper \
|
||||
${PYTHON_PKGNAMEPREFIX}django18>=1.4:www/py-django18
|
||||
|
||||
NO_ARCH= yes
|
||||
USE_PYTHON= distutils
|
||||
USES= python:2 twisted:run
|
||||
USES= python:2.7
|
||||
USE_RC_SUBR= carbon
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= graphite-project
|
||||
|
|
|
|||
|
|
@ -2,8 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= calibre
|
||||
PORTVERSION= 3.6.0
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 3.7.0
|
||||
CATEGORIES= deskutils python
|
||||
MASTER_SITES= http://download.calibre-ebook.com/${PORTVERSION}/
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1501834770
|
||||
SHA256 (calibre-3.6.0.tar.xz) = 4c13463764ac9dd4955daf1e6e9b11ed8d040e0eece6003564ab974574b3e26e
|
||||
SIZE (calibre-3.6.0.tar.xz) = 36421368
|
||||
TIMESTAMP = 1503646501
|
||||
SHA256 (calibre-3.7.0.tar.xz) = ea03815bafe3fce8ac3aeda06c7d2b94add4a9b0017fcd7e2b17e0107a8f60f1
|
||||
SIZE (calibre-3.7.0.tar.xz) = 36636488
|
||||
|
|
|
|||
|
|
@ -1364,6 +1364,7 @@ lib/calibre/calibre/utils/test_lock.py
|
|||
lib/calibre/calibre/utils/text2int.py
|
||||
lib/calibre/calibre/utils/threadpool.py
|
||||
lib/calibre/calibre/utils/titlecase.py
|
||||
lib/calibre/calibre/utils/unicode_getpass.py
|
||||
lib/calibre/calibre/utils/unrar.py
|
||||
lib/calibre/calibre/utils/unsmarten.py
|
||||
lib/calibre/calibre/utils/winreg/__init__.py
|
||||
|
|
@ -1741,6 +1742,7 @@ lib/calibre/tinycss/version.py
|
|||
%%DATADIR%%/localization/pykakasi/kanadict2.pickle
|
||||
%%DATADIR%%/localization/pykakasi/kanwadict2.pickle
|
||||
%%DATADIR%%/localization/stats.pickle
|
||||
%%DATADIR%%/localization/website-languages.txt
|
||||
%%DATADIR%%/metadata_sqlite.sql
|
||||
%%DATADIR%%/mime.types
|
||||
%%DATADIR%%/mozilla-ca-certs.pem
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= pycharm-ce
|
||||
PORTVERSION= 2017.2.1
|
||||
PORTVERSION= 2017.2.2
|
||||
CATEGORIES= devel java python
|
||||
MASTER_SITES= https://download.jetbrains.com/python/ \
|
||||
http://download.jetbrains.com/python/
|
||||
|
|
@ -16,10 +16,10 @@ LICENSE= APACHE20
|
|||
RUN_DEPENDS= intellij-fsnotifier>0:java/intellij-fsnotifier \
|
||||
intellij-pty4j>0:java/intellij-pty4j
|
||||
|
||||
USE_JAVA= yes
|
||||
JAVA_VERSION= 1.7+
|
||||
USES= python:run shebangfix
|
||||
SHEBANG_FILES= bin/printenv.py bin/restart.py
|
||||
USE_JAVA= yes
|
||||
JAVA_VERSION= 1.7+
|
||||
|
||||
NO_ARCH= yes
|
||||
NO_BUILD= yes
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1502575841
|
||||
SHA256 (pycharm-community-2017.2.1.tar.gz) = 4a7e5ab8c89be6ac3b6da649003260d1ed86b1dd41b7e9aa1d3873cacd7d6bd1
|
||||
SIZE (pycharm-community-2017.2.1.tar.gz) = 200410040
|
||||
TIMESTAMP = 1503651598
|
||||
SHA256 (pycharm-community-2017.2.2.tar.gz) = 4eacc9bf512406bebf71546ccb4b6c14ea8e06748fd76be6ca409ea1955e1f53
|
||||
SIZE (pycharm-community-2017.2.2.tar.gz) = 200453221
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= aws-sdk-core
|
||||
PORTVERSION= 2.10.32
|
||||
PORTVERSION= 2.10.33
|
||||
CATEGORIES= devel rubygems
|
||||
MASTER_SITES= RG
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1503577386
|
||||
SHA256 (rubygem/aws-sdk-core-2.10.32.gem) = e4579171d8f389fc9616a10b760a6cd147014a25ef5d91ffbc572555063de26c
|
||||
SIZE (rubygem/aws-sdk-core-2.10.32.gem) = 1061888
|
||||
TIMESTAMP = 1503663018
|
||||
SHA256 (rubygem/aws-sdk-core-2.10.33.gem) = a70733c1069a8f977a14df9e043ca9bd6ea51cd70da0313510142b288f37e76e
|
||||
SIZE (rubygem/aws-sdk-core-2.10.33.gem) = 1061888
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= aws-sdk-resources
|
||||
PORTVERSION= 2.10.32
|
||||
PORTVERSION= 2.10.33
|
||||
CATEGORIES= devel rubygems
|
||||
MASTER_SITES= RG
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1503577392
|
||||
SHA256 (rubygem/aws-sdk-resources-2.10.32.gem) = 4b98c1163c2c0b1187e94725b5e0c928efb0ba9f05eb264fd58037a8eb25c8b6
|
||||
SIZE (rubygem/aws-sdk-resources-2.10.32.gem) = 48640
|
||||
TIMESTAMP = 1503663052
|
||||
SHA256 (rubygem/aws-sdk-resources-2.10.33.gem) = 0b46d25b357d732f1eb421e3cc1f4d2681070ab0ab08b7e31502d49dda23cea0
|
||||
SIZE (rubygem/aws-sdk-resources-2.10.33.gem) = 48640
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= aws-sdk
|
||||
PORTVERSION= 2.10.32
|
||||
PORTVERSION= 2.10.33
|
||||
CATEGORIES= devel rubygems
|
||||
MASTER_SITES= RG
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1503577397
|
||||
SHA256 (rubygem/aws-sdk-2.10.32.gem) = 9c8db5744939cbb491e4c29d70189d74de060ba0a0df64376f3c7564ead98d70
|
||||
SIZE (rubygem/aws-sdk-2.10.32.gem) = 4608
|
||||
TIMESTAMP = 1503663035
|
||||
SHA256 (rubygem/aws-sdk-2.10.33.gem) = 23e653e09ee26c4026432156473501900b6ea2727cf6a122b91f7e406e4ceb6b
|
||||
SIZE (rubygem/aws-sdk-2.10.33.gem) = 4608
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= dynflow
|
||||
PORTVERSION= 0.8.27
|
||||
PORTVERSION= 0.8.28
|
||||
CATEGORIES= devel rubygems
|
||||
MASTER_SITES= RG
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1503492221
|
||||
SHA256 (rubygem/dynflow-0.8.27.gem) = b0ccffba54c98ced300b3da4756654fe6ac523ac56b89969515ff9b88b60b62d
|
||||
SIZE (rubygem/dynflow-0.8.27.gem) = 940544
|
||||
TIMESTAMP = 1503678475
|
||||
SHA256 (rubygem/dynflow-0.8.28.gem) = 67c7134d4d5261bf56e19b2b47b959fe37d0a6cc0db8b50ccca2cc4f4fce3893
|
||||
SIZE (rubygem/dynflow-0.8.28.gem) = 940544
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= jasmine-core
|
||||
PORTVERSION= 2.7.0
|
||||
PORTVERSION= 2.8.0
|
||||
CATEGORIES= devel ruby
|
||||
MASTER_SITES= RG
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1501325087
|
||||
SHA256 (rubygem/jasmine-core-2.7.0.gem) = c93b3e20366b93c2b29e625e6cc4ad1c47789ccb499eaf12e0033e0ef675ebde
|
||||
SIZE (rubygem/jasmine-core-2.7.0.gem) = 114688
|
||||
TIMESTAMP = 1503678480
|
||||
SHA256 (rubygem/jasmine-core-2.8.0.gem) = e148f4b054a2265ed80746b0ab0dcb2c5554d7a100171f460f404848c041f3a4
|
||||
SIZE (rubygem/jasmine-core-2.8.0.gem) = 118272
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= mocha
|
||||
PORTVERSION= 1.2.1
|
||||
PORTVERSION= 1.3.0
|
||||
CATEGORIES= devel rubygems
|
||||
MASTER_SITES= RG
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1486790039
|
||||
SHA256 (rubygem/mocha-1.2.1.gem) = 7de99b005aa41dc46841442afe468451a145f2c6d9b10fac0c23f0d911bef50d
|
||||
SIZE (rubygem/mocha-1.2.1.gem) = 90624
|
||||
TIMESTAMP = 1503678487
|
||||
SHA256 (rubygem/mocha-1.3.0.gem) = 22f247ad94e92cef32baac2e671d1d7262f165dc933ead1940cf874c3d1fc25e
|
||||
SIZE (rubygem/mocha-1.3.0.gem) = 92160
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= pywdns
|
||||
PORTVERSION= 0.8.0
|
||||
PORTVERSION= 0.9.0
|
||||
CATEGORIES= dns python
|
||||
MASTER_SITES= FARSIGHT LOCAL/truckman/farsight
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
@ -14,8 +14,8 @@ LICENSE_FILE= ${WRKSRC}/COPYRIGHT
|
|||
|
||||
LIB_DEPENDS= libwdns.so:dns/wdns
|
||||
|
||||
USE_PYTHON= autoplist distutils
|
||||
USES= pkgconfig python
|
||||
USE_PYTHON= autoplist distutils
|
||||
|
||||
post-patch:
|
||||
${REINPLACE_CMD} -e "1s+ python+ ${PYTHON_CMD}+" ${WRKSRC}/gen_pywdns_constants
|
||||
|
|
|
|||
|
|
@ -1,2 +1,3 @@
|
|||
SHA256 (pywdns-0.8.0.tar.gz) = f60c50e01738799465bd7569df9f81f52e5f6fe3a2be568a04acbdba72575699
|
||||
SIZE (pywdns-0.8.0.tar.gz) = 66105
|
||||
TIMESTAMP = 1503710919
|
||||
SHA256 (pywdns-0.9.0.tar.gz) = 2489c69b88753d6c9124fd26ca82aeab6cb45a299b4fbcb264277e0e4d2574b3
|
||||
SIZE (pywdns-0.9.0.tar.gz) = 69904
|
||||
|
|
|
|||
|
|
@ -14,6 +14,9 @@ COMMENT= Ruby domain name parser based on the Public Suffix List
|
|||
LICENSE= MIT
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
||||
|
||||
DEPRECATED= Use dns/rubygem-public_suffix instead
|
||||
EXPIRATION_DATE=2017-09-30
|
||||
|
||||
PATCH_DEPENDS= public_suffix_list>=0:dns/public_suffix_list
|
||||
|
||||
PORTSCOUT= limit:^2\.
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= qemu
|
||||
PORTVERSION= 2.9.50.g20170721
|
||||
PORTVERSION= 2.9.94.g20170825
|
||||
CATEGORIES= emulators
|
||||
MASTER_SITES= GH
|
||||
PKGNAMESUFFIX?= -sbruno
|
||||
|
|
@ -16,7 +16,7 @@ LICENSE= GPLv2
|
|||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= seanbruno
|
||||
GH_PROJECT= ${PORTNAME}-bsd-user
|
||||
GH_TAGNAME= 17977d0
|
||||
GH_TAGNAME= 2dbc44a
|
||||
HAS_CONFIGURE= yes
|
||||
USES= gmake pkgconfig bison perl5 python:2,build
|
||||
USE_PERL5= build
|
||||
|
|
@ -302,7 +302,6 @@ post-install:
|
|||
${INSTALL_SCRIPT} ${FILESDIR}/qemu-ifup.sample ${STAGEDIR}${PREFIX}/etc
|
||||
${INSTALL_SCRIPT} ${FILESDIR}/qemu-ifdown.sample ${STAGEDIR}${PREFIX}/etc
|
||||
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/qemu-*
|
||||
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/ivshmem-*
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1500667034
|
||||
SHA256 (qemu/2.9.50.g20170721/seanbruno-qemu-bsd-user-2.9.50.g20170721-17977d0_GH0.tar.gz) = 4c637b3db30a002e51a676787304c8fdaca0321678d4386210491964b6727ad3
|
||||
SIZE (qemu/2.9.50.g20170721/seanbruno-qemu-bsd-user-2.9.50.g20170721-17977d0_GH0.tar.gz) = 14562658
|
||||
TIMESTAMP = 1503667589
|
||||
SHA256 (qemu/2.9.94.g20170825/seanbruno-qemu-bsd-user-2.9.94.g20170825-2dbc44a_GH0.tar.gz) = 3fc2f3532a0e4c809c9a070f0616a46ab3110c2829f3271012c1ecd19f4741a2
|
||||
SIZE (qemu/2.9.94.g20170825/seanbruno-qemu-bsd-user-2.9.94.g20170825-2dbc44a_GH0.tar.gz) = 14636493
|
||||
|
|
|
|||
|
|
@ -54,6 +54,16 @@ list_cmd="${BINMISCCTL} list"
|
|||
else
|
||||
echo "$0: interpreter ${interpreter} not found, cannot register."
|
||||
fi
|
||||
# register armv7 interpreter styled 'arm'
|
||||
interpreter=${QEMU_DIR}/${QEMU_PREFIX}arm${QEMU_SUFFIX}
|
||||
if [ -x "${interpreter}" ]; then
|
||||
${BINMISCCTL} add armv7 --interpreter "${interpreter}" \
|
||||
--magic "\x7f\x45\x4c\x46\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x28\x00" \
|
||||
--mask "\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff" \
|
||||
--size 20 --set-enabled
|
||||
else
|
||||
echo "$0: interpreter ${interpreter} not found, cannot register."
|
||||
fi
|
||||
# register aarch64 interpreter styled 'aarch64'
|
||||
interpreter=${QEMU_DIR}/${QEMU_PREFIX}aarch64${QEMU_SUFFIX}
|
||||
if [ -x "${interpreter}" ]; then
|
||||
|
|
|
|||
|
|
@ -1,5 +1,3 @@
|
|||
%%SOFTMMU%%bin/ivshmem-client
|
||||
%%SOFTMMU%%bin/ivshmem-server
|
||||
%%SOFTMMU%%bin/qemu-ga
|
||||
%%SOFTMMU%%bin/qemu-img
|
||||
%%SOFTMMU%%bin/qemu-io
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= winetricks
|
||||
PORTVERSION= 20170614
|
||||
PORTVERSION= 20170823
|
||||
CATEGORIES= emulators
|
||||
|
||||
MAINTAINER= lifanov@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1497878029
|
||||
SHA256 (Winetricks-winetricks-20170614_GH0.tar.gz) = c31a51b006511b0ee47c662ef0ef98dd77c6ae410b083927c27674200974d173
|
||||
SIZE (Winetricks-winetricks-20170614_GH0.tar.gz) = 637249
|
||||
TIMESTAMP = 1503668944
|
||||
SHA256 (Winetricks-winetricks-20170823_GH0.tar.gz) = 0e7e007b0dd39f773213a5540e7c44e4105d9435ef067c0efdcc6fda70c029de
|
||||
SIZE (Winetricks-winetricks-20170823_GH0.tar.gz) = 639027
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= erlang
|
||||
PORTVERSION= 20.0.3
|
||||
PORTVERSION= 20.0.4
|
||||
CATEGORIES= lang parallel java
|
||||
MASTER_SITES= http://www.erlang.org/download/:erlangorg \
|
||||
http://erlang.stacken.kth.se/download/:erlangorg \
|
||||
|
|
@ -16,7 +16,8 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
|
|||
|
||||
PATCH_SITES= http://olgeni.olgeni.com/~olgeni/distfiles/ \
|
||||
LOCAL/olgeni
|
||||
PATCHFILES= patch-otp-20.0.1 patch-otp-20.0.2 patch-otp-20.0.3
|
||||
PATCHFILES= patch-otp-20.0.1 patch-otp-20.0.2 patch-otp-20.0.3 \
|
||||
patch-otp-20.0.4
|
||||
|
||||
MAINTAINER= olgeni@FreeBSD.org
|
||||
COMMENT= Functional programming language from Ericsson
|
||||
|
|
@ -213,7 +214,7 @@ post-install:
|
|||
-C ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}
|
||||
|
||||
${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/erts-9.0/* \
|
||||
${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/erts-9.0.3
|
||||
${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/erts-9.0.4
|
||||
${RMDIR} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/erts-9.0
|
||||
|
||||
${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/common_test-1.15/* \
|
||||
|
|
@ -248,6 +249,10 @@ post-install:
|
|||
${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/ssh-4.5.1
|
||||
${RMDIR} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/ssh-4.5
|
||||
|
||||
${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/dialyzer-3.2/* \
|
||||
${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/dialyzer-3.2.1
|
||||
${RMDIR} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/dialyzer-3.2
|
||||
|
||||
${INSTALL_DATA} ${WRKSRC}/lib/dialyzer/doc/*.txt \
|
||||
${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/dialyzer-*/doc/
|
||||
.endif
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
TIMESTAMP = 1503566598
|
||||
TIMESTAMP = 1503666994
|
||||
SHA256 (erlang/otp_src_20.0.tar.gz) = fe80e1e14a2772901be717694bb30ac4e9a07eee0cc7a28988724cbd21476811
|
||||
SIZE (erlang/otp_src_20.0.tar.gz) = 87346046
|
||||
SHA256 (erlang/otp_doc_man_20.0.tar.gz) = b7f1542a94a170f8791f5d80a85706f9e8838924ea65d4301032d0c0cfb845cc
|
||||
|
|
@ -11,3 +11,5 @@ SHA256 (erlang/patch-otp-20.0.2) = 72760a1b9a59525da598e5b6c64cb1d2274c9bbfde9a0
|
|||
SIZE (erlang/patch-otp-20.0.2) = 18793
|
||||
SHA256 (erlang/patch-otp-20.0.3) = a408de98cd1b6ef17c36f8f02dc041174247ec3f23d306ff305c7fe09fe4d920
|
||||
SIZE (erlang/patch-otp-20.0.3) = 20331
|
||||
SHA256 (erlang/patch-otp-20.0.4) = 83c49fd220cee4d65db37bbb19f79c5814e8668882fbe6772a2ec6fe87b0f00d
|
||||
SIZE (erlang/patch-otp-20.0.4) = 8765
|
||||
|
|
|
|||
|
|
@ -643,6 +643,7 @@
|
|||
SUBDIR += slapd-cyrus
|
||||
SUBDIR += sma
|
||||
SUBDIR += smfsav
|
||||
SUBDIR += smfsav-devel
|
||||
SUBDIR += smtp-cli
|
||||
SUBDIR += smtp-gated
|
||||
SUBDIR += smtpfeed
|
||||
|
|
|
|||
52
mail/smfsav-devel/Makefile
Normal file
52
mail/smfsav-devel/Makefile
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
# Created by: Anton Lysenok <bart@tapolsky.net.ua>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= smfsav
|
||||
PORTVERSION= 2.1
|
||||
CATEGORIES= mail
|
||||
MASTER_SITES= http://smf-sav.anw.at/
|
||||
PKGNAMESUFFIX= -devel
|
||||
DISTNAME= smf-sav-reloaded-${PORTVERSION}
|
||||
|
||||
MAINTAINER= sasaki@fcc.ad.jp
|
||||
COMMENT= Sendmail Sender Address Validator
|
||||
|
||||
LICENSE= GPLv2+
|
||||
LICENSE_FILE= ${WRKSRC}/COPYING
|
||||
|
||||
USERS= smfs
|
||||
GROUPS= smfs
|
||||
|
||||
OPTIONS_DEFINE= DOCS
|
||||
|
||||
USE_RC_SUBR= smfsav
|
||||
|
||||
CPPFLAGS+= -D_REENTRANT
|
||||
LDFLAGS+= -lmilter -lpthread
|
||||
|
||||
SMFSAV_RUN_DIR?=/var/run/smfs
|
||||
PLIST_SUB= SMFSAV_RUN_DIR=${SMFSAV_RUN_DIR}
|
||||
SUB_FILES+= pkg-message
|
||||
SUB_LIST= ${PLIST_SUB}
|
||||
|
||||
CONFLICTS= smfsav
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
.include "${PORTSDIR}/mail/sendmail/bsd.milter.mk"
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/readme
|
||||
@${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/smf-sav.c
|
||||
@${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/smf-sav.conf
|
||||
|
||||
do-build:
|
||||
cd ${WRKSRC} && ${CC} ${CFLAGS} ${CPPFLAGS} -o smf-sav smf-sav.c ${LDFLAGS}
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/smf-sav ${STAGEDIR}${PREFIX}/sbin
|
||||
${INSTALL_DATA} ${WRKSRC}/smf-sav.conf ${STAGEDIR}${PREFIX}/etc/smf-sav.conf.sample
|
||||
@${MKDIR} ${STAGEDIR}${SMFSAV_RUN_DIR}
|
||||
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
||||
cd ${WRKSRC} && ${INSTALL_DATA} ChangeLog readme ${STAGEDIR}${DOCSDIR}
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
3
mail/smfsav-devel/distinfo
Normal file
3
mail/smfsav-devel/distinfo
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1503277712
|
||||
SHA256 (smf-sav-reloaded-2.1.tar.gz) = 3e3fd5deed7ea30204b8ed1be0bba7da8bd0b5af055aa72e9094e2a6b5891760
|
||||
SIZE (smf-sav-reloaded-2.1.tar.gz) = 23356
|
||||
25
mail/smfsav-devel/files/patch-readme
Normal file
25
mail/smfsav-devel/files/patch-readme
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
--- readme.orig 2012-04-08 16:07:48 UTC
|
||||
+++ readme
|
||||
@@ -50,18 +50,18 @@ Under FreeBSD the BIND v8 is required (p
|
||||
make
|
||||
make install
|
||||
|
||||
- Inspect and edit the /etc/mail/smfs/smf-sav.conf file.
|
||||
+ Inspect and edit the %%PREFIX%%/etc/smf-sav.conf file.
|
||||
|
||||
-/usr/local/sbin/smf-sav
|
||||
+%%PREFIX%%/sbin/smf-sav
|
||||
or
|
||||
-/usr/local/sbin/smf-sav -c /etc/mail/smfs/smf-sav.conf
|
||||
+%%PREFIX%%/sbin/smf-sav -c %%PREFIX%%/etc/smf-sav.conf
|
||||
|
||||
Add this milter to start-up scripts before starting a Sendmail daemon.
|
||||
Look at the contributed samples of start-up scripts.
|
||||
|
||||
Add these lines to your Sendmail configuration file (usually sendmail.mc):
|
||||
define(`confMILTER_MACROS_HELO', confMILTER_MACROS_HELO`, {verify}')dnl
|
||||
-INPUT_MAIL_FILTER(`smf-sav', `S=unix:/var/run/smfs/smf-sav.sock, T=S:30s;R:4m')dnl
|
||||
+INPUT_MAIL_FILTER(`smf-sav', `S=unix:%%SMFSAV_RUN_DIR%%/smf-sav.sock, T=S:30s;R:4m')dnl
|
||||
|
||||
IMPORTANT: make sure that /var/run is not a group writable directory! If so,
|
||||
or chmod 755 /var/run, or if it's impossible switch to another directory.
|
||||
53
mail/smfsav-devel/files/patch-smf-sav.c
Normal file
53
mail/smfsav-devel/files/patch-smf-sav.c
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
--- smf-sav.c.orig 2013-05-25 11:48:52 UTC
|
||||
+++ smf-sav.c
|
||||
@@ -20,11 +20,7 @@
|
||||
#endif
|
||||
|
||||
#include <arpa/inet.h>
|
||||
-#if __linux__ || __sun__
|
||||
#include <arpa/nameser.h>
|
||||
-#else
|
||||
-#include <bind/arpa/nameser.h>
|
||||
-#endif
|
||||
#include <ctype.h>
|
||||
#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
@@ -33,20 +29,12 @@
|
||||
#endif
|
||||
#include <grp.h>
|
||||
#include <libmilter/mfapi.h>
|
||||
-#if __linux__ || __sun__
|
||||
#include <netdb.h>
|
||||
-#else
|
||||
-#include <bind/netdb.h>
|
||||
-#endif
|
||||
#include <netinet/in.h>
|
||||
#include <pthread.h>
|
||||
#include <pwd.h>
|
||||
#include <regex.h>
|
||||
-#if __linux__ || __sun__
|
||||
#include <resolv.h>
|
||||
-#else
|
||||
-#include <bind/resolv.h>
|
||||
-#endif
|
||||
#include <signal.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
@@ -68,7 +56,7 @@
|
||||
#define hash_size(x) ((unsigned long) 1 << x)
|
||||
#define hash_mask(x) (hash_size(x) - 1)
|
||||
|
||||
-#define CONFIG_FILE "/etc/mail/smfs/smf-sav.conf"
|
||||
+#define CONFIG_FILE "%%PREFIX%%/etc/smf-sav.conf"
|
||||
#define PUBLIC_NAME "yourhost.yourdomain.tld"
|
||||
#define SAFE_CALLBACK "postmaster@yourdomain.tld"
|
||||
#define SYSLOG_FACILITY LOG_MAIL
|
||||
@@ -81,7 +69,7 @@
|
||||
#define TO_PASS_TTL 3600
|
||||
#define TO_TEMPFAIL_TTL 300
|
||||
#define TO_FAIL_TTL 3600
|
||||
-#define WORK_SPACE "/var/run/smfs"
|
||||
+#define WORK_SPACE "%%SMFSAV_RUN_DIR%%"
|
||||
#define OCONN "unix:" WORK_SPACE "/smf-sav.sock"
|
||||
#define USER "smfs"
|
||||
|
||||
20
mail/smfsav-devel/files/patch-smf-sav.conf
Normal file
20
mail/smfsav-devel/files/patch-smf-sav.conf
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
--- smf-sav.conf.orig 2012-04-08 17:04:38 UTC
|
||||
+++ smf-sav.conf
|
||||
@@ -1,4 +1,4 @@
|
||||
-# /etc/mail/smfs/smf-sav.conf
|
||||
+# %%PREFIX%%/etc/smf-sav.conf
|
||||
#
|
||||
# smf-sav configuration file v2.0
|
||||
# pre initialisised with useful values
|
||||
@@ -173,9 +173,9 @@ ToFailTTL 10h # recipients that did not
|
||||
|
||||
# Socket used to communicate with a Sendmail daemon
|
||||
#
|
||||
-# Default: unix:/var/run/smfs/smf-sav.sock
|
||||
+# Default: unix:%%SMFSAV_RUN_DIR%%/smf-sav.sock
|
||||
#
|
||||
-Socket unix:/var/run/smfs/smf-sav.sock
|
||||
+Socket unix:%%SMFSAV_RUN_DIR%%/smf-sav.sock
|
||||
|
||||
# Facility for logging via a Syslog daemon
|
||||
#
|
||||
9
mail/smfsav-devel/files/pkg-message.in
Normal file
9
mail/smfsav-devel/files/pkg-message.in
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
=====================================================================================
|
||||
1. Inspect and edit the %%PREFIX%%/etc/smfsav.conf file
|
||||
2. Add these lines to your Sendmail configuration file (usually sendmail.mc):
|
||||
define(`confMILTER_MACROS_HELO', confMILTER_MACROS_HELO`, {verify}')dnl
|
||||
INPUT_MAIL_FILTER(`smf-sav', `S=unix:%%SMFSAV_RUN_DIR%%/smf-sav.sock, T=S:30s;R:4m')dnl
|
||||
3. Put line smfsav_enable="YES" to /etc/rc.conf file
|
||||
4. Run `service smfsav start`
|
||||
=====================================================================================
|
||||
27
mail/smfsav-devel/files/smfsav.in
Normal file
27
mail/smfsav-devel/files/smfsav.in
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
#!/bin/sh
|
||||
|
||||
# PROVIDE: smfsav
|
||||
# REQUIRE: NETWORKING
|
||||
# BEFORE: sendmail
|
||||
|
||||
# Written for FreeBSD.
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
# Copy this file into /usr/local/etc/rc.d as /usr/local/etc/rc.d/smfsav
|
||||
# Add this line to /etc/rc.conf:
|
||||
#
|
||||
# smfsav_enable="YES"
|
||||
|
||||
. /etc/rc.subr
|
||||
|
||||
name="smfsav"
|
||||
rcvar=smfsav_enable
|
||||
|
||||
load_rc_config ${name}
|
||||
|
||||
required_files=${smfsav_config:="%%PREFIX%%/etc/smf-sav.conf"}
|
||||
command="%%PREFIX%%/sbin/smf-sav"
|
||||
command_args="-c ${required_files}"
|
||||
|
||||
run_rc_command "$1"
|
||||
15
mail/smfsav-devel/pkg-descr
Normal file
15
mail/smfsav-devel/pkg-descr
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
It's a lightweight, fast and reliable Sendmail milter that implements
|
||||
a real-time Sender e-Mail Address Verification technology. This technology
|
||||
can stop some kinds of SPAM with a spoofed sender's e-Mail address.
|
||||
Also it implements a real-time Recipient e-Mail Address Verification
|
||||
technology. It can be useful if your machine is a backup MX for the recipient's
|
||||
domains or if your machine forwards all e-Mail messages as a relay host for your
|
||||
domains to another internal or external e-Mail servers.
|
||||
It's a lite alternative for the spamilter, milter-sender and milter-ahead
|
||||
milters.
|
||||
|
||||
This is a fork of smf-sav which was originally written by Eugene Kurmanin.
|
||||
It is a "reloaded" version with heavy bugfixes maintained by Gabriele
|
||||
Maria Plutzar.
|
||||
|
||||
WWW: http://smf-sav.anw.at/
|
||||
5
mail/smfsav-devel/pkg-plist
Normal file
5
mail/smfsav-devel/pkg-plist
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
sbin/smf-sav
|
||||
@sample etc/smf-sav.conf.sample
|
||||
%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
|
||||
%%PORTDOCS%%%%DOCSDIR%%/readme
|
||||
@dir(smfs,smfs,700) %%SMFSAV_RUN_DIR%%
|
||||
|
|
@ -29,6 +29,8 @@ SMFSAV_RUN_DIR?=/var/run/smfs
|
|||
PLIST_SUB= SMFSAV_RUN_DIR=${SMFSAV_RUN_DIR}
|
||||
SUB_FILES+= pkg-message
|
||||
|
||||
CONFLICTS= smfsav-devel
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
.include "${PORTSDIR}/mail/sendmail/bsd.milter.mk"
|
||||
|
||||
|
|
|
|||
|
|
@ -2,8 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= octave-forge-dataframe
|
||||
PORTVERSION= 1.1.0
|
||||
PORTREVISION= 3
|
||||
PORTVERSION= 1.2.0
|
||||
CATEGORIES= math
|
||||
|
||||
MAINTAINER= stephen@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,2 +1,3 @@
|
|||
SHA256 (octave-forge/dataframe-1.1.0.tar.gz) = c13d2440c491da66f642d6804e3dc64ecf27eaa58f4698b353e4ae341286355a
|
||||
SIZE (octave-forge/dataframe-1.1.0.tar.gz) = 59799
|
||||
TIMESTAMP = 1503708427
|
||||
SHA256 (octave-forge/dataframe-1.2.0.tar.gz) = 5d36b296b3854f3d7ccb8c59037ca9952c24ef3f1ba7dd776967cd4710505981
|
||||
SIZE (octave-forge/dataframe-1.2.0.tar.gz) = 72650
|
||||
|
|
|
|||
|
|
@ -2,8 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= openblas
|
||||
PORTVERSION= 0.2.19
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 0.2.20
|
||||
DISTVERSIONPREFIX= v
|
||||
PORTEPOCH= 1
|
||||
CATEGORIES= math
|
||||
|
|
@ -17,13 +16,14 @@ COMMENT= Optimized BLAS library based on GotoBLAS2
|
|||
LICENSE= BSD3CLAUSE
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
USES= fortran gmake perl5
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= xianyi
|
||||
GH_PROJECT= OpenBLAS
|
||||
LARGE_FILE= large.tgz
|
||||
TIMING_FILE= timing.tgz
|
||||
|
||||
USES= fortran gmake perl5
|
||||
USE_LDCONFIG= yes
|
||||
USE_PERL5= build
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
TIMESTAMP = 1483295026
|
||||
TIMESTAMP = 1503123719
|
||||
SHA256 (openblas/large.tgz) = f328d88b7fa97722f271d7d0cfea1c220e0f8e5ed5ff01d8ef1eb51d6f4243a1
|
||||
SIZE (openblas/large.tgz) = 2595
|
||||
SHA256 (openblas/timing.tgz) = 999c65f8ea8bd4eac7f1c7f3463d4946917afd20a997807300fe35d70122f3af
|
||||
SIZE (openblas/timing.tgz) = 1059485
|
||||
SHA256 (openblas/xianyi-OpenBLAS-v0.2.19_GH0.tar.gz) = 9c40b5e4970f27c5f6911cb0a28aa26b6c83f17418b69f8e5a116bb983ca8557
|
||||
SIZE (openblas/xianyi-OpenBLAS-v0.2.19_GH0.tar.gz) = 10834034
|
||||
SHA256 (openblas/xianyi-OpenBLAS-v0.2.20_GH0.tar.gz) = 5ef38b15d9c652985774869efd548b8e3e972e1e99475c673b25537ed7bcf394
|
||||
SIZE (openblas/xianyi-OpenBLAS-v0.2.20_GH0.tar.gz) = 11637301
|
||||
|
|
|
|||
|
|
@ -14,11 +14,3 @@
|
|||
|
||||
#ifndef F_INTERFACE
|
||||
#define REALNAME ASMNAME
|
||||
@@ -105,7 +112,6 @@ static inline int blas_quickdivide(blasi
|
||||
#define PROLOGUE \
|
||||
.arm ;\
|
||||
.global REALNAME ;\
|
||||
- .func REALNAME ;\
|
||||
REALNAME:
|
||||
|
||||
#define EPILOGUE
|
||||
|
|
|
|||
|
|
@ -1,11 +0,0 @@
|
|||
--- driver/others/blas_server.c.orig 2016-04-12 19:29:19 UTC
|
||||
+++ driver/others/blas_server.c
|
||||
@@ -70,7 +70,7 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF
|
||||
/*********************************************************************/
|
||||
|
||||
#include "common.h"
|
||||
-#if defined(OS_LINUX) || defined(OS_NETBSD) || defined(OS_DARWIN) || defined(OS_ANDROID) || defined(OS_SUNOS)
|
||||
+#if defined(OS_LINUX) || defined(OS_NETBSD) || defined(OS_DARWIN) || defined(OS_ANDROID) || defined(OS_SUNOS) || defined(OS_FREEBSD)
|
||||
#include <dlfcn.h>
|
||||
#include <signal.h>
|
||||
#include <sys/resource.h>
|
||||
|
|
@ -381,5 +381,9 @@
|
|||
SUBDIR += zabbix32-frontend
|
||||
SUBDIR += zabbix32-proxy
|
||||
SUBDIR += zabbix32-server
|
||||
SUBDIR += zabbix34-agent
|
||||
SUBDIR += zabbix34-frontend
|
||||
SUBDIR += zabbix34-proxy
|
||||
SUBDIR += zabbix34-server
|
||||
|
||||
.include <bsd.port.subdir.mk>
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
PORTNAME= blackbox_exporter
|
||||
PORTVERSION= 0.8.1
|
||||
PORTREVISION= 1
|
||||
DISTVERSIONPREFIX=v
|
||||
CATEGORIES= net-mgmt
|
||||
|
||||
|
|
|
|||
|
|
@ -38,8 +38,8 @@ pidfile=/var/run/blackbox_exporter.pid
|
|||
command="/usr/sbin/daemon"
|
||||
procname="%%PREFIX%%/bin/blackbox_exporter"
|
||||
command_args="-p ${pidfile} /usr/bin/env ${procname} \
|
||||
-web.listen-address=${blackbox_exporter_listen_address} \
|
||||
-config.file=${blackbox_exporter_config} \
|
||||
--web.listen-address=${blackbox_exporter_listen_address} \
|
||||
--config.file=${blackbox_exporter_config} \
|
||||
${blackbox_exporter_args}"
|
||||
|
||||
start_precmd=blackbox_exporter_startprecmd
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= Net-IPv6Addr
|
||||
PORTVERSION= 0.5
|
||||
PORTVERSION= 0.6
|
||||
CATEGORIES= net-mgmt perl5 ipv6
|
||||
MASTER_SITES= CPAN
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
|
@ -13,8 +13,8 @@ COMMENT= Perl extension for manipulating IPv6 addresses
|
|||
LICENSE= ART10 GPLv1
|
||||
LICENSE_COMB= dual
|
||||
|
||||
BUILD_DEPENDS= p5-Math-Base85>=0:math/p5-Math-Base85 \
|
||||
p5-Net-IPv4Addr>=0:net-mgmt/p5-Net-IPv4Addr
|
||||
BUILD_DEPENDS= p5-Math-Base85>=0.2:math/p5-Math-Base85 \
|
||||
p5-Net-IPv4Addr>=0.10:net-mgmt/p5-Net-IPv4Addr
|
||||
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
||||
|
||||
NO_ARCH= yes
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1503577363
|
||||
SHA256 (Net-IPv6Addr-0.5.tar.gz) = 36733351e5a55afc5bf5edbed4e0a21120c62bd1f8324e220d299c80642e8855
|
||||
SIZE (Net-IPv6Addr-0.5.tar.gz) = 9508
|
||||
TIMESTAMP = 1503678453
|
||||
SHA256 (Net-IPv6Addr-0.6.tar.gz) = b36b17c91f946f7fd7deade3634eb016afb38f73b8cffda5ae8c0985a7e1ed6b
|
||||
SIZE (Net-IPv6Addr-0.6.tar.gz) = 9572
|
||||
|
|
|
|||
|
|
@ -26,6 +26,8 @@ OPTIONS_DEFINE= MYSQL MYSQLI PGSQL SQLITE ORACLE
|
|||
OPTIONS_DEFAULT= MYSQLI
|
||||
MYSQLI_DESC= MySQLI backend
|
||||
|
||||
MYSQL_VARS= IGNORE_WITH_PHP+=70 71
|
||||
|
||||
.include <bsd.port.options.mk>
|
||||
|
||||
.if ${PORT_OPTIONS:MMYSQL}
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= zabbix32
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= net-mgmt
|
||||
PKGNAMESUFFIX= -frontend
|
||||
|
||||
|
|
@ -17,9 +18,11 @@ USE_PHP= bcmath ctype dom gd gettext json ldap mbstring pcre \
|
|||
USES+= php:web
|
||||
|
||||
OPTIONS_DEFINE= MYSQL MYSQLI PGSQL SQLITE ORACLE
|
||||
OPTIONS_DEFAULT= MYSQL MYSQLI
|
||||
OPTIONS_DEFAULT= MYSQLI
|
||||
MYSQLI_DESC= MySQLI backend
|
||||
|
||||
MYSQL_VARS= IGNORE_WITH_PHP+=70 71
|
||||
|
||||
.include <bsd.port.options.mk>
|
||||
|
||||
.if ${PORT_OPTIONS:MMYSQL}
|
||||
|
|
|
|||
14
net-mgmt/zabbix34-agent/Makefile
Normal file
14
net-mgmt/zabbix34-agent/Makefile
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# Created by: Pakhom Golynga <pg@pakhom.spb.ru>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= zabbix34
|
||||
CATEGORIES= net-mgmt
|
||||
PKGNAMESUFFIX= -agent
|
||||
|
||||
MASTERDIR= ${.CURDIR}/../zabbix34-server
|
||||
PLIST= ${PKGDIR}/pkg-plist.agent
|
||||
|
||||
OPTIONS_DEFINE= IPV6
|
||||
OPTIONS_DEFAULT= OPENSSL
|
||||
|
||||
.include "${MASTERDIR}/Makefile"
|
||||
52
net-mgmt/zabbix34-frontend/Makefile
Normal file
52
net-mgmt/zabbix34-frontend/Makefile
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
# Created by: Pakhom Golynga <pg@pakhom.spb.ru>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= zabbix34
|
||||
CATEGORIES= net-mgmt
|
||||
PKGNAMESUFFIX= -frontend
|
||||
|
||||
MASTERDIR= ${.CURDIR}/../zabbix34-server
|
||||
|
||||
NO_BUILD= yes
|
||||
NO_ARCH= yes
|
||||
PATCHDIR=
|
||||
PLIST= ${PKGDIR}/pkg-plist.frontend
|
||||
|
||||
USE_PHP= bcmath ctype dom gd gettext json ldap mbstring pcre \
|
||||
session simplexml snmp sockets xml xmlreader xmlwriter
|
||||
USES+= php:web
|
||||
|
||||
OPTIONS_DEFINE= MYSQL MYSQLI PGSQL SQLITE ORACLE
|
||||
OPTIONS_DEFAULT= MYSQLI
|
||||
MYSQLI_DESC= MySQLI backend
|
||||
|
||||
MYSQL_VARS= IGNORE_WITH_PHP+=70 71
|
||||
|
||||
.include <bsd.port.options.mk>
|
||||
|
||||
.if ${PORT_OPTIONS:MMYSQL}
|
||||
USE_PHP+= mysql
|
||||
.endif
|
||||
|
||||
.if ${PORT_OPTIONS:MMYSQLI}
|
||||
USE_PHP+= mysqli
|
||||
.endif
|
||||
|
||||
.if ${PORT_OPTIONS:MPGSQL}
|
||||
USE_PHP+= pgsql
|
||||
.endif
|
||||
|
||||
.if ${PORT_OPTIONS:MSQLITE}
|
||||
USE_PHP+= sqlite3
|
||||
.endif
|
||||
|
||||
.if ${PORT_OPTIONS:MORACLE}
|
||||
CONFIGURE_ARGS+= --with-oracle
|
||||
.endif
|
||||
|
||||
do-install:
|
||||
@${MKDIR} ${STAGEDIR}${WWWDIR}
|
||||
(cd ${WRKSRC}/frontends/php && \
|
||||
${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR})
|
||||
|
||||
.include "${MASTERDIR}/Makefile"
|
||||
10
net-mgmt/zabbix34-proxy/Makefile
Normal file
10
net-mgmt/zabbix34-proxy/Makefile
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
# Created by: Pakhom Golynga <pg@pakhom.spb.ru>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= zabbix34
|
||||
CATEGORIES= net-mgmt
|
||||
PKGNAMESUFFIX= -proxy
|
||||
|
||||
MASTERDIR= ${.CURDIR}/../zabbix34-server
|
||||
|
||||
.include "${MASTERDIR}/Makefile"
|
||||
216
net-mgmt/zabbix34-server/Makefile
Normal file
216
net-mgmt/zabbix34-server/Makefile
Normal file
|
|
@ -0,0 +1,216 @@
|
|||
# Created by: Pakhom Golynga <pg@pakhom.spb.ru>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= zabbix34
|
||||
PORTVERSION= 3.4.0
|
||||
PORTREVISION?= 0
|
||||
CATEGORIES= net-mgmt
|
||||
MASTER_SITES= SF/zabbix/ZABBIX%20Latest%20Stable/${PORTVERSION}
|
||||
PKGNAMESUFFIX?= -server
|
||||
DISTNAME= zabbix-${PORTVERSION}
|
||||
|
||||
MAINTAINER= pg@pakhom.spb.ru
|
||||
COMMENT= Enterprise-class open source distributed monitoring (${PKGNAMESUFFIX:S/^-//})
|
||||
|
||||
LICENSE= GPLv2+
|
||||
LICENSE_FILE= ${WRKSRC}/COPYING
|
||||
|
||||
LIB_DEPENDS= libpcre.so:devel/pcre
|
||||
|
||||
CONFLICTS= zabbix[0-24-9][0-35-9]${PKGNAMESUFFIX} zabbix[0-9]${PKGNAMESUFFIX}
|
||||
|
||||
IGNORE_WITH_MYSQL= 41
|
||||
|
||||
ZABBIX_BUILD= ${PKGNAMESUFFIX:S/^-//}
|
||||
|
||||
.if ${ZABBIX_BUILD} != "frontend" # frontend only needs the version/distribution settings
|
||||
.if ${ZABBIX_BUILD} != "agent"
|
||||
USE_RC_SUBR= zabbix_${ZABBIX_BUILD}
|
||||
.else
|
||||
USE_RC_SUBR= zabbix_${ZABBIX_BUILD}d
|
||||
.endif
|
||||
|
||||
USES= pkgconfig iconv
|
||||
|
||||
USERS= zabbix
|
||||
GROUPS= zabbix
|
||||
|
||||
.if ${ZABBIX_BUILD} != "proxy"
|
||||
PLIST_SUB= PROXY="@comment "
|
||||
.else
|
||||
PLIST_SUB= PROXY=""
|
||||
.endif
|
||||
|
||||
.if ${ZABBIX_BUILD} == "server"
|
||||
LIB_DEPENDS+= libevent.so:devel/libevent
|
||||
PLIST_SUB+= SERVER=""
|
||||
.else
|
||||
PLIST_SUB+= SERVER="@comment "
|
||||
.endif
|
||||
|
||||
PLIST_SUB+= ZABBIX_BUILD=${ZABBIX_BUILD} PORTVERSION=${PORTVERSION}
|
||||
SUB_LIST= ZABBIX_BUILD=${ZABBIX_BUILD}
|
||||
|
||||
MAKE_ARGS+= ARCH=freebsd
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS+= --enable-${ZABBIX_BUILD} \
|
||||
--sysconfdir=${ETCDIR} \
|
||||
--datadir=${ETCDIR} \
|
||||
--with-iconv=${ICONV_PREFIX}
|
||||
|
||||
.if ${ZABBIX_BUILD} != "agent"
|
||||
LIB_DEPENDS+= libnetsnmp.so:net-mgmt/net-snmp
|
||||
USES+= execinfo
|
||||
|
||||
CPPFLAGS+= -I${LOCALBASE}/include
|
||||
|
||||
SUB_FILES= pkg-message
|
||||
|
||||
CONFIGURE_ARGS+= --with-net-snmp
|
||||
|
||||
OPTIONS_DEFINE= IPV6 FPING JABBER CURL LDAP IPMI SSH NMAP JAVAGW \
|
||||
LIBXML2
|
||||
|
||||
OPTIONS_DEFAULT= FPING CURL UNIXODBC MYSQL OPENSSL
|
||||
OPTIONS_SUB= yes
|
||||
|
||||
CURL_DESC= Support for web monitoring
|
||||
FPING_DESC= Build/install fping for ping checks
|
||||
IPMI_DESC= Support for IPMI checks
|
||||
JABBER_DESC= Support for Jabber media type
|
||||
LDAP_DESC= Support for LDAP server checks
|
||||
NMAP_DESC= Build/install nmap for o/s detection
|
||||
SSH_DESC= Support for SSH-based checks
|
||||
ODBC_DESC= Support for database checks via ODBC
|
||||
JAVAGW_DESC= Support for Java gateway
|
||||
LIBXML2_DESC= Support for libxml2 (required by monitoring VMware)
|
||||
|
||||
OPTIONS_SINGLE= DB ODBC SSL
|
||||
OPTIONS_SINGLE_DB= MYSQL PGSQL SQLITE ORACLE
|
||||
OPTIONS_SINGLE_ODBC= IODBC UNIXODBC
|
||||
OPTIONS_SINGLE_SSL= OPENSSL GNUTLS POLARSSL
|
||||
|
||||
MYSQL_CONFIGURE_WITH= mysql
|
||||
MYSQL_USES+= mysql
|
||||
|
||||
PGSQL_CONFIGURE_WITH= postgresql
|
||||
PGSQL_USES+= pgsql
|
||||
|
||||
SQLITE_CONFIGURE_WITH= sqlite3
|
||||
SQLITE_USES+= sqlite:3
|
||||
|
||||
ORACLE_CONFIGURE_WITH= oracle
|
||||
|
||||
CURL_CONFIGURE_WITH= libcurl
|
||||
CURL_LIB_DEPENDS= libcurl.so:ftp/curl
|
||||
|
||||
LDAP_CONFIGURE_WITH= ldap
|
||||
LDAP_USE= OPENLDAP=yes
|
||||
|
||||
IPMI_CONFIGURE_WITH= openipmi
|
||||
IPMI_LIB_DEPENDS= libOpenIPMI.so:sysutils/openipmi
|
||||
|
||||
JABBER_CONFIGURE_WITH= jabber
|
||||
JABBER_LIB_DEPENDS= libiksemel.so:textproc/iksemel
|
||||
|
||||
FPING_RUN_DEPENDS= fping:net/fping
|
||||
|
||||
SSH_CONFIGURE_WITH= ssh2
|
||||
SSH_LIB_DEPENDS= libssh2.so:security/libssh2
|
||||
|
||||
IODBC_CONFIGURE_WITH= iodbc
|
||||
IODBC_LIB_DEPENDS= libiodbc.so:databases/libiodbc
|
||||
|
||||
UNIXODBC_CONFIGURE_WITH=unixodbc
|
||||
UNIXODBC_LIB_DEPENDS= libodbc.so:databases/unixODBC
|
||||
.else
|
||||
OPTIONS_SINGLE= SSL
|
||||
OPTIONS_SINGLE_SSL= OPENSSL GNUTLS POLARSSL
|
||||
.endif # if ${ZABBIX_BUILD} != "agent"
|
||||
|
||||
IPV6_CONFIGURE_ENABLE= ipv6
|
||||
|
||||
NMAP_RUN_DEPENDS= nmap:security/nmap \
|
||||
sudo:security/sudo
|
||||
|
||||
JAVAGW_CONFIGURE_ENABLE=java
|
||||
JAVAGW_USE= JAVA=yes
|
||||
|
||||
LIBXML2_CONFIGURE_WITH= libxml2
|
||||
LIBXML2_LIB_DEPENDS= libxml2.so:textproc/libxml2
|
||||
|
||||
OPENSSL_CONFIGURE_WITH= openssl
|
||||
OPENSSL_USES= ssl
|
||||
OPENSSL_VARS= BROKEN_SSL="libressl libressl-devel" \
|
||||
BROKEN_SSL_REASON="PSK is not provided by LibreSSL"
|
||||
|
||||
GNUTLS_CONFIGURE_WITH= gnutls
|
||||
GNUTLS_LIB_DEPENDS= libgnutls.so:security/gnutls
|
||||
|
||||
POLARSSL_CONFIGURE_WITH=mbedtls
|
||||
POLARSSL_LIB_DEPENDS= libmbedtls.so:security/polarssl13
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
post-patch:
|
||||
@${GREP} -rl "/etc/zabbix" ${WRKSRC} \
|
||||
| ${XARGS} ${REINPLACE_CMD} -e 's#/etc/zabbix#${ETCDIR}#g'
|
||||
@${REINPLACE_CMD} -e 's#/usr/sbin/fping#${LOCALBASE}/sbin/fping#g' \
|
||||
${WRKSRC}/conf/zabbix_*.conf
|
||||
|
||||
.if ${ZABBIX_BUILD} == "server"
|
||||
@${REINPLACE_CMD} -e 's#PidFile=/tmp/zabbix_server.pid#PidFile=/var/run/zabbix/zabbix_server.pid#g' \
|
||||
${WRKSRC}/conf/zabbix_server*.conf
|
||||
@${REINPLACE_CMD} -e 's#Include=/usr/local/usr/local/etc/zabbix3#Include=/usr/local/etc/zabbix3/zabbix#g' \
|
||||
${WRKSRC}/conf/zabbix_server*.conf
|
||||
.endif
|
||||
|
||||
.if ${ZABBIX_BUILD} == "proxy"
|
||||
@${REINPLACE_CMD} -e 's#PidFile=/tmp/zabbix_proxy.pid#PidFile=/var/run/zabbix/zabbix_proxy.pid#g' \
|
||||
${WRKSRC}/conf/zabbix_proxy*.conf
|
||||
@${REINPLACE_CMD} -e 's#Include=/usr/local/usr/local/etc/zabbix3#Include=/usr/local/etc/zabbix3/zabbix#g' \
|
||||
${WRKSRC}/conf/zabbix_proxy*.conf
|
||||
.endif
|
||||
|
||||
.if ${ZABBIX_BUILD} == "agent"
|
||||
@${REINPLACE_CMD} -e 's#PidFile=/tmp/zabbix_agentd.pid#PidFile=/var/run/zabbix/zabbix_agentd.pid#g' \
|
||||
${WRKSRC}/conf/zabbix_agentd*.conf
|
||||
@${REINPLACE_CMD} -e 's#Include=/usr/local/usr/local/etc/zabbix3#Include=/usr/local/etc/zabbix3/zabbix#g' \
|
||||
${WRKSRC}/conf/zabbix_agentd*.conf
|
||||
.endif
|
||||
|
||||
.if ${ZABBIX_BUILD} != "agent"
|
||||
. for d in mysql oracle postgresql sqlite3
|
||||
@${REINPLACE_CMD} \
|
||||
-e 's|/bin/ping|/sbin/ping|g' \
|
||||
-e 's|/usr/bin/traceroute|/usr/sbin/traceroute|g' \
|
||||
-e 's|sudo /usr/bin/nmap|sudo ${LOCALBASE}/bin/nmap|g' \
|
||||
${WRKSRC}/database/${d}/data.sql
|
||||
. endfor
|
||||
.endif
|
||||
@${REINPLACE_CMD} \
|
||||
-Ee 's|(@sysconfdir@/(\$$\([A-Z]*_CONFIG\)))" ([|][|] cp "../../conf/\$$\([A-Z]*_CONFIG\)" "\$$\(DESTDIR\)@sysconfdir@)"|\1.sample" \3/\2.sample"|;' \
|
||||
${WRKSRC}/src/zabbix_${ZABBIX_BUILD}/Makefile.in
|
||||
@${FIND} ${WRKSRC} -type f \( -name '*.bak' -or -name '*.orig' \) \
|
||||
-exec ${RM} {} +
|
||||
|
||||
post-install:
|
||||
|
||||
.if ${PORT_OPTIONS:MJAVAGW}
|
||||
${MV} ${STAGEDIR}${PREFIX}/sbin/zabbix_java/settings.sh \
|
||||
${STAGEDIR}${PREFIX}/sbin/zabbix_java/settings.sh.sample
|
||||
.endif
|
||||
|
||||
.if ${ZABBIX_BUILD} != "agent"
|
||||
${MKDIR} ${STAGEDIR}${DATADIR}/${ZABBIX_BUILD:Q}/database
|
||||
(cd ${WRKSRC}/upgrades/ && ${COPYTREE_SHARE} dbpatches \
|
||||
${STAGEDIR}${DATADIR}/${ZABBIX_BUILD:Q}/upgrades/)
|
||||
(cd ${WRKSRC}/database/ && \
|
||||
${COPYTREE_SHARE} "ibm_db2 mysql oracle postgresql sqlite3" \
|
||||
${STAGEDIR}${DATADIR}/${ZABBIX_BUILD:Q}/database/)
|
||||
.endif
|
||||
.else # frontend
|
||||
.include <bsd.port.pre.mk>
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
3
net-mgmt/zabbix34-server/distinfo
Normal file
3
net-mgmt/zabbix34-server/distinfo
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1503619719
|
||||
SHA256 (zabbix-3.4.0.tar.gz) = 7126df44de57eebc74e14e6738f604551b9a7d462e2f77d6ecfe03770850f013
|
||||
SIZE (zabbix-3.4.0.tar.gz) = 16815960
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
--- src/zabbix_agent/zabbix_agentd.c.orig 2016-09-25 16:15:50 UTC
|
||||
+++ src/zabbix_agent/zabbix_agentd.c
|
||||
@@ -522,7 +522,7 @@ static void set_defaults(void)
|
||||
CONFIG_LOAD_MODULE_PATH = zbx_strdup(CONFIG_LOAD_MODULE_PATH, LIBDIR "/modules");
|
||||
|
||||
if (NULL == CONFIG_PID_FILE)
|
||||
- CONFIG_PID_FILE = "/tmp/zabbix_agentd.pid";
|
||||
+ CONFIG_PID_FILE = "/var/run/zabbix/zabbix_agentd.pid";
|
||||
#endif
|
||||
if (NULL == CONFIG_LOG_TYPE_STR)
|
||||
CONFIG_LOG_TYPE_STR = zbx_strdup(CONFIG_LOG_TYPE_STR, ZBX_OPTION_LOGTYPE_FILE);
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
--- src/zabbix_proxy/proxy.c.orig 2016-09-25 16:18:32 UTC
|
||||
+++ src/zabbix_proxy/proxy.c
|
||||
@@ -390,7 +390,7 @@ static void zbx_set_defaults(void)
|
||||
CONFIG_SNMPTRAP_FILE = zbx_strdup(CONFIG_SNMPTRAP_FILE, "/tmp/zabbix_traps.tmp");
|
||||
|
||||
if (NULL == CONFIG_PID_FILE)
|
||||
- CONFIG_PID_FILE = zbx_strdup(CONFIG_PID_FILE, "/tmp/zabbix_proxy.pid");
|
||||
+ CONFIG_PID_FILE = zbx_strdup(CONFIG_PID_FILE, "/var/run/zabbix/zabbix_proxy.pid");
|
||||
|
||||
if (NULL == CONFIG_TMPDIR)
|
||||
CONFIG_TMPDIR = zbx_strdup(CONFIG_TMPDIR, "/tmp");
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
--- src/zabbix_server/server.c.orig 2016-09-25 16:17:40 UTC
|
||||
+++ src/zabbix_server/server.c
|
||||
@@ -376,7 +376,7 @@ static void zbx_set_defaults(void)
|
||||
CONFIG_SNMPTRAP_FILE = zbx_strdup(CONFIG_SNMPTRAP_FILE, "/tmp/zabbix_traps.tmp");
|
||||
|
||||
if (NULL == CONFIG_PID_FILE)
|
||||
- CONFIG_PID_FILE = zbx_strdup(CONFIG_PID_FILE, "/tmp/zabbix_server.pid");
|
||||
+ CONFIG_PID_FILE = zbx_strdup(CONFIG_PID_FILE, "/var/run/zabbix/zabbix_server.pid");
|
||||
|
||||
if (NULL == CONFIG_ALERT_SCRIPTS_PATH)
|
||||
CONFIG_ALERT_SCRIPTS_PATH = zbx_strdup(CONFIG_ALERT_SCRIPTS_PATH, DATADIR "/zabbix/alertscripts");
|
||||
68
net-mgmt/zabbix34-server/files/pkg-message.in
Normal file
68
net-mgmt/zabbix34-server/files/pkg-message.in
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
======================================================================
|
||||
For Zabbix server and proxy daemons, as well as Zabbix frontend, a database is
|
||||
required. It is not needed to run Zabbix agent.
|
||||
|
||||
% cd %%DATADIR%%/%%ZABBIX_BUILD%%/database
|
||||
|
||||
PostgreSQL:
|
||||
shell> psql -U <username>
|
||||
psql> create database zabbix;
|
||||
psql> \q
|
||||
shell> cd database/postgresql
|
||||
shell> psql -U <username> zabbix < schema.sql
|
||||
shell> psql -U <username> zabbix < images.sql
|
||||
shell> psql -U <username> zabbix < data.sql
|
||||
|
||||
MySQL:
|
||||
shell> mysql -u<username> -p<password>
|
||||
mysql> create database zabbix character set utf8;
|
||||
mysql> quit;
|
||||
shell> mysql -u<username> -p<password> zabbix < database/mysql/schema.sql
|
||||
shell> mysql -u<username> -p<password> zabbix < database/mysql/images.sql
|
||||
shell> mysql -u<username> -p<password> zabbix < database/mysql/data.sql
|
||||
|
||||
SQLite:
|
||||
shell> cd database/sqlite3
|
||||
shell> sqlite3 /var/lib/sqlite/zabbix.db < schema.sql
|
||||
shell> sqlite3 /var/lib/sqlite/zabbix.db < images.sql
|
||||
shell> sqlite3 /var/lib/sqlite/zabbix.db < data.sql
|
||||
|
||||
IBM DB2:
|
||||
shell> db2 "create database zabbix using codeset utf-8 territory us pagesize 32768"
|
||||
shell> cd database/ibm_db2
|
||||
shell> db2batch -d zabbix -f schema.sql
|
||||
shell> db2batch -d zabbix -f images.sql
|
||||
shell> db2batch -d zabbix -f data.sql
|
||||
|
||||
Upgrade notes for 3.4.0:
|
||||
https://www.zabbix.com/documentation/3.4/manual/installation/upgrade_notes_340
|
||||
|
||||
Upgrade procedure:
|
||||
https://www.zabbix.com/documentation/3.4/manual/installation/upgrade
|
||||
|
||||
Please see https://www.zabbix.com/ for detailed information about Zabbix.
|
||||
|
||||
On-line Zabbix documentation:
|
||||
https://www.zabbix.com/documentation/3.4/start
|
||||
|
||||
For Zabbix frontend “Welcome” screen. Enter the user name Admin with password
|
||||
zabbix to log in as a Zabbix superuser.
|
||||
|
||||
For use NMAP please edit sudoers
|
||||
======================================================================
|
||||
This is a Zabbix Standard release!
|
||||
|
||||
Standard Zabbix releases are supported for Zabbix customers during six (6)
|
||||
months of Full Support (general, critical and security issues) until the next
|
||||
Zabbix stable release, plus one (1) additional month of Limited Support
|
||||
(critical and security issues only). Zabbix Standard version release will
|
||||
result in change of the second version number.
|
||||
|
||||
Stable release: Zabbix 3.4
|
||||
Release date: August, 2017
|
||||
End of Full Support: February, 2018
|
||||
End of Limited Support: March, 2018
|
||||
|
||||
Zabbix Life Cycle & Release Policy:
|
||||
https://www.zabbix.com/life_cycle_and_release_policy
|
||||
======================================================================
|
||||
64
net-mgmt/zabbix34-server/files/zabbix_agentd.in
Normal file
64
net-mgmt/zabbix34-server/files/zabbix_agentd.in
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
#!/bin/sh
|
||||
|
||||
# PROVIDE: zabbix_agentd
|
||||
# REQUIRE: DAEMON
|
||||
# KEYWORD: shutdown
|
||||
#
|
||||
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf to
|
||||
# enable zabbix_agentd:
|
||||
#
|
||||
# zabbix_agentd_enable (bool): Set to NO by default. Set it to YES to
|
||||
# enable zabbix_agentd.
|
||||
# zabbix_agentd_config (string): Set to the standard config file path by
|
||||
# default.
|
||||
# zabbix_agentd_pidfile (string): Location of the zabbix_agent pid file
|
||||
# Default is /var/run/zabbix/zabbix_agentd.pid
|
||||
# zabbix_agentd_paths (string): Set to standard path by default. Set a search
|
||||
# if you have custom userparams that need binaries elsewhere.
|
||||
#
|
||||
|
||||
. /etc/rc.subr
|
||||
|
||||
name="zabbix_agentd"
|
||||
rcvar=zabbix_agentd_enable
|
||||
|
||||
load_rc_config $name
|
||||
|
||||
: ${zabbix_agentd_enable:=NO}
|
||||
: ${zabbix_agentd_config:=%%ETCDIR%%/${name}.conf}
|
||||
: ${zabbix_agentd_pidfile:=/var/run/zabbix/zabbix_agentd.pid}
|
||||
: ${zabbix_agentd_paths:=$PATH}
|
||||
|
||||
command="%%PREFIX%%/sbin/${name}"
|
||||
required_files="${zabbix_agentd_config}"
|
||||
|
||||
start_cmd=zabbix_agentd_cmd
|
||||
start_precmd=zabbix_agentd_precmd
|
||||
status_precmd=zabbix_agentd_precmd
|
||||
stop_precmd=zabbix_agentd_precmd
|
||||
|
||||
zabbix_agentd_precmd()
|
||||
{
|
||||
if get_pidfile_from_conf PidFile ${zabbix_agentd_config}; then
|
||||
pidfile="$_pidfile_from_conf"
|
||||
else
|
||||
pidfile=${zabbix_agentd_pidfile}
|
||||
local rundir=${zabbix_agentd_pidfile%/*}
|
||||
if [ ! -d $rundir ] ; then
|
||||
install -d -m 0755 -o zabbix -g zabbix $rundir
|
||||
fi
|
||||
fi
|
||||
|
||||
# This shouldn't be necessary with pidfile, but empirically it was the
|
||||
# only way to reap the parent PID instead of all PIDs from
|
||||
# check_process, which may leak SysV IPC objects and prevent restart
|
||||
# and/or race condition on restart.
|
||||
rc_pid=$(check_pidfile ${pidfile} ${command})
|
||||
}
|
||||
|
||||
zabbix_agentd_cmd()
|
||||
{
|
||||
PATH=$zabbix_agentd_paths $command -c $zabbix_agentd_config
|
||||
}
|
||||
|
||||
run_rc_command "$1"
|
||||
65
net-mgmt/zabbix34-server/files/zabbix_proxy.in
Normal file
65
net-mgmt/zabbix34-server/files/zabbix_proxy.in
Normal file
|
|
@ -0,0 +1,65 @@
|
|||
#!/bin/sh
|
||||
|
||||
# PROVIDE: zabbix_proxy
|
||||
# REQUIRE: DAEMON
|
||||
%%PGSQL%%# REQUIRE: postgresql
|
||||
%%MYSQL%%# REQUIRE: mysql-server
|
||||
# KEYWORD: shutdown
|
||||
#
|
||||
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf to
|
||||
# enable zabbix_proxy:
|
||||
#
|
||||
# zabbix_proxy_enable (bool): Set to NO by default. Set it to YES to
|
||||
# enable zabbix_proxy.
|
||||
# zabbix_proxy_config (string): Set to the standard config file path by
|
||||
# default.
|
||||
# zabbix_proxy_pidfile (string): Location of the zabbix_proxy pid file
|
||||
# Default is /var/run/zabbix/zabbix_proxy.pid
|
||||
# zabbix_proxy_paths (string): Set to standard path by default. Set a search
|
||||
# if you have custom userparams that need binaries elsewhere.
|
||||
#
|
||||
|
||||
. /etc/rc.subr
|
||||
|
||||
name="zabbix_proxy"
|
||||
rcvar=zabbix_proxy_enable
|
||||
|
||||
load_rc_config $name
|
||||
|
||||
: ${zabbix_proxy_enable:=NO}
|
||||
: ${zabbix_proxy_config:=%%ETCDIR%%/${name}.conf}
|
||||
: ${zabbix_proxy_pidfile:=/var/run/zabbix/zabbix_proxy.pid}
|
||||
|
||||
command="%%PREFIX%%/sbin/${name}"
|
||||
required_files="${zabbix_proxy_config}"
|
||||
|
||||
start_cmd=zabbix_proxy_cmd
|
||||
start_precmd=zabbix_proxy_precmd
|
||||
status_precmd=zabbix_proxy_precmd
|
||||
stop_precmd=zabbix_proxy_precmd
|
||||
|
||||
zabbix_proxy_precmd()
|
||||
{
|
||||
if get_pidfile_from_conf PidFile ${zabbix_proxy_config}; then
|
||||
pidfile="$_pidfile_from_conf"
|
||||
else
|
||||
pidfile=${zabbix_proxy_pidfile}
|
||||
local rundir=${zabbix_proxy_pidfile%/*}
|
||||
if [ ! -d $rundir ] ; then
|
||||
install -d -m 0755 -o zabbix -g zabbix $rundir
|
||||
fi
|
||||
fi
|
||||
|
||||
# This shouldn't be necessary with pidfile, but empirically it was the
|
||||
# only way to reap the parent PID instead of all PIDs from
|
||||
# check_process, which may leak SysV IPC objects and prevent restart
|
||||
# and/or race condition on restart.
|
||||
rc_pid=$(check_pidfile ${pidfile} ${command})
|
||||
}
|
||||
|
||||
zabbix_proxy_cmd()
|
||||
{
|
||||
PATH=$zabbix_proxy_paths $command -c $zabbix_proxy_config
|
||||
}
|
||||
|
||||
run_rc_command "$1"
|
||||
66
net-mgmt/zabbix34-server/files/zabbix_server.in
Normal file
66
net-mgmt/zabbix34-server/files/zabbix_server.in
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
#!/bin/sh
|
||||
|
||||
# PROVIDE: zabbix_server
|
||||
# REQUIRE: DAEMON
|
||||
%%PGSQL%%# REQUIRE: postgresql
|
||||
%%MYSQL%%# REQUIRE: mysql-server
|
||||
# KEYWORD: shutdown
|
||||
#
|
||||
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf to
|
||||
# enable zabbix_server:
|
||||
#
|
||||
# zabbix_server_enable (bool): Set to NO by default. Set it to YES to
|
||||
# enable zabbix_server.
|
||||
# zabbix_server_config (string): Set to the standard config file path by
|
||||
# default.
|
||||
# zabbix_server_pidfile (string): Location of the zabbix_server pid file
|
||||
# Default is /var/run/zabbix/zabbix_server.pid
|
||||
# zabbix_server_paths (string): Set to standard path by default. Set a search
|
||||
# if you have custom userparams that need binaries elsewhere.
|
||||
#
|
||||
|
||||
. /etc/rc.subr
|
||||
|
||||
name="zabbix_server"
|
||||
rcvar=zabbix_server_enable
|
||||
|
||||
load_rc_config $name
|
||||
|
||||
: ${zabbix_server_enable:=NO}
|
||||
: ${zabbix_server_config:=%%ETCDIR%%/${name}.conf}
|
||||
: ${zabbix_server_pidfile:=/var/run/zabbix/zabbix_server.pid}
|
||||
: ${zabbix_server_paths:=$PATH}
|
||||
|
||||
command="%%PREFIX%%/sbin/${name}"
|
||||
required_files="${zabbix_server_config}"
|
||||
|
||||
start_cmd=zabbix_server_cmd
|
||||
start_precmd=zabbix_server_precmd
|
||||
status_precmd=zabbix_server_precmd
|
||||
stop_precmd=zabbix_server_precmd
|
||||
|
||||
zabbix_server_precmd()
|
||||
{
|
||||
if get_pidfile_from_conf PidFile ${zabbix_server_config}; then
|
||||
pidfile="$_pidfile_from_conf"
|
||||
else
|
||||
pidfile=${zabbix_server_pidfile}
|
||||
local rundir=${zabbix_server_pidfile%/*}
|
||||
if [ ! -d $rundir ] ; then
|
||||
install -d -m 0755 -o zabbix -g zabbix $rundir
|
||||
fi
|
||||
fi
|
||||
|
||||
# This shouldn't be necessary with pidfile, but empirically it was the
|
||||
# only way to reap the parent PID instead of all PIDs from
|
||||
# check_process, which may leak SysV IPC objects and prevent restart
|
||||
# and/or race condition on restart.
|
||||
rc_pid=$(check_pidfile ${pidfile} ${command})
|
||||
}
|
||||
|
||||
zabbix_server_cmd()
|
||||
{
|
||||
PATH=$zabbix_server_paths $command -c $zabbix_server_config
|
||||
}
|
||||
|
||||
run_rc_command "$1"
|
||||
10
net-mgmt/zabbix34-server/pkg-descr
Normal file
10
net-mgmt/zabbix34-server/pkg-descr
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
Zabbix is an enterprise-class open source distributed monitoring solution.
|
||||
|
||||
Zabbix is software that monitors numerous parameters of a network and the
|
||||
health and integrity of servers. Zabbix uses a flexible notification
|
||||
mechanism that allows users to configure e-mail based alerts for virtually
|
||||
any event. This allows a fast reaction to server problems. Zabbix offers
|
||||
excellent reporting and data visualisation features based on the stored
|
||||
data. This makes Zabbix ideal for capacity planning.
|
||||
|
||||
WWW: https://www.zabbix.com/
|
||||
49
net-mgmt/zabbix34-server/pkg-plist
Normal file
49
net-mgmt/zabbix34-server/pkg-plist
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
%%ETCDIR%%/zabbix_%%ZABBIX_BUILD%%.conf.sample
|
||||
man/man8/zabbix_%%ZABBIX_BUILD%%.8.gz
|
||||
sbin/zabbix_%%ZABBIX_BUILD%%
|
||||
%%DATADIR%%/%%ZABBIX_BUILD%%/database/mysql/data.sql
|
||||
%%DATADIR%%/%%ZABBIX_BUILD%%/database/mysql/schema.sql
|
||||
%%DATADIR%%/%%ZABBIX_BUILD%%/database/mysql/images.sql
|
||||
%%DATADIR%%/%%ZABBIX_BUILD%%/database/postgresql/data.sql
|
||||
%%DATADIR%%/%%ZABBIX_BUILD%%/database/postgresql/images.sql
|
||||
%%DATADIR%%/%%ZABBIX_BUILD%%/database/postgresql/schema.sql
|
||||
%%DATADIR%%/%%ZABBIX_BUILD%%/database/sqlite3/images.sql
|
||||
%%DATADIR%%/%%ZABBIX_BUILD%%/database/sqlite3/schema.sql
|
||||
%%DATADIR%%/%%ZABBIX_BUILD%%/database/sqlite3/data.sql
|
||||
%%DATADIR%%/%%ZABBIX_BUILD%%/database/ibm_db2/schema.sql
|
||||
%%DATADIR%%/%%ZABBIX_BUILD%%/database/ibm_db2/images.sql
|
||||
%%DATADIR%%/%%ZABBIX_BUILD%%/database/ibm_db2/data.sql
|
||||
%%DATADIR%%/%%ZABBIX_BUILD%%/database/oracle/data.sql
|
||||
%%DATADIR%%/%%ZABBIX_BUILD%%/database/oracle/images.sql
|
||||
%%DATADIR%%/%%ZABBIX_BUILD%%/database/oracle/schema.sql
|
||||
%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/2.2/README
|
||||
%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/2.0/ibm_db2/patch.sql
|
||||
%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/2.0/ibm_db2/rc4_rc5.sql
|
||||
%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/2.0/postgresql/rc4_rc5.sql
|
||||
%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/2.0/postgresql/patch.sql
|
||||
%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/2.0/oracle/patch.sql
|
||||
%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/2.0/oracle/rc4_rc5.sql
|
||||
%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/2.0/mysql/rc4_rc5.sql
|
||||
%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/2.0/mysql/upgrade
|
||||
%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/2.0/mysql/patch.sql
|
||||
%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/1.8/mysql/patch.sql
|
||||
%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/1.8/mysql/upgrade
|
||||
%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/1.8/postgresql/patch.sql
|
||||
%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/1.8/oracle/patch.sql
|
||||
%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/1.6/postgresql/patch.sql
|
||||
%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/1.6/oracle/patch.sql
|
||||
%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/1.6/mysql/patch.sql
|
||||
%%JAVAGW%%sbin/zabbix_java/shutdown.sh
|
||||
%%JAVAGW%%sbin/zabbix_java/lib/logback-console.xml
|
||||
%%JAVAGW%%sbin/zabbix_java/lib/logback-core-0.9.27.jar
|
||||
%%JAVAGW%%sbin/zabbix_java/lib/logback-classic-0.9.27.jar
|
||||
%%JAVAGW%%sbin/zabbix_java/lib/logback.xml
|
||||
%%JAVAGW%%sbin/zabbix_java/lib/slf4j-api-1.6.1.jar
|
||||
%%JAVAGW%%sbin/zabbix_java/lib/android-json-4.3_r3.1.jar
|
||||
%%JAVAGW%%sbin/zabbix_java/settings.sh.sample
|
||||
%%JAVAGW%%sbin/zabbix_java/startup.sh
|
||||
%%JAVAGW%%sbin/zabbix_java/bin/zabbix-java-gateway-%%PORTVERSION%%.jar
|
||||
%%SERVER%%@dir %%ETCDIR%%/zabbix/alertscripts
|
||||
@dir %%ETCDIR%%/zabbix/externalscripts
|
||||
%%PROXY%%@dir %%ETCDIR%%/zabbix_proxy.conf.d
|
||||
%%SERVER%%@dir %%ETCDIR%%/zabbix_server.conf.d
|
||||
8
net-mgmt/zabbix34-server/pkg-plist.agent
Normal file
8
net-mgmt/zabbix34-server/pkg-plist.agent
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
%%ETCDIR%%/zabbix_agentd.conf.sample
|
||||
bin/zabbix_get
|
||||
bin/zabbix_sender
|
||||
sbin/zabbix_agentd
|
||||
@dir %%ETCDIR%%/zabbix_agentd.conf.d
|
||||
man/man1/zabbix_get.1.gz
|
||||
man/man1/zabbix_sender.1.gz
|
||||
man/man8/zabbix_%%ZABBIX_BUILD%%d.8.gz
|
||||
859
net-mgmt/zabbix34-server/pkg-plist.frontend
Normal file
859
net-mgmt/zabbix34-server/pkg-plist.frontend
Normal file
|
|
@ -0,0 +1,859 @@
|
|||
%%WWWDIR%%/actionconf.php
|
||||
%%WWWDIR%%/adm.gui.php
|
||||
%%WWWDIR%%/adm.housekeeper.php
|
||||
%%WWWDIR%%/adm.iconmapping.php
|
||||
%%WWWDIR%%/adm.images.php
|
||||
%%WWWDIR%%/adm.macros.php
|
||||
%%WWWDIR%%/adm.other.php
|
||||
%%WWWDIR%%/adm.regexps.php
|
||||
%%WWWDIR%%/adm.triggerdisplayoptions.php
|
||||
%%WWWDIR%%/adm.triggerseverities.php
|
||||
%%WWWDIR%%/adm.valuemapping.php
|
||||
%%WWWDIR%%/adm.workingtime.php
|
||||
%%WWWDIR%%/api_jsonrpc.php
|
||||
%%WWWDIR%%/app/.htaccess
|
||||
%%WWWDIR%%/app/controllers/CControllerAcknowledgeCreate.php
|
||||
%%WWWDIR%%/app/controllers/CControllerAcknowledgeEdit.php
|
||||
%%WWWDIR%%/app/controllers/CControllerDashboardAbstract.php
|
||||
%%WWWDIR%%/app/controllers/CControllerDashboardDelete.php
|
||||
%%WWWDIR%%/app/controllers/CControllerDashboardGet.php
|
||||
%%WWWDIR%%/app/controllers/CControllerDashboardList.php
|
||||
%%WWWDIR%%/app/controllers/CControllerDashboardUpdate.php
|
||||
%%WWWDIR%%/app/controllers/CControllerDashboardView.php
|
||||
%%WWWDIR%%/app/controllers/CControllerDashbrdWidgetCheck.php
|
||||
%%WWWDIR%%/app/controllers/CControllerDashbrdWidgetConfig.php
|
||||
%%WWWDIR%%/app/controllers/CControllerDashbrdWidgetRfRate.php
|
||||
%%WWWDIR%%/app/controllers/CControllerDashbrdWidgetUpdate.php
|
||||
%%WWWDIR%%/app/controllers/CControllerDiscoveryView.php
|
||||
%%WWWDIR%%/app/controllers/CControllerFavouriteCreate.php
|
||||
%%WWWDIR%%/app/controllers/CControllerFavouriteDelete.php
|
||||
%%WWWDIR%%/app/controllers/CControllerMapView.php
|
||||
%%WWWDIR%%/app/controllers/CControllerMediatypeCreate.php
|
||||
%%WWWDIR%%/app/controllers/CControllerMediatypeDelete.php
|
||||
%%WWWDIR%%/app/controllers/CControllerMediatypeDisable.php
|
||||
%%WWWDIR%%/app/controllers/CControllerMediatypeEdit.php
|
||||
%%WWWDIR%%/app/controllers/CControllerMediatypeEnable.php
|
||||
%%WWWDIR%%/app/controllers/CControllerMediatypeList.php
|
||||
%%WWWDIR%%/app/controllers/CControllerMediatypeUpdate.php
|
||||
%%WWWDIR%%/app/controllers/CControllerProblemView.php
|
||||
%%WWWDIR%%/app/controllers/CControllerProfileUpdate.php
|
||||
%%WWWDIR%%/app/controllers/CControllerProxyCreate.php
|
||||
%%WWWDIR%%/app/controllers/CControllerProxyDelete.php
|
||||
%%WWWDIR%%/app/controllers/CControllerProxyEdit.php
|
||||
%%WWWDIR%%/app/controllers/CControllerProxyHostDisable.php
|
||||
%%WWWDIR%%/app/controllers/CControllerProxyHostEnable.php
|
||||
%%WWWDIR%%/app/controllers/CControllerProxyList.php
|
||||
%%WWWDIR%%/app/controllers/CControllerProxyUpdate.php
|
||||
%%WWWDIR%%/app/controllers/CControllerReportServices.php
|
||||
%%WWWDIR%%/app/controllers/CControllerReportStatus.php
|
||||
%%WWWDIR%%/app/controllers/CControllerScriptCreate.php
|
||||
%%WWWDIR%%/app/controllers/CControllerScriptDelete.php
|
||||
%%WWWDIR%%/app/controllers/CControllerScriptEdit.php
|
||||
%%WWWDIR%%/app/controllers/CControllerScriptList.php
|
||||
%%WWWDIR%%/app/controllers/CControllerScriptUpdate.php
|
||||
%%WWWDIR%%/app/controllers/CControllerSystemWarning.php
|
||||
%%WWWDIR%%/app/controllers/CControllerWebView.php
|
||||
%%WWWDIR%%/app/controllers/CControllerWidgetDiscoveryView.php
|
||||
%%WWWDIR%%/app/controllers/CControllerWidgetHostsView.php
|
||||
%%WWWDIR%%/app/controllers/CControllerWidgetStatusView.php
|
||||
%%WWWDIR%%/app/controllers/CControllerWidgetSystemView.php
|
||||
%%WWWDIR%%/app/controllers/CControllerWidgetWebView.php
|
||||
%%WWWDIR%%/app/controllers/CControllerWidget.php
|
||||
%%WWWDIR%%/app/controllers/CControllerWidgetActionLogView.php
|
||||
%%WWWDIR%%/app/controllers/CControllerWidgetClockView.php
|
||||
%%WWWDIR%%/app/controllers/CControllerWidgetDataOverView.php
|
||||
%%WWWDIR%%/app/controllers/CControllerWidgetFavGraphsView.php
|
||||
%%WWWDIR%%/app/controllers/CControllerWidgetFavMapsView.php
|
||||
%%WWWDIR%%/app/controllers/CControllerWidgetFavScreensView.php
|
||||
%%WWWDIR%%/app/controllers/CControllerWidgetGraphView.php
|
||||
%%WWWDIR%%/app/controllers/CControllerWidgetNavigationtreeItemEdit.php
|
||||
%%WWWDIR%%/app/controllers/CControllerWidgetNavigationtreeItemEditDialog.php
|
||||
%%WWWDIR%%/app/controllers/CControllerWidgetNavigationtreeView.php
|
||||
%%WWWDIR%%/app/controllers/CControllerWidgetPlainTextView.php
|
||||
%%WWWDIR%%/app/controllers/CControllerWidgetProblemsView.php
|
||||
%%WWWDIR%%/app/controllers/CControllerWidgetSysmapView.php
|
||||
%%WWWDIR%%/app/controllers/CControllerWidgetTrigOverView.php
|
||||
%%WWWDIR%%/app/controllers/CControllerWidgetUrlView.php
|
||||
%%WWWDIR%%/app/views/administration.mediatype.edit.js.php
|
||||
%%WWWDIR%%/app/views/administration.mediatype.edit.php
|
||||
%%WWWDIR%%/app/views/administration.mediatype.list.php
|
||||
%%WWWDIR%%/app/views/administration.proxy.edit.js.php
|
||||
%%WWWDIR%%/app/views/administration.proxy.edit.php
|
||||
%%WWWDIR%%/app/views/administration.proxy.list.php
|
||||
%%WWWDIR%%/app/views/administration.script.edit.js.php
|
||||
%%WWWDIR%%/app/views/administration.script.edit.php
|
||||
%%WWWDIR%%/app/views/administration.script.list.php
|
||||
%%WWWDIR%%/app/views/layout.csv.php
|
||||
%%WWWDIR%%/app/views/layout.htmlpage.footer.php
|
||||
%%WWWDIR%%/app/views/layout.htmlpage.header.php
|
||||
%%WWWDIR%%/app/views/layout.htmlpage.menu.php
|
||||
%%WWWDIR%%/app/views/layout.htmlpage.php
|
||||
%%WWWDIR%%/app/views/layout.javascript.php
|
||||
%%WWWDIR%%/app/views/layout.json.php
|
||||
%%WWWDIR%%/app/views/layout.warning.php
|
||||
%%WWWDIR%%/app/views/layout.widget.php
|
||||
%%WWWDIR%%/app/views/monitoring.acknowledge.edit.js.php
|
||||
%%WWWDIR%%/app/views/monitoring.acknowledge.edit.php
|
||||
%%WWWDIR%%/app/views/monitoring.dashboard.view.php
|
||||
%%WWWDIR%%/app/views/monitoring.dashboard.breadcrumbs.php
|
||||
%%WWWDIR%%/app/views/monitoring.dashboard.config.php
|
||||
%%WWWDIR%%/app/views/monitoring.dashboard.edit_form.js.php
|
||||
%%WWWDIR%%/app/views/monitoring.dashboard.edit_form.php
|
||||
%%WWWDIR%%/app/views/monitoring.dashboard.list.php
|
||||
%%WWWDIR%%/app/views/monitoring.dashboard.sharing_form.js.php
|
||||
%%WWWDIR%%/app/views/monitoring.dashboard.sharing_form.php
|
||||
%%WWWDIR%%/app/views/monitoring.dashboard.view.js.php
|
||||
%%WWWDIR%%/app/views/monitoring.discovery.view.php
|
||||
%%WWWDIR%%/app/views/monitoring.map.view.php
|
||||
%%WWWDIR%%/app/views/monitoring.problem.view.js.php
|
||||
%%WWWDIR%%/app/views/monitoring.problem.view.php
|
||||
%%WWWDIR%%/app/views/monitoring.web.view.php
|
||||
%%WWWDIR%%/app/views/monitoring.widget.discovery.view.php
|
||||
%%WWWDIR%%/app/views/monitoring.widget.hosts.view.php
|
||||
%%WWWDIR%%/app/views/monitoring.widget.status.view.php
|
||||
%%WWWDIR%%/app/views/monitoring.widget.system.view.php
|
||||
%%WWWDIR%%/app/views/monitoring.widget.web.view.php
|
||||
%%WWWDIR%%/app/views/monitoring.widget.actionlog.view.php
|
||||
%%WWWDIR%%/app/views/monitoring.widget.clock.view.php
|
||||
%%WWWDIR%%/app/views/monitoring.widget.dataover.view.php
|
||||
%%WWWDIR%%/app/views/monitoring.widget.favgraphs.view.php
|
||||
%%WWWDIR%%/app/views/monitoring.widget.favmaps.view.php
|
||||
%%WWWDIR%%/app/views/monitoring.widget.favscreens.view.php
|
||||
%%WWWDIR%%/app/views/monitoring.widget.graph.view.php
|
||||
%%WWWDIR%%/app/views/monitoring.widget.navigationtree.view.php
|
||||
%%WWWDIR%%/app/views/monitoring.widget.plaintext.view.php
|
||||
%%WWWDIR%%/app/views/monitoring.widget.problems.view.php
|
||||
%%WWWDIR%%/app/views/monitoring.widget.sysmap.view.php
|
||||
%%WWWDIR%%/app/views/monitoring.widget.trigover.view.php
|
||||
%%WWWDIR%%/app/views/monitoring.widget.url.view.php
|
||||
%%WWWDIR%%/app/views/report.services.php
|
||||
%%WWWDIR%%/app/views/report.status.php
|
||||
%%WWWDIR%%/app/views/system.warning.php
|
||||
%%WWWDIR%%/applications.php
|
||||
%%WWWDIR%%/audio/alarm_average.wav
|
||||
%%WWWDIR%%/audio/alarm_disaster.wav
|
||||
%%WWWDIR%%/audio/alarm_high.wav
|
||||
%%WWWDIR%%/audio/alarm_information.wav
|
||||
%%WWWDIR%%/audio/alarm_ok.wav
|
||||
%%WWWDIR%%/audio/alarm_warning.wav
|
||||
%%WWWDIR%%/audio/no_sound.wav
|
||||
%%WWWDIR%%/auditacts.php
|
||||
%%WWWDIR%%/auditlogs.php
|
||||
%%WWWDIR%%/authentication.php
|
||||
%%WWWDIR%%/browserwarning.php
|
||||
%%WWWDIR%%/chart.php
|
||||
%%WWWDIR%%/chart2.php
|
||||
%%WWWDIR%%/chart3.php
|
||||
%%WWWDIR%%/chart4.php
|
||||
%%WWWDIR%%/chart5.php
|
||||
%%WWWDIR%%/chart6.php
|
||||
%%WWWDIR%%/chart7.php
|
||||
%%WWWDIR%%/charts.php
|
||||
%%WWWDIR%%/conf.import.php
|
||||
%%WWWDIR%%/conf/.htaccess
|
||||
%%WWWDIR%%/conf/maintenance.inc.php
|
||||
%%WWWDIR%%/conf/zabbix.conf.php.example
|
||||
%%WWWDIR%%/correlation.php
|
||||
%%WWWDIR%%/disc_prototypes.php
|
||||
%%WWWDIR%%/discoveryconf.php
|
||||
%%WWWDIR%%/favicon.ico
|
||||
%%WWWDIR%%/fonts/DejaVuSans.ttf
|
||||
%%WWWDIR%%/graphs.php
|
||||
%%WWWDIR%%/history.php
|
||||
%%WWWDIR%%/host_discovery.php
|
||||
%%WWWDIR%%/host_prototypes.php
|
||||
%%WWWDIR%%/host_screen.php
|
||||
%%WWWDIR%%/hostgroups.php
|
||||
%%WWWDIR%%/hostinventories.php
|
||||
%%WWWDIR%%/hostinventoriesoverview.php
|
||||
%%WWWDIR%%/hosts.php
|
||||
%%WWWDIR%%/httpconf.php
|
||||
%%WWWDIR%%/httpdetails.php
|
||||
%%WWWDIR%%/image.php
|
||||
%%WWWDIR%%/images/general/arrow_down.png
|
||||
%%WWWDIR%%/images/general/arrow_up.png
|
||||
%%WWWDIR%%/images/general/no_icon.png
|
||||
%%WWWDIR%%/images/general/tr_space.gif
|
||||
%%WWWDIR%%/images/general/tr_top_bottom.gif
|
||||
%%WWWDIR%%/images/general/tr_top_right.gif
|
||||
%%WWWDIR%%/images/general/tr_top_right_bottom.gif
|
||||
%%WWWDIR%%/images/general/tree/zero.gif
|
||||
%%WWWDIR%%/img/apple-touch-icon-120x120-precomposed.png
|
||||
%%WWWDIR%%/img/apple-touch-icon-152x152-precomposed.png
|
||||
%%WWWDIR%%/img/apple-touch-icon-180x180-precomposed.png
|
||||
%%WWWDIR%%/img/apple-touch-icon-76x76-precomposed.png
|
||||
%%WWWDIR%%/img/browser-sprite.png
|
||||
%%WWWDIR%%/img/icon-sprite.svg
|
||||
%%WWWDIR%%/img/ms-tile-144x144.png
|
||||
%%WWWDIR%%/img/touch-icon-192x192.png
|
||||
%%WWWDIR%%/imgstore.php
|
||||
%%WWWDIR%%/include/.htaccess
|
||||
%%WWWDIR%%/include/acknow.inc.php
|
||||
%%WWWDIR%%/include/actions.inc.php
|
||||
%%WWWDIR%%/include/audit.inc.php
|
||||
%%WWWDIR%%/include/blocks.inc.php
|
||||
%%WWWDIR%%/include/classes/api/API.php
|
||||
%%WWWDIR%%/include/classes/api/APIException.php
|
||||
%%WWWDIR%%/include/classes/api/CApiClientResponse.php
|
||||
%%WWWDIR%%/include/classes/api/CApiService.php
|
||||
%%WWWDIR%%/include/classes/api/CApiServiceFactory.php
|
||||
%%WWWDIR%%/include/classes/api/CAudit.php
|
||||
%%WWWDIR%%/include/classes/api/CRelationMap.php
|
||||
%%WWWDIR%%/include/classes/api/clients/CApiClient.php
|
||||
%%WWWDIR%%/include/classes/api/clients/CLocalApiClient.php
|
||||
%%WWWDIR%%/include/classes/api/managers/CApplicationManager.php
|
||||
%%WWWDIR%%/include/classes/api/services/CDashboard.php
|
||||
%%WWWDIR%%/include/classes/api/managers/CHistoryManager.php
|
||||
%%WWWDIR%%/include/classes/api/managers/CHttpTestManager.php
|
||||
%%WWWDIR%%/include/classes/api/services/CAPIInfo.php
|
||||
%%WWWDIR%%/include/classes/api/services/CAction.php
|
||||
%%WWWDIR%%/include/classes/api/services/CAlert.php
|
||||
%%WWWDIR%%/include/classes/api/services/CApplication.php
|
||||
%%WWWDIR%%/include/classes/api/services/CConfiguration.php
|
||||
%%WWWDIR%%/include/classes/api/services/CCorrelation.php
|
||||
%%WWWDIR%%/include/classes/api/services/CDCheck.php
|
||||
%%WWWDIR%%/include/classes/api/services/CDHost.php
|
||||
%%WWWDIR%%/include/classes/api/services/CDRule.php
|
||||
%%WWWDIR%%/include/classes/api/services/CDService.php
|
||||
%%WWWDIR%%/include/classes/api/services/CDiscoveryRule.php
|
||||
%%WWWDIR%%/include/classes/api/services/CEvent.php
|
||||
%%WWWDIR%%/include/classes/api/services/CGraph.php
|
||||
%%WWWDIR%%/include/classes/api/services/CGraphGeneral.php
|
||||
%%WWWDIR%%/include/classes/api/services/CGraphItem.php
|
||||
%%WWWDIR%%/include/classes/api/services/CGraphPrototype.php
|
||||
%%WWWDIR%%/include/classes/api/services/CHistory.php
|
||||
%%WWWDIR%%/include/classes/api/services/CHost.php
|
||||
%%WWWDIR%%/include/classes/api/services/CHostBase.php
|
||||
%%WWWDIR%%/include/classes/api/services/CHostGeneral.php
|
||||
%%WWWDIR%%/include/classes/api/services/CHostGroup.php
|
||||
%%WWWDIR%%/include/classes/api/services/CHostInterface.php
|
||||
%%WWWDIR%%/include/classes/api/services/CHostPrototype.php
|
||||
%%WWWDIR%%/include/classes/api/services/CHttpTest.php
|
||||
%%WWWDIR%%/include/classes/api/services/CIconMap.php
|
||||
%%WWWDIR%%/include/classes/api/services/CImage.php
|
||||
%%WWWDIR%%/include/classes/api/services/CItem.php
|
||||
%%WWWDIR%%/include/classes/api/services/CItemGeneral.php
|
||||
%%WWWDIR%%/include/classes/api/services/CItemPrototype.php
|
||||
%%WWWDIR%%/include/classes/api/services/CMaintenance.php
|
||||
%%WWWDIR%%/include/classes/api/services/CMap.php
|
||||
%%WWWDIR%%/include/classes/api/services/CMapElement.php
|
||||
%%WWWDIR%%/include/classes/api/services/CMediatype.php
|
||||
%%WWWDIR%%/include/classes/api/services/CProblem.php
|
||||
%%WWWDIR%%/include/classes/api/services/CProxy.php
|
||||
%%WWWDIR%%/include/classes/api/services/CScreen.php
|
||||
%%WWWDIR%%/include/classes/api/services/CScreenItem.php
|
||||
%%WWWDIR%%/include/classes/api/services/CScript.php
|
||||
%%WWWDIR%%/include/classes/api/services/CService.php
|
||||
%%WWWDIR%%/include/classes/api/services/CTemplate.php
|
||||
%%WWWDIR%%/include/classes/api/services/CTemplateScreen.php
|
||||
%%WWWDIR%%/include/classes/api/services/CTemplateScreenItem.php
|
||||
%%WWWDIR%%/include/classes/api/services/CTrend.php
|
||||
%%WWWDIR%%/include/classes/api/services/CTrigger.php
|
||||
%%WWWDIR%%/include/classes/api/services/CTriggerGeneral.php
|
||||
%%WWWDIR%%/include/classes/api/services/CTriggerPrototype.php
|
||||
%%WWWDIR%%/include/classes/api/services/CUser.php
|
||||
%%WWWDIR%%/include/classes/api/services/CUserGroup.php
|
||||
%%WWWDIR%%/include/classes/api/services/CUserMacro.php
|
||||
%%WWWDIR%%/include/classes/api/services/CUserMedia.php
|
||||
%%WWWDIR%%/include/classes/api/services/CValueMap.php
|
||||
%%WWWDIR%%/include/classes/api/wrappers/CApiWrapper.php
|
||||
%%WWWDIR%%/include/classes/api/wrappers/CFrontendApiWrapper.php
|
||||
%%WWWDIR%%/include/classes/core/CAjaxResponse.php
|
||||
%%WWWDIR%%/include/classes/core/CAutoloader.php
|
||||
%%WWWDIR%%/include/classes/core/CConfigFile.php
|
||||
%%WWWDIR%%/include/classes/core/CHttpRequest.php
|
||||
%%WWWDIR%%/include/classes/core/CJsonRpc.php
|
||||
%%WWWDIR%%/include/classes/core/CRegistryFactory.php
|
||||
%%WWWDIR%%/include/classes/core/CSession.php
|
||||
%%WWWDIR%%/include/classes/core/ConfigFileException.php
|
||||
%%WWWDIR%%/include/classes/core/Manager.php
|
||||
%%WWWDIR%%/include/classes/core/Z.php
|
||||
%%WWWDIR%%/include/classes/core/ZBase.php
|
||||
%%WWWDIR%%/include/classes/db/DB.php
|
||||
%%WWWDIR%%/include/classes/db/DBException.php
|
||||
%%WWWDIR%%/include/classes/db/Db2DbBackend.php
|
||||
%%WWWDIR%%/include/classes/db/DbBackend.php
|
||||
%%WWWDIR%%/include/classes/db/MysqlDbBackend.php
|
||||
%%WWWDIR%%/include/classes/db/OracleDbBackend.php
|
||||
%%WWWDIR%%/include/classes/db/PostgresqlDbBackend.php
|
||||
%%WWWDIR%%/include/classes/debug/CProfiler.php
|
||||
%%WWWDIR%%/include/classes/export/CConfigurationExport.php
|
||||
%%WWWDIR%%/include/classes/export/CConfigurationExportBuilder.php
|
||||
%%WWWDIR%%/include/classes/export/writers/CExportWriter.php
|
||||
%%WWWDIR%%/include/classes/export/writers/CExportWriterFactory.php
|
||||
%%WWWDIR%%/include/classes/export/writers/CJsonExportWriter.php
|
||||
%%WWWDIR%%/include/classes/export/writers/CXmlExportWriter.php
|
||||
%%WWWDIR%%/include/classes/graphdraw/CGraphDraw.php
|
||||
%%WWWDIR%%/include/classes/graphdraw/CLineGraphDraw.php
|
||||
%%WWWDIR%%/include/classes/graphdraw/CPieGraphDraw.php
|
||||
%%WWWDIR%%/include/classes/helpers/CArrayHelper.php
|
||||
%%WWWDIR%%/include/classes/helpers/CConditionHelper.php
|
||||
%%WWWDIR%%/include/classes/helpers/CHtml.php
|
||||
%%WWWDIR%%/include/classes/helpers/CJs.php
|
||||
%%WWWDIR%%/include/classes/helpers/CMenuPopupHelper.php
|
||||
%%WWWDIR%%/include/classes/helpers/CMapHelper.php
|
||||
%%WWWDIR%%/include/classes/helpers/CUploadFile.php
|
||||
%%WWWDIR%%/include/classes/helpers/CViewHelper.php
|
||||
%%WWWDIR%%/include/classes/html/CActionButtonList.php
|
||||
%%WWWDIR%%/include/classes/html/CArea.php
|
||||
%%WWWDIR%%/include/classes/html/CAreaMap.php
|
||||
%%WWWDIR%%/include/classes/html/CButton.php
|
||||
%%WWWDIR%%/include/classes/html/CButtonCancel.php
|
||||
%%WWWDIR%%/include/classes/html/CButtonDelete.php
|
||||
%%WWWDIR%%/include/classes/html/CButtonQMessage.php
|
||||
%%WWWDIR%%/include/classes/html/CDashboardWidgetMap.php
|
||||
%%WWWDIR%%/include/classes/html/CCheckBox.php
|
||||
%%WWWDIR%%/include/classes/html/CClock.php
|
||||
%%WWWDIR%%/include/classes/html/CCol.php
|
||||
%%WWWDIR%%/include/classes/html/CColHeader.php
|
||||
%%WWWDIR%%/include/classes/html/CCollapsibleUiWidget.php
|
||||
%%WWWDIR%%/include/classes/html/CColor.php
|
||||
%%WWWDIR%%/include/classes/html/CColorCell.php
|
||||
%%WWWDIR%%/include/classes/html/CComboBox.php
|
||||
%%WWWDIR%%/include/classes/html/CComboItem.php
|
||||
%%WWWDIR%%/include/classes/html/CDiv.php
|
||||
%%WWWDIR%%/include/classes/html/CFile.php
|
||||
%%WWWDIR%%/include/classes/html/CFilter.php
|
||||
%%WWWDIR%%/include/classes/html/CForm.php
|
||||
%%WWWDIR%%/include/classes/html/CFormList.php
|
||||
%%WWWDIR%%/include/classes/html/CHorList.php
|
||||
%%WWWDIR%%/include/classes/html/CIFrame.php
|
||||
%%WWWDIR%%/include/classes/html/CIcon.php
|
||||
%%WWWDIR%%/include/classes/html/CImageTextTable.php
|
||||
%%WWWDIR%%/include/classes/html/CImg.php
|
||||
%%WWWDIR%%/include/classes/html/CInput.php
|
||||
%%WWWDIR%%/include/classes/html/CJsScript.php
|
||||
%%WWWDIR%%/include/classes/html/CLabel.php
|
||||
%%WWWDIR%%/include/classes/html/CLink.php
|
||||
%%WWWDIR%%/include/classes/html/CList.php
|
||||
%%WWWDIR%%/include/classes/html/CListBox.php
|
||||
%%WWWDIR%%/include/classes/html/CListItem.php
|
||||
%%WWWDIR%%/include/classes/html/CMultiSelect.php
|
||||
%%WWWDIR%%/include/classes/html/CNavigationTree.php
|
||||
%%WWWDIR%%/include/classes/html/CNumericBox.php
|
||||
%%WWWDIR%%/include/classes/html/CObject.php
|
||||
%%WWWDIR%%/include/classes/html/CParam.php
|
||||
%%WWWDIR%%/include/classes/html/CPassBox.php
|
||||
%%WWWDIR%%/include/classes/html/CPre.php
|
||||
%%WWWDIR%%/include/classes/html/CRadioButtonList.php
|
||||
%%WWWDIR%%/include/classes/html/CRedirectButton.php
|
||||
%%WWWDIR%%/include/classes/html/CRow.php
|
||||
%%WWWDIR%%/include/classes/html/CRowHeader.php
|
||||
%%WWWDIR%%/include/classes/html/CSeverity.php
|
||||
%%WWWDIR%%/include/classes/html/CSimpleButton.php
|
||||
%%WWWDIR%%/include/classes/html/CSpan.php
|
||||
%%WWWDIR%%/include/classes/html/CSubmit.php
|
||||
%%WWWDIR%%/include/classes/html/CSubmitButton.php
|
||||
%%WWWDIR%%/include/classes/html/CSup.php
|
||||
%%WWWDIR%%/include/classes/html/CTabView.php
|
||||
%%WWWDIR%%/include/classes/html/CTable.php
|
||||
%%WWWDIR%%/include/classes/html/CTableInfo.php
|
||||
%%WWWDIR%%/include/classes/html/CTag.php
|
||||
%%WWWDIR%%/include/classes/html/CTextArea.php
|
||||
%%WWWDIR%%/include/classes/html/CTextBox.php
|
||||
%%WWWDIR%%/include/classes/html/CTriggersInfo.php
|
||||
%%WWWDIR%%/include/classes/html/CTweenBox.php
|
||||
%%WWWDIR%%/include/classes/html/CUiWidget.php
|
||||
%%WWWDIR%%/include/classes/html/CVar.php
|
||||
%%WWWDIR%%/include/classes/html/CVisibilityBox.php
|
||||
%%WWWDIR%%/include/classes/html/CWarning.php
|
||||
%%WWWDIR%%/include/classes/html/interfaces/CButtonInterface.php
|
||||
%%WWWDIR%%/include/classes/html/pageheader/CPageHeader.php
|
||||
%%WWWDIR%%/include/classes/html/widget/CWidget.php
|
||||
%%WWWDIR%%/include/classes/import/CConfigurationImport.php
|
||||
%%WWWDIR%%/include/classes/import/CImportDataAdapter.php
|
||||
%%WWWDIR%%/include/classes/import/CImportReferencer.php
|
||||
%%WWWDIR%%/include/classes/import/CImportedObjectContainer.php
|
||||
%%WWWDIR%%/include/classes/import/converters/C10ImportConverter.php
|
||||
%%WWWDIR%%/include/classes/import/converters/C10ItemKeyConverter.php
|
||||
%%WWWDIR%%/include/classes/import/converters/C10TriggerConverter.php
|
||||
%%WWWDIR%%/include/classes/import/converters/C20ImportConverter.php
|
||||
%%WWWDIR%%/include/classes/import/converters/C20ItemKeyConverter.php
|
||||
%%WWWDIR%%/include/classes/import/converters/C20TriggerConverter.php
|
||||
%%WWWDIR%%/include/classes/import/converters/C30ImportConverter.php
|
||||
%%WWWDIR%%/include/classes/import/converters/CConverter.php
|
||||
%%WWWDIR%%/include/classes/import/converters/CConverterChain.php
|
||||
%%WWWDIR%%/include/classes/import/converters/CImportConverterFactory.php
|
||||
%%WWWDIR%%/include/classes/import/converters/C32ImportConverter.php
|
||||
%%WWWDIR%%/include/classes/import/importers/CAbstractScreenImporter.php
|
||||
%%WWWDIR%%/include/classes/import/importers/CHostImporter.php
|
||||
%%WWWDIR%%/include/classes/import/importers/CImporter.php
|
||||
%%WWWDIR%%/include/classes/import/importers/CMapImporter.php
|
||||
%%WWWDIR%%/include/classes/import/importers/CScreenImporter.php
|
||||
%%WWWDIR%%/include/classes/import/importers/CTemplateImporter.php
|
||||
%%WWWDIR%%/include/classes/import/importers/CTemplateScreenImporter.php
|
||||
%%WWWDIR%%/include/classes/import/readers/CImportReader.php
|
||||
%%WWWDIR%%/include/classes/import/readers/CImportReaderFactory.php
|
||||
%%WWWDIR%%/include/classes/import/readers/CJsonImportReader.php
|
||||
%%WWWDIR%%/include/classes/import/readers/CXmlImportReader.php
|
||||
%%WWWDIR%%/include/classes/import/validators/C10XmlValidator.php
|
||||
%%WWWDIR%%/include/classes/import/validators/C20XmlValidator.php
|
||||
%%WWWDIR%%/include/classes/import/validators/C30XmlValidator.php
|
||||
%%WWWDIR%%/include/classes/import/validators/C32XmlValidator.php
|
||||
%%WWWDIR%%/include/classes/import/validators/C34XmlValidator.php
|
||||
%%WWWDIR%%/include/classes/import/validators/CXmlValidator.php
|
||||
%%WWWDIR%%/include/classes/import/validators/CXmlValidatorGeneral.php
|
||||
%%WWWDIR%%/include/classes/items/CHelpItems.php
|
||||
%%WWWDIR%%/include/classes/json/CJson.php
|
||||
%%WWWDIR%%/include/classes/ldap/CLdap.php
|
||||
%%WWWDIR%%/include/classes/macros/CMacrosResolver.php
|
||||
%%WWWDIR%%/include/classes/macros/CMacrosResolverGeneral.php
|
||||
%%WWWDIR%%/include/classes/macros/CMacrosResolverHelper.php
|
||||
%%WWWDIR%%/include/classes/mvc/CController.php
|
||||
%%WWWDIR%%/include/classes/mvc/CControllerResponse.php
|
||||
%%WWWDIR%%/include/classes/mvc/CControllerResponseData.php
|
||||
%%WWWDIR%%/include/classes/mvc/CControllerResponseFatal.php
|
||||
%%WWWDIR%%/include/classes/mvc/CControllerResponseRedirect.php
|
||||
%%WWWDIR%%/include/classes/mvc/CRouter.php
|
||||
%%WWWDIR%%/include/classes/mvc/CView.php
|
||||
%%WWWDIR%%/include/classes/pagefilter/CPageFilter.php
|
||||
%%WWWDIR%%/include/classes/parsers/CDnsParser.php
|
||||
%%WWWDIR%%/include/classes/parsers/CFlexibleIntervalParser.php
|
||||
%%WWWDIR%%/include/classes/parsers/CIPParser.php
|
||||
%%WWWDIR%%/include/classes/parsers/CIPRangeParser.php
|
||||
%%WWWDIR%%/include/classes/parsers/CIPv4Parser.php
|
||||
%%WWWDIR%%/include/classes/parsers/CIPv6Parser.php
|
||||
%%WWWDIR%%/include/classes/parsers/CSchedulingIntervalParser.php
|
||||
%%WWWDIR%%/include/classes/parsers/CSimpleIntervalParser.php
|
||||
%%WWWDIR%%/include/classes/parsers/CTimePeriodParser.php
|
||||
%%WWWDIR%%/include/classes/parsers/CTimePeriodsParser.php
|
||||
%%WWWDIR%%/include/classes/parsers/CUpdateIntervalParser.php
|
||||
%%WWWDIR%%/include/classes/parsers/CConditionFormula.php
|
||||
%%WWWDIR%%/include/classes/parsers/CFunctionIdParser.php
|
||||
%%WWWDIR%%/include/classes/parsers/CFunctionMacroParser.php
|
||||
%%WWWDIR%%/include/classes/parsers/CFunctionParser.php
|
||||
%%WWWDIR%%/include/classes/parsers/CItemKey.php
|
||||
%%WWWDIR%%/include/classes/parsers/CLLDMacroParser.php
|
||||
%%WWWDIR%%/include/classes/parsers/CMacroFunctionParser.php
|
||||
%%WWWDIR%%/include/classes/parsers/CMacroParser.php
|
||||
%%WWWDIR%%/include/classes/parsers/CParser.php
|
||||
%%WWWDIR%%/include/classes/parsers/CReferenceParser.php
|
||||
%%WWWDIR%%/include/classes/parsers/CReplacementParser.php
|
||||
%%WWWDIR%%/include/classes/parsers/CSetParser.php
|
||||
%%WWWDIR%%/include/classes/parsers/CTriggerExpression.php
|
||||
%%WWWDIR%%/include/classes/parsers/CUserMacroParser.php
|
||||
%%WWWDIR%%/include/classes/parsers/CValidationRule.php
|
||||
%%WWWDIR%%/include/classes/parsers/results/CParserResult.php
|
||||
%%WWWDIR%%/include/classes/parsers/results/CTriggerExpressionParserResult.php
|
||||
%%WWWDIR%%/include/classes/regexp/CGlobalRegexp.php
|
||||
%%WWWDIR%%/include/classes/routing/CUrl.php
|
||||
%%WWWDIR%%/include/classes/routing/CUrlFactory.php
|
||||
%%WWWDIR%%/include/classes/screens/CScreenActions.php
|
||||
%%WWWDIR%%/include/classes/screens/CScreenBase.php
|
||||
%%WWWDIR%%/include/classes/screens/CScreenBuilder.php
|
||||
%%WWWDIR%%/include/classes/screens/CScreenChart.php
|
||||
%%WWWDIR%%/include/classes/screens/CScreenClock.php
|
||||
%%WWWDIR%%/include/classes/screens/CScreenDataOverview.php
|
||||
%%WWWDIR%%/include/classes/screens/CScreenDiscovery.php
|
||||
%%WWWDIR%%/include/classes/screens/CScreenEvents.php
|
||||
%%WWWDIR%%/include/classes/screens/CScreenGraph.php
|
||||
%%WWWDIR%%/include/classes/screens/CScreenHistory.php
|
||||
%%WWWDIR%%/include/classes/screens/CScreenHostTriggers.php
|
||||
%%WWWDIR%%/include/classes/screens/CScreenHostgroupTriggers.php
|
||||
%%WWWDIR%%/include/classes/screens/CScreenHostsInfo.php
|
||||
%%WWWDIR%%/include/classes/screens/CScreenHttpTest.php
|
||||
%%WWWDIR%%/include/classes/screens/CScreenHttpTestDetails.php
|
||||
%%WWWDIR%%/include/classes/screens/CScreenLldGraph.php
|
||||
%%WWWDIR%%/include/classes/screens/CScreenLldGraphBase.php
|
||||
%%WWWDIR%%/include/classes/screens/CScreenLldSimpleGraph.php
|
||||
%%WWWDIR%%/include/classes/screens/CScreenMap.php
|
||||
%%WWWDIR%%/include/classes/screens/CScreenPlainText.php
|
||||
%%WWWDIR%%/include/classes/screens/CScreenProblem.php
|
||||
%%WWWDIR%%/include/classes/screens/CScreenScreen.php
|
||||
%%WWWDIR%%/include/classes/screens/CScreenServerInfo.php
|
||||
%%WWWDIR%%/include/classes/screens/CScreenSimpleGraph.php
|
||||
%%WWWDIR%%/include/classes/screens/CScreenSystemStatus.php
|
||||
%%WWWDIR%%/include/classes/screens/CScreenTriggersInfo.php
|
||||
%%WWWDIR%%/include/classes/screens/CScreenTriggersOverview.php
|
||||
%%WWWDIR%%/include/classes/screens/CScreenUrl.php
|
||||
%%WWWDIR%%/include/classes/server/CZabbixServer.php
|
||||
%%WWWDIR%%/include/classes/services/CServicesSlaCalculator.php
|
||||
%%WWWDIR%%/include/classes/setup/CFrontendSetup.php
|
||||
%%WWWDIR%%/include/classes/setup/CSetupWizard.php
|
||||
%%WWWDIR%%/include/classes/tree/CServiceTree.php
|
||||
%%WWWDIR%%/include/classes/tree/CTree.php
|
||||
%%WWWDIR%%/include/classes/triggers/CTextTriggerConstructor.php
|
||||
%%WWWDIR%%/include/classes/user/CFavorite.php
|
||||
%%WWWDIR%%/include/classes/user/CProfile.php
|
||||
%%WWWDIR%%/include/classes/user/CWebUser.php
|
||||
%%WWWDIR%%/include/classes/validators/CActionCondValidator.php
|
||||
%%WWWDIR%%/include/classes/validators/CApiInputValidator.php
|
||||
%%WWWDIR%%/include/classes/validators/CCollectionValidator.php
|
||||
%%WWWDIR%%/include/classes/validators/CColorValidator.php
|
||||
%%WWWDIR%%/include/classes/validators/CDecimalStringValidator.php
|
||||
%%WWWDIR%%/include/classes/validators/CDecimalValidator.php
|
||||
%%WWWDIR%%/include/classes/validators/CFunctionValidator.php
|
||||
%%WWWDIR%%/include/classes/validators/CIdValidator.php
|
||||
%%WWWDIR%%/include/classes/validators/CLdapAuthValidator.php
|
||||
%%WWWDIR%%/include/classes/validators/CLimitedSetValidator.php
|
||||
%%WWWDIR%%/include/classes/validators/CNewValidator.php
|
||||
%%WWWDIR%%/include/classes/validators/CPartialValidatorInterface.php
|
||||
%%WWWDIR%%/include/classes/validators/CRegexValidator.php
|
||||
%%WWWDIR%%/include/classes/validators/CStringValidator.php
|
||||
%%WWWDIR%%/include/classes/validators/CValidator.php
|
||||
%%WWWDIR%%/include/classes/validators/event/CEventSourceObjectValidator.php
|
||||
%%WWWDIR%%/include/classes/validators/host/CHostNormalValidator.php
|
||||
%%WWWDIR%%/include/classes/validators/hostgroup/CHostGroupNameValidator.php
|
||||
%%WWWDIR%%/include/classes/validators/hostgroup/CHostGroupNormalValidator.php
|
||||
%%WWWDIR%%/include/classes/validators/object/CConditionValidator.php
|
||||
%%WWWDIR%%/include/classes/validators/object/CUpdateDiscoveredValidator.php
|
||||
%%WWWDIR%%/include/classes/validators/schema/CPartialSchemaValidator.php
|
||||
%%WWWDIR%%/include/classes/validators/schema/CSchemaValidator.php
|
||||
%%WWWDIR%%/include/classes/validators/string/CLldMacroStringValidator.php
|
||||
%%WWWDIR%%/include/classes/widgetfields/CWidgetField.php
|
||||
%%WWWDIR%%/include/classes/widgetfields/CWidgetFieldCheckBox.php
|
||||
%%WWWDIR%%/include/classes/widgetfields/CWidgetFieldComboBox.php
|
||||
%%WWWDIR%%/include/classes/widgetfields/CWidgetFieldGroup.php
|
||||
%%WWWDIR%%/include/classes/widgetfields/CWidgetFieldHidden.php
|
||||
%%WWWDIR%%/include/classes/widgetfields/CWidgetFieldHost.php
|
||||
%%WWWDIR%%/include/classes/widgetfields/CWidgetFieldNumericBox.php
|
||||
%%WWWDIR%%/include/classes/widgetfields/CWidgetFieldRadioButtonList.php
|
||||
%%WWWDIR%%/include/classes/widgetfields/CWidgetFieldReference.php
|
||||
%%WWWDIR%%/include/classes/widgetfields/CWidgetFieldSelectResource.php
|
||||
%%WWWDIR%%/include/classes/widgetfields/CWidgetFieldSeverities.php
|
||||
%%WWWDIR%%/include/classes/widgetfields/CWidgetFieldTags.php
|
||||
%%WWWDIR%%/include/classes/widgetfields/CWidgetFieldTextBox.php
|
||||
%%WWWDIR%%/include/classes/widgetfields/CWidgetFieldWidgetListComboBox.php
|
||||
%%WWWDIR%%/include/classes/widgets/CActionLogWidgetForm.php
|
||||
%%WWWDIR%%/include/classes/widgets/CClockWidgetForm.php
|
||||
%%WWWDIR%%/include/classes/widgets/CDataOverviewWidgetForm.php
|
||||
%%WWWDIR%%/include/classes/widgets/CGraphWidgetForm.php
|
||||
%%WWWDIR%%/include/classes/widgets/CHostsWidgetForm.php
|
||||
%%WWWDIR%%/include/classes/widgets/CNavigationWidgetForm.php
|
||||
%%WWWDIR%%/include/classes/widgets/CPlainTextWidgetForm.php
|
||||
%%WWWDIR%%/include/classes/widgets/CProblemsWidgetForm.php
|
||||
%%WWWDIR%%/include/classes/widgets/CSysmapWidgetForm.php
|
||||
%%WWWDIR%%/include/classes/widgets/CSystemWidgetForm.php
|
||||
%%WWWDIR%%/include/classes/widgets/CTrigOverviewWidgetForm.php
|
||||
%%WWWDIR%%/include/classes/widgets/CUrlWidgetForm.php
|
||||
%%WWWDIR%%/include/classes/widgets/CWebWidgetForm.php
|
||||
%%WWWDIR%%/include/classes/widgets/CWidgetConfig.php
|
||||
%%WWWDIR%%/include/classes/widgets/CWidgetForm.php
|
||||
%%WWWDIR%%/include/hostgroups.inc.php
|
||||
%%WWWDIR%%/include/config.inc.php
|
||||
%%WWWDIR%%/include/correlation.inc.php
|
||||
%%WWWDIR%%/include/db.inc.php
|
||||
%%WWWDIR%%/include/debug.inc.php
|
||||
%%WWWDIR%%/include/defines.inc.php
|
||||
%%WWWDIR%%/include/discovery.inc.php
|
||||
%%WWWDIR%%/include/draw.inc.php
|
||||
%%WWWDIR%%/include/events.inc.php
|
||||
%%WWWDIR%%/include/forms.inc.php
|
||||
%%WWWDIR%%/include/func.inc.php
|
||||
%%WWWDIR%%/include/gettextwrapper.inc.php
|
||||
%%WWWDIR%%/include/graphs.inc.php
|
||||
%%WWWDIR%%/include/hosts.inc.php
|
||||
%%WWWDIR%%/include/html.inc.php
|
||||
%%WWWDIR%%/include/httptest.inc.php
|
||||
%%WWWDIR%%/include/ident.inc.php
|
||||
%%WWWDIR%%/include/images.inc.php
|
||||
%%WWWDIR%%/include/items.inc.php
|
||||
%%WWWDIR%%/include/js.inc.php
|
||||
%%WWWDIR%%/include/locales.inc.php
|
||||
%%WWWDIR%%/include/maintenances.inc.php
|
||||
%%WWWDIR%%/include/maps.inc.php
|
||||
%%WWWDIR%%/include/media.inc.php
|
||||
%%WWWDIR%%/include/menu.inc.php
|
||||
%%WWWDIR%%/include/page_footer.php
|
||||
%%WWWDIR%%/include/page_header.php
|
||||
%%WWWDIR%%/include/perm.inc.php
|
||||
%%WWWDIR%%/include/profiles.inc.php
|
||||
%%WWWDIR%%/include/regexp.inc.php
|
||||
%%WWWDIR%%/include/schema.inc.php
|
||||
%%WWWDIR%%/include/screens.inc.php
|
||||
%%WWWDIR%%/include/services.inc.php
|
||||
%%WWWDIR%%/include/sounds.inc.php
|
||||
%%WWWDIR%%/include/translateDefines.inc.php
|
||||
%%WWWDIR%%/include/triggers.inc.php
|
||||
%%WWWDIR%%/include/users.inc.php
|
||||
%%WWWDIR%%/include/validate.inc.php
|
||||
%%WWWDIR%%/include/valuemap.inc.php
|
||||
%%WWWDIR%%/include/views/administration.auditacts.list.php
|
||||
%%WWWDIR%%/include/views/administration.auditlogs.list.php
|
||||
%%WWWDIR%%/include/views/administration.authentication.edit.php
|
||||
%%WWWDIR%%/include/views/administration.general.gui.edit.php
|
||||
%%WWWDIR%%/include/views/administration.general.housekeeper.edit.php
|
||||
%%WWWDIR%%/include/views/administration.general.iconmap.edit.php
|
||||
%%WWWDIR%%/include/views/administration.general.iconmap.list.php
|
||||
%%WWWDIR%%/include/views/administration.general.image.edit.php
|
||||
%%WWWDIR%%/include/views/administration.general.image.list.php
|
||||
%%WWWDIR%%/include/views/administration.general.macros.edit.php
|
||||
%%WWWDIR%%/include/views/administration.general.other.edit.php
|
||||
%%WWWDIR%%/include/views/administration.general.regularexpressions.edit.php
|
||||
%%WWWDIR%%/include/views/administration.general.regularexpressions.list.php
|
||||
%%WWWDIR%%/include/views/administration.general.trigger.options.edit.php
|
||||
%%WWWDIR%%/include/views/administration.general.triggerSeverity.edit.php
|
||||
%%WWWDIR%%/include/views/administration.general.valuemapping.edit.php
|
||||
%%WWWDIR%%/include/views/administration.general.valuemapping.list.php
|
||||
%%WWWDIR%%/include/views/administration.general.workingtime.edit.php
|
||||
%%WWWDIR%%/include/views/administration.usergroups.edit.php
|
||||
%%WWWDIR%%/include/views/administration.usergroups.list.php
|
||||
%%WWWDIR%%/include/views/administration.users.edit.php
|
||||
%%WWWDIR%%/include/views/administration.users.list.php
|
||||
%%WWWDIR%%/include/views/common.filter.trigger.php
|
||||
%%WWWDIR%%/include/views/conf.import.php
|
||||
%%WWWDIR%%/include/views/configuration.action.edit.php
|
||||
%%WWWDIR%%/include/views/configuration.action.list.php
|
||||
%%WWWDIR%%/include/views/configuration.application.edit.php
|
||||
%%WWWDIR%%/include/views/configuration.application.list.php
|
||||
%%WWWDIR%%/include/views/configuration.copy.elements.php
|
||||
%%WWWDIR%%/include/views/configuration.correlation.edit.php
|
||||
%%WWWDIR%%/include/views/configuration.correlation.list.php
|
||||
%%WWWDIR%%/include/views/configuration.discovery.edit.php
|
||||
%%WWWDIR%%/include/views/configuration.discovery.list.php
|
||||
%%WWWDIR%%/include/views/configuration.graph.edit.php
|
||||
%%WWWDIR%%/include/views/configuration.graph.list.php
|
||||
%%WWWDIR%%/include/views/configuration.host.discovery.edit.php
|
||||
%%WWWDIR%%/include/views/configuration.host.discovery.list.php
|
||||
%%WWWDIR%%/include/views/configuration.host.edit.php
|
||||
%%WWWDIR%%/include/views/configuration.host.list.php
|
||||
%%WWWDIR%%/include/views/configuration.host.massupdate.php
|
||||
%%WWWDIR%%/include/views/configuration.host.prototype.edit.php
|
||||
%%WWWDIR%%/include/views/configuration.host.prototype.list.php
|
||||
%%WWWDIR%%/include/views/configuration.hostgroups.edit.php
|
||||
%%WWWDIR%%/include/views/configuration.hostgroups.list.php
|
||||
%%WWWDIR%%/include/views/configuration.httpconf.edit.php
|
||||
%%WWWDIR%%/include/views/configuration.httpconf.list.php
|
||||
%%WWWDIR%%/include/views/configuration.httpconf.popup.php
|
||||
%%WWWDIR%%/include/views/configuration.item.edit.php
|
||||
%%WWWDIR%%/include/views/configuration.item.list.php
|
||||
%%WWWDIR%%/include/views/configuration.item.massupdate.php
|
||||
%%WWWDIR%%/include/views/configuration.item.prototype.edit.php
|
||||
%%WWWDIR%%/include/views/configuration.item.prototype.list.php
|
||||
%%WWWDIR%%/include/views/configuration.maintenance.edit.php
|
||||
%%WWWDIR%%/include/views/configuration.maintenance.list.php
|
||||
%%WWWDIR%%/include/views/configuration.services.child.list.php
|
||||
%%WWWDIR%%/include/views/configuration.services.edit.php
|
||||
%%WWWDIR%%/include/views/configuration.services.list.php
|
||||
%%WWWDIR%%/include/views/configuration.services.parent.list.php
|
||||
%%WWWDIR%%/include/views/configuration.template.edit.php
|
||||
%%WWWDIR%%/include/views/configuration.template.list.php
|
||||
%%WWWDIR%%/include/views/configuration.trigger.prototype.edit.php
|
||||
%%WWWDIR%%/include/views/configuration.trigger.prototype.list.php
|
||||
%%WWWDIR%%/include/views/configuration.trigger.prototype.massupdate.php
|
||||
%%WWWDIR%%/include/views/configuration.triggers.edit.php
|
||||
%%WWWDIR%%/include/views/configuration.triggers.expression.php
|
||||
%%WWWDIR%%/include/views/configuration.triggers.list.php
|
||||
%%WWWDIR%%/include/views/configuration.triggers.massupdate.php
|
||||
%%WWWDIR%%/include/views/general.browserwarning.php
|
||||
%%WWWDIR%%/include/views/general.login.php
|
||||
%%WWWDIR%%/include/views/general.script.execute.php
|
||||
%%WWWDIR%%/include/views/general.warning.php
|
||||
%%WWWDIR%%/include/views/hostmacros.php
|
||||
%%WWWDIR%%/include/views/inventory.host.list.php
|
||||
%%WWWDIR%%/include/views/inventory.host.view.php
|
||||
%%WWWDIR%%/include/views/js/adm.regexprs.edit.js.php
|
||||
%%WWWDIR%%/include/views/js/administration.general.gui.php
|
||||
%%WWWDIR%%/include/views/js/administration.general.housekeeper.edit.js.php
|
||||
%%WWWDIR%%/include/views/js/administration.general.iconmap.js.php
|
||||
%%WWWDIR%%/include/views/js/administration.general.macros.edit.js.php
|
||||
%%WWWDIR%%/include/views/js/administration.general.trigger.options.js.php
|
||||
%%WWWDIR%%/include/views/js/administration.general.triggerSeverity.js.php
|
||||
%%WWWDIR%%/include/views/js/administration.general.valuemapping.edit.js.php
|
||||
%%WWWDIR%%/include/views/js/administration.users.edit.js.php
|
||||
%%WWWDIR%%/include/views/js/common.filter.trigger.js.php
|
||||
%%WWWDIR%%/include/views/js/common.init.js.php
|
||||
%%WWWDIR%%/include/views/js/common.item.edit.js.php
|
||||
%%WWWDIR%%/include/views/js/conf.import.js.php
|
||||
%%WWWDIR%%/include/views/js/configuration.action.edit.js.php
|
||||
%%WWWDIR%%/include/views/js/configuration.correlation.edit.js.php
|
||||
%%WWWDIR%%/include/views/js/configuration.discovery.edit.js.php
|
||||
%%WWWDIR%%/include/views/js/configuration.graph.edit.js.php
|
||||
%%WWWDIR%%/include/views/js/configuration.host.discovery.edit.js.php
|
||||
%%WWWDIR%%/include/views/js/configuration.host.edit.js.php
|
||||
%%WWWDIR%%/include/views/js/configuration.host.massupdate.js.php
|
||||
%%WWWDIR%%/include/views/js/configuration.host.prototype.edit.js.php
|
||||
%%WWWDIR%%/include/views/js/configuration.httpconf.edit.js.php
|
||||
%%WWWDIR%%/include/views/js/configuration.httpconf.popup.js.php
|
||||
%%WWWDIR%%/include/views/js/configuration.item.edit.js.php
|
||||
%%WWWDIR%%/include/views/js/configuration.item.list.js.php
|
||||
%%WWWDIR%%/include/views/js/configuration.item.massupdate.js.php
|
||||
%%WWWDIR%%/include/views/js/configuration.item.prototype.edit.js.php
|
||||
%%WWWDIR%%/include/views/js/configuration.services.child.list.js.php
|
||||
%%WWWDIR%%/include/views/js/configuration.services.edit.js.php
|
||||
%%WWWDIR%%/include/views/js/configuration.triggers.edit.js.php
|
||||
%%WWWDIR%%/include/views/js/configuration.triggers.expression.js.php
|
||||
%%WWWDIR%%/include/views/js/configuration.triggers.list.js.php
|
||||
%%WWWDIR%%/include/views/js/hostmacros.js.php
|
||||
%%WWWDIR%%/include/views/js/monitoring.history.js.php
|
||||
%%WWWDIR%%/include/views/js/monitoring.latest.js.php
|
||||
%%WWWDIR%%/include/views/js/monitoring.screen.edit.js.php
|
||||
%%WWWDIR%%/include/views/js/monitoring.slideconf.edit.js.php
|
||||
%%WWWDIR%%/include/views/js/monitoring.slides.js.php
|
||||
%%WWWDIR%%/include/views/js/monitoring.sysmap.edit.js.php
|
||||
%%WWWDIR%%/include/views/js/monitoring.sysmaps.js.php
|
||||
%%WWWDIR%%/include/views/js/monitoring.triggerComment.js.php
|
||||
%%WWWDIR%%/include/views/js/reports.toptriggers.js.php
|
||||
%%WWWDIR%%/include/views/monitoring.charts.php
|
||||
%%WWWDIR%%/include/views/monitoring.history.php
|
||||
%%WWWDIR%%/include/views/monitoring.hostscreen.php
|
||||
%%WWWDIR%%/include/views/monitoring.overview.items.php
|
||||
%%WWWDIR%%/include/views/monitoring.overview.triggers.php
|
||||
%%WWWDIR%%/include/views/monitoring.screen.constructor.edit.php
|
||||
%%WWWDIR%%/include/views/monitoring.screen.constructor.list.php
|
||||
%%WWWDIR%%/include/views/monitoring.screen.edit.php
|
||||
%%WWWDIR%%/include/views/monitoring.screen.list.php
|
||||
%%WWWDIR%%/include/views/monitoring.screen.php
|
||||
%%WWWDIR%%/include/views/monitoring.slideconf.edit.php
|
||||
%%WWWDIR%%/include/views/monitoring.slideconf.list.php
|
||||
%%WWWDIR%%/include/views/monitoring.slides.php
|
||||
%%WWWDIR%%/include/views/monitoring.sysmap.constructor.php
|
||||
%%WWWDIR%%/include/views/monitoring.sysmap.edit.php
|
||||
%%WWWDIR%%/include/views/monitoring.sysmap.list.php
|
||||
%%WWWDIR%%/include/views/monitoring.triggerComment.php
|
||||
%%WWWDIR%%/include/views/reports.toptriggers.php
|
||||
%%WWWDIR%%/index.php
|
||||
%%WWWDIR%%/items.php
|
||||
%%WWWDIR%%/js/browsers.js
|
||||
%%WWWDIR%%/js/chkbxrange.js
|
||||
%%WWWDIR%%/js/class.bbcode.js
|
||||
%%WWWDIR%%/js/class.calendar.js
|
||||
%%WWWDIR%%/js/class.cdate.js
|
||||
%%WWWDIR%%/js/class.cclock.js
|
||||
%%WWWDIR%%/js/class.cnavtree.js
|
||||
%%WWWDIR%%/js/class.cdebug.js
|
||||
%%WWWDIR%%/js/class.cmap.js
|
||||
%%WWWDIR%%/js/class.cmessages.js
|
||||
%%WWWDIR%%/js/class.cookie.js
|
||||
%%WWWDIR%%/js/class.cscreen.js
|
||||
%%WWWDIR%%/js/class.csuggest.js
|
||||
%%WWWDIR%%/js/class.cswitcher.js
|
||||
%%WWWDIR%%/js/class.ctree.js
|
||||
%%WWWDIR%%/js/class.curl.js
|
||||
%%WWWDIR%%/js/class.cviewswitcher.js
|
||||
%%WWWDIR%%/js/class.pmaster.js
|
||||
%%WWWDIR%%/js/class.rpc.js
|
||||
%%WWWDIR%%/js/class.mapWidget.js
|
||||
%%WWWDIR%%/js/common.js
|
||||
%%WWWDIR%%/js/flickerfreescreen.js
|
||||
%%WWWDIR%%/js/functions.js
|
||||
%%WWWDIR%%/js/gtlc.js
|
||||
%%WWWDIR%%/js/init.js
|
||||
%%WWWDIR%%/js/main.js
|
||||
%%WWWDIR%%/js/menupopup.js
|
||||
%%WWWDIR%%/js/multiselect.js
|
||||
%%WWWDIR%%/js/pages/items.js
|
||||
%%WWWDIR%%/js/pages/tr_logform.js
|
||||
%%WWWDIR%%/js/servercheck.js
|
||||
%%WWWDIR%%/js/vendors/jquery-ui.js
|
||||
%%WWWDIR%%/js/vendors/jquery.js
|
||||
%%WWWDIR%%/js/vendors/prototype.js
|
||||
%%WWWDIR%%/js/dashboard.grid.js
|
||||
%%WWWDIR%%/js/vector/class.svg.canvas.js
|
||||
%%WWWDIR%%/js/vector/class.svg.map.js
|
||||
%%WWWDIR%%/jsLoader.php
|
||||
%%WWWDIR%%/jsrpc.php
|
||||
%%WWWDIR%%/latest.php
|
||||
%%WWWDIR%%/local/.htaccess
|
||||
%%WWWDIR%%/local/README
|
||||
%%WWWDIR%%/locale/README
|
||||
%%WWWDIR%%/locale/add_new_language.sh
|
||||
%%WWWDIR%%/locale/bg/LC_MESSAGES/frontend.mo
|
||||
%%WWWDIR%%/locale/bg/LC_MESSAGES/frontend.po
|
||||
%%WWWDIR%%/locale/cs/LC_MESSAGES/frontend.mo
|
||||
%%WWWDIR%%/locale/cs/LC_MESSAGES/frontend.po
|
||||
%%WWWDIR%%/locale/ca/LC_MESSAGES/frontend.mo
|
||||
%%WWWDIR%%/locale/ca/LC_MESSAGES/frontend.po
|
||||
%%WWWDIR%%/locale/de/LC_MESSAGES/frontend.mo
|
||||
%%WWWDIR%%/locale/de/LC_MESSAGES/frontend.po
|
||||
%%WWWDIR%%/locale/el/LC_MESSAGES/frontend.mo
|
||||
%%WWWDIR%%/locale/el/LC_MESSAGES/frontend.po
|
||||
%%WWWDIR%%/locale/en_US/LC_MESSAGES/frontend.mo
|
||||
%%WWWDIR%%/locale/en_US/LC_MESSAGES/frontend.po
|
||||
%%WWWDIR%%/locale/es/LC_MESSAGES/frontend.mo
|
||||
%%WWWDIR%%/locale/es/LC_MESSAGES/frontend.po
|
||||
%%WWWDIR%%/locale/fa/LC_MESSAGES/frontend.mo
|
||||
%%WWWDIR%%/locale/fa/LC_MESSAGES/frontend.po
|
||||
%%WWWDIR%%/locale/fi/LC_MESSAGES/frontend.mo
|
||||
%%WWWDIR%%/locale/fi/LC_MESSAGES/frontend.po
|
||||
%%WWWDIR%%/locale/fr/LC_MESSAGES/frontend.mo
|
||||
%%WWWDIR%%/locale/fr/LC_MESSAGES/frontend.po
|
||||
%%WWWDIR%%/locale/he/LC_MESSAGES/frontend.mo
|
||||
%%WWWDIR%%/locale/he/LC_MESSAGES/frontend.po
|
||||
%%WWWDIR%%/locale/hu/LC_MESSAGES/frontend.mo
|
||||
%%WWWDIR%%/locale/hu/LC_MESSAGES/frontend.po
|
||||
%%WWWDIR%%/locale/id/LC_MESSAGES/frontend.mo
|
||||
%%WWWDIR%%/locale/id/LC_MESSAGES/frontend.po
|
||||
%%WWWDIR%%/locale/it/LC_MESSAGES/frontend.mo
|
||||
%%WWWDIR%%/locale/it/LC_MESSAGES/frontend.po
|
||||
%%WWWDIR%%/locale/ja/LC_MESSAGES/frontend.mo
|
||||
%%WWWDIR%%/locale/ja/LC_MESSAGES/frontend.po
|
||||
%%WWWDIR%%/locale/ka/LC_MESSAGES/frontend.mo
|
||||
%%WWWDIR%%/locale/ka/LC_MESSAGES/frontend.po
|
||||
%%WWWDIR%%/locale/ko/LC_MESSAGES/frontend.mo
|
||||
%%WWWDIR%%/locale/ko/LC_MESSAGES/frontend.po
|
||||
%%WWWDIR%%/locale/lt/LC_MESSAGES/frontend.mo
|
||||
%%WWWDIR%%/locale/lt/LC_MESSAGES/frontend.po
|
||||
%%WWWDIR%%/locale/lv/LC_MESSAGES/frontend.mo
|
||||
%%WWWDIR%%/locale/lv/LC_MESSAGES/frontend.po
|
||||
%%WWWDIR%%/locale/make_mo.sh
|
||||
%%WWWDIR%%/locale/nl/LC_MESSAGES/frontend.mo
|
||||
%%WWWDIR%%/locale/nl/LC_MESSAGES/frontend.po
|
||||
%%WWWDIR%%/locale/pl/LC_MESSAGES/frontend.mo
|
||||
%%WWWDIR%%/locale/pl/LC_MESSAGES/frontend.po
|
||||
%%WWWDIR%%/locale/pt_BR/LC_MESSAGES/frontend.mo
|
||||
%%WWWDIR%%/locale/pt_BR/LC_MESSAGES/frontend.po
|
||||
%%WWWDIR%%/locale/pt_PT/LC_MESSAGES/frontend.mo
|
||||
%%WWWDIR%%/locale/pt_PT/LC_MESSAGES/frontend.po
|
||||
%%WWWDIR%%/locale/ro/LC_MESSAGES/frontend.mo
|
||||
%%WWWDIR%%/locale/ro/LC_MESSAGES/frontend.po
|
||||
%%WWWDIR%%/locale/ru/LC_MESSAGES/frontend.mo
|
||||
%%WWWDIR%%/locale/ru/LC_MESSAGES/frontend.po
|
||||
%%WWWDIR%%/locale/sk/LC_MESSAGES/frontend.mo
|
||||
%%WWWDIR%%/locale/sk/LC_MESSAGES/frontend.po
|
||||
%%WWWDIR%%/locale/sv/LC_MESSAGES/frontend.mo
|
||||
%%WWWDIR%%/locale/sv/LC_MESSAGES/frontend.po
|
||||
%%WWWDIR%%/locale/tr/LC_MESSAGES/frontend.mo
|
||||
%%WWWDIR%%/locale/tr/LC_MESSAGES/frontend.po
|
||||
%%WWWDIR%%/locale/uk/LC_MESSAGES/frontend.mo
|
||||
%%WWWDIR%%/locale/uk/LC_MESSAGES/frontend.po
|
||||
%%WWWDIR%%/locale/update_po.sh
|
||||
%%WWWDIR%%/locale/vi/LC_MESSAGES/frontend.mo
|
||||
%%WWWDIR%%/locale/vi/LC_MESSAGES/frontend.po
|
||||
%%WWWDIR%%/locale/zh_CN/LC_MESSAGES/frontend.mo
|
||||
%%WWWDIR%%/locale/zh_CN/LC_MESSAGES/frontend.po
|
||||
%%WWWDIR%%/locale/zh_TW/LC_MESSAGES/frontend.mo
|
||||
%%WWWDIR%%/locale/zh_TW/LC_MESSAGES/frontend.po
|
||||
%%WWWDIR%%/maintenance.php
|
||||
%%WWWDIR%%/map.import.php
|
||||
%%WWWDIR%%/map.php
|
||||
%%WWWDIR%%/overview.php
|
||||
%%WWWDIR%%/popup.php
|
||||
%%WWWDIR%%/popup_httpstep.php
|
||||
%%WWWDIR%%/popup_media.php
|
||||
%%WWWDIR%%/popup_trexpr.php
|
||||
%%WWWDIR%%/popup_usrgrp.php
|
||||
%%WWWDIR%%/profile.php
|
||||
%%WWWDIR%%/queue.php
|
||||
%%WWWDIR%%/report2.php
|
||||
%%WWWDIR%%/report4.php
|
||||
%%WWWDIR%%/robots.txt
|
||||
%%WWWDIR%%/screen.import.php
|
||||
%%WWWDIR%%/screenconf.php
|
||||
%%WWWDIR%%/screenedit.php
|
||||
%%WWWDIR%%/screens.php
|
||||
%%WWWDIR%%/scripts_exec.php
|
||||
%%WWWDIR%%/search.php
|
||||
%%WWWDIR%%/services.php
|
||||
%%WWWDIR%%/setup.php
|
||||
%%WWWDIR%%/slideconf.php
|
||||
%%WWWDIR%%/slides.php
|
||||
%%WWWDIR%%/srv_status.php
|
||||
%%WWWDIR%%/styles/blue-theme.css
|
||||
%%WWWDIR%%/styles/dark-theme.css
|
||||
%%WWWDIR%%/sysmap.php
|
||||
%%WWWDIR%%/sysmaps.php
|
||||
%%WWWDIR%%/templates.php
|
||||
%%WWWDIR%%/toptriggers.php
|
||||
%%WWWDIR%%/tr_comments.php
|
||||
%%WWWDIR%%/tr_events.php
|
||||
%%WWWDIR%%/tr_logform.php
|
||||
%%WWWDIR%%/tr_status.php
|
||||
%%WWWDIR%%/tr_testexpr.php
|
||||
%%WWWDIR%%/trigger_prototypes.php
|
||||
%%WWWDIR%%/triggers.php
|
||||
%%WWWDIR%%/usergrps.php
|
||||
%%WWWDIR%%/users.php
|
||||
%%WWWDIR%%/zabbix.php
|
||||
@dir %%WWWDIR%%/local/app/controllers
|
||||
@dir %%WWWDIR%%/local/app/views
|
||||
|
|
@ -2,8 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= Net-SSH-Perl
|
||||
PORTVERSION= 2.12
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 2.14
|
||||
CATEGORIES= net perl5
|
||||
MASTER_SITES= CPAN
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
|
@ -15,6 +14,8 @@ LICENSE= ART10 GPLv1
|
|||
LICENSE_COMB= dual
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
BROKEN_powerpc64= fails to compile: src/chacha/poly1305.c: subscripted value is neither array nor pointer
|
||||
|
||||
BUILD_DEPENDS= p5-Crypt-Curve25519>=0.05:security/p5-Crypt-Curve25519 \
|
||||
p5-Crypt-DES>0:security/p5-Crypt-DES \
|
||||
p5-Crypt-DSA>=0.11:security/p5-Crypt-DSA \
|
||||
|
|
@ -27,8 +28,6 @@ BUILD_DEPENDS= p5-Crypt-Curve25519>=0.05:security/p5-Crypt-Curve25519 \
|
|||
p5-String-CRC32>=1.2:devel/p5-String-CRC32
|
||||
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
||||
|
||||
BROKEN_powerpc64= fails to compile: src/chacha/poly1305.c: subscripted value is neither array nor pointer
|
||||
|
||||
CONFIGURE_ENV= PERL_MM_USE_DEFAULT="1"
|
||||
USES= perl5
|
||||
USE_PERL5= configure
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1497260066
|
||||
SHA256 (Net-SSH-Perl-2.12.tar.gz) = a597f3a41914ca541e56ee5b78c9f733f96e359ca795efa500e6e2f22b9e5337
|
||||
SIZE (Net-SSH-Perl-2.12.tar.gz) = 256676
|
||||
TIMESTAMP = 1503678443
|
||||
SHA256 (Net-SSH-Perl-2.14.tar.gz) = 2b5d1bb13590b5870116704e7f1dce9a9823c4f80ff5461b97bb26a317393017
|
||||
SIZE (Net-SSH-Perl-2.14.tar.gz) = 256963
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= quiterss
|
||||
PORTVERSION= 0.18.7
|
||||
PORTVERSION= 0.18.8
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= http://quiterss.org/files/${PORTVERSION}/
|
||||
DISTNAME= QuiteRSS-${PORTVERSION}-src
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1503547215
|
||||
SHA256 (QuiteRSS-0.18.7-src.tar.gz) = 5c029dc318b85f30415fef53098b1c8c45d3947bfc018edf580c9d82bcdf3e5b
|
||||
SIZE (QuiteRSS-0.18.7-src.tar.gz) = 3512735
|
||||
TIMESTAMP = 1503691367
|
||||
SHA256 (QuiteRSS-0.18.8-src.tar.gz) = c83c6736b1331a6fd9b257fa91c282c504086704d0c69c483bb31c7c6759fe57
|
||||
SIZE (QuiteRSS-0.18.8-src.tar.gz) = 3512785
|
||||
|
|
|
|||
|
|
@ -9,6 +9,11 @@ CATEGORIES= science
|
|||
MAINTAINER= sunpoet@FreeBSD.org
|
||||
COMMENT= C++ library for machine-independent, array-oriented data access
|
||||
|
||||
LICENSE= UCAR_UNIDATA
|
||||
LICENSE_FILE= ${WRKSRC}/COPYRIGHT
|
||||
LICENSE_NAME= University Corporation for Atmospheric Research/Unidata
|
||||
LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
|
||||
|
||||
LIB_DEPENDS= libnetcdf.so:science/netcdf
|
||||
|
||||
CONFLICTS= netcdf-3.* netcdf-4.[0-2].*
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= afl
|
||||
PORTVERSION= 2.49
|
||||
PORTVERSION= 2.50
|
||||
DISTVERSIONSUFFIX= b
|
||||
CATEGORIES= security
|
||||
MASTER_SITES= http://lcamtuf.coredump.cx/afl/releases/
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1500472614
|
||||
SHA256 (afl-2.49b.tgz) = f7c52cb0243f2a186a40e7000db825545074b5773e9894688c61f945f9ad88d1
|
||||
SIZE (afl-2.49b.tgz) = 834967
|
||||
TIMESTAMP = 1503651849
|
||||
SHA256 (afl-2.50b.tgz) = 0bdb0efd77b394b8b1a816e957a6dc27ffe01007d73c6247b9e424f0e36176c5
|
||||
SIZE (afl-2.50b.tgz) = 835578
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
PORTNAME= bruteforceblocker
|
||||
PORTVERSION= 1.2.3
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= security
|
||||
MASTER_SITES= http://danger.rulez.sk/projects/bruteforceblocker/ \
|
||||
LOCAL/pav
|
||||
|
|
|
|||
12
security/bruteforceblocker/files/patch-bruteforceblocker.pl
Normal file
12
security/bruteforceblocker/files/patch-bruteforceblocker.pl
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
--- bruteforceblocker.pl.orig 2017-08-17 13:42:11.038416000 +0100
|
||||
+++ bruteforceblocker.pl 2017-08-17 13:46:39.555246000 +0100
|
||||
@@ -81,7 +81,8 @@
|
||||
/.*Invalid user.*from ($work->{ipv4}|$work->{ipv6}|$work->{fqdn})$/i ||
|
||||
/.*Did not receive identification string from ($work->{ipv4}|$work->{ipv6}|$work->{fqdn})$/i ||
|
||||
/.*Bad protocol version identification .* from ($work->{ipv4}|$work->{ipv6}|$work->{fqdn})$/i ||
|
||||
- /.*User.*from ($work->{ipv4}|$work->{ipv6}|$work->{fqdn}) not allowed because.*/i ) {
|
||||
+ /.*User.*from ($work->{ipv4}|$work->{ipv6}|$work->{fqdn}) not allowed because.*/i ||
|
||||
+ /.*error: maximum authentication attempts exceeded for.*from ($work->{ipv4}|$work->{ipv6}|$work->{fqdn}).*/i) {
|
||||
|
||||
my $IP = $1;
|
||||
if ($IP =~ /$work->{fqdn}/i) {
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= docker
|
||||
PORTVERSION= 2.5.0
|
||||
PORTVERSION= 2.5.1
|
||||
CATEGORIES= sysutils python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1503063310
|
||||
SHA256 (docker-2.5.0.tar.gz) = 9db0769feac3a64ed447d44f756ab04de74aa05c4c69e891a93ec238276c4eed
|
||||
SIZE (docker-2.5.0.tar.gz) = 154950
|
||||
TIMESTAMP = 1503669078
|
||||
SHA256 (docker-2.5.1.tar.gz) = b876e6909d8d2360e0540364c3a952a62847137f4674f2439320ede16d6db880
|
||||
SIZE (docker-2.5.1.tar.gz) = 155088
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= the_silver_searcher
|
||||
PORTVERSION= 2.0.0
|
||||
PORTVERSION= 2.1.0
|
||||
CATEGORIES= textproc
|
||||
|
||||
MAINTAINER= olgeni@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1496694744
|
||||
SHA256 (ggreer-the_silver_searcher-2.0.0_GH0.tar.gz) = ff7243863f22ed73eeab6f7a6d17cfff585a7eaa41d5ab3ae4f5d6db97701d5f
|
||||
SIZE (ggreer-the_silver_searcher-2.0.0_GH0.tar.gz) = 160093
|
||||
TIMESTAMP = 1503651038
|
||||
SHA256 (ggreer-the_silver_searcher-2.1.0_GH0.tar.gz) = cb416a0da7fe354a009c482ae709692ed567f8e7d2dad4d242e726dd7ca202f0
|
||||
SIZE (ggreer-the_silver_searcher-2.1.0_GH0.tar.gz) = 163139
|
||||
|
|
|
|||
|
|
@ -1791,6 +1791,7 @@
|
|||
SUBDIR += py-pysearch
|
||||
SUBDIR += py-python-digitalocean
|
||||
SUBDIR += py-pywebdav
|
||||
SUBDIR += py-pyweblib
|
||||
SUBDIR += py-pywikibot
|
||||
SUBDIR += py-qp
|
||||
SUBDIR += py-qpy
|
||||
|
|
@ -1862,7 +1863,6 @@
|
|||
SUBDIR += pycarddav
|
||||
SUBDIR += pydio
|
||||
SUBDIR += pyjamas
|
||||
SUBDIR += pyweblib
|
||||
SUBDIR += qdecoder
|
||||
SUBDIR += qooxdoo
|
||||
SUBDIR += qt4-webkit
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= HTTP-Cookies-Mozilla
|
||||
PORTVERSION= 2.032
|
||||
PORTVERSION= 2.033
|
||||
CATEGORIES= www perl5
|
||||
MASTER_SITES= CPAN
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1480231555
|
||||
SHA256 (HTTP-Cookies-Mozilla-2.032.tar.gz) = b05e562b711e610907e0eb9e35c20b600ede928b89b506329615127885981f64
|
||||
SIZE (HTTP-Cookies-Mozilla-2.032.tar.gz) = 13052
|
||||
TIMESTAMP = 1503678463
|
||||
SHA256 (HTTP-Cookies-Mozilla-2.033.tar.gz) = 4f9a359fd19e07add831d7400f1b1671e65b16e683a204cecef5c3b744b704b6
|
||||
SIZE (HTTP-Cookies-Mozilla-2.033.tar.gz) = 13071
|
||||
|
|
|
|||
|
|
@ -2,9 +2,10 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= pyweblib
|
||||
PORTVERSION= 1.3.12
|
||||
PORTVERSION= 1.3.13
|
||||
CATEGORIES= www
|
||||
MASTER_SITES= http://www.stroeder.com/pylib/
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
MAINTAINER= bsam@FreeBSD.org
|
||||
COMMENT= Yet another web programming framework for Python
|
||||
3
www/py-pyweblib/distinfo
Normal file
3
www/py-pyweblib/distinfo
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1503682508
|
||||
SHA256 (pyweblib-1.3.13.tar.gz) = 6fc9f99c468130aab4174a7e32a67d982431508cba97fa6bcf091aa5735373aa
|
||||
SIZE (pyweblib-1.3.13.tar.gz) = 36880
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
TIMESTAMP = 1473233800
|
||||
SHA256 (pyweblib-1.3.12.tar.gz) = 7ec721c867217bffcda95f2450b9177ae7b61b62100cf597d6dd94fbdadf5dbb
|
||||
SIZE (pyweblib-1.3.12.tar.gz) = 36809
|
||||
|
|
@ -2,8 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= addressable
|
||||
PORTVERSION= 2.5.1
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 2.5.2
|
||||
CATEGORIES= www devel rubygems
|
||||
MASTER_SITES= RG
|
||||
|
||||
|
|
@ -13,7 +12,7 @@ COMMENT= Replacement for the URI implementation
|
|||
LICENSE= APACHE20
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
||||
|
||||
RUN_DEPENDS= rubygem-public_suffix2>=2.0.2:dns/rubygem-public_suffix2
|
||||
RUN_DEPENDS= rubygem-public_suffix>=2.0.2:dns/rubygem-public_suffix
|
||||
|
||||
NO_ARCH= yes
|
||||
USE_RUBY= yes
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue