diff options
Diffstat (limited to 'misc')
61 files changed, 0 insertions, 3109 deletions
diff --git a/misc/amanda26-client/Makefile b/misc/amanda26-client/Makefile deleted file mode 100644 index 03f4f0473ffd..000000000000 --- a/misc/amanda26-client/Makefile +++ /dev/null @@ -1,19 +0,0 @@ -# New ports collection makefile for: amanda -# Date created: 28th Feb 1995 -# Whom: gpalmer -# -# $FreeBSD$ -# - -PKGNAMESUFFIX= -client - -COMMENT= The Advanced Maryland Automatic Network Disk Archiver (client) - -MASTERDIR= ${.CURDIR}/../amanda-server -PKGINSTALL= mustnotexist - -PLIST= ${PKGDIR}/pkg-plist.client - -CLIENT_ONLY= yes - -.include "${MASTERDIR}/Makefile" diff --git a/misc/amanda26-server/Makefile b/misc/amanda26-server/Makefile deleted file mode 100644 index f5a65f09d82e..000000000000 --- a/misc/amanda26-server/Makefile +++ /dev/null @@ -1,228 +0,0 @@ -# New ports collection makefile for: amanda -# Date created: 28th Feb 1995 -# Whom: gpalmer -# -# $FreeBSD$ -# - -PORTNAME= amanda -PORTVERSION= 2.6.1p2 -PORTREVISION= 2 -PORTEPOCH= 1 -CATEGORIES= misc -MASTER_SITES= SF/amanda/amanda%20-%20stable/${PORTVERSION} -PKGNAMESUFFIX?= -server - -MAINTAINER= kuriyama@FreeBSD.org -COMMENT?= The Advanced Maryland Automatic Network Disk Archiver (server) - -WRKSRC= ${WRKDIR}/amanda-${PORTVERSION} -SLAVEDIRS= misc/amanda-client - -LATEST_LINK= ${PORTNAME}${PKGNAMESUFFIX} -GNU_CONFIGURE= yes -USE_GNOME= pkgconfig glib20 -USE_GMAKE= yes -USE_OPENSSL= yes -PATCH_STRIP= -CONFIGURE_ARGS= --libexecdir=${PREFIX}/libexec/amanda \ - --without-amlibexecdir \ - --with-amandahosts --with-fqdn \ - --with-dump-honor-nodump --with-buffered-dump \ - --prefix=${PREFIX} \ - --disable-glibtest \ - --with-user=${AMANDA_USER} --with-group=${AMANDA_GROUP} \ - --with-bsdtcp-security --with-bsdudp-security \ - --with-ssh-security - -USE_LDCONFIG= yes -USE_PERL5= yes - -OPTIONS= GNUTAR "use GNU tar" on - -.include <bsd.port.pre.mk> - -AMANDA_USER?= operator -AMANDA_GROUP?= operator -AMANDA_GNUTAR_LISTDIR?= ${PREFIX}/var/amanda/gnutar-lists -AMANDA_DATES?= ${PREFIX}/var/amanda/amandates -PLIST_SUB= SHLIBVER=${PORTVERSION} AMANDA_DATES=${AMANDA_DATES} - -# amanda-server/amanda-client common part -.if defined (AMANDA_SERVER) -CONFIGURE_ARGS+= --with-index-server=${AMANDA_SERVER} -CONFIGURE_ARGS+= --with-tape-server=${AMANDA_SERVER} -.endif - -.if defined (AMANDA_CONFIG) -CONFIGURE_ARGS+= --with-config=${AMANDA_CONFIG} -.endif - -.if !defined(WITHOUT_GNUTAR) -CONFIGURE_ARGS+=--with-gnutar-listdir=${AMANDA_GNUTAR_LISTDIR} \ - --with-gnutar=${LOCALBASE}/bin/gtar -BUILD_DEPENDS= gtar:${PORTSDIR}/archivers/gtar -RUN_DEPENDS= gtar:${PORTSDIR}/archivers/gtar -.endif - -# amanda-server part -.if !defined(CLIENT_ONLY) - -pre-fetch: - @${ECHO} "" - @${ECHO} "You may use the following build options:" - @${ECHO} "" - @${ECHO} " AMANDA_SERVER=server to specify a server name" - @${ECHO} " The default is `uname -n`" - @${ECHO} " AMANDA_TAPE=tape to specify the default tape device" - @${ECHO} " The default is /dev/nrsa0" - @${ECHO} " AMANDA_CONFIG=config to specify the default configuration" - @${ECHO} " The default is DailySet1" - @${ECHO} " AMANDA_USER=user to specify the default user" - @${ECHO} " The default is operator" - @${ECHO} " AMANDA_GROUP=group to specify the default group" - @${ECHO} " The default is operator" - @${ECHO} " AMANDA_DATES=path to client amandates file" - @${ECHO} "" - -CONFLICTS= amanda-server-2.5.* - -BUILD_DEPENDS+= ${LOCALBASE}/lib/amanda/libamandad-${PORTVERSION}.so:${PORTSDIR}/misc/amanda-client -RUN_DEPENDS+= ${LOCALBASE}/lib/amanda/libamandad-${PORTVERSION}.so:${PORTSDIR}/misc/amanda-client - -CONFIGURE_ARGS+=--without-client - -MAN5= disklist.5 \ - tapelist.5 -MAN7= amanda-changers.7 \ - amanda-devices.7 -MAN8= amaddclient.8 amadmin.8 amaespipe.8 amcheck.8 \ - amcheckdb.8 amcheckdump.8 amcleanup.8 \ - amcrypt.8 amcryptsimple.8 amcrypt-ossl-asym.8 amcrypt-ossl.8 \ - amdevcheck.8 \ - amdump.8 amfetchdump.8 amflush.8 amgetconf.8 amgpgcrypt.8 \ - amlabel.8 \ - amoverview.8 amreport.8 amrestore.8 amrmtape.8 \ - amserverconfig.8 amservice.8 amstatus.8 \ - amtape.8 amtoc.8 amtapetype.8 \ - amvault.8 - -OPTIONS+= PLOT "enable ploting, requires X11 libraries" off\ - SAMBA "enable the use of smbclient" off \ - MTX "enable the use of mtx changer scripts" off \ - AESPIPE "enable encryption. Needed by amcrypt" off \ - S3 "enable Amazon S3 device support" off - -.if defined (WITH_PLOT) -BUILD_DEPENDS+= gnuplot:${PORTSDIR}/math/gnuplot -RUN_DEPENDS+= gnuplot:${PORTSDIR}/math/gnuplot -MAN8+= amplot.8 -PLIST_SUB+= PLOT='' -CONFIGURE_ARGS+= --with-gnuplot=${LOCALBASE}/bin/gnuplot -.else -PLIST_SUB+= PLOT='@comment ' -CONFIGURE_ARGS+= --without-gnuplot -.endif - -.if defined (WITH_SAMBA) -SAMBA_PORT?= samba3 -BUILD_DEPENDS+= smbclient:${PORTSDIR}/net/${SAMBA_PORT} -RUN_DEPENDS+= smbclient:${PORTSDIR}/net/${SAMBA_PORT} -CONFIGURE_ARGS+= --with-smbclient=${PREFIX}/bin/smbclient -.endif - -.if defined (WITH_MTX) -BUILD_DEPENDS+= mtx:${PORTSDIR}/misc/mtx -RUN_DEPENDS+= mtx:${PORTSDIR}/misc/mtx -.endif - -.if defined (WITH_AESPIPE) -RUN_DEPENDS+= aespipe:${PORTSDIR}/security/aespipe -.else -.endif - -# If configure founds libcurl, automatically enabled it (with plist change). -.if defined(WITH_S3) -LIB_DEPENDS+= curl:${PORTSDIR}/ftp/curl -CONFIGURE_ARGS+= --enable-s3-device -PLIST_SUB+= S3DEVICE='' -.else -CONFIGURE_ARGS+= --disable-s3-device -PLIST_SUB+= S3DEVICE='@comment ' -.endif - -.if defined (AMANDA_TAPE) -CONFIGURE_ARGS+= --with-tape-device=${AMANDA_TAPE} -.endif - -# amanda-client part -.else - -pre-fetch: - @${ECHO} "" - @${ECHO} "You may use the following build options:" - @${ECHO} "" - @${ECHO} " AMANDA_SERVER=server to specify a server name" - @${ECHO} " The default is `uname -n`" - @${ECHO} " AMANDA_CONFIG=config to specify the default configuation" - @${ECHO} " The default is DailySet1" - @${ECHO} " AMANDA_GNUTAR_LISTDIR=dir to specify the directory that" - @${ECHO} " the gnutar index files should live in" - @${ECHO} " The default is ${PREFIX}/var/amanda/gnutar-lists" - @${ECHO} " AMANDA_USER=user to specify the default user" - @${ECHO} " The default is operator" - @${ECHO} " AMANDA_GROUP=group to specify the default group" - @${ECHO} " The default is operator" - @${ECHO} " AMANDA_DATES=path to client amandates file" - @${ECHO} "" - -OPTIONS+= ZFSCOMP "accurate estimation of compressed ZFS filesystems" off - -CONFLICTS= amanda-client-2.5.* -CONFIGURE_ARGS+=--without-server --with-amandates=${AMANDA_DATES} - -MAN5= amanda-archive-format.5 \ - amanda-client.conf.5 \ - amanda.conf.5 -MAN7= amanda-applications.7 \ - amanda-auth.7 \ - amanda-scripts.7 -MAN8= amanda.8 \ - amarchiver.8 \ - amgtar.8 \ - amrecover.8 \ - amsamba.8 \ - amstar.8 \ - amzfs-sendrecv.8 \ - amzfs-snapshot.8 \ - script-email.8 - -post-install: -.ifndef(NOPORTDOCS) - ${MKDIR} ${EXAMPLESDIR} - ${CP} -R ${WRKSRC}/example/chg-multi.conf \ - ${WRKSRC}/example/chg-scsi.conf \ - ${WRKSRC}/example/disklist \ - ${EXAMPLESDIR} -.endif - ${MKDIR} ${AMANDA_GNUTAR_LISTDIR} - ${CHOWN} ${AMANDA_USER}:${AMANDA_GROUP} ${AMANDA_GNUTAR_LISTDIR} - ${TOUCH} ${AMANDA_DATES} - ${CHOWN} ${AMANDA_USER}:${AMANDA_GROUP} ${AMANDA_DATES} - -.endif - -.if defined(WITH_ZFSCOMP) -EXTRA_PATCHES= ${FILESDIR}/extra-patch-application-src::amzfs-sendrecv.pl -.endif - -# MEMO: -# Prefix @WANT_SERVER_TRUE@ for server only files. -# Prefix @WANT_CLIENT_TRUE@ for client only files. -# For debugging: dbprintf(_("getcmd: %s\n"), line); -# Maintainer TODO: -# o amanda-server installs libexec/amanda/amandad, sbin/amarchiver -# which should be handled by amanda-client only. -# o pthread issue: http://wiki.zmanda.com/index.php/Installation/OS_Specific_Notes/Installing_Amanda_on_FreeBSD#Threading_and_-pthread - -.include <bsd.port.post.mk> diff --git a/misc/amanda26-server/distinfo b/misc/amanda26-server/distinfo deleted file mode 100644 index 7d26a0a79d4e..000000000000 --- a/misc/amanda26-server/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (amanda-2.6.1p2.tar.gz) = 816ef0101b6d968c5df7d7d7e793caed -SHA256 (amanda-2.6.1p2.tar.gz) = 828c71040f1ccf69f9996907a3575b7dc27890ea7a5fae5eac77183125eda195 -SIZE (amanda-2.6.1p2.tar.gz) = 2868102 diff --git a/misc/amanda26-server/files/extra-patch-application-src::amzfs-sendrecv.pl b/misc/amanda26-server/files/extra-patch-application-src::amzfs-sendrecv.pl deleted file mode 100644 index 0a19153747d9..000000000000 --- a/misc/amanda26-server/files/extra-patch-application-src::amzfs-sendrecv.pl +++ /dev/null @@ -1,52 +0,0 @@ ---- application-src/amzfs-sendrecv.pl.orig 2009-01-22 02:35:38.000000000 +0100 -+++ application-src/amzfs-sendrecv.pl 2009-01-31 10:37:59.495534563 +0100 -@@ -235,13 +235,48 @@ - } elsif (defined $errmsg) { - $self->print_to_server_and_die($action, $errmsg, $Amanda::Script_App::ERROR); - } else { -- $self->print_to_server_and_die($action, "cannot estimate snapshot '$self->{snapshot}\@$self->{snapshot}': unknown reason", $Amanda::Script_App::ERROR); -+ $self->print_to_server_and_die($action, "cannot estimate snapshot '$self->{snapshot}\@$self->{snapshot}': unknown reason", $Amanda::Script_App::ERROR); - } - } -+ if ($level == 0) { -+ my $compratio = $self->get_compratio(); -+ $msg *= int $compratio; -+ } - - return $msg; - } - -+sub get_compratio -+{ -+ my $self = shift; -+ my $action = shift; -+ -+ my $cmd; -+ $cmd = "$self->{pfexec_cmd} $self->{zfs_path} get -Hp -o value compressratio $self->{filesystem}\@$self->{snapshot}"; -+ debug "running (get-compression): $cmd"; -+ my($wtr, $rdr, $err, $pid); -+ $err = Symbol::gensym; -+ $pid = open3($wtr, $rdr, $err, $cmd); -+ close $wtr; -+ my ($msg) = <$rdr>; -+ my ($errmsg) = <$err>; -+ waitpid $pid, 0; -+ close $rdr; -+ close $err; -+ if ($? != 0) { -+ if (defined $msg && defined $errmsg) { -+ $self->print_to_server_and_die($action, "$msg, $errmsg", $Amanda::Script_App::ERROR); -+ } elsif (defined $msg) { -+ $self->print_to_server_and_die($action, $msg, $Amanda::Script_App::ERROR); -+ } elsif (defined $errmsg) { -+ $self->print_to_server_and_die($action, $errmsg, $Amanda::Script_App::ERROR); -+ } else { -+ $self->print_to_server_and_die($action, "cannot read compression ratio '$self->{snapshot}\@$self->{snapshot}': unknown reason", $Amanda::Script_App::ERROR); -+ } -+ } -+ return $msg -+} -+ - sub command_index_from_output { - } - diff --git a/misc/amanda26-server/files/extra-patch-sendbackup-dump.c b/misc/amanda26-server/files/extra-patch-sendbackup-dump.c deleted file mode 100644 index 3a232d1a8f25..000000000000 --- a/misc/amanda26-server/files/extra-patch-sendbackup-dump.c +++ /dev/null @@ -1,23 +0,0 @@ ---- client-src/sendbackup-dump.c.orig 2008-12-13 04:18:11.000000000 +0900 -+++ client-src/sendbackup-dump.c 2009-01-27 07:30:40.000000000 +0900 -@@ -35,6 +35,10 @@ - #include "clock.h" - #include "version.h" - -+#ifdef __FreeBSD__ -+#include <sys/param.h> -+#endif -+ - #define LEAF_AND_DIRS "sed -e \'\ns/^leaf[ \t]*[0-9]*[ \t]*\\.//\nt\n/^dir[ \t]/ {\ns/^dir[ \t]*[0-9]*[ \t]*\\.//\ns%$%/%\nt\n}\nd\n\'" - - static amregex_t re_table[] = { -@@ -310,6 +314,9 @@ - cmdX, config, - "vxdump", - dumpkeys, -+#ifdef __FreeBSD__ -+ "64", -+#endif - "1048576", - "-", - device, diff --git a/misc/amanda26-server/files/patch-ad b/misc/amanda26-server/files/patch-ad deleted file mode 100644 index 3fff9c551c52..000000000000 --- a/misc/amanda26-server/files/patch-ad +++ /dev/null @@ -1,14 +0,0 @@ ---- client-src/calcsize.c.orig 2008-01-18 09:31:16.000000000 +0900 -+++ client-src/calcsize.c 2008-08-30 20:11:59.000000000 +0900 -@@ -160,7 +160,11 @@ - dump_total += (ST_BLOCKS(finfo) + (off_t)1) / (off_t)2 + (off_t)1; - gtar_total += ROUND(4,(ST_BLOCKS(finfo) + (off_t)1)); - } -+#ifdef GNUTAR -+ g_printf(" GNUTAR dump\n"); -+#else - g_printf(" gtar dump\n"); -+#endif - g_printf("total %-9lu %-9lu\n",gtar_total,dump_total); - return 0; - #else diff --git a/misc/amanda26-server/files/patch-amandad-src::Makefile.in b/misc/amanda26-server/files/patch-amandad-src::Makefile.in deleted file mode 100644 index 9a80b4b90f95..000000000000 --- a/misc/amanda26-server/files/patch-amandad-src::Makefile.in +++ /dev/null @@ -1,12 +0,0 @@ ---- amandad-src/Makefile.in.orig 2009-01-27 13:43:16.000000000 +0900 -+++ amandad-src/Makefile.in 2009-01-27 13:44:02.000000000 +0900 -@@ -776,7 +776,8 @@ - AM_LDFLAGS = $(AMANDA_STATIC_LDFLAGS) - LINT = $(AMLINT) - LINTFLAGS = $(AMLINTFLAGS) --amlib_LTLIBRARIES = libamandad.la -+@WANT_SERVER_TRUE@amlib_LTLIBRARIES = -+@WANT_CLIENT_TRUE@amlib_LTLIBRARIES = libamandad.la - LIB_EXTENSION = la - libamandad_la_SOURCES = amandad_util.c - libamandad_la_LDFLAGS = -release $(VERSION) diff --git a/misc/amanda26-server/files/patch-amar-src::Makefile.in b/misc/amanda26-server/files/patch-amar-src::Makefile.in deleted file mode 100644 index c7941f44904e..000000000000 --- a/misc/amanda26-server/files/patch-amar-src::Makefile.in +++ /dev/null @@ -1,12 +0,0 @@ ---- amar-src/Makefile.in.orig 2009-01-27 14:01:04.000000000 +0900 -+++ amar-src/Makefile.in 2009-01-27 14:01:36.000000000 +0900 -@@ -856,7 +856,8 @@ - AM_LDFLAGS = $(AMANDA_STATIC_LDFLAGS) - LINT = @AMLINT@ - LINTFLAGS = @AMLINTFLAGS@ --amlib_LTLIBRARIES = libamar.la -+@WANT_SERVER_TRUE@amlib_LTLIBRARIES = -+@WANT_CLIENT_TRUE@amlib_LTLIBRARIES = libamar.la - libamar_la_SOURCES = amar.c - libamar_la_LDFLAGS = -release $(VERSION) - libamar_la_LIBADD = ../common-src/libamanda.la diff --git a/misc/amanda26-server/files/patch-changer-src::chg-glue.pl b/misc/amanda26-server/files/patch-changer-src::chg-glue.pl deleted file mode 100644 index 20467d2116fd..000000000000 --- a/misc/amanda26-server/files/patch-changer-src::chg-glue.pl +++ /dev/null @@ -1,10 +0,0 @@ ---- changer-src/chg-glue.pl.orig 2009-01-28 15:06:00.000000000 +0900 -+++ changer-src/chg-glue.pl 2009-01-28 15:06:22.000000000 +0900 -@@ -206,6 +206,7 @@ - finish(); - return; - } -+ chomp($command); - - if (($slot) = ($command =~ /^-slot (.*)$/)) { - do_slot($slot); diff --git a/misc/amanda26-server/files/patch-common-src::Makefile.in b/misc/amanda26-server/files/patch-common-src::Makefile.in deleted file mode 100644 index 9da99a06935e..000000000000 --- a/misc/amanda26-server/files/patch-common-src::Makefile.in +++ /dev/null @@ -1,49 +0,0 @@ ---- common-src/Makefile.in.orig 2009-11-06 05:11:37.000000000 +0900 -+++ common-src/Makefile.in 2009-12-14 10:29:52.479439079 +0900 -@@ -1091,6 +1091,7 @@ - - sbin_SCRIPTS_PERL = \ - $(sbin_CHECK_PERL) -+@WANT_SERVER_TRUE@sbin_SCRIPTS_PERL = - - amlibexec_CHECK_PERL = - amlibexec_SCRIPTS_PERL = \ -@@ -1101,6 +1102,7 @@ - amaespipe \ - amcrypt-ossl \ - amcrypt-ossl-asym -+@WANT_SERVER_TRUE@sbin_SCRIPTS_SHELL = - - amlibexec_SCRIPTS_SHELL = - SCRIPTS_INCLUDE = \ -@@ -1155,18 +1157,18 @@ - versuff.c: $(top_builddir)/config.status $(srcdir)/versuff.c.in - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ - install-amlibLTLIBRARIES: $(amlib_LTLIBRARIES) -- @$(NORMAL_INSTALL) -- test -z "$(amlibdir)" || $(MKDIR_P) "$(DESTDIR)$(amlibdir)" -- @list='$(amlib_LTLIBRARIES)'; test -n "$(amlibdir)" || list=; \ -- list2=; for p in $$list; do \ -- if test -f $$p; then \ -- list2="$$list2 $$p"; \ -- else :; fi; \ -- done; \ -- test -z "$$list2" || { \ -- echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(amlibdir)'"; \ -- $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(amlibdir)"; \ -- } -+@WANT_CLIENT_TRUE@ @$(NORMAL_INSTALL) -+@WANT_CLIENT_TRUE@ test -z "$(amlibdir)" || $(MKDIR_P) "$(DESTDIR)$(amlibdir)" -+@WANT_CLIENT_TRUE@ @list='$(amlib_LTLIBRARIES)'; test -n "$(amlibdir)" || list=; \ -+@WANT_CLIENT_TRUE@ list2=; for p in $$list; do \ -+@WANT_CLIENT_TRUE@ if test -f $$p; then \ -+@WANT_CLIENT_TRUE@ list2="$$list2 $$p"; \ -+@WANT_CLIENT_TRUE@ else :; fi; \ -+@WANT_CLIENT_TRUE@ done; \ -+@WANT_CLIENT_TRUE@ test -z "$$list2" || { \ -+@WANT_CLIENT_TRUE@ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(amlibdir)'"; \ -+@WANT_CLIENT_TRUE@ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(amlibdir)"; \ -+@WANT_CLIENT_TRUE@ } - - uninstall-amlibLTLIBRARIES: - @$(NORMAL_UNINSTALL) diff --git a/misc/amanda26-server/files/patch-common-src::glib-util.c b/misc/amanda26-server/files/patch-common-src::glib-util.c deleted file mode 100644 index c7450c7835eb..000000000000 --- a/misc/amanda26-server/files/patch-common-src::glib-util.c +++ /dev/null @@ -1,51 +0,0 @@ - ---- common-src/glib-util.c.orig 2010-05-20 13:19:58.000000000 -0400 -+++ common-src/glib-util.c 2010-05-20 13:24:40.000000000 -0400 -@@ -38,26 +38,15 @@ - if (did_glib_init) return; - did_glib_init = TRUE; - -- /* Initialize glib's type system */ -- g_type_init(); -- - /* set up libcurl (this must happen before threading - * is initialized) */ - #ifdef HAVE_LIBCURL - # ifdef G_THREADS_ENABLED -- g_assert(!g_thread_supported()); -+ g_assert(!g_thread_supported()); /* assert threads aren't initialized yet */ - # endif - g_assert(curl_global_init(CURL_GLOBAL_ALL) == 0); - #endif - -- /* And set up glib's threads */ --#if defined(G_THREADS_ENABLED) && !defined(G_THREADS_IMPL_NONE) -- if (g_thread_supported()) { -- return; -- } -- g_thread_init(NULL); --#endif -- - /* do a version check */ - #if GLIB_CHECK_VERSION(2,6,0) - { -@@ -71,6 +60,17 @@ - } - } - #endif -+ -+ /* Initialize glib's type system. On glib >= 2.24, this will initialize -+ * threads, so it must be done after curl is initialized. */ -+ g_type_init(); -+ -+ /* And set up glib's threads */ -+#if defined(G_THREADS_ENABLED) && !defined(G_THREADS_IMPL_NONE) -+ if (!g_thread_supported()) -+ g_thread_init(NULL); -+#endif -+ - } - - typedef enum { - - diff --git a/misc/amanda26-server/files/patch-man::Makefile.in b/misc/amanda26-server/files/patch-man::Makefile.in deleted file mode 100644 index daeea0759ce8..000000000000 --- a/misc/amanda26-server/files/patch-man::Makefile.in +++ /dev/null @@ -1,10 +0,0 @@ ---- man/Makefile.in.orig 2009-01-22 22:51:25.000000000 +0900 -+++ man/Makefile.in 2009-01-27 07:27:10.000000000 +0900 -@@ -640,6 +640,7 @@ - amanda-auth.7 \ - amarchiver.8 \ - script-email.8 -+@WANT_SERVER_TRUE@COMMON_MAN_PAGES = - - CLIENT_MAN_PAGES = \ - amanda-applications.7 \ diff --git a/misc/amanda26-server/files/patch-perl::Amanda::Process.pm b/misc/amanda26-server/files/patch-perl::Amanda::Process.pm deleted file mode 100644 index 806659b3f979..000000000000 --- a/misc/amanda26-server/files/patch-perl::Amanda::Process.pm +++ /dev/null @@ -1,11 +0,0 @@ ---- perl/Amanda/Process.pm.orig 2009-01-28 13:57:55.000000000 +0900 -+++ perl/Amanda/Process.pm 2009-01-28 13:58:19.000000000 +0900 -@@ -155,7 +155,7 @@ - $self->{ppid} = (); - my $ps_argument = $Amanda::Constants::PS_ARGUMENT; - if ($ps_argument eq "CYGWIN") { -- open(PSTABLE, "-|", "ps -ef") || die("ps -ef: $!"); -+ open(PSTABLE, "-|", "ps -f") || die("ps -f: $!"); - my $psline = <PSTABLE>; #header line - while($psline = <PSTABLE>) { - chomp $psline; diff --git a/misc/amanda26-server/files/patch-perl::Makefile.in b/misc/amanda26-server/files/patch-perl::Makefile.in deleted file mode 100644 index b32626c1144e..000000000000 --- a/misc/amanda26-server/files/patch-perl::Makefile.in +++ /dev/null @@ -1,195 +0,0 @@ ---- perl/Makefile.in.orig 2009-01-22 22:51:25.000000000 +0900 -+++ perl/Makefile.in 2009-01-27 16:15:23.000000000 +0900 -@@ -316,9 +316,9 @@ - $(libApplication_la_LDFLAGS) $(LDFLAGS) -o $@ - @WANT_CLIENT_TRUE@am_libApplication_la_rpath = -rpath \ - @WANT_CLIENT_TRUE@ $(libApplicationdir) --libArchive_la_DEPENDENCIES = libamglue.la \ -- $(top_builddir)/amar-src/libamar.la \ -- $(top_builddir)/common-src/libamanda.la -+@WANT_CLIENT_TRUE@libArchive_la_DEPENDENCIES = libamglue.la \ -+@WANT_CLIENT_TRUE@ $(top_builddir)/amar-src/libamar.la \ -+@WANT_CLIENT_TRUE@ $(top_builddir)/common-src/libamanda.la - am_libArchive_la_OBJECTS = Archive.lo $(am__objects_1) - libArchive_la_OBJECTS = $(am_libArchive_la_OBJECTS) - libArchive_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ -@@ -337,15 +337,15 @@ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(libCmdline_la_LDFLAGS) $(LDFLAGS) -o $@ - @WANT_SERVER_TRUE@am_libCmdline_la_rpath = -rpath $(libCmdlinedir) --libConfig_la_DEPENDENCIES = libamglue.la \ -- $(top_builddir)/common-src/libamanda.la -+@WANT_CLIENT_TRUE@libConfig_la_DEPENDENCIES = libamglue.la \ -+@WANT_CLIENT_TRUE@ $(top_builddir)/common-src/libamanda.la - am_libConfig_la_OBJECTS = Config.lo $(am__objects_1) - libConfig_la_OBJECTS = $(am_libConfig_la_OBJECTS) - libConfig_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(libConfig_la_LDFLAGS) $(LDFLAGS) -o $@ --libDebug_la_DEPENDENCIES = libamglue.la \ -- $(top_builddir)/common-src/libamanda.la -+@WANT_CLIENT_TRUE@libDebug_la_DEPENDENCIES = libamglue.la \ -+@WANT_CLIENT_TRUE@ $(top_builddir)/common-src/libamanda.la - am_libDebug_la_OBJECTS = Debug.lo $(am__objects_1) - libDebug_la_OBJECTS = $(am_libDebug_la_OBJECTS) - libDebug_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ -@@ -376,8 +376,8 @@ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(libLogfile_la_LDFLAGS) $(LDFLAGS) -o $@ - @WANT_SERVER_TRUE@am_libLogfile_la_rpath = -rpath $(libLogfiledir) --libMainLoop_la_DEPENDENCIES = libamglue.la \ -- $(top_builddir)/common-src/libamanda.la -+@WANT_CLIENT_TRUE@libMainLoop_la_DEPENDENCIES = libamglue.la \ -+@WANT_CLIENT_TRUE@ $(top_builddir)/common-src/libamanda.la - am_libMainLoop_la_OBJECTS = MainLoop.lo $(am__objects_1) - libMainLoop_la_OBJECTS = $(am_libMainLoop_la_OBJECTS) - libMainLoop_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ -@@ -396,23 +396,23 @@ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(libTapelist_la_LDFLAGS) $(LDFLAGS) -o $@ - @WANT_SERVER_TRUE@am_libTapelist_la_rpath = -rpath $(libTapelistdir) --libTests_la_DEPENDENCIES = libamglue.la \ -- $(top_builddir)/common-src/libamanda.la -+@WANT_CLIENT_TRUE@libTests_la_DEPENDENCIES = libamglue.la \ -+@WANT_CLIENT_TRUE@ $(top_builddir)/common-src/libamanda.la - am_libTests_la_OBJECTS = Tests.lo $(am__objects_1) - libTests_la_OBJECTS = $(am_libTests_la_OBJECTS) - libTests_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(libTests_la_LDFLAGS) $(LDFLAGS) -o $@ --libTypes_la_DEPENDENCIES = libamglue.la \ -- $(top_builddir)/common-src/libamanda.la -+@WANT_CLIENT_TRUE@libTypes_la_DEPENDENCIES = libamglue.la \ -+@WANT_CLIENT_TRUE@ $(top_builddir)/common-src/libamanda.la - am_libTypes_la_OBJECTS = Types.lo $(am__objects_1) - libTypes_la_OBJECTS = $(am_libTypes_la_OBJECTS) - libTypes_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(libTypes_la_LDFLAGS) $(LDFLAGS) -o $@ --libUtil_la_DEPENDENCIES = libamglue.la \ -- $(top_builddir)/common-src/libamanda.la --am_libUtil_la_OBJECTS = Util.lo $(am__objects_1) -+@WANT_CLIENT_TRUE@libUtil_la_DEPENDENCIES = libamglue.la \ -+@WANT_CLIENT_TRUE@ $(top_builddir)/common-src/libamanda.la -+@WANT_CLIENT_TRUE@am_libUtil_la_OBJECTS = Util.lo $(am__objects_1) - libUtil_la_OBJECTS = $(am_libUtil_la_OBJECTS) - libUtil_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ -@@ -984,7 +984,8 @@ - $(am__append_2) $(am__append_3) $(am__append_4) - - # (amplot has a conditional, but doesn't have any header files) --amlib_LTLIBRARIES = libamglue.la -+@WANT_SERVER_TRUE@amlib_LTLIBRARIES = -+@WANT_CLIENT_TRUE@amlib_LTLIBRARIES = libamglue.la - libamglue_la_SOURCES = \ - amglue/ghashtable.c \ - amglue/bigint.c \ -@@ -1042,10 +1043,11 @@ - Amanda/Types.pm Amanda/Tests.pm Amanda/MainLoop.pm \ - Amanda/Paths.pm Amanda/Constants.pm Amanda/Script_App.pm \ - $(am__append_8) Amanda/Script.pm -+@WANT_SERVER_TRUE@Amanda_DATA = $(am__append_5) - - # PACKAGE: Amanda::Archive --libArchivedir = $(amperldir)/auto/Amanda/Archive --libArchive_LTLIBRARIES = libArchive.la -+@WANT_CLIENT_TRUE@libArchivedir = $(amperldir)/auto/Amanda/Archive -+@WANT_CLIENT_TRUE@libArchive_LTLIBRARIES = libArchive.la - libArchive_la_SOURCES = Amanda/Archive.c $(AMGLUE_SWG) - libArchive_la_LDFLAGS = $(PERL_EXT_LDFLAGS) - libArchive_la_LIBADD = libamglue.la \ -@@ -1118,57 +1120,57 @@ - - - # PACKAGE: Amanda::Debug --libDebugdir = $(amperldir)/auto/Amanda/Debug --libDebug_LTLIBRARIES = libDebug.la --libDebug_la_SOURCES = Amanda/Debug.c $(AMGLUE_SWG) --libDebug_la_LDFLAGS = $(PERL_EXT_LDFLAGS) --libDebug_la_LIBADD = libamglue.la \ -- $(top_builddir)/common-src/libamanda.la -+@WANT_CLIENT_TRUE@libDebugdir = $(amperldir)/auto/Amanda/Debug -+@WANT_CLIENT_TRUE@libDebug_LTLIBRARIES = libDebug.la -+@WANT_CLIENT_TRUE@libDebug_la_SOURCES = Amanda/Debug.c $(AMGLUE_SWG) -+@WANT_CLIENT_TRUE@libDebug_la_LDFLAGS = $(PERL_EXT_LDFLAGS) -+@WANT_CLIENT_TRUE@libDebug_la_LIBADD = libamglue.la \ -+@WANT_CLIENT_TRUE@ $(top_builddir)/common-src/libamanda.la - - - # PACKAGE: Amanda::Config --libConfigdir = $(amperldir)/auto/Amanda/Config --libConfig_LTLIBRARIES = libConfig.la --libConfig_la_SOURCES = Amanda/Config.c $(AMGLUE_SWG) --libConfig_la_LDFLAGS = $(PERL_EXT_LDFLAGS) --libConfig_la_LIBADD = libamglue.la \ -- $(top_builddir)/common-src/libamanda.la -+@WANT_CLIENT_TRUE@libConfigdir = $(amperldir)/auto/Amanda/Config -+@WANT_CLIENT_TRUE@libConfig_LTLIBRARIES = libConfig.la -+@WANT_CLIENT_TRUE@libConfig_la_SOURCES = Amanda/Config.c $(AMGLUE_SWG) -+@WANT_CLIENT_TRUE@libConfig_la_LDFLAGS = $(PERL_EXT_LDFLAGS) -+@WANT_CLIENT_TRUE@libConfig_la_LIBADD = libamglue.la \ -+@WANT_CLIENT_TRUE@ $(top_builddir)/common-src/libamanda.la - - - # PACKAGE: Amanda::Util --libUtildir = $(amperldir)/auto/Amanda/Util --libUtil_LTLIBRARIES = libUtil.la --libUtil_la_SOURCES = Amanda/Util.c $(AMGLUE_SWG) --libUtil_la_LDFLAGS = $(PERL_EXT_LDFLAGS) --libUtil_la_LIBADD = libamglue.la \ -- $(top_builddir)/common-src/libamanda.la -+@WANT_CLIENT_TRUE@libUtildir = $(amperldir)/auto/Amanda/Util -+@WANT_CLIENT_TRUE@libUtil_LTLIBRARIES = libUtil.la -+@WANT_CLIENT_TRUE@libUtil_la_SOURCES = Amanda/Util.c $(AMGLUE_SWG) -+@WANT_CLIENT_TRUE@libUtil_la_LDFLAGS = $(PERL_EXT_LDFLAGS) -+@WANT_CLIENT_TRUE@libUtil_la_LIBADD = libamglue.la \ -+@WANT_CLIENT_TRUE@ $(top_builddir)/common-src/libamanda.la - - - # PACKAGE: Amanda::Types --libTypesdir = $(amperldir)/auto/Amanda/Types --libTypes_LTLIBRARIES = libTypes.la --libTypes_la_SOURCES = Amanda/Types.c $(AMGLUE_SWG) --libTypes_la_LDFLAGS = $(PERL_EXT_LDFLAGS) --libTypes_la_LIBADD = libamglue.la \ -- $(top_builddir)/common-src/libamanda.la -+@WANT_CLIENT_TRUE@libTypesdir = $(amperldir)/auto/Amanda/Types -+@WANT_CLIENT_TRUE@libTypes_LTLIBRARIES = libTypes.la -+@WANT_CLIENT_TRUE@libTypes_la_SOURCES = Amanda/Types.c $(AMGLUE_SWG) -+@WANT_CLIENT_TRUE@libTypes_la_LDFLAGS = $(PERL_EXT_LDFLAGS) -+@WANT_CLIENT_TRUE@libTypes_la_LIBADD = libamglue.la \ -+@WANT_CLIENT_TRUE@ $(top_builddir)/common-src/libamanda.la - - - # PACKAGE: Amanda::Tests --libTestsdir = $(amperldir)/auto/Amanda/Tests --libTests_LTLIBRARIES = libTests.la --libTests_la_SOURCES = Amanda/Tests.c $(AMGLUE_SWG) --libTests_la_LDFLAGS = $(PERL_EXT_LDFLAGS) --libTests_la_LIBADD = libamglue.la \ -- $(top_builddir)/common-src/libamanda.la -+@WANT_CLIENT_TRUE@libTestsdir = $(amperldir)/auto/Amanda/Tests -+@WANT_CLIENT_TRUE@libTests_LTLIBRARIES = libTests.la -+@WANT_CLIENT_TRUE@libTests_la_SOURCES = Amanda/Tests.c $(AMGLUE_SWG) -+@WANT_CLIENT_TRUE@libTests_la_LDFLAGS = $(PERL_EXT_LDFLAGS) -+@WANT_CLIENT_TRUE@libTests_la_LIBADD = libamglue.la \ -+@WANT_CLIENT_TRUE@ $(top_builddir)/common-src/libamanda.la - - - # PACKAGE: Amanda::MainLoop --libMainLoopdir = $(amperldir)/auto/Amanda/MainLoop --libMainLoop_LTLIBRARIES = libMainLoop.la --libMainLoop_la_SOURCES = Amanda/MainLoop.c $(AMGLUE_SWG) --libMainLoop_la_LDFLAGS = $(PERL_EXT_LDFLAGS) --libMainLoop_la_LIBADD = libamglue.la \ -- $(top_builddir)/common-src/libamanda.la -+@WANT_CLIENT_TRUE@libMainLoopdir = $(amperldir)/auto/Amanda/MainLoop -+@WANT_CLIENT_TRUE@libMainLoop_LTLIBRARIES = libMainLoop.la -+@WANT_CLIENT_TRUE@libMainLoop_la_SOURCES = Amanda/MainLoop.c $(AMGLUE_SWG) -+@WANT_CLIENT_TRUE@libMainLoop_la_LDFLAGS = $(PERL_EXT_LDFLAGS) -+@WANT_CLIENT_TRUE@libMainLoop_la_LIBADD = libamglue.la \ -+@WANT_CLIENT_TRUE@ $(top_builddir)/common-src/libamanda.la - - - # PACKAGE: Amanda::Application diff --git a/misc/amanda26-server/files/patch-server-src::amcleanup.pl b/misc/amanda26-server/files/patch-server-src::amcleanup.pl deleted file mode 100644 index fbd45ccbea63..000000000000 --- a/misc/amanda26-server/files/patch-server-src::amcleanup.pl +++ /dev/null @@ -1,11 +0,0 @@ ---- server-src/amcleanup.pl.orig 2009-01-28 13:57:21.000000000 +0900 -+++ server-src/amcleanup.pl 2009-01-28 13:57:33.000000000 +0900 -@@ -94,7 +94,7 @@ - } elsif (!$process_alive) { - #check amdump/amflush process - foreach my $pname ("amdump", "amflush") { -- my $pid = `ps -ef|grep -w ${pname}|grep -w ${config_name}| grep -v grep | awk '{print \$2}'`; -+ my $pid = `ps -f|grep -w ${pname}|grep -w ${config_name}| grep -v grep | awk '{print \$2}'`; - chomp $pid; - if ($pid ne "") { - $Amanda_process->set_master($pname, $pid); diff --git a/misc/amanda26-server/pkg-descr b/misc/amanda26-server/pkg-descr deleted file mode 100644 index 054161f6aeb2..000000000000 --- a/misc/amanda26-server/pkg-descr +++ /dev/null @@ -1,22 +0,0 @@ -WHAT IS AMANDA? ---------------- - -This is a release of Amanda, the Advanced Maryland Automatic -Network Disk Archiver. Amanda is a backup system designed to archive many -computers on a network to a single large-capacity tape drive. - -Here are some features of Amanda: - - * written in C, freely distributable. - * built on top of standard backup software: Unix dump/restore, and - later GNU Tar and others. - * will back up multiple machines in parallel to a holding disk, blasting - finished dumps one by one to tape as fast as we can write files to - tape. For example, a ~2 Gb 8mm tape on a ~240K/s interface to a host - with a large holding disk can be filled by Amanda in under 4 hours. - * does simple tape management: will not overwrite the wrong tape. - -WWW: http://sourceforge.net/projects/amanda/ - -- Jim -jeh@FreeBSD.org diff --git a/misc/amanda26-server/pkg-plist b/misc/amanda26-server/pkg-plist deleted file mode 100644 index 655238c1d854..000000000000 --- a/misc/amanda26-server/pkg-plist +++ /dev/null @@ -1,104 +0,0 @@ -lib/amanda/libamdevice-%%SHLIBVER%%.so -lib/amanda/libamdevice.a -lib/amanda/libamdevice.la -lib/amanda/libamdevice.so -lib/amanda/libamserver-%%SHLIBVER%%.so -lib/amanda/libamserver.a -lib/amanda/libamserver.la -lib/amanda/libamserver.so -lib/amanda/libamxfer-%%SHLIBVER%%.so -lib/amanda/libamxfer.a -lib/amanda/libamxfer.la -lib/amanda/libamxfer.so -lib/amanda/librestore-%%SHLIBVER%%.so -lib/amanda/librestore.a -lib/amanda/librestore.la -lib/amanda/librestore.so -%%SITE_PERL%%/Amanda/Changer.pm -%%SITE_PERL%%/Amanda/Changer/compat.pm -%%SITE_PERL%%/Amanda/Changer/disk.pm -%%SITE_PERL%%/Amanda/Changer/single.pm -%%SITE_PERL%%/Amanda/Cmdline.pm -%%SITE_PERL%%/Amanda/DB/Catalog.pm -%%SITE_PERL%%/Amanda/Device.pm -%%SITE_PERL%%/Amanda/Logfile.pm -%%SITE_PERL%%/Amanda/Process.pm -%%SITE_PERL%%/Amanda/Tapelist.pm -%%SITE_PERL%%/Amanda/Xfer.pm -%%SITE_PERL%%/auto/Amanda/Cmdline/libCmdline.a -%%SITE_PERL%%/auto/Amanda/Cmdline/libCmdline.la -%%SITE_PERL%%/auto/Amanda/Cmdline/libCmdline.so -%%SITE_PERL%%/auto/Amanda/Device/libDevice.a -%%SITE_PERL%%/auto/Amanda/Device/libDevice.la -%%SITE_PERL%%/auto/Amanda/Device/libDevice.so -%%SITE_PERL%%/auto/Amanda/Logfile/libLogfile.a -%%SITE_PERL%%/auto/Amanda/Logfile/libLogfile.la -%%SITE_PERL%%/auto/Amanda/Logfile/libLogfile.so -%%SITE_PERL%%/auto/Amanda/Tapelist/libTapelist.a -%%SITE_PERL%%/auto/Amanda/Tapelist/libTapelist.la -%%SITE_PERL%%/auto/Amanda/Tapelist/libTapelist.so -%%SITE_PERL%%/auto/Amanda/Xfer/libXfer.a -%%SITE_PERL%%/auto/Amanda/Xfer/libXfer.la -%%SITE_PERL%%/auto/Amanda/Xfer/libXfer.so -%%PLOT%%libexec/amanda/amcat.awk -libexec/amanda/amcleanupdisk -libexec/amanda/amindexd -libexec/amanda/amlogroll -%%PLOT%%libexec/amanda/amplot.awk -%%PLOT%%libexec/amanda/amplot.g -%%PLOT%%libexec/amanda/amplot.gp -libexec/amanda/amtrmidx -libexec/amanda/amtrmlog -libexec/amanda/chg-chio -libexec/amanda/chg-chs -libexec/amanda/chg-disk -libexec/amanda/chg-glue -libexec/amanda/chg-iomega -libexec/amanda/chg-juke -libexec/amanda/chg-lib.sh -libexec/amanda/chg-manual -libexec/amanda/chg-mcutil -libexec/amanda/chg-mtx -libexec/amanda/chg-multi -libexec/amanda/chg-null -libexec/amanda/chg-rait -libexec/amanda/chg-rth -libexec/amanda/chg-zd-mtx -libexec/amanda/chunker -libexec/amanda/amidxtaped -libexec/amanda/driver -libexec/amanda/dumper -libexec/amanda/planner -libexec/amanda/taper -%%S3DEVICE%%sbin/activate-devpay -sbin/amaddclient -sbin/amadmin -sbin/amcheck -sbin/amcheckdb -sbin/amcheckdump -sbin/amcleanup -sbin/amdevcheck -sbin/amdump -sbin/amfetchdump -sbin/amflush -sbin/amlabel -sbin/amoverview -%%PLOT%%sbin/amplot -sbin/amreport -sbin/amrestore -sbin/amrmtape -sbin/amserverconfig -sbin/amservice -sbin/amstatus -sbin/amtape -sbin/amtapetype -sbin/amtoc -sbin/amvault -@dirrm %%SITE_PERL%%/auto/Amanda/Cmdline -@dirrm %%SITE_PERL%%/auto/Amanda/Device -@dirrm %%SITE_PERL%%/auto/Amanda/Logfile -@dirrm %%SITE_PERL%%/auto/Amanda/Tapelist -@dirrm %%SITE_PERL%%/auto/Amanda/Xfer -@dirrm %%SITE_PERL%%/Amanda/DB -@dirrm %%SITE_PERL%%/Amanda/Changer -@dirrm include/amanda diff --git a/misc/amanda26-server/pkg-plist.client b/misc/amanda26-server/pkg-plist.client deleted file mode 100644 index 428adc9b1350..000000000000 --- a/misc/amanda26-server/pkg-plist.client +++ /dev/null @@ -1,136 +0,0 @@ -lib/amanda/libamanda-%%SHLIBVER%%.so -lib/amanda/libamanda.a -lib/amanda/libamanda.la -lib/amanda/libamanda.so -lib/amanda/libamandad-%%SHLIBVER%%.so -lib/amanda/libamandad.a -lib/amanda/libamandad.la -lib/amanda/libamandad.so -lib/amanda/libamar-%%SHLIBVER%%.so -lib/amanda/libamar.a -lib/amanda/libamar.la -lib/amanda/libamar.so -lib/amanda/libamclient-%%SHLIBVER%%.so -lib/amanda/libamclient.a -lib/amanda/libamclient.la -lib/amanda/libamclient.so -lib/amanda/libamglue.a -lib/amanda/libamglue.la -lib/amanda/libamglue.so -libexec/amanda/amanda-sh-lib.sh -libexec/amanda/amandad -libexec/amanda/application/amgtar -libexec/amanda/application/amgtar_perl -libexec/amanda/application/amlog-script -libexec/amanda/application/amsamba -libexec/amanda/application/amstar -libexec/amanda/application/amzfs-sendrecv -libexec/amanda/application/amzfs-snapshot -libexec/amanda/application/script-email -libexec/amanda/calcsize -libexec/amanda/killpgrp -libexec/amanda/noop -libexec/amanda/patch-system -libexec/amanda/rundump -libexec/amanda/runtar -libexec/amanda/selfcheck -libexec/amanda/sendbackup -libexec/amanda/sendsize -libexec/amanda/teecount -libexec/amanda/versionsuffix -%%SITE_PERL%%/Amanda/Application.pm -%%SITE_PERL%%/Amanda/Application/Zfs.pm -%%SITE_PERL%%/Amanda/Archive.pm -%%SITE_PERL%%/Amanda/BigIntCompat.pm -%%SITE_PERL%%/Amanda/Config.pm -%%SITE_PERL%%/Amanda/Constants.pm -%%SITE_PERL%%/Amanda/Debug.pm -%%SITE_PERL%%/Amanda/MainLoop.pm -%%SITE_PERL%%/Amanda/Paths.pm -%%SITE_PERL%%/Amanda/Script.pm -%%SITE_PERL%%/Amanda/Script_App.pm -%%SITE_PERL%%/Amanda/Tests.pm -%%SITE_PERL%%/Amanda/Types.pm -%%SITE_PERL%%/Amanda/Util.pm -%%SITE_PERL%%/auto/Amanda/Application/libApplication.a -%%SITE_PERL%%/auto/Amanda/Application/libApplication.la -%%SITE_PERL%%/auto/Amanda/Application/libApplication.so -%%SITE_PERL%%/auto/Amanda/Archive/libArchive.a -%%SITE_PERL%%/auto/Amanda/Archive/libArchive.la -%%SITE_PERL%%/auto/Amanda/Archive/libArchive.so -%%SITE_PERL%%/auto/Amanda/Config/libConfig.a -%%SITE_PERL%%/auto/Amanda/Config/libConfig.la -%%SITE_PERL%%/auto/Amanda/Config/libConfig.so -%%SITE_PERL%%/auto/Amanda/Debug/libDebug.a -%%SITE_PERL%%/auto/Amanda/Debug/libDebug.la -%%SITE_PERL%%/auto/Amanda/Debug/libDebug.so -%%SITE_PERL%%/auto/Amanda/MainLoop/libMainLoop.a -%%SITE_PERL%%/auto/Amanda/MainLoop/libMainLoop.la -%%SITE_PERL%%/auto/Amanda/MainLoop/libMainLoop.so -%%SITE_PERL%%/auto/Amanda/Tests/libTests.a -%%SITE_PERL%%/auto/Amanda/Tests/libTests.la -%%SITE_PERL%%/auto/Amanda/Tests/libTests.so -%%SITE_PERL%%/auto/Amanda/Types/libTypes.a -%%SITE_PERL%%/auto/Amanda/Types/libTypes.la -%%SITE_PERL%%/auto/Amanda/Types/libTypes.so -%%SITE_PERL%%/auto/Amanda/Util/libUtil.a -%%SITE_PERL%%/auto/Amanda/Util/libUtil.la -%%SITE_PERL%%/auto/Amanda/Util/libUtil.so -sbin/amaespipe -sbin/amarchiver -sbin/amcrypt -sbin/amcrypt-ossl -sbin/amcrypt-ossl-asym -sbin/amcryptsimple -sbin/amgetconf -sbin/amgpgcrypt -sbin/amoldrecover -sbin/amrecover -%%DATADIR%%/COPYRIGHT -%%DATADIR%%/ChangeLog -%%DATADIR%%/NEWS -%%DATADIR%%/ReleaseNotes -%%PORTDOCS%%%%EXAMPLESDIR%%/disklist -%%PORTDOCS%%%%EXAMPLESDIR%%/chg-scsi.conf -%%PORTDOCS%%%%EXAMPLESDIR%%/chg-multi.conf -%%DATADIR%%/example/amanda.conf -%%DATADIR%%/example/amanda-client.conf -%%DATADIR%%/example/inetd.conf.amandaclient -%%DATADIR%%/example/inetd.conf.amandaserver -%%DATADIR%%/example/label-templates/3hole.ps -%%DATADIR%%/example/label-templates/8.5x11.ps -%%DATADIR%%/example/label-templates/DIN-A4.ps -%%DATADIR%%/example/label-templates/DLT-A4.ps -%%DATADIR%%/example/label-templates/DLT.ps -%%DATADIR%%/example/label-templates/EXB-8500.ps -%%DATADIR%%/example/label-templates/HP-DAT.ps -%%DATADIR%%/example/xinetd.amandaclient -%%DATADIR%%/example/xinetd.amandaserver -%%DATADIR%%/template.d/advanced.conf -%%DATADIR%%/template.d/amanda-harddisk.conf -%%DATADIR%%/template.d/amanda-single-tape.conf -%%DATADIR%%/template.d/amanda-tape-changer.conf -%%DATADIR%%/template.d/amanda-S3.conf -%%DATADIR%%/template.d/dumptypes -%%DATADIR%%/template.d/tapetypes -%%DATADIR%%/template.d/README -%%DATADIR%%/template.d/chg-manual.conf -@dirrm %%SITE_PERL%%/auto/Amanda/Util -@dirrm %%SITE_PERL%%/auto/Amanda/Types -@dirrm %%SITE_PERL%%/auto/Amanda/Tests -@dirrm %%SITE_PERL%%/auto/Amanda/MainLoop -@dirrm %%SITE_PERL%%/auto/Amanda/Debug -@dirrm %%SITE_PERL%%/auto/Amanda/Config -@dirrm %%SITE_PERL%%/auto/Amanda/Archive -@dirrm %%SITE_PERL%%/auto/Amanda/Application -@dirrm %%SITE_PERL%%/auto/Amanda -@dirrm %%SITE_PERL%%/Amanda/Application -@dirrm %%SITE_PERL%%/Amanda -@dirrm %%DATADIR%%/template.d -@dirrm %%DATADIR%%/example/label-templates -@dirrm %%DATADIR%%/example -@dirrm %%DATADIR%% -@dirrm libexec/amanda/application -@dirrm libexec/amanda -@dirrm lib/amanda -%%PORTDOCS%%@dirrm %%EXAMPLESDIR%% diff --git a/misc/amanda32-client/Makefile b/misc/amanda32-client/Makefile deleted file mode 100644 index 03f4f0473ffd..000000000000 --- a/misc/amanda32-client/Makefile +++ /dev/null @@ -1,19 +0,0 @@ -# New ports collection makefile for: amanda -# Date created: 28th Feb 1995 -# Whom: gpalmer -# -# $FreeBSD$ -# - -PKGNAMESUFFIX= -client - -COMMENT= The Advanced Maryland Automatic Network Disk Archiver (client) - -MASTERDIR= ${.CURDIR}/../amanda-server -PKGINSTALL= mustnotexist - -PLIST= ${PKGDIR}/pkg-plist.client - -CLIENT_ONLY= yes - -.include "${MASTERDIR}/Makefile" diff --git a/misc/amanda32-server/Makefile b/misc/amanda32-server/Makefile deleted file mode 100644 index f5a65f09d82e..000000000000 --- a/misc/amanda32-server/Makefile +++ /dev/null @@ -1,228 +0,0 @@ -# New ports collection makefile for: amanda -# Date created: 28th Feb 1995 -# Whom: gpalmer -# -# $FreeBSD$ -# - -PORTNAME= amanda -PORTVERSION= 2.6.1p2 -PORTREVISION= 2 -PORTEPOCH= 1 -CATEGORIES= misc -MASTER_SITES= SF/amanda/amanda%20-%20stable/${PORTVERSION} -PKGNAMESUFFIX?= -server - -MAINTAINER= kuriyama@FreeBSD.org -COMMENT?= The Advanced Maryland Automatic Network Disk Archiver (server) - -WRKSRC= ${WRKDIR}/amanda-${PORTVERSION} -SLAVEDIRS= misc/amanda-client - -LATEST_LINK= ${PORTNAME}${PKGNAMESUFFIX} -GNU_CONFIGURE= yes -USE_GNOME= pkgconfig glib20 -USE_GMAKE= yes -USE_OPENSSL= yes -PATCH_STRIP= -CONFIGURE_ARGS= --libexecdir=${PREFIX}/libexec/amanda \ - --without-amlibexecdir \ - --with-amandahosts --with-fqdn \ - --with-dump-honor-nodump --with-buffered-dump \ - --prefix=${PREFIX} \ - --disable-glibtest \ - --with-user=${AMANDA_USER} --with-group=${AMANDA_GROUP} \ - --with-bsdtcp-security --with-bsdudp-security \ - --with-ssh-security - -USE_LDCONFIG= yes -USE_PERL5= yes - -OPTIONS= GNUTAR "use GNU tar" on - -.include <bsd.port.pre.mk> - -AMANDA_USER?= operator -AMANDA_GROUP?= operator -AMANDA_GNUTAR_LISTDIR?= ${PREFIX}/var/amanda/gnutar-lists -AMANDA_DATES?= ${PREFIX}/var/amanda/amandates -PLIST_SUB= SHLIBVER=${PORTVERSION} AMANDA_DATES=${AMANDA_DATES} - -# amanda-server/amanda-client common part -.if defined (AMANDA_SERVER) -CONFIGURE_ARGS+= --with-index-server=${AMANDA_SERVER} -CONFIGURE_ARGS+= --with-tape-server=${AMANDA_SERVER} -.endif - -.if defined (AMANDA_CONFIG) -CONFIGURE_ARGS+= --with-config=${AMANDA_CONFIG} -.endif - -.if !defined(WITHOUT_GNUTAR) -CONFIGURE_ARGS+=--with-gnutar-listdir=${AMANDA_GNUTAR_LISTDIR} \ - --with-gnutar=${LOCALBASE}/bin/gtar -BUILD_DEPENDS= gtar:${PORTSDIR}/archivers/gtar -RUN_DEPENDS= gtar:${PORTSDIR}/archivers/gtar -.endif - -# amanda-server part -.if !defined(CLIENT_ONLY) - -pre-fetch: - @${ECHO} "" - @${ECHO} "You may use the following build options:" - @${ECHO} "" - @${ECHO} " AMANDA_SERVER=server to specify a server name" - @${ECHO} " The default is `uname -n`" - @${ECHO} " AMANDA_TAPE=tape to specify the default tape device" - @${ECHO} " The default is /dev/nrsa0" - @${ECHO} " AMANDA_CONFIG=config to specify the default configuration" - @${ECHO} " The default is DailySet1" - @${ECHO} " AMANDA_USER=user to specify the default user" - @${ECHO} " The default is operator" - @${ECHO} " AMANDA_GROUP=group to specify the default group" - @${ECHO} " The default is operator" - @${ECHO} " AMANDA_DATES=path to client amandates file" - @${ECHO} "" - -CONFLICTS= amanda-server-2.5.* - -BUILD_DEPENDS+= ${LOCALBASE}/lib/amanda/libamandad-${PORTVERSION}.so:${PORTSDIR}/misc/amanda-client -RUN_DEPENDS+= ${LOCALBASE}/lib/amanda/libamandad-${PORTVERSION}.so:${PORTSDIR}/misc/amanda-client - -CONFIGURE_ARGS+=--without-client - -MAN5= disklist.5 \ - tapelist.5 -MAN7= amanda-changers.7 \ - amanda-devices.7 -MAN8= amaddclient.8 amadmin.8 amaespipe.8 amcheck.8 \ - amcheckdb.8 amcheckdump.8 amcleanup.8 \ - amcrypt.8 amcryptsimple.8 amcrypt-ossl-asym.8 amcrypt-ossl.8 \ - amdevcheck.8 \ - amdump.8 amfetchdump.8 amflush.8 amgetconf.8 amgpgcrypt.8 \ - amlabel.8 \ - amoverview.8 amreport.8 amrestore.8 amrmtape.8 \ - amserverconfig.8 amservice.8 amstatus.8 \ - amtape.8 amtoc.8 amtapetype.8 \ - amvault.8 - -OPTIONS+= PLOT "enable ploting, requires X11 libraries" off\ - SAMBA "enable the use of smbclient" off \ - MTX "enable the use of mtx changer scripts" off \ - AESPIPE "enable encryption. Needed by amcrypt" off \ - S3 "enable Amazon S3 device support" off - -.if defined (WITH_PLOT) -BUILD_DEPENDS+= gnuplot:${PORTSDIR}/math/gnuplot -RUN_DEPENDS+= gnuplot:${PORTSDIR}/math/gnuplot -MAN8+= amplot.8 -PLIST_SUB+= PLOT='' -CONFIGURE_ARGS+= --with-gnuplot=${LOCALBASE}/bin/gnuplot -.else -PLIST_SUB+= PLOT='@comment ' -CONFIGURE_ARGS+= --without-gnuplot -.endif - -.if defined (WITH_SAMBA) -SAMBA_PORT?= samba3 -BUILD_DEPENDS+= smbclient:${PORTSDIR}/net/${SAMBA_PORT} -RUN_DEPENDS+= smbclient:${PORTSDIR}/net/${SAMBA_PORT} -CONFIGURE_ARGS+= --with-smbclient=${PREFIX}/bin/smbclient -.endif - -.if defined (WITH_MTX) -BUILD_DEPENDS+= mtx:${PORTSDIR}/misc/mtx -RUN_DEPENDS+= mtx:${PORTSDIR}/misc/mtx -.endif - -.if defined (WITH_AESPIPE) -RUN_DEPENDS+= aespipe:${PORTSDIR}/security/aespipe -.else -.endif - -# If configure founds libcurl, automatically enabled it (with plist change). -.if defined(WITH_S3) -LIB_DEPENDS+= curl:${PORTSDIR}/ftp/curl -CONFIGURE_ARGS+= --enable-s3-device -PLIST_SUB+= S3DEVICE='' -.else -CONFIGURE_ARGS+= --disable-s3-device -PLIST_SUB+= S3DEVICE='@comment ' -.endif - -.if defined (AMANDA_TAPE) -CONFIGURE_ARGS+= --with-tape-device=${AMANDA_TAPE} -.endif - -# amanda-client part -.else - -pre-fetch: - @${ECHO} "" - @${ECHO} "You may use the following build options:" - @${ECHO} "" - @${ECHO} " AMANDA_SERVER=server to specify a server name" - @${ECHO} " The default is `uname -n`" - @${ECHO} " AMANDA_CONFIG=config to specify the default configuation" - @${ECHO} " The default is DailySet1" - @${ECHO} " AMANDA_GNUTAR_LISTDIR=dir to specify the directory that" - @${ECHO} " the gnutar index files should live in" - @${ECHO} " The default is ${PREFIX}/var/amanda/gnutar-lists" - @${ECHO} " AMANDA_USER=user to specify the default user" - @${ECHO} " The default is operator" - @${ECHO} " AMANDA_GROUP=group to specify the default group" - @${ECHO} " The default is operator" - @${ECHO} " AMANDA_DATES=path to client amandates file" - @${ECHO} "" - -OPTIONS+= ZFSCOMP "accurate estimation of compressed ZFS filesystems" off - -CONFLICTS= amanda-client-2.5.* -CONFIGURE_ARGS+=--without-server --with-amandates=${AMANDA_DATES} - -MAN5= amanda-archive-format.5 \ - amanda-client.conf.5 \ - amanda.conf.5 -MAN7= amanda-applications.7 \ - amanda-auth.7 \ - amanda-scripts.7 -MAN8= amanda.8 \ - amarchiver.8 \ - amgtar.8 \ - amrecover.8 \ - amsamba.8 \ - amstar.8 \ - amzfs-sendrecv.8 \ - amzfs-snapshot.8 \ - script-email.8 - -post-install: -.ifndef(NOPORTDOCS) - ${MKDIR} ${EXAMPLESDIR} - ${CP} -R ${WRKSRC}/example/chg-multi.conf \ - ${WRKSRC}/example/chg-scsi.conf \ - ${WRKSRC}/example/disklist \ - ${EXAMPLESDIR} -.endif - ${MKDIR} ${AMANDA_GNUTAR_LISTDIR} - ${CHOWN} ${AMANDA_USER}:${AMANDA_GROUP} ${AMANDA_GNUTAR_LISTDIR} - ${TOUCH} ${AMANDA_DATES} - ${CHOWN} ${AMANDA_USER}:${AMANDA_GROUP} ${AMANDA_DATES} - -.endif - -.if defined(WITH_ZFSCOMP) -EXTRA_PATCHES= ${FILESDIR}/extra-patch-application-src::amzfs-sendrecv.pl -.endif - -# MEMO: -# Prefix @WANT_SERVER_TRUE@ for server only files. -# Prefix @WANT_CLIENT_TRUE@ for client only files. -# For debugging: dbprintf(_("getcmd: %s\n"), line); -# Maintainer TODO: -# o amanda-server installs libexec/amanda/amandad, sbin/amarchiver -# which should be handled by amanda-client only. -# o pthread issue: http://wiki.zmanda.com/index.php/Installation/OS_Specific_Notes/Installing_Amanda_on_FreeBSD#Threading_and_-pthread - -.include <bsd.port.post.mk> diff --git a/misc/amanda32-server/distinfo b/misc/amanda32-server/distinfo deleted file mode 100644 index 7d26a0a79d4e..000000000000 --- a/misc/amanda32-server/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (amanda-2.6.1p2.tar.gz) = 816ef0101b6d968c5df7d7d7e793caed -SHA256 (amanda-2.6.1p2.tar.gz) = 828c71040f1ccf69f9996907a3575b7dc27890ea7a5fae5eac77183125eda195 -SIZE (amanda-2.6.1p2.tar.gz) = 2868102 diff --git a/misc/amanda32-server/files/extra-patch-application-src::amzfs-sendrecv.pl b/misc/amanda32-server/files/extra-patch-application-src::amzfs-sendrecv.pl deleted file mode 100644 index 0a19153747d9..000000000000 --- a/misc/amanda32-server/files/extra-patch-application-src::amzfs-sendrecv.pl +++ /dev/null @@ -1,52 +0,0 @@ ---- application-src/amzfs-sendrecv.pl.orig 2009-01-22 02:35:38.000000000 +0100 -+++ application-src/amzfs-sendrecv.pl 2009-01-31 10:37:59.495534563 +0100 -@@ -235,13 +235,48 @@ - } elsif (defined $errmsg) { - $self->print_to_server_and_die($action, $errmsg, $Amanda::Script_App::ERROR); - } else { -- $self->print_to_server_and_die($action, "cannot estimate snapshot '$self->{snapshot}\@$self->{snapshot}': unknown reason", $Amanda::Script_App::ERROR); -+ $self->print_to_server_and_die($action, "cannot estimate snapshot '$self->{snapshot}\@$self->{snapshot}': unknown reason", $Amanda::Script_App::ERROR); - } - } -+ if ($level == 0) { -+ my $compratio = $self->get_compratio(); -+ $msg *= int $compratio; -+ } - - return $msg; - } - -+sub get_compratio -+{ -+ my $self = shift; -+ my $action = shift; -+ -+ my $cmd; -+ $cmd = "$self->{pfexec_cmd} $self->{zfs_path} get -Hp -o value compressratio $self->{filesystem}\@$self->{snapshot}"; -+ debug "running (get-compression): $cmd"; -+ my($wtr, $rdr, $err, $pid); -+ $err = Symbol::gensym; -+ $pid = open3($wtr, $rdr, $err, $cmd); -+ close $wtr; -+ my ($msg) = <$rdr>; -+ my ($errmsg) = <$err>; -+ waitpid $pid, 0; -+ close $rdr; -+ close $err; -+ if ($? != 0) { -+ if (defined $msg && defined $errmsg) { -+ $self->print_to_server_and_die($action, "$msg, $errmsg", $Amanda::Script_App::ERROR); -+ } elsif (defined $msg) { -+ $self->print_to_server_and_die($action, $msg, $Amanda::Script_App::ERROR); -+ } elsif (defined $errmsg) { -+ $self->print_to_server_and_die($action, $errmsg, $Amanda::Script_App::ERROR); -+ } else { -+ $self->print_to_server_and_die($action, "cannot read compression ratio '$self->{snapshot}\@$self->{snapshot}': unknown reason", $Amanda::Script_App::ERROR); -+ } -+ } -+ return $msg -+} -+ - sub command_index_from_output { - } - diff --git a/misc/amanda32-server/files/extra-patch-sendbackup-dump.c b/misc/amanda32-server/files/extra-patch-sendbackup-dump.c deleted file mode 100644 index 3a232d1a8f25..000000000000 --- a/misc/amanda32-server/files/extra-patch-sendbackup-dump.c +++ /dev/null @@ -1,23 +0,0 @@ ---- client-src/sendbackup-dump.c.orig 2008-12-13 04:18:11.000000000 +0900 -+++ client-src/sendbackup-dump.c 2009-01-27 07:30:40.000000000 +0900 -@@ -35,6 +35,10 @@ - #include "clock.h" - #include "version.h" - -+#ifdef __FreeBSD__ -+#include <sys/param.h> -+#endif -+ - #define LEAF_AND_DIRS "sed -e \'\ns/^leaf[ \t]*[0-9]*[ \t]*\\.//\nt\n/^dir[ \t]/ {\ns/^dir[ \t]*[0-9]*[ \t]*\\.//\ns%$%/%\nt\n}\nd\n\'" - - static amregex_t re_table[] = { -@@ -310,6 +314,9 @@ - cmdX, config, - "vxdump", - dumpkeys, -+#ifdef __FreeBSD__ -+ "64", -+#endif - "1048576", - "-", - device, diff --git a/misc/amanda32-server/files/patch-ad b/misc/amanda32-server/files/patch-ad deleted file mode 100644 index 3fff9c551c52..000000000000 --- a/misc/amanda32-server/files/patch-ad +++ /dev/null @@ -1,14 +0,0 @@ ---- client-src/calcsize.c.orig 2008-01-18 09:31:16.000000000 +0900 -+++ client-src/calcsize.c 2008-08-30 20:11:59.000000000 +0900 -@@ -160,7 +160,11 @@ - dump_total += (ST_BLOCKS(finfo) + (off_t)1) / (off_t)2 + (off_t)1; - gtar_total += ROUND(4,(ST_BLOCKS(finfo) + (off_t)1)); - } -+#ifdef GNUTAR -+ g_printf(" GNUTAR dump\n"); -+#else - g_printf(" gtar dump\n"); -+#endif - g_printf("total %-9lu %-9lu\n",gtar_total,dump_total); - return 0; - #else diff --git a/misc/amanda32-server/files/patch-amandad-src::Makefile.in b/misc/amanda32-server/files/patch-amandad-src::Makefile.in deleted file mode 100644 index 9a80b4b90f95..000000000000 --- a/misc/amanda32-server/files/patch-amandad-src::Makefile.in +++ /dev/null @@ -1,12 +0,0 @@ ---- amandad-src/Makefile.in.orig 2009-01-27 13:43:16.000000000 +0900 -+++ amandad-src/Makefile.in 2009-01-27 13:44:02.000000000 +0900 -@@ -776,7 +776,8 @@ - AM_LDFLAGS = $(AMANDA_STATIC_LDFLAGS) - LINT = $(AMLINT) - LINTFLAGS = $(AMLINTFLAGS) --amlib_LTLIBRARIES = libamandad.la -+@WANT_SERVER_TRUE@amlib_LTLIBRARIES = -+@WANT_CLIENT_TRUE@amlib_LTLIBRARIES = libamandad.la - LIB_EXTENSION = la - libamandad_la_SOURCES = amandad_util.c - libamandad_la_LDFLAGS = -release $(VERSION) diff --git a/misc/amanda32-server/files/patch-amar-src::Makefile.in b/misc/amanda32-server/files/patch-amar-src::Makefile.in deleted file mode 100644 index c7941f44904e..000000000000 --- a/misc/amanda32-server/files/patch-amar-src::Makefile.in +++ /dev/null @@ -1,12 +0,0 @@ ---- amar-src/Makefile.in.orig 2009-01-27 14:01:04.000000000 +0900 -+++ amar-src/Makefile.in 2009-01-27 14:01:36.000000000 +0900 -@@ -856,7 +856,8 @@ - AM_LDFLAGS = $(AMANDA_STATIC_LDFLAGS) - LINT = @AMLINT@ - LINTFLAGS = @AMLINTFLAGS@ --amlib_LTLIBRARIES = libamar.la -+@WANT_SERVER_TRUE@amlib_LTLIBRARIES = -+@WANT_CLIENT_TRUE@amlib_LTLIBRARIES = libamar.la - libamar_la_SOURCES = amar.c - libamar_la_LDFLAGS = -release $(VERSION) - libamar_la_LIBADD = ../common-src/libamanda.la diff --git a/misc/amanda32-server/files/patch-changer-src::chg-glue.pl b/misc/amanda32-server/files/patch-changer-src::chg-glue.pl deleted file mode 100644 index 20467d2116fd..000000000000 --- a/misc/amanda32-server/files/patch-changer-src::chg-glue.pl +++ /dev/null @@ -1,10 +0,0 @@ ---- changer-src/chg-glue.pl.orig 2009-01-28 15:06:00.000000000 +0900 -+++ changer-src/chg-glue.pl 2009-01-28 15:06:22.000000000 +0900 -@@ -206,6 +206,7 @@ - finish(); - return; - } -+ chomp($command); - - if (($slot) = ($command =~ /^-slot (.*)$/)) { - do_slot($slot); diff --git a/misc/amanda32-server/files/patch-common-src::Makefile.in b/misc/amanda32-server/files/patch-common-src::Makefile.in deleted file mode 100644 index 9da99a06935e..000000000000 --- a/misc/amanda32-server/files/patch-common-src::Makefile.in +++ /dev/null @@ -1,49 +0,0 @@ ---- common-src/Makefile.in.orig 2009-11-06 05:11:37.000000000 +0900 -+++ common-src/Makefile.in 2009-12-14 10:29:52.479439079 +0900 -@@ -1091,6 +1091,7 @@ - - sbin_SCRIPTS_PERL = \ - $(sbin_CHECK_PERL) -+@WANT_SERVER_TRUE@sbin_SCRIPTS_PERL = - - amlibexec_CHECK_PERL = - amlibexec_SCRIPTS_PERL = \ -@@ -1101,6 +1102,7 @@ - amaespipe \ - amcrypt-ossl \ - amcrypt-ossl-asym -+@WANT_SERVER_TRUE@sbin_SCRIPTS_SHELL = - - amlibexec_SCRIPTS_SHELL = - SCRIPTS_INCLUDE = \ -@@ -1155,18 +1157,18 @@ - versuff.c: $(top_builddir)/config.status $(srcdir)/versuff.c.in - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ - install-amlibLTLIBRARIES: $(amlib_LTLIBRARIES) -- @$(NORMAL_INSTALL) -- test -z "$(amlibdir)" || $(MKDIR_P) "$(DESTDIR)$(amlibdir)" -- @list='$(amlib_LTLIBRARIES)'; test -n "$(amlibdir)" || list=; \ -- list2=; for p in $$list; do \ -- if test -f $$p; then \ -- list2="$$list2 $$p"; \ -- else :; fi; \ -- done; \ -- test -z "$$list2" || { \ -- echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(amlibdir)'"; \ -- $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(amlibdir)"; \ -- } -+@WANT_CLIENT_TRUE@ @$(NORMAL_INSTALL) -+@WANT_CLIENT_TRUE@ test -z "$(amlibdir)" || $(MKDIR_P) "$(DESTDIR)$(amlibdir)" -+@WANT_CLIENT_TRUE@ @list='$(amlib_LTLIBRARIES)'; test -n "$(amlibdir)" || list=; \ -+@WANT_CLIENT_TRUE@ list2=; for p in $$list; do \ -+@WANT_CLIENT_TRUE@ if test -f $$p; then \ -+@WANT_CLIENT_TRUE@ list2="$$list2 $$p"; \ -+@WANT_CLIENT_TRUE@ else :; fi; \ -+@WANT_CLIENT_TRUE@ done; \ -+@WANT_CLIENT_TRUE@ test -z "$$list2" || { \ -+@WANT_CLIENT_TRUE@ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(amlibdir)'"; \ -+@WANT_CLIENT_TRUE@ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(amlibdir)"; \ -+@WANT_CLIENT_TRUE@ } - - uninstall-amlibLTLIBRARIES: - @$(NORMAL_UNINSTALL) diff --git a/misc/amanda32-server/files/patch-common-src::glib-util.c b/misc/amanda32-server/files/patch-common-src::glib-util.c deleted file mode 100644 index c7450c7835eb..000000000000 --- a/misc/amanda32-server/files/patch-common-src::glib-util.c +++ /dev/null @@ -1,51 +0,0 @@ - ---- common-src/glib-util.c.orig 2010-05-20 13:19:58.000000000 -0400 -+++ common-src/glib-util.c 2010-05-20 13:24:40.000000000 -0400 -@@ -38,26 +38,15 @@ - if (did_glib_init) return; - did_glib_init = TRUE; - -- /* Initialize glib's type system */ -- g_type_init(); -- - /* set up libcurl (this must happen before threading - * is initialized) */ - #ifdef HAVE_LIBCURL - # ifdef G_THREADS_ENABLED -- g_assert(!g_thread_supported()); -+ g_assert(!g_thread_supported()); /* assert threads aren't initialized yet */ - # endif - g_assert(curl_global_init(CURL_GLOBAL_ALL) == 0); - #endif - -- /* And set up glib's threads */ --#if defined(G_THREADS_ENABLED) && !defined(G_THREADS_IMPL_NONE) -- if (g_thread_supported()) { -- return; -- } -- g_thread_init(NULL); --#endif -- - /* do a version check */ - #if GLIB_CHECK_VERSION(2,6,0) - { -@@ -71,6 +60,17 @@ - } - } - #endif -+ -+ /* Initialize glib's type system. On glib >= 2.24, this will initialize -+ * threads, so it must be done after curl is initialized. */ -+ g_type_init(); -+ -+ /* And set up glib's threads */ -+#if defined(G_THREADS_ENABLED) && !defined(G_THREADS_IMPL_NONE) -+ if (!g_thread_supported()) -+ g_thread_init(NULL); -+#endif -+ - } - - typedef enum { - - diff --git a/misc/amanda32-server/files/patch-man::Makefile.in b/misc/amanda32-server/files/patch-man::Makefile.in deleted file mode 100644 index daeea0759ce8..000000000000 --- a/misc/amanda32-server/files/patch-man::Makefile.in +++ /dev/null @@ -1,10 +0,0 @@ ---- man/Makefile.in.orig 2009-01-22 22:51:25.000000000 +0900 -+++ man/Makefile.in 2009-01-27 07:27:10.000000000 +0900 -@@ -640,6 +640,7 @@ - amanda-auth.7 \ - amarchiver.8 \ - script-email.8 -+@WANT_SERVER_TRUE@COMMON_MAN_PAGES = - - CLIENT_MAN_PAGES = \ - amanda-applications.7 \ diff --git a/misc/amanda32-server/files/patch-perl::Amanda::Process.pm b/misc/amanda32-server/files/patch-perl::Amanda::Process.pm deleted file mode 100644 index 806659b3f979..000000000000 --- a/misc/amanda32-server/files/patch-perl::Amanda::Process.pm +++ /dev/null @@ -1,11 +0,0 @@ ---- perl/Amanda/Process.pm.orig 2009-01-28 13:57:55.000000000 +0900 -+++ perl/Amanda/Process.pm 2009-01-28 13:58:19.000000000 +0900 -@@ -155,7 +155,7 @@ - $self->{ppid} = (); - my $ps_argument = $Amanda::Constants::PS_ARGUMENT; - if ($ps_argument eq "CYGWIN") { -- open(PSTABLE, "-|", "ps -ef") || die("ps -ef: $!"); -+ open(PSTABLE, "-|", "ps -f") || die("ps -f: $!"); - my $psline = <PSTABLE>; #header line - while($psline = <PSTABLE>) { - chomp $psline; diff --git a/misc/amanda32-server/files/patch-perl::Makefile.in b/misc/amanda32-server/files/patch-perl::Makefile.in deleted file mode 100644 index b32626c1144e..000000000000 --- a/misc/amanda32-server/files/patch-perl::Makefile.in +++ /dev/null @@ -1,195 +0,0 @@ ---- perl/Makefile.in.orig 2009-01-22 22:51:25.000000000 +0900 -+++ perl/Makefile.in 2009-01-27 16:15:23.000000000 +0900 -@@ -316,9 +316,9 @@ - $(libApplication_la_LDFLAGS) $(LDFLAGS) -o $@ - @WANT_CLIENT_TRUE@am_libApplication_la_rpath = -rpath \ - @WANT_CLIENT_TRUE@ $(libApplicationdir) --libArchive_la_DEPENDENCIES = libamglue.la \ -- $(top_builddir)/amar-src/libamar.la \ -- $(top_builddir)/common-src/libamanda.la -+@WANT_CLIENT_TRUE@libArchive_la_DEPENDENCIES = libamglue.la \ -+@WANT_CLIENT_TRUE@ $(top_builddir)/amar-src/libamar.la \ -+@WANT_CLIENT_TRUE@ $(top_builddir)/common-src/libamanda.la - am_libArchive_la_OBJECTS = Archive.lo $(am__objects_1) - libArchive_la_OBJECTS = $(am_libArchive_la_OBJECTS) - libArchive_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ -@@ -337,15 +337,15 @@ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(libCmdline_la_LDFLAGS) $(LDFLAGS) -o $@ - @WANT_SERVER_TRUE@am_libCmdline_la_rpath = -rpath $(libCmdlinedir) --libConfig_la_DEPENDENCIES = libamglue.la \ -- $(top_builddir)/common-src/libamanda.la -+@WANT_CLIENT_TRUE@libConfig_la_DEPENDENCIES = libamglue.la \ -+@WANT_CLIENT_TRUE@ $(top_builddir)/common-src/libamanda.la - am_libConfig_la_OBJECTS = Config.lo $(am__objects_1) - libConfig_la_OBJECTS = $(am_libConfig_la_OBJECTS) - libConfig_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(libConfig_la_LDFLAGS) $(LDFLAGS) -o $@ --libDebug_la_DEPENDENCIES = libamglue.la \ -- $(top_builddir)/common-src/libamanda.la -+@WANT_CLIENT_TRUE@libDebug_la_DEPENDENCIES = libamglue.la \ -+@WANT_CLIENT_TRUE@ $(top_builddir)/common-src/libamanda.la - am_libDebug_la_OBJECTS = Debug.lo $(am__objects_1) - libDebug_la_OBJECTS = $(am_libDebug_la_OBJECTS) - libDebug_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ -@@ -376,8 +376,8 @@ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(libLogfile_la_LDFLAGS) $(LDFLAGS) -o $@ - @WANT_SERVER_TRUE@am_libLogfile_la_rpath = -rpath $(libLogfiledir) --libMainLoop_la_DEPENDENCIES = libamglue.la \ -- $(top_builddir)/common-src/libamanda.la -+@WANT_CLIENT_TRUE@libMainLoop_la_DEPENDENCIES = libamglue.la \ -+@WANT_CLIENT_TRUE@ $(top_builddir)/common-src/libamanda.la - am_libMainLoop_la_OBJECTS = MainLoop.lo $(am__objects_1) - libMainLoop_la_OBJECTS = $(am_libMainLoop_la_OBJECTS) - libMainLoop_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ -@@ -396,23 +396,23 @@ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(libTapelist_la_LDFLAGS) $(LDFLAGS) -o $@ - @WANT_SERVER_TRUE@am_libTapelist_la_rpath = -rpath $(libTapelistdir) --libTests_la_DEPENDENCIES = libamglue.la \ -- $(top_builddir)/common-src/libamanda.la -+@WANT_CLIENT_TRUE@libTests_la_DEPENDENCIES = libamglue.la \ -+@WANT_CLIENT_TRUE@ $(top_builddir)/common-src/libamanda.la - am_libTests_la_OBJECTS = Tests.lo $(am__objects_1) - libTests_la_OBJECTS = $(am_libTests_la_OBJECTS) - libTests_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(libTests_la_LDFLAGS) $(LDFLAGS) -o $@ --libTypes_la_DEPENDENCIES = libamglue.la \ -- $(top_builddir)/common-src/libamanda.la -+@WANT_CLIENT_TRUE@libTypes_la_DEPENDENCIES = libamglue.la \ -+@WANT_CLIENT_TRUE@ $(top_builddir)/common-src/libamanda.la - am_libTypes_la_OBJECTS = Types.lo $(am__objects_1) - libTypes_la_OBJECTS = $(am_libTypes_la_OBJECTS) - libTypes_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(libTypes_la_LDFLAGS) $(LDFLAGS) -o $@ --libUtil_la_DEPENDENCIES = libamglue.la \ -- $(top_builddir)/common-src/libamanda.la --am_libUtil_la_OBJECTS = Util.lo $(am__objects_1) -+@WANT_CLIENT_TRUE@libUtil_la_DEPENDENCIES = libamglue.la \ -+@WANT_CLIENT_TRUE@ $(top_builddir)/common-src/libamanda.la -+@WANT_CLIENT_TRUE@am_libUtil_la_OBJECTS = Util.lo $(am__objects_1) - libUtil_la_OBJECTS = $(am_libUtil_la_OBJECTS) - libUtil_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ -@@ -984,7 +984,8 @@ - $(am__append_2) $(am__append_3) $(am__append_4) - - # (amplot has a conditional, but doesn't have any header files) --amlib_LTLIBRARIES = libamglue.la -+@WANT_SERVER_TRUE@amlib_LTLIBRARIES = -+@WANT_CLIENT_TRUE@amlib_LTLIBRARIES = libamglue.la - libamglue_la_SOURCES = \ - amglue/ghashtable.c \ - amglue/bigint.c \ -@@ -1042,10 +1043,11 @@ - Amanda/Types.pm Amanda/Tests.pm Amanda/MainLoop.pm \ - Amanda/Paths.pm Amanda/Constants.pm Amanda/Script_App.pm \ - $(am__append_8) Amanda/Script.pm -+@WANT_SERVER_TRUE@Amanda_DATA = $(am__append_5) - - # PACKAGE: Amanda::Archive --libArchivedir = $(amperldir)/auto/Amanda/Archive --libArchive_LTLIBRARIES = libArchive.la -+@WANT_CLIENT_TRUE@libArchivedir = $(amperldir)/auto/Amanda/Archive -+@WANT_CLIENT_TRUE@libArchive_LTLIBRARIES = libArchive.la - libArchive_la_SOURCES = Amanda/Archive.c $(AMGLUE_SWG) - libArchive_la_LDFLAGS = $(PERL_EXT_LDFLAGS) - libArchive_la_LIBADD = libamglue.la \ -@@ -1118,57 +1120,57 @@ - - - # PACKAGE: Amanda::Debug --libDebugdir = $(amperldir)/auto/Amanda/Debug --libDebug_LTLIBRARIES = libDebug.la --libDebug_la_SOURCES = Amanda/Debug.c $(AMGLUE_SWG) --libDebug_la_LDFLAGS = $(PERL_EXT_LDFLAGS) --libDebug_la_LIBADD = libamglue.la \ -- $(top_builddir)/common-src/libamanda.la -+@WANT_CLIENT_TRUE@libDebugdir = $(amperldir)/auto/Amanda/Debug -+@WANT_CLIENT_TRUE@libDebug_LTLIBRARIES = libDebug.la -+@WANT_CLIENT_TRUE@libDebug_la_SOURCES = Amanda/Debug.c $(AMGLUE_SWG) -+@WANT_CLIENT_TRUE@libDebug_la_LDFLAGS = $(PERL_EXT_LDFLAGS) -+@WANT_CLIENT_TRUE@libDebug_la_LIBADD = libamglue.la \ -+@WANT_CLIENT_TRUE@ $(top_builddir)/common-src/libamanda.la - - - # PACKAGE: Amanda::Config --libConfigdir = $(amperldir)/auto/Amanda/Config --libConfig_LTLIBRARIES = libConfig.la --libConfig_la_SOURCES = Amanda/Config.c $(AMGLUE_SWG) --libConfig_la_LDFLAGS = $(PERL_EXT_LDFLAGS) --libConfig_la_LIBADD = libamglue.la \ -- $(top_builddir)/common-src/libamanda.la -+@WANT_CLIENT_TRUE@libConfigdir = $(amperldir)/auto/Amanda/Config -+@WANT_CLIENT_TRUE@libConfig_LTLIBRARIES = libConfig.la -+@WANT_CLIENT_TRUE@libConfig_la_SOURCES = Amanda/Config.c $(AMGLUE_SWG) -+@WANT_CLIENT_TRUE@libConfig_la_LDFLAGS = $(PERL_EXT_LDFLAGS) -+@WANT_CLIENT_TRUE@libConfig_la_LIBADD = libamglue.la \ -+@WANT_CLIENT_TRUE@ $(top_builddir)/common-src/libamanda.la - - - # PACKAGE: Amanda::Util --libUtildir = $(amperldir)/auto/Amanda/Util --libUtil_LTLIBRARIES = libUtil.la --libUtil_la_SOURCES = Amanda/Util.c $(AMGLUE_SWG) --libUtil_la_LDFLAGS = $(PERL_EXT_LDFLAGS) --libUtil_la_LIBADD = libamglue.la \ -- $(top_builddir)/common-src/libamanda.la -+@WANT_CLIENT_TRUE@libUtildir = $(amperldir)/auto/Amanda/Util -+@WANT_CLIENT_TRUE@libUtil_LTLIBRARIES = libUtil.la -+@WANT_CLIENT_TRUE@libUtil_la_SOURCES = Amanda/Util.c $(AMGLUE_SWG) -+@WANT_CLIENT_TRUE@libUtil_la_LDFLAGS = $(PERL_EXT_LDFLAGS) -+@WANT_CLIENT_TRUE@libUtil_la_LIBADD = libamglue.la \ -+@WANT_CLIENT_TRUE@ $(top_builddir)/common-src/libamanda.la - - - # PACKAGE: Amanda::Types --libTypesdir = $(amperldir)/auto/Amanda/Types --libTypes_LTLIBRARIES = libTypes.la --libTypes_la_SOURCES = Amanda/Types.c $(AMGLUE_SWG) --libTypes_la_LDFLAGS = $(PERL_EXT_LDFLAGS) --libTypes_la_LIBADD = libamglue.la \ -- $(top_builddir)/common-src/libamanda.la -+@WANT_CLIENT_TRUE@libTypesdir = $(amperldir)/auto/Amanda/Types -+@WANT_CLIENT_TRUE@libTypes_LTLIBRARIES = libTypes.la -+@WANT_CLIENT_TRUE@libTypes_la_SOURCES = Amanda/Types.c $(AMGLUE_SWG) -+@WANT_CLIENT_TRUE@libTypes_la_LDFLAGS = $(PERL_EXT_LDFLAGS) -+@WANT_CLIENT_TRUE@libTypes_la_LIBADD = libamglue.la \ -+@WANT_CLIENT_TRUE@ $(top_builddir)/common-src/libamanda.la - - - # PACKAGE: Amanda::Tests --libTestsdir = $(amperldir)/auto/Amanda/Tests --libTests_LTLIBRARIES = libTests.la --libTests_la_SOURCES = Amanda/Tests.c $(AMGLUE_SWG) --libTests_la_LDFLAGS = $(PERL_EXT_LDFLAGS) --libTests_la_LIBADD = libamglue.la \ -- $(top_builddir)/common-src/libamanda.la -+@WANT_CLIENT_TRUE@libTestsdir = $(amperldir)/auto/Amanda/Tests -+@WANT_CLIENT_TRUE@libTests_LTLIBRARIES = libTests.la -+@WANT_CLIENT_TRUE@libTests_la_SOURCES = Amanda/Tests.c $(AMGLUE_SWG) -+@WANT_CLIENT_TRUE@libTests_la_LDFLAGS = $(PERL_EXT_LDFLAGS) -+@WANT_CLIENT_TRUE@libTests_la_LIBADD = libamglue.la \ -+@WANT_CLIENT_TRUE@ $(top_builddir)/common-src/libamanda.la - - - # PACKAGE: Amanda::MainLoop --libMainLoopdir = $(amperldir)/auto/Amanda/MainLoop --libMainLoop_LTLIBRARIES = libMainLoop.la --libMainLoop_la_SOURCES = Amanda/MainLoop.c $(AMGLUE_SWG) --libMainLoop_la_LDFLAGS = $(PERL_EXT_LDFLAGS) --libMainLoop_la_LIBADD = libamglue.la \ -- $(top_builddir)/common-src/libamanda.la -+@WANT_CLIENT_TRUE@libMainLoopdir = $(amperldir)/auto/Amanda/MainLoop -+@WANT_CLIENT_TRUE@libMainLoop_LTLIBRARIES = libMainLoop.la -+@WANT_CLIENT_TRUE@libMainLoop_la_SOURCES = Amanda/MainLoop.c $(AMGLUE_SWG) -+@WANT_CLIENT_TRUE@libMainLoop_la_LDFLAGS = $(PERL_EXT_LDFLAGS) -+@WANT_CLIENT_TRUE@libMainLoop_la_LIBADD = libamglue.la \ -+@WANT_CLIENT_TRUE@ $(top_builddir)/common-src/libamanda.la - - - # PACKAGE: Amanda::Application diff --git a/misc/amanda32-server/files/patch-server-src::amcleanup.pl b/misc/amanda32-server/files/patch-server-src::amcleanup.pl deleted file mode 100644 index fbd45ccbea63..000000000000 --- a/misc/amanda32-server/files/patch-server-src::amcleanup.pl +++ /dev/null @@ -1,11 +0,0 @@ ---- server-src/amcleanup.pl.orig 2009-01-28 13:57:21.000000000 +0900 -+++ server-src/amcleanup.pl 2009-01-28 13:57:33.000000000 +0900 -@@ -94,7 +94,7 @@ - } elsif (!$process_alive) { - #check amdump/amflush process - foreach my $pname ("amdump", "amflush") { -- my $pid = `ps -ef|grep -w ${pname}|grep -w ${config_name}| grep -v grep | awk '{print \$2}'`; -+ my $pid = `ps -f|grep -w ${pname}|grep -w ${config_name}| grep -v grep | awk '{print \$2}'`; - chomp $pid; - if ($pid ne "") { - $Amanda_process->set_master($pname, $pid); diff --git a/misc/amanda32-server/pkg-descr b/misc/amanda32-server/pkg-descr deleted file mode 100644 index 054161f6aeb2..000000000000 --- a/misc/amanda32-server/pkg-descr +++ /dev/null @@ -1,22 +0,0 @@ -WHAT IS AMANDA? ---------------- - -This is a release of Amanda, the Advanced Maryland Automatic -Network Disk Archiver. Amanda is a backup system designed to archive many -computers on a network to a single large-capacity tape drive. - -Here are some features of Amanda: - - * written in C, freely distributable. - * built on top of standard backup software: Unix dump/restore, and - later GNU Tar and others. - * will back up multiple machines in parallel to a holding disk, blasting - finished dumps one by one to tape as fast as we can write files to - tape. For example, a ~2 Gb 8mm tape on a ~240K/s interface to a host - with a large holding disk can be filled by Amanda in under 4 hours. - * does simple tape management: will not overwrite the wrong tape. - -WWW: http://sourceforge.net/projects/amanda/ - -- Jim -jeh@FreeBSD.org diff --git a/misc/amanda32-server/pkg-plist b/misc/amanda32-server/pkg-plist deleted file mode 100644 index 655238c1d854..000000000000 --- a/misc/amanda32-server/pkg-plist +++ /dev/null @@ -1,104 +0,0 @@ -lib/amanda/libamdevice-%%SHLIBVER%%.so -lib/amanda/libamdevice.a -lib/amanda/libamdevice.la -lib/amanda/libamdevice.so -lib/amanda/libamserver-%%SHLIBVER%%.so -lib/amanda/libamserver.a -lib/amanda/libamserver.la -lib/amanda/libamserver.so -lib/amanda/libamxfer-%%SHLIBVER%%.so -lib/amanda/libamxfer.a -lib/amanda/libamxfer.la -lib/amanda/libamxfer.so -lib/amanda/librestore-%%SHLIBVER%%.so -lib/amanda/librestore.a -lib/amanda/librestore.la -lib/amanda/librestore.so -%%SITE_PERL%%/Amanda/Changer.pm -%%SITE_PERL%%/Amanda/Changer/compat.pm -%%SITE_PERL%%/Amanda/Changer/disk.pm -%%SITE_PERL%%/Amanda/Changer/single.pm -%%SITE_PERL%%/Amanda/Cmdline.pm -%%SITE_PERL%%/Amanda/DB/Catalog.pm -%%SITE_PERL%%/Amanda/Device.pm -%%SITE_PERL%%/Amanda/Logfile.pm -%%SITE_PERL%%/Amanda/Process.pm -%%SITE_PERL%%/Amanda/Tapelist.pm -%%SITE_PERL%%/Amanda/Xfer.pm -%%SITE_PERL%%/auto/Amanda/Cmdline/libCmdline.a -%%SITE_PERL%%/auto/Amanda/Cmdline/libCmdline.la -%%SITE_PERL%%/auto/Amanda/Cmdline/libCmdline.so -%%SITE_PERL%%/auto/Amanda/Device/libDevice.a -%%SITE_PERL%%/auto/Amanda/Device/libDevice.la -%%SITE_PERL%%/auto/Amanda/Device/libDevice.so -%%SITE_PERL%%/auto/Amanda/Logfile/libLogfile.a -%%SITE_PERL%%/auto/Amanda/Logfile/libLogfile.la -%%SITE_PERL%%/auto/Amanda/Logfile/libLogfile.so -%%SITE_PERL%%/auto/Amanda/Tapelist/libTapelist.a -%%SITE_PERL%%/auto/Amanda/Tapelist/libTapelist.la -%%SITE_PERL%%/auto/Amanda/Tapelist/libTapelist.so -%%SITE_PERL%%/auto/Amanda/Xfer/libXfer.a -%%SITE_PERL%%/auto/Amanda/Xfer/libXfer.la -%%SITE_PERL%%/auto/Amanda/Xfer/libXfer.so -%%PLOT%%libexec/amanda/amcat.awk -libexec/amanda/amcleanupdisk -libexec/amanda/amindexd -libexec/amanda/amlogroll -%%PLOT%%libexec/amanda/amplot.awk -%%PLOT%%libexec/amanda/amplot.g -%%PLOT%%libexec/amanda/amplot.gp -libexec/amanda/amtrmidx -libexec/amanda/amtrmlog -libexec/amanda/chg-chio -libexec/amanda/chg-chs -libexec/amanda/chg-disk -libexec/amanda/chg-glue -libexec/amanda/chg-iomega -libexec/amanda/chg-juke -libexec/amanda/chg-lib.sh -libexec/amanda/chg-manual -libexec/amanda/chg-mcutil -libexec/amanda/chg-mtx -libexec/amanda/chg-multi -libexec/amanda/chg-null -libexec/amanda/chg-rait -libexec/amanda/chg-rth -libexec/amanda/chg-zd-mtx -libexec/amanda/chunker -libexec/amanda/amidxtaped -libexec/amanda/driver -libexec/amanda/dumper -libexec/amanda/planner -libexec/amanda/taper -%%S3DEVICE%%sbin/activate-devpay -sbin/amaddclient -sbin/amadmin -sbin/amcheck -sbin/amcheckdb -sbin/amcheckdump -sbin/amcleanup -sbin/amdevcheck -sbin/amdump -sbin/amfetchdump -sbin/amflush -sbin/amlabel -sbin/amoverview -%%PLOT%%sbin/amplot -sbin/amreport -sbin/amrestore -sbin/amrmtape -sbin/amserverconfig -sbin/amservice -sbin/amstatus -sbin/amtape -sbin/amtapetype -sbin/amtoc -sbin/amvault -@dirrm %%SITE_PERL%%/auto/Amanda/Cmdline -@dirrm %%SITE_PERL%%/auto/Amanda/Device -@dirrm %%SITE_PERL%%/auto/Amanda/Logfile -@dirrm %%SITE_PERL%%/auto/Amanda/Tapelist -@dirrm %%SITE_PERL%%/auto/Amanda/Xfer -@dirrm %%SITE_PERL%%/Amanda/DB -@dirrm %%SITE_PERL%%/Amanda/Changer -@dirrm include/amanda diff --git a/misc/amanda32-server/pkg-plist.client b/misc/amanda32-server/pkg-plist.client deleted file mode 100644 index 428adc9b1350..000000000000 --- a/misc/amanda32-server/pkg-plist.client +++ /dev/null @@ -1,136 +0,0 @@ -lib/amanda/libamanda-%%SHLIBVER%%.so -lib/amanda/libamanda.a -lib/amanda/libamanda.la -lib/amanda/libamanda.so -lib/amanda/libamandad-%%SHLIBVER%%.so -lib/amanda/libamandad.a -lib/amanda/libamandad.la -lib/amanda/libamandad.so -lib/amanda/libamar-%%SHLIBVER%%.so -lib/amanda/libamar.a -lib/amanda/libamar.la -lib/amanda/libamar.so -lib/amanda/libamclient-%%SHLIBVER%%.so -lib/amanda/libamclient.a -lib/amanda/libamclient.la -lib/amanda/libamclient.so -lib/amanda/libamglue.a -lib/amanda/libamglue.la -lib/amanda/libamglue.so -libexec/amanda/amanda-sh-lib.sh -libexec/amanda/amandad -libexec/amanda/application/amgtar -libexec/amanda/application/amgtar_perl -libexec/amanda/application/amlog-script -libexec/amanda/application/amsamba -libexec/amanda/application/amstar -libexec/amanda/application/amzfs-sendrecv -libexec/amanda/application/amzfs-snapshot -libexec/amanda/application/script-email -libexec/amanda/calcsize -libexec/amanda/killpgrp -libexec/amanda/noop -libexec/amanda/patch-system -libexec/amanda/rundump -libexec/amanda/runtar -libexec/amanda/selfcheck -libexec/amanda/sendbackup -libexec/amanda/sendsize -libexec/amanda/teecount -libexec/amanda/versionsuffix -%%SITE_PERL%%/Amanda/Application.pm -%%SITE_PERL%%/Amanda/Application/Zfs.pm -%%SITE_PERL%%/Amanda/Archive.pm -%%SITE_PERL%%/Amanda/BigIntCompat.pm -%%SITE_PERL%%/Amanda/Config.pm -%%SITE_PERL%%/Amanda/Constants.pm -%%SITE_PERL%%/Amanda/Debug.pm -%%SITE_PERL%%/Amanda/MainLoop.pm -%%SITE_PERL%%/Amanda/Paths.pm -%%SITE_PERL%%/Amanda/Script.pm -%%SITE_PERL%%/Amanda/Script_App.pm -%%SITE_PERL%%/Amanda/Tests.pm -%%SITE_PERL%%/Amanda/Types.pm -%%SITE_PERL%%/Amanda/Util.pm -%%SITE_PERL%%/auto/Amanda/Application/libApplication.a -%%SITE_PERL%%/auto/Amanda/Application/libApplication.la -%%SITE_PERL%%/auto/Amanda/Application/libApplication.so -%%SITE_PERL%%/auto/Amanda/Archive/libArchive.a -%%SITE_PERL%%/auto/Amanda/Archive/libArchive.la -%%SITE_PERL%%/auto/Amanda/Archive/libArchive.so -%%SITE_PERL%%/auto/Amanda/Config/libConfig.a -%%SITE_PERL%%/auto/Amanda/Config/libConfig.la -%%SITE_PERL%%/auto/Amanda/Config/libConfig.so -%%SITE_PERL%%/auto/Amanda/Debug/libDebug.a -%%SITE_PERL%%/auto/Amanda/Debug/libDebug.la -%%SITE_PERL%%/auto/Amanda/Debug/libDebug.so -%%SITE_PERL%%/auto/Amanda/MainLoop/libMainLoop.a -%%SITE_PERL%%/auto/Amanda/MainLoop/libMainLoop.la -%%SITE_PERL%%/auto/Amanda/MainLoop/libMainLoop.so -%%SITE_PERL%%/auto/Amanda/Tests/libTests.a -%%SITE_PERL%%/auto/Amanda/Tests/libTests.la -%%SITE_PERL%%/auto/Amanda/Tests/libTests.so -%%SITE_PERL%%/auto/Amanda/Types/libTypes.a -%%SITE_PERL%%/auto/Amanda/Types/libTypes.la -%%SITE_PERL%%/auto/Amanda/Types/libTypes.so -%%SITE_PERL%%/auto/Amanda/Util/libUtil.a -%%SITE_PERL%%/auto/Amanda/Util/libUtil.la -%%SITE_PERL%%/auto/Amanda/Util/libUtil.so -sbin/amaespipe -sbin/amarchiver -sbin/amcrypt -sbin/amcrypt-ossl -sbin/amcrypt-ossl-asym -sbin/amcryptsimple -sbin/amgetconf -sbin/amgpgcrypt -sbin/amoldrecover -sbin/amrecover -%%DATADIR%%/COPYRIGHT -%%DATADIR%%/ChangeLog -%%DATADIR%%/NEWS -%%DATADIR%%/ReleaseNotes -%%PORTDOCS%%%%EXAMPLESDIR%%/disklist -%%PORTDOCS%%%%EXAMPLESDIR%%/chg-scsi.conf -%%PORTDOCS%%%%EXAMPLESDIR%%/chg-multi.conf -%%DATADIR%%/example/amanda.conf -%%DATADIR%%/example/amanda-client.conf -%%DATADIR%%/example/inetd.conf.amandaclient -%%DATADIR%%/example/inetd.conf.amandaserver -%%DATADIR%%/example/label-templates/3hole.ps -%%DATADIR%%/example/label-templates/8.5x11.ps -%%DATADIR%%/example/label-templates/DIN-A4.ps -%%DATADIR%%/example/label-templates/DLT-A4.ps -%%DATADIR%%/example/label-templates/DLT.ps -%%DATADIR%%/example/label-templates/EXB-8500.ps -%%DATADIR%%/example/label-templates/HP-DAT.ps -%%DATADIR%%/example/xinetd.amandaclient -%%DATADIR%%/example/xinetd.amandaserver -%%DATADIR%%/template.d/advanced.conf -%%DATADIR%%/template.d/amanda-harddisk.conf -%%DATADIR%%/template.d/amanda-single-tape.conf -%%DATADIR%%/template.d/amanda-tape-changer.conf -%%DATADIR%%/template.d/amanda-S3.conf -%%DATADIR%%/template.d/dumptypes -%%DATADIR%%/template.d/tapetypes -%%DATADIR%%/template.d/README -%%DATADIR%%/template.d/chg-manual.conf -@dirrm %%SITE_PERL%%/auto/Amanda/Util -@dirrm %%SITE_PERL%%/auto/Amanda/Types -@dirrm %%SITE_PERL%%/auto/Amanda/Tests -@dirrm %%SITE_PERL%%/auto/Amanda/MainLoop -@dirrm %%SITE_PERL%%/auto/Amanda/Debug -@dirrm %%SITE_PERL%%/auto/Amanda/Config -@dirrm %%SITE_PERL%%/auto/Amanda/Archive -@dirrm %%SITE_PERL%%/auto/Amanda/Application -@dirrm %%SITE_PERL%%/auto/Amanda -@dirrm %%SITE_PERL%%/Amanda/Application -@dirrm %%SITE_PERL%%/Amanda -@dirrm %%DATADIR%%/template.d -@dirrm %%DATADIR%%/example/label-templates -@dirrm %%DATADIR%%/example -@dirrm %%DATADIR%% -@dirrm libexec/amanda/application -@dirrm libexec/amanda -@dirrm lib/amanda -%%PORTDOCS%%@dirrm %%EXAMPLESDIR%% diff --git a/misc/compat8x/Makefile b/misc/compat8x/Makefile deleted file mode 100644 index cdbeaa6fdcbb..000000000000 --- a/misc/compat8x/Makefile +++ /dev/null @@ -1,51 +0,0 @@ -# New ports collection makefile for: compat7x -# Date created: 18 Aug 2009 -# Whom: garga -# -# $FreeBSD$ -# - -PORTNAME= compat7x -PORTVERSION= 7.2.702000.200906.1 -CATEGORIES= misc -MASTER_SITES= ${MASTER_SITE_LOCAL} -MASTER_SITE_SUBDIR= garga/compat -PKGNAMESUFFIX= -${ARCH} -DISTNAME= ${PORTNAME}-${ARCH}-${PORTVERSION} - -MAINTAINER= garga@FreeBSD.org -COMMENT= A convenience package to install the compat7x libraries - -USE_BZIP2= yes -NO_BUILD= yes -ONLY_FOR_ARCHS= i386 amd64 sparc64 -PLIST= ${PKGDIR}/pkg-plist.${ARCH} -TARGET_DIR= ${PREFIX}/lib/compat -TARGET32_DIR= ${PREFIX}/lib32/compat -USE_LDCONFIG= ${TARGET_DIR} - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} < 800105 -IGNORE= is for FreeBSD 8.x and newer -.endif - -.if ${ARCH} == amd64 -PLIST_SUB+= LDCONFIG_LIB32="${LDCONFIG} -32" -USE_LDCONFIG32= ${TARGET32_DIR} -.endif - -do-install: - @${MKDIR} ${TARGET_DIR} - (cd ${WRKSRC}/lib && ${INSTALL_DATA} *.so.* ${TARGET_DIR}) - (cd ${TARGET_DIR} && ${LN} -sf /lib/libthr.so.3 libkse.so.3) -.if ${ARCH} == amd64 - @${MKDIR} ${TARGET32_DIR} - (cd ${TARGET32_DIR} && ${LN} -sf /usr/lib32/libthr.so.3 libkse.so.3) - (cd ${WRKSRC}/lib32 && ${INSTALL_DATA} *.so.* ${TARGET32_DIR}) -.endif - -post-install: - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/misc/compat8x/distinfo b/misc/compat8x/distinfo deleted file mode 100644 index f5a95a6b40cb..000000000000 --- a/misc/compat8x/distinfo +++ /dev/null @@ -1,9 +0,0 @@ -MD5 (compat7x-amd64-7.2.702000.200906.1.tar.bz2) = 690c724a365d4d3e054c6e71b9e51663 -SHA256 (compat7x-amd64-7.2.702000.200906.1.tar.bz2) = 1e7ffc96a9256bd57eabbe03d37f87a752725419fb25c084865f6b3a624a83c5 -SIZE (compat7x-amd64-7.2.702000.200906.1.tar.bz2) = 6637905 -MD5 (compat7x-i386-7.2.702000.200906.1.tar.bz2) = 4ecfe9505ff082a1d65afde6a42ba48d -SHA256 (compat7x-i386-7.2.702000.200906.1.tar.bz2) = 8983a89c2ba38e573ad1858f6b2b3fa072cb899b9a586834a2962d9df4098e7e -SIZE (compat7x-i386-7.2.702000.200906.1.tar.bz2) = 3280951 -MD5 (compat7x-sparc64-7.2.702000.200906.1.tar.bz2) = 21c961319013520510fb017136a94960 -SHA256 (compat7x-sparc64-7.2.702000.200906.1.tar.bz2) = 4043c9ce3301de18a3110143f6056d63216917d4f93b1ad6675de87bd5f43067 -SIZE (compat7x-sparc64-7.2.702000.200906.1.tar.bz2) = 3068353 diff --git a/misc/compat8x/pkg-descr b/misc/compat8x/pkg-descr deleted file mode 100644 index c618eca5c087..000000000000 --- a/misc/compat8x/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -This package allows you to install the compat7x libraries on your -system, so you can use legacy binaries that depend on them. - -Ports usage example: - --- -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 800105 -LIB_DEPENDS+= alias.6:${PORTSDIR}/misc/compat7x -.endif --- diff --git a/misc/compat8x/pkg-message b/misc/compat8x/pkg-message deleted file mode 100644 index 36093bb801ea..000000000000 --- a/misc/compat8x/pkg-message +++ /dev/null @@ -1,9 +0,0 @@ -******************************************************************************* -* * -* Do not forget to add COMPAT_FREEBSD7 into * -* your kernel configuration (enabled by default). * -* * -* To configure and recompile your kernel see: * -* http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.html * -* * -******************************************************************************* diff --git a/misc/compat8x/pkg-plist.amd64 b/misc/compat8x/pkg-plist.amd64 deleted file mode 100644 index db45390a7bf3..000000000000 --- a/misc/compat8x/pkg-plist.amd64 +++ /dev/null @@ -1,228 +0,0 @@ -lib/compat/libalias.so.6 -lib/compat/libarchive.so.4 -lib/compat/libasn1.so.9 -lib/compat/libavl.so.1 -lib/compat/libbegemot.so.3 -lib/compat/libbluetooth.so.3 -lib/compat/libbsdxml.so.3 -lib/compat/libbsm.so.2 -lib/compat/libbsnmp.so.4 -lib/compat/libbz2.so.3 -lib/compat/libcalendar.so.4 -lib/compat/libcam.so.4 -lib/compat/libcom_err.so.4 -lib/compat/libcrypt.so.4 -lib/compat/libcrypto.so.5 -lib/compat/libctf.so.1 -lib/compat/libdevinfo.so.4 -lib/compat/libdevstat.so.6 -lib/compat/libdialog.so.6 -lib/compat/libdtrace.so.1 -lib/compat/libdwarf.so.1 -lib/compat/libedit.so.6 -lib/compat/libfetch.so.5 -lib/compat/libform.so.4 -lib/compat/libformw.so.4 -lib/compat/libftpio.so.7 -lib/compat/libgeom.so.4 -lib/compat/libgnuregex.so.4 -lib/compat/libgpib.so.2 -lib/compat/libgssapi.so.9 -lib/compat/libgssapi_krb5.so.9 -lib/compat/libhdb.so.9 -lib/compat/libhistory.so.7 -lib/compat/libipsec.so.3 -lib/compat/libipx.so.4 -lib/compat/libkadm5clnt.so.9 -lib/compat/libkadm5srv.so.9 -lib/compat/libkafs5.so.9 -lib/compat/libkiconv.so.3 -lib/compat/libkrb5.so.9 -lib/compat/libkse.so.3 -lib/compat/libkvm.so.4 -lib/compat/liblwres.so.30 -lib/compat/libmagic.so.3 -lib/compat/libmd.so.4 -lib/compat/libmemstat.so.2 -lib/compat/libmenu.so.4 -lib/compat/libmenuw.so.4 -lib/compat/libmilter.so.4 -lib/compat/libmp.so.6 -lib/compat/libncp.so.3 -lib/compat/libncurses.so.7 -lib/compat/libncursesw.so.7 -lib/compat/libnetgraph.so.3 -lib/compat/libngatm.so.3 -lib/compat/libnvpair.so.1 -lib/compat/libobjc.so.3 -lib/compat/libopie.so.5 -lib/compat/libpam.so.4 -lib/compat/libpanel.so.4 -lib/compat/libpanelw.so.4 -lib/compat/libpcap.so.5 -lib/compat/libpmc.so.4 -lib/compat/libproc.so.1 -lib/compat/libradius.so.3 -lib/compat/libreadline.so.7 -lib/compat/libroken.so.9 -lib/compat/librpcsvc.so.4 -lib/compat/libsbuf.so.4 -lib/compat/libsdp.so.3 -lib/compat/libsmb.so.3 -lib/compat/libssh.so.4 -lib/compat/libssl.so.5 -lib/compat/libtacplus.so.3 -lib/compat/libufs.so.4 -lib/compat/libugidfw.so.3 -lib/compat/libumem.so.1 -lib/compat/libusbhid.so.3 -lib/compat/libutil.so.7 -lib/compat/libuutil.so.1 -lib/compat/libwrap.so.5 -lib/compat/libypclnt.so.3 -lib/compat/libz.so.4 -lib/compat/libzfs.so.1 -lib/compat/libzpool.so.1 -lib/compat/pam_chroot.so.4 -lib/compat/pam_deny.so.4 -lib/compat/pam_echo.so.4 -lib/compat/pam_exec.so.4 -lib/compat/pam_ftpusers.so.4 -lib/compat/pam_group.so.4 -lib/compat/pam_guest.so.4 -lib/compat/pam_krb5.so.4 -lib/compat/pam_ksu.so.4 -lib/compat/pam_lastlog.so.4 -lib/compat/pam_login_access.so.4 -lib/compat/pam_nologin.so.4 -lib/compat/pam_opie.so.4 -lib/compat/pam_opieaccess.so.4 -lib/compat/pam_passwdqc.so.4 -lib/compat/pam_permit.so.4 -lib/compat/pam_radius.so.4 -lib/compat/pam_rhosts.so.4 -lib/compat/pam_rootok.so.4 -lib/compat/pam_securetty.so.4 -lib/compat/pam_self.so.4 -lib/compat/pam_ssh.so.4 -lib/compat/pam_tacplus.so.4 -lib/compat/pam_unix.so.4 -lib/compat/snmp_atm.so.5 -lib/compat/snmp_bridge.so.5 -lib/compat/snmp_hostres.so.5 -lib/compat/snmp_mibII.so.5 -lib/compat/snmp_netgraph.so.5 -lib/compat/snmp_pf.so.5 -lib32/compat/libalias.so.6 -lib32/compat/libarchive.so.4 -lib32/compat/libasn1.so.9 -lib32/compat/libavl.so.1 -lib32/compat/libbegemot.so.3 -lib32/compat/libbluetooth.so.3 -lib32/compat/libbsdxml.so.3 -lib32/compat/libbsm.so.2 -lib32/compat/libbsnmp.so.4 -lib32/compat/libbz2.so.3 -lib32/compat/libcalendar.so.4 -lib32/compat/libcam.so.4 -lib32/compat/libcom_err.so.4 -lib32/compat/libcrypt.so.4 -lib32/compat/libcrypto.so.5 -lib32/compat/libctf.so.1 -lib32/compat/libdevinfo.so.4 -lib32/compat/libdevstat.so.6 -lib32/compat/libdialog.so.6 -lib32/compat/libdtrace.so.1 -lib32/compat/libdwarf.so.1 -lib32/compat/libedit.so.6 -lib32/compat/libfetch.so.5 -lib32/compat/libform.so.4 -lib32/compat/libformw.so.4 -lib32/compat/libftpio.so.7 -lib32/compat/libgeom.so.4 -lib32/compat/libgnuregex.so.4 -lib32/compat/libgpib.so.2 -lib32/compat/libgssapi.so.9 -lib32/compat/libgssapi_krb5.so.9 -lib32/compat/libhdb.so.9 -lib32/compat/libhistory.so.7 -lib32/compat/libipsec.so.3 -lib32/compat/libipx.so.4 -lib32/compat/libkadm5clnt.so.9 -lib32/compat/libkadm5srv.so.9 -lib32/compat/libkafs5.so.9 -lib32/compat/libkiconv.so.3 -lib32/compat/libkrb5.so.9 -lib32/compat/libkse.so.3 -lib32/compat/libkvm.so.4 -lib32/compat/libmagic.so.3 -lib32/compat/libmd.so.4 -lib32/compat/libmemstat.so.2 -lib32/compat/libmenu.so.4 -lib32/compat/libmenuw.so.4 -lib32/compat/libmilter.so.4 -lib32/compat/libmp.so.6 -lib32/compat/libncp.so.3 -lib32/compat/libncurses.so.7 -lib32/compat/libncursesw.so.7 -lib32/compat/libnetgraph.so.3 -lib32/compat/libngatm.so.3 -lib32/compat/libnvpair.so.1 -lib32/compat/libobjc.so.3 -lib32/compat/libopie.so.5 -lib32/compat/libpam.so.4 -lib32/compat/libpanel.so.4 -lib32/compat/libpanelw.so.4 -lib32/compat/libpcap.so.5 -lib32/compat/libpmc.so.4 -lib32/compat/libproc.so.1 -lib32/compat/libradius.so.3 -lib32/compat/libreadline.so.7 -lib32/compat/libroken.so.9 -lib32/compat/librpcsvc.so.4 -lib32/compat/libsbuf.so.4 -lib32/compat/libsdp.so.3 -lib32/compat/libsmb.so.3 -lib32/compat/libssh.so.4 -lib32/compat/libssl.so.5 -lib32/compat/libtacplus.so.3 -lib32/compat/libufs.so.4 -lib32/compat/libugidfw.so.3 -lib32/compat/libumem.so.1 -lib32/compat/libusbhid.so.3 -lib32/compat/libutil.so.7 -lib32/compat/libuutil.so.1 -lib32/compat/libvgl.so.5 -lib32/compat/libwrap.so.5 -lib32/compat/libypclnt.so.3 -lib32/compat/libz.so.4 -lib32/compat/libzfs.so.1 -lib32/compat/libzpool.so.1 -lib32/compat/pam_chroot.so.4 -lib32/compat/pam_deny.so.4 -lib32/compat/pam_echo.so.4 -lib32/compat/pam_exec.so.4 -lib32/compat/pam_ftpusers.so.4 -lib32/compat/pam_group.so.4 -lib32/compat/pam_guest.so.4 -lib32/compat/pam_krb5.so.4 -lib32/compat/pam_ksu.so.4 -lib32/compat/pam_lastlog.so.4 -lib32/compat/pam_login_access.so.4 -lib32/compat/pam_nologin.so.4 -lib32/compat/pam_opie.so.4 -lib32/compat/pam_opieaccess.so.4 -lib32/compat/pam_passwdqc.so.4 -lib32/compat/pam_permit.so.4 -lib32/compat/pam_radius.so.4 -lib32/compat/pam_rhosts.so.4 -lib32/compat/pam_rootok.so.4 -lib32/compat/pam_securetty.so.4 -lib32/compat/pam_self.so.4 -lib32/compat/pam_ssh.so.4 -lib32/compat/pam_tacplus.so.4 -lib32/compat/pam_unix.so.4 -@dirrmtry lib/compat -@dirrmtry lib32/compat -@dirrmtry lib32 -@exec %%LDCONFIG_LIB32%% -m %D/lib32/compat diff --git a/misc/compat8x/pkg-plist.i386 b/misc/compat8x/pkg-plist.i386 deleted file mode 100644 index eef0f57526d6..000000000000 --- a/misc/compat8x/pkg-plist.i386 +++ /dev/null @@ -1,117 +0,0 @@ -lib/compat/libalias.so.6 -lib/compat/libarchive.so.4 -lib/compat/libasn1.so.9 -lib/compat/libavl.so.1 -lib/compat/libbegemot.so.3 -lib/compat/libbluetooth.so.3 -lib/compat/libbsdxml.so.3 -lib/compat/libbsm.so.2 -lib/compat/libbsnmp.so.4 -lib/compat/libbz2.so.3 -lib/compat/libcalendar.so.4 -lib/compat/libcam.so.4 -lib/compat/libcom_err.so.4 -lib/compat/libcrypt.so.4 -lib/compat/libcrypto.so.5 -lib/compat/libctf.so.1 -lib/compat/libdevinfo.so.4 -lib/compat/libdevstat.so.6 -lib/compat/libdialog.so.6 -lib/compat/libdtrace.so.1 -lib/compat/libdwarf.so.1 -lib/compat/libedit.so.6 -lib/compat/libfetch.so.5 -lib/compat/libform.so.4 -lib/compat/libformw.so.4 -lib/compat/libftpio.so.7 -lib/compat/libgeom.so.4 -lib/compat/libgnuregex.so.4 -lib/compat/libgpib.so.2 -lib/compat/libgssapi.so.9 -lib/compat/libgssapi_krb5.so.9 -lib/compat/libhdb.so.9 -lib/compat/libhistory.so.7 -lib/compat/libipsec.so.3 -lib/compat/libipx.so.4 -lib/compat/libkadm5clnt.so.9 -lib/compat/libkadm5srv.so.9 -lib/compat/libkafs5.so.9 -lib/compat/libkiconv.so.3 -lib/compat/libkrb5.so.9 -lib/compat/libkse.so.3 -lib/compat/libkvm.so.4 -lib/compat/liblwres.so.30 -lib/compat/libmagic.so.3 -lib/compat/libmd.so.4 -lib/compat/libmemstat.so.2 -lib/compat/libmenu.so.4 -lib/compat/libmenuw.so.4 -lib/compat/libmilter.so.4 -lib/compat/libmp.so.6 -lib/compat/libncp.so.3 -lib/compat/libncurses.so.7 -lib/compat/libncursesw.so.7 -lib/compat/libnetgraph.so.3 -lib/compat/libngatm.so.3 -lib/compat/libnvpair.so.1 -lib/compat/libobjc.so.3 -lib/compat/libopie.so.5 -lib/compat/libpam.so.4 -lib/compat/libpanel.so.4 -lib/compat/libpanelw.so.4 -lib/compat/libpcap.so.5 -lib/compat/libpmc.so.4 -lib/compat/libproc.so.1 -lib/compat/libradius.so.3 -lib/compat/libreadline.so.7 -lib/compat/libroken.so.9 -lib/compat/librpcsvc.so.4 -lib/compat/libsbuf.so.4 -lib/compat/libsdp.so.3 -lib/compat/libsmb.so.3 -lib/compat/libssh.so.4 -lib/compat/libssl.so.5 -lib/compat/libtacplus.so.3 -lib/compat/libufs.so.4 -lib/compat/libugidfw.so.3 -lib/compat/libumem.so.1 -lib/compat/libusbhid.so.3 -lib/compat/libutil.so.7 -lib/compat/libuutil.so.1 -lib/compat/libvgl.so.5 -lib/compat/libwrap.so.5 -lib/compat/libypclnt.so.3 -lib/compat/libz.so.4 -lib/compat/libzfs.so.1 -lib/compat/libzpool.so.1 -lib/compat/pam_chroot.so.4 -lib/compat/pam_deny.so.4 -lib/compat/pam_echo.so.4 -lib/compat/pam_exec.so.4 -lib/compat/pam_ftpusers.so.4 -lib/compat/pam_group.so.4 -lib/compat/pam_guest.so.4 -lib/compat/pam_krb5.so.4 -lib/compat/pam_ksu.so.4 -lib/compat/pam_lastlog.so.4 -lib/compat/pam_login_access.so.4 -lib/compat/pam_nologin.so.4 -lib/compat/pam_opie.so.4 -lib/compat/pam_opieaccess.so.4 -lib/compat/pam_passwdqc.so.4 -lib/compat/pam_permit.so.4 -lib/compat/pam_radius.so.4 -lib/compat/pam_rhosts.so.4 -lib/compat/pam_rootok.so.4 -lib/compat/pam_securetty.so.4 -lib/compat/pam_self.so.4 -lib/compat/pam_ssh.so.4 -lib/compat/pam_tacplus.so.4 -lib/compat/pam_unix.so.4 -lib/compat/snmp_atm.so.5 -lib/compat/snmp_bridge.so.5 -lib/compat/snmp_hostres.so.5 -lib/compat/snmp_mibII.so.5 -lib/compat/snmp_netgraph.so.5 -lib/compat/snmp_pf.so.5 -@dirrmtry lib/compat diff --git a/misc/compat8x/pkg-plist.sparc64 b/misc/compat8x/pkg-plist.sparc64 deleted file mode 100644 index 9d3b9b51eeac..000000000000 --- a/misc/compat8x/pkg-plist.sparc64 +++ /dev/null @@ -1,113 +0,0 @@ -lib/compat/libalias.so.6 -lib/compat/libarchive.so.4 -lib/compat/libasn1.so.9 -lib/compat/libavl.so.1 -lib/compat/libbegemot.so.3 -lib/compat/libbluetooth.so.3 -lib/compat/libbsdxml.so.3 -lib/compat/libbsm.so.2 -lib/compat/libbsnmp.so.4 -lib/compat/libbz2.so.3 -lib/compat/libcalendar.so.4 -lib/compat/libcam.so.4 -lib/compat/libcom_err.so.4 -lib/compat/libcrypt.so.4 -lib/compat/libcrypto.so.5 -lib/compat/libctf.so.1 -lib/compat/libdevinfo.so.4 -lib/compat/libdevstat.so.6 -lib/compat/libdialog.so.6 -lib/compat/libdtrace.so.1 -lib/compat/libdwarf.so.1 -lib/compat/libedit.so.6 -lib/compat/libfetch.so.5 -lib/compat/libform.so.4 -lib/compat/libformw.so.4 -lib/compat/libftpio.so.7 -lib/compat/libgeom.so.4 -lib/compat/libgnuregex.so.4 -lib/compat/libgpib.so.2 -lib/compat/libgssapi.so.9 -lib/compat/libgssapi_krb5.so.9 -lib/compat/libhdb.so.9 -lib/compat/libhistory.so.7 -lib/compat/libipsec.so.3 -lib/compat/libipx.so.4 -lib/compat/libkadm5clnt.so.9 -lib/compat/libkadm5srv.so.9 -lib/compat/libkafs5.so.9 -lib/compat/libkiconv.so.3 -lib/compat/libkrb5.so.9 -lib/compat/libkse.so.3 -lib/compat/libkvm.so.4 -lib/compat/libmagic.so.3 -lib/compat/libmd.so.4 -lib/compat/libmemstat.so.2 -lib/compat/libmenu.so.4 -lib/compat/libmenuw.so.4 -lib/compat/libmilter.so.4 -lib/compat/libmp.so.6 -lib/compat/libncurses.so.7 -lib/compat/libncursesw.so.7 -lib/compat/libnetgraph.so.3 -lib/compat/libngatm.so.3 -lib/compat/libnvpair.so.1 -lib/compat/libobjc.so.3 -lib/compat/libopie.so.5 -lib/compat/libpam.so.4 -lib/compat/libpanel.so.4 -lib/compat/libpanelw.so.4 -lib/compat/libpcap.so.5 -lib/compat/libpmc.so.4 -lib/compat/libproc.so.1 -lib/compat/libradius.so.3 -lib/compat/libreadline.so.7 -lib/compat/libroken.so.9 -lib/compat/librpcsvc.so.4 -lib/compat/libsbuf.so.4 -lib/compat/libsdp.so.3 -lib/compat/libssh.so.4 -lib/compat/libssl.so.5 -lib/compat/libtacplus.so.3 -lib/compat/libufs.so.4 -lib/compat/libugidfw.so.3 -lib/compat/libumem.so.1 -lib/compat/libusbhid.so.3 -lib/compat/libutil.so.7 -lib/compat/libuutil.so.1 -lib/compat/libwrap.so.5 -lib/compat/libypclnt.so.3 -lib/compat/libz.so.4 -lib/compat/libzfs.so.1 -lib/compat/libzpool.so.1 -lib/compat/pam_chroot.so.4 -lib/compat/pam_deny.so.4 -lib/compat/pam_echo.so.4 -lib/compat/pam_exec.so.4 -lib/compat/pam_ftpusers.so.4 -lib/compat/pam_group.so.4 -lib/compat/pam_guest.so.4 -lib/compat/pam_krb5.so.4 -lib/compat/pam_ksu.so.4 -lib/compat/pam_lastlog.so.4 -lib/compat/pam_login_access.so.4 -lib/compat/pam_nologin.so.4 -lib/compat/pam_opie.so.4 -lib/compat/pam_opieaccess.so.4 -lib/compat/pam_passwdqc.so.4 -lib/compat/pam_permit.so.4 -lib/compat/pam_radius.so.4 -lib/compat/pam_rhosts.so.4 -lib/compat/pam_rootok.so.4 -lib/compat/pam_securetty.so.4 -lib/compat/pam_self.so.4 -lib/compat/pam_ssh.so.4 -lib/compat/pam_tacplus.so.4 -lib/compat/pam_unix.so.4 -lib/compat/snmp_atm.so.5 -lib/compat/snmp_bridge.so.5 -lib/compat/snmp_hostres.so.5 -lib/compat/snmp_mibII.so.5 -lib/compat/snmp_netgraph.so.5 -lib/compat/snmp_pf.so.5 -@dirrmtry lib/compat diff --git a/misc/dahdi-kmod/Makefile b/misc/dahdi-kmod/Makefile deleted file mode 100644 index ed61a62cf3fa..000000000000 --- a/misc/dahdi-kmod/Makefile +++ /dev/null @@ -1,81 +0,0 @@ -# Ports collection makefile for: dahdi -# Date created: 3 Mar 2010 -# Whom: Maxim Khon <fjoe@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= dahdi -PORTVERSION= ${DAHDI_VERSION:S/-//g} -PORTREVISION= 0 -CATEGORIES= misc kld -MASTER_SITES= ${MASTER_SITE_LOCAL} -MASTER_SITE_SUBDIR= fjoe -DISTNAME= ${PORTNAME}-freebsd-complete-${DAHDI_VERSION}+${DAHDI_TOOLS_VERSION} - -MAINTAINER= fjoe@FreeBSD.org -COMMENT= Digium/Asterisk Hardware Device Interface - -BUILD_DEPENDS= gmake:${PORTSDIR}/devel/gmake -LIB_DEPENDS= newt.52:${PORTSDIR}/devel/newt - -DAHDI_VERSION= 2.3.0-rc2 -DAHDI_TOOLS_VERSION= 2.3.0 - -NO_PACKAGE= Should be in sync with the kernel to work correctly -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-dahdi=../freebsd --sysconfdir=${PREFIX}/etc --with-newt=${LOCALBASE} -CONFIGURE_ENV= WGET=/usr/bin/fetch -USE_LDCONFIG= yes -USE_RC_SUBR= dahdi - -ONLY_FOR_ARCHS= i386 amd64 -CONFLICTS= zaptel-[0-9]* - -MAN8= dahdi_cfg.8\ - dahdi_monitor.8\ - dahdi_scan.8\ - dahdi_test.8\ - dahdi_tool.8\ - fxotune.8 - -OPTIONS= EXPERIMENTAL "Enable experimental drivers" off - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} < 703000 || (${OSVERSION} >= 800000 && ${OSVERSION} < 800108) -IGNORE= requires firmware(9) support for kernel modules with hyphens -.endif - -.if ${ARCH} == "i386" || ${ARCH} == "amd64" -PLIST_SUB+= X86="" -.else -PLIST_SUB+= X86="@comment " -.endif - -.if defined(WITH_EXPERIMENTAL) -MAKE_FLAGS+= WITH_EXPERIMENTAL=yes -PLIST_SUB+= WITH_EXPERIMENTAL="" -.else -PLIST_SUB+= WITH_EXPERIMENTAL="@comment " -.endif - -pre-everything:: - @if [ ! -f /usr/src/sys/Makefile ]; then \ - ${ECHO_MSG} ">> The dahdi port needs FreeBSD kernel source code to compile."; \ - ${ECHO_MSG} ">> Please install FreeBSD kernel source code in /usr/src/sys."; \ - ${FALSE}; \ - fi - -post-patch: - @${REINPLACE_CMD} -e 's,/etc,${PREFIX}/etc,g'\ - ${WRKSRC}/tools/dahdi_cfg.c ${WRKSRC}/tools/fxotune.c\ - ${WRKSRC}/tools/doc/dahdi_cfg.8 ${WRKSRC}/tools/doc/fxotune.8 - -pre-su-install: - @${MKDIR} ${PREFIX}/lib/dahdi - -post-install: - @${TOUCH} ${PREFIX}/lib/dahdi/linker.hints - -.include <bsd.port.post.mk> diff --git a/misc/dahdi-kmod/distinfo b/misc/dahdi-kmod/distinfo deleted file mode 100644 index ba5f9996b6a6..000000000000 --- a/misc/dahdi-kmod/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (dahdi-freebsd-complete-2.3.0-rc2+2.3.0.tar.gz) = 3885e017536e75cd1cb2a210e6668970 -SHA256 (dahdi-freebsd-complete-2.3.0-rc2+2.3.0.tar.gz) = aa56f9a87584de6c96e8efd4598e74760febaac470bd4616d7ee22b0ac398e08 -SIZE (dahdi-freebsd-complete-2.3.0-rc2+2.3.0.tar.gz) = 2013326 diff --git a/misc/dahdi-kmod/files/dahdi.in b/misc/dahdi-kmod/files/dahdi.in deleted file mode 100644 index ba9f2720c685..000000000000 --- a/misc/dahdi-kmod/files/dahdi.in +++ /dev/null @@ -1,60 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# PROVIDE: dahdi -# REQUIRE: NETWORKING -# KEYWORD: shutdown -# BEFORE: asterisk -# -# Add the following lines to /etc/rc.conf.local or /etc/rc.conf -# to enable this service: -# -# dahdi_enable (bool): YES/NO (default: NO) -# dahdi_modules (list of strings): dahdi modules to load at boot (default: dahdi) -# Valid modules are: dahdi, wct4xxp, wcb4xxp -# -# Example: -# -# dahdi_enable="YES" -# dahdi_modules="wct4xxp" -# - -. /etc/rc.subr - -name="dahdi" -rcvar=`set_rcvar` - -start_cmd="dahdi_start" -stop_cmd="dahdi_stop" -load_rc_config $name -: ${dahdi_enable="NO"} -: ${dahdi_modules="dahdi"} - -kmod_dir=%%PREFIX%%/lib/dahdi -# reverse list -dahdi_modules_unload="" -for m in ${dahdi_modules}; do - dahdi_modules_unload="$m ${dahdi_modules_unload}" -done - -dahdi_start() -{ - echo -n " ${name}" - - kldconfig -mf ${kmod_dir} - for m in ${dahdi_modules}; do - kldload $m || exit 1 - done - %%PREFIX%%/sbin/dahdi_cfg -} - -dahdi_stop() -{ - echo -n " ${name}" - for m in ${dahdi_modules_unload}; do - kldunload $m - done -} - -run_rc_command "$1" diff --git a/misc/dahdi-kmod/files/patch-tools-Makefile b/misc/dahdi-kmod/files/patch-tools-Makefile deleted file mode 100644 index 48028dd64066..000000000000 --- a/misc/dahdi-kmod/files/patch-tools-Makefile +++ /dev/null @@ -1,24 +0,0 @@ ---- tools/Makefile.orig 2010-04-01 22:45:47.000000000 +0700 -+++ tools/Makefile 2010-06-01 17:18:37.000000000 +0700 -@@ -27,7 +27,7 @@ - endif - - SUBDIRS_UTILS_ALL:= ppp --SUBDIRS_UTILS := xpp -+#SUBDIRS_UTILS := xpp - - OPTFLAGS=-O2 - CFLAGS+=-I. $(OPTFLAGS) -g -fPIC -Wall -DBUILDING_TONEZONE #-DTONEZONE_DRIVER -@@ -229,10 +229,8 @@ - install -d $(DESTDIR)$(MAN_DIR) - install -m 644 $(MAN_PAGES) $(DESTDIR)$(MAN_DIR)/ - endif --ifeq (,$(wildcard $(DESTDIR)$(CONFIG_FILE))) -- $(INSTALL) -d $(DESTDIR)$(CONFIG_DIR) -- $(INSTALL) -m 644 system.conf.sample $(DESTDIR)$(CONFIG_FILE) --endif -+ $(INSTALL) -d -m 755 $(DESTDIR)$(CONFIG_DIR) -+ $(INSTALL) -m 644 system.conf.sample $(DESTDIR)$(CONFIG_FILE).sample - - install-libs: libs - $(INSTALL) -d -m 755 $(DESTDIR)/$(LIB_DIR) diff --git a/misc/dahdi-kmod/pkg-descr b/misc/dahdi-kmod/pkg-descr deleted file mode 100644 index d6703144bc6e..000000000000 --- a/misc/dahdi-kmod/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -DAHDi (Digium/Asterisk Hardware Device Interface) is the open source -device interface technology used to control Digium and other telephony -interface cards. - -WWW: http://www.asterisk.org/dahdi/ diff --git a/misc/dahdi-kmod/pkg-plist b/misc/dahdi-kmod/pkg-plist deleted file mode 100644 index f64df1431013..000000000000 --- a/misc/dahdi-kmod/pkg-plist +++ /dev/null @@ -1,47 +0,0 @@ -etc/dahdi/system.conf.sample -include/dahdi/compat/types.h -include/dahdi/tonezone.h -include/dahdi/user.h -include/dahdi/wctdm_user.h -lib/dahdi/dahdi-fw-hx8.bin.ko -lib/dahdi/dahdi-fw-oct6114-064.bin.ko -lib/dahdi/dahdi-fw-oct6114-128.bin.ko -lib/dahdi/dahdi.ko -lib/dahdi/dahdi_dynamic.ko -lib/dahdi/dahdi_dynamic_eth.ko -lib/dahdi/dahdi_dynamic_ethmf.ko -lib/dahdi/dahdi_dynamic_loc.ko -lib/dahdi/dahdi_echocan_jpah.ko -lib/dahdi/dahdi_echocan_kb1.ko -lib/dahdi/dahdi_echocan_mg2.ko -lib/dahdi/dahdi_echocan_sec.ko -lib/dahdi/dahdi_echocan_sec2.ko -lib/dahdi/dahdi_voicebus.ko -lib/dahdi/linker.hints -lib/dahdi/ng_dahdi_netdev.ko -lib/dahdi/wcb4xxp.ko -lib/dahdi/wcfxo.ko -lib/dahdi/wct4xxp.ko -lib/dahdi/wctdm24xxp.ko -%%X86%%%%WITH_EXPERIMENTAL%%lib/dahdi/dahdi_vpmadt032_loader.ko -%%WITH_EXPERIMENTAL%%lib/dahdi/wctdm.ko -%%WITH_EXPERIMENTAL%%lib/dahdi/wcte11xp.ko -%%WITH_EXPERIMENTAL%%lib/dahdi/wcte12xp.ko -lib/libtonezone.a -lib/libtonezone.so -lib/libtonezone.so.1 -lib/libtonezone.so.1.0 -lib/libtonezone.so.2 -lib/libtonezone.so.2.0 -sbin/dahdi_cfg -sbin/dahdi_maint -sbin/dahdi_monitor -sbin/dahdi_scan -sbin/dahdi_speed -sbin/dahdi_test -sbin/dahdi_tool -sbin/fxotune -@dirrm lib/dahdi -@dirrm include/dahdi/compat -@dirrm include/dahdi -@dirrmtry etc/dahdi diff --git a/misc/freecode-submit/Makefile b/misc/freecode-submit/Makefile deleted file mode 100644 index add4a5796b8a..000000000000 --- a/misc/freecode-submit/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -# New ports collection makefile for: freshmeat-submit -# Date created: 2 Jan 2005 -# Whom: x -# -# $FreeBSD$ -# - -PORTNAME= freshmeat-submit -PORTVERSION= 1.6 -CATEGORIES= misc -MASTER_SITES= http://www.catb.org/~esr/freshmeat-submit/ - -MAINTAINER= ports@FreeBSD.org -COMMENT= Submission of updates to Freshmeat via its XML-RPC - -USE_PYTHON= yes -NO_BUILD= yes - -PLIST_FILES= bin/freshmeat-submit -MAN1= freshmeat-submit.1 - -.include <bsd.port.pre.mk> - -do-install: - ${MKDIR} ${PREFIX}/bin - ${INSTALL_SCRIPT} ${WRKSRC}/freshmeat-submit ${PREFIX}/bin - ${MKDIR} ${MAN1PREFIX}/man/man1 - ${INSTALL_MAN} ${WRKSRC}/freshmeat-submit.1 ${MAN1PREFIX}/man/man1 - -.include <bsd.port.post.mk> diff --git a/misc/freecode-submit/distinfo b/misc/freecode-submit/distinfo deleted file mode 100644 index 57dd911d8fa8..000000000000 --- a/misc/freecode-submit/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (freshmeat-submit-1.6.tar.gz) = 0c08186b4f0bd6d026c45c3028ed2ccc -SHA256 (freshmeat-submit-1.6.tar.gz) = fc16e245310cf5e20c5ec25bfea3ff618f3c1f6ef700b63276c3c8a681239cba -SIZE (freshmeat-submit-1.6.tar.gz) = 17296 diff --git a/misc/freecode-submit/pkg-descr b/misc/freecode-submit/pkg-descr deleted file mode 100644 index 8f99979e7a4a..000000000000 --- a/misc/freecode-submit/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -freshmeat-submit is a Python script that supports remote submission of -release updates to Freshmeat via its XML-RPC interface. It is intended -for use in project release scripts. It reads the metadata from an -RFC-2822-like message on standard input, possibly with overrides -by command-line switches. - -WWW: http://www.catb.org/~esr/freshmeat-submit/ diff --git a/misc/krecipes-kde4/Makefile b/misc/krecipes-kde4/Makefile deleted file mode 100644 index d1dbe335fa81..000000000000 --- a/misc/krecipes-kde4/Makefile +++ /dev/null @@ -1,53 +0,0 @@ -# ports collection makefile for: krecipies -# Date created: 19 March 2005 -# Whom: hank -# -# $FreeBSD$ -# - -PORTNAME= krecipes -PORTVERSION= 0.9.1 -PORTREVISION= 5 -CATEGORIES= misc kde -MASTER_SITES= SF - -MAINTAINER= hank@millerfarm.com -COMMENT= Recipe database for cooks - -USE_KDELIBS_VER=3 -USE_AUTOTOOLS= libtool:22 - -OPTIONS= SQLITE "Support for SQLite backend" on \ - MYSQL "Support for MySQL backend" off \ - POSTGRESQL "Support for PostgreSQL backend" off - -.include <bsd.port.pre.mk> - -.if defined(WITHOUT_SQLITE) -CONFIGURE_ARGS+= --without-sqlite -.else -USE_SQLITE= yes -.endif - -.if defined(WITH_MYSQL) -RUN_DEPENDS+= ${LOCALBASE}/lib/plugins/sqldrivers/libqsqlmysql.so:${PORTSDIR}/databases/qt-mysql-plugin -.else -CONFIGURE_ARGS+= --without-mysql -.endif - -.if defined(WITH_POSTGRESQL) -RUN_DEPENDS+= ${LOCALBASE}/lib/plugins/sqldrivers/libqsqlpsql.so:${PORTSDIR}/databases/qt-pgsql-plugin -.else -CONFIGURE_ARGS+= --without-postgresql -.endif - -post-extract: - @${REINPLACE_CMD} -e 's|-O2||g' ${WRKSRC}/${CONFIGURE_SCRIPT} - -pre-configure: -.if defined(WITHOUT_SQLITE) && !defined(WITH_MYSQL) && !defined(WITH_POSTGRESQL) - @${ECHO} "You must have at least one database backend" - @exit 1 -.endif - -.include <bsd.port.post.mk> diff --git a/misc/krecipes-kde4/distinfo b/misc/krecipes-kde4/distinfo deleted file mode 100644 index b294e7046c8a..000000000000 --- a/misc/krecipes-kde4/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (krecipes-0.9.1.tar.gz) = 7414fd5210561801ba04ee3dad6561d9 -SHA256 (krecipes-0.9.1.tar.gz) = 6efdb751f26ab2460d84c39be25042d0bea013becf8c6b1a5ae2a5c46998a0f3 -SIZE (krecipes-0.9.1.tar.gz) = 7791658 diff --git a/misc/krecipes-kde4/pkg-descr b/misc/krecipes-kde4/pkg-descr deleted file mode 100644 index a511adb347a0..000000000000 --- a/misc/krecipes-kde4/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -Krecipes lets you manage your recipes, create shopping lists, choose a -recipe based on available ingredients, and plan your menu/diet in advance. -Uses your choice of SQLite, MySQL, or PostgreSQL as a database backend. - -WWW: http://krecipes.sourceforge.net/ - -- Hank -hank@millerfarm.com diff --git a/misc/krecipes-kde4/pkg-plist b/misc/krecipes-kde4/pkg-plist deleted file mode 100644 index c7743eab6f70..000000000000 --- a/misc/krecipes-kde4/pkg-plist +++ /dev/null @@ -1,262 +0,0 @@ -bin/krecipes -share/applnk/Utilities/krecipes.desktop -share/apps/krecipes/data/abbrev.txt -share/apps/krecipes/data/data.sql -share/apps/krecipes/data/samples-cs_CZ.kreml -share/apps/krecipes/data/samples-en_US.kreml -share/apps/krecipes/icons/crystalsvg/128x128/mimetypes/krecipes_file.png -share/apps/krecipes/icons/crystalsvg/16x16/actions/categories.png -share/apps/krecipes/icons/crystalsvg/16x16/actions/diet.png -share/apps/krecipes/icons/crystalsvg/16x16/actions/ingredients.png -share/apps/krecipes/icons/crystalsvg/16x16/actions/properties.png -share/apps/krecipes/icons/crystalsvg/16x16/actions/trolley.png -share/apps/krecipes/icons/crystalsvg/16x16/actions/units.png -share/apps/krecipes/icons/crystalsvg/16x16/mimetypes/krecipes_file.png -share/apps/krecipes/icons/crystalsvg/22x22/actions/categories.png -share/apps/krecipes/icons/crystalsvg/22x22/actions/diet.png -share/apps/krecipes/icons/crystalsvg/22x22/actions/ingredients.png -share/apps/krecipes/icons/crystalsvg/22x22/actions/properties.png -share/apps/krecipes/icons/crystalsvg/22x22/actions/trolley.png -share/apps/krecipes/icons/crystalsvg/22x22/actions/units.png -share/apps/krecipes/icons/crystalsvg/32x32/actions/categories.png -share/apps/krecipes/icons/crystalsvg/32x32/actions/diet.png -share/apps/krecipes/icons/crystalsvg/32x32/actions/ingredients.png -share/apps/krecipes/icons/crystalsvg/32x32/actions/krectip.png -share/apps/krecipes/icons/crystalsvg/32x32/actions/properties.png -share/apps/krecipes/icons/crystalsvg/32x32/actions/trolley.png -share/apps/krecipes/icons/crystalsvg/32x32/actions/units.png -share/apps/krecipes/icons/crystalsvg/32x32/mimetypes/krecipes_file.png -share/apps/krecipes/icons/crystalsvg/48x48/actions/categories.png -share/apps/krecipes/icons/crystalsvg/48x48/actions/diet.png -share/apps/krecipes/icons/crystalsvg/48x48/actions/ingredients.png -share/apps/krecipes/icons/crystalsvg/48x48/actions/properties.png -share/apps/krecipes/icons/crystalsvg/48x48/actions/trolley.png -share/apps/krecipes/icons/crystalsvg/48x48/actions/units.png -share/apps/krecipes/icons/crystalsvg/64x64/mimetypes/krecipes_file.png -share/apps/krecipes/krecipesui.rc -share/apps/krecipes/layouts/default.klo -share/apps/krecipes/layouts/default_print.klo -share/apps/krecipes/layouts/one_column.klo -share/apps/krecipes/pics/dbpermissions.png -share/apps/krecipes/pics/menubg.png -share/apps/krecipes/pics/network.png -share/apps/krecipes/pics/rating0.png -share/apps/krecipes/pics/rating1.png -share/apps/krecipes/pics/rating2.png -share/apps/krecipes/pics/rating3.png -share/apps/krecipes/pics/rating4.png -share/apps/krecipes/pics/rating5.png -share/apps/krecipes/pics/recipes.png -share/apps/krecipes/pics/save.png -share/apps/krecipes/pics/star_half.png -share/apps/krecipes/pics/star_off.png -share/apps/krecipes/pics/star_on.png -share/apps/krecipes/pics/startlogo.png -share/apps/krecipes/pics/wizard.png -share/doc/HTML/da/krecipes/common -share/doc/HTML/da/krecipes/index.cache.bz2 -share/doc/HTML/da/krecipes/index.docbook -share/doc/HTML/en/krecipes/1leftarrow.png -share/doc/HTML/en/krecipes/1rightarrow.png -share/doc/HTML/en/krecipes/2leftarrow.png -share/doc/HTML/en/krecipes/2rightarrow.png -share/doc/HTML/en/krecipes/adv-cat-search.png -share/doc/HTML/en/krecipes/adv-recipe-found.png -share/doc/HTML/en/krecipes/adv-search-parts.png -share/doc/HTML/en/krecipes/adv-srch-multi.png -share/doc/HTML/en/krecipes/authors-adding.png -share/doc/HTML/en/krecipes/back.png -share/doc/HTML/en/krecipes/categories.png -share/doc/HTML/en/krecipes/clear_left.png -share/doc/HTML/en/krecipes/common -share/doc/HTML/en/krecipes/computer3.png -share/doc/HTML/en/krecipes/config-email.png -share/doc/HTML/en/krecipes/configure-shortcuts-adv.png -share/doc/HTML/en/krecipes/configure-shortcuts-basic.png -share/doc/HTML/en/krecipes/configure-shortcuts.png -share/doc/HTML/en/krecipes/configure-toolbars.png -share/doc/HTML/en/krecipes/diet-help.png -share/doc/HTML/en/krecipes/down.png -share/doc/HTML/en/krecipes/editpaste.png -share/doc/HTML/en/krecipes/enter-recipe-tabs.png -share/doc/HTML/en/krecipes/filenew.png -share/doc/HTML/en/krecipes/formatting.png -share/doc/HTML/en/krecipes/forward.png -share/doc/HTML/en/krecipes/import-other-sql.png -share/doc/HTML/en/krecipes/import-recipe-screen.png -share/doc/HTML/en/krecipes/import-settings.png -share/doc/HTML/en/krecipes/import-sqlite.png -share/doc/HTML/en/krecipes/index.cache.bz2 -share/doc/HTML/en/krecipes/index.docbook -share/doc/HTML/en/krecipes/ingredient-match.png -share/doc/HTML/en/krecipes/ingredients.png -share/doc/HTML/en/krecipes/krecipes-main.png -share/doc/HTML/en/krecipes/krectip.png -share/doc/HTML/en/krecipes/locationbar_erase.png -share/doc/HTML/en/krecipes/menu.png -share/doc/HTML/en/krecipes/no.png -share/doc/HTML/en/krecipes/page-setup.png -share/doc/HTML/en/krecipes/parser.png -share/doc/HTML/en/krecipes/performance.png -share/doc/HTML/en/krecipes/prep-method.png -share/doc/HTML/en/krecipes/properties.png -share/doc/HTML/en/krecipes/ratings.png -share/doc/HTML/en/krecipes/recipe-description-tab.png -share/doc/HTML/en/krecipes/recipe-ingredients-tab.png -share/doc/HTML/en/krecipes/recipe-instructions-tab.png -share/doc/HTML/en/krecipes/restore-msg.png -share/doc/HTML/en/krecipes/server-settings.png -share/doc/HTML/en/krecipes/shop-list.png -share/doc/HTML/en/krecipes/smiley.png -share/doc/HTML/en/krecipes/submit-bug.png -share/doc/HTML/en/krecipes/unit-conversions.png -share/doc/HTML/en/krecipes/units.png -share/doc/HTML/en/krecipes/up.png -share/doc/HTML/es/krecipes/adv-cat-search.png -share/doc/HTML/es/krecipes/adv-search-parts.png -share/doc/HTML/es/krecipes/adv-srch-multi.png -share/doc/HTML/es/krecipes/authors-adding.png -share/doc/HTML/es/krecipes/back.png -share/doc/HTML/es/krecipes/categories.png -share/doc/HTML/es/krecipes/clear_left.png -share/doc/HTML/es/krecipes/configure-shortcuts-adv.png -share/doc/HTML/es/krecipes/configure-shortcuts-basic.png -share/doc/HTML/es/krecipes/configure-shortcuts.png -share/doc/HTML/es/krecipes/configure-toolbars.png -share/doc/HTML/es/krecipes/diet-help.png -share/doc/HTML/es/krecipes/down.png -share/doc/HTML/es/krecipes/enter-recipe-tabs.png -share/doc/HTML/es/krecipes/filenew.png -share/doc/HTML/es/krecipes/formatting.png -share/doc/HTML/es/krecipes/forward.png -share/doc/HTML/es/krecipes/import-other-sql.png -share/doc/HTML/es/krecipes/import-recipe-screen.png -share/doc/HTML/es/krecipes/import-settings.png -share/doc/HTML/es/krecipes/import-sqlite.png -share/doc/HTML/es/krecipes/ingredient-match.png -share/doc/HTML/es/krecipes/ingredients.png -share/doc/HTML/es/krecipes/krecipes-main.png -share/doc/HTML/es/krecipes/krectip.png -share/doc/HTML/es/krecipes/locationbar_erase.png -share/doc/HTML/es/krecipes/menu.png -share/doc/HTML/es/krecipes/no.png -share/doc/HTML/es/krecipes/page-setup.png -share/doc/HTML/es/krecipes/performance.png -share/doc/HTML/es/krecipes/prep-method.png -share/doc/HTML/es/krecipes/properties.png -share/doc/HTML/es/krecipes/recipe-description-tab.png -share/doc/HTML/es/krecipes/recipe-ingredients-tab.png -share/doc/HTML/es/krecipes/recipe-instructions-tab.png -share/doc/HTML/es/krecipes/server-settings.png -share/doc/HTML/es/krecipes/shop-list.png -share/doc/HTML/es/krecipes/unit-conversions.png -share/doc/HTML/es/krecipes/units.png -share/doc/HTML/es/krecipes/up.png -share/doc/HTML/et/krecipes/common -share/doc/HTML/et/krecipes/index.cache.bz2 -share/doc/HTML/et/krecipes/index.docbook -share/doc/HTML/pt/krecipes/common -share/doc/HTML/pt/krecipes/index.cache.bz2 -share/doc/HTML/pt/krecipes/index.docbook -share/doc/HTML/sv/krecipes/adv-recipe-found.png -share/doc/HTML/sv/krecipes/authors-adding.png -share/doc/HTML/sv/krecipes/categories.png -share/doc/HTML/sv/krecipes/common -share/doc/HTML/sv/krecipes/configure-shortcuts-adv.png -share/doc/HTML/sv/krecipes/configure-shortcuts-basic.png -share/doc/HTML/sv/krecipes/configure-shortcuts.png -share/doc/HTML/sv/krecipes/configure-toolbars.png -share/doc/HTML/sv/krecipes/diet-help.png -share/doc/HTML/sv/krecipes/enter-recipe-tabs.png -share/doc/HTML/sv/krecipes/formatting.png -share/doc/HTML/sv/krecipes/import-other-sql.png -share/doc/HTML/sv/krecipes/import-recipe-screen.png -share/doc/HTML/sv/krecipes/import-settings.png -share/doc/HTML/sv/krecipes/import-sqlite.png -share/doc/HTML/sv/krecipes/index.cache.bz2 -share/doc/HTML/sv/krecipes/index.docbook -share/doc/HTML/sv/krecipes/ingredient-match.png -share/doc/HTML/sv/krecipes/ingredients.png -share/doc/HTML/sv/krecipes/krecipes-main.png -share/doc/HTML/sv/krecipes/menu.png -share/doc/HTML/sv/krecipes/page-setup.png -share/doc/HTML/sv/krecipes/prep-method.png -share/doc/HTML/sv/krecipes/properties.png -share/doc/HTML/sv/krecipes/recipe-description-tab.png -share/doc/HTML/sv/krecipes/recipe-ingredients-tab.png -share/doc/HTML/sv/krecipes/recipe-instructions-tab.png -share/doc/HTML/sv/krecipes/server-settings.png -share/doc/HTML/sv/krecipes/shop-list.png -share/doc/HTML/sv/krecipes/unit-conversions.png -share/doc/HTML/sv/krecipes/units.png -share/icons/crystalsvg/128x128/mimetypes/krecipes_file.png -share/icons/crystalsvg/16x16/mimetypes/krecipes_file.png -share/icons/crystalsvg/32x32/mimetypes/krecipes_file.png -share/icons/crystalsvg/64x64/mimetypes/krecipes_file.png -share/icons/hicolor/128x128/apps/krecipes.png -share/icons/hicolor/16x16/apps/krecipes.png -share/icons/hicolor/22x22/apps/krecipes.png -share/icons/hicolor/32x32/apps/krecipes.png -share/icons/hicolor/48x48/apps/krecipes.png -share/icons/hicolor/64x64/apps/krecipes.png -share/locale/az/LC_MESSAGES/krecipes.mo -share/locale/bg/LC_MESSAGES/krecipes.mo -share/locale/br/LC_MESSAGES/krecipes.mo -share/locale/ca/LC_MESSAGES/krecipes.mo -share/locale/cs/LC_MESSAGES/krecipes.mo -share/locale/cy/LC_MESSAGES/krecipes.mo -share/locale/da/LC_MESSAGES/krecipes.mo -share/locale/de/LC_MESSAGES/krecipes.mo -share/locale/el/LC_MESSAGES/krecipes.mo -share/locale/en_GB/LC_MESSAGES/krecipes.mo -share/locale/es/LC_MESSAGES/krecipes.mo -share/locale/et/LC_MESSAGES/krecipes.mo -share/locale/fi/LC_MESSAGES/krecipes.mo -share/locale/fr/LC_MESSAGES/krecipes.mo -share/locale/ga/LC_MESSAGES/krecipes.mo -share/locale/is/LC_MESSAGES/krecipes.mo -share/locale/it/LC_MESSAGES/krecipes.mo -share/locale/lt/LC_MESSAGES/krecipes.mo -share/locale/mt/LC_MESSAGES/krecipes.mo -share/locale/nb/LC_MESSAGES/krecipes.mo -share/locale/nl/LC_MESSAGES/krecipes.mo -share/locale/pl/LC_MESSAGES/krecipes.mo -share/locale/pt/LC_MESSAGES/krecipes.mo -share/locale/pt_BR/LC_MESSAGES/krecipes.mo -share/locale/ro/LC_MESSAGES/krecipes.mo -share/locale/ru/LC_MESSAGES/krecipes.mo -share/locale/rw/LC_MESSAGES/krecipes.mo -share/locale/sl/LC_MESSAGES/krecipes.mo -share/locale/sr/LC_MESSAGES/krecipes.mo -share/locale/sr@Latn/LC_MESSAGES/krecipes.mo -share/locale/sv/LC_MESSAGES/krecipes.mo -share/locale/ta/LC_MESSAGES/krecipes.mo -share/locale/tr/LC_MESSAGES/krecipes.mo -share/mimelnk/application/x-krecipes-backup.desktop -share/mimelnk/application/x-krecipes-recipes.desktop -@dirrm share/doc/HTML/sv/krecipes -@dirrm share/doc/HTML/pt/krecipes -@dirrm share/doc/HTML/et/krecipes -@dirrm share/doc/HTML/es/krecipes -@dirrm share/doc/HTML/en/krecipes -@dirrm share/doc/HTML/da/krecipes -@dirrm share/apps/krecipes/pics -@dirrm share/apps/krecipes/layouts -@dirrm share/apps/krecipes/icons/crystalsvg/64x64/mimetypes -@dirrm share/apps/krecipes/icons/crystalsvg/64x64 -@dirrm share/apps/krecipes/icons/crystalsvg/48x48/actions -@dirrm share/apps/krecipes/icons/crystalsvg/48x48 -@dirrm share/apps/krecipes/icons/crystalsvg/32x32/mimetypes -@dirrm share/apps/krecipes/icons/crystalsvg/32x32/actions -@dirrm share/apps/krecipes/icons/crystalsvg/32x32 -@dirrm share/apps/krecipes/icons/crystalsvg/22x22/actions -@dirrm share/apps/krecipes/icons/crystalsvg/22x22 -@dirrm share/apps/krecipes/icons/crystalsvg/16x16/mimetypes -@dirrm share/apps/krecipes/icons/crystalsvg/16x16/actions -@dirrm share/apps/krecipes/icons/crystalsvg/16x16 -@dirrm share/apps/krecipes/icons/crystalsvg/128x128/mimetypes -@dirrm share/apps/krecipes/icons/crystalsvg/128x128 -@dirrm share/apps/krecipes/icons/crystalsvg -@dirrm share/apps/krecipes/icons -@dirrm share/apps/krecipes/data -@dirrm share/apps/krecipes diff --git a/misc/logsurfer+/Makefile b/misc/logsurfer+/Makefile deleted file mode 100644 index c79ae74f02ea..000000000000 --- a/misc/logsurfer+/Makefile +++ /dev/null @@ -1,35 +0,0 @@ -# New ports collection makefile for: logsurfer -# Date created: 28 Jul 1996 -# Whom: shanee@augusta.de -# -# $FreeBSD$ -# - -PORTNAME= logsurfer -PORTVERSION= 1.5b -CATEGORIES= misc -MASTER_SITES= ftp://ftp.cert.dfn.de/pub/tools/audit/logsurfer/%SUBDIR%/ \ - ftp://ftp.tuwien.ac.at/infosys/security/dfn/tools/audit/logsurfer/%SUBDIR%/ -EXTRACT_SUFX= .tar - -MAINTAINER= ports@FreeBSD.org -COMMENT= Process logfiles and conditionally perform certain actions - -GNU_CONFIGURE= YES -CONFIGURE_ARGS+= --with-etc-dir=${PREFIX}/etc - -MAN1= logsurfer.1 -MAN4= logsurfer.conf.4 - -post-install: - @${MKDIR} ${PREFIX}/share/examples/logsurfer - ${INSTALL_DATA} ${WRKSRC}/config-examples/README \ - ${PREFIX}/share/examples/logsurfer -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} -.for file in ChangeLog README - ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/misc/logsurfer+/distinfo b/misc/logsurfer+/distinfo deleted file mode 100644 index dfd2c0aa98ae..000000000000 --- a/misc/logsurfer+/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (logsurfer-1.5b.tar) = ade77bed7bc3c73fd26039e69c4937f4 -SHA256 (logsurfer-1.5b.tar) = d78328c3179e4500ecc5535712e298cf422acb8cc5c9c657b529f2fbb1b8b596 -SIZE (logsurfer-1.5b.tar) = 703488 diff --git a/misc/logsurfer+/files/patch-ac b/misc/logsurfer+/files/patch-ac deleted file mode 100644 index 4bcb1e4a400a..000000000000 --- a/misc/logsurfer+/files/patch-ac +++ /dev/null @@ -1,10 +0,0 @@ ---- src/logsurfer.c.orig Mon Apr 8 10:15:53 1996 -+++ src/logsurfer.c Fri May 28 14:28:06 1999 -@@ -382,6 +382,7 @@ - (void) fprintf(stderr, "unable to allocate memory for logline_buffer\n"); - exit(99); - } -+ logline_buffer[0]='\0'; - - while ( (opt = getopt(argc, argv, "fc:d:l:p:r:s")) != EOF ) - switch(opt) { diff --git a/misc/logsurfer+/pkg-descr b/misc/logsurfer+/pkg-descr deleted file mode 100644 index 55333f8a7359..000000000000 --- a/misc/logsurfer+/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -Logsurfer is a program that works on single textlines from -a logfile (or from standard input). It compares each line -against regular expressions of a set of "rules" and per- -forms certain actions that are defined for this match. - -WWW: http://www.cert.dfn.de/eng/logsurf/ diff --git a/misc/logsurfer+/pkg-plist b/misc/logsurfer+/pkg-plist deleted file mode 100644 index 8d527a7b5130..000000000000 --- a/misc/logsurfer+/pkg-plist +++ /dev/null @@ -1,6 +0,0 @@ -bin/logsurfer -%%PORTDOCS%%share/doc/logsurfer/ChangeLog -%%PORTDOCS%%share/doc/logsurfer/README -%%PORTDOCS%%@dirrm share/doc/logsurfer -share/examples/logsurfer/README -@dirrm share/examples/logsurfer |