diff options
43 files changed, 6 insertions, 1703 deletions
@@ -8374,3 +8374,9 @@ graphics/linux-c6-dri-compat|graphics/linux-c6-dri|2016-06-22|Obsolete security/py-letsencrypt|security/py-certbot|2016-06-23|The LetsEncrypt project has renamed the utility textproc/py-beautifulsoup4|www/py-beautifulsoup|2016-06-26|Duplicate port deleted textproc/kibana42|textproc/kibana45|2016-06-27|Has expired: not actively supported - use kibana 4.5 (textproc/kibana45) instead +graphics/libchamplain08||2016-06-30|Has expired: Old version, not needed any more +sysutils/syslog-ng35||2016-06-30|Has expired: EOL, no longer supported by bababit.hu +sysutils/syslog-ng34||2016-06-30|Has expired: EOL, no longer supported by bababit.hu +devel/jenkins2|devel/jenkins|2016-06-30|Has expired: Use devel/jenkins +www/p5-WWW-Google-Notebook||2016-06-30|Has expired: Google Notebook has shut down +sysutils/syslog-ng-incubator03||2016-06-30|Has expired: EOL, no longer supported by bababit.hu diff --git a/devel/Makefile b/devel/Makefile index 783bef0..cba6a8d 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -1079,7 +1079,6 @@ SUBDIR += jech-dht SUBDIR += jenkins SUBDIR += jenkins-lts - SUBDIR += jenkins2 SUBDIR += jiic SUBDIR += jline SUBDIR += jna diff --git a/devel/jenkins2/Makefile b/devel/jenkins2/Makefile deleted file mode 100644 index 1397f0c..0000000 --- a/devel/jenkins2/Makefile +++ /dev/null @@ -1,58 +0,0 @@ -# $FreeBSD$ - -PORTNAME= jenkins2 -DISTVERSION= 2.3 -CATEGORIES= devel java -MASTER_SITES= http://mirrors.jenkins-ci.org/war/${PORTVERSION}/ -DISTNAME= jenkins -EXTRACT_SUFX= .war -DIST_SUBDIR= ${PORTNAME}/${PORTVERSION} -EXTRACT_ONLY= - -MAINTAINER= lwhsu@FreeBSD.org -COMMENT= Open-source continuous integration server - -LICENSE= MIT - -DEPRECATED= Use devel/jenkins -EXPIRATION_DATE= 2016-06-30 - -CONFLICTS= jenkins-[0-9]* jenkins-lts-[0-9]* - -USE_JAVA= yes - -NO_BUILD= yes - -USE_RC_SUBR= jenkins - -USES+= cpe -CPE_VENDOR= cloudbees - -JENKINS_HOME?= ${PREFIX}/jenkins -JENKINS_USER?= jenkins -JENKINS_GROUP?= jenkins -JENKINS_LOG_FILE?= /var/log/jenkins.log - -.if ${JENKINS_USER} == "jenkins" -USERS= jenkins -.endif -.if ${JENKINS_GROUP} == "jenkins" -GROUPS= jenkins -.endif - -SUB_LIST+= JENKINS_HOME=${JENKINS_HOME} \ - JENKINS_USER=${JENKINS_USER} \ - JENKINS_GROUP=${JENKINS_GROUP} \ - JAVA_HOME=${JAVA_HOME} \ - JENKINS_LOG_FILE=${JENKINS_LOG_FILE} -PLIST_SUB+= JENKINS_USER=${JENKINS_USER} \ - JENKINS_GROUP=${JENKINS_GROUP} - -.include <bsd.port.pre.mk> - -do-install: - ${MKDIR} ${STAGEDIR}${DATADIR} ${STAGEDIR}${JENKINS_HOME} - ${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/${DISTNAME}${EXTRACT_SUFX} \ - ${STAGEDIR}${DATADIR} - -.include <bsd.port.post.mk> diff --git a/devel/jenkins2/distinfo b/devel/jenkins2/distinfo deleted file mode 100644 index 29eb2e1..0000000 --- a/devel/jenkins2/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (jenkins2/2.3/jenkins.war) = e1a17311776daee38cb1c3a5e687140f39b8dc922d142f4b9c457803f76aa974 -SIZE (jenkins2/2.3/jenkins.war) = 66587456 diff --git a/devel/jenkins2/files/jenkins.in b/devel/jenkins2/files/jenkins.in deleted file mode 100644 index 55c4fd7..0000000 --- a/devel/jenkins2/files/jenkins.in +++ /dev/null @@ -1,86 +0,0 @@ -#!/bin/sh - -# $FreeBSD$ -# -# PROVIDE: jenkins -# REQUIRE: LOGIN -# KEYWORD: shutdown - -# -# Configuration settings for jenkins in /etc/rc.conf: -# -# jenkins_enable (bool): -# Set to "NO" by default. -# Set it to "YES" to enable jenkins -# -# jenkins_args (str): -# Extra arguments passed to start command -# -# jenkins_home (str) -# Set to "%%JENKINS_HOME%%" by default. -# Set the JENKINS_HOME variable for jenkins process -# -# jenkins_java_home (str): -# Set to "%%JAVA_HOME%%" by default. -# Set the Java virtual machine to run jenkins -# -# jenkins_java_opts (str): -# Set to "" by default. -# Java VM args to use. -# -# jenkins_user (str): -# Set to "%%JENKINS_USER%%" by default. -# User to run jenkins as. -# -# jenkins_group (str): -# Set to "%%JENKINS_GROUP%%" by default. -# Group for data file ownership. -# -# jenkins_log_file (str): -# Set to "%%JENKINS_LOG_FILE%%" by default. -# Log file location. -# - -. /etc/rc.subr - -name="jenkins" -rcvar=jenkins_enable - -load_rc_config "${name}" - -: ${jenkins_enable="NO"} -: ${jenkins_home="%%JENKINS_HOME%%"} -: ${jenkins_args="--webroot=${jenkins_home}/war --httpPort=8180 --prefix=/jenkins"} -: ${jenkins_java_home="%%JAVA_HOME%%"} -: ${jenkins_user="%%JENKINS_USER%%"} -: ${jenkins_group="%%JENKINS_GROUP%%"} -: ${jenkins_log_file="%%JENKINS_LOG_FILE%%"} - -pidfile="/var/run/jenkins/jenkins.pid" -command="/usr/sbin/daemon" -java_cmd="${jenkins_java_home}/bin/java" -procname="${java_cmd}" -command_args="-p ${pidfile} ${java_cmd} -DJENKINS_HOME=${jenkins_home} ${jenkins_java_opts} -jar %%DATADIR%%/jenkins.war ${jenkins_args} > ${jenkins_log_file} 2>&1" -required_files="${java_cmd}" - -start_precmd="jenkins_prestart" -start_cmd="jenkins_start" - -jenkins_prestart() { - if [ ! -f "${jenkins_log_file}" ]; then - touch "${jenkins_log_file}" - chown "${jenkins_user}:${jenkins_group}" "${jenkins_log_file}" - chmod 640 "${jenkins_log_file}" - fi - if [ ! -d "/var/run/jenkins" ]; then - install -d -o "${jenkins_user}" -g "${jenkins_group}" -m 750 "/var/run/jenkins" - fi -} - -jenkins_start() -{ - check_startmsgs && echo "Starting ${name}." - su -l ${jenkins_user} -c "exec ${command} ${command_args} ${rc_arg}" -} - -run_rc_command "$1" diff --git a/devel/jenkins2/pkg-descr b/devel/jenkins2/pkg-descr deleted file mode 100644 index 02d9a08..0000000 --- a/devel/jenkins2/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -In a nutshell Jenkins CI is the leading open-source continuous integration -server. Built with Java, it provides over 300 plugins to support building -and testing virtually any project. - -WWW: https://jenkins.io/ diff --git a/devel/jenkins2/pkg-message b/devel/jenkins2/pkg-message deleted file mode 100644 index 3c598e9..0000000 --- a/devel/jenkins2/pkg-message +++ /dev/null @@ -1,10 +0,0 @@ -************************************************************************ - -Please login to the Jenkins web interface and secure with a password, -when installing for the first time. - -More information: -https://wiki.jenkins-ci.org/display/JENKINS/Quick+and+Simple+Security -https://wiki.jenkins-ci.org/display/JENKINS/Standard+Security+Setup - -************************************************************************ diff --git a/devel/jenkins2/pkg-plist b/devel/jenkins2/pkg-plist deleted file mode 100644 index ad04ec0..0000000 --- a/devel/jenkins2/pkg-plist +++ /dev/null @@ -1,2 +0,0 @@ -%%DATADIR%%/jenkins.war -@dir(%%JENKINS_USER%%,%%JENKINS_GROUP%%,) jenkins diff --git a/graphics/Makefile b/graphics/Makefile index 92f1cb2..e12c56d 100644 --- a/graphics/Makefile +++ b/graphics/Makefile @@ -476,7 +476,6 @@ SUBDIR += libcaca SUBDIR += libcdr01 SUBDIR += libchamplain - SUBDIR += libchamplain08 SUBDIR += libdmtx SUBDIR += libdrm SUBDIR += libecwj2 diff --git a/graphics/libchamplain08/Makefile b/graphics/libchamplain08/Makefile deleted file mode 100644 index 88e56ab..0000000 --- a/graphics/libchamplain08/Makefile +++ /dev/null @@ -1,40 +0,0 @@ -# Created by: Koop Mast <kwm@FreeBSD.org> -# $FreeBSD$ - -PORTNAME= libchamplain -PORTVERSION= 0.8.1 -PORTREVISION= 1 -CATEGORIES= graphics -MASTER_SITES= GNOME -PKGNAMESUFFIX= 08 - -MAINTAINER= amdmi3@FreeBSD.org -COMMENT= C library provides a Gtk+ widget to display rasterized maps/markers - -DEPRECATED= Old version, not needed any more -EXPIRATION_DATE=2016-06-29 - -LIB_DEPENDS= libclutter-gtk-0.10.so:graphics/clutter-gtk \ - libsoup-gnome-2.4.so:devel/libsoup-gnome - -USES= gmake libtool:keepla pathfix pkgconfig sqlite tar:bzip2 -USE_GNOME= gnomeprefix gtk20 introspection:build,run -USE_GL= gl -GNU_CONFIGURE= yes -USE_LDCONFIG= yes -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -lgthread-2.0 -INSTALL_TARGET= install-strip - -DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}${PKGNAMESUFFIX} -DOCSDIRGTK= ${PREFIX}/share/doc/${PORTNAME}-gtk${PKGNAMESUFFIX} - -PLIST_SUB= VERSION=0.8 DOCSDIRGTK="${DOCSDIRGTK}" - -OPTIONS_DEFINE= DOCS - -post-install: - ${MV} ${STAGEDIR}${PREFIX}/share/doc/libchamplain ${STAGEDIR}${DOCSDIR} - ${MV} ${STAGEDIR}${PREFIX}/share/doc/libchamplain-gtk ${STAGEDIR}${DOCSDIRGTK} - -.include <bsd.port.mk> diff --git a/graphics/libchamplain08/distinfo b/graphics/libchamplain08/distinfo deleted file mode 100644 index 04a163c..0000000 --- a/graphics/libchamplain08/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (libchamplain-0.8.1.tar.bz2) = 307f4e13cf902b58eaf8d52551b92fa90d0470f4a27b46746beb2c4fd0fdd57c -SIZE (libchamplain-0.8.1.tar.bz2) = 669156 diff --git a/graphics/libchamplain08/files/patch-champlain-gtk_Makefile.in b/graphics/libchamplain08/files/patch-champlain-gtk_Makefile.in deleted file mode 100644 index 44e96bc..0000000 --- a/graphics/libchamplain08/files/patch-champlain-gtk_Makefile.in +++ /dev/null @@ -1,34 +0,0 @@ ---- champlain-gtk/Makefile.in.orig 2012-03-15 20:21:20.000000000 -0500 -+++ champlain-gtk/Makefile.in 2012-03-15 20:35:27.000000000 -0500 -@@ -370,15 +370,15 @@ - $(libchamplain_gtk_sources_built) - - libchamplain_gtk_@CHAMPLAIN_API_VERSION@_la_LIBADD = \ -- $(GTK_LIBS) \ -- $(top_builddir)/champlain/libchamplain-@CHAMPLAIN_API_VERSION@.la -+ $(top_builddir)/champlain/libchamplain-@CHAMPLAIN_API_VERSION@.la \ -+ $(GTK_LIBS) - - libchamplain_gtk_@CHAMPLAIN_API_VERSION@_la_LDFLAGS = \ - -version-info $(LIBRARY_VERSION) \ - -no-undefined \ - -export-symbols-regex ^gtk_champlain_.* - --AM_CPPFLAGS = $(GTK_CFLAGS) $(WARN_CFLAGS) -I$(top_srcdir) -DCHAMPLAIN_GTK_COMPILATION -+AM_CPPFLAGS = -I$(top_srcdir) -DCHAMPLAIN_GTK_COMPILATION $(GTK_CFLAGS) $(WARN_CFLAGS) - lib_LTLIBRARIES = libchamplain-gtk-@CHAMPLAIN_API_VERSION@.la - libchamplain_gtkdir = $(includedir)/libchamplain-gtk-@CHAMPLAIN_API_VERSION@/champlain-gtk - libchamplain_gtk_HEADERS = $(libchamplain_gtk_headers_public) -@@ -394,9 +394,9 @@ - @HAVE_INTROSPECTION_TRUE@GtkChamplain_@CHAMPLAIN_API_VERSION_NORM@_gir_FILES = $(introspection_sources) - @HAVE_INTROSPECTION_TRUE@GtkChamplain_@CHAMPLAIN_API_VERSION_NORM@_gir_INCLUDES = Clutter-1.0 Gtk-2.0 Champlain-@CHAMPLAIN_API_VERSION@ - @HAVE_INTROSPECTION_TRUE@GtkChamplain_@CHAMPLAIN_API_VERSION_NORM@_gir_CFLAGS = \ --@HAVE_INTROSPECTION_TRUE@ $(DEPS_CFLAGS) $(SOUP_CFLAGS) $(GTK_CFLAGS) \ --@HAVE_INTROSPECTION_TRUE@ -I$(top_srcdir) -I$(top_builddir)\ --@HAVE_INTROSPECTION_TRUE@ -DCHAMPLAIN_COMPILATION -DCHAMPLAIN_GTK_COMPILATION -+@HAVE_INTROSPECTION_TRUE@ -I$(top_srcdir) -I$(top_builddir) \ -+@HAVE_INTROSPECTION_TRUE@ -DCHAMPLAIN_COMPILATION -DCHAMPLAIN_GTK_COMPILATION \ -+@HAVE_INTROSPECTION_TRUE@ $(DEPS_CFLAGS) $(SOUP_CFLAGS) $(GTK_CFLAGS) - - @HAVE_INTROSPECTION_TRUE@girdir = $(datadir)/gir-1.0 - @HAVE_INTROSPECTION_TRUE@gir_DATA = $(INTROSPECTION_GIRS) diff --git a/graphics/libchamplain08/pkg-descr b/graphics/libchamplain08/pkg-descr deleted file mode 100644 index aef9991..0000000 --- a/graphics/libchamplain08/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -Libchamplain is a C library providing a ClutterActor to display maps. It also -provides a Gtk+ widget to display maps in Gtk+ applications. Mono, Python and -Perl bindings are available. - -It supports numerous free map sources such as OpenStreetMap [1], -OpenAerialMap [2] and Maps for free [3]. -[1] http://www.openstreetmap.org/ [2] http://www.openaerialmap.org/ -[3] http://www.maps-for-free.com/ - -WWW: http://projects.gnome.org/libchamplain/ diff --git a/graphics/libchamplain08/pkg-plist b/graphics/libchamplain08/pkg-plist deleted file mode 100644 index 463a0e1..0000000 --- a/graphics/libchamplain08/pkg-plist +++ /dev/null @@ -1,118 +0,0 @@ -include/libchamplain-%%VERSION%%/champlain/champlain-base-marker.h -include/libchamplain-%%VERSION%%/champlain/champlain-bounding-box.h -include/libchamplain-%%VERSION%%/champlain/champlain-defines.h -include/libchamplain-%%VERSION%%/champlain/champlain-enum-types.h -include/libchamplain-%%VERSION%%/champlain/champlain-error-tile-renderer.h -include/libchamplain-%%VERSION%%/champlain/champlain-features.h -include/libchamplain-%%VERSION%%/champlain/champlain-file-cache.h -include/libchamplain-%%VERSION%%/champlain/champlain-file-tile-source.h -include/libchamplain-%%VERSION%%/champlain/champlain-image-renderer.h -include/libchamplain-%%VERSION%%/champlain/champlain-layer.h -include/libchamplain-%%VERSION%%/champlain/champlain-map-source-chain.h -include/libchamplain-%%VERSION%%/champlain/champlain-map-source-desc.h -include/libchamplain-%%VERSION%%/champlain/champlain-map-source-factory.h -include/libchamplain-%%VERSION%%/champlain/champlain-map-source.h -include/libchamplain-%%VERSION%%/champlain/champlain-marker.h -include/libchamplain-%%VERSION%%/champlain/champlain-marshal.h -include/libchamplain-%%VERSION%%/champlain/champlain-memory-cache.h -include/libchamplain-%%VERSION%%/champlain/champlain-network-bbox-tile-source.h -include/libchamplain-%%VERSION%%/champlain/champlain-network-tile-source.h -include/libchamplain-%%VERSION%%/champlain/champlain-null-tile-source.h -include/libchamplain-%%VERSION%%/champlain/champlain-point.h -include/libchamplain-%%VERSION%%/champlain/champlain-polygon.h -include/libchamplain-%%VERSION%%/champlain/champlain-renderer.h -include/libchamplain-%%VERSION%%/champlain/champlain-selection-layer.h -include/libchamplain-%%VERSION%%/champlain/champlain-tile-cache.h -include/libchamplain-%%VERSION%%/champlain/champlain-tile-source.h -include/libchamplain-%%VERSION%%/champlain/champlain-tile.h -include/libchamplain-%%VERSION%%/champlain/champlain-version.h -include/libchamplain-%%VERSION%%/champlain/champlain-view.h -include/libchamplain-%%VERSION%%/champlain/champlain.h -include/libchamplain-gtk-%%VERSION%%/champlain-gtk/champlain-gtk-enum-types.h -include/libchamplain-gtk-%%VERSION%%/champlain-gtk/champlain-gtk-marshal.h -include/libchamplain-gtk-%%VERSION%%/champlain-gtk/champlain-gtk.h -include/libchamplain-gtk-%%VERSION%%/champlain-gtk/gtk-champlain-embed.h -lib/girepository-1.0/Champlain-%%VERSION%%.typelib -lib/girepository-1.0/GtkChamplain-%%VERSION%%.typelib -lib/libchamplain-%%VERSION%%.a -lib/libchamplain-%%VERSION%%.la -lib/libchamplain-%%VERSION%%.so -lib/libchamplain-%%VERSION%%.so.1 -lib/libchamplain-%%VERSION%%.so.1.1.2 -lib/libchamplain-gtk-%%VERSION%%.a -lib/libchamplain-gtk-%%VERSION%%.la -lib/libchamplain-gtk-%%VERSION%%.so -lib/libchamplain-gtk-%%VERSION%%.so.1 -lib/libchamplain-gtk-%%VERSION%%.so.1.1.2 -libdata/pkgconfig/champlain-%%VERSION%%.pc -libdata/pkgconfig/champlain-gtk-%%VERSION%%.pc -%%PORTDOCS%%%%DOCSDIRGTK%%/GtkChamplainEmbed.html -%%PORTDOCS%%%%DOCSDIRGTK%%/home.png -%%PORTDOCS%%%%DOCSDIRGTK%%/index.html -%%PORTDOCS%%%%DOCSDIRGTK%%/index.sgml -%%PORTDOCS%%%%DOCSDIRGTK%%/left.png -%%PORTDOCS%%%%DOCSDIRGTK%%/libchamplain-gtk.devhelp -%%PORTDOCS%%%%DOCSDIRGTK%%/libchamplain-gtk.devhelp2 -%%PORTDOCS%%%%DOCSDIRGTK%%/pt01.html -%%PORTDOCS%%%%DOCSDIRGTK%%/right.png -%%PORTDOCS%%%%DOCSDIRGTK%%/style.css -%%PORTDOCS%%%%DOCSDIRGTK%%/up.png -%%PORTDOCS%%%%DOCSDIR%%/ChamplainBaseMarker.html -%%PORTDOCS%%%%DOCSDIR%%/ChamplainErrorTileRenderer.html -%%PORTDOCS%%%%DOCSDIR%%/ChamplainFileCache.html -%%PORTDOCS%%%%DOCSDIR%%/ChamplainFileTileSource.html -%%PORTDOCS%%%%DOCSDIR%%/ChamplainImageRenderer.html -%%PORTDOCS%%%%DOCSDIR%%/ChamplainLayer.html -%%PORTDOCS%%%%DOCSDIR%%/ChamplainMapSource.html -%%PORTDOCS%%%%DOCSDIR%%/ChamplainMapSourceChain.html -%%PORTDOCS%%%%DOCSDIR%%/ChamplainMapSourceFactory.html -%%PORTDOCS%%%%DOCSDIR%%/ChamplainMarker.html -%%PORTDOCS%%%%DOCSDIR%%/ChamplainMemoryCache.html -%%PORTDOCS%%%%DOCSDIR%%/ChamplainMemphisRenderer.html -%%PORTDOCS%%%%DOCSDIR%%/ChamplainNetworkBboxTileSource.html -%%PORTDOCS%%%%DOCSDIR%%/ChamplainNetworkTileSource.html -%%PORTDOCS%%%%DOCSDIR%%/ChamplainNullTileSource.html -%%PORTDOCS%%%%DOCSDIR%%/ChamplainPolygon.html -%%PORTDOCS%%%%DOCSDIR%%/ChamplainRenderer.html -%%PORTDOCS%%%%DOCSDIR%%/ChamplainSelectionLayer.html -%%PORTDOCS%%%%DOCSDIR%%/ChamplainTile.html -%%PORTDOCS%%%%DOCSDIR%%/ChamplainTileCache.html -%%PORTDOCS%%%%DOCSDIR%%/ChamplainTileSource.html -%%PORTDOCS%%%%DOCSDIR%%/ChamplainView.html -%%PORTDOCS%%%%DOCSDIR%%/ch01.html -%%PORTDOCS%%%%DOCSDIR%%/ch02.html -%%PORTDOCS%%%%DOCSDIR%%/ch03.html -%%PORTDOCS%%%%DOCSDIR%%/ch04.html -%%PORTDOCS%%%%DOCSDIR%%/ch05.html -%%PORTDOCS%%%%DOCSDIR%%/ch06.html -%%PORTDOCS%%%%DOCSDIR%%/home.png -%%PORTDOCS%%%%DOCSDIR%%/index.html -%%PORTDOCS%%%%DOCSDIR%%/index.sgml -%%PORTDOCS%%%%DOCSDIR%%/ix01.html -%%PORTDOCS%%%%DOCSDIR%%/ix02.html -%%PORTDOCS%%%%DOCSDIR%%/ix03.html -%%PORTDOCS%%%%DOCSDIR%%/ix04.html -%%PORTDOCS%%%%DOCSDIR%%/ix05.html -%%PORTDOCS%%%%DOCSDIR%%/ix06.html -%%PORTDOCS%%%%DOCSDIR%%/ix07.html -%%PORTDOCS%%%%DOCSDIR%%/left.png -%%PORTDOCS%%%%DOCSDIR%%/libchamplain-ChamplainBoundingBox.html -%%PORTDOCS%%%%DOCSDIR%%/libchamplain-ChamplainMapSourceDesc.html -%%PORTDOCS%%%%DOCSDIR%%/libchamplain-ChamplainPoint.html -%%PORTDOCS%%%%DOCSDIR%%/libchamplain-ChamplainVersion.html -%%PORTDOCS%%%%DOCSDIR%%/libchamplain.devhelp -%%PORTDOCS%%%%DOCSDIR%%/libchamplain.devhelp2 -%%PORTDOCS%%%%DOCSDIR%%/pt01.html -%%PORTDOCS%%%%DOCSDIR%%/pt02.html -%%PORTDOCS%%%%DOCSDIR%%/pt03.html -%%PORTDOCS%%%%DOCSDIR%%/pt04.html -%%PORTDOCS%%%%DOCSDIR%%/pt05.html -%%PORTDOCS%%%%DOCSDIR%%/right.png -%%PORTDOCS%%%%DOCSDIR%%/style.css -%%PORTDOCS%%%%DOCSDIR%%/up.png -share/gir-1.0/Champlain-%%VERSION%%.gir -share/gir-1.0/GtkChamplain-%%VERSION%%.gir -share/vala/vapi/champlain-%%VERSION%%.deps -share/vala/vapi/champlain-%%VERSION%%.vapi -share/vala/vapi/champlain-gtk-%%VERSION%%.deps -share/vala/vapi/champlain-gtk-%%VERSION%%.vapi diff --git a/sysutils/Makefile b/sysutils/Makefile index 044b243..6f95517 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -1045,9 +1045,6 @@ SUBDIR += syslog-ng SUBDIR += syslog-ng-devel SUBDIR += syslog-ng-incubator - SUBDIR += syslog-ng-incubator03 - SUBDIR += syslog-ng34 - SUBDIR += syslog-ng35 SUBDIR += syslog-ng36 SUBDIR += syslog-ng37 SUBDIR += syslogger diff --git a/sysutils/syslog-ng-incubator03/Makefile b/sysutils/syslog-ng-incubator03/Makefile deleted file mode 100644 index 603dde7..0000000 --- a/sysutils/syslog-ng-incubator03/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -# Created by: Peter Czanik <czanik@balabit.hu> -# $FreeBSD$ - -PORTNAME= syslog-ng-incubator -PORTVERSION= 0.3.3 -PORTREVISION= 1 -CATEGORIES= sysutils -MASTER_SITES= http://packages.madhouse-project.org/syslog-ng/incubator/ -DISTFILES= syslog-ng-incubator-${PORTVERSION}.tar.xz -PKGNAMESUFFIX= 03 - -MAINTAINER= cy@FreeBSD.org -COMMENT= The syslog-ng module incubator - -DEPRECATED= EOL, no longer supported by bababit.hu -EXPIRATION_DATE= 2016-06-30 - -WRKSRC= $(WRKDIR)/$(PORTNAME)-$(PORTVERSION) - -MAKE_JOBS_UNSAFE= yes - -LIB_DEPENDS= libevtlog.so:sysutils/eventlog \ - libsyslog-ng-3.5.6.so:sysutils/syslog-ng35 - -USES= bison gmake libtool lua pathfix pkgconfig shebangfix tar:xz -SHEBANG_FILES= scl/elasticsearch/es-bridge -USE_LDCONFIG= yes -GNU_CONFIGURE= yes -USE_GNOME= glib20 -USE_AUTOTOOLS= autoconf:env - -CONFIGURE_ARGS= --datadir=${PREFIX}/share/syslog-ng/ - -.include <bsd.port.mk> diff --git a/sysutils/syslog-ng-incubator03/distinfo b/sysutils/syslog-ng-incubator03/distinfo deleted file mode 100644 index e0f9954..0000000 --- a/sysutils/syslog-ng-incubator03/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (syslog-ng-incubator-0.3.3.tar.xz) = 7cc64867fd80e20111d6b5dc054a9ceb17569efe29fd7d71b7a01dec82a7abf7 -SIZE (syslog-ng-incubator-0.3.3.tar.xz) = 263956 diff --git a/sysutils/syslog-ng-incubator03/pkg-descr b/sysutils/syslog-ng-incubator03/pkg-descr deleted file mode 100644 index 8300c32..0000000 --- a/sysutils/syslog-ng-incubator03/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -The syslog-ng module incubator (Incubator henceforth) is a collection of -tools and modules for syslog-ng that for one reason or the other, are not -part of the official repository. This serves both as a staging ground for -experimental modules, and as a repository of plugins that are not aimed at -upstream inclusion. It's also an example of a third party syslog-ng module. - -The official home page of syslog-ng-incubator is: -https://github.com/balabit/syslog-ng-incubator diff --git a/sysutils/syslog-ng-incubator03/pkg-plist b/sysutils/syslog-ng-incubator03/pkg-plist deleted file mode 100644 index 2b4afad..0000000 --- a/sysutils/syslog-ng-incubator03/pkg-plist +++ /dev/null @@ -1,21 +0,0 @@ -lib/syslog-ng/libbasicfuncs-plus.a -lib/syslog-ng/libbasicfuncs-plus.so -lib/syslog-ng/libgraphite.a -lib/syslog-ng/libgraphite.so -lib/syslog-ng/liblua.a -lib/syslog-ng/liblua.so -lib/syslog-ng/libmod-perl.a -lib/syslog-ng/libmod-perl.so -lib/syslog-ng/libmod-python.a -lib/syslog-ng/libmod-python.so -lib/syslog-ng/libmonitor-source.a -lib/syslog-ng/libmonitor-source.so -lib/syslog-ng/librss.a -lib/syslog-ng/librss.so -lib/syslog-ng/libtfgetent.a -lib/syslog-ng/libtfgetent.so -lib/syslog-ng/libtrigger-source.a -lib/syslog-ng/libtrigger-source.so -share/syslog-ng/include/scl/elasticsearch/es-bridge -share/syslog-ng/include/scl/elasticsearch/plugin.conf -share/syslog-ng/include/scl/graphite/plugin.conf diff --git a/sysutils/syslog-ng34/Makefile b/sysutils/syslog-ng34/Makefile deleted file mode 100644 index 1860160..0000000 --- a/sysutils/syslog-ng34/Makefile +++ /dev/null @@ -1,142 +0,0 @@ -# Created by: Ivan Lago <ivan.lago@ifom-ieo-campus.it> -# $FreeBSD$ - -PORTNAME= syslog-ng -PORTVERSION= 3.4.8 -PORTREVISION= 9 -CATEGORIES= sysutils -DISTVERSION= $(PORTVERSION:S/a/alpha/:S/b/beta/:S/r/rc/) -.if !defined(MASTERDIR) -PKGNAMESUFFIX= 34 -.endif -DISTFILES= syslog-ng_${DISTVERSION}.tar.gz -MASTER_SITES= http://www.balabit.com/downloads/files/syslog-ng/open-source-edition/${DISTVERSION}/source/ - -MAINTAINER= cy@FreeBSD.org -COMMENT= Powerful syslogd replacement - -BROKEN_powerpc64= Does not build - -DEPRECATED= EOL, no longer supported by bababit.hu -EXPIRATION_DATE= 2016-06-30 - -LIB_DEPENDS= libevtlog.so:sysutils/eventlog - -CONFLICTS?= syslog-ng-[0-9]* syslog-ng[0-9]-[0-9]* \ - syslog-ng[0-9][0-9]-[0-9]* \ - syslog-ng-devel-[0-9]* -WRKSRC= $(WRKDIR)/$(PORTNAME)-$(DISTVERSION) - -OPTIONS_DEFINE= TCP_WRAPPERS SQL SPOOF IPV6 PCRE SMTP JSON GEOIP DOCS OPENSSL -OPTIONS_DEFAULT= OPENSSL PCRE -TCP_WRAPPERS_DESC= Build with TCP Wrappers -SQL_DESC= Build with database (libdbi) support -SPOOF_DESC= Build with spoof source support -IPV6_DESC= Build with IPV6 support -PCRE_DESC= Build with PCRE support -SMTP_DESC= Build with SMTP support -JSON_DESC= Build with JSON-C support -GEOIP_DESC= Build with GeoIP support - -USES= gmake libtool pathfix pkgconfig -USE_LDCONFIG= yes -USE_RC_SUBR= syslog-ng -GNU_CONFIGURE= yes -USE_GNOME= glib20 -SUB_FILES= pkg-message - -CONFIGURE_ARGS= --sysconfdir=${LOCALBASE}/etc --localstatedir=/var/db \ - --enable-dynamic-linking \ - --enable-debug --disable-linux-caps - -BROKEN_sparc64= Does not compile on sparc64: gcc core dump - -.include <bsd.port.options.mk> - -.if ${PORT_OPTIONS:MOPENSSL} -USE_OPENSSL= yes -WITH_OPENSSL_PORT= yes -CONFIGURE_ARGS+= --enable-ssl -CONFIGURE_ENV+= OPENSSL_CFLAGS="${OPENSSL_CFLAGS}" \ - OPENSSL_LIBS="${OPENSSL_LDFLAGS} -lcrypto -lssl" -PLIST_FILES+= lib/syslog-ng/libafsocket-tls.so -.else -CONFIGURE_ARGS+= --disable-ssl -.endif - -.if ${PORT_OPTIONS:MTCP_WRAPPERS} -CONFIGURE_ARGS+= --enable-tcp-wrapper -.else -CONFIGURE_ARGS+= --disable-tcp-wrapper -.endif - -.if ${PORT_OPTIONS:MSPOOF} -LIB_DEPENDS+= libnet.so:net/libnet -CONFIGURE_ARGS+= --enable-spoof-source -.else -CONFIGURE_ARGS+= --disable-spoof-source -.endif - -.if ${PORT_OPTIONS:MIPV6} -CONFIGURE_ARGS+= --enable-ipv6 -.else -CONFIGURE_ARGS+= --disable-ipv6 -.endif - -.if ${PORT_OPTIONS:MPCRE} -CONFIGURE_ARGS+= --enable-pcre -LIB_DEPENDS+= libpcre.so:devel/pcre -.else -CONFIGURE_ARGS+= --disable-pcre -.endif - -.if ${PORT_OPTIONS:MGEOIP} -CONFIGURE_ARGS+= --enable-geoip -LIB_DEPENDS+= libGeoIP.so:net/GeoIP -CONFIGURE_ENV+= GEOIP_LIBS="-lGeoIP" -PLIST_FILES+= lib/syslog-ng/libtfgeoip.so -.else -CONFIGURE_ARGS+= --disable-geoip -.endif - -.if ${PORT_OPTIONS:MSMTP} -CONFIGURE_ARGS+= --with-libesmtp=/usr/local/ -LIB_DEPENDS+= libesmtp.so:mail/libesmtp -PLIST_FILES+= lib/syslog-ng/libafsmtp.so -.else -CONFIGURE_ARGS+= --disable-smtp -.endif - -.if ${PORT_OPTIONS:MSQL} -LIB_DEPENDS+= libdbi.so:databases/libdbi -CONFIGURE_ENV+= LIBDBI_LIBS="-L${LOCALBASE}/lib -ldbi" -CONFIGURE_ARGS+= --enable-sql -PLIST_FILES+= lib/syslog-ng/libafsql.so -.else -CONFIGURE_ARGS+= --disable-sql -.endif - -.if ${PORT_OPTIONS:MJSON} -LIB_DEPENDS+= libjson-c.so:devel/json-c -CONFIGURE_ARGS+= --enable-json -PLIST_FILES+= lib/syslog-ng/libjson-plugin.so -.else -CONFIGURE_ARGS+= --disable-json -.endif - -post-patch: - @${LN} ${WRKSRC}/scl/syslog-ng.conf ${WRKSRC}/scl/syslog-ng.conf.sample - @${LN} ${WRKSRC}/scl/scl.conf ${WRKSRC}/scl/scl.conf.sample - -post-install: - ${INSTALL_DATA} ${FILESDIR}/syslog-ng.conf.sample ${STAGEDIR}${PREFIX}/etc - ${INSTALL_DATA} ${WRKSRC}/scl/syslog-ng.conf.sample ${STAGEDIR}${PREFIX}/etc - ${INSTALL_DATA} ${WRKSRC}/scl/scl.conf.sample ${STAGEDIR}${PREFIX}/etc - -post-install-DOCS-on: - ${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/AUTHORS ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/COPYING ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/NEWS ${STAGEDIR}${DOCSDIR} - -.include <bsd.port.mk> diff --git a/sysutils/syslog-ng34/distinfo b/sysutils/syslog-ng34/distinfo deleted file mode 100644 index 4b85a35..0000000 --- a/sysutils/syslog-ng34/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (syslog-ng_3.4.8.tar.gz) = 96c2f970fbba4fdd7659b1fee5e476d2858c911d4304d42099f495493762ff49 -SIZE (syslog-ng_3.4.8.tar.gz) = 3169372 diff --git a/sysutils/syslog-ng34/files/patch-configure b/sysutils/syslog-ng34/files/patch-configure deleted file mode 100644 index c3c533b..0000000 --- a/sysutils/syslog-ng34/files/patch-configure +++ /dev/null @@ -1,14 +0,0 @@ ---- configure.orig 2016-03-22 04:58:27.000000000 -0700 -+++ configure 2016-03-23 20:51:10.722420000 -0700 -@@ -14996,9 +14996,9 @@ - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBNET" >&5 - $as_echo_n "checking for LIBNET... " >&6; } - if test "x$with_libnet" = "x"; then -- LIBNET_CONFIG="`which libnet-config`" -+ LIBNET_CONFIG="`which libnet11-config`" - else -- LIBNET_CONFIG="$with_libnet/libnet-config" -+ LIBNET_CONFIG="$with_libnet/libnet11-config" - fi - - if test -n "$LIBNET_CONFIG" -a -x "$LIBNET_CONFIG"; then diff --git a/sysutils/syslog-ng34/files/patch-modules__afsocket__afinet-dest.c b/sysutils/syslog-ng34/files/patch-modules__afsocket__afinet-dest.c deleted file mode 100644 index 7af83d8..0000000 --- a/sysutils/syslog-ng34/files/patch-modules__afsocket__afinet-dest.c +++ /dev/null @@ -1,11 +0,0 @@ ---- modules/afsocket/afinet-dest.c.orig 2016-03-22 02:39:13.000000000 -0700 -+++ modules/afsocket/afinet-dest.c 2016-03-23 22:07:14.289961000 -0700 -@@ -42,7 +42,7 @@ - #endif - - #if ENABLE_SPOOF_SOURCE --#include <libnet.h> -+#include <libnet11/libnet.h> - #endif - - #if _GNU_SOURCE_DEFINED diff --git a/sysutils/syslog-ng34/files/pkg-message.in b/sysutils/syslog-ng34/files/pkg-message.in deleted file mode 100644 index 36cb7e6..0000000 --- a/sysutils/syslog-ng34/files/pkg-message.in +++ /dev/null @@ -1,29 +0,0 @@ - -syslog-ng is now installed! To replace FreeBSD's standard syslogd -(/usr/sbin/syslogd), complete these steps: - -1. Create a configuration file named %%PREFIX%%/etc/syslog-ng.conf - (a sample named syslog-ng.conf.sample has been included in - %%PREFIX%%/etc). Note that this is a change in 2.0.2 - version, previous ones put the config file in - %%PREFIX%%/etc/syslog-ng/syslog-ng.conf, so if this is an update - move that file in the right place - -2. Configure syslog-ng to start automatically by adding the following - to /etc/rc.conf: - - syslog_ng_enable="YES" - -3. Prevent the standard FreeBSD syslogd from starting automatically by - adding a line to the end of your /etc/rc.conf file that reads: - - syslogd_enable="NO" - -4. Shut down the standard FreeBSD syslogd: - - kill `cat /var/run/syslog.pid` - -5. Start syslog-ng: - - %%PREFIX%%/etc/rc.d/syslog-ng start - diff --git a/sysutils/syslog-ng34/files/syslog-ng.conf.sample b/sysutils/syslog-ng34/files/syslog-ng.conf.sample deleted file mode 100644 index c44b473..0000000 --- a/sysutils/syslog-ng34/files/syslog-ng.conf.sample +++ /dev/null @@ -1,185 +0,0 @@ -@version:3.4 - -# -# This sample configuration file is essentially equilivent to the stock -# FreeBSD /etc/syslog.conf file. -# -# $FreeBSD$ -# - -# -# options -# -options { chain_hostnames(off); flush_lines(0); threaded(yes); }; - -# -# sources -# -source src { unix-dgram("/var/run/log"); - unix-dgram("/var/run/logpriv" perm(0600)); - udp(); internal(); file("/dev/klog"); }; - -# -# destinations -# -destination messages { file("/var/log/messages"); }; -destination security { file("/var/log/security"); }; -destination authlog { file("/var/log/auth.log"); }; -destination maillog { file("/var/log/maillog"); }; -destination lpd-errs { file("/var/log/lpd-errs"); }; -destination xferlog { file("/var/log/xferlog"); }; -destination cron { file("/var/log/cron"); }; -destination debuglog { file("/var/log/debug.log"); }; -destination consolelog { file("/var/log/console.log"); }; -destination all { file("/var/log/all.log"); }; -destination newscrit { file("/var/log/news/news.crit"); }; -destination newserr { file("/var/log/news/news.err"); }; -destination newsnotice { file("/var/log/news/news.notice"); }; -destination slip { file("/var/log/slip.log"); }; -destination ppp { file("/var/log/ppp.log"); }; -destination console { file("/dev/console"); }; -destination allusers { usertty("*"); }; -#destination loghost { udp("loghost" port(514)); }; - -# -# log facility filters -# -filter f_auth { facility(auth); }; -filter f_authpriv { facility(authpriv); }; -filter f_not_authpriv { not facility(authpriv); }; -#filter f_console { facility(console); }; -filter f_cron { facility(cron); }; -filter f_daemon { facility(daemon); }; -filter f_ftp { facility(ftp); }; -filter f_kern { facility(kern); }; -filter f_lpr { facility(lpr); }; -filter f_mail { facility(mail); }; -filter f_news { facility(news); }; -filter f_security { facility(security); }; -filter f_user { facility(user); }; -filter f_uucp { facility(uucp); }; -filter f_local0 { facility(local0); }; -filter f_local1 { facility(local1); }; -filter f_local2 { facility(local2); }; -filter f_local3 { facility(local3); }; -filter f_local4 { facility(local4); }; -filter f_local5 { facility(local5); }; -filter f_local6 { facility(local6); }; -filter f_local7 { facility(local7); }; - -# -# log level filters -# -filter f_emerg { level(emerg); }; -filter f_alert { level(alert..emerg); }; -filter f_crit { level(crit..emerg); }; -filter f_err { level(err..emerg); }; -filter f_warning { level(warning..emerg); }; -filter f_notice { level(notice..emerg); }; -filter f_info { level(info..emerg); }; -filter f_debug { level(debug..emerg); }; -filter f_is_debug { level(debug); }; - -# -# program filters -# -filter f_ppp { program("ppp"); }; -filter f_slip { program("startslip"); }; - -# -# *.err;kern.warning;auth.notice;mail.crit /dev/console -# -log { source(src); filter(f_err); destination(console); }; -log { source(src); filter(f_kern); filter(f_warning); destination(console); }; -log { source(src); filter(f_auth); filter(f_notice); destination(console); }; -log { source(src); filter(f_mail); filter(f_crit); destination(console); }; - -# -# *.notice;authpriv.none;kern.debug;lpr.info;mail.crit;news.err /var/log/messages -# -log { source(src); filter(f_notice); filter(f_not_authpriv); destination(messages); }; -log { source(src); filter(f_kern); filter(f_debug); destination(messages); }; -log { source(src); filter(f_lpr); filter(f_info); destination(messages); }; -log { source(src); filter(f_mail); filter(f_crit); destination(messages); }; -log { source(src); filter(f_news); filter(f_err); destination(messages); }; - -# -# security.* /var/log/security -# -log { source(src); filter(f_security); destination(security); }; - -# -# auth.info;authpriv.info /var/log/auth.log -log { source(src); filter(f_auth); filter(f_info); destination(authlog); }; -log { source(src); filter(f_authpriv); filter(f_info); destination(authlog); }; - -# -# mail.info /var/log/maillog -# -log { source(src); filter(f_mail); filter(f_info); destination(maillog); }; - -# -# lpr.info /var/log/lpd-errs -# -log { source(src); filter(f_lpr); filter(f_info); destination(lpd-errs); }; - -# -# ftp.info /var/log/xferlog -# -log { source(src); filter(f_ftp); filter(f_info); destination(xferlog); }; - -# -# cron.* /var/log/cron -# -log { source(src); filter(f_cron); destination(cron); }; - -# -# *.=debug /var/log/debug.log -# -log { source(src); filter(f_is_debug); destination(debuglog); }; - -# -# *.emerg * -# -log { source(src); filter(f_emerg); destination(allusers); }; - -# -# uncomment this to log all writes to /dev/console to /var/log/console.log -# console.info /var/log/console.log -# -#log { source(src); filter(f_console); filter(f_info); destination(consolelog); }; - -# -# uncomment this to enable logging of all log messages to /var/log/all.log -# touch /var/log/all.log and chmod it to mode 600 before it will work -# *.* /var/log/all.log -# -#log { source(src); destination(all); }; - -# -# uncomment this to enable logging to a remote loghost named loghost -# *.* @loghost -# -#log { source(src); destination(loghost); }; - -# -# uncomment these if you're running inn -# news.crit /var/log/news/news.crit -# news.err /var/log/news/news.err -# news.notice /var/log/news/news.notice -# -#log { source(src); filter(f_news); filter(f_crit); destination(newscrit); }; -#log { source(src); filter(f_news); filter(f_err); destination(newserr); }; -#log { source(src); filter(f_news); filter(f_notice); destination(newsnotice); }; - -# -# !startslip -# *.* /var/log/slip.log -# -log { source(src); filter(f_slip); destination(slip); }; - -# -# !ppp -# *.* /var/log/ppp.log -# -log { source(src); filter(f_ppp); destination(ppp); }; diff --git a/sysutils/syslog-ng34/files/syslog-ng.in b/sysutils/syslog-ng34/files/syslog-ng.in deleted file mode 100644 index 804bf6e..0000000 --- a/sysutils/syslog-ng34/files/syslog-ng.in +++ /dev/null @@ -1,46 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -# PROVIDE: syslogd -# REQUIRE: mountcritremote cleanvar ldconfig -# BEFORE: SERVERS - -# -# Add the following line to /etc/rc.conf.local or /etc/rc.conf -# to enable this service: -# -#syslog_ng_enable="YES" -#syslog_ng_config="-u daemon" -#syslog_ng_pid="/var/run/syslog-ng.pid" -# - -syslog_ng_purgeklog=${syslog_ng_purgeklog-"NO"} - -. /etc/rc.subr - -name=syslog_ng -rcvar=syslog_ng_enable - -command=%%PREFIX%%/sbin/syslog-ng -required_files=%%PREFIX%%/etc/syslog-ng.conf -extra_commands=reload - -if checkyesno syslog_ng_purgeklog; then - start_precmd="echo \"Purging klog(9)\" && sysctl -w kern.msgbuf_clear=1 $start_precmd"; -fi - -stop_postcmd=stop_postcmd - -load_rc_config $name - -: ${syslog_ng_enable:="NO"} -pidfile=${syslog_ng_pid:-"/var/run/syslog.pid"} -command_args="-p ${pidfile} ${syslog_ng_config}" - -stop_postcmd() { - rm -f $pidfile -} - -run_rc_command "$1" diff --git a/sysutils/syslog-ng34/pkg-descr b/sysutils/syslog-ng34/pkg-descr deleted file mode 100644 index fa72550..0000000 --- a/sysutils/syslog-ng34/pkg-descr +++ /dev/null @@ -1,17 +0,0 @@ -syslog-ng is an enhanced log daemon, supporting a wide range of input and -output methods: syslog, unstructured text, message queues, databases (SQL -and NoSQL alike) and more. - -Key features: - - * receive and send RFC3164 and RFC5424 style syslog messages - * work with any kind of unstructured data - * receive and send JSON formatted messages - * classify and structure logs with builtin parsers (csv-parser(), - db-parser(), ...) - * normalize, crunch and process logs as they flow through the system - * hand on messages for further processing using message queues (like - AMQP), files or databases (like PostgreSQL or MongoDB). - -The official home page of syslog-ng is: -http://www.balabit.com/network-security/syslog-ng/ diff --git a/sysutils/syslog-ng34/pkg-plist b/sysutils/syslog-ng34/pkg-plist deleted file mode 100644 index 773c020..0000000 --- a/sysutils/syslog-ng34/pkg-plist +++ /dev/null @@ -1,125 +0,0 @@ -@unexec %D/etc/rc.d/syslog-ng.sh stop > /dev/null 2>&1 || true -@sample etc/syslog-ng.conf.sample -bin/loggen -bin/pdbtool -bin/update-patterndb -@sample etc/scl.conf.sample -%%ETCDIR%%.conf -include/syslog-ng/afinter.h -include/syslog-ng/alarms.h -include/syslog-ng/apphook.h -include/syslog-ng/atomic.h -include/syslog-ng/block-ref-parser.h -include/syslog-ng/cfg-args.h -include/syslog-ng/cfg-grammar.h -include/syslog-ng/cfg-lexer-subst.h -include/syslog-ng/cfg-lexer.h -include/syslog-ng/cfg-parser.h -include/syslog-ng/cfg-tree.h -include/syslog-ng/cfg.h -include/syslog-ng/children.h -include/syslog-ng/compat.h -include/syslog-ng/control.h -include/syslog-ng/crypto.h -include/syslog-ng/dnscache.h -include/syslog-ng/driver.h -include/syslog-ng/file-perms.h -include/syslog-ng/filter-expr-parser.h -include/syslog-ng/filter.h -include/syslog-ng/gprocess.h -include/syslog-ng/gsockaddr.h -include/syslog-ng/gsocket.h -include/syslog-ng/logmatcher.h -include/syslog-ng/logmpx.h -include/syslog-ng/logmsg.h -include/syslog-ng/logparser.h -include/syslog-ng/logpipe.h -include/syslog-ng/logproto-buffered-server.h -include/syslog-ng/logproto-builtins.h -include/syslog-ng/logproto-client.h -include/syslog-ng/logproto-dgram-server.h -include/syslog-ng/logproto-framed-client.h -include/syslog-ng/logproto-framed-server.h -include/syslog-ng/logproto-record-server.h -include/syslog-ng/logproto-server.h -include/syslog-ng/logproto-text-client.h -include/syslog-ng/logproto-text-server.h -include/syslog-ng/logproto.h -include/syslog-ng/logqueue-fifo.h -include/syslog-ng/logqueue.h -include/syslog-ng/logreader.h -include/syslog-ng/logrewrite.h -include/syslog-ng/logsource.h -include/syslog-ng/logstamp.h -include/syslog-ng/logtransport.h -include/syslog-ng/logwriter.h -include/syslog-ng/mainloop.h -include/syslog-ng/memtrace.h -include/syslog-ng/messages.h -include/syslog-ng/misc.h -include/syslog-ng/ml-batched-timer.h -include/syslog-ng/msg-format.h -include/syslog-ng/nvtable.h -include/syslog-ng/parser-expr-parser.h -include/syslog-ng/persist-state.h -include/syslog-ng/plugin.h -include/syslog-ng/pragma-parser.h -include/syslog-ng/rewrite-expr-parser.h -include/syslog-ng/scratch-buffers.h -include/syslog-ng/serialize.h -include/syslog-ng/stats.h -include/syslog-ng/str-format.h -include/syslog-ng/syslog-names.h -include/syslog-ng/syslog-ng.h -include/syslog-ng/tags.h -include/syslog-ng/templates.h -include/syslog-ng/timeutils.h -include/syslog-ng/tls-support.h -include/syslog-ng/tlscontext.h -include/syslog-ng/tlstransport.h -include/syslog-ng/utils.h -include/syslog-ng/uuid.h -include/syslog-ng/value-pairs.h -include/syslog-ng/versioning.h -include/syslog-ng/vptransform.h -lib/libsyslog-ng-3.4.8.so -lib/libsyslog-ng.so -lib/syslog-ng/libafamqp.so -lib/syslog-ng/libaffile.so -lib/syslog-ng/libafmongodb.so -lib/syslog-ng/libafprog.so -lib/syslog-ng/libafsocket-notls.so -lib/syslog-ng/libafsocket.so -lib/syslog-ng/libafuser.so -lib/syslog-ng/libbasicfuncs.so -lib/syslog-ng/libconfgen.so -lib/syslog-ng/libcryptofuncs.so -lib/syslog-ng/libcsvparser.so -lib/syslog-ng/libdbparser.so -lib/syslog-ng/libsyslog-ng-crypto.so -lib/syslog-ng/libsyslogformat.so -lib/syslog-ng/libsystem-source.so -libdata/pkgconfig/syslog-ng.pc -man/man1/loggen.1.gz -man/man1/pdbtool.1.gz -man/man1/syslog-ng-ctl.1.gz -man/man5/syslog-ng.conf.5.gz -man/man8/syslog-ng.8.gz -sbin/syslog-ng -sbin/syslog-ng-ctl -share/include/scl/pacct/plugin.conf -share/include/scl/syslogconf/README -share/include/scl/syslogconf/convert-syslogconf.awk -share/include/scl/syslogconf/plugin.conf -share/include/scl/system/plugin.conf -share/tools/cfg-grammar.y -share/tools/lex-rules.am -share/tools/merge-grammar.pl -share/xsd/patterndb-1.xsd -share/xsd/patterndb-2.xsd -share/xsd/patterndb-3.xsd -share/xsd/patterndb-4.xsd -%%PORTDOCS%%%%DOCSDIR%%/AUTHORS -%%PORTDOCS%%%%DOCSDIR%%/COPYING -%%PORTDOCS%%%%DOCSDIR%%/NEWS -@dir etc/patterndb.d diff --git a/sysutils/syslog-ng35/Makefile b/sysutils/syslog-ng35/Makefile deleted file mode 100644 index 2f521cf..0000000 --- a/sysutils/syslog-ng35/Makefile +++ /dev/null @@ -1,160 +0,0 @@ -# Created by: Ivan Lago <ivan.lago@ifom-ieo-campus.it> -# $FreeBSD$ - -PORTNAME= syslog-ng -PORTVERSION= 3.5.6 -PORTREVISION= 6 -PKGNAMESUFFIX= 35 -CATEGORIES= sysutils -DISTVERSION= $(PORTVERSION:S/a/alpha/:S/b/beta/:S/r/rc/) -DISTFILES= syslog-ng_${DISTVERSION}.tar.gz -MASTER_SITES= http://www.balabit.com/downloads/files/syslog-ng/open-source-edition/${DISTVERSION}/source/ - -MAINTAINER= cy@FreeBSD.org -COMMENT= Powerful syslogd replacement - -BROKEN_powerpc64= Does not build - -DEPRECATED= EOL, no longer supported by bababit.hu -EXPIRATION_DATE= 2016-06-30 - -LIB_DEPENDS= libevtlog.so:sysutils/eventlog - -CONFLICTS?= syslog-ng-[0-9]* syslog-ng[0-9]-[0-9]* \ - syslog-ng[0-9][0-9]-[0-9]* \ - syslog-ng-devel-[0-9]* -WRKSRC= $(WRKDIR)/$(PORTNAME)-$(DISTVERSION) - -MAKE_JOBS_UNSAFE= yes -OPTIONS_DEFINE= TCP_WRAPPERS SQL SPOOF IPV6 PCRE SMTP JSON GEOIP DOCS REDIS OPENSSL -OPTIONS_DEFAULT= OPENSSL PCRE -TCP_WRAPPERS_DESC= Build with TCP Wrappers -SQL_DESC= Build with database (libdbi) support -SPOOF_DESC= Build with spoof source support -IPV6_DESC= Build with IPV6 support -PCRE_DESC= Build with PCRE support -SMTP_DESC= Build with SMTP support -JSON_DESC= Build with JSON-C support -GEOIP_DESC= Build with GeoIP support -REDIS_DESC= Build with Redis support - -USES= gmake libtool pathfix pkgconfig -USE_LDCONFIG= yes -USE_RC_SUBR= syslog-ng -GNU_CONFIGURE= yes -USE_GNOME= glib20 -SUB_FILES= pkg-message -INSTALL_TARGET= install-strip - -CONFIGURE_ARGS= --sysconfdir=${LOCALBASE}/etc --localstatedir=/var/db \ - --enable-dynamic-linking \ - --enable-debug --disable-linux-caps \ - --datadir=${PREFIX}/share/syslog-ng/ - -BROKEN_sparc64= Does not compile on sparc64: gcc core dump - -.include <bsd.port.options.mk> - -.if ${PORT_OPTIONS:MOPENSSL} -USE_OPENSSL= yes -WITH_OPENSSL_PORT= yes -CONFIGURE_ARGS+= --enable-ssl -CONFIGURE_ENV+= OPENSSL_CFLAGS="-I${OPENSSLINC}" \ - OPENSSL_LIBS="-L${OPENSSLLIB} -lcrypto -lssl" -PLIST_FILES+= lib/syslog-ng/libafsocket-tls.so -.else -CONFIGURE_ARGS+= --disable-ssl -.endif - -.if ${PORT_OPTIONS:MTCP_WRAPPERS} -CONFIGURE_ARGS+= --enable-tcp-wrapper -.else -CONFIGURE_ARGS+= --disable-tcp-wrapper -.endif - -.if ${PORT_OPTIONS:MSPOOF} -LIB_DEPENDS+= libnet.so:net/libnet -CONFIGURE_ARGS+= --enable-spoof-source -.else -CONFIGURE_ARGS+= --disable-spoof-source -.endif - -.if ${PORT_OPTIONS:MIPV6} -CONFIGURE_ARGS+= --enable-ipv6 -.else -CONFIGURE_ARGS+= --disable-ipv6 -.endif - -.if ${PORT_OPTIONS:MPCRE} -CONFIGURE_ARGS+= --enable-pcre -LIB_DEPENDS+= libpcre.so:devel/pcre -.else -CONFIGURE_ARGS+= --disable-pcre -.endif - -.if ${PORT_OPTIONS:MGEOIP} -CONFIGURE_ARGS+= --enable-geoip -LIB_DEPENDS+= libGeoIP.so:net/GeoIP -CONFIGURE_ENV+= GEOIP_LIBS="-L${LOCALBASE}/lib -lGeoIP" -PLIST_FILES+= lib/syslog-ng/libtfgeoip.so -.else -CONFIGURE_ARGS+= --disable-geoip -.endif - -.if ${PORT_OPTIONS:MREDIS} -CONFIGURE_ARGS+= --enable-redis -LIB_DEPENDS+= libhiredis.so:databases/hiredis -PLIST_FILES+= lib/syslog-ng/libredis.so -.else -CONFIGURE_ARGS+= --disable-redis -.endif - - -.if ${PORT_OPTIONS:MSMTP} -CONFIGURE_ARGS+= --with-libesmtp=/usr/local/ -LIB_DEPENDS+= libesmtp.so:mail/libesmtp -PLIST_FILES+= lib/syslog-ng/libafsmtp.so -.else -CONFIGURE_ARGS+= --disable-smtp -.endif - -.if ${PORT_OPTIONS:MSQL} -LIB_DEPENDS+= libdbi.so:databases/libdbi -CONFIGURE_ENV+= LIBDBI_LIBS="-ldbi" -CONFIGURE_ARGS+= --enable-sql -LDFLAGS+= -L${LOCALBASE}/lib -PLIST_FILES+= lib/syslog-ng/libafsql.so -.else -CONFIGURE_ARGS+= --disable-sql -.endif - -.if ${PORT_OPTIONS:MJSON} -LIB_DEPENDS+= libjson-c.so:devel/json-c -CONFIGURE_ARGS+= --enable-json -PLIST_FILES+= lib/syslog-ng/libjson-plugin.so -.else -CONFIGURE_ARGS+= --disable-json -.endif - -post-patch: - @${CP} ${WRKSRC}/scl/syslog-ng.conf ${WRKSRC}/scl/syslog-ng.conf.dist - @${CP} ${WRKSRC}/scl/scl.conf ${WRKSRC}/scl/scl.conf.sample - -post-install: -.if ${PORT_OPTIONS:MDOCS} - ${INSTALL} -d -o ${SHAREOWN} -g ${SHAREGRP} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/AUTHORS ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/COPYING ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/NEWS ${STAGEDIR}${DOCSDIR} -.endif - ${INSTALL_MAN} ${WRKSRC}/doc/man/*.1 ${STAGEDIR}${PREFIX}/man/man1/ - ${INSTALL_MAN} ${WRKSRC}/doc/man/*.5 ${STAGEDIR}${PREFIX}/man/man5/ - ${INSTALL_MAN} ${WRKSRC}/doc/man/*.8 ${STAGEDIR}${PREFIX}/man/man8/ - ${INSTALL_DATA} ${FILESDIR}/syslog-ng.conf.sample \ - ${STAGEDIR}${PREFIX}/etc - ${INSTALL_DATA} ${WRKSRC}/scl/syslog-ng.conf.dist \ - ${WRKSRC}/scl/scl.conf.sample ${STAGEDIR}${PREFIX}/etc - ${INSTALL_DATA} ${WRKSRC}/lib/ivykis/src/include/iv*.h \ - ${STAGEDIR}${PREFIX}/include/syslog-ng/ - -.include <bsd.port.mk> diff --git a/sysutils/syslog-ng35/distinfo b/sysutils/syslog-ng35/distinfo deleted file mode 100644 index bdfdbf6..0000000 --- a/sysutils/syslog-ng35/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (syslog-ng_3.5.6.tar.gz) = 6ca2010445e7801f72064a6c620bdcfb4957fc22299c57c1afc6be4b678b21a6 -SIZE (syslog-ng_3.5.6.tar.gz) = 3001992 diff --git a/sysutils/syslog-ng35/files/patch-Makefile.in b/sysutils/syslog-ng35/files/patch-Makefile.in deleted file mode 100644 index 90e69ae..0000000 --- a/sysutils/syslog-ng35/files/patch-Makefile.in +++ /dev/null @@ -1,13 +0,0 @@ ---- Makefile.in.orig 2014-08-01 19:27:14.584284459 -0700 -+++ Makefile.in 2014-08-01 19:33:44.036046297 -0700 -@@ -3280,8 +3280,8 @@ - for p in $$list; do \ - if test -f $$p; then \ - $(am__strip_dir) \ -- echo " ( cd '$(DESTDIR)$(libtestdir)' && $(RANLIB) $$f )"; \ -- ( cd "$(DESTDIR)$(libtestdir)" && $(RANLIB) $$f ) || exit $$?; \ -+ echo " ( cd '$(DESTDIR)$(libtestdir)' && chmod u+w $$f && $(RANLIB) $$f )"; \ -+ ( cd "$(DESTDIR)$(libtestdir)" && chmod u+w $$f && $(RANLIB) $$f ) || exit $$?; \ - else :; fi; \ - done - diff --git a/sysutils/syslog-ng35/files/patch-configure b/sysutils/syslog-ng35/files/patch-configure deleted file mode 100644 index c3c533b..0000000 --- a/sysutils/syslog-ng35/files/patch-configure +++ /dev/null @@ -1,14 +0,0 @@ ---- configure.orig 2016-03-22 04:58:27.000000000 -0700 -+++ configure 2016-03-23 20:51:10.722420000 -0700 -@@ -14996,9 +14996,9 @@ - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBNET" >&5 - $as_echo_n "checking for LIBNET... " >&6; } - if test "x$with_libnet" = "x"; then -- LIBNET_CONFIG="`which libnet-config`" -+ LIBNET_CONFIG="`which libnet11-config`" - else -- LIBNET_CONFIG="$with_libnet/libnet-config" -+ LIBNET_CONFIG="$with_libnet/libnet11-config" - fi - - if test -n "$LIBNET_CONFIG" -a -x "$LIBNET_CONFIG"; then diff --git a/sysutils/syslog-ng35/files/patch-modules__afsocket__afinet-dest.c b/sysutils/syslog-ng35/files/patch-modules__afsocket__afinet-dest.c deleted file mode 100644 index 7af83d8..0000000 --- a/sysutils/syslog-ng35/files/patch-modules__afsocket__afinet-dest.c +++ /dev/null @@ -1,11 +0,0 @@ ---- modules/afsocket/afinet-dest.c.orig 2016-03-22 02:39:13.000000000 -0700 -+++ modules/afsocket/afinet-dest.c 2016-03-23 22:07:14.289961000 -0700 -@@ -42,7 +42,7 @@ - #endif - - #if ENABLE_SPOOF_SOURCE --#include <libnet.h> -+#include <libnet11/libnet.h> - #endif - - #if _GNU_SOURCE_DEFINED diff --git a/sysutils/syslog-ng35/files/pkg-message.in b/sysutils/syslog-ng35/files/pkg-message.in deleted file mode 100644 index 36cb7e6..0000000 --- a/sysutils/syslog-ng35/files/pkg-message.in +++ /dev/null @@ -1,29 +0,0 @@ - -syslog-ng is now installed! To replace FreeBSD's standard syslogd -(/usr/sbin/syslogd), complete these steps: - -1. Create a configuration file named %%PREFIX%%/etc/syslog-ng.conf - (a sample named syslog-ng.conf.sample has been included in - %%PREFIX%%/etc). Note that this is a change in 2.0.2 - version, previous ones put the config file in - %%PREFIX%%/etc/syslog-ng/syslog-ng.conf, so if this is an update - move that file in the right place - -2. Configure syslog-ng to start automatically by adding the following - to /etc/rc.conf: - - syslog_ng_enable="YES" - -3. Prevent the standard FreeBSD syslogd from starting automatically by - adding a line to the end of your /etc/rc.conf file that reads: - - syslogd_enable="NO" - -4. Shut down the standard FreeBSD syslogd: - - kill `cat /var/run/syslog.pid` - -5. Start syslog-ng: - - %%PREFIX%%/etc/rc.d/syslog-ng start - diff --git a/sysutils/syslog-ng35/files/syslog-ng.conf.sample b/sysutils/syslog-ng35/files/syslog-ng.conf.sample deleted file mode 100644 index 051cfc5..0000000 --- a/sysutils/syslog-ng35/files/syslog-ng.conf.sample +++ /dev/null @@ -1,185 +0,0 @@ -@version:3.5 - -# -# This sample configuration file is essentially equilivent to the stock -# FreeBSD /etc/syslog.conf file. -# -# $FreeBSD$ -# - -# -# options -# -options { chain_hostnames(off); flush_lines(0); threaded(yes); }; - -# -# sources -# -source src { unix-dgram("/var/run/log"); - unix-dgram("/var/run/logpriv" perm(0600)); - udp(); internal(); file("/dev/klog"); }; - -# -# destinations -# -destination messages { file("/var/log/messages"); }; -destination security { file("/var/log/security"); }; -destination authlog { file("/var/log/auth.log"); }; -destination maillog { file("/var/log/maillog"); }; -destination lpd-errs { file("/var/log/lpd-errs"); }; -destination xferlog { file("/var/log/xferlog"); }; -destination cron { file("/var/log/cron"); }; -destination debuglog { file("/var/log/debug.log"); }; -destination consolelog { file("/var/log/console.log"); }; -destination all { file("/var/log/all.log"); }; -destination newscrit { file("/var/log/news/news.crit"); }; -destination newserr { file("/var/log/news/news.err"); }; -destination newsnotice { file("/var/log/news/news.notice"); }; -destination slip { file("/var/log/slip.log"); }; -destination ppp { file("/var/log/ppp.log"); }; -destination console { file("/dev/console"); }; -destination allusers { usertty("*"); }; -#destination loghost { udp("loghost" port(514)); }; - -# -# log facility filters -# -filter f_auth { facility(auth); }; -filter f_authpriv { facility(authpriv); }; -filter f_not_authpriv { not facility(authpriv); }; -#filter f_console { facility(console); }; -filter f_cron { facility(cron); }; -filter f_daemon { facility(daemon); }; -filter f_ftp { facility(ftp); }; -filter f_kern { facility(kern); }; -filter f_lpr { facility(lpr); }; -filter f_mail { facility(mail); }; -filter f_news { facility(news); }; -filter f_security { facility(security); }; -filter f_user { facility(user); }; -filter f_uucp { facility(uucp); }; -filter f_local0 { facility(local0); }; -filter f_local1 { facility(local1); }; -filter f_local2 { facility(local2); }; -filter f_local3 { facility(local3); }; -filter f_local4 { facility(local4); }; -filter f_local5 { facility(local5); }; -filter f_local6 { facility(local6); }; -filter f_local7 { facility(local7); }; - -# -# log level filters -# -filter f_emerg { level(emerg); }; -filter f_alert { level(alert..emerg); }; -filter f_crit { level(crit..emerg); }; -filter f_err { level(err..emerg); }; -filter f_warning { level(warning..emerg); }; -filter f_notice { level(notice..emerg); }; -filter f_info { level(info..emerg); }; -filter f_debug { level(debug..emerg); }; -filter f_is_debug { level(debug); }; - -# -# program filters -# -filter f_ppp { program("ppp"); }; -filter f_slip { program("startslip"); }; - -# -# *.err;kern.warning;auth.notice;mail.crit /dev/console -# -log { source(src); filter(f_err); destination(console); }; -log { source(src); filter(f_kern); filter(f_warning); destination(console); }; -log { source(src); filter(f_auth); filter(f_notice); destination(console); }; -log { source(src); filter(f_mail); filter(f_crit); destination(console); }; - -# -# *.notice;authpriv.none;kern.debug;lpr.info;mail.crit;news.err /var/log/messages -# -log { source(src); filter(f_notice); filter(f_not_authpriv); destination(messages); }; -log { source(src); filter(f_kern); filter(f_debug); destination(messages); }; -log { source(src); filter(f_lpr); filter(f_info); destination(messages); }; -log { source(src); filter(f_mail); filter(f_crit); destination(messages); }; -log { source(src); filter(f_news); filter(f_err); destination(messages); }; - -# -# security.* /var/log/security -# -log { source(src); filter(f_security); destination(security); }; - -# -# auth.info;authpriv.info /var/log/auth.log -log { source(src); filter(f_auth); filter(f_info); destination(authlog); }; -log { source(src); filter(f_authpriv); filter(f_info); destination(authlog); }; - -# -# mail.info /var/log/maillog -# -log { source(src); filter(f_mail); filter(f_info); destination(maillog); }; - -# -# lpr.info /var/log/lpd-errs -# -log { source(src); filter(f_lpr); filter(f_info); destination(lpd-errs); }; - -# -# ftp.info /var/log/xferlog -# -log { source(src); filter(f_ftp); filter(f_info); destination(xferlog); }; - -# -# cron.* /var/log/cron -# -log { source(src); filter(f_cron); destination(cron); }; - -# -# *.=debug /var/log/debug.log -# -log { source(src); filter(f_is_debug); destination(debuglog); }; - -# -# *.emerg * -# -log { source(src); filter(f_emerg); destination(allusers); }; - -# -# uncomment this to log all writes to /dev/console to /var/log/console.log -# console.info /var/log/console.log -# -#log { source(src); filter(f_console); filter(f_info); destination(consolelog); }; - -# -# uncomment this to enable logging of all log messages to /var/log/all.log -# touch /var/log/all.log and chmod it to mode 600 before it will work -# *.* /var/log/all.log -# -#log { source(src); destination(all); }; - -# -# uncomment this to enable logging to a remote loghost named loghost -# *.* @loghost -# -#log { source(src); destination(loghost); }; - -# -# uncomment these if you're running inn -# news.crit /var/log/news/news.crit -# news.err /var/log/news/news.err -# news.notice /var/log/news/news.notice -# -#log { source(src); filter(f_news); filter(f_crit); destination(newscrit); }; -#log { source(src); filter(f_news); filter(f_err); destination(newserr); }; -#log { source(src); filter(f_news); filter(f_notice); destination(newsnotice); }; - -# -# !startslip -# *.* /var/log/slip.log -# -log { source(src); filter(f_slip); destination(slip); }; - -# -# !ppp -# *.* /var/log/ppp.log -# -log { source(src); filter(f_ppp); destination(ppp); }; diff --git a/sysutils/syslog-ng35/files/syslog-ng.in b/sysutils/syslog-ng35/files/syslog-ng.in deleted file mode 100644 index 804bf6e..0000000 --- a/sysutils/syslog-ng35/files/syslog-ng.in +++ /dev/null @@ -1,46 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -# PROVIDE: syslogd -# REQUIRE: mountcritremote cleanvar ldconfig -# BEFORE: SERVERS - -# -# Add the following line to /etc/rc.conf.local or /etc/rc.conf -# to enable this service: -# -#syslog_ng_enable="YES" -#syslog_ng_config="-u daemon" -#syslog_ng_pid="/var/run/syslog-ng.pid" -# - -syslog_ng_purgeklog=${syslog_ng_purgeklog-"NO"} - -. /etc/rc.subr - -name=syslog_ng -rcvar=syslog_ng_enable - -command=%%PREFIX%%/sbin/syslog-ng -required_files=%%PREFIX%%/etc/syslog-ng.conf -extra_commands=reload - -if checkyesno syslog_ng_purgeklog; then - start_precmd="echo \"Purging klog(9)\" && sysctl -w kern.msgbuf_clear=1 $start_precmd"; -fi - -stop_postcmd=stop_postcmd - -load_rc_config $name - -: ${syslog_ng_enable:="NO"} -pidfile=${syslog_ng_pid:-"/var/run/syslog.pid"} -command_args="-p ${pidfile} ${syslog_ng_config}" - -stop_postcmd() { - rm -f $pidfile -} - -run_rc_command "$1" diff --git a/sysutils/syslog-ng35/pkg-descr b/sysutils/syslog-ng35/pkg-descr deleted file mode 100644 index fa72550..0000000 --- a/sysutils/syslog-ng35/pkg-descr +++ /dev/null @@ -1,17 +0,0 @@ -syslog-ng is an enhanced log daemon, supporting a wide range of input and -output methods: syslog, unstructured text, message queues, databases (SQL -and NoSQL alike) and more. - -Key features: - - * receive and send RFC3164 and RFC5424 style syslog messages - * work with any kind of unstructured data - * receive and send JSON formatted messages - * classify and structure logs with builtin parsers (csv-parser(), - db-parser(), ...) - * normalize, crunch and process logs as they flow through the system - * hand on messages for further processing using message queues (like - AMQP), files or databases (like PostgreSQL or MongoDB). - -The official home page of syslog-ng is: -http://www.balabit.com/network-security/syslog-ng/ diff --git a/sysutils/syslog-ng35/pkg-plist b/sysutils/syslog-ng35/pkg-plist deleted file mode 100644 index 89b3429..0000000 --- a/sysutils/syslog-ng35/pkg-plist +++ /dev/null @@ -1,180 +0,0 @@ -@unexec %D/etc/rc.d/syslog-ng.sh stop > /dev/null 2>&1 || true -@sample etc/scl.conf.sample -etc/syslog-ng.conf.dist -@sample etc/syslog-ng.conf.sample -bin/loggen -bin/pdbtool -bin/update-patterndb -include/syslog-ng/afinter.h -include/syslog-ng/alarms.h -include/syslog-ng/apphook.h -include/syslog-ng/atomic.h -include/syslog-ng/block-ref-parser.h -include/syslog-ng/cfg-grammar.h -include/syslog-ng/cfg-lexer.h -include/syslog-ng/cfg-parser.h -include/syslog-ng/cfg.h -include/syslog-ng/children.h -include/syslog-ng/cfg-args.h -include/syslog-ng/cfg-lexer-subst.h -include/syslog-ng/compat.h -include/syslog-ng/control.h -include/syslog-ng/crypto.h -include/syslog-ng/dnscache.h -include/syslog-ng/driver.h -include/syslog-ng/gprocess.h -include/syslog-ng/gsockaddr.h -include/syslog-ng/gsocket.h -include/syslog-ng/iv.h -include/syslog-ng/iv_avl.h -include/syslog-ng/iv_event.h -include/syslog-ng/iv_event_raw.h -include/syslog-ng/iv_fd_pump.h -include/syslog-ng/iv_inotify.h -include/syslog-ng/iv_list.h -include/syslog-ng/iv_popen.h -include/syslog-ng/iv_signal.h -include/syslog-ng/iv_thread.h -include/syslog-ng/iv_tls.h -include/syslog-ng/iv_wait.h -include/syslog-ng/iv_work.h -include/syslog-ng/ivykis/iv.h -include/syslog-ng/ivykis/iv_avl.h -include/syslog-ng/ivykis/iv_event.h -include/syslog-ng/ivykis/iv_event_raw.h -include/syslog-ng/ivykis/iv_fd_pump.h -include/syslog-ng/ivykis/iv_list.h -include/syslog-ng/ivykis/iv_popen.h -include/syslog-ng/ivykis/iv_signal.h -include/syslog-ng/ivykis/iv_thread.h -include/syslog-ng/ivykis/iv_tls.h -include/syslog-ng/ivykis/iv_wait.h -include/syslog-ng/ivykis/iv_work.h -include/syslog-ng/logmatcher.h -include/syslog-ng/logmpx.h -include/syslog-ng/logmsg.h -include/syslog-ng/logpipe.h -include/syslog-ng/logqueue-fifo.h -include/syslog-ng/logqueue.h -include/syslog-ng/logreader.h -include/syslog-ng/logsource.h -include/syslog-ng/logstamp.h -include/syslog-ng/logtransport.h -include/syslog-ng/logwriter.h -include/syslog-ng/mainloop.h -include/syslog-ng/memtrace.h -include/syslog-ng/messages.h -include/syslog-ng/misc.h -include/syslog-ng/ml-batched-timer.h -include/syslog-ng/msg-format.h -include/syslog-ng/nvtable.h -include/syslog-ng/persist-state.h -include/syslog-ng/plugin.h -include/syslog-ng/pragma-parser.h -include/syslog-ng/scratch-buffers.h -include/syslog-ng/serialize.h -include/syslog-ng/stats.h -include/syslog-ng/str-format.h -include/syslog-ng/syslog-names.h -include/syslog-ng/syslog-ng.h -include/syslog-ng/tags.h -include/syslog-ng/timeutils.h -include/syslog-ng/tls-support.h -include/syslog-ng/tlscontext.h -include/syslog-ng/tlstransport.h -include/syslog-ng/utils.h -include/syslog-ng/value-pairs.h -include/syslog-ng/versioning.h -include/syslog-ng/cfg-tree.h -include/syslog-ng/file-perms.h -include/syslog-ng/uuid.h -include/syslog-ng/vptransform.h -include/syslog-ng/filter/filter-expr.h -include/syslog-ng/filter/filter-op.h -include/syslog-ng/filter/filter-cmp.h -include/syslog-ng/filter/filter-in-list.h -include/syslog-ng/filter/filter-tags.h -include/syslog-ng/filter/filter-netmask.h -include/syslog-ng/filter/filter-call.h -include/syslog-ng/filter/filter-re.h -include/syslog-ng/filter/filter-pri.h -include/syslog-ng/filter/filter-pipe.h -include/syslog-ng/filter/filter-expr-parser.h -include/syslog-ng/libtest/mock-transport.h -include/syslog-ng/libtest/msg_parse_lib.h -include/syslog-ng/libtest/proto_lib.h -include/syslog-ng/libtest/template_lib.h -include/syslog-ng/libtest/testutils.h -include/syslog-ng/logproto/logproto-client.h -include/syslog-ng/logproto/logproto-server.h -include/syslog-ng/logproto/logproto-buffered-server.h -include/syslog-ng/logproto/logproto-dgram-server.h -include/syslog-ng/logproto/logproto-framed-client.h -include/syslog-ng/logproto/logproto-framed-server.h -include/syslog-ng/logproto/logproto-text-client.h -include/syslog-ng/logproto/logproto-text-server.h -include/syslog-ng/logproto/logproto-indented-multiline-server.h -include/syslog-ng/logproto/logproto-regexp-multiline-server.h -include/syslog-ng/logproto/logproto-record-server.h -include/syslog-ng/logproto/logproto-builtins.h -include/syslog-ng/logproto/logproto.h -include/syslog-ng/parser/parser-expr.h -include/syslog-ng/parser/parser-expr-parser.h -include/syslog-ng/logthrdestdrv.h -include/syslog-ng/parse-number.h -include/syslog-ng/plugin-types.h -include/syslog-ng/poll-events.h -include/syslog-ng/poll-fd-events.h -include/syslog-ng/type-hinting.h -include/syslog-ng/rewrite/rewrite-expr.h -include/syslog-ng/rewrite/rewrite-set-tag.h -include/syslog-ng/rewrite/rewrite-set.h -include/syslog-ng/rewrite/rewrite-subst.h -include/syslog-ng/rewrite/rewrite-expr-parser.h -include/syslog-ng/template/templates.h -lib/libsyslog-ng-3.5.6.so -lib/libsyslog-ng.so -lib/syslog-ng/libafamqp.so -lib/syslog-ng/libaffile.so -lib/syslog-ng/libafmongodb.so -lib/syslog-ng/libafprog.so -lib/syslog-ng/libafsocket-notls.so -lib/syslog-ng/libafsocket.so -lib/syslog-ng/libafstomp.so -lib/syslog-ng/libafuser.so -lib/syslog-ng/libbasicfuncs.so -lib/syslog-ng/libconfgen.so -lib/syslog-ng/libcryptofuncs.so -lib/syslog-ng/libcsvparser.so -lib/syslog-ng/libdbparser.so -lib/syslog-ng/liblinux-kmsg-format.so -lib/syslog-ng/libsyslog-ng-crypto.so -lib/syslog-ng/libsyslogformat.so -lib/syslog-ng/libsystem-source.so -lib/syslog-ng/libtest/libsyslog-ng-test.a -libdata/pkgconfig/syslog-ng.pc -libdata/pkgconfig/syslog-ng-test.pc -man/man1/loggen.1.gz -man/man1/pdbtool.1.gz -man/man1/syslog-ng-ctl.1.gz -man/man5/syslog-ng.conf.5.gz -man/man8/syslog-ng.8.gz -sbin/syslog-ng -sbin/syslog-ng-ctl -share/syslog-ng/include/scl/pacct/plugin.conf -share/syslog-ng/include/scl/syslogconf/README -share/syslog-ng/include/scl/syslogconf/convert-syslogconf.awk -share/syslog-ng/include/scl/syslogconf/plugin.conf -share/syslog-ng/include/scl/system/plugin.conf -share/syslog-ng/include/scl/rewrite/cc-mask.conf -share/syslog-ng/tools/cfg-grammar.y -share/syslog-ng/tools/lex-rules.am -share/syslog-ng/tools/merge-grammar.pl -share/syslog-ng/xsd/patterndb-1.xsd -share/syslog-ng/xsd/patterndb-2.xsd -share/syslog-ng/xsd/patterndb-3.xsd -share/syslog-ng/xsd/patterndb-4.xsd -%%PORTDOCS%%%%DOCSDIR%%/AUTHORS -%%PORTDOCS%%%%DOCSDIR%%/COPYING -%%PORTDOCS%%%%DOCSDIR%%/NEWS -@dir etc/patterndb.d diff --git a/www/Makefile b/www/Makefile index 7d0233c..fc2225c 100644 --- a/www/Makefile +++ b/www/Makefile @@ -1246,7 +1246,6 @@ SUBDIR += p5-WWW-Google-Calculator SUBDIR += p5-WWW-Google-News SUBDIR += p5-WWW-Google-News-TW - SUBDIR += p5-WWW-Google-Notebook SUBDIR += p5-WWW-Google-PageRank SUBDIR += p5-WWW-Google-Video SUBDIR += p5-WWW-HatenaDiary diff --git a/www/p5-WWW-Google-Notebook/Makefile b/www/p5-WWW-Google-Notebook/Makefile deleted file mode 100644 index fedf714..0000000 --- a/www/p5-WWW-Google-Notebook/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -# Created by: Li-Wen Hsu <lwhsu@lwhsu.org> -# $FreeBSD$ - -PORTNAME= WWW-Google-Notebook -PORTVERSION= 0.01 -PORTREVISION= 1 -CATEGORIES= www perl5 -MASTER_SITES= CPAN -PKGNAMEPREFIX= p5- - -MAINTAINER= lwhsu@FreeBSD.org -COMMENT= Perl interface for Google Notebook - -RUN_DEPENDS= p5-libwww>=0:www/p5-libwww \ - p5-Class-Accessor>=0:devel/p5-Class-Accessor \ - p5-Crypt-SSLeay>=0:security/p5-Crypt-SSLeay -BUILD_DEPENDS:= ${RUN_DEPENDS} - -USES= perl5 -USE_PERL5= configure - -DEPRECATED= Google Notebook has shut down -EXPIRATION_DATE= 2016-06-30 - -.include <bsd.port.mk> diff --git a/www/p5-WWW-Google-Notebook/distinfo b/www/p5-WWW-Google-Notebook/distinfo deleted file mode 100644 index 1ccb75b..0000000 --- a/www/p5-WWW-Google-Notebook/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (WWW-Google-Notebook-0.01.tar.gz) = 15355ddb11e9532cd8a9b3e0f62a13dd14007552ba8f98e817c8bf46f03965a5 -SIZE (WWW-Google-Notebook-0.01.tar.gz) = 4261 diff --git a/www/p5-WWW-Google-Notebook/pkg-descr b/www/p5-WWW-Google-Notebook/pkg-descr deleted file mode 100644 index 7da9673..0000000 --- a/www/p5-WWW-Google-Notebook/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -This module priovides you an Object Oriented interface -for Google Notebook, using unofficial API. - -WWW: http://search.cpan.org/dist/WWW-Google-Notebook/ diff --git a/www/p5-WWW-Google-Notebook/pkg-plist b/www/p5-WWW-Google-Notebook/pkg-plist deleted file mode 100644 index ec2d4b2..0000000 --- a/www/p5-WWW-Google-Notebook/pkg-plist +++ /dev/null @@ -1,6 +0,0 @@ -%%SITE_PERL%%/WWW/Google/Notebook.pm -%%SITE_PERL%%/WWW/Google/Notebook/Note.pm -%%SITE_PERL%%/WWW/Google/Notebook/Notebook.pm -%%PERL5_MAN3%%/WWW::Google::Notebook.3.gz -%%PERL5_MAN3%%/WWW::Google::Notebook::Note.3.gz -%%PERL5_MAN3%%/WWW::Google::Notebook::Notebook.3.gz |