From owner-freebsd-ports-bugs Sun Feb 23 0:20: 7 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01C1737B401 for ; Sun, 23 Feb 2003 00:20:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 007C643F75 for ; Sun, 23 Feb 2003 00:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1N8K2NS007638 for ; Sun, 23 Feb 2003 00:20:02 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1N8K2DU007637; Sun, 23 Feb 2003 00:20:02 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49CD537B405 for ; Sun, 23 Feb 2003 00:17:12 -0800 (PST) Received: from kcwu.dyndns.org (u142-187.u61-70.giga.net.tw [61.70.142.187]) by mx1.FreeBSD.org (Postfix) with ESMTP id ABEB343FBD for ; Sun, 23 Feb 2003 00:17:10 -0800 (PST) (envelope-from kcwu@kcwu.dyndns.org) Received: from kcwu.dyndns.org (m722 [127.0.0.1]) by kcwu.dyndns.org (8.12.6/8.12.6) with ESMTP id h1N8GgVc080237 for ; Sun, 23 Feb 2003 16:16:43 +0800 (CST) (envelope-from kcwu@kcwu.dyndns.org) Received: (from kcwu@localhost) by kcwu.dyndns.org (8.12.6/8.12.6/Submit) id h1N8Gg9f080236; Sun, 23 Feb 2003 16:16:42 +0800 (CST) Message-Id: <200302230816.h1N8Gg9f080236@kcwu.dyndns.org> Date: Sun, 23 Feb 2003 16:16:42 +0800 (CST) From: Kuang-che Wu Reply-To: Kuang-che Wu To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48586: [PATCH] net/dictd UTF8 support broken Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48586 >Category: ports >Synopsis: [PATCH] net/dictd UTF8 support broken >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Feb 23 00:20:02 PST 2003 >Closed-Date: >Last-Modified: >Originator: Kuang-che Wu >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD m722 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Fri Jan 24 17:19:52 CST 2003 root@m722:/usr/obj/usr/src/sys/M722 i386 >Description: Previous patch (files/patch-break-utf8) forget to include for macro __FreeBSD_version >How-To-Repeat: >Fix: diff -ur dictd.old/files/patch-break-utf8 dictd/files/patch-break-utf8 --- dictd.old/files/patch-break-utf8 Sun Feb 23 15:56:21 2003 +++ dictd/files/patch-break-utf8 Sun Feb 23 15:53:29 2003 @@ -1,15 +1,16 @@ diff -ru ../dictd-freebsd/dictd.c ./dictd.c --- ../dictd-freebsd/dictd.c Sun Nov 24 09:35:55 2002 +++ ./dictd.c Sun Dec 1 22:29:55 2002 -@@ -662,6 +662,7 @@ +@@ -662,6 +662,8 @@ static void set_utf8_mode (const char *locale) { ++#include +#if __FreeBSD_version > 499999 char *locale_copy; locale_copy = strdup (locale); strlwr_8bit (locale_copy); -@@ -671,6 +672,9 @@ +@@ -671,6 +673,9 @@ strstr (locale_copy, "utf8"); free (locale_copy); @@ -22,17 +23,18 @@ diff -ru ../dictd-freebsd/index.c ./index.c --- ../dictd-freebsd/index.c Sun Dec 1 22:12:49 2002 +++ ./index.c Sun Dec 1 22:25:06 2002 -@@ -111,6 +111,9 @@ +@@ -111,6 +111,10 @@ const char *src, char *dest, int allchars_mode) { ++#include +#if __FreeBSD_version < 500000 + abort(); +#else wint_t ucs4_char; while (src && src [0]){ -@@ -130,6 +133,7 @@ +@@ -130,6 +134,7 @@ *dest = 0; return (src != NULL); @@ -40,7 +42,7 @@ } static void dict_table_init(void) -@@ -166,9 +170,11 @@ +@@ -166,9 +171,11 @@ p[i] = &s[2 * i]; } /* Sort those strings in the locale */ @@ -52,7 +54,7 @@ qsort(p, UCHAR_MAX + 1, sizeof(p[0]), dict_table_init_compare_strcoll); /* Extract our unordered arrays */ -@@ -1126,6 +1132,9 @@ +@@ -1126,6 +1133,9 @@ */ static int stranagram_utf8 (char *str) { @@ -73,12 +75,13 @@ diff -ru ../dictd-freebsd/utf8_ucs4.c ./utf8_ucs4.c --- ../dictd-freebsd/utf8_ucs4.c Sun Nov 24 09:35:55 2002 +++ ./utf8_ucs4.c Sun Dec 1 22:44:40 2002 -@@ -1,3 +1,4 @@ +@@ -1,3 +1,5 @@ ++#include +#if __FreeBSD_version > 499999 #include #include #include -@@ -210,3 +211,4 @@ +@@ -210,3 +212,4 @@ else return (size_t) -1; } @@ -86,12 +89,13 @@ diff -ru ../dictd-freebsd/utf8_ucs4.h ./utf8_ucs4.h --- ../dictd-freebsd/utf8_ucs4.h Sun Nov 24 09:35:55 2002 +++ ./utf8_ucs4.h Sun Dec 1 22:26:15 2002 -@@ -1,3 +1,4 @@ +@@ -1,3 +1,5 @@ ++#include +#if __FreeBSD_version > 499999 #ifndef _UTF8_UCS4_H_ #define _UTF8_UCS4_H_ -@@ -73,3 +74,4 @@ +@@ -73,3 +75,4 @@ __END_DECLS #endif // _UTF8_UCS4_H_ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 1: 2:46 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B05037B401; Sun, 23 Feb 2003 01:02:46 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A698943FD7; Sun, 23 Feb 2003 01:02:45 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1N92jNS017752; Sun, 23 Feb 2003 01:02:45 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1N92jns017748; Sun, 23 Feb 2003 01:02:45 -0800 (PST) Date: Sun, 23 Feb 2003 01:02:45 -0800 (PST) From: Edwin Groothuis Message-Id: <200302230902.h1N92jns017748@freefall.freebsd.org> To: saito@asir.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48284: Update for math/asir2000 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update for math/asir2000 State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 01:02:40 PST 2003 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48284 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 1:10:53 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C27C437B401; Sun, 23 Feb 2003 01:10:15 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9932643FE0; Sun, 23 Feb 2003 01:10:13 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1N9ADNS021428; Sun, 23 Feb 2003 01:10:13 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1N9ADtX021427; Sun, 23 Feb 2003 01:10:13 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 09BF137B401 for ; Sun, 23 Feb 2003 01:04:54 -0800 (PST) Received: from lerlaptop.lerctr.org (lerlaptop.lerctr.org [207.158.72.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2803C43F3F for ; Sun, 23 Feb 2003 01:04:52 -0800 (PST) (envelope-from ler@lerlaptop.lerctr.org) Received: from lerlaptop.lerctr.org (localhost [127.0.0.1]) by lerlaptop.lerctr.org (8.12.7/8.12.7) with ESMTP id h1N94jgu072585; Sun, 23 Feb 2003 03:04:45 -0600 (CST) (envelope-from ler@lerlaptop.lerctr.org) Received: (from ler@localhost) by lerlaptop.lerctr.org (8.12.7/8.12.7/Submit) id h1N94imf072562; Sun, 23 Feb 2003 03:04:44 -0600 (CST) Message-Id: <200302230904.h1N94imf072562@lerlaptop.lerctr.org> Date: Sun, 23 Feb 2003 03:04:44 -0600 (CST) From: Larry Rosenman Reply-To: Larry Rosenman To: FreeBSD-gnats-submit@FreeBSD.org Cc: verbophobe@hotmail.com X-Send-Pr-Version: 3.113 X-GNATS-Notify: ler@lerctr.org,verbophobe@hotmail.com Subject: ports/48587: gthumb2 port fails. Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48587 >Category: ports >Synopsis: gthumb2 port fails. >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Feb 23 01:10:12 PST 2003 >Closed-Date: >Last-Modified: >Originator: Larry Rosenman >Release: FreeBSD 4.7-STABLE i386 >Organization: LERCTR Consulting >Environment: System: FreeBSD lerlaptop.lerctr.org 4.7-STABLE FreeBSD 4.7-STABLE #39: Sat Feb 15 23:00:20 CST 2003 ler@lerlaptop.lerctr.org:/usr/obj/usr/src/sys/LERLAPTOP i386 >Description: trying to upgrade all my ports after the Xft rename, this one fails. portupgrade log: ===> Cleaning for unzip-5.50 ===> Cleaning for esound-0.2.29 ===> Cleaning for libaudiofile-0.2.3 ===> Cleaning for libiconv-1.8_2 ===> Cleaning for ORBit2-2.6.0 ===> Cleaning for atk-1.2.2 ===> Cleaning for autoconf-2.53_1 ===> Cleaning for automake-1.5,1 ===> Cleaning for bison-1.75 ===> Cleaning for bonobo-activation-2.2.1,1 ===> Cleaning for fam-2.6.9_2 ===> Cleaning for gconf2-2.2.0 ===> Cleaning for gettext-0.11.5_1 ===> Cleaning for glib-2.2.1 ===> Cleaning for gmake-3.80 ===> Cleaning for gnomevfs2-2.2.2 ===> Cleaning for imake-4.2.0_1 ===> Cleaning for libIDL-0.8.0_1 ===> Cleaning for libbonobo-2.2.0 ===> Cleaning for libglade2-2.0.1_1 ===> Cleaning for libgnugetopt-1.2 ===> Cleaning for libtool-1.3.4_4 ===> Cleaning for m4-1.4_1 ===> Cleaning for pkgconfig-0.15.0 ===> Cleaning for popt-1.6.4 ===> Cleaning for jpeg-6b_1 ===> Cleaning for libart_lgpl2-2.3.11 ===> Cleaning for libgnomecanvas-2.2.0.1 ===> Cleaning for png-1.2.5_2 ===> Cleaning for tiff-3.5.7 ===> Cleaning for python-2.2.2_2 ===> Cleaning for gnome-icon-theme-1.0.0 ===> Cleaning for gnomehier-1.0_8 ===> Cleaning for gnomemimedata-2.2.0_1 ===> Cleaning for help2man-1.29 ===> Cleaning for linc-1.0.1 ===> Cleaning for freetype2-2.1.3_1 ===> Cleaning for libgnomeprint-1.116.3 ===> Cleaning for docbook-sk-4.1.2 ===> Cleaning for docbook-xml-4.2 ===> Cleaning for docbook-xsl-1.59.1 ===> Cleaning for expat-1.95.6_1 ===> Cleaning for intltool-0.25 ===> Cleaning for libxml2-2.5.3 ===> Cleaning for libxslt-1.0.26 ===> Cleaning for mkcatalog-1.1 ===> Cleaning for py22-expat-2.2.2_2 ===> Cleaning for scrollkeeper-0.3.11_8,1 ===> Cleaning for sdocbook-xml-4.1.2.5 ===> Cleaning for Xft-2.1_2 ===> Cleaning for fontconfig-2.1_2 ===> Cleaning for gtk-2.2.1 ===> Cleaning for libbonoboui-2.2.0 ===> Cleaning for libgnomeprintui-1.116.3 ===> Cleaning for libgnomeui-2.2.0.1 ===> Cleaning for pango-1.2.1 ===> Cleaning for XFree86-libraries-4.2.1_7 ===> Cleaning for libgnome-2.2.0.1 ===> Cleaning for startup-notification-0.5_1 ===> Cleaning for gthumb2-2.0.1_2 ===> Extracting for gthumb2-2.0.1_2 >> Checksum OK for gthumb-2.0.1.tar.gz. ===> gthumb2-2.0.1_2 depends on executable: gmake - found ===> gthumb2-2.0.1_2 depends on executable: libtool - found ===> gthumb2-2.0.1_2 depends on shared library: gnomeui-2.200 - found ===> gthumb2-2.0.1_2 depends on shared library: gnomeprintui-2.0 - found ===> gthumb2-2.0.1_2 depends on shared library: X11.6 - found ===> Patching for gthumb2-2.0.1_2 ===> Applying FreeBSD patches for gthumb2-2.0.1_2 ===> Configuring for gthumb2-2.0.1_2 configure: WARNING: you should use --build, --host, --target checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking whether gmake sets $(MAKE)... yes checking for working aclocal-1.4... missing checking for working autoconf... found checking for working automake-1.4... missing checking for working autoheader... found checking for working makeinfo... found checking build system type... i386-portbld-freebsd4.7 checking host system type... i386-portbld-freebsd4.7 checking for i386-portbld-freebsd4.7-gcc... cc checking for C compiler default output... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ANSI C... none needed checking for ld used by GCC... /usr/libexec/elf/ld checking if the linker (/usr/libexec/elf/ld) is GNU ld... yes checking for /usr/libexec/elf/ld option to reload object files... -r checking for BSD-compatible nm... nm checking whether ln -s works... yes checking how to recognise dependant libraries... pass_all checking command to parse nm output... ok checking how to run the C preprocessor... cc -E checking for egrep... grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... no checking for unistd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking for i386-portbld-freebsd4.7-ranlib... no checking for ranlib... ranlib checking for i386-portbld-freebsd4.7-strip... no checking for strip... strip checking for objdir... .libs checking for cc option to produce PIC... -fPIC checking if cc PIC flag -fPIC works... yes checking if cc static flag -static works... yes checking if cc supports -c -o file.o... yes checking if cc supports -c -o file.lo... no checking if cc supports -fno-rtti -fno-exceptions... yes checking whether the linker (/usr/libexec/elf/ld) supports shared libraries... yes checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking dynamic linker characteristics... freebsd4.7 ld.so checking if libtool supports shared libraries... yes checking whether -lc should be explicitly linked in... yes creating libtool checking for pkg-config... /usr/local/bin/pkg-config checking for orbit2-config... /usr/local/bin/orbit2-config checking for ORBit - version >= 2.3.0... yes checking for orbit-idl-2... /usr/local/bin/orbit-idl-2 checking for glib-2.0 gthread-2.0 gtk+-2.0 libgnome-2.0 libgnomeui-2.0 libgnomecanvas-2.0 gnome-vfs-2.0 gnome-vfs-module-2.0 libxml-2.0 libglade-2.0 libgnomeprint-2.0 libgnomeprintui-2.0 bonobo-activation-2.0... Package libgnomeprint-2.0 was not found in the pkg-config search path. Perhaps you should add the directory containing `libgnomeprint-2.0.pc' to the PKG_CONFIG_PATH environment variable No package 'libgnomeprint-2.0' found configure: error: Library requirements ( glib-2.0 gthread-2.0 gtk+-2.0 libgnome-2.0 libgnomeui-2.0 libgnomecanvas-2.0 gnome-vfs-2.0 gnome-vfs-module-2.0 libxml-2.0 libglade-2.0 libgnomeprint-2.0 libgnomeprintui-2.0 bonobo-activation-2.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them. ===> Script "configure" failed unexpectedly. Please report the problem to verbophobe@hotmail.com [maintainer] and attach the "/usr/ports/graphics/gthumb2/work/gthumb-2.0.1/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. an `ls /var/db/pkg`). *** Error code 1 Stop in /usr/ports/graphics/gthumb2. config.log: This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by gthumb configure 2.0.1, which was generated by GNU Autoconf 2.57. Invocation command line was $ ./configure --x-libraries=/usr/X11R6/lib --x-includes=/usr/X11R6/include --localstatedir=/usr/X11R6/share/gnome --datadir=/usr/X11R6/share/gnome --with-html-dir=/usr/X11R6/share/doc --disable-gtk-doc --with-gconf-source=xml::/usr/X11R6/etc/gconf/gconf.xml.defaults --prefix=/usr/X11R6 i386-portbld-freebsd4.7 ## --------- ## ## Platform. ## ## --------- ## hostname = lerlaptop.lerctr.org uname -m = i386 uname -r = 4.7-STABLE uname -s = FreeBSD uname -v = FreeBSD 4.7-STABLE #39: Sat Feb 15 23:00:20 CST 2003 ler@lerlaptop.lerctr.org:/usr/obj/usr/src/sys/LERLAPTOP /usr/bin/uname -p = i386 /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /sbin PATH: /bin PATH: /usr/sbin PATH: /usr/bin PATH: /usr/games PATH: /usr/local/sbin PATH: /usr/local/bin PATH: /usr/X11R6/bin PATH: /root/bin ## ----------- ## ## Core tests. ## ## ----------- ## configure:1493: checking for a BSD-compatible install configure:1547: result: /usr/bin/install -c -o root -g wheel configure:1558: checking whether build environment is sane configure:1601: result: yes configure:1616: checking whether gmake sets $(MAKE) configure:1636: result: yes configure:1668: checking for working aclocal-1.4 configure:1679: result: missing configure:1683: checking for working autoconf configure:1690: result: found configure:1698: checking for working automake-1.4 configure:1709: result: missing configure:1713: checking for working autoheader configure:1720: result: found configure:1728: checking for working makeinfo configure:1735: result: found configure:1822: checking build system type configure:1840: result: i386-portbld-freebsd4.7 configure:1848: checking host system type configure:1862: result: i386-portbld-freebsd4.7 configure:1878: checking for i386-portbld-freebsd4.7-gcc configure:1904: result: cc configure:2186: checking for C compiler version configure:2189: cc --version &5 2.95.4 configure:2192: $? = 0 configure:2194: cc -v &5 Using builtin specs. gcc version 2.95.4 20020320 [FreeBSD] configure:2197: $? = 0 configure:2199: cc -V &5 cc: argument to `-V' is missing configure:2202: $? = 1 configure:2226: checking for C compiler default output configure:2229: cc -O -pipe -I/usr/local/include -L/usr/local/lib conftest.c >&5 configure:2232: $? = 0 configure:2278: result: a.out configure:2283: checking whether the C compiler works configure:2289: ./a.out configure:2292: $? = 0 configure:2309: result: yes configure:2316: checking whether we are cross compiling configure:2318: result: no configure:2321: checking for suffix of executables configure:2323: cc -o conftest -O -pipe -I/usr/local/include -L/usr/local/lib conftest.c >&5 configure:2326: $? = 0 configure:2351: result: configure:2357: checking for suffix of object files configure:2379: cc -c -O -pipe -I/usr/local/include conftest.c >&5 configure:2382: $? = 0 configure:2404: result: o configure:2408: checking whether we are using the GNU C compiler configure:2433: cc -c -O -pipe -I/usr/local/include conftest.c >&5 configure:2436: $? = 0 configure:2439: test -s conftest.o configure:2442: $? = 0 configure:2455: result: yes configure:2461: checking whether cc accepts -g configure:2483: cc -c -g -I/usr/local/include conftest.c >&5 configure:2486: $? = 0 configure:2489: test -s conftest.o configure:2492: $? = 0 configure:2503: result: yes configure:2520: checking for cc option to accept ANSI C configure:2581: cc -c -O -pipe -I/usr/local/include conftest.c >&5 configure:2584: $? = 0 configure:2587: test -s conftest.o configure:2590: $? = 0 configure:2608: result: none needed configure:2626: cc -c -O -pipe -I/usr/local/include conftest.c >&5 conftest.c:2: syntax error before `me' configure:2629: $? = 1 configure: failed program was: | #ifndef __cplusplus | choke me | #endif configure:2749: checking for ld used by GCC configure:2812: result: /usr/libexec/elf/ld configure:2821: checking if the linker (/usr/libexec/elf/ld) is GNU ld GNU ld version 2.12.1 [FreeBSD] 2002-07-20 configure:2833: result: yes configure:2838: checking for /usr/libexec/elf/ld option to reload object files configure:2845: result: -r configure:2850: checking for BSD-compatible nm configure:2886: result: nm configure:2889: checking whether ln -s works configure:2893: result: yes configure:2900: checking how to recognise dependant libraries configure:3068: result: pass_all configure:3081: checking command to parse nm output configure:3158: cc -c -O -pipe -I/usr/local/include conftest.c >&5 configure:3161: $? = 0 configure:3165: nm conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGISTW][ABCDGISTW]*\)[ ][ ]*\(\)\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2\3 \3/p' \> conftest.nm configure:3168: $? = 0 configure:3220: cc -o conftest -O -pipe -I/usr/local/include -L/usr/local/lib conftest.c conftstm.o >&5 configure:3223: $? = 0 configure:3264: result: ok configure:3273: checking how to run the C preprocessor configure:3309: cc -E -I/usr/local/include conftest.c configure:3315: $? = 0 configure:3347: cc -E -I/usr/local/include conftest.c configure:3349: ac_nonexistent.h: No such file or directory configure:3353: $? = 1 configure: failed program was: | #line 3339 "configure" | /* confdefs.h. */ | | #define PACKAGE_NAME "gthumb" | #define PACKAGE_TARNAME "gthumb" | #define PACKAGE_VERSION "2.0.1" | #define PACKAGE_STRING "gthumb 2.0.1" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "gthumb" | #define VERSION "2.0.1" | /* end confdefs.h. */ | #include configure:3391: result: cc -E configure:3416: cc -E -I/usr/local/include conftest.c configure:3422: $? = 0 configure:3454: cc -E -I/usr/local/include conftest.c configure:3456: ac_nonexistent.h: No such file or directory configure:3460: $? = 1 configure: failed program was: | #line 3446 "configure" | /* confdefs.h. */ | | #define PACKAGE_NAME "gthumb" | #define PACKAGE_TARNAME "gthumb" | #define PACKAGE_VERSION "2.0.1" | #define PACKAGE_STRING "gthumb 2.0.1" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "gthumb" | #define VERSION "2.0.1" | /* end confdefs.h. */ | #include configure:3503: checking for egrep configure:3513: result: grep -E configure:3518: checking for ANSI C header files configure:3544: cc -c -O -pipe -I/usr/local/include conftest.c >&5 configure:3547: $? = 0 configure:3550: test -s conftest.o configure:3553: $? = 0 configure:3645: cc -o conftest -O -pipe -I/usr/local/include -L/usr/local/lib conftest.c >&5 configure:3648: $? = 0 configure:3650: ./conftest configure:3653: $? = 0 configure:3668: result: yes configure:3692: checking for sys/types.h configure:3709: cc -c -O -pipe -I/usr/local/include conftest.c >&5 configure:3712: $? = 0 configure:3715: test -s conftest.o configure:3718: $? = 0 configure:3729: result: yes configure:3692: checking for sys/stat.h configure:3709: cc -c -O -pipe -I/usr/local/include conftest.c >&5 configure:3712: $? = 0 configure:3715: test -s conftest.o configure:3718: $? = 0 configure:3729: result: yes configure:3692: checking for stdlib.h configure:3709: cc -c -O -pipe -I/usr/local/include conftest.c >&5 configure:3712: $? = 0 configure:3715: test -s conftest.o configure:3718: $? = 0 configure:3729: result: yes configure:3692: checking for string.h configure:3709: cc -c -O -pipe -I/usr/local/include conftest.c >&5 configure:3712: $? = 0 configure:3715: test -s conftest.o configure:3718: $? = 0 configure:3729: result: yes configure:3692: checking for memory.h configure:3709: cc -c -O -pipe -I/usr/local/include conftest.c >&5 configure:3712: $? = 0 configure:3715: test -s conftest.o configure:3718: $? = 0 configure:3729: result: yes configure:3692: checking for strings.h configure:3709: cc -c -O -pipe -I/usr/local/include conftest.c >&5 configure:3712: $? = 0 configure:3715: test -s conftest.o configure:3718: $? = 0 configure:3729: result: yes configure:3692: checking for inttypes.h configure:3709: cc -c -O -pipe -I/usr/local/include conftest.c >&5 configure:3712: $? = 0 configure:3715: test -s conftest.o configure:3718: $? = 0 configure:3729: result: yes configure:3692: checking for stdint.h configure:3709: cc -c -O -pipe -I/usr/local/include conftest.c >&5 configure:3751: stdint.h: No such file or directory configure:3712: $? = 1 configure: failed program was: | #line 3698 "configure" | /* confdefs.h. */ | | #define PACKAGE_NAME "gthumb" | #define PACKAGE_TARNAME "gthumb" | #define PACKAGE_VERSION "2.0.1" | #define PACKAGE_STRING "gthumb 2.0.1" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "gthumb" | #define VERSION "2.0.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | /* end confdefs.h. */ | #include | #if HAVE_SYS_TYPES_H | # include | #endif | #if HAVE_SYS_STAT_H | # include | #endif | #if STDC_HEADERS | # include | # include | #else | # if HAVE_STDLIB_H | # include | # endif | #endif | #if HAVE_STRING_H | # if !STDC_HEADERS && HAVE_MEMORY_H | # include | # endif | # include | #endif | #if HAVE_STRINGS_H | # include | #endif | #if HAVE_INTTYPES_H | # include | #else | # if HAVE_STDINT_H | # include | # endif | #endif | #if HAVE_UNISTD_H | # include | #endif | | #include configure:3729: result: no configure:3692: checking for unistd.h configure:3709: cc -c -O -pipe -I/usr/local/include conftest.c >&5 configure:3712: $? = 0 configure:3715: test -s conftest.o configure:3718: $? = 0 configure:3729: result: yes configure:3755: checking dlfcn.h usability configure:3768: cc -c -O -pipe -I/usr/local/include conftest.c >&5 configure:3771: $? = 0 configure:3774: test -s conftest.o configure:3777: $? = 0 configure:3787: result: yes configure:3791: checking dlfcn.h presence configure:3802: cc -E -I/usr/local/include conftest.c configure:3808: $? = 0 configure:3827: result: yes configure:3863: checking for dlfcn.h configure:3870: result: yes configure:4029: checking for i386-portbld-freebsd4.7-ranlib configure:4058: result: no configure:4067: checking for ranlib configure:4083: found /usr/bin/ranlib configure:4094: result: ranlib configure:4109: checking for i386-portbld-freebsd4.7-strip configure:4138: result: no configure:4147: checking for strip configure:4163: found /usr/bin/strip configure:4174: result: strip configure:4377: checking for objdir configure:4388: result: .libs configure:4405: checking for cc option to produce PIC configure:4555: result: -fPIC configure:4559: checking if cc PIC flag -fPIC works configure:4583: cc -c -O -pipe -fPIC -DPIC -I/usr/local/include conftest.c >&5 configure:4586: $? = 0 configure:4589: test -s conftest.o configure:4592: $? = 0 configure:4630: result: yes configure:4646: checking if cc static flag -static works configure:4671: cc -o conftest -O -pipe -I/usr/local/include -L/usr/local/lib -static conftest.c >&5 configure:4674: $? = 0 configure:4677: test -s conftest configure:4680: $? = 0 configure:4696: result: yes configure:4708: checking if cc supports -c -o file.o configure:4728: cc -c -O -pipe -o out/conftest2.o -I/usr/local/include conftest.c >&5 configure:4752: result: yes configure:4757: checking if cc supports -c -o file.lo configure:4783: cc -c -O -pipe -c -o conftest.lo -I/usr/local/include conftest.c >&5 configure:4786: $? = 0 configure:4789: test -s conftest.o configure:4792: $? = 1 configure: failed program was: | #line 4767 "configure" | /* confdefs.h. */ | | #define PACKAGE_NAME "gthumb" | #define PACKAGE_TARNAME "gthumb" | #define PACKAGE_VERSION "2.0.1" | #define PACKAGE_STRING "gthumb 2.0.1" | #define PACKAGE_BUGREPORT "" | #define PACKAGE "gthumb" | #define VERSION "2.0.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | /* end confdefs.h. */ | | int | main () | { | int some_variable = 0; | ; | return 0; | } configure:4813: result: no configure:4844: checking if cc supports -fno-rtti -fno-exceptions configure:4867: cc -c -O -pipe -fno-rtti -fno-exceptions -c conftest.c -I/usr/local/include conftest.c >&5 configure:4870: $? = 0 configure:4873: test -s conftest.o configure:4876: $? = 0 configure:4893: result: yes configure:4904: checking whether the linker (/usr/libexec/elf/ld) supports shared libraries configure:5516: result: yes configure:5521: checking how to hardcode library paths into programs configure:5545: result: immediate configure:5550: checking whether stripping libraries is possible configure:5555: result: yes configure:5566: checking dynamic linker characteristics configure:5948: result: freebsd4.7 ld.so configure:5953: checking if libtool supports shared libraries configure:5955: result: yes configure:6569: checking whether -lc should be explicitly linked in configure:6577: cc -c -O -pipe -I/usr/local/include conftest.c >&5 configure:6580: $? = 0 configure:6594: cc -shared conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| grep -lc \>/dev/null 2\>\&1 configure:6597: $? = 1 configure:6610: result: yes configure:7263: checking for pkg-config configure:7281: found /usr/local/bin/pkg-config configure:7294: result: /usr/local/bin/pkg-config configure:7303: checking for orbit2-config configure:7321: found /usr/local/bin/orbit2-config configure:7334: result: /usr/local/bin/orbit2-config configure:7342: checking for ORBit - version >= 2.3.0 configure:7450: cc -o conftest -O -pipe -DORBIT2=1 -pthread -I/usr/local/include/orbit-2.0 -I/usr/local/include/linc-1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -L/usr/local/lib conftest.c -pthread -Wl,--export-dynamic -L/usr/local/lib -lORBit-2 -llinc -lgmodule-2.0 -lgobject-2.0 -lgthread-2.0 -lglib-2.0 -liconv -lm >&5 configure:7453: $? = 0 configure:7455: ./conftest configure:7458: $? = 0 configure:7476: result: yes configure:7560: checking for orbit-idl-2 configure:7578: found /usr/local/bin/orbit-idl-2 configure:7591: result: /usr/local/bin/orbit-idl-2 configure:7658: checking for glib-2.0 gthread-2.0 gtk+-2.0 libgnome-2.0 libgnomeui-2.0 libgnomecanvas-2.0 gnome-vfs-2.0 gnome-vfs-module-2.0 libxml-2.0 libglade-2.0 libgnomeprint-2.0 libgnomeprintui-2.0 bonobo-activation-2.0 configure:7775: error: Library requirements ( glib-2.0 gthread-2.0 gtk+-2.0 libgnome-2.0 libgnomeui-2.0 libgnomecanvas-2.0 gnome-vfs-2.0 gnome-vfs-module-2.0 libxml-2.0 libglade-2.0 libgnomeprint-2.0 libgnomeprintui-2.0 bonobo-activation-2.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them. ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_header_stdlib_h=yes lt_cv_file_magic_cmd='$MAGIC_CMD' ac_cv_prog_cc_g=yes ac_cv_env_LDFLAGS_set=set ac_cv_path_PKG_CONFIG=/usr/local/bin/pkg-config lt_cv_prog_cc_can_build_shared=yes ac_cv_c_compiler_gnu=yes ac_cv_exeext= ac_cv_env_CFLAGS_set=set ac_cv_path_ORBIT_CONFIG=/usr/local/bin/orbit2-config ac_cv_prog_make_gmake_set=yes ac_cv_env_CPP_value= ac_cv_env_CPPFLAGS_set=set lt_cv_prog_cc_static_works=yes lt_cv_prog_cc_no_builtin= lt_cv_prog_cc_shlib= lt_cv_prog_cc_static=-static ac_cv_env_host_alias_set=set lt_cv_ld_reload_flag=-r ac_cv_prog_CC=cc lt_cv_archive_cmds_need_lc=yes ac_cv_header_sys_stat_h=yes lt_cv_prog_gnu_ld=yes ac_cv_env_build_alias_set=set ac_cv_env_LDFLAGS_value=-L/usr/local/lib ac_cv_env_target_alias_set=set ac_cv_prog_cc_stdc= ac_cv_host_alias=i386-portbld-freebsd4.7 ac_cv_env_CFLAGS_value='-O -pipe ' ac_cv_env_CC_set=set ac_cv_path_ORBIT_IDL=/usr/local/bin/orbit-idl-2 lt_cv_prog_cc_wl=-Wl, ac_cv_header_sys_types_h=yes ac_cv_header_stdc=yes ac_cv_header_strings_h=yes ac_cv_header_stdint_h=no ac_cv_header_inttypes_h=yes ac_cv_prog_egrep='grep -E' ac_cv_header_unistd_h=yes ac_cv_header_string_h=yes lt_cv_global_symbol_to_cdecl='sed -n -e '\''s/^. .* \(.*\)$/extern char \1;/p'\''' lt_cv_path_LD=/usr/libexec/elf/ld ac_cv_build_alias=i386-portbld-freebsd4.7 ac_cv_env_CPPFLAGS_value=-I/usr/local/include ac_cv_prog_ac_ct_RANLIB=ranlib ac_cv_header_memory_h=yes ac_cv_prog_ac_ct_STRIP=strip ac_cv_host=i386-portbld-freebsd4.7 ac_cv_env_host_alias_value=i386-portbld-freebsd4.7 lt_cv_compiler_c_o=yes lt_cv_prog_cc_pic_works=yes lt_cv_file_magic_test_file= ac_cv_prog_CPP='cc -E' ac_cv_build=i386-portbld-freebsd4.7 ac_cv_env_build_alias_value=i386-portbld-freebsd4.7 lt_cv_prog_cc_pic=' -fPIC' lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGISTW][ABCDGISTW]*\)[ ][ ]*\(\)\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2\3 \3/p'\''' lt_cv_deplibs_check_method=pass_all lt_cv_compiler_o_lo=no ac_cv_env_target_alias_value=i386-portbld-freebsd4.7 ac_cv_env_CC_value=cc lt_cv_path_NM=nm ac_cv_env_CPP_set= ac_cv_header_dlfcn_h=yes ac_cv_objext=o ## ----------------- ## ## Output variables. ## ## ----------------- ## ACLOCAL='/usr/ports/graphics/gthumb2/work/gthumb-2.0.1/missing aclocal-1.4' AUTOCONF='autoconf' AUTOHEADER='autoheader' AUTOMAKE='/usr/ports/graphics/gthumb2/work/gthumb-2.0.1/missing automake-1.4' BONOBO_ACTIVATION_REQUIRED='1.0.0' CATALOGS='' CATOBJEXT='' CC='cc' CFLAGS='-O -pipe ' COMPONENT_CFLAGS='' COMPONENT_LIBS='' CPP='cc -E' CPPFLAGS='-I/usr/local/include' DATADIRNAME='' DEFS='' ECHO='echo' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='grep -E' EXEEXT='' EXIF_CFLAGS='' EXIF_LIBS='' GCONFTOOL='' GCONF_SCHEMA_CONFIG_SOURCE='' GCONF_SCHEMA_FILE_DIR='' GETTEXT_PACKAGE='' GLIB_GENMARSHAL='' GLIB_MKENUMS='' GLIB_REQUIRED='2.0.0' GMOFILES='' GMSGFMT='' GNOME_VFS_REQUIRED='2.0.0' GTHUMB_CFLAGS='' GTHUMB_LIBS='' GTK_REQUIRED='2.0.0' INSTALL_DATA='install -c -o root -g wheel -m 444' INSTALL_PROGRAM='install -c -s -o root -g wheel -m 555' INSTALL_SCRIPT='install -c -o root -g wheel -m 555' INSTOBJEXT='' INTLLIBS='' INTLTOOL_CAVES_RULE='' INTLTOOL_DESKTOP_RULE='' INTLTOOL_DIRECTORY_RULE='' INTLTOOL_EXTRACT='' INTLTOOL_KEYS_RULE='' INTLTOOL_MERGE='' INTLTOOL_OAF_RULE='' INTLTOOL_PERL='' INTLTOOL_PONG_RULE='' INTLTOOL_PROP_RULE='' INTLTOOL_SCHEMAS_RULE='' INTLTOOL_SERVER_RULE='' INTLTOOL_SHEET_RULE='' INTLTOOL_SOUNDLIST_RULE='' INTLTOOL_THEME_RULE='' INTLTOOL_UI_RULE='' INTLTOOL_UPDATE='' INTLTOOL_XML_RULE='' JPEG_LIBS='' LDFLAGS='-L/usr/local/lib' LIBBONOBOUI_REQUIRED='2.0.0' LIBBONOBO_REQUIRED='2.0.0' LIBEXIF_REQUIRED='0.5.8' LIBGLADE_REQUIRED='2.0.0' LIBGNOMECANVAS_REQUIRED='2.0.0' LIBGNOMEPRINTUI_REQUIRED='1.110' LIBGNOMEPRINT_REQUIRED='1.110' LIBGNOMEUI_REQUIRED='2.0.0' LIBGNOME_REQUIRED='2.0.0' LIBOBJS='' LIBS='' LIBTOOL='$(SHELL) $(top_builddir)/libtool' LIBXML_REQUIRED='2.4.0' LN_S='ln -s' LTLIBOBJS='' MAKEINFO='makeinfo' MKINSTALLDIRS='' MSGFMT='' OBJEXT='o' ORBIT_CFLAGS='-DORBIT2=1 -pthread -I/usr/local/include/orbit-2.0 -I/usr/local/include/linc-1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include' ORBIT_CONFIG='/usr/local/bin/orbit2-config' ORBIT_IDL='/usr/local/bin/orbit-idl-2' ORBIT_LIBS='-pthread -Wl,--export-dynamic -L/usr/local/lib -lORBit-2 -llinc -lgmodule-2.0 -lgobject-2.0 -lgthread-2.0 -lglib-2.0 -liconv -lm' PACKAGE='gthumb' PACKAGE_BUGREPORT='' PACKAGE_NAME='gthumb' PACKAGE_STRING='gthumb 2.0.1' PACKAGE_TARNAME='gthumb' PACKAGE_VERSION='2.0.1' PATH_SEPARATOR=':' PKG_CONFIG='/usr/local/bin/pkg-config' PNG_LIBS='' POFILES='' POSUB='' PO_IN_DATADIR_FALSE='' PO_IN_DATADIR_TRUE='' RANLIB='ranlib' RENDER_LIBS='' SCHEMAS_INSTALL_FALSE='' SCHEMAS_INSTALL_TRUE='' SET_MAKE='' SHELL='/bin/sh' STRIP='strip' TIFF_LIBS='' USE_NLS='' VERSION='2.0.1' VIEWER_IDL_INCLUDES='' XGETTEXT='' ac_ct_CC='' ac_ct_RANLIB='ranlib' ac_ct_STRIP='strip' bindir='${exec_prefix}/bin' build='i386-portbld-freebsd4.7' build_alias='i386-portbld-freebsd4.7' build_cpu='i386' build_os='freebsd4.7' build_vendor='portbld' datadir='/usr/X11R6/share/gnome' exec_prefix='NONE' host='i386-portbld-freebsd4.7' host_alias='i386-portbld-freebsd4.7' host_cpu='i386' host_os='freebsd4.7' host_vendor='portbld' includedir='${prefix}/include' infodir='${prefix}/info' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' localstatedir='/usr/X11R6/share/gnome' mandir='${prefix}/man' oldincludedir='/usr/include' prefix='/usr/X11R6' program_transform_name='s,x,x,' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' sysconfdir='${prefix}/etc' target_alias='i386-portbld-freebsd4.7' ## ----------- ## ## confdefs.h. ## ## ----------- ## #define HAVE_DLFCN_H 1 #define HAVE_INTTYPES_H 1 #define HAVE_MEMORY_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STRINGS_H 1 #define HAVE_STRING_H 1 #define HAVE_SYS_STAT_H 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_UNISTD_H 1 #define PACKAGE "gthumb" #define PACKAGE_BUGREPORT "" #define PACKAGE_NAME "gthumb" #define PACKAGE_STRING "gthumb 2.0.1" #define PACKAGE_TARNAME "gthumb" #define PACKAGE_VERSION "2.0.1" #define STDC_HEADERS 1 #define VERSION "2.0.1" configure: exit 1 Installed ports: AbiWord-gnome-1.0.4 ImageMagick-5.5.1.4 JX-1.5.3_1 Mesa-3.4.2_2 ORBit-0.5.17 ORBit2-2.6.0 OpenSP-1.5 Sablot-0.96_2 XFree86-4.2.0_1,1 XFree86-Server-4.2.1_4 XFree86-documents-4.2.0 XFree86-font100dpi-4.2.0 XFree86-font75dpi-4.2.0 XFree86-fontCyrillic-4.2.0_4 XFree86-fontDefaultBitmaps-4.2.0 XFree86-fontEncodings-4.2.0 XFree86-fontScalable-4.2.0 XFree86-libraries-4.2.1_5 Xft-2.1_2 a2ps-letter-4.13_1 aalib-1.4.r5_1 acme-2.0.2 acroread-5.06_1 amavisd-20020531_1 amp-0.7.6 ap-utils-1.3.1 apache+mod_ssl-1.3.27+2.8.12 arc-5.21e.8_1 arts++-1-1-a8_1 arts-1.1,1 aspell-0.50.3_1 astyle-1.15.3 at-spi-1.1.8 atk-1.2.2 autobook-1.3 autoconf-2.53_1 autoconf213-2.13.000227_5 automake-1.5,1 automake14-1.4.5_9 autotrace-0.31.1 balsa2-2.0.8 bash-2.05b.004 birda-1.00 bison-1.75 bonobo-1.0.22 bonobo-activation-2.2.1,1 bonobo-conf-0.16 bsd-airtools-0.2 bugbuddy2-2.2.102_1 bzip-0.21 cclient-2002,1 cd2mp3-0.81,1 cdrtools-2.0 cflowd-2-1-b1_5 cidr-2.3.2 code_crusader-2.1.4_1 coldsync-2.2.5 cpdup-1.04 cpuid-3.3 crimson-1.1.3_1 ctags-5.4 cups-base-1.1.18.0_4 cups-pstoraster-7.05.6 curl-7.10.3_1 cvs2cl-2.46 cvsps-1.3.3 cvsup-16.1f cyclone-0.2 cyrus-sasl-2.1.12 dagrab-0.3.5 db3-3.3.11,1 db4-4.0.14_1,1 dhcpconf-0.7.0_2 dia-0.90 djbfft-0.76 docbook-1.2 docbook-241 docbook-3.0 docbook-3.1 docbook-4.0 docbook-4.1 docbook-sk-4.1.2 docbook-xml-4.2 docbook-xsl-1.59.1 docproj-1.10 doxygen-1.2.18 dsssl-docbook-modular-1.73_1,1 eel-1.0.2_1 eel2-2.2.1 enjoympeg-0.4.1 eog2-2.2.0 esound-0.2.29 etherape-gnome-0.8.2_2 ethereal-0.9.7 evolution-1.2.2 expat-1.95.6_1 expect-5.38.0_1 fam-2.6.9_2 fastest_cvsup-0.2.8 fcgi-devkit-2.2.2 ffcall-1.8d ffmpeg-0.4.6_2 fileroller-2.2.1,1 flashplugin-mozilla-0.4.10_2 flashpluginwrapper-0.20021113 flow-tools-0.62 flowscan-1.006_5 fontconfig-2.1_2 fontilus-0.4 fooseti-0.6.6_2 fping-2.4b2 freetype2-2.1.3_1 frontline-0.5.4 fwlogwatch-0.9 g-wrap-1.3.4_1 gail-1.2.0 gaim-esound-0.59.8_1 gaim-esound-20030206 gal-0.23 gal2-1.99.1 galeon2-1.3.2_1 gcalctool-4.1.9_1 gconf-1.0.9_2 gconf-editor-0.4.0 gconf2-2.2.0 gd-1.8.4_6 gd-2.0.1_3 gdbm-1.8.3 gdk-pixbuf-0.22.0 gdkxft-gnome-1.5_1 gdm2-2.4.1.3 gedit2-2.2.0.1 gettext-0.11.5_1 ggv2-1.99.98 ghex2-2.2.0 ghostscript-gnu-7.05_3 gimp-1.3.12,1 gimp-print-4.2.5 gkrellm-2.1.7a_1 glade2-1.1.3_1 gle-3.0.3 glib-1.2.10_8 glib-2.2.1 glibwww-0.2_1 glimmer-1.2.1_1 gmake-3.80 gnet-1.1.4 gnome-icon-theme-1.0.0 gnome-pkgview-0.0.8 gnome-themes-2.2_1 gnome2-2.2.0 gnome2-fifth-toe-2.2.0_3 gnomeapplets-1.4.1 gnomeapplets2-2.2.0_1 gnomeaudio-1.4.0 gnomebasic-0.0.20 gnomecanvas-0.22.0 gnomecontrolcenter-1.4.0.5_1 gnomecontrolcenter2-2.2.0.1 gnomedb-0.2.96_1 gnomedesktop-2.2.0.1 gnomegames2-2.2.0 gnomehier-1.0_8 gnomeicu2-0.98.126_1 gnomelibs-1.4.2_1 gnomemedia2-2.2.1.1_1 gnomemeeting-0.96.0_1 gnomemimedata-2.2.0_1 gnomemm-1.2.4 gnomepanel-2.2.0.1_1 gnomepilot-0.1.71 gnomepilot-conduits-0.9 gnomepim-1.4.9 gnomeprint-0.37 gnomesession-2.2.0.2 gnomespell-0.5 gnomesystemmonitor-2.0.4_1 gnometerminal-2.2.1 gnomeuserdocs2-2.0.5 gnomeutils-1.4.1.3 gnomeutils2-2.2.0.3,1 gnomevfs-1.0.5_4 gnomevfs2-2.2.2 gnucash-1.8.1_3 gnucash-docs-1.8.0 gnumail-1.0.3_1 gnumeric2-1.1.16 gnupg-1.2.1 gnustep-back-0.8.3 gnustep-base-1.5.1_1 gnustep-gui-0.8.3 gnustep-make-1.5.1 gnustep-objc-1.2.2 gob-1.0.12 gob2-2.0.5_1 gpgme-0.3.14 graphviz-1.9 grip-3.0.5 gstreamer-0.6.0 gstreamer-plugins-0.6.0 gtar-1.13.25_5 gtetrinet-0.6.0_1 gthumb2-2.0.1_1 gtk-1.2.10_9 gtk-2.2.1 gtk-engines-0.12_2 gtk-engines2-2.2.0 gtk-thinice-engine-2.0.2 gtkglarea-1.2.2_1 gtkhtml-1.1.8 gtkmm-1.2.8_1 gtkspell2-2.0.2_2 gtop-gnome-1.0.13_1 guile-1.4.1_3 guile-gnome-0.20_6 guile-gtk-0.20_2 guppi-0.40.3_2 hdf-4.1r5 help2man-1.29 hercules-2.16.5 html-4.01 hugelatex-1.0 ical-2.2_1 ickle-gnome-0.3.2 id3lib-3.8.2 id3tool-1.2 imake-4.2.0_1 imap-uw-2002_1,1 imapfilter-0.8.5 imlib-1.9.14_1 intltool-0.25 iso8879-1986 ispell-3.2.06_3 jade-1.2.1_1 jadetex-3.12_1 jakarta-ant-1.5.1_3 jasper-1.600.0 javavmwrapper-1.4 jbigkit-1.4 jdk-1.3.1p8 jdk-doc-1.3.1 jpeg-6b_1 jpgraph-1.11 jpilot-0.99.4 kde-3.1 kdebase-3.1_1 kdegames-3.1 kdegraphics-3.1 kdelibs-3.1 kdemultimedia-3.1 kdenetwork-3.1 kdepim-3.1 kdeutils-3.1 kermit-8.0.206 koffice-1.2.1,1 ksh93-20021221 lame-3.93.1 lcms-1.09 lha-1.14i libIDL-0.8.0_1 liba52-0.7.4 libart_lgpl2-2.3.11 libaudiofile-0.2.3 libbonobo-2.2.0 libbonoboui-2.2.0 libcapplet-1.4.0.5 libdivxdecore-devel-0.4.0.50_1 libdvdcss-1.2.5 libdvdnav-0.1.3 libdvdread-0.9.3 libesmtp-1.0_1,1 libexif-0.5.6 libflash-0.4.10 libfpx-1.2.0.4_1 libgail-gnome-1.0.2_1 libgda-0.2.96_1 libgda2-0.10.0 libghttp-1.0.9 libglade-0.17_2 libglade2-2.0.1_1 libgnome-2.2.0.1 libgnomecanvas-2.2.0.1 libgnomedb-0.10.0 libgnomeprint-2.2.1.1 libgnomeprintui-2.2.1.1 libgnomeui-2.2.0.1 libgnugetopt-1.2 libgphoto2-2.1.1 libgsf-1.7.2 libgtkhtml-2.2.0 libgtop-1.0.13_4 libgtop2-2.0.1_3 libical-0.24 libiconv-1.8_2 libicq2000-0.3.2_1 libijs-0.34 libjtoolbar-0.5.4_1 libjtree-1.1.7_1 libmcal-0.7 libmcrypt-2.5.6_1 libmcve-3.0 libmikmod-esound-3.1.10 libmng-1.0.4 libmpeg2-0.3.1_1 libmrproject-0.9 libofx-0.6.2 libogg-1.0_1,3 libole2-0.2.4 libpanel-1.4.2 librep-0.16.1_1 librsvg-1.0.3_1 librsvg2-2.2.3_1 libsigc++-1.0.4 libslang-1.4.6 libtool-1.3.4_4 libungif-4.1.0b1 libunicode-0.4_3 libusb-0.1.7 libvorbis-1.0_1,3 libwmf-0.2.8 libwnck-2.2.1 libwww-5.4.0 libxine-1.0.b4_1 libxml-1.8.17_1 libxml2-2.5.3 libxslt-1.0.26 libzvt-2.0.1_6 linc-1.0.1 links-0.98,1 linux-flashplugin-5.0r51 linux-jpeg-6b.15_2 linux-openmotif-2.1.30 linux-png-1.0.14_2 linux-realplayer-8.cs2 linux-sun-jdk-1.3.1.06_1 linux-xalf-0.12 linux_base-7.1_2 linuxdoc-1.1 lsof-4.65 lynx-2.8.4.1c lzo-1.08_1 lzop-1.00 m4-1.4_1 mad-esound-0.14.2b_2 medusa-0.5.1 mergeant-0.10.0 metacity-2.4.34 metacity-setup-0.7.1_2 metatheme2-0.9.7_1 mhash-0.8.14 ming-0.2a_1 mkcatalog-1.1 mkisofs-2.0 mm-1.2.1 mod_fastcgi-2.2.12 mod_perl-1.27 mod_php4-4.3.0 mozilla-1.2.1_1,2 mozilla-1.2.1_2 mozilla-1.3b mozilla-1.3b,1 mozilla-headers-1.3b,1 mpg123-esound-0.59r_9 mrproject-0.9 mrtg-2.9.25,1 mutt-devel-1.5.3 nagios-1.0 nagios-plugins-1.3.0.b2 nasm-0.98.33,1 nautilus-gtkhtml-0.3.2_1 nautilus-media-0.2.1 nautilus2-2.2.1 net-snmp-5.0.6 netpbm-10.12 netsaint-plugins-1.2.9.4_1 newt-py22-tcl83-noi18n-0.51.0 nmap-3.00 nspr-4.2_1 nss-3.4.2 oaf-0.6.10_1 ohphone-1.3.5 open-motif-2.2.2_1 openldap-2.0.25_3 openoffice-1.0.2 openssl-0.9.7a opera-6.11.20021129 p5-Apache-AuthCookie-2.011_1 p5-Apache-DBI-0.89 p5-Apache-Session-1.54_1 p5-Archive-Tar-0.23 p5-Archive-Zip-1.05 p5-Authen-SASL-2.02 p5-AxKit-1.6 p5-AxKit-XSP-Cookie-1.41 p5-Bit-Vector-6.3 p5-Boulder-1.30 p5-CGI-Application-2.3 p5-CGI-ArgChecker-0.02 p5-CGI-Cache-1.21 p5-CGI-FastTemplate-1.09 p5-CGI-Lite-2.0 p5-CGI-Minimal-1.09 p5-CGI-SpeedyCGI-2.11 p5-CGI-XMLApplication-1.1.1 p5-CGI-modules-2.76 p5-CGI.pm-2.89,1 p5-Cache-Cache-1.01 p5-Carp-Assert-0.17 p5-Cflow-1.051 p5-Class-Container-0.07 p5-Class-Data-Inheritable-0.02 p5-Class-Date-1.1.3 p5-Class-Fields-0.14 p5-Class-ReturnValue-0.40 p5-Compress-Zlib-1.19 p5-ConfigReader-0.5_1 p5-Convert-TNEF-0.17 p5-Convert-UUlib-0.213 p5-Crypt-DES-2.03 p5-DBD-Pg-1.21 p5-DBI-1.28 p5-DBIx-DataSource-0.02 p5-DBIx-SearchBuilder-0.79 p5-Date-Calc-5.3 p5-Date-DayOfWeek-1.21 p5-Date-Handler-0.19 p5-Date-Leapyear-1.71 p5-Date-Manip-5.40 p5-Date-Pcalc-1.2 p5-DateConvert-0.16 p5-Devel-StackTrace-1.03 p5-Digest-HMAC-1.01 p5-Digest-MD5-2.22 p5-Digest-Nilsimsa-0.06 p5-Digest-SHA1-2.02 p5-Error-0.15 p5-Exception-Class-1.10 p5-FastCGI-0.58 p5-File-Cache-0.16 p5-File-Spec-0.82 p5-File-Temp-0.12_1 p5-Finance-Quote-1.07 p5-Finance-QuoteHist-0.31 p5-FreezeThaw-0.43 p5-Getopt-Declare-1.09 p5-Getopt-Long-2.32 p5-HTML-0.6 p5-HTML-Mason-1.18 p5-HTML-Parser-3.26 p5-HTML-Table-1.15 p5-HTML-TableExtract-1.08 p5-HTML-Tagset-3.03 p5-HTML-Template-2.6 p5-IO-1.20 p5-IO-stringy-2.108 p5-IPC-ShareLite-0.08 p5-LockFile-Simple-0.2.5 p5-Log-Dispatch-2.01 p5-MIME-Base64-2.16 p5-MIME-Lite-2.117 p5-MIME-Tools-5.411a_2 p5-MLDBM-2.01 p5-Mail-Sender-0.8.04 p5-Mail-Sendmail-0.78 p5-Mail-SpamAssassin-2.50 p5-Mail-Tools-1.58 p5-Net-1.12,1 p5-Net-DNS-0.33_1 p5-Net-Daemon-0.36 p5-Net-Patricia-1.010 p5-Net-SNMP-4.0.3_1 p5-Net-Server-0.83 p5-Net-Telnet-3.02 p5-Palm-1.2.4 p5-Params-Validate-0.50 p5-PlRPC-0.2016 p5-PodParser-1.21 p5-Scalar-List-Utils-1.09,1 p5-Storable-2.06 p5-String-Checker-0.03 p5-Test-Harness-2.26 p5-Test-Inline-0.15 p5-Test-Simple-0.47_1 p5-Text-Autoformat-1.04 p5-Text-Balanced-1.89 p5-Text-Bind-0.04 p5-Text-CSV-0.01 p5-Text-CSV_XS-0.23 p5-Text-DoubleMetaphone-0.05 p5-Text-FillIn-0.05 p5-Text-Filter-1.7 p5-Text-Filter-Chain-0.02 p5-Text-FixedLength-0.12 p5-Text-FixedLength-Extra-1.1 p5-Text-Flowchart-1.00 p5-Text-Format-0.52 p5-Text-FormatTable-1.00 p5-Text-Graphics-1.0001 p5-Text-Iconv-1.2_1 p5-Text-Metaphone-1.96 p5-Text-Query-0.07 p5-Text-Repository-1.04 p5-Text-SimpleTemplate-0.36 p5-Text-Template-1.43 p5-Text-Tmpl-0.24 p5-Text-Wrapper-1.000 p5-Tie-IxHash-1.21 p5-Time-HiRes-1.42,1 p5-TimeDate-1.14,1 p5-URI-1.23 p5-Unix-Syslog-0.100 p5-XML-LibXML-1.52 p5-XML-LibXSLT-1.50 p5-XML-NamespaceSupport-1.07 p5-XML-Parser-2.31_1 p5-XML-SAX-0.11 p5-XML-Writer-0.4_1 p5-XML-XPath-1.12 p5-libapreq-1.0 p5-libwww-5.65_1 pan2-0.13.3_1 panelmm-0.3.1 pango-1.2.1 pantomime-1.0.5 pcre-3.9 pdflib-4.0.3 pdftohtml-0.35 pdksh-5.2.14p2 peps-1.0 perl-5.8.0_4 phoenix-0.5_4 pilot-link-0.11.7_1 pine-4.53 pkgconfig-0.15.0 pkgdb.db plotutils-2.4.1 pmap-20021014 png-1.2.5_2 popt-1.6.4 portupgrade-20030217_2 postgresql-7.3.2_1 postgresql-jdbc-7.3.2_1 postgresql_autodoc-1.01 procmap-1.0 psiconv-0.8.3 pstoedit-3.33 psutils-letter-1.17_1 pth-2.0.0 py-gnome-1.4.4_1 py-gtk-0.6.10 py22-expat-2.2.2_2 py22-numeric-21.0 python-2.2.2_2 qstat-2.5.c qt-3.1.1_4 racoon-20021120a radiusclient-0.3.2 rancid-2.2.2_1 razor-agents-2.22 rdesktop-1.2b1 rep-gtk-gnome-0.15_1 rep-gtk2-0.17_1,1 rpm-3.0.6_6 rrdtool-1.0.41 ruby-1.6.8.2003.01.19 ruby-bdb1-0.1.8 ruby-rdoc-0.0.0.b2 ruby-shim-ruby18-1.8.0.p1 sane-backends-1.0.11 sane-frontends-1.0.10 sawfish-gnome-1.2 sawfish2-1.2_4,2 scr2png-1.1 scr2txt-1.1 scrollkeeper-0.3.11_8,1 sdl-1.2.5_1 sdocbook-xml-4.1.2.5 seahorse-0.7.0 sed_inplace-2002.10.19 seti_applet-0.4.1_1 setiathome-3.03_5 sgmlformat-1.7_2 slib-2d1_2 sma-1.3.1 smpeg-0.4.4 sodipodi-0.31 soup-0.7.11 sox-12.17.3_1 speex-1.0.r2,1 startup-notification-0.5_1 stickynotes_applet-1.0.11 stlport-gcc-4.5.3_1 sudo-1.6.6_1 svgalib-1.4.2_1 swig-1.3.16 syncmal-0.71 tcl-8.2.3_2 tcl-8.3.5 teTeX-2.0.1 tidy-20000804_2 tiff-3.5.7 tightvnc-1.2.8 tk-8.2.3_1 tk-8.3.5 totem-0.90.0_1 trn-4.0.b76 ucd-snmp-4.2.6 unarj-2.43_1 unrar-3.11,1 unzip-5.50 urwfonts-1.0 uulib-0.5.18 uvscan_dat-4248 vim-6.1.343 vlc-0.4.4 vte-0.10.23 wget-1.8.2_2 win32-codecs-011002.1.0.90.p7 wrapper-1.0_2 xanim-2.92.0 xchat2-2.0.0 xearth-1.1 xfishtank-2.2 xhtml-1.0.20000126 xine-0.9.18 xkeycaps-2.46_1 xmms-esound-gnome-1.2.7_3 xmovie-1.9.8.1 xmpeg3-1.0 xscreensaver-gnome-4.08 xv-3.10a_3 xwipower-20000623_2 yaz-1.9.2 yelp-2.2.0 zip-2.3_1 zoo-2.10.1 Note, that I really have XFree86 4.2.99.901 (4.3.0 RC1) installed, but I don't think that's the issue here. /etc/make.conf: WITH_PORTSSL=yes WITH_MOZILLA=mozilla-devel-gtk2 XFREE86_VERSION= 4 SUP_UPDATE= yes SUP= /usr/local/bin/cvsup SUPFLAGS= -g -L 2 SUPHOST= cvsup9.FreeBSD.org SUPFILE= /etc/stable-supfile PORTSSUPFILE= /etc/ports-supfile DOCSUPFILE= /etc/doc-supfile #KERNCONF=LERLAPTOP FW2-MSV FW LERBSD CHEERCO FW-MSV #KERNCONF=LERLAPTOP LERBSD FW KERNCONF=LERLAPTOP #KERNCONF=CHEERCO WITH_MUTT_SSL=YES WITH_SSL=YES WITH_SSL_AND_PLAINTEXT=YES WITH_GTK=YES WITH_FULL_MOZILLA=yes WITH_ALL_IMAPUTILS=YES WITH_ALL=YES WITH_OPTIMIZED_BYTESWAP=YES #WITH_OPTIMIZED_CFLAGS=YES COMPAT1X= yes COMPAT20= yes COMPAT21= yes COMPAT22= yes COMPAT3X= yes COMPAT4X= yes WITH_MILTER= yes WANT_GNOME= yes WITH_SPAMASSASSIN= yes MAKE_IDEA= yes HAVE_MOTIF= yes MOTIF_STATIC= yes # To enable installing suidperl with the setuid bit turned on ENABLE_SUIDPERL= true PERL_VERSION=5.00503 JADETEX= yes WITH_POSTGRES=yes ASPELL_EN=yes DB_TYPE=Pg # -- use.perl generated deltas -- # HAVE_LATEX=yes POSTGRESQL_PORT=databases/postgresql7 WITH_CALENDAR=yes # -- use.perl generated deltas -- # # Created: Wed Oct 30 21:41:41 2002 # Setting to use base perl from ports: PERL_VER=5.8.0 PERL_VERSION=5.8.0 PERL_ARCH=mach NOPERL=yo NO_PERL=yo NO_PERL_WRAPPER=yo #@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@SASL@@@@@@@@@@@@@@@@@@@@@@@@@@@@ # Add SMTP AUTH support to Sendmail SENDMAIL_CFLAGS+= -I/usr/local/include -DSASL=2 SENDMAIL_LDFLAGS+= -L/usr/local/lib SENDMAIL_LDADD+= -lsasl2 #@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@SASL@@@@@@@@@@@@@@@@@@@@@@@@@@@@ >How-To-Repeat: See above >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 1:48:49 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F02137B401; Sun, 23 Feb 2003 01:48:48 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 304BE43FCB; Sun, 23 Feb 2003 01:48:48 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1N9mmNS029862; Sun, 23 Feb 2003 01:48:48 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1N9mlYv029857; Sun, 23 Feb 2003 01:48:47 -0800 (PST) Date: Sun, 23 Feb 2003 01:48:47 -0800 (PST) From: Edwin Groothuis Message-Id: <200302230948.h1N9mlYv029857@freefall.freebsd.org> To: roland.jesse@gmx.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48276: devel/qextmdi: Add "-kde" suffix if compiling with KDE support Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: devel/qextmdi: Add "-kde" suffix if compiling with KDE support State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 01:48:20 PST 2003 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48276 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 1:50:15 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3210337B406 for ; Sun, 23 Feb 2003 01:50:14 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00CF243FBD for ; Sun, 23 Feb 2003 01:50:12 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1N9oCNS029906 for ; Sun, 23 Feb 2003 01:50:12 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1N9oCoW029905; Sun, 23 Feb 2003 01:50:12 -0800 (PST) Date: Sun, 23 Feb 2003 01:50:12 -0800 (PST) Message-Id: <200302230950.h1N9oCoW029905@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/41619: New port x11-toolkits/SoQt (1.0.1) Reply-To: Edwin Groothuis Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/41619; it has been noted by GNATS. From: Edwin Groothuis To: freebsd-gnats-submit@FreeBSD.org, roland.jesse@gmx.net Cc: Subject: Re: ports/41619: New port x11-toolkits/SoQt (1.0.1) Date: Sun, 23 Feb 2003 20:32:44 +1100 I can't commit this one until graphics/Coin compiles on -current: http://bento.freebsd.org/errorlogs/i386-5-full/Coin-1.0.3.log To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 2:20: 9 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 68CB537B401 for ; Sun, 23 Feb 2003 02:20:07 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 703B143FD7 for ; Sun, 23 Feb 2003 02:20:06 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NAK6NS039937 for ; Sun, 23 Feb 2003 02:20:06 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NAK65H039936; Sun, 23 Feb 2003 02:20:06 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 221D137B401 for ; Sun, 23 Feb 2003 02:19:20 -0800 (PST) Received: from mailhost.stack.nl (vaak.stack.nl [131.155.140.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2858443FD7 for ; Sun, 23 Feb 2003 02:19:19 -0800 (PST) (envelope-from johans@stack.nl) Received: by mailhost.stack.nl (Postfix, from userid 65534) id 177901F0F7; Sun, 23 Feb 2003 11:19:18 +0100 (CET) Received: from mailhost.gletsjer.net (coyote.ipv6.stack.nl [2001:610:1108:5202:200:e8ff:fe6a:41db]) by mailhost.stack.nl (Postfix) with ESMTP id 4A9991F001 for ; Sun, 23 Feb 2003 11:19:17 +0100 (CET) Received: by mailhost.gletsjer.net (Postfix, from userid 801) id A22263D16; Sat, 22 Feb 2003 20:37:54 +0100 (CET) Message-Id: <20030222193754.A22263D16@mailhost.gletsjer.net> Date: Sat, 22 Feb 2003 20:37:54 +0100 (CET) From: Johan van Selst Reply-To: Johan van Selst To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48588: [maintainer update] mail/chk4mail to version 2.14 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48588 >Category: ports >Synopsis: [maintainer update] mail/chk4mail to version 2.14 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Feb 23 02:20:05 PST 2003 >Closed-Date: >Last-Modified: >Originator: Johan van Selst >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: FreeBSD coyote.gletsjer.net 4.7-STABLE FreeBSD 4.7-STABLE #0: Fri Jan 31 11:04:51 CET 2003 johans@coyote.gletsjer.net:/usr/src/sys/compile/coyote i386 >Description: Update of chk4mail to version 2.14 minor changes to previous version >How-To-Repeat: >Fix: diff -ruN chk4mail.old/Makefile chk4mail/Makefile --- chk4mail.old/Makefile Sun Jan 19 01:41:34 2003 +++ chk4mail/Makefile Sat Feb 22 20:19:59 2003 @@ -6,7 +6,7 @@ # PORTNAME= chk4mail -PORTVERSION= 2.12 +PORTVERSION= 2.14 CATEGORIES= mail MASTER_SITES= ftp://ftp.stack.nl/pub/users/johans/chk4mail/ \ ftp://mud.stack.nl/pub/chk4mail/ diff -ruN chk4mail.old/distinfo chk4mail/distinfo --- chk4mail.old/distinfo Sun Jan 19 01:41:34 2003 +++ chk4mail/distinfo Sat Feb 22 20:02:51 2003 @@ -1 +1 @@ -MD5 (chk4mail-2.12.tar.gz) = 690ce9f97af286c6cfdcaf6b45789aa3 +MD5 (chk4mail-2.14.tar.gz) = 799a281fcc1dca75ea9e52ff009ba85d >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 2:37: 4 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 40A0737B401; Sun, 23 Feb 2003 02:37:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59FCD43FE0; Sun, 23 Feb 2003 02:37:03 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (leeym@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NAb3NS044268; Sun, 23 Feb 2003 02:37:03 -0800 (PST) (envelope-from leeym@freefall.freebsd.org) Received: (from leeym@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NAb0va044264; Sun, 23 Feb 2003 02:37:00 -0800 (PST) Date: Sun, 23 Feb 2003 02:37:00 -0800 (PST) From: Yen-Ming Lee Message-Id: <200302231037.h1NAb0va044264@freefall.freebsd.org> To: redfox@Fluffy.Khv.RU, leeym@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48583: Fix typo in ftp/proftpd/Makefile Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Fix typo in ftp/proftpd/Makefile State-Changed-From-To: open->closed State-Changed-By: leeym State-Changed-When: Sun Feb 23 02:37:00 PST 2003 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48583 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 2:39:13 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE8B237B401; Sun, 23 Feb 2003 02:39:12 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4FF6D43F93; Sun, 23 Feb 2003 02:39:12 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NAdCNS044361; Sun, 23 Feb 2003 02:39:12 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NAd9wB044351; Sun, 23 Feb 2003 02:39:09 -0800 (PST) Date: Sun, 23 Feb 2003 02:39:09 -0800 (PST) From: Edwin Groothuis Message-Id: <200302231039.h1NAd9wB044351@freefall.freebsd.org> To: wtp@kryptos.mud.pl, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48265: bad md5 control sum in distinfo of tin port Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: bad md5 control sum in distinfo of tin port State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 02:38:59 PST 2003 State-Changed-Why: Fixed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48265 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 2:43:26 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 98EAA37B401; Sun, 23 Feb 2003 02:43:25 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C43643F93; Sun, 23 Feb 2003 02:43:25 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (leeym@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NAhPNS046466; Sun, 23 Feb 2003 02:43:25 -0800 (PST) (envelope-from leeym@freefall.freebsd.org) Received: (from leeym@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NAhPHc046462; Sun, 23 Feb 2003 02:43:25 -0800 (PST) Date: Sun, 23 Feb 2003 02:43:25 -0800 (PST) From: Yen-Ming Lee Message-Id: <200302231043.h1NAhPHc046462@freefall.freebsd.org> To: johans@stack.nl, leeym@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48588: [maintainer update] mail/chk4mail to version 2.14 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [maintainer update] mail/chk4mail to version 2.14 State-Changed-From-To: open->closed State-Changed-By: leeym State-Changed-When: Sun Feb 23 02:43:24 PST 2003 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48588 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 2:48:56 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E55E137B405; Sun, 23 Feb 2003 02:48:55 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8799543FBD; Sun, 23 Feb 2003 02:48:55 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (leeym@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NAmtNS046604; Sun, 23 Feb 2003 02:48:55 -0800 (PST) (envelope-from leeym@freefall.freebsd.org) Received: (from leeym@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NAmte7046600; Sun, 23 Feb 2003 02:48:55 -0800 (PST) Date: Sun, 23 Feb 2003 02:48:55 -0800 (PST) From: Yen-Ming Lee Message-Id: <200302231048.h1NAmte7046600@freefall.freebsd.org> To: anders@andersa.net, leeym@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48585: mail/getmail update to latest version Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: mail/getmail update to latest version State-Changed-From-To: open->closed State-Changed-By: leeym State-Changed-When: Sun Feb 23 02:48:54 PST 2003 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48585 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 2:58:49 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6ADA837B401; Sun, 23 Feb 2003 02:58:48 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F22F43FB1; Sun, 23 Feb 2003 02:58:48 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (leeym@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NAwlNS048782; Sun, 23 Feb 2003 02:58:47 -0800 (PST) (envelope-from leeym@freefall.freebsd.org) Received: (from leeym@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NAwlEx048778; Sun, 23 Feb 2003 02:58:47 -0800 (PST) Date: Sun, 23 Feb 2003 02:58:47 -0800 (PST) From: Yen-Ming Lee Message-Id: <200302231058.h1NAwlEx048778@freefall.freebsd.org> To: rodrigc@attbi.com, leeym@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48568: www/neon, update to 0.23.7 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: www/neon, update to 0.23.7 State-Changed-From-To: open->closed State-Changed-By: leeym State-Changed-When: Sun Feb 23 02:58:47 PST 2003 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48568 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 3:10: 8 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D2F137B405 for ; Sun, 23 Feb 2003 03:10:02 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C58543FE1 for ; Sun, 23 Feb 2003 03:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NBA1NS054604 for ; Sun, 23 Feb 2003 03:10:01 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NBA1t6054603; Sun, 23 Feb 2003 03:10:01 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D798137B401 for ; Sun, 23 Feb 2003 03:00:54 -0800 (PST) Received: from kcwu.dyndns.org (u142-187.u61-70.giga.net.tw [61.70.142.187]) by mx1.FreeBSD.org (Postfix) with ESMTP id 20CA143FDD for ; Sun, 23 Feb 2003 03:00:53 -0800 (PST) (envelope-from kcwu@kcwu.dyndns.org) Received: from kcwu.dyndns.org (m722 [127.0.0.1]) by kcwu.dyndns.org (8.12.6/8.12.6) with ESMTP id h1NB0UVc099956 for ; Sun, 23 Feb 2003 19:00:31 +0800 (CST) (envelope-from kcwu@kcwu.dyndns.org) Received: (from kcwu@localhost) by kcwu.dyndns.org (8.12.6/8.12.6/Submit) id h1NB0Tv6099955; Sun, 23 Feb 2003 19:00:29 +0800 (CST) Message-Id: <200302231100.h1NB0Tv6099955@kcwu.dyndns.org> Date: Sun, 23 Feb 2003 19:00:29 +0800 (CST) From: Kuang-che Wu Reply-To: Kuang-che Wu To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48589: maintainer update: math/kseg Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48589 >Category: ports >Synopsis: maintainer update: math/kseg >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Feb 23 03:10:00 PST 2003 >Closed-Date: >Last-Modified: >Originator: Kuang-che Wu >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD m722 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Fri Jan 24 17:19:52 CST 2003 root@m722:/usr/obj/usr/src/sys/M722 i386 >Description: Update to 0.352 >How-To-Repeat: >Fix: diff -urN kseg/Makefile kseg.new/Makefile --- kseg/Makefile Sat Feb 22 13:43:40 2003 +++ kseg.new/Makefile Sun Feb 23 18:31:32 2003 @@ -6,7 +6,7 @@ # PORTNAME= kseg -PORTVERSION= 0.351 +PORTVERSION= 0.352 CATEGORIES= math graphics MASTER_SITES= http://www.mit.edu/~ibaran/ @@ -17,18 +17,18 @@ USE_X_PREFIX= yes USE_REINPLACE= yes -pre-configure: - ${REINPLACE_CMD} -e "s@\$$(QTDIR)@${QT_PREFIX}@; s@^CC=@#CC=@; s@-O2@${CFLAGS} ${PTHREAD_CFLAGS}@" ${WRKSRC}/Makefile ${WRKSRC}/formula/Makefile +pre-patch: + ${REINPLACE_CMD} -e "s@\$$(QTDIR)@${QT_PREFIX}@; s@^CC =@#CC =@; s@-O2@${CFLAGS} ${PTHREAD_CFLAGS}@" ${WRKSRC}/Makefile ${WRKSRC}/formula/Makefile ${REINPLACE_CMD} -e "s@-lqt@-lqt-mt ${PTHREAD_LIBS}@; " ${WRKSRC}/Makefile do-install: ${INSTALL_PROGRAM} ${WRKSRC}/kseg ${PREFIX}/bin ${MKDIR} ${PREFIX}/lib/X11/kseg ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/lib/X11/kseg -.for TRANS in de en es fr hu nb pt xx +.for TRANS in de en es fr hu nb nl pt xx ${INSTALL_DATA} ${WRKSRC}/kseg_${TRANS}.qm ${PREFIX}/lib/X11/kseg .endfor -.for TRANS in en +.for TRANS in en es ${INSTALL_DATA} ${WRKSRC}/kseg_help_${TRANS}.html ${PREFIX}/lib/X11/kseg .endfor ${MKDIR} ${PREFIX}/lib/X11/kseg/examples diff -urN kseg/distinfo kseg.new/distinfo --- kseg/distinfo Sat Feb 22 13:43:40 2003 +++ kseg.new/distinfo Sun Feb 23 18:25:08 2003 @@ -1 +1 @@ -MD5 (kseg-0.351.tar.gz) = 4ae2a563eab5f193465af2ef3b3cf98c +MD5 (kseg-0.352.tar.gz) = b50c7de75004bb1bbc95ab32d7ede9c4 diff -urN kseg/pkg-plist kseg.new/pkg-plist --- kseg/pkg-plist Sat Feb 22 13:43:40 2003 +++ kseg.new/pkg-plist Sun Feb 23 18:24:27 2003 @@ -34,7 +34,9 @@ lib/X11/kseg/kseg_fr.qm lib/X11/kseg/kseg_hu.qm lib/X11/kseg/kseg_help_en.html +lib/X11/kseg/kseg_help_es.html lib/X11/kseg/kseg_nb.qm +lib/X11/kseg/kseg_nl.qm lib/X11/kseg/kseg_pt.qm lib/X11/kseg/kseg_xx.qm @dirrm lib/X11/kseg/examples >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 3:20: 9 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2C1337B405 for ; Sun, 23 Feb 2003 03:20:05 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F5A643FE1 for ; Sun, 23 Feb 2003 03:20:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NBK3NS056853 for ; Sun, 23 Feb 2003 03:20:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NBK37f056852; Sun, 23 Feb 2003 03:20:03 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4362C37B401 for ; Sun, 23 Feb 2003 03:18:27 -0800 (PST) Received: from net2.dinoex.sub.org (net2.dinoex.de [212.184.201.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 417DD43F3F for ; Sun, 23 Feb 2003 03:18:25 -0800 (PST) (envelope-from dm@home.dinoex.sub.de) Received: from home.dinoex.sub.de (home [217.6.200.196]) by net2.dinoex.sub.org (8.12.6/8.12.6) with ESMTP id h1NBHwBH009683 for ; Sun, 23 Feb 2003 12:17:59 +0100 (CET) (envelope-from dm@home.dinoex.sub.de) Received: (from dm@localhost) by home.dinoex.sub.de (8.12.7/8.12.6/Submit) id h1NBIUSQ098082; Sun, 23 Feb 2003 12:18:30 +0100 (CET) (envelope-from dm) Message-Id: <200302231118.h1NBIUSQ098082@home.dinoex.sub.de> Date: Sun, 23 Feb 2003 12:18:30 +0100 (CET) From: dirk.meyer@dinoex.sub.org Reply-To: dirk.meyer@dinoex.sub.org To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48590: cvs checkout fails in jail on bento Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48590 >Category: ports >Synopsis: cvs checkout fails in jail on bento >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Feb 23 03:20:02 PST 2003 >Closed-Date: >Last-Modified: >Originator: Dirk Meyer >Release: FreeBSD 4.7-STABLE i386 >Organization: privat >Environment: Package buildung on bento >Description: in jail on bento the /tmp does not allow cvs extraction. >How-To-Repeat: http://bento.freebsd.org/errorlogs/i386-4-latest/freebsd-uucp-1.06.1.10_1.log >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 3:24:30 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA11337B401; Sun, 23 Feb 2003 03:24:29 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C63143FCB; Sun, 23 Feb 2003 03:24:29 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NBOTNS058857; Sun, 23 Feb 2003 03:24:29 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NBOSjv058853; Sun, 23 Feb 2003 03:24:28 -0800 (PST) Date: Sun, 23 Feb 2003 03:24:28 -0800 (PST) From: Edwin Groothuis Message-Id: <200302231124.h1NBOSjv058853@freefall.freebsd.org> To: dom@happygiraffe.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48241: Latest version of www/p5-AxKit Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Latest version of www/p5-AxKit State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 03:24:23 PST 2003 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48241 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 3:37: 5 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 51A3A37B47E; Sun, 23 Feb 2003 03:37:01 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2368D43FAF; Sun, 23 Feb 2003 03:37:01 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from freefall.freebsd.org (dinoex@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NBb1NS060985; Sun, 23 Feb 2003 03:37:01 -0800 (PST) (envelope-from dinoex@freefall.freebsd.org) Received: (from dinoex@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NBb03L060981; Sun, 23 Feb 2003 03:37:00 -0800 (PST) Date: Sun, 23 Feb 2003 03:37:00 -0800 (PST) From: Dirk Meyer Message-Id: <200302231137.h1NBb03L060981@freefall.freebsd.org> To: dinoex@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org Subject: Re: ports/48590: cvs checkout fails in jail on bento Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: cvs checkout fails in jail on bento Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: dinoex Responsible-Changed-When: Sun Feb 23 03:35:59 PST 2003 Responsible-Changed-Why: bento issue may this be taken care of in sake of our users http://www.freebsd.org/cgi/query-pr.cgi?pr=48590 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 3:50:26 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C59D37B406 for ; Sun, 23 Feb 2003 03:50:24 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 712A843FEA for ; Sun, 23 Feb 2003 03:50:15 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NBoFNS063061 for ; Sun, 23 Feb 2003 03:50:15 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NBoFZv063060; Sun, 23 Feb 2003 03:50:15 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F379C37B401 for ; Sun, 23 Feb 2003 03:46:15 -0800 (PST) Received: from sushi.andersa.net (as1-3-8.ml.g.bonet.se [217.215.159.112]) by mx1.FreeBSD.org (Postfix) with ESMTP id D752443FDF for ; Sun, 23 Feb 2003 03:46:14 -0800 (PST) (envelope-from anders@sushi.andersa.net) Received: from sushi.andersa.net (localhost [127.0.0.1]) by sushi.andersa.net (8.12.7/8.12.7) with ESMTP id h1NBkBrs000411 for ; Sun, 23 Feb 2003 12:46:13 +0100 (CET) (envelope-from anders@sushi.andersa.net) Received: (from anders@localhost) by sushi.andersa.net (8.12.7/8.12.7/Submit) id h1NBC0fi002460; Sun, 23 Feb 2003 12:12:00 +0100 (CET) Message-Id: <200302231112.h1NBC0fi002460@sushi.andersa.net> Date: Sun, 23 Feb 2003 12:12:00 +0100 (CET) From: Anders Andersson Reply-To: "Anders Andersson " To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48591: irc/epic4 - make portline happy Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48591 >Category: ports >Synopsis: irc/epic4 - make portline happy >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Feb 23 03:50:14 PST 2003 >Closed-Date: >Last-Modified: >Originator: Anders Andersson >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD sushi.andersa.net 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Sun Feb 23 00:23:20 CET 2003 toor@sushi.andersa.net:/usr/obj/usr/src/sys/SUSHI i386 >Description: make portlint happy and change some ugly space -> tab. >How-To-Repeat: >Fix: --- epic4.diff begins here --- Index: epic4/Makefile =================================================================== RCS file: /home/ncvs/ports/irc/epic4/Makefile,v retrieving revision 1.43 diff -u -r1.43 Makefile --- epic4/Makefile 20 Feb 2003 01:27:03 -0000 1.43 +++ epic4/Makefile 23 Feb 2003 11:09:26 -0000 @@ -23,8 +23,8 @@ DIST_SUBDIR= epic4 EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} -PATCH_SITES= http://www.t17.ds.pwr.wroc.pl/~misiek/ipv6/ -PATCHFILES= ${DISTNAME}-ipv6-20010418.patch.gz +PATCH_SITES= http://www.t17.ds.pwr.wroc.pl/~misiek/ipv6/ +PATCHFILES= ${DISTNAME}-ipv6-20010418.patch.gz PATCH_DIST_STRIP= -p1 MAINTAINER?= anders@andersa.net --- epic4.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 4:20:45 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5157737B406 for ; Sun, 23 Feb 2003 04:20:13 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E76743FBD for ; Sun, 23 Feb 2003 04:20:12 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NCKCNS077193 for ; Sun, 23 Feb 2003 04:20:12 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NCKCkk077192; Sun, 23 Feb 2003 04:20:12 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2764337B40D for ; Sun, 23 Feb 2003 04:13:44 -0800 (PST) Received: from mail.netbeat.de (mail.netbeat.de [62.208.140.19]) by mx1.FreeBSD.org (Postfix) with SMTP id 851F943FD7 for ; Sun, 23 Feb 2003 04:13:38 -0800 (PST) (envelope-from olivleh1@avocado.salatschuessel.net) Received: (qmail 7275 invoked from network); 23 Feb 2003 12:32:58 -0000 Received: from p5084bc76.dip.t-dialin.net (HELO avocado.salatschuessel.net) (80.132.188.118) by mail.netbeat.de with SMTP; 23 Feb 2003 12:32:58 -0000 Received: (qmail 47423 invoked by uid 0); 23 Feb 2003 12:13:10 -0000 Message-Id: <20030223121310.47422.qmail@avocado.salatschuessel.net> Date: 23 Feb 2003 12:13:10 -0000 From: Oliver Lehmann Reply-To: Oliver Lehmann To: FreeBSD-gnats-submit@FreeBSD.org Cc: Oliver Lehmann X-Send-Pr-Version: 3.113 Subject: ports/48592: update-port: graphics/netpbm Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48592 >Category: ports >Synopsis: update-port: graphics/netpbm >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Feb 23 04:20:11 PST 2003 >Closed-Date: >Last-Modified: >Originator: Oliver Lehmann >Release: FreeBSD 5.0-RELEASE-p2 i386 >Organization: >Environment: System: FreeBSD avocado.salatschuessel.net 5.0-RELEASE-p2 FreeBSD 5.0-RELEASE-p2 #2: Sun Feb 23 02:11:50 CET 2003 olivleh1@avocado.salatschuessel.net:/usr/obj/usr/src/sys/AVOCADO i386 >Description: version: 10.12 -> 10.14 >How-To-Repeat: >Fix: --- netpbm.patch begins here --- diff -ruN netpbm.old/Makefile /usr/ports/graphics/netpbm/Makefile --- netpbm.old/Makefile Sun Feb 23 12:54:24 2003 +++ /usr/ports/graphics/netpbm/Makefile Sun Feb 23 12:54:30 2003 @@ -6,7 +6,7 @@ # PORTNAME= netpbm -PORTVERSION= 10.12 +PORTVERSION= 10.14 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff -ruN netpbm.old/distinfo /usr/ports/graphics/netpbm/distinfo --- netpbm.old/distinfo Sun Feb 23 12:54:24 2003 +++ /usr/ports/graphics/netpbm/distinfo Sun Feb 23 13:05:27 2003 @@ -1 +1 @@ -MD5 (netpbm-10.12.tgz) = 0b06b21ad290bbb958a9693d7e057cee +MD5 (netpbm-10.14.tgz) = ed1f843e7baeacfe0e50a2ca9b64914c diff -ruN netpbm.old/files/patch-lib::Makefile /usr/ports/graphics/netpbm/files/patch-lib::Makefile --- netpbm.old/files/patch-lib::Makefile Sun Feb 23 12:54:24 2003 +++ /usr/ports/graphics/netpbm/files/patch-lib::Makefile Sun Feb 23 13:01:44 2003 @@ -24,7 +24,7 @@ + $(CC) -c $(INCLUDE) $(CFLAGS) $(CADD) -o $@ $< + +$(SHLIBOBJECTS): %.lo: %.c $(HEADERLINKS) - $(CC) -c $(INCLUDE) $(CFLAGS) $(CFLAGS_SHLIB) $(CADD) -o $@ $< + $(CC) -c $(INCLUDES) $(CFLAGS) $(CFLAGS_SHLIB) $(CADD) -o $@ $< MAJ = $(NETPBM_MAJOR_RELEASE) MIN = $(NETPBM_MINOR_RELEASE) diff -ruN netpbm.old/pkg-plist /usr/ports/graphics/netpbm/pkg-plist --- netpbm.old/pkg-plist Sun Feb 23 12:54:24 2003 +++ /usr/ports/graphics/netpbm/pkg-plist Sun Feb 23 13:10:21 2003 @@ -39,9 +39,12 @@ bin/pamcut bin/pamdeinterlace bin/pamdice +bin/pamedge bin/pamendian bin/pamfile +bin/pamflip bin/pamfunc +bin/pamlookup bin/pamoil bin/pamseq bin/pamslice @@ -202,6 +205,7 @@ bin/ppmshift bin/ppmspread bin/ppmtoacad +bin/ppmtoarbtxt bin/ppmtobmp bin/ppmtoeyuv bin/ppmtogif @@ -231,6 +235,7 @@ bin/ppmtoyuv bin/ppmtoyuvsplit bin/ppmtv +bin/ppmwheel bin/psidtopgm bin/pstopnm bin/qrttoppm --- netpbm.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 4:24:38 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8AEB737B408; Sun, 23 Feb 2003 04:24:36 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D880343FE1; Sun, 23 Feb 2003 04:24:24 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (leeym@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NCOONS079206; Sun, 23 Feb 2003 04:24:24 -0800 (PST) (envelope-from leeym@freefall.freebsd.org) Received: (from leeym@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NCOOjX079202; Sun, 23 Feb 2003 04:24:24 -0800 (PST) Date: Sun, 23 Feb 2003 04:24:24 -0800 (PST) From: Yen-Ming Lee Message-Id: <200302231224.h1NCOOjX079202@freefall.freebsd.org> To: anders@sushi.andersa.net, leeym@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48591: irc/epic4 - make portline happy Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: irc/epic4 - make portline happy State-Changed-From-To: open->closed State-Changed-By: leeym State-Changed-When: Sun Feb 23 04:24:24 PST 2003 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48591 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 5:20:10 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AFDA037B401 for ; Sun, 23 Feb 2003 05:20:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B39743FD7 for ; Sun, 23 Feb 2003 05:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NDK2NS093447 for ; Sun, 23 Feb 2003 05:20:02 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NDK2DS093446; Sun, 23 Feb 2003 05:20:02 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D9B2637B401 for ; Sun, 23 Feb 2003 05:20:00 -0800 (PST) Received: from mail.netbeat.de (mail.netbeat.de [62.208.140.19]) by mx1.FreeBSD.org (Postfix) with SMTP id 898C543F3F for ; Sun, 23 Feb 2003 05:19:59 -0800 (PST) (envelope-from olivleh1@avocado.salatschuessel.net) Received: (qmail 6850 invoked from network); 23 Feb 2003 13:39:19 -0000 Received: from p5084bc76.dip.t-dialin.net (HELO avocado.salatschuessel.net) (80.132.188.118) by mail.netbeat.de with SMTP; 23 Feb 2003 13:39:19 -0000 Received: (qmail 52429 invoked by uid 0); 23 Feb 2003 13:19:31 -0000 Message-Id: <20030223131931.52428.qmail@avocado.salatschuessel.net> Date: 23 Feb 2003 13:19:31 -0000 From: Oliver Lehmann Reply-To: Oliver Lehmann To: FreeBSD-gnats-submit@FreeBSD.org Cc: Oliver Lehmann X-Send-Pr-Version: 3.113 Subject: ports/48593: update port: math/fxt Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48593 >Category: ports >Synopsis: update port: math/fxt >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Feb 23 05:20:02 PST 2003 >Closed-Date: >Last-Modified: >Originator: Oliver Lehmann >Release: FreeBSD 5.0-RELEASE-p2 i386 >Organization: >Environment: System: FreeBSD avocado.salatschuessel.net 5.0-RELEASE-p2 FreeBSD 5.0-RELEASE-p2 #2: Sun Feb 23 02:11:50 CET 2003 olivleh1@avocado.salatschuessel.net:/usr/obj/usr/src/sys/AVOCADO i386 >Description: version: 2002.12.16 -> 2003.02.18 tested with: 470101 and 500043 new files: files/patch-include::jjassert.h please close: ports/47550 the old tgz file is not longer available (-> bento) >How-To-Repeat: >Fix: --- fxt.patch begins here --- diff -ruN fxt.old/Makefile /usr/ports/math/fxt/Makefile --- fxt.old/Makefile Sun Feb 23 14:00:24 2003 +++ /usr/ports/math/fxt/Makefile Sun Feb 23 14:13:17 2003 @@ -7,7 +7,7 @@ # PORTNAME= fxt -PORTVERSION= 2002.12.16 +PORTVERSION= 2003.02.18 CATEGORIES= math MASTER_SITES= http://www.jjj.de/fxt/ EXTRACT_SUFX= .tgz @@ -17,7 +17,6 @@ WRKSRC= ${WRKDIR}/${PORTNAME} -USE_GCC= 3.1 USE_GMAKE= yes MAKEFILE= makefile diff -ruN fxt.old/distinfo /usr/ports/math/fxt/distinfo --- fxt.old/distinfo Mon Jan 27 16:06:34 2003 +++ /usr/ports/math/fxt/distinfo Sun Feb 23 13:59:36 2003 @@ -1 +1 @@ -MD5 (fxt-2002.12.16.tgz) = 2794f9ff63b8c4c79e46e923a3c02362 +MD5 (fxt-2003.02.18.tgz) = e9941264cf6f6755f88ebc92063608ed diff -ruN fxt.old/files/patch-include::jjassert.h /usr/ports/math/fxt/files/patch-include::jjassert.h --- fxt.old/files/patch-include::jjassert.h Thu Jan 1 01:00:00 1970 +++ /usr/ports/math/fxt/files/patch-include::jjassert.h Sun Feb 23 14:09:47 2003 @@ -0,0 +1,11 @@ +--- include/jjassert.h.orig Sun Feb 23 14:08:38 2003 ++++ include/jjassert.h Sun Feb 23 14:08:56 2003 +@@ -2,7 +2,7 @@ + #define HAVE_JJASSERT_H__ + + // if you don't have sys/cdefs.h just uncomment the next line: +-//#include // __STRING() ++#include // __STRING() + + // aux0/jjassert.cc: + // options for last action of jjassert_fail(): diff -ruN fxt.old/files/patch-makefile /usr/ports/math/fxt/files/patch-makefile --- fxt.old/files/patch-makefile Mon Jan 27 16:06:34 2003 +++ /usr/ports/math/fxt/files/patch-makefile Sun Feb 23 13:33:57 2003 @@ -1,5 +1,5 @@ ---- makefile.orig Tue Dec 17 02:37:28 2002 -+++ makefile Sun Dec 22 08:38:00 2002 +--- makefile.orig Sat Jan 11 18:08:57 2003 ++++ makefile Mon Jan 27 16:08:56 2003 @@ -3,7 +3,7 @@ PROJ=fxt @@ -9,16 +9,15 @@ PPLIBS = -lm -lstdc++ -@@ -16,7 +16,7 @@ +@@ -15,7 +15,6 @@ # -mcpu= Schedule code for given CPU # Note that specifying `-march=CPU-TYPE' implies `-mcpu=CPU-TYPE' --OFLAGS = -O2 -ffast-math -+OFLAGS += -ffast-math - OFLAGS += $(ARCHFLAG) +-OFLAGS = -O2 OFLAGS += -fomit-frame-pointer OFLAGS += -fno-exceptions -@@ -47,12 +47,12 @@ + OFLAGS += -ffast-math +@@ -53,12 +52,12 @@ -Imod -Iwavelet -Isort -Islow #### choose the FLAG combo here: @@ -34,7 +33,7 @@ #------------------------------------- -@@ -348,16 +348,16 @@ +@@ -354,16 +353,16 @@ # @echo ' ===== make FXT lib DONE. =====' diff -ruN fxt.old/pkg-plist /usr/ports/math/fxt/pkg-plist --- fxt.old/pkg-plist Mon Jan 27 16:06:34 2003 +++ /usr/ports/math/fxt/pkg-plist Sun Feb 23 13:56:05 2003 @@ -11,16 +11,31 @@ include/fxt/auxprint.h include/fxt/binarydebruijn.h include/fxt/binaryprimestring.h +include/fxt/bit2adic.h +include/fxt/bit2composition.h include/fxt/bit2pow.h include/fxt/bitarray.h include/fxt/bitasm.h -include/fxt/bitcombination.h +include/fxt/bitcombcolex.h +include/fxt/bitcomblex.h include/fxt/bitcombminchange.h +include/fxt/bitcopy.h include/fxt/bitcount.h include/fxt/bitcyclic.h +include/fxt/bitcyclic2.h +include/fxt/bitgather.h include/fxt/bithigh.h +include/fxt/bitinvolutions.h +include/fxt/bitlex.h include/fxt/bitlow.h +include/fxt/bitmat.h include/fxt/bitmisc.h +include/fxt/bitmrotate.h +include/fxt/bitpol.h +include/fxt/bitpolirred.h +include/fxt/bitpolmodmult.h +include/fxt/bitpolmodmultrev.h +include/fxt/bitpoltrace.h include/fxt/bitrotate.h include/fxt/bitsequency.h include/fxt/bitsperlong.h @@ -37,6 +52,8 @@ include/fxt/comblex.h include/fxt/combminchange.h include/fxt/complextype.h +include/fxt/compositionalt.h +include/fxt/compositionlex.h include/fxt/constants.h include/fxt/convex.h include/fxt/copy.h @@ -51,6 +68,7 @@ include/fxt/dslazy.h include/fxt/dyadiccnvl.h include/fxt/factor.h +include/fxt/fcsr.h include/fxt/fhtmulsqr.h include/fxt/funcemu.h include/fxt/fxt.h @@ -61,6 +79,7 @@ include/fxt/fxttypes.h include/fxt/graycode.h include/fxt/graypermute.h +include/fxt/grayrevpermute.h include/fxt/greencode.h include/fxt/haarnn.h include/fxt/haarnninplace.h @@ -72,15 +91,21 @@ include/fxt/intarith.h include/fxt/jjassert.h include/fxt/ldn2rc.h +include/fxt/lfsr.h +include/fxt/lfsr64.h +include/fxt/lhca.h include/fxt/lowbitprimpoly.h include/fxt/matrix.h include/fxt/matrixsymmetryq.h include/fxt/minmax.h include/fxt/minmax2d.h +include/fxt/minweightlhcarule.h include/fxt/minweightprimpoly.h include/fxt/misc.h include/fxt/misc2d.h +include/fxt/mixedradix.h include/fxt/mixedradixgray.h +include/fxt/mixedradixlex.h include/fxt/mmult.h include/fxt/mod.h include/fxt/modarith.h @@ -89,11 +114,13 @@ include/fxt/modularmixedradixgray.h include/fxt/moduli.h include/fxt/monotone.h +include/fxt/monotonegray.h include/fxt/mrotate.h include/fxt/mtypes.h include/fxt/ntt.h include/fxt/orderedrarray.h include/fxt/paren.h +include/fxt/paren2.h include/fxt/partition.h include/fxt/permapply.h include/fxt/permcyclic.h @@ -138,7 +165,6 @@ include/fxt/searchptr.h include/fxt/shift.h include/fxt/shift2d.h -include/fxt/shiftregistersequence.h include/fxt/shortfhtdifcore.h include/fxt/shortfhtditcore.h include/fxt/shortgraypermute.h @@ -155,7 +181,6 @@ include/fxt/sortidx.h include/fxt/sortlazy.h include/fxt/sortptr.h -include/fxt/srs64.h include/fxt/stack.h include/fxt/subsetdebruijn.h include/fxt/subsetlex.h --- fxt.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 5:41: 7 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9199F37B405; Sun, 23 Feb 2003 05:41:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2EEEC43F85; Sun, 23 Feb 2003 05:41:04 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (leeym@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NDf4NS000258; Sun, 23 Feb 2003 05:41:04 -0800 (PST) (envelope-from leeym@freefall.freebsd.org) Received: (from leeym@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NDf307000247; Sun, 23 Feb 2003 05:41:03 -0800 (PST) Date: Sun, 23 Feb 2003 05:41:03 -0800 (PST) From: Yen-Ming Lee Message-Id: <200302231341.h1NDf307000247@freefall.freebsd.org> To: kcwu@kcwu.dyndns.org, leeym@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48589: maintainer update: math/kseg Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: maintainer update: math/kseg State-Changed-From-To: open->closed State-Changed-By: leeym State-Changed-When: Sun Feb 23 05:41:02 PST 2003 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48589 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 5:46:52 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 067B137B401; Sun, 23 Feb 2003 05:46:52 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 67CF643F93; Sun, 23 Feb 2003 05:46:51 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (leeym@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NDkpNS002044; Sun, 23 Feb 2003 05:46:51 -0800 (PST) (envelope-from leeym@freefall.freebsd.org) Received: (from leeym@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NDkpsM002040; Sun, 23 Feb 2003 05:46:51 -0800 (PST) Date: Sun, 23 Feb 2003 05:46:51 -0800 (PST) From: Yen-Ming Lee Message-Id: <200302231346.h1NDkpsM002040@freefall.freebsd.org> To: filippo@ulby.home.net, leeym@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/47434: Update port: net/nc6 to 0.3 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: net/nc6 to 0.3 State-Changed-From-To: feedback->closed State-Changed-By: leeym State-Changed-When: Sun Feb 23 05:46:50 PST 2003 State-Changed-Why: Obsoleted by ports/47507 http://www.freebsd.org/cgi/query-pr.cgi?pr=47434 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 6: 0:22 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5620537B401 for ; Sun, 23 Feb 2003 06:00:19 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6818443FAF for ; Sun, 23 Feb 2003 06:00:18 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NE0INS005468 for ; Sun, 23 Feb 2003 06:00:18 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NE0IaP005467; Sun, 23 Feb 2003 06:00:18 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 70C2C37B405 for ; Sun, 23 Feb 2003 06:00:13 -0800 (PST) Received: from utopia.leeym.com (utopia.leeym.com [61.218.64.93]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7208B43FAF for ; Sun, 23 Feb 2003 06:00:12 -0800 (PST) (envelope-from leeym@utopia.leeym.com) Received: from localhost (localhost [127.0.0.1]) by utopia.leeym.com (Postfix) with ESMTP id 1FAAE3E9D93 for ; Sun, 23 Feb 2003 22:00:10 +0800 (CST) Received: by utopia.leeym.com (Postfix, from userid 1000) id EC2E13E9D92; Sun, 23 Feb 2003 21:59:58 +0800 (CST) Message-Id: <20030223135958.EC2E13E9D92@utopia.leeym.com> Date: Sun, 23 Feb 2003 21:59:58 +0800 (CST) From: Yen-Ming Lee Reply-To: Yen-Ming Lee To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48594: update port: security/p5-IO-Socket-SSL to 0.92 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48594 >Category: ports >Synopsis: update port: security/p5-IO-Socket-SSL to 0.92 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Feb 23 06:00:17 PST 2003 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 5.0-RELEASE-p1 i386 >Organization: >Environment: System: FreeBSD utopia.leeym.com 5.0-RELEASE-p1 FreeBSD 5.0-RELEASE-p1 #16: Thu Feb 6 06:27:39 CST 2003 root@utopia.leeym.com:/mnt/obj/usr/src/sys/UTOPIA i386 >Description: - update to IO-Socket-SSL-0.92 - use COMMENT (pkg-comment should be removed) - add WWW in pkg-descr >How-To-Repeat: >Fix: --- p5-IO-Socket-SSL.diff begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/security/p5-IO-Socket-SSL/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- Makefile 22 Feb 2003 16:12:22 -0000 1.6 +++ Makefile 23 Feb 2003 13:56:15 -0000 @@ -6,13 +6,14 @@ # PORTNAME= IO-Socket-SSL -PORTVERSION= 0.80 +PORTVERSION= 0.92 CATEGORIES= security perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= IO PKGNAMEPREFIX= p5- MAINTAINER= scrappy@FreeBSD.org +COMMENT= Perl5 interface to SSL sockets BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Net/SSLeay.pm:${PORTSDIR}/security/p5-Net-SSLeay Index: distinfo =================================================================== RCS file: /home/ncvs/ports/security/p5-IO-Socket-SSL/distinfo,v retrieving revision 1.3 diff -u -r1.3 distinfo --- distinfo 29 Mar 2002 06:05:40 -0000 1.3 +++ distinfo 23 Feb 2003 13:56:15 -0000 @@ -1 +1 @@ -MD5 (IO-Socket-SSL-0.80.tar.gz) = ed7c74c3b4a8bb41b575dc40e4ec6950 +MD5 (IO-Socket-SSL-0.92.tar.gz) = c4757e406591dcfb1e068d0156a33601 Index: pkg-comment =================================================================== RCS file: /home/ncvs/ports/security/p5-IO-Socket-SSL/pkg-comment,v retrieving revision 1.1 diff -u -r1.1 pkg-comment --- pkg-comment 28 Oct 2000 00:23:12 -0000 1.1 +++ pkg-comment 23 Feb 2003 13:56:15 -0000 @@ -1 +0,0 @@ -Perl5 interface to SSL sockets Index: pkg-descr =================================================================== RCS file: /home/ncvs/ports/security/p5-IO-Socket-SSL/pkg-descr,v retrieving revision 1.1 diff -u -r1.1 pkg-descr --- pkg-descr 28 Oct 2000 00:23:12 -0000 1.1 +++ pkg-descr 23 Feb 2003 13:56:15 -0000 @@ -2,3 +2,5 @@ interface to SSL sockets. The class is a descendent of IO::Socket::INET and provides a subset of the base class's interface methods. + +WWW: http://search.cpan.org/dist/IO-Socket-SSL/ --- p5-IO-Socket-SSL.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 6:30: 4 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7944237B401 for ; Sun, 23 Feb 2003 06:30:02 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8DE2E43FDD for ; Sun, 23 Feb 2003 06:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NEU1NS021752 for ; Sun, 23 Feb 2003 06:30:01 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NEU1Op021751; Sun, 23 Feb 2003 06:30:01 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CFFD037B401 for ; Sun, 23 Feb 2003 06:23:10 -0800 (PST) Received: from dask.thegler.dk (dask.thegler.dk [212.242.93.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 398B843FDD for ; Sun, 23 Feb 2003 06:23:10 -0800 (PST) (envelope-from lth@dask.thegler.dk) Received: by dask.thegler.dk (Postfix, from userid 1001) id 74133401A; Sun, 23 Feb 2003 15:23:08 +0100 (CET) Message-Id: <20030223142308.74133401A@dask.thegler.dk> Date: Sun, 23 Feb 2003 15:23:08 +0100 (CET) From: Lars Thegler Reply-To: Lars Thegler To: FreeBSD-gnats-submit@FreeBSD.org Cc: lars@thegler.dk X-Send-Pr-Version: 3.113 Subject: ports/48595: Mark port IGNORE instead of BROKEN for perl < 5.6 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48595 >Category: ports >Synopsis: Mark port IGNORE instead of BROKEN for perl < 5.6 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Feb 23 06:30:00 PST 2003 >Closed-Date: >Last-Modified: >Originator: Lars Thegler >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: FreeBSD dask.thegler.dk 4.7-STABLE FreeBSD 4.7-STABLE #8: Sun Feb 9 10:50:10 CET 2003 root@dask.thegler.dk:/usr/obj/usr/src/sys/GENERIC i386 >Description: Mark port IGNORE instead of BROKEN for perl < 5.6 to keep bento from complaining. Now uses new PERL makefile variables. >How-To-Repeat: >Fix: --- p5-Net-SNMP.diff begins here --- diff -Naur /usr/ports/net/p5-Net-SNMP/Makefile p5-Net-SNMP-4.0.3_1_A/Makefile --- /usr/ports/net/p5-Net-SNMP/Makefile Sat Feb 22 07:05:54 2003 +++ p5-Net-SNMP-4.0.3_1_A/Makefile Sun Feb 23 15:16:06 2003 @@ -23,16 +23,11 @@ ${ARCH_PERL}/Digest/SHA1.pm:${PORTSDIR}/security/p5-Digest-SHA1 \ ${SITE_PERL}/Digest/HMAC.pm:${PORTSDIR}/security/p5-Digest-HMAC -USE_PERL5= yes PERL_CONFIGURE= yes -SITE_PERL= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER} ARCH_PERL= ${SITE_PERL}/${PERL_ARCH} -PERL_MAJOR=${PERL_VER:C|^([1-9]+).*|\1|} -PERL_MINOR=${PERL_VER:C|^[1-9]+\.0*([1-9]+).*|\1|} - -.if ${PERL_MAJOR} < 5 || ${PERL_MAJOR} == 5 && ${PERL_MINOR} < 6 -BROKEN= "This port requires Perl v5.6.0 or newer" +.if ${PERL_LEVEL} < 500600 +IGNORE= Port requires perl 5.6.x or later. Install lang/perl5 then try again .endif MAN1= snmpkey.1 --- p5-Net-SNMP.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 6:50:16 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C2C3D37B401 for ; Sun, 23 Feb 2003 06:50:13 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E97543FDD for ; Sun, 23 Feb 2003 06:50:12 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NEoCNS027398 for ; Sun, 23 Feb 2003 06:50:12 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NEoCjk027397; Sun, 23 Feb 2003 06:50:12 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 782CE37B401 for ; Sun, 23 Feb 2003 06:48:06 -0800 (PST) Received: from dask.thegler.dk (dask.thegler.dk [212.242.93.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 039AC43FD7 for ; Sun, 23 Feb 2003 06:48:06 -0800 (PST) (envelope-from lth@dask.thegler.dk) Received: by dask.thegler.dk (Postfix, from userid 1001) id 8F326401A; Sun, 23 Feb 2003 15:48:04 +0100 (CET) Message-Id: <20030223144804.8F326401A@dask.thegler.dk> Date: Sun, 23 Feb 2003 15:48:04 +0100 (CET) From: Lars Thegler Reply-To: Lars Thegler To: FreeBSD-gnats-submit@FreeBSD.org Cc: lars@thegler.dk X-Send-Pr-Version: 3.113 Subject: ports/48596: Update net/smokeping to 1.19 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48596 >Category: ports >Synopsis: Update net/smokeping to 1.19 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Feb 23 06:50:12 PST 2003 >Closed-Date: >Last-Modified: >Originator: Lars Thegler >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: FreeBSD dask.thegler.dk 4.7-STABLE FreeBSD 4.7-STABLE #8: Sun Feb 9 10:50:10 CET 2003 root@dask.thegler.dk:/usr/obj/usr/src/sys/GENERIC i386 >Description: Update port net/smokeping to version 1.19. >How-To-Repeat: >Fix: Apply this diff: --- smokeping.diff begins here --- diff -Naur /usr/ports/net/smokeping/Makefile smokeping-1.19/Makefile --- /usr/ports/net/smokeping/Makefile Sat Feb 22 07:05:58 2003 +++ smokeping-1.19/Makefile Sun Feb 23 15:42:36 2003 @@ -6,7 +6,7 @@ # PORTNAME= smokeping -PORTVERSION= 1.18 +PORTVERSION= 1.19 CATEGORIES= net www MASTER_SITES= http://people.ee.ethz.ch/~oetiker/webtools/smokeping/pub/ @@ -24,7 +24,7 @@ USE_PERL5= yes -MAN1= EchoPing.pm.1 EchoPingChargen.pm.1 EchoPingDiscard.pm.1 \ +MAN1= DNS.pm.1 EchoPing.pm.1 EchoPingChargen.pm.1 EchoPingDiscard.pm.1 \ EchoPingHttp.pm.1 EchoPingHttps.pm.1 EchoPingIcp.pm.1 EchoPingSmtp.pm.1 \ FPing.pm.1 FPing6.pm.1 IOSPing.pm.1 ParseConfig.pm.1 Smokeping.pm.1 \ base.pm.1 basefork.pm.1 basevars.pm.1 \ @@ -32,10 +32,9 @@ smokeping_config.1 smokeping_install.1 PKGMESSAGE= ${WRKDIR}/pkg-message -SITE_PERL= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER} DOCDIR= ${PREFIX}/share/doc/smokeping DOC1= CHANGES CONTRIBUTORS COPYING COPYRIGHT README TODO -DOC2= EchoPing.pm EchoPingChargen.pm EchoPingDiscard.pm \ +DOC2= DNS.pm EchoPing.pm EchoPingChargen.pm EchoPingDiscard.pm \ EchoPingHttp.pm EchoPingHttps.pm EchoPingIcp.pm EchoPingSmtp.pm \ FPing.pm FPing6.pm IOSPing.pm ParseConfig.pm Smokeping.pm \ base.pm basefork.pm basevars.pm smokeping.cgi \ diff -Naur /usr/ports/net/smokeping/distinfo smokeping-1.19/distinfo --- /usr/ports/net/smokeping/distinfo Mon Jan 6 12:29:52 2003 +++ smokeping-1.19/distinfo Sun Feb 23 15:32:51 2003 @@ -1 +1 @@ -MD5 (smokeping-1.18.tar.gz) = 1a91066a497d666164ea0995d322b485 +MD5 (smokeping-1.19.tar.gz) = f52dcde3ed8d34bf672e75b8dcd39f65 diff -Naur /usr/ports/net/smokeping/pkg-plist smokeping-1.19/pkg-plist --- /usr/ports/net/smokeping/pkg-plist Thu Oct 17 14:00:50 2002 +++ smokeping-1.19/pkg-plist Sun Feb 23 15:39:51 2003 @@ -69,6 +69,7 @@ smokeping/lib/probes/EchoPingHttps.pm smokeping/lib/probes/EchoPingIcp.pm smokeping/lib/probes/EchoPingSmtp.pm +smokeping/lib/probes/DNS.pm smokeping/lib/probes/basefork.pm smokeping/lib/probes/basevars.pm smokeping/lib/ISG/ParseConfig.pm --- smokeping.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 7:12:33 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0775037B401; Sun, 23 Feb 2003 07:12:33 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E762143FE5; Sun, 23 Feb 2003 07:12:24 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (leeym@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NFCONS038547; Sun, 23 Feb 2003 07:12:24 -0800 (PST) (envelope-from leeym@freefall.freebsd.org) Received: (from leeym@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NFCOWM038543; Sun, 23 Feb 2003 07:12:24 -0800 (PST) Date: Sun, 23 Feb 2003 07:12:24 -0800 (PST) From: Yen-Ming Lee Message-Id: <200302231512.h1NFCOWM038543@freefall.freebsd.org> To: leeym@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scrappy@FreeBSD.org Subject: Re: ports/48594: update port: security/p5-IO-Socket-SSL to 0.92 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: update port: security/p5-IO-Socket-SSL to 0.92 Responsible-Changed-From-To: freebsd-ports-bugs->scrappy Responsible-Changed-By: leeym Responsible-Changed-When: Sun Feb 23 07:12:22 PST 2003 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=48594 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 8: 1:29 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5EE5E37B401; Sun, 23 Feb 2003 08:01:28 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id ACE1B43FD7; Sun, 23 Feb 2003 08:01:27 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from freefall.freebsd.org (marcus@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NG1RNS060660; Sun, 23 Feb 2003 08:01:27 -0800 (PST) (envelope-from marcus@freefall.freebsd.org) Received: (from marcus@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NG1R9m060649; Sun, 23 Feb 2003 08:01:27 -0800 (PST) Date: Sun, 23 Feb 2003 08:01:27 -0800 (PST) From: Joe Marcus Clarke Message-Id: <200302231601.h1NG1R9m060649@freefall.freebsd.org> To: ler@lerctr.org, verbophobe@hotmail.com, marcus@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org Subject: Re: ports/48587: gthumb2 port fails. Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: gthumb2 port fails. Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: marcus Responsible-Changed-When: Sun Feb 23 08:01:14 PST 2003 Responsible-Changed-Why: Over to maintainers. http://www.freebsd.org/cgi/query-pr.cgi?pr=48587 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 9:33:13 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4CCEF37B405; Sun, 23 Feb 2003 09:33:12 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94C3F43FBF; Sun, 23 Feb 2003 09:33:11 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NHXBNS035841; Sun, 23 Feb 2003 09:33:11 -0800 (PST) (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NHXB8f035837; Sun, 23 Feb 2003 09:33:11 -0800 (PST) Date: Sun, 23 Feb 2003 09:33:11 -0800 (PST) From: Tilman Linneweh Message-Id: <200302231733.h1NHXB8f035837@freefall.freebsd.org> To: lehmann@ans-netz.de, arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48252: update-port: graphics/xawtv Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: update-port: graphics/xawtv State-Changed-From-To: open->closed State-Changed-By: arved State-Changed-When: Sun Feb 23 09:33:05 PST 2003 State-Changed-Why: Committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=48252 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 10:10:11 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 75BB437B401 for ; Sun, 23 Feb 2003 10:10:07 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 828AC43F93 for ; Sun, 23 Feb 2003 10:10:06 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NIA6NS048741 for ; Sun, 23 Feb 2003 10:10:06 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NIA6pK048740; Sun, 23 Feb 2003 10:10:06 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3648137B401 for ; Sun, 23 Feb 2003 10:07:05 -0800 (PST) Received: from httpd.terions.de (static62-99-146-055.adsl.inode.at [62.99.146.55]) by mx1.FreeBSD.org (Postfix) with SMTP id 2E87243F85 for ; Sun, 23 Feb 2003 10:07:02 -0800 (PST) (envelope-from martin@kleinerdrache.org) Received: (qmail 62884 invoked by uid 0); 23 Feb 2003 18:06:54 -0000 Message-Id: <20030223180654.62883.qmail@httpd.terions.de> Date: 23 Feb 2003 18:06:54 -0000 From: Martin Klaffenboeck Reply-To: Martin Klaffenboeck To: FreeBSD-gnats-submit@FreeBSD.org Cc: gnome@FreeBSD.org, marcus@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48597: [UPDATE] glabels Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48597 >Category: ports >Synopsis: [UPDATE] glabels >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Feb 23 10:10:05 PST 2003 >Closed-Date: >Last-Modified: >Originator: Martin Klaffenboeck >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: FreeBSD martin.kleinerdrache.org 4.7-STABLE FreeBSD 4.7-STABLE #24: Mon Feb 10 21:21:27 CET 2003 martin@martin.kleinerdrache.org:/usr/obj/usr/src/sys/MYKERNEL i386 >Description: This is the update for the glabels port from 1.90.0 to 1.91.1 We have to remove the patch-aa file, now we do not have any patches anymore, the changes are allready in the sources, good work from the glabels - team. The Makefile, pkg-plist and distinfo files are updated. >How-To-Repeat: >Fix: --- glabels.diff begins here --- diff -Nur glabels.orig/Makefile glabels/Makefile --- glabels.orig/Makefile Fri Feb 21 00:56:17 2003 +++ glabels/Makefile Sun Feb 23 18:03:53 2003 @@ -6,8 +6,7 @@ # PORTNAME= glabels -PORTVERSION= 1.90.0 -PORTREVISION= 1 +PORTVERSION= 1.91.1 CATEGORIES= deskutils MASTER_SITES= http://snaught.com/glabels/source/ diff -Nur glabels.orig/distinfo glabels/distinfo --- glabels.orig/distinfo Sun Oct 27 21:20:49 2002 +++ glabels/distinfo Sun Feb 23 18:05:14 2003 @@ -1 +1 @@ -MD5 (glabels-1.90.0.tar.gz) = f6cdde27ca5a521512f145c0d277ef9f +MD5 (glabels-1.91.1.tar.gz) = bd5bfd26c9e8c8f7741e255264ce2377 diff -Nur glabels.orig/files/patch-aa glabels/files/patch-aa --- glabels.orig/files/patch-aa Tue Oct 22 00:52:34 2002 +++ glabels/files/patch-aa Thu Jan 1 01:00:00 1970 @@ -1,36 +0,0 @@ ---- doc/C/Makefile.in.orig Sun Sep 29 20:42:00 2002 -+++ doc/C/Makefile.in Sun Sep 29 20:48:50 2002 -@@ -252,33 +252,16 @@ - - glabels/index.html: $(SGML_FILES) - -db2html glabels.sgml -- -cp -rp images glabels/images - - dist-hook: index.html - -mkdir $(distdir)/glabels -- -mkdir $(distdir)/glabels/stylesheet-images -- -mkdir $(distdir)/glabels/images - -cp glabels/*.html $(distdir)/glabels - -cp glabels/*.css $(distdir)/glabels -- -cp glabels/stylesheet-images/*.gif $(distdir)/glabels/stylesheet-images -- -cp glabels/images/*.jpg $(distdir)/glabels/images -- -mkdir $(distdir)/images -- -cp images/*.jpg $(distdir)/images - - install-data-local: index.html -- -$(mkinstalldirs) $(DESTDIR)$(glabels_helpdir)/images -- -$(mkinstalldirs) $(DESTDIR)$(glabels_helpdir)/stylesheet-images - -for file in $(srcdir)/glabels/*.html $(srcdir)/glabels/*.css; do \ - basefile=`echo $$file | sed -e 's,^.*/,,'`; \ - $(INSTALL_DATA) $$file $(DESTDIR)$(glabels_helpdir)/$$basefile; \ -- done -- -for file in $(srcdir)/glabels/images/*.jpg; do \ -- basefile=`echo $$file | sed -e 's,^.*/,,'`; \ -- $(INSTALL_DATA) $$file $(DESTDIR)$(glabels_helpdir)/images/$$basefile; \ -- done -- -for file in $(srcdir)/glabels/stylesheet-images/*.gif; do \ -- basefile=`echo $$file | sed -e 's,^.*/,,'`; \ -- $(INSTALL_DATA) $$file $(DESTDIR)$(glabels_helpdir)/stylesheet-images/$$basefile; \ - done - - glabels.ps: glabels.sgml diff -Nur glabels.orig/pkg-plist glabels/pkg-plist --- glabels.orig/pkg-plist Sun Oct 27 21:20:49 2002 +++ glabels/pkg-plist Sun Feb 23 18:57:54 2003 @@ -4,7 +4,6 @@ share/gnome/glabels/predefined-labels.template share/gnome/glabels/ui/glabels-ui.xml share/gnome/help/glabels/C/index.html -share/gnome/help/glabels/C/ln7.html share/gnome/help/glabels/C/topic.dat share/gnome/pixmaps/glabels/glabels-about-logo.png share/gnome/pixmaps/glabels/glabels-icon.png --- glabels.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 10:12:24 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 815BE37B401; Sun, 23 Feb 2003 10:12:23 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26C0D43F85; Sun, 23 Feb 2003 10:12:23 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from freefall.freebsd.org (marcus@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NICNNS050637; Sun, 23 Feb 2003 10:12:23 -0800 (PST) (envelope-from marcus@freefall.freebsd.org) Received: (from marcus@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NICNa7050632; Sun, 23 Feb 2003 10:12:23 -0800 (PST) Date: Sun, 23 Feb 2003 10:12:23 -0800 (PST) From: Joe Marcus Clarke Message-Id: <200302231812.h1NICNa7050632@freefall.freebsd.org> To: marcus@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, marcus@FreeBSD.org Subject: Re: ports/48597: [UPDATE] glabels Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [UPDATE] glabels Responsible-Changed-From-To: freebsd-ports-bugs->marcus Responsible-Changed-By: marcus Responsible-Changed-When: Sun Feb 23 10:12:11 PST 2003 Responsible-Changed-Why: I'll take this. http://www.freebsd.org/cgi/query-pr.cgi?pr=48597 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 10:20:13 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6795F37B405 for ; Sun, 23 Feb 2003 10:20:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CF6243F85 for ; Sun, 23 Feb 2003 10:20:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NIK2NS055602 for ; Sun, 23 Feb 2003 10:20:02 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NIK2At055601; Sun, 23 Feb 2003 10:20:02 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 34D8637B401 for ; Sun, 23 Feb 2003 10:16:33 -0800 (PST) Received: from snapple.webct.com (snapple.webct.com [209.87.17.45]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C0D743FB1 for ; Sun, 23 Feb 2003 10:16:32 -0800 (PST) (envelope-from varju@snapple.webct.com) Received: from snapple.webct.com (localhost [127.0.0.1]) by snapple.webct.com (8.12.7/8.12.7) with ESMTP id h1NIGpDa041510 for ; Sun, 23 Feb 2003 10:16:51 -0800 (PST) (envelope-from varju@snapple.webct.com) Received: (from varju@localhost) by snapple.webct.com (8.12.7/8.12.7/Submit) id h1NIGomD041509; Sun, 23 Feb 2003 10:16:50 -0800 (PST) Message-Id: <200302231816.h1NIGomD041509@snapple.webct.com> Date: Sun, 23 Feb 2003 10:16:50 -0800 (PST) From: Alex Varju Reply-To: Alex Varju To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48598: maintainer upgrade of jpilot 0.99.5 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48598 >Category: ports >Synopsis: maintainer upgrade of jpilot 0.99.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Feb 23 10:20:02 PST 2003 >Closed-Date: >Last-Modified: >Originator: Alex Varju >Release: FreeBSD 5.0-CURRENT i386 >Organization: WebCT >Environment: System: FreeBSD alex.madd.tnmc.ca 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Sat Feb 15 10:50:03 PST 2003 root@alex.madd.tnmc.ca:/home/freebsd/obj/home/freebsd/src.HEAD/sys/ALEX i386 >Description: This is a maintainer upgrade of ports/palm/jpilot to version 0.99.5 >How-To-Repeat: >Fix: Index: ports/palm/jpilot/Makefile =================================================================== RCS file: /home/freebsd/cvsroot/ports/palm/jpilot/Makefile,v retrieving revision 1.28 diff -u -u -r1.28 Makefile --- ports/palm/jpilot/Makefile 21 Feb 2003 13:19:55 -0000 1.28 +++ ports/palm/jpilot/Makefile 23 Feb 2003 01:49:31 -0000 @@ -7,7 +7,7 @@ # "?=" and "+=" are for including this Makefile from japanese/jpilot PORTNAME= jpilot -PORTVERSION= 0.99.4 +PORTVERSION= 0.99.5 CATEGORIES+= palm comms MASTER_SITES= http://jpilot.org/ Index: ports/palm/jpilot/distinfo =================================================================== RCS file: /home/freebsd/cvsroot/ports/palm/jpilot/distinfo,v retrieving revision 1.12 diff -u -u -r1.12 distinfo --- ports/palm/jpilot/distinfo 20 Jan 2003 02:18:17 -0000 1.12 +++ ports/palm/jpilot/distinfo 23 Feb 2003 01:50:18 -0000 @@ -1 +1 @@ -MD5 (jpilot-0.99.4.tar.gz) = e79f2c41827962bebe66abef6ce776ff +MD5 (jpilot-0.99.5.tar.gz) = 6ee51e69838c826c4ed8fd42ef12cc59 Index: ports/palm/jpilot/pkg-plist =================================================================== RCS file: /home/freebsd/cvsroot/ports/palm/jpilot/pkg-plist,v retrieving revision 1.11 diff -u -u -r1.11 pkg-plist --- ports/palm/jpilot/pkg-plist 20 Jan 2003 02:18:17 -0000 1.11 +++ ports/palm/jpilot/pkg-plist 23 Feb 2003 02:16:19 -0000 @@ -31,6 +31,7 @@ %%PORTDOCS%%share/doc/jpilot/jpilot-toplogo.jpg %%PORTDOCS%%share/doc/jpilot/manual.html %%PORTDOCS%%share/doc/jpilot/plugin.html +share/gnome/apps/Applications/jpilot.desktop share/jpilot/AddressDB.pdb share/jpilot/DatebookDB.pdb share/jpilot/ExpenseDB.pdb @@ -97,3 +98,6 @@ @unexec rmdir %D/share/locale/zh_TW/LC_MESSAGES 2>/dev/null || true @unexec rmdir %D/share/locale/zh_TW 2>/dev/null || true @unexec rmdir %D/share/locale 2>/dev/null || true +@unexec rmdir %D/share/gnome/apps/Applications 2>/dev/null || true +@unexec rmdir %D/share/gnome/apps 2>/dev/null || true +@unexec rmdir %D/share/gnome 2>/dev/null || true Index: ports/palm/jpilot/files/patch-Makefile.in =================================================================== RCS file: /home/freebsd/cvsroot/ports/palm/jpilot/files/patch-Makefile.in,v retrieving revision 1.4 diff -u -u -r1.4 patch-Makefile.in --- ports/palm/jpilot/files/patch-Makefile.in 20 Jan 2003 02:18:17 -0000 1.4 +++ ports/palm/jpilot/files/patch-Makefile.in 23 Feb 2003 01:51:40 -0000 @@ -1,11 +1,11 @@ ---- Makefile.in.orig Fri Jan 10 18:13:18 2003 -+++ Makefile.in Mon Jan 13 13:49:57 2003 -@@ -133,7 +133,7 @@ +--- Makefile.in.orig Sat Feb 22 06:41:55 2003 ++++ Makefile.in Sat Feb 22 17:51:22 2003 +@@ -134,7 +134,7 @@ install_sh = @install_sh@ plugin_support = @plugin_support@ --SUBDIRS = Expense SyncTime KeyRing docs m4 dialer intl po -+SUBDIRS = Expense SyncTime KeyRing m4 dialer intl po +-SUBDIRS = intl Expense SyncTime KeyRing docs dialer po ++SUBDIRS = intl Expense SyncTime KeyRing dialer po EXTRA_DIST = reconf autogen.sh ChangeLog docs empty icons \ - BUGS jpilot.spec jpilot-col.spec jpilot.kdelnk jpilot.rh7.spec \ + config.rpath mkinstalldirs \ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 11:30: 6 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B61E37B405 for ; Sun, 23 Feb 2003 11:30:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C73643FCB for ; Sun, 23 Feb 2003 11:30:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NJU2NS076000 for ; Sun, 23 Feb 2003 11:30:02 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NJU20q075999; Sun, 23 Feb 2003 11:30:02 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A08DC37B401 for ; Sun, 23 Feb 2003 11:20:28 -0800 (PST) Received: from zoo.top.net.ua (office.top.net.ua [193.109.60.214]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAAE543F75 for ; Sun, 23 Feb 2003 11:20:26 -0800 (PST) (envelope-from mt@zoo.top.net.ua) Received: from zoo.top.net.ua (localhost [127.0.0.1]) by zoo.top.net.ua (8.12.6/8.12.6) with ESMTP id h1NJKgvb030853 for ; Sun, 23 Feb 2003 21:20:42 +0200 (EET) (envelope-from mt@zoo.top.net.ua) Received: (from mt@localhost) by zoo.top.net.ua (8.12.6/8.12.6/Submit) id h1NJKgr1030852; Sun, 23 Feb 2003 21:20:42 +0200 (EET) Message-Id: <200302231920.h1NJKgr1030852@zoo.top.net.ua> Date: Sun, 23 Feb 2003 21:20:42 +0200 (EET) From: Maxim Tuliuk To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48600: [new port] www/sarg: Squid log analyzer and HTML report generator Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48600 >Category: ports >Synopsis: [new port] www/sarg: Squid log analyzer and HTML report generator >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Feb 23 11:30:01 PST 2003 >Closed-Date: >Last-Modified: >Originator: Maxim Tuliuk >Release: FreeBSD 4.7-RELEASE-p3 i386 >Organization: >Environment: System: FreeBSD zoo.top.net.ua 4.7-RELEASE-p3 FreeBSD 4.7-RELEASE-p3 #0: Mon Jan 27 21:55:29 EET 2003 root@smtp.top.net.ua:/usr/home/system/obj/usr/home/system/src/sys/host i386 >Description: sqmgrlog is a Squid analisys report generator that allow you to view "where" your users are going through squid. sqmgrlog generates reports in html, with many fields including users, IP addresses, bytes, sites and times. WWW: http://web.onda.com.br/orso/sqmgrlog.html >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # sarg/distinfo # sarg/Makefile # sarg/pkg-descr # sarg/pkg-plist # echo x - sarg/distinfo sed 's/^X//' >sarg/distinfo << 'END-of-sarg/distinfo' XMD5 (sarg-1.2.2.1.tar.gz) = f8b78d13d96793eb1c9a024bf9d816a5 END-of-sarg/distinfo echo x - sarg/Makefile sed 's/^X//' >sarg/Makefile << 'END-of-sarg/Makefile' X# New ports collection makefile for: sarg X# Date created: 23.02.2003 X# Whom: mt@primats.org.ua X# X# $FreeBSD$ X# X XPORTNAME= sarg XPORTVERSION= 1.2.2.1 XCATEGORIES= www XMASTER_SITES= http://web.onda.com.br/orso/ X XMAINTAINER= mt@primats.org.ua XCOMMENT= Squid log analyzer and HTML report generator X XGNU_CONFIGURE= yes XCONFIGURE_ARGS+= --prefix=${PREFIX} --exec-prefix=${PREFIX} --enable-bindir="${PREFIX}/bin" --enable-sysconfdir="${PREFIX}/etc/${PORTNAME}" --with-gcc X X.include END-of-sarg/Makefile echo x - sarg/pkg-descr sed 's/^X//' >sarg/pkg-descr << 'END-of-sarg/pkg-descr' Xsqmgrlog is a Squid analisys report generator that allow you to Xview "where" your users are going through squid. sqmgrlog generates Xreports in html, with many fields including users, IP addresses, bytes, Xsites and times. X XWWW: http://web.onda.com.br/orso/sqmgrlog.html END-of-sarg/pkg-descr echo x - sarg/pkg-plist sed 's/^X//' >sarg/pkg-plist << 'END-of-sarg/pkg-plist' Xbin/sarg X@unexec if cmp -s %D/etc/sarg/sarg.conf.default %D/etc/sarg/sarg.conf; then rm -f %D/etc/sarg.conf; fi Xetc/sarg/sarg.conf.default X@exec if [ ! -f %D/etc/sarg/sarg.conf ]; then cp %D/etc/sarg/%f %D/etc/sarg/sarg.conf; fi END-of-sarg/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 11:50:22 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4397F37B40E for ; Sun, 23 Feb 2003 11:50:16 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0AD0443F93 for ; Sun, 23 Feb 2003 11:50:15 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NJoENS080107 for ; Sun, 23 Feb 2003 11:50:14 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NJoEeZ080106; Sun, 23 Feb 2003 11:50:14 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4721A37B401 for ; Sun, 23 Feb 2003 11:40:59 -0800 (PST) Received: from zoo.top.net.ua (office.top.net.ua [193.109.60.214]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5294443FCB for ; Sun, 23 Feb 2003 11:40:57 -0800 (PST) (envelope-from mt@zoo.top.net.ua) Received: from zoo.top.net.ua (localhost [127.0.0.1]) by zoo.top.net.ua (8.12.6/8.12.6) with ESMTP id h1NJfEvb031681 for ; Sun, 23 Feb 2003 21:41:15 +0200 (EET) (envelope-from mt@zoo.top.net.ua) Received: (from mt@localhost) by zoo.top.net.ua (8.12.6/8.12.6/Submit) id h1NJfEvr031680; Sun, 23 Feb 2003 21:41:14 +0200 (EET) Message-Id: <200302231941.h1NJfEvr031680@zoo.top.net.ua> Date: Sun, 23 Feb 2003 21:41:14 +0200 (EET) From: Maxim Tuliuk To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48601: [new port] mail/mailsync: Mailsync is a way of keeping a collection of mailboxes synchronized Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48601 >Category: ports >Synopsis: [new port] mail/mailsync: Mailsync is a way of keeping a collection of mailboxes synchronized >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Feb 23 11:50:14 PST 2003 >Closed-Date: >Last-Modified: >Originator: Maxim Tuliuk >Release: FreeBSD 4.7-RELEASE-p3 i386 >Organization: >Environment: System: FreeBSD zoo.top.net.ua 4.7-RELEASE-p3 FreeBSD 4.7-RELEASE-p3 #0: Mon Jan 27 21:55:29 EET 2003 root@smtp.top.net.ua:/usr/home/system/obj/usr/home/system/src/sys/host i386 >Description: Mailsync is a way of keeping a collection of mailboxes synchronized. The mailboxes may be on the local filesystem or on an IMAP server. WWW: http://mailsync.sourceforge.net/ >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # mailsync/files # mailsync/files/patch-Makefile # mailsync/files/patch-mailsync.c # mailsync/files/patch-examples::mailsync # mailsync/files/patch-mailsync.1 # mailsync/Makefile # mailsync/distinfo # mailsync/pkg-descr # mailsync/pkg-plist # echo c - mailsync/files mkdir -p mailsync/files > /dev/null 2>&1 echo x - mailsync/files/patch-Makefile sed 's/^X//' >mailsync/files/patch-Makefile << 'END-of-mailsync/files/patch-Makefile' X--- Makefile.orig Thu Oct 24 17:03:07 2002 X+++ Makefile Mon Feb 3 23:05:47 2003 X@@ -1,13 +1,13 @@ X # compiling with g++-3 worked for me with the commented ## lines - tpo X X # path to c-client headers X-C = /usr/include/c-client X+C = /usr/local/include/c-client X #C = ../../libs/imap-2002.RC5/c-client/ X ##C = /usr/include/c-client -I/usr/include/g++-v3/ X X # path to c-client library X # linking dynamically X-CCLIENTLIB = /usr/lib/libc-client.so X+CCLIENTLIB = /usr/local/lib/libc-client4.so X # linkging statically X #CCLIENTLIB = ../imap-2001a/c-client/c-client.a X X@@ -19,7 +19,7 @@ X CFLAGS = -g -O2 -Wall -I$(C) X X # required libraries X-LDFLAGS = -lm -lssl -lgssapi_krb5 X+LDFLAGS = -lm -lssl X # if your system requires pam to access crypt() you have to link pam in X #LDFLAGS = -lm -lssl -lpam X END-of-mailsync/files/patch-Makefile echo x - mailsync/files/patch-mailsync.c sed 's/^X//' >mailsync/files/patch-mailsync.c << 'END-of-mailsync/files/patch-mailsync.c' X--- mailsync.c.orig Thu Nov 7 12:05:46 2002 X+++ mailsync.c Mon Feb 3 22:59:09 2003 X@@ -30,8 +30,8 @@ X using std::vector; X using std::make_pair; X X-#include "c-client.h" X-#include "flstring.h" X+#include X+#include X #include "msgstring.c" X X //------------------------------- Defines ------------------------------- END-of-mailsync/files/patch-mailsync.c echo x - mailsync/files/patch-examples::mailsync sed 's/^X//' >mailsync/files/patch-examples::mailsync << 'END-of-mailsync/files/patch-examples::mailsync' X--- examples/mailsync.orig Tue Jan 29 16:28:12 2002 X+++ examples/mailsync Mon Feb 3 22:53:30 2003 X@@ -9,8 +9,8 @@ X # Tomas Pospisek X # X # see also: X-# [1] /usr/share/doc/mailsync/README X-# [2] /usr/share/doc/libc-client-ssl2001/naming.txt.gz X+# [1] /usr/local/share/doc/mailsync/README X+# [2] /usr/local/share/doc/libc-client-ssl2001/naming.txt.gz X # [3] rfc2060 X # X END-of-mailsync/files/patch-examples::mailsync echo x - mailsync/files/patch-mailsync.1 sed 's/^X//' >mailsync/files/patch-mailsync.1 << 'END-of-mailsync/files/patch-mailsync.1' X--- mailsync.1.orig Wed Nov 6 13:06:52 2002 X+++ mailsync.1 Mon Feb 3 22:55:42 2003 X@@ -76,9 +76,9 @@ X Show debug info. X .SH SEE ALSO X There is more documentation in X-.IR /usr/share/doc/mailsync X+.IR /usr/local/share/doc/mailsync X , and in X-.IR /usr/share/doc/libc-clientxxxxxx/internal.txt X+.IR /usr/local/share/doc/libc-clientxxxxxx/internal.txt X .SH AUTHOR X Originally written by Jaldhar H. Vyas for the Debian X GNU/Linux system. Updates by T. Pospisek . END-of-mailsync/files/patch-mailsync.1 echo x - mailsync/Makefile sed 's/^X//' >mailsync/Makefile << 'END-of-mailsync/Makefile' X# New ports collection makefile for: mailsync X# Date created: 03 Feb 2003 X# Whom: Maxim Tulyuk X# X# $FreeBSD$ X# X XPORTNAME= mailsync XPORTVERSION= 4.4.4-1 XCATEGORIES= mail XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= ${PORTNAME} XDISTNAME= ${PORTNAME}_${PORTVERSION} X XWRKSRC= ${WRKDIR}/${PORTNAME} X XMAINTAINER= mt@primats.org.ua XCOMMENT= Mailsync is a way of keeping a collection of mailboxes synchronized X XLIB_DEPENDS= c-client4.8:${PORTSDIR}/mail/cclient X XUSE_GMAKE= yes X XALL_TARGET= default X XMAN1= mailsync.1 X Xdo-install: X ${INSTALL_SCRIPT} ${WRKSRC}/mailsync ${PREFIX}/bin X ${INSTALL_MAN} ${WRKSRC}/mailsync.1 ${PREFIX}/man/man1 X.if !defined(NOPORTDOCS) X ${MKDIR} ${PREFIX}/share/doc/${PORTNAME} X ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/${PORTNAME} X.endif X ${MKDIR} ${PREFIX}/share/examples/${PORTNAME} X ${INSTALL_DATA} ${WRKSRC}/examples/mailsync \ X ${PREFIX}/share/examples/${PORTNAME} X X.include END-of-mailsync/Makefile echo x - mailsync/distinfo sed 's/^X//' >mailsync/distinfo << 'END-of-mailsync/distinfo' XMD5 (mailsync_4.4.4-1.tar.gz) = d1a947725d03a002ee5c01185189e230 END-of-mailsync/distinfo echo x - mailsync/pkg-descr sed 's/^X//' >mailsync/pkg-descr << 'END-of-mailsync/pkg-descr' XMailsync is a way of keeping a collection of mailboxes synchronized. The Xmailboxes may be on the local filesystem or on an IMAP server. X XWWW: http://mailsync.sourceforge.net/ END-of-mailsync/pkg-descr echo x - mailsync/pkg-plist sed 's/^X//' >mailsync/pkg-plist << 'END-of-mailsync/pkg-plist' Xbin/mailsync Xshare/doc/mailsync/README Xshare/examples/mailsync/mailsync X@dirrm share/examples/mailsync X@dirrm share/doc/mailsync END-of-mailsync/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 12:30:17 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DBC2337B401 for ; Sun, 23 Feb 2003 12:30:13 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2856A43F75 for ; Sun, 23 Feb 2003 12:30:13 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NKUCNS092303 for ; Sun, 23 Feb 2003 12:30:12 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NKUC9t092302; Sun, 23 Feb 2003 12:30:12 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11C1537B401; Sun, 23 Feb 2003 12:20:59 -0800 (PST) Received: from helo.liwing.de (helo.liwing.de [213.70.188.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC9C843FCB; Sun, 23 Feb 2003 12:20:57 -0800 (PST) (envelope-from root@helo.liwing.de) Received: from helo.liwing.de (localhost.liwing.de [127.0.0.1]) by helo.liwing.de (8.12.6/8.12.6) with ESMTP id h1NKKk3D007333; Sun, 23 Feb 2003 20:20:47 GMT (envelope-from root@helo.liwing.de) Received: (from root@localhost) by helo.liwing.de (8.12.6/8.12.6/Submit) id h1NKKjUa007332; Sun, 23 Feb 2003 20:20:45 GMT Message-Id: <200302232020.h1NKKjUa007332@helo.liwing.de> Date: Sun, 23 Feb 2003 20:20:45 GMT From: Jens Rehsack Reply-To: Jens Rehsack To: FreeBSD-gnats-submit@FreeBSD.org Cc: Jens Rehsack , Tilman Linneweh , "Simon 'corecode' Schubert" X-Send-Pr-Version: 3.113 Subject: ports/48602: port update of audio/id3v2 to 0.1.8 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48602 >Category: ports >Synopsis: port update of audio/id3v2 to 0.1.8 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Feb 23 12:30:12 PST 2003 >Closed-Date: >Last-Modified: >Originator: Jens Rehsack >Release: FreeBSD 4.7-STABLE i386 >Organization: LiWing IT-Services >Environment: System: FreeBSD fozzie.muppets.liwing.de 4.7-STABLE FreeBSD 4.7-STABLE #0: Sun Feb 2 21:10:03 GMT 2003 root@fozzie.muppets.liwing.de:/usr/obj/usr/src/sys/FOZZIE i386 >Description: Port update of audio/id3v2 to 0.1.8 >How-To-Repeat: >Fix: --- id3v2.diff begins here --- diff -u -r audio/id3v2.orig/Makefile audio/id3v2/Makefile --- audio/id3v2.orig/Makefile Sun Feb 23 19:50:23 2003 +++ audio/id3v2/Makefile Sun Feb 23 19:51:09 2003 @@ -6,7 +6,7 @@ # PORTNAME= id3v2 -PORTVERSION= 0.1.7 +PORTVERSION= 0.1.8 CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= id3v2 diff -u -r audio/id3v2.orig/distinfo audio/id3v2/distinfo --- audio/id3v2.orig/distinfo Sat Jan 18 18:05:29 2003 +++ audio/id3v2/distinfo Sun Feb 23 19:51:35 2003 @@ -1 +1 @@ -MD5 (id3v2-0.1.7.tar.gz) = 825cf4baf60e2951b7826b947a8f52fa +MD5 (id3v2-0.1.8.tar.gz) = ce477a55f73f8136c722c8d79dfc47ad diff -u -r audio/id3v2.orig/files/patch-Makefile audio/id3v2/files/patch-Makefile --- audio/id3v2.orig/files/patch-Makefile Mon Nov 11 17:55:24 2002 +++ audio/id3v2/files/patch-Makefile Sun Feb 23 20:07:56 2003 @@ -1,20 +1,18 @@ ---- Makefile.orig Tue Apr 16 03:35:31 2002 -+++ Makefile Mon Nov 11 18:52:50 2002 -@@ -1,10 +1,14 @@ - all: id3v2 +--- Makefile.orig Sun Feb 23 19:55:25 2003 ++++ Makefile Sun Feb 23 20:06:35 2003 +@@ -5,11 +5,11 @@ + LDFLAGS+= -L${PREFIX}/lib/ --id3v2: Makefile convert.cpp list.cpp id3v2.cpp convert.cpp -- g++ -lz -lid3 -g -o id3v2 id3v2.cpp list.cpp convert.cpp -+CXXFLAGS+= -I${PREFIX}/include/ -+LDFLAGS+= -L${PREFIX}/lib/ -+ -+id3v2: convert.o list.o id3v2.o -+ c++ ${LDFLAGS} -lz -lid3 -lgnugetopt -g -o $@ id3v2.o list.o convert.o + id3v2: convert.o list.o id3v2.o +- c++ ${LDFLAGS} -pedantic -Wall -lz -lid3 -g -o $@ id3v2.o list.o convert.o ++ ${CXX} ${LDFLAGS} -lz -lid3 -lgnugetopt -o $@ id3v2.o list.o convert.o install: all -- cp id3v2 /usr/local/bin/ -+ install -c -s id3v2 ${PREFIX}/bin/id3v2 -+ nroff -man id3v2.1 > ${PREFIX}/man/man1/id3v2.1 +- install -c -s id3v2 ${PREFIX}/bin/id3v2 ++ ${INSTALL} -c -s id3v2 ${PREFIX}/bin/id3v2 + nroff -man id3v2.1 > ${PREFIX}/man/man1/id3v2.1 - clean: - rm -f id3v2 core +-clean: +- rm -f id3v2 core *.o ++.include ++ Only in audio/id3v2.orig/files: patch-aa Only in audio/id3v2.orig/files: patch-convert_cpp Only in audio/id3v2.orig/files: patch-id3v2_1 Only in audio/id3v2.orig/files: patch-id3v2_cpp Only in audio/id3v2.orig/files: patch-list_cpp --- id3v2.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 12:35:14 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A6BC37B401; Sun, 23 Feb 2003 12:35:13 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F32D343FB1; Sun, 23 Feb 2003 12:35:12 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NKZCNS094335; Sun, 23 Feb 2003 12:35:12 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NKZCUf094330; Sun, 23 Feb 2003 12:35:12 -0800 (PST) Date: Sun, 23 Feb 2003 12:35:12 -0800 (PST) From: Edwin Groothuis Message-Id: <200302232035.h1NKZCUf094330@freefall.freebsd.org> To: redfox@Fluffy.Khv.RU, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48582: Update russian/rus-ispell Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update russian/rus-ispell State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 12:35:03 PST 2003 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48582 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 12:46:42 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4025B37B401; Sun, 23 Feb 2003 12:46:42 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D810943F3F; Sun, 23 Feb 2003 12:46:41 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NKkfNS096492; Sun, 23 Feb 2003 12:46:41 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NKkfTe096488; Sun, 23 Feb 2003 12:46:41 -0800 (PST) Date: Sun, 23 Feb 2003 12:46:41 -0800 (PST) From: Edwin Groothuis Message-Id: <200302232046.h1NKkfTe096488@freefall.freebsd.org> To: lars@thegler.dk, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48595: Mark port IGNORE instead of BROKEN for perl < 5.6 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Mark port IGNORE instead of BROKEN for perl < 5.6 State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 12:46:37 PST 2003 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48595 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 12:50:17 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 300E137B401 for ; Sun, 23 Feb 2003 12:50:16 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD1F443F93 for ; Sun, 23 Feb 2003 12:50:15 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NKoFNS096640 for ; Sun, 23 Feb 2003 12:50:15 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NKoF60096639; Sun, 23 Feb 2003 12:50:15 -0800 (PST) Date: Sun, 23 Feb 2003 12:50:15 -0800 (PST) Message-Id: <200302232050.h1NKoF60096639@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/48252: update-port: graphics/xawtv Reply-To: Edwin Groothuis Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48252; it has been noted by GNATS. From: Edwin Groothuis To: freebsd-gnats-submit@FreeBSD.org, lehmann@ans-netz.de Cc: Subject: Re: ports/48252: update-port: graphics/xawtv Date: Mon, 24 Feb 2003 07:40:33 +1100 Please try to get the port localbase-clean, it didn't compile for me because it was looking for libjpeg.h in /usr/local/include (which is normally correct but will fail if LOCALBASE is set to something else). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 12:58:37 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0011D37B401; Sun, 23 Feb 2003 12:58:36 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07C0943FCB; Sun, 23 Feb 2003 12:58:36 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NKwZNS098760; Sun, 23 Feb 2003 12:58:35 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NKwZPw098756; Sun, 23 Feb 2003 12:58:35 -0800 (PST) Date: Sun, 23 Feb 2003 12:58:35 -0800 (PST) From: Edwin Groothuis Message-Id: <200302232058.h1NKwZPw098756@freefall.freebsd.org> To: lars@thegler.dk, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48596: Update net/smokeping to 1.19 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update net/smokeping to 1.19 State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 12:58:32 PST 2003 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48596 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 12:59:55 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B57B937B401; Sun, 23 Feb 2003 12:59:54 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B617343F93; Sun, 23 Feb 2003 12:59:53 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NKxrNS098819; Sun, 23 Feb 2003 12:59:53 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NKxrp0098815; Sun, 23 Feb 2003 12:59:53 -0800 (PST) Date: Sun, 23 Feb 2003 12:59:53 -0800 (PST) From: Edwin Groothuis Message-Id: <200302232059.h1NKxrp0098815@freefall.freebsd.org> To: varju@webct.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48598: maintainer upgrade of jpilot 0.99.5 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: maintainer upgrade of jpilot 0.99.5 State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 12:59:48 PST 2003 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48598 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 13:10: 6 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A6FBE37B405 for ; Sun, 23 Feb 2003 13:10:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C495C43FBF for ; Sun, 23 Feb 2003 13:10:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NLA3NS004724 for ; Sun, 23 Feb 2003 13:10:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NLA3vV004723; Sun, 23 Feb 2003 13:10:03 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 430A137B401 for ; Sun, 23 Feb 2003 13:03:53 -0800 (PST) Received: from avocado.salatschuessel.net (p5084BC76.dip.t-dialin.net [80.132.188.118]) by mx1.FreeBSD.org (Postfix) with ESMTP id 994E143F85 for ; Sun, 23 Feb 2003 13:03:51 -0800 (PST) (envelope-from olivleh1@avocado.salatschuessel.net) Received: (qmail 11396 invoked by uid 0); 23 Feb 2003 21:03:48 -0000 Message-Id: <20030223210348.11395.qmail@avocado.salatschuessel.net> Date: 23 Feb 2003 21:03:48 -0000 From: Oliver Lehmann Reply-To: Oliver Lehmann To: FreeBSD-gnats-submit@FreeBSD.org Cc: Oliver Lehmann X-Send-Pr-Version: 3.113 Subject: ports/48604: update-port: security/oidentd Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48604 >Category: ports >Synopsis: update-port: security/oidentd >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Feb 23 13:10:02 PST 2003 >Closed-Date: >Last-Modified: >Originator: Oliver Lehmann >Release: FreeBSD 5.0-RELEASE-p2 i386 >Organization: >Environment: System: FreeBSD avocado.salatschuessel.net 5.0-RELEASE-p2 FreeBSD 5.0-RELEASE-p2 #10: Sun Feb 23 19:12:44 CET 2003 olivleh1@avocado.salatschuessel.net:/usr/obj/usr/src/sys/AVOCADO i386 >Description: version: 2.0.4 -> 2.0.5 tested with: 470101 and 500043 The old version, 2.0.4, doesn't compile on FreeBSD 5. >How-To-Repeat: >Fix: --- oidentd.patch begins here --- diff -ruN oidentd.orig/Makefile oidentd/Makefile --- oidentd.orig/Makefile Sun Feb 23 21:55:03 2003 +++ oidentd/Makefile Sun Feb 23 21:55:09 2003 @@ -6,7 +6,7 @@ # PORTNAME= oidentd -PORTVERSION= 2.0.4 +PORTVERSION= 2.0.5 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ojnk diff -ruN oidentd.orig/distinfo oidentd/distinfo --- oidentd.orig/distinfo Sun Feb 23 21:55:03 2003 +++ oidentd/distinfo Sun Feb 23 21:57:41 2003 @@ -1 +1 @@ -MD5 (oidentd-2.0.4.tar.gz) = 3b3b1468c57a727b0992753b183e4751 +MD5 (oidentd-2.0.5.tar.gz) = f8b8fb743155790742118941c01ff9d6 --- oidentd.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 13:10:10 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C71E137B407 for ; Sun, 23 Feb 2003 13:10:05 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF76643FBF for ; Sun, 23 Feb 2003 13:10:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NLA4NS004738 for ; Sun, 23 Feb 2003 13:10:04 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NLA4bE004737; Sun, 23 Feb 2003 13:10:04 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 25FA237B401 for ; Sun, 23 Feb 2003 13:08:56 -0800 (PST) Received: from prisma.quccc.org (c7057.upc-c.chello.nl [212.187.7.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB22B43F85 for ; Sun, 23 Feb 2003 13:08:54 -0800 (PST) (envelope-from kwm@prisma.quccc.org) Received: by prisma.quccc.org (Postfix, from userid 1001) id 4855CB83B; Sun, 23 Feb 2003 22:10:03 +0100 (CET) Message-Id: <20030223211003.4855CB83B@prisma.quccc.org> Date: Sun, 23 Feb 2003 22:10:03 +0100 (CET) From: Koop Mast Reply-To: Koop Mast To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48605: maintainer-update Update to latest snapshot Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48605 >Category: ports >Synopsis: maintainer-update Update to latest snapshot >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Feb 23 13:10:03 PST 2003 >Closed-Date: >Last-Modified: >Originator: Koop Mast >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD prisma.quccc.org 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Fri Feb 21 09:45:31 CET 2003 root@prisma.quccc.org:/usr/obj/usr/src/sys/RAINBOW i386 >Description: Update to latest snapshot >How-To-Repeat: >Fix: --- bluefish-devel.diff begins here --- diff -ruN bluefish-devel.orig/Makefile bluefish-devel/Makefile --- bluefish-devel.orig/Makefile Sun Feb 23 19:59:52 2003 +++ bluefish-devel/Makefile Sun Feb 23 22:04:45 2003 @@ -6,14 +6,15 @@ # PORTNAME= bluefish -PORTVERSION= 0.9 -PORTREVISION= 1 +PORTVERSION= 0.9.20030223 CATEGORIES= www editors MASTER_SITES= http://pkedu.fbt.eitn.wau.nl/~olivier/${DOWNLOAD}/ \ ftp://bluefish.advancecreations.com/pub/bluefish/${DOWNLOAD}/ \ http://bluefish.mrball.net/${DOWNLOAD}/ \ ftp://ftp.ratisbona.com/pub/bluefish/${DOWNLOAD}/ \ http://bluefish.shellhung.org/${DOWNLOAD}/ +DISTNAME= ${PORTNAME}-gtk2port-2003-02-23 +EXTRACT_SUFX= .tgz MAINTAINER= einekoai@chello.nl COMMENT= HTML editor designed for the experienced web designer @@ -23,9 +24,10 @@ aspell.15:${PORTSDIR}/textproc/aspell RUN_DEPENDS= weblint:${PORTSDIR}/www/weblint -DOWNLOAD= downloads +DOWNLOAD= snapshots +WRKSRC= ${WRKDIR}/bluefish-gtk2 NO_LATEST_LINK= yes -USE_BZIP2= yes +#USE_BZIP2= yes USE_GMAKE= yes USE_GNOMENG= yes USE_GNOME= gnomehier @@ -35,6 +37,8 @@ GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" +CONFIGURE_ARGS= --with-gnome2-menu=/${PREFIX}/share/gnome/apps/Applications + .include # Turns debugging output on @@ -47,11 +51,5 @@ @${ECHO_MSG} "" @${ECHO_MSG} "WITH_DEBUG=yes for debug support" .endif - -post-patch: -# Make sure bluefish.desktop is installed - @${REINPLACE_CMD} \ - -e 's|/usr|${PREFIX}|g;' \ - ${WRKSRC}/data/Makefile.in .include diff -ruN bluefish-devel.orig/distinfo bluefish-devel/distinfo --- bluefish-devel.orig/distinfo Tue Feb 18 07:36:12 2003 +++ bluefish-devel/distinfo Sun Feb 23 20:05:34 2003 @@ -1 +1 @@ -MD5 (bluefish-0.9.tar.bz2) = 6f3dd98df0959469d3637a44eb0e08cf +MD5 (bluefish-gtk2port-2003-02-23.tgz) = 6a1f8b475b0b5a07f8252eae43ecbb45 --- bluefish-devel.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 13:19:57 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6294E37B401; Sun, 23 Feb 2003 13:19:56 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7173B43FD7; Sun, 23 Feb 2003 13:19:55 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NLJtNS007073; Sun, 23 Feb 2003 13:19:55 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NLJslD007069; Sun, 23 Feb 2003 13:19:54 -0800 (PST) Date: Sun, 23 Feb 2003 13:19:54 -0800 (PST) From: Edwin Groothuis Message-Id: <200302232119.h1NLJslD007069@freefall.freebsd.org> To: fuyuki@hadaly.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, edwin@FreeBSD.org Subject: Re: ports/48188: Update port: graphics/gauche-gl to 0.2.2 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: graphics/gauche-gl to 0.2.2 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sun Feb 23 13:19:09 PST 2003 State-Changed-Why: I can't get it compiled on -current: gosh ./extract -en -o gauche-gl-refe.texi gauche-gl-ref.texi if test Xmakeinfo != X -a Xgzip != X; then makeinfo --no-warn gauche-gl-refe.texi; rm -rf gauche-gl-refe.info*.gz; gzip gauche-gl-refe.info; fi gosh ./extract -jp -o gauche-gl-refj.texi gauche-gl-ref.texi if test Xmakeinfo != X -a Xgzip != X; then makeinfo --no-warn gauche-gl-refj.texi; rm -rf gauche-gl-refj.info*.gz; gzip gauche-gl-refj.info ; fi gauche-gl-refj.texi:838: Unknown index `fn::' in @printindex. Bus error (core dumped) *** Error code 138 Stop in /local0/scratch/edwin/ports/graphics/gauche-gl/work/Gauche-gl/doc. *** Error code 1 Stop in /local0/scratch/edwin/ports/graphics/gauche-gl/work/Gauche-gl. *** Error code 1 Stop in /local0/scratch/edwin/ports/graphics/gauche-gl. Responsible-Changed-From-To: freebsd-ports-bugs->edwin Responsible-Changed-By: edwin Responsible-Changed-When: Sun Feb 23 13:19:09 PST 2003 Responsible-Changed-Why: I'll handle it... http://www.freebsd.org/cgi/query-pr.cgi?pr=48188 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 13:26: 2 2003 Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CBD3637B401; Sun, 23 Feb 2003 13:26:01 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-52.dsl.lsan03.pacbell.net [63.207.60.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09DFA43FD7; Sun, 23 Feb 2003 13:26:01 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 9EAE0679DA; Sun, 23 Feb 2003 13:26:00 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 8725C1243; Sun, 23 Feb 2003 13:26:00 -0800 (PST) Date: Sun, 23 Feb 2003 13:26:00 -0800 From: Kris Kennaway To: Dirk Meyer Cc: freebsd-ports-bugs@FreeBSD.ORG, portmgr@FreeBSD.ORG Subject: Re: ports/48590: cvs checkout fails in jail on bento Message-ID: <20030223212600.GB27618@rot13.obsecurity.org> References: <200302231137.h1NBb03L060981@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200302231137.h1NBb03L060981@freefall.freebsd.org> User-Agent: Mutt/1.4i Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Thanks, but I'm already aware of this (and other) issues. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 13:48:25 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E59637B401; Sun, 23 Feb 2003 13:48:24 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2295343FA3; Sun, 23 Feb 2003 13:48:24 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NLmONS013360; Sun, 23 Feb 2003 13:48:24 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NLmNgC013356; Sun, 23 Feb 2003 13:48:23 -0800 (PST) Date: Sun, 23 Feb 2003 13:48:23 -0800 (PST) From: Edwin Groothuis Message-Id: <200302232148.h1NLmNgC013356@freefall.freebsd.org> To: xaa+ports@timewasters.nl, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48533: Upgrade libslang port Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Upgrade libslang port State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 13:48:19 PST 2003 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48533 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 13:53:57 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 274B837B401; Sun, 23 Feb 2003 13:53:57 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD7D843F93; Sun, 23 Feb 2003 13:53:56 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NLruNS015557; Sun, 23 Feb 2003 13:53:56 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NLru6P015553; Sun, 23 Feb 2003 13:53:56 -0800 (PST) Date: Sun, 23 Feb 2003 13:53:56 -0800 (PST) From: Edwin Groothuis Message-Id: <200302232153.h1NLru6P015553@freefall.freebsd.org> To: hendrik@scholz.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/47823: maintainer-update: x11-wm/fbdesk Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: maintainer-update: x11-wm/fbdesk State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 13:53:16 PST 2003 State-Changed-Why: Commited, thanks! Please have a look at the comments Christian made about the 64-bits architectures. http://www.freebsd.org/cgi/query-pr.cgi?pr=47823 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 14:10:10 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9442637B401 for ; Sun, 23 Feb 2003 14:10:09 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BEA543FDD for ; Sun, 23 Feb 2003 14:10:09 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NMA9NS021433 for ; Sun, 23 Feb 2003 14:10:09 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NMA8xW021432; Sun, 23 Feb 2003 14:10:08 -0800 (PST) Date: Sun, 23 Feb 2003 14:10:08 -0800 (PST) Message-Id: <200302232210.h1NMA8xW021432@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Stephen Cravey Subject: Re: ports/47828: ports/security/acid upgrade to 0.9.6b23 with deinstall fix Reply-To: Stephen Cravey Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/47828; it has been noted by GNATS. From: Stephen Cravey To: foxfair@freebsd.org Cc: freebsd-gnats-submit@freebsd.org, ports@freebsd.org Subject: Re: ports/47828: ports/security/acid upgrade to 0.9.6b23 with deinstall fix Date: Sun, 23 Feb 2003 16:06:09 -0600 (CST) I opened a PR several weeks ago for an ACID update. I'd appreciate it if you'd look at it. There are several problems with the current port including an incorrect deinstall plist and an unlisted run depend for phplot. It also pre-sets some necessary variables in the acid_conf.php file. Your patch also includes the acid_conf.php.orig file for some reason along with the CHANGELOG, CREDITS, and TODO. Is there a reason for this that I've missed? PLEASE take a look at this patch and apply it. If you'd like me to, I'll update my patch to acommodate the new changes if you'd like. We're going on 3 weeks with zero response to this PR. Is anyone actually out there? All I've gotten back is that you can't get a patch applied until you've had a bunch of patches applied. (horray) -Stephen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 14:39:12 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B9C5937B401; Sun, 23 Feb 2003 14:39:11 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5DAFB43F85; Sun, 23 Feb 2003 14:39:11 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NMdBNS027903; Sun, 23 Feb 2003 14:39:11 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NMdBuf027899; Sun, 23 Feb 2003 14:39:11 -0800 (PST) Date: Sun, 23 Feb 2003 14:39:11 -0800 (PST) From: Edwin Groothuis Message-Id: <200302232239.h1NMdBuf027899@freefall.freebsd.org> To: larse@isi.edu, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48542: Update port: security/ssh2 3.2.2 -> 3.2.3 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: security/ssh2 3.2.2 -> 3.2.3 State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 14:39:06 PST 2003 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48542 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 14:40:10 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7CB4D37B401 for ; Sun, 23 Feb 2003 14:40:05 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F20943FBF for ; Sun, 23 Feb 2003 14:40:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NMe4NS027939 for ; Sun, 23 Feb 2003 14:40:04 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NMe4Lm027938; Sun, 23 Feb 2003 14:40:04 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3FC1037B401 for ; Sun, 23 Feb 2003 14:36:43 -0800 (PST) Received: from pluto.hedeland.org (as1-2-8.mal.s.bonet.se [194.236.4.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id B435B43F3F for ; Sun, 23 Feb 2003 14:36:41 -0800 (PST) (envelope-from per@hedeland.org) Received: from pluto.hedeland.org (localhost [127.0.0.1]) by pluto.hedeland.org (8.12.6/8.12.6) with ESMTP id h1NMactu018467; Sun, 23 Feb 2003 23:36:38 +0100 (CET) (envelope-from per@pluto.hedeland.org) Received: (from per@localhost) by pluto.hedeland.org (8.12.6/8.12.6/Submit) id h1NMabWV018466; Sun, 23 Feb 2003 23:36:37 +0100 (CET) Message-Id: <200302232236.h1NMabWV018466@pluto.hedeland.org> Date: Sun, 23 Feb 2003 23:36:37 +0100 (CET) From: Per Hedeland Reply-To: Per Hedeland To: FreeBSD-gnats-submit@FreeBSD.org Cc: per@hedeland.org X-Send-Pr-Version: 3.113 Subject: ports/48608: [PATCH] vmnet problem with emulators/vmware2 port Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48608 >Category: ports >Synopsis: [PATCH] vmnet problem with emulators/vmware2 port >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Feb 23 14:40:03 PST 2003 >Closed-Date: >Last-Modified: >Originator: Per Hedeland >Release: FreeBSD 5.0-RELEASE i386 >Organization: None >Environment: System: FreeBSD pluto.hedeland.org 5.0-RELEASE FreeBSD 5.0-RELEASE #6: Sun Feb 9 19:32:16 CET 2003 per@pluto.hedeland.org:/usr/src/sys/i386/compile/PLUTO i386 emulators/vmware2 port version 2.0.4.1142 as of 2003-02-23 >Description: The /usr/local/etc/rc.d/vmware.sh script aborts with: /usr/local/etc/rc.d/vmware.sh: cannot create /compat/linux/dev/vmnet1: Device not configured Subsequent attempt to start the vmware emulator fails with: Could not open /dev/vmnet1: No such device or address Failed to configure ethernet0 >How-To-Repeat: Install current vmware2-2.0.4.1142 on FreeBSD 5.0 installed before branching for RELENG_5_0_0. Try to start and run it. >Fix: When originally looking into this problem, before the port updates on Feb 11-12, I arrived at the same "fix" that is in one of those updates: Make /compat/linux/dev/vmnet1 a symlink to /dev/vmnet1 - but didn't think this was the "right" fix to make, see below. The symlinking that is done in the Makefile in the current port still doesn't fix the problem on my FreeBSD 5.0-RELEASE, installed off the CDs - it has OSVERSION 500043, while the symlink only happens for OSVERSION >= 500100. However... There are really two different problems here: 1) The minor number for vmnet1 has changed 0x00010001 -> 0x00800001 - this happened before OSVERSION 500023. 2) With devfs, it is necessary to open /dev/vmnet1 for the cloning. Now, I expect that it will be unusual to run FreeBSD 5.0 or later without devfs, but I assume it should be possible, so it doesn't seem appropriate to link the fix for 2) to a specific OSVERSION. Also it would be "nice" to not have to re-install the port on changing to/from usage of devfs, which suggests that 2) is best handled in the rc script. And of course, having the port first create /compat/linux/dev/vmnet1 with an incorrect minor number and then remove it again might be seen as "inelegant".:-) So, with the patch below /compat/linux/dev/vmnet1 will be created with the proper minor number, and if opening it in the rc script fails (which it will with devfs if the cloning hasn't been done already), the script will open /dev/vmnet1. (The previous code in the rc script will also work if the minor number is right, but will create a regular file in /dev when not using devfs - with the wrong minor number, the script aborts on the open of /compat/linux/dev/vmnet1.) If this patch isn't accepted, I'd suggest that at least the symlinking in the Makefile be done also for OSVERSION well before 500100 (unclear which though), and that the rc script changes are reverted since there is no need for the "double open" when /compat/linux/dev/vmnet1 is a symlink. By the way, I assume the PORTVERSION should be / should have been updated... --- Makefile.ORIG Sat Feb 22 03:07:02 2003 +++ ./Makefile Sun Feb 23 22:35:09 2003 @@ -67,11 +67,18 @@ .include "${WRKDIRPREFIX}${.CURDIR}/work/Makefile.inc.net" .endif +.if ${OSVERSION} < 500023 +VMNET1_MINOR= 0x00010001 +.else +VMNET1_MINOR= 0x00800001 +.endif + SCRIPTS_ENV+= LINUXBASE="${LINUXBASE}" \ VMNET_HOST_IP="${VMNET_HOST_IP}" \ - VMNET_NETMASK="${VMNET_NETMASK}" + VMNET_NETMASK="${VMNET_NETMASK}" \ + VMNET1_MINOR="${VMNET1_MINOR}" MAKE_ARGS= KMODDIR="${VMDIR}/lib/modules" -PLIST_SUB= LINUXBASE="${LINUXBASE}" +PLIST_SUB= LINUXBASE="${LINUXBASE}" VMNET1_MINOR="${VMNET1_MINOR}" post-extract: .for m in ${MODULES} @@ -175,10 +182,6 @@ post-install: ${LN} -sf ${PREFIX}/etc/vmware /etc/ -.if ${OSVERSION} >= 500100 - ${RM} -f ${LINUXBASE}/dev/vmnet1 - ${LN} -sf /dev/vmnet1 ${LINUXBASE}/dev/vmnet1 -.endif @${CAT} ${PKGMESSAGE} .include --- files/vmware.sh.ORIG Thu Feb 13 03:06:49 2003 +++ files/vmware.sh Sun Feb 23 22:31:03 2003 @@ -53,8 +53,8 @@ echo "Your VMware installation seems broken. Please reinstall VMware port." >&2 exit 255 fi - echo -n > /dev/vmnet1 2>&1 || true - echo -n > $dev_vmnet1 2>&1 + (echo -n > $dev_vmnet1) 2>/dev/null || \ + echo -n > /dev/vmnet1 2>&1 ifconfig vmnet1 $host_ip netmask $netmask if [ X$bridged = XYES ]; then kldstat -v | grep netgraph >/dev/null || kldload netgraph.ko --- pkg-plist.ORIG Thu Feb 22 22:10:34 2001 +++ ./pkg-plist Sun Feb 23 22:08:02 2003 @@ -121,7 +121,7 @@ @exec mknod %%LINUXBASE%%/dev/hdb b 0 0x0001000a @exec ln -sf %D/etc/vmware /etc/ @exec mknod %%LINUXBASE%%/dev/vmmon c 200 0 -@exec mknod %%LINUXBASE%%/dev/vmnet1 c 149 65537 +@exec mknod %%LINUXBASE%%/dev/vmnet1 c 149 %%VMNET1_MINOR%% @unexec rm -f /etc/vmware %%LINUXBASE%%/dev/vmmon %%LINUXBASE%%/dev/vmnet1 %%LINUXBASE%%/bin/df %%LINUXBASE%%/dev/tty[0-9]* %%LINUXBASE%%/dev/hd? %%LINUXBASE%%/dev/null @dirrm etc/vmware @dirrm lib/vmware/bin --- scripts/pre-install.ORIG Fri Sep 22 19:22:24 2000 +++ scripts/pre-install Sun Feb 23 22:01:40 2003 @@ -18,7 +18,7 @@ mknod ${linux_dev}/null c 2 2 chmod 666 ${linux_dev}/null echo Creating vmnet1 node -mknod /compat/linux/dev/vmnet1 c 149 65537 +mknod /compat/linux/dev/vmnet1 c 149 ${VMNET1_MINOR} echo Creating $linux_dev/hd\? mknod ${linux_dev}/hda b 0 0x00010002 mknod ${linux_dev}/hdb b 0 0x0001000a >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 14:41:13 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C46537B406; Sun, 23 Feb 2003 14:41:12 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A286D43F3F; Sun, 23 Feb 2003 14:41:11 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NMfBNS029945; Sun, 23 Feb 2003 14:41:11 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NMfB8P029941; Sun, 23 Feb 2003 14:41:11 -0800 (PST) Date: Sun, 23 Feb 2003 14:41:11 -0800 (PST) From: Edwin Groothuis Message-Id: <200302232241.h1NMfB8P029941@freefall.freebsd.org> To: mwm@mired.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48543: TMDA port is out of date Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: TMDA port is out of date State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 14:40:24 PST 2003 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48543 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 14:50:12 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5FF3337B405; Sun, 23 Feb 2003 14:50:11 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2F1743F85; Sun, 23 Feb 2003 14:50:10 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NMoANS030410; Sun, 23 Feb 2003 14:50:10 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NMoA3h030398; Sun, 23 Feb 2003 14:50:10 -0800 (PST) Date: Sun, 23 Feb 2003 14:50:10 -0800 (PST) From: Edwin Groothuis Message-Id: <200302232250.h1NMoA3h030398@freefall.freebsd.org> To: einekoai@chello.nl, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48605: maintainer-update Update to latest snapshot Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: maintainer-update Update to latest snapshot State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 14:50:06 PST 2003 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48605 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 14:59:56 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D900037B401; Sun, 23 Feb 2003 14:59:55 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B83543F3F; Sun, 23 Feb 2003 14:59:55 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NMxtNS032522; Sun, 23 Feb 2003 14:59:55 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NMxso8032518; Sun, 23 Feb 2003 14:59:54 -0800 (PST) Date: Sun, 23 Feb 2003 14:59:54 -0800 (PST) From: Edwin Groothuis Message-Id: <200302232259.h1NMxso8032518@freefall.freebsd.org> To: stijn@win.tue.nl, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48202: [MAINTAINER UPDATE]: emulators/xmame & emulators/xmess Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [MAINTAINER UPDATE]: emulators/xmame & emulators/xmess State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 14:59:50 PST 2003 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48202 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 15: 2:38 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 938C337B405; Sun, 23 Feb 2003 15:02:37 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B17E643FDF; Sun, 23 Feb 2003 15:02:36 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NN2aNS034598; Sun, 23 Feb 2003 15:02:36 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NN2auk034594; Sun, 23 Feb 2003 15:02:36 -0800 (PST) Date: Sun, 23 Feb 2003 15:02:36 -0800 (PST) From: Edwin Groothuis Message-Id: <200302232302.h1NN2auk034594@freefall.freebsd.org> To: larse@isi.edu, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48219: Update port: databases/jdb bugfixes for perl-5.8 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: databases/jdb bugfixes for perl-5.8 State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 15:02:33 PST 2003 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48219 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 15: 4:15 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5446637B405; Sun, 23 Feb 2003 15:04:14 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B49FF43FBF; Sun, 23 Feb 2003 15:04:13 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from freefall.freebsd.org (naddy@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NN4DNS034714; Sun, 23 Feb 2003 15:04:13 -0800 (PST) (envelope-from naddy@freefall.freebsd.org) Received: (from naddy@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NN4D55034710; Sun, 23 Feb 2003 15:04:13 -0800 (PST) Date: Sun, 23 Feb 2003 15:04:13 -0800 (PST) From: Christian Weisgerber Message-Id: <200302232304.h1NN4D55034710@freefall.freebsd.org> To: lansil@fuzzynerd.com, naddy@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48433: coldsync-2.2.5 does not compile on FreeBSD 5.0 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: coldsync-2.2.5 does not compile on FreeBSD 5.0 State-Changed-From-To: open->closed State-Changed-By: naddy State-Changed-When: Sun Feb 23 15:03:01 PST 2003 State-Changed-Why: Thanks, the same fix has been committed independently. http://www.freebsd.org/cgi/query-pr.cgi?pr=48433 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 15: 5:31 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB4D137B401; Sun, 23 Feb 2003 15:05:30 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D6B943FA3; Sun, 23 Feb 2003 15:05:30 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NN5UNS038395; Sun, 23 Feb 2003 15:05:30 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NN5SZu038391; Sun, 23 Feb 2003 15:05:28 -0800 (PST) Date: Sun, 23 Feb 2003 15:05:28 -0800 (PST) From: Edwin Groothuis Message-Id: <200302232305.h1NN5SZu038391@freefall.freebsd.org> To: riggs@mugiri-in-au.dyndns.tv, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48184: Maintainer-update of cad/linux-eagle Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Maintainer-update of cad/linux-eagle State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 15:05:23 PST 2003 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48184 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 15: 6:28 2003 Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2AEAD37B401; Sun, 23 Feb 2003 15:06:27 -0800 (PST) Received: from t-mta1.odn.ne.jp (mfep1.odn.ne.jp [143.90.131.179]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07B2843F85; Sun, 23 Feb 2003 15:06:26 -0800 (PST) (envelope-from fuyuki@hadaly.org) Received: from hadaly.dyndns.org ([218.218.122.239]) by t-mta1.odn.ne.jp with ESMTP id <20030223230625050.DZAN.3961.t-mta1.odn.ne.jp@mta1.odn.ne.jp>; Mon, 24 Feb 2003 08:06:25 +0900 Received: from hadaly.dyndns.org (localhost [127.0.0.1]) by hadaly.dyndns.org (Postfix) with ESMTP id ABEE75498; Mon, 24 Feb 2003 08:06:23 +0900 (JST) Date: Mon, 24 Feb 2003 08:06:22 +0900 Message-ID: <867kbqvbpt.wl%fuyuki@hadaly.org> From: Kimura Fuyuki To: edwin@FreeBSD.org Cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48188: Update port: graphics/gauche-gl to 0.2.2 In-Reply-To: <200302232119.h1NLJslD007069@freefall.freebsd.org> References: <200302232119.h1NLJslD007069@freefall.freebsd.org> User-Agent: Wanderlust/2.10.0 (Venus) Emacs/21.2 Mule/5.0 (SAKAKI) X-Public-Key: http://www.hadaly.org/fuyuki.key X-Fingerprint: 8D68 1138 1A85 8556 C6A9 274B 2C72 2E56 3AF7 3D89 MIME-Version: 1.0 (generated by SEMI 1.14.5 - "Awara-Onsen") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org At Sun, 23 Feb 2003 13:19:54 -0800 (PST), Edwin Groothuis wrote: > > I can't get it compiled on -current: > > gosh ./extract -en -o gauche-gl-refe.texi gauche-gl-ref.texi > if test Xmakeinfo != X -a Xgzip != X; then makeinfo --no-warn gauche-gl-refe.texi; rm -rf gauche-gl-refe.info*.gz; gzip gauche-gl-refe.info; fi > gosh ./extract -jp -o gauche-gl-refj.texi gauche-gl-ref.texi > if test Xmakeinfo != X -a Xgzip != X; then makeinfo --no-warn gauche-gl-refj.texi; rm -rf gauche-gl-refj.info*.gz; gzip gauche-gl-refj.info ; fi > gauche-gl-refj.texi:838: Unknown index `fn::' in @printindex. > Bus error (core dumped) > *** Error code 138 Strange. No need to extract at all because gauche-gl-ref?.texi are newer than gauche-gl-ref.texi and ./extract. What about this? pre-build: ${TOUCH} ${WRKSRC}/doc/gauche-gl-ref?.texi or this? USE_GMAKE= yes -- fuyuki To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 15: 9:12 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A770337B401; Sun, 23 Feb 2003 15:09:11 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DBF043F85; Sun, 23 Feb 2003 15:09:11 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NN9BNS038472; Sun, 23 Feb 2003 15:09:11 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NN98CF038468; Sun, 23 Feb 2003 15:09:08 -0800 (PST) Date: Sun, 23 Feb 2003 15:09:08 -0800 (PST) From: Edwin Groothuis Message-Id: <200302232309.h1NN98CF038468@freefall.freebsd.org> To: lev@serebryakov.spb.ru, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48161: [PATCH][UNBROKE] Update MASTER_SITE for port russian/apache13-modssl to lateset mirror list Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [PATCH][UNBROKE] Update MASTER_SITE for port russian/apache13-modssl to lateset mirror list State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 15:08:55 PST 2003 State-Changed-Why: Commited, thanks! (made portlint a little bit happier too) http://www.freebsd.org/cgi/query-pr.cgi?pr=48161 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 15:10:20 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E6E637B405; Sun, 23 Feb 2003 15:10:17 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B9DBE43FD7; Sun, 23 Feb 2003 15:10:16 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NNAGNS038620; Sun, 23 Feb 2003 15:10:16 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NNAG3Y038616; Sun, 23 Feb 2003 15:10:16 -0800 (PST) Date: Sun, 23 Feb 2003 15:10:16 -0800 (PST) From: Edwin Groothuis Message-Id: <200302232310.h1NNAG3Y038616@freefall.freebsd.org> To: lev@serebryakov.spb.ru, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48160: [PATCH][UNBROKE] Update MASTER_SITE for port russian/apache13 to lateset mirror list Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [PATCH][UNBROKE] Update MASTER_SITE for port russian/apache13 to lateset mirror list State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 15:10:12 PST 2003 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48160 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 15:14:30 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF43F37B401; Sun, 23 Feb 2003 15:14:29 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81E4C43FE0; Sun, 23 Feb 2003 15:14:27 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from freefall.freebsd.org (naddy@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NNERNS040826; Sun, 23 Feb 2003 15:14:27 -0800 (PST) (envelope-from naddy@freefall.freebsd.org) Received: (from naddy@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NNERVs040822; Sun, 23 Feb 2003 15:14:27 -0800 (PST) Date: Sun, 23 Feb 2003 15:14:27 -0800 (PST) From: Christian Weisgerber Message-Id: <200302232314.h1NNERVs040822@freefall.freebsd.org> To: fuyuki@hadaly.org, naddy@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48446: Update port: misc/qmc (distfiles survey) Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: misc/qmc (distfiles survey) State-Changed-From-To: open->closed State-Changed-By: naddy State-Changed-When: Sun Feb 23 15:14:15 PST 2003 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48446 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 15:17: 9 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A94D237B401; Sun, 23 Feb 2003 15:17:08 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC91F43FDD; Sun, 23 Feb 2003 15:17:07 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NNH7NS041058; Sun, 23 Feb 2003 15:17:07 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NNH6es041054; Sun, 23 Feb 2003 15:17:06 -0800 (PST) Date: Sun, 23 Feb 2003 15:17:06 -0800 (PST) From: Edwin Groothuis Message-Id: <200302232317.h1NNH6es041054@freefall.freebsd.org> To: sysadmin@alexdupre.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/47905: [Maintainer Update] Port: php-templates 1.7 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [Maintainer Update] Port: php-templates 1.7 State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 15:17:03 PST 2003 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=47905 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 15:26:42 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3CB9A37B401; Sun, 23 Feb 2003 15:26:41 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D290243F85; Sun, 23 Feb 2003 15:26:40 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from freefall.freebsd.org (kris@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NNQeNS043366; Sun, 23 Feb 2003 15:26:40 -0800 (PST) (envelope-from kris@freefall.freebsd.org) Received: (from kris@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NNQev0043362; Sun, 23 Feb 2003 15:26:40 -0800 (PST) Date: Sun, 23 Feb 2003 15:26:40 -0800 (PST) From: Kris Kennaway Message-Id: <200302232326.h1NNQev0043362@freefall.freebsd.org> To: kris@FreeBSD.org, portmgr@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/47424: Tool for tracking what files are touched using kdump/ktrace Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Tool for tracking what files are touched using kdump/ktrace Responsible-Changed-From-To: portmgr->freebsd-ports-bugs Responsible-Changed-By: kris Responsible-Changed-When: Sun Feb 23 15:25:52 PST 2003 Responsible-Changed-Why: The Tools/ directory is not under portmgr control http://www.freebsd.org/cgi/query-pr.cgi?pr=47424 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 15:29:52 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4453E37B425; Sun, 23 Feb 2003 15:29:50 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D958F43FAF; Sun, 23 Feb 2003 15:29:49 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1NNTnNS043464; Sun, 23 Feb 2003 15:29:49 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1NNTnGq043460; Sun, 23 Feb 2003 15:29:49 -0800 (PST) Date: Sun, 23 Feb 2003 15:29:49 -0800 (PST) From: Edwin Groothuis Message-Id: <200302232329.h1NNTnGq043460@freefall.freebsd.org> To: mt@primats.org.ua, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/47730: Update: palm/plucker 1.2 -> 1.2_1 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update: palm/plucker 1.2 -> 1.2_1 State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 15:29:03 PST 2003 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=47730 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 16:21:20 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6401B37B401; Sun, 23 Feb 2003 16:21:19 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB9C543F85; Sun, 23 Feb 2003 16:21:18 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O0LINS060091; Sun, 23 Feb 2003 16:21:18 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O0LIRJ060087; Sun, 23 Feb 2003 16:21:18 -0800 (PST) Date: Sun, 23 Feb 2003 16:21:18 -0800 (PST) From: Edwin Groothuis Message-Id: <200302240021.h1O0LIRJ060087@freefall.freebsd.org> To: lev@serebryakov.spb.ru, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48497: [MAINTAINER UPDATE] Update port `devel/msp430-binutils' to new, improved version. Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [MAINTAINER UPDATE] Update port `devel/msp430-binutils' to new, improved version. State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 16:20:59 PST 2003 State-Changed-Why: Commited, thanks! (needed two patches to get it compiled on -current) http://www.freebsd.org/cgi/query-pr.cgi?pr=48497 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 16:39:57 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A2BDA37B482; Sun, 23 Feb 2003 16:39:55 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7ED2D43FDF; Sun, 23 Feb 2003 16:39:53 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O0drNS062292; Sun, 23 Feb 2003 16:39:53 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O0dr23062288; Sun, 23 Feb 2003 16:39:53 -0800 (PST) Date: Sun, 23 Feb 2003 16:39:53 -0800 (PST) From: Edwin Groothuis Message-Id: <200302240039.h1O0dr23062288@freefall.freebsd.org> To: lev@serebryakov.spb.ru, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48498: [MAINTAINER UPDATE] Update port `devel/msp430-gcc' to new, improved and fixed version based on gcc 3.2.2. Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [MAINTAINER UPDATE] Update port `devel/msp430-gcc' to new, improved and fixed version based on gcc 3.2.2. State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 16:39:49 PST 2003 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48498 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 16:40:13 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DBD8D37B401 for ; Sun, 23 Feb 2003 16:40:12 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 749A743F85 for ; Sun, 23 Feb 2003 16:40:12 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O0eCNS062320 for ; Sun, 23 Feb 2003 16:40:12 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O0eC9r062319; Sun, 23 Feb 2003 16:40:12 -0800 (PST) Date: Sun, 23 Feb 2003 16:40:12 -0800 (PST) Message-Id: <200302240040.h1O0eC9r062319@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Christian Weisgerber Subject: Re: ports/48581: Update russian/xxkb Reply-To: Christian Weisgerber Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48581; it has been noted by GNATS. From: Christian Weisgerber To: redfox@Fluffy.Khv.RU Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/48581: Update russian/xxkb Date: Mon, 24 Feb 2003 01:00:07 +0100 (CET) In article <200302230551.h1N5pEYd042281@Fluffy.Khv.RU> you write: > >Number: 48581 > >Category: ports > >Synopsis: Update russian/xxkb This throws tons of unaligned access errors on alpha. -- Christian "naddy" Weisgerber naddy@mips.inka.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 16:43:26 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED17C37B405; Sun, 23 Feb 2003 16:43:25 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D3B743FA3; Sun, 23 Feb 2003 16:43:25 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O0hPNS064338; Sun, 23 Feb 2003 16:43:25 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O0hPwd064334; Sun, 23 Feb 2003 16:43:25 -0800 (PST) Date: Sun, 23 Feb 2003 16:43:25 -0800 (PST) From: Edwin Groothuis Message-Id: <200302240043.h1O0hPwd064334@freefall.freebsd.org> To: lev@serebryakov.spb.ru, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48499: [MAINTAINER UPDATE] Update port `devel/msp430-libc' to new version. Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [MAINTAINER UPDATE] Update port `devel/msp430-libc' to new version. State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 16:43:21 PST 2003 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48499 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 16:44:21 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CEB0D37B40D; Sun, 23 Feb 2003 16:44:20 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E4F843FA3; Sun, 23 Feb 2003 16:44:20 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O0iKNS064394; Sun, 23 Feb 2003 16:44:20 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O0iKax064390; Sun, 23 Feb 2003 16:44:20 -0800 (PST) Date: Sun, 23 Feb 2003 16:44:20 -0800 (PST) From: Edwin Groothuis Message-Id: <200302240044.h1O0iKax064390@freefall.freebsd.org> To: lev@serebryakov.spb.ru, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48500: [MAINTAINER UPDATE] Update port `devel/msp430-gdb' to new, improved version. Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [MAINTAINER UPDATE] Update port `devel/msp430-gdb' to new, improved version. State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 16:44:17 PST 2003 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48500 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 18:50:12 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B2B637B401 for ; Sun, 23 Feb 2003 18:50:10 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0780343FDF for ; Sun, 23 Feb 2003 18:50:09 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O2o8NS098025 for ; Sun, 23 Feb 2003 18:50:08 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O2o8Kc098024; Sun, 23 Feb 2003 18:50:08 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 27E1B37B401 for ; Sun, 23 Feb 2003 18:42:07 -0800 (PST) Received: from chen.org.nz (chen.org.nz [210.54.19.51]) by mx1.FreeBSD.org (Postfix) with ESMTP id A0A2E43FE1 for ; Sun, 23 Feb 2003 18:42:03 -0800 (PST) (envelope-from jonc@chen.org.nz) Received: from grimoire.chen.org.nz (localhost [127.0.0.1]) by chen.org.nz (8.12.7/8.12.7) with ESMTP id h1O2ftqR039371; Mon, 24 Feb 2003 15:42:01 +1300 (NZDT) (envelope-from jonc@grimoire.chen.org.nz) Received: (from jonc@localhost) by grimoire.chen.org.nz (8.12.7/8.12.7/Submit) id h1O2fsQZ039370; Mon, 24 Feb 2003 15:41:54 +1300 (NZDT) Message-Id: <200302240241.h1O2fsQZ039370@grimoire.chen.org.nz> Date: Mon, 24 Feb 2003 15:41:54 +1300 (NZDT) From: Jonathan Chen Reply-To: Jonathan Chen To: FreeBSD-gnats-submit@FreeBSD.org, girgen@pingpong.net X-Send-Pr-Version: 3.113 Subject: ports/48610: database/postgresql-jdbc postgresql.jar is incomplete. Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48610 >Category: ports >Synopsis: database/postgresql-jdbc postgresql.jar is incomplete. >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Feb 23 18:50:08 PST 2003 >Closed-Date: >Last-Modified: >Originator: Jonathan Chen >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: FreeBSD grimoire.chen.org.nz 4.7-STABLE FreeBSD 4.7-STABLE #0: Sat Feb 15 15:42:09 NZDT 2003 root@grimoire.chen.org.nz:/usr/obj/usr/src/sys/GRIMOIRE i386 >Description: On a system running jdk-1.3.1-p8, the postgresql.jar file from database/postgresql-jdbc does not contain several classes essential for supporting MetaData functions. >How-To-Repeat: # cd /usr/ports/database/postgresql-jdbc # make # cd work/postgresql-7.3.2/src/interfaces/jdbc/jars # java -cp postgresql-examples.jar:postgresql.jar examples/metadata Exception in thread "main" java.lang.NoClassDefFoundError: examples/metadata >Fix: The following patch needs to be added to the port: --- src/interfaces/jdbc/build.xml.orig Mon Feb 24 15:17:49 2003 +++ src/interfaces/jdbc/build.xml Mon Feb 24 15:18:14 2003 @@ -104,7 +104,7 @@ - + >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 19: 0:24 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4581A37B401 for ; Sun, 23 Feb 2003 19:00:23 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5D5843FCB for ; Sun, 23 Feb 2003 19:00:22 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O30MNS000434 for ; Sun, 23 Feb 2003 19:00:22 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O30MKq000433; Sun, 23 Feb 2003 19:00:22 -0800 (PST) Date: Sun, 23 Feb 2003 19:00:22 -0800 (PST) Message-Id: <200302240300.h1O30MKq000433@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Jonathan Chen Subject: Re: ports/48610: database/postgresql-jdbc postgresql.jar is incomplete. Reply-To: Jonathan Chen Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48610; it has been noted by GNATS. From: Jonathan Chen To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/48610: database/postgresql-jdbc postgresql.jar is incomplete. Date: Mon, 24 Feb 2003 15:55:02 +1300 Oops. The "How-To-Repeat" last line should really read: # java -cp postgresql.jar:postgresql-examples.jar example.metadata jdbc:postgresql:database user password PostgreSQL metdata tester v6.4 rev 1 Exception in thread "main" java.lang.NoClassDefFoundError: org/postgresql/jdbc1/AbstractJdbc1Connection at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:120) at example.metadata.(metadata.java:125) at example.metadata.main(metadata.java:289) Cheers. -- Jonathan Chen ---------------------------------------------------------------------- Power corrupts, Absolute Power is pretty neat To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 19:10:13 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 51B0937B401 for ; Sun, 23 Feb 2003 19:10:10 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 607CB43FBF for ; Sun, 23 Feb 2003 19:10:09 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O3A9NS006147 for ; Sun, 23 Feb 2003 19:10:09 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O3A9iC006146; Sun, 23 Feb 2003 19:10:09 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0104B37B401 for ; Sun, 23 Feb 2003 19:00:44 -0800 (PST) Received: from t-mta1.odn.ne.jp (mfep1.odn.ne.jp [143.90.131.179]) by mx1.FreeBSD.org (Postfix) with ESMTP id 24CED43FA3 for ; Sun, 23 Feb 2003 19:00:43 -0800 (PST) (envelope-from fuyuki@hadaly.dyndns.org) Received: from hadaly.dyndns.org ([218.218.122.239]) by t-mta1.odn.ne.jp with ESMTP id <20030224030042225.FSIC.3961.t-mta1.odn.ne.jp@mta1.odn.ne.jp>; Mon, 24 Feb 2003 12:00:42 +0900 Received: by hadaly.dyndns.org (Postfix, from userid 1001) id 4BB3E54B7; Mon, 24 Feb 2003 12:00:41 +0900 (JST) Message-Id: <20030224030041.4BB3E54B7@hadaly.dyndns.org> Date: Mon, 24 Feb 2003 12:00:41 +0900 (JST) From: Kimura Fuyuki To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48611: Update port: graphics/sdl_gfx (fix install path) Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48611 >Category: ports >Synopsis: Update port: graphics/sdl_gfx (fix install path) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Feb 23 19:10:08 PST 2003 >Closed-Date: >Last-Modified: >Originator: Kimura Fuyuki >Release: FreeBSD 4.7-RELEASE-p3 i386 >Organization: >Environment: System: FreeBSD hadaly.dyndns.org 4.7-RELEASE-p3 FreeBSD 4.7-RELEASE-p3 #0: Tue Jan 7 14:25:02 JST 2003 root@hadaly.dyndns.org:/sack/tmp/obj/pub/src/sys/NS i386 >Description: It seems better to use the same header location as other SDL families. >How-To-Repeat: >Fix: cvs server: Diffing . Index: Makefile =================================================================== RCS file: /home/ncvs/ports/graphics/sdl_gfx/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- Makefile 20 Feb 2003 18:08:14 -0000 1.5 +++ Makefile 24 Feb 2003 02:58:09 -0000 @@ -8,7 +8,7 @@ PORTNAME= sdl_gfx PORTVERSION= 2.0.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= http://www.ferzkopp.net/Software/SDL_gfx-${PORTVERSION:R}/ DISTNAME= SDL_gfx-${PORTVERSION} @@ -20,9 +20,14 @@ SDL_CONFIG= ${LOCALBASE}/bin/sdl11-config +USE_REINPLACE= yes USE_GMAKE= yes USE_LIBTOOL= yes CONFIGURE_ENV= SDL_CONFIG="${SDL_CONFIG}" INSTALLS_SHLIB= yes + +post-patch: + ${REINPLACE_CMD} 's,^libSDL_gfxincludedir.*,&/SDL11,' \ + ${WRKSRC}/Makefile.in .include Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/graphics/sdl_gfx/pkg-plist,v retrieving revision 1.2 diff -u -r1.2 pkg-plist --- pkg-plist 12 Jan 2003 01:49:27 -0000 1.2 +++ pkg-plist 24 Feb 2003 02:58:09 -0000 @@ -1,8 +1,8 @@ -include/SDL_framerate.h -include/SDL_gfxPrimitives.h -include/SDL_gfxPrimitives_font.h -include/SDL_imageFilter.h -include/SDL_rotozoom.h +include/SDL11/SDL_framerate.h +include/SDL11/SDL_gfxPrimitives.h +include/SDL11/SDL_gfxPrimitives_font.h +include/SDL11/SDL_imageFilter.h +include/SDL11/SDL_rotozoom.h lib/libSDL_gfx.a lib/libSDL_gfx.so lib/libSDL_gfx.so.0 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 19:30: 6 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 73F5837B405 for ; Sun, 23 Feb 2003 19:30:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1423C43FD7 for ; Sun, 23 Feb 2003 19:30:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O3U2NS010545 for ; Sun, 23 Feb 2003 19:30:02 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O3U2DJ010544; Sun, 23 Feb 2003 19:30:02 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1246237B401 for ; Sun, 23 Feb 2003 19:22:20 -0800 (PST) Received: from housecat.unknown.nu (housecat.unknown.nu [207.229.168.229]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5455643F85 for ; Sun, 23 Feb 2003 19:22:18 -0800 (PST) (envelope-from sluggo@housecat.unknown.nu) Received: from housecat.unknown.nu (localhost.unknown.nu [127.0.0.1]) by housecat.unknown.nu (8.12.6/8.12.6) with ESMTP id h1O3MFoh017230 for ; Sun, 23 Feb 2003 21:22:16 -0600 (CST) (envelope-from sluggo@housecat.unknown.nu) Received: (from sluggo@localhost) by housecat.unknown.nu (8.12.6/8.12.6/Submit) id h1O3MEZg017229; Sun, 23 Feb 2003 21:22:14 -0600 (CST) Message-Id: <200302240322.h1O3MEZg017229@housecat.unknown.nu> Date: Sun, 23 Feb 2003 21:22:14 -0600 (CST) From: Kim Scarborough To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48613: XFree86-clients port overwrites config file Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48613 >Category: ports >Synopsis: XFree86-clients port overwrites config file >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Feb 23 19:30:02 PST 2003 >Closed-Date: >Last-Modified: >Originator: Kim Scarborough >Release: FreeBSD 5.0-RELEASE i386 >Organization: >Environment: System: FreeBSD housecat.unknown.nu 5.0-RELEASE FreeBSD 5.0-RELEASE #2: Tue Feb 11 20:42:09 CST 2003 toor@housecat.unknown.nu:/usr/src/sys/i386/compile/HOUSECAT i386 >Description: The XFree86-clients port has the file lib/X11/xdm/Xsetup_0 listed in its packing list, which forces xconsole to start with xdm. I don't like this setting, so I comment that out, but it gets overwritten every time I upgrade the port. It seems to me that this should be installed as Xsetup_0.sample (as per the recommendation in part 15.15 of the Porter's Handbook). >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 20:40:51 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7702737B437; Sun, 23 Feb 2003 20:40:48 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 16DC243FAF; Sun, 23 Feb 2003 20:40:48 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O4elNS030396; Sun, 23 Feb 2003 20:40:47 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O4elnM030368; Sun, 23 Feb 2003 20:40:47 -0800 (PST) Date: Sun, 23 Feb 2003 20:40:47 -0800 (PST) From: Edwin Groothuis Message-Id: <200302240440.h1O4elnM030368@freefall.freebsd.org> To: kiwi@oav.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/46234: Maintainer Update: Please Repo Copy www/caudium -> www/caudium10 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Maintainer Update: Please Repo Copy www/caudium -> www/caudium10 State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 20:40:43 PST 2003 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=46234 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 20:59: 3 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3427F37B401; Sun, 23 Feb 2003 20:59:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C988943FB1; Sun, 23 Feb 2003 20:59:02 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O4x2NS034155; Sun, 23 Feb 2003 20:59:02 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O4x20v034151; Sun, 23 Feb 2003 20:59:02 -0800 (PST) Date: Sun, 23 Feb 2003 20:59:02 -0800 (PST) From: Edwin Groothuis Message-Id: <200302240459.h1O4x20v034151@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, edwin@FreeBSD.org Subject: Re: ports/47206: [repocopy waiting] repocopy request for ports/devel/mingw* Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [repocopy waiting] repocopy request for ports/devel/mingw* Responsible-Changed-From-To: freebsd-ports-bugs->edwin Responsible-Changed-By: edwin Responsible-Changed-When: Sun Feb 23 20:58:56 PST 2003 Responsible-Changed-Why: Pick it up again. http://www.freebsd.org/cgi/query-pr.cgi?pr=47206 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 21: 0:40 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4EFB337B401 for ; Sun, 23 Feb 2003 21:00:36 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBBB243FF7 for ; Sun, 23 Feb 2003 21:00:31 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O50TNS034236 for ; Sun, 23 Feb 2003 21:00:29 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O50TPg034235; Sun, 23 Feb 2003 21:00:29 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 218E837B401 for ; Sun, 23 Feb 2003 20:55:09 -0800 (PST) Received: from geekpunk.net (adsl-32-193-54.bna.bellsouth.net [67.32.193.54]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19A5B43FB1 for ; Sun, 23 Feb 2003 20:55:08 -0800 (PST) (envelope-from bandix@geekpunk.net) Received: from localhost.my.domain (taran [127.0.0.1]) by geekpunk.net (8.12.6/8.12.6) with ESMTP id h1O4tR4l076656 for ; Sun, 23 Feb 2003 22:55:27 -0600 (CST) (envelope-from bandix@geekpunk.net) Received: (from bandix@localhost) by localhost.my.domain (8.12.6/8.12.6/Submit) id h1O4tP8Q076655; Sun, 23 Feb 2003 22:55:25 -0600 (CST) (envelope-from bandix) Message-Id: <200302240455.h1O4tP8Q076655@localhost.my.domain> Date: Sun, 23 Feb 2003 22:55:25 -0600 (CST) From: "Brandon D. Valentine" Reply-To: "Brandon D. Valentine" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48616: New port: linux-flashplugin6 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48616 >Category: ports >Synopsis: New port: linux-flashplugin6 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Feb 23 21:00:29 PST 2003 >Closed-Date: >Last-Modified: >Originator: Brandon D. Valentine >Release: FreeBSD 4.7-RELEASE-p2 i386 >Organization: n/a >Environment: System: FreeBSD taran 4.7-RELEASE-p2 FreeBSD 4.7-RELEASE-p2 #2: Tue Dec 17 16:11:41 CST 2002 root@taran:/usr/obj/usr/src/sys/TARAN i386 >Description: This is a port of Macromedia's Flash 6 Plugin for Linux. It works with the linux-mozilla port. Flash6 _does not_ work with Netscape 4.x for Linux, which is why this is a new port and not an update of linux-flashplugin. This port can coexist with linux-flashplugin. >How-To-Repeat: >Fix: --- linux-flashplugin6.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # linux-flashplugin6 # linux-flashplugin6/Makefile # linux-flashplugin6/distinfo # linux-flashplugin6/pkg-comment # linux-flashplugin6/pkg-descr # linux-flashplugin6/pkg-plist # echo c - linux-flashplugin6 mkdir -p linux-flashplugin6 > /dev/null 2>&1 echo x - linux-flashplugin6/Makefile sed 's/^X//' >linux-flashplugin6/Makefile << 'END-of-linux-flashplugin6/Makefile' X# New ports collection makefile for: linux-flashplugin6 X# Based on linux-flashplugin port by Matt Heckaman. X# Date created: 23 February 2003 X# Whom: Brandon D. Valentine X# X# $FreeBSD$ X# X XPORTNAME= flashplugin XPORTVERSION= 6.0r69 XCATEGORIES= www graphics linux XMASTER_SITES= http://download.macromedia.com/pub/shockwave/flash/english/linux/${PORTVERSION}/ XPKGNAMEPREFIX= linux- XDISTNAME= install_flash_player_6_linux XDIST_SUBDIR= ${PORTNAME}/${PORTVERSION} X XMAINTAINER= ports@geekpunk.net XCOMMENT= The official Macromedia Flash Player for Linux Mozilla and Netscape 6+ X XONLY_FOR_ARCHS= i386 XUSE_LINUX= yes XNO_CDROM= "Redistribution not allowed" XNO_BUILD= yes XWRKSRC= ${WRKDIR}/install_flash_player_6_linux X XPLUGINSDIR= lib/linux-mozilla/plugins XLIBFILES= libflashplayer.so \ X flashplayer.xpt X XPLIST_SUB= PLUGINSDIR="${PLUGINSDIR}" X Xdo-install: X @${MKDIR} ${PREFIX}/lib/linux-flashplugin6 X @${MKDIR} ${PREFIX}/share/doc/linux-flashplugin6 X @${MKDIR} ${PREFIX}/${PLUGINSDIR} X.for f in ${LIBFILES} X @${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/lib/linux-flashplugin6/ X @${LN} -sf ${PREFIX}/lib/linux-flashplugin6/${f} ${PREFIX}/${PLUGINSDIR}/ X.endfor X.if !defined(NOPORTDOCS) X @${INSTALL_DATA} ${WRKSRC}/readme.txt ${PREFIX}/share/doc/linux-flashplugin6/ X @${INSTALL_DATA} ${WRKSRC}/ReadMe.htm ${PREFIX}/share/doc/linux-flashplugin6/ X.endif X X.include END-of-linux-flashplugin6/Makefile echo x - linux-flashplugin6/distinfo sed 's/^X//' >linux-flashplugin6/distinfo << 'END-of-linux-flashplugin6/distinfo' XMD5 (flashplugin/6.0r69/install_flash_player_6_linux.tar.gz) = 3c94ccbc2d4535ab78ad2c3eb1cd1777 END-of-linux-flashplugin6/distinfo echo x - linux-flashplugin6/pkg-comment sed 's/^X//' >linux-flashplugin6/pkg-comment << 'END-of-linux-flashplugin6/pkg-comment' XThe official Macromedia Flash Player for Linux Mozilla and Netscape 6+ END-of-linux-flashplugin6/pkg-comment echo x - linux-flashplugin6/pkg-descr sed 's/^X//' >linux-flashplugin6/pkg-descr << 'END-of-linux-flashplugin6/pkg-descr' XThis is the official Flash Player from Macromedia. This plugin enables you to Xsee .swf and .spl files on the 'net from your Mozilla and Netscape 6+ session. X XVersion 6 of the Macromedia Flash Player no longer works with Netscape 4.x or Xearlier. For Flash support in those browsers install the linux-flashplugin Xport. X XPlease see the Macromedia home page for more information. X XWWW: http://www.macromedia.com/ END-of-linux-flashplugin6/pkg-descr echo x - linux-flashplugin6/pkg-plist sed 's/^X//' >linux-flashplugin6/pkg-plist << 'END-of-linux-flashplugin6/pkg-plist' Xlib/linux-flashplugin6/flashplayer.xpt Xlib/linux-flashplugin6/libflashplayer.so X%%PLUGINSDIR%%/flashplayer.xpt X%%PLUGINSDIR%%/libflashplayer.so X%%PORTDOCS%%share/doc/linux-flashplugin6/readme.txt X%%PORTDOCS%%share/doc/linux-flashplugin6/ReadMe.htm X@dirrm share/doc/linux-flashplugin6 X@dirrm lib/linux-flashplugin6 X@unexec rmdir -p %D/%%PLUGINSDIR%% 2>/dev/null || true END-of-linux-flashplugin6/pkg-plist exit --- linux-flashplugin6.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 21: 1:31 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C64437B405 for ; Sun, 23 Feb 2003 21:00:37 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7AD743FCB for ; Sun, 23 Feb 2003 21:00:31 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O50TNS034223 for ; Sun, 23 Feb 2003 21:00:29 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O50TkI034222; Sun, 23 Feb 2003 21:00:29 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E2A6B37B401 for ; Sun, 23 Feb 2003 20:54:09 -0800 (PST) Received: from boggy.acest.tutrp.tut.ac.jp (boggy.acest.tutrp.tut.ac.jp [133.15.67.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1FFA043F93 for ; Sun, 23 Feb 2003 20:54:04 -0800 (PST) (envelope-from nakaji@boggy.acest.tutrp.tut.ac.jp) Received: from boggy.acest.tutrp.tut.ac.jp (localhost [IPv6:::1]) by boggy.acest.tutrp.tut.ac.jp (8.12.6/8.12.6) with ESMTP id h1O4rott015561 for ; Mon, 24 Feb 2003 13:53:54 +0900 (JST) (envelope-from nakaji@boggy.acest.tutrp.tut.ac.jp) Received: (from nakaji@localhost) by boggy.acest.tutrp.tut.ac.jp (8.12.6/8.12.6/Submit) id h1O4rl2V015560; Mon, 24 Feb 2003 13:53:47 +0900 (JST) Message-Id: <200302240453.h1O4rl2V015560@boggy.acest.tutrp.tut.ac.jp> Date: Mon, 24 Feb 2003 13:53:47 +0900 (JST) From: NAKAJI Hiroyuki Reply-To: NAKAJI Hiroyuki To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48615: japanese/samba updated to 2.2.7a-ja-1.0 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48615 >Category: ports >Synopsis: japanese/samba updated to 2.2.7a-ja-1.0 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Feb 23 21:00:28 PST 2003 >Closed-Date: >Last-Modified: >Originator: NAKAJI Hiroyuki >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD boggy.acest.tutrp.tut.ac.jp 5.0-CURRENT FreeBSD 5.0-CURRENT #56: Sat Feb 8 14:14:47 JST 2003 root@boggy.acest.tutrp.tut.ac.jp:/usr/obj/usr/src/sys/NAKAJI i386 >Description: Samba-2.2.7a-ja-1.0 has been released on Feb 24 2003. Japanese/samba is updated from samba-2.2.4-ja-1.0 to samba-2.2.7a-ja-1.0 including net/samba tips. >How-To-Repeat: >Fix: diff -urN -x CVS /usr/ports/japanese/samba/Makefile ./Makefile --- /usr/ports/japanese/samba/Makefile Mon Feb 24 09:52:23 2003 +++ ./Makefile Mon Feb 24 13:47:48 2003 @@ -21,23 +21,59 @@ BUILD_DEPENDS= msgfmt:${PORTSDIR}/devel/gettext -SAMBA_VERSION= 2.2.4 +SAMBA_VERSION= 2.2.7a SAMBA_JA_VERSION= 1.0 +USE_BZIP2= yes +GNU_CONFIGURE= yes +USE_AUTOCONF= yes +USE_GMAKE= yes +USE_SUBMAKE= yes + # directories +.if !defined(BATCH) && !defined(PACKAGE_BUILDING) +IS_INTERACTIVE= yes +.endif + +.if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc) +.include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" +.endif + +AUDIT?= "@comment " +RECYCLE?= "@comment " +LIBSAMBA?= "@comment " +BUILD_VFS?= "@comment " +LDAPSAM?= "@comment " +WINBIND?= "@comment " + +.if defined(WITH_AUDIT) +AUDIT= "" +LIBSAMBA= "" +BUILD_VFS= "" +.endif + +.if defined(WITH_RECYCLE) +RECYCLE= "" +LIBSAMBA= "" +BUILD_VFS= "" +.endif + VARDIR= /var SAMBA_SPOOL= ${VARDIR}/spool/samba SAMBA_LOGDIR= ${VARDIR}/log SAMBA_PRIVATE= ${PREFIX}/private SAMBA_CONFDIR= ${PREFIX}/etc +SAMBA_VFSDIR= ${PREFIX}/lib/samba +SCRIPTS_ENV= WRKDIRPREFIX="${WRKDIRPREFIX}" \ + TOUCH="${TOUCH}" \ + MKDIR="${MKDIR}" \ + CAT="${CAT}" \ + SAMBA_OPTIONS="${SAMBA_OPTIONS}" \ + REALCURDIR="${.CURDIR}" # sample files STARTUP_SCRIPT= ${PREFIX}/etc/rc.d/samba.sh.sample SAMPLE_CONFIG= ${SAMBA_CONFDIR}/smb.conf.default -USE_BZIP2= yes -GNU_CONFIGURE= yes -USE_AUTOCONF= yes -USE_GMAKE= yes CONFIGURE_ARGS= --with-i18n-swat --with-included-gettext \ --libdir=${SAMBA_CONFDIR} \ --localstatedir=${VARDIR} --with-swatdir=${PREFIX}/share/swat \ @@ -48,12 +84,75 @@ --with-pam \ --prefix=${PREFIX} +.include + +CONFIGURE_ENV+= TESTDIR=/tmp + +.if defined(WITH_SYSLOG) +CONFIGURE_ARGS+= --with-syslog +.endif + +.if defined(WITH_SSL) +CONFIGURE_ARGS+= --with-ssl --with-sslinc=/usr/include/openssl --with-ssllib=/usr/lib +.endif + +.if defined(WITH_QUOTAS) +CONFIGURE_ARGS+= --with-quotas +.endif + +.if defined(WITH_UTMP) +CONFIGURE_ARGS+= --with-utmp +.endif + +.if defined(WITH_MSDFS) +CONFIGURE_ARGS+= --with-msdfs +.endif + +.if defined(WITH_LDAP) +LIB_DEPENDS+= ldap.2:${PORTSDIR}/net/openldap2 +CONFIGURE_ARGS+= --with-ldapsam +CONFIGURE_ENV+= CPPFLAGS=-I${LOCALBASE}/include \ + LDFLAGS=-L${LOCALBASE}/lib +LDAPSAM= "" +.endif + +.if !defined(WITHOUT_CUPS) +WITH_CUPS= yes +.endif + +.if defined(WITH_WINBIND) +CONFIGURE_ARGS+= --with-winbind +WINBIND= "" +.endif + +.if defined(WITH_WINBIND_AUTH_CHALLENGE) +CONFIGURE_ARGS+= --with-winbind-auth-challenge +.endif + +pre-fetch: + @${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/configure.samba + +post-clean: + @${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc + +.if defined(WITH_CUPS) +LIB_DEPENDS+= cups.2:${PORTSDIR}/print/cups-base +CONFIGURE_ENV+= CPPFLAGS=-I${LOCALBASE}/include \ + LDFLAGS=-L${LOCALBASE}/lib +.else +CONFIGURE_ARGS+= --disable-cups +.endif + .if defined(KRB5_HOME) && exists(${KRB5_HOME}) CONFIGURE_ARGS+=--with-krb5=${KRB5_HOME} .endif -.if defined(USE_OPENSSL) -CONFIGURE_ARGS+= --with-ssl +.if defined(WITH_ACL_SUPPORT) +.if ${OSVERSION} < 500018 +BROKEN= "ACL support requires a recent FreeBSD 5.0-CURRENT" +.else +CONFIGURE_ARGS+= --with-acl-support +.endif .endif WRKSRC= ${WRKDIR}/${DISTNAME}/source @@ -69,18 +168,55 @@ pdbedit.8 MANLANG= "" ja +SED_PLIST= ${SED} -e 's!${PREFIX}!%D!g' + +PLIST_SUB= AUDIT=${AUDIT} \ + RECYCLE=${RECYCLE} \ + LIBSAMBA=${LIBSAMBA} \ + BUILD_VFS=${BUILD_VFS} \ + LDAPSAM=${LDAPSAM} \ + WINBIND=${WINBIND} + +pre-build: + ${RM} -fr ${WRKSRC}/include/proto.h + (cd ${WRKSRC} && make proto) + post-build: ${SED} 's:/usr/local:${PREFIX}:g' ${FILESDIR}/samba.sh.sample \ > ${WRKDIR}/samba.sh.sample +.if defined(WITH_RECYCLE) || defined(WITH_AUDIT) + cd ${WRKDIR}/${DISTNAME}/examples/VFS; \ + ./configure;${GMAKE}; \ + ${RM} -f config.cache config.log config.status +.endif post-install: +.if defined(WITH_AUDIT) || defined(WITH_RECYCLE) + @test -d ${SAMBA_VFSDIR} || ${MKDIR} ${SAMBA_VFSDIR} +.if defined(WITH_AUDIT) + ${INSTALL_PROGRAM} ${WRKDIR}/${DISTNAME}/examples/VFS/audit.so ${SAMBA_VFSDIR} +.endif +.if defined(WITH_RECYCLE) + ${INSTALL_PROGRAM} ${WRKDIR}/${DISTNAME}/examples/VFS/recycle/recycle.so ${SAMBA_VFSDIR} +.endif +.endif + ${MKDIR} ${PREFIX}/share/examples/samba + -${RM} -f ${WRKDIR}/${DISTNAME}/examples/libsmbclient/*.o + ${CP} -rp ${WRKDIR}/${DISTNAME}/examples/* ${PREFIX}/share/examples/samba +.if defined(WITH_AUDIT) || defined(WITH_RECYCLE) +# @${RM} -rf ${PREFIX}/share/examples/samba/VFS/.libs + ${FIND} ${PREFIX}/share/examples/samba/VFS -type d -name ".libs" | ${XARGS} ${RM} -r + @for file in audit.o audit.so recycle/recycle.o recycle/recycle.so skel.o skel.so ; do \ + ${RM} ${PREFIX}/share/examples/samba/VFS/$${file} ; \ + done +.endif @${STRIP_CMD} ${PREFIX}/sbin/smbd ${PREFIX}/sbin/nmbd ${PREFIX}/sbin/swat @${STRIP_CMD} ${PREFIX}/bin/smbclient ${PREFIX}/bin/smbspool @${STRIP_CMD} ${PREFIX}/bin/testparm ${PREFIX}/bin/testprns ${PREFIX}/bin/testprns ${PREFIX}/bin/smbstatus ${PREFIX}/bin/smbcontrol ${PREFIX}/bin/make_printerdef @${STRIP_CMD} ${PREFIX}/bin/smbpasswd ${PREFIX}/bin/make_smbcodepage ${PREFIX}/bin/rpcclient ${PREFIX}/bin/make_unicodemap ${PREFIX}/bin/make_nftable ${PREFIX}/bin/smbcacls ${PREFIX}/bin/nmblookup @${MKDIR} ${PREFIX}/share/examples/samba @cd ${WRKDIR}/${DISTNAME}/examples; \ - ${TAR} --exclude .cvsignore -cf - . | ${TAR} -xf - -C ${PREFIX}/share/examples/samba + ${TAR} --exclude .cvsignore --exclude .libs -cf - . | ${TAR} -xf - -C ${PREFIX}/share/examples/samba @if [ ! -f ${STARTUP_SCRIPT} ]; then \ ${ECHO} "Installing ${STARTUP_SCRIPT} startup file." ; \ ${INSTALL_SCRIPT} ${WRKDIR}/samba.sh.sample \ @@ -105,6 +241,16 @@ @${CHOWN} root:wheel ${PREFIX}/bin/smbpasswd @${CHMOD} 111 ${PREFIX}/bin/smbpasswd + ${ECHO_CMD} "@exec ${TEST} -d ${SAMBA_SPOOL} || ${MKDIR} ${SAMBA_SPOOL} && ${CHMOD} 1777 ${SAMBA_SPOOL}" | ${SED_PLIST} >> ${TMPPLIST} + ${ECHO_CMD} "@unexec ${RM} -rf ${SAMBA_SPOOL}" | ${SED_PLIST} >> ${TMPPLIST} + ${ECHO_CMD} "@exec ${MKDIR} -m 500 ${SAMBA_PRIVATE}" | ${SED_PLIST} >> ${TMPPLIST} + ${ECHO_CMD} "@exec ${CHOWN} root:wheel ${SAMBA_PRIVATE}" | ${SED_PLIST} >> ${TMPPLIST} + ${ECHO_CMD} "@exec ${CAT} /etc/passwd | ${GREP} -v "^#" | ${PREFIX}/bin/make_smbpasswd > ${SAMBA_PRIVATE}/smbpasswd.default" | ${SED_PLIST} >> ${TMPPLIST} + ${ECHO_CMD} "@exec ${TEST} -e ${SAMBA_PRIVATE}/smbpasswd || ${CP} -p ${SAMBA_PRIVATE}/smbpasswd.default ${SAMBA_PRIVATE}/smbpasswd" | ${SED_PLIST} >> ${TMPPLIST} + ${ECHO_CMD} "@exec ${CHMOD} 600 ${SAMBA_PRIVATE}/smbpasswd*" | ${SED_PLIST} >> ${TMPPLIST} + ${ECHO_CMD} "@unexec /usr/bin/cmp -s ${SAMBA_PRIVATE}/smbpasswd ${SAMBA_PRIVATE}/smbpasswd.default && ${RM} -f ${SAMBA_PRIVATE}/smbpasswd ${SAMBA_PRIVATE}/secrets.tdb || ${TRUE}" | ${SED_PLIST} >> ${TMPPLIST} + ${ECHO_CMD} "@unexec ${RM} -f ${SAMBA_PRIVATE}/smbpasswd.default" | ${SED_PLIST} >> ${TMPPLIST} + ${ECHO_CMD} "@unexec ${RMDIR} ${SAMBA_PRIVATE} || (${ECHO_CMD} \"Warning: If you will *NOT* use this package anymore,\" && ${ECHO_CMD} \" please remove ${SAMBA_PRIVATE} and its contents manually.\")" | ${SED_PLIST} >> ${TMPPLIST} .if !defined(NOPORTDOCS) @${MKDIR} ${PREFIX}/share/doc/samba @@ -125,5 +271,6 @@ @if [ -f ${VARDIR}/spool/lock/browse.dat ]; then \ ${RM} -f ${VARDIR}/spool/lock/browse.dat; \ fi + @${CAT} ${PKGMESSAGE} -.include +.include diff -urN -x CVS /usr/ports/japanese/samba/distinfo ./distinfo --- /usr/ports/japanese/samba/distinfo Mon Jul 8 22:53:47 2002 +++ ./distinfo Mon Feb 24 10:47:19 2003 @@ -1 +1 @@ -MD5 (samba-2.2.4-ja-1.0.tar.bz2) = 2f71430fa9684a2c231dedb24f0fd707 +MD5 (samba-2.2.7a-ja-1.0.tar.bz2) = 5cd229a2e82897db06936944e31eb90c diff -urN -x CVS /usr/ports/japanese/samba/files/README.FreeBSD ./files/README.FreeBSD --- /usr/ports/japanese/samba/files/README.FreeBSD Thu Mar 28 11:02:51 2002 +++ ./files/README.FreeBSD Mon Feb 24 11:39:57 2003 @@ -10,7 +10,7 @@ See document files in /usr/local/share/doc/samba and example config files in /usr/local/share/examples/samba for details. -Samba Japanese Edition is based on Samba 2.2.2, implemented the experimental +Samba Japanese Edition is based on Samba 2.2.7a, implemented the internationalized SWAT and fixed several problems arond functions for Japanese support. See smb.conf.sample for details. If you want to use NT4+SP3 or Win95+updates clients, set "encrypt passwords" parameter to diff -urN -x CVS /usr/ports/japanese/samba/files/patch-aa ./files/patch-aa --- /usr/ports/japanese/samba/files/patch-aa Mon Jul 8 22:53:47 2002 +++ ./files/patch-aa Thu Jan 1 09:00:00 1970 @@ -1,11 +0,0 @@ ---- Makefile.in.orig Tue Jun 11 18:48:30 2002 -+++ Makefile.in Mon Jun 17 13:13:44 2002 -@@ -52,7 +52,7 @@ - CONFIGFILE = $(CONFIGDIR)/smb.conf - LMHOSTSFILE = $(CONFIGDIR)/lmhosts - DRIVERFILE = $(CONFIGDIR)/printers.def --PASSWD_PROGRAM = /bin/passwd -+PASSWD_PROGRAM = /usr/bin/passwd - # This is where smbpasswd et al go - PRIVATEDIR = @privatedir@ - diff -urN -x CVS /usr/ports/japanese/samba/files/patch-aclocal.m4 ./files/patch-aclocal.m4 --- /usr/ports/japanese/samba/files/patch-aclocal.m4 Fri Feb 7 19:46:22 2003 +++ ./files/patch-aclocal.m4 Thu Jan 1 09:00:00 1970 @@ -1,46 +0,0 @@ ---- aclocal.m4.orig Mon Oct 21 09:58:51 2002 -+++ aclocal.m4 Wed Feb 5 17:10:44 2003 -@@ -217,11 +217,16 @@ - CATOBJEXT=.cat - INSTOBJEXT=.cat - DATADIRNAME=lib -- INTLDEPS='$(top_builddir)/intl/libintl.a' -- INTLLIBS=$INTLDEPS -- LIBS=`echo $LIBS | sed -e 's/-lintl//'` -- nls_cv_header_intl=intl/libintl.h -- nls_cv_header_libgt=intl/libgettext.h -+ AC_CHECK_LIB(intl, libintl_gettext, -+ [INTLDEPS='' -+ INTLLIBS='-lintl' -+ nls_cv_header_intl= -+ nls_cv_header_libgt=], -+ [INTLDEPS='$(top_builddir)/intl/libintl.a' -+ INTLLIBS=$INTLDEPS -+ LIBS=`echo $LIBS | sed -e 's/-lintl//'` -+ nls_cv_header_intl=intl/libintl.h -+ nls_cv_header_libgt=intl/libgettext.h]) - fi]) - fi - fi -@@ -246,11 +251,16 @@ - CATOBJEXT=.gmo - INSTOBJEXT=.mo - DATADIRNAME=share -- INTLDEPS='$(top_builddir)/intl/libintl.a' -- INTLLIBS=$INTLDEPS -- LIBS=`echo $LIBS | sed -e 's/-lintl//'` -- nls_cv_header_intl=intl/libintl.h -- nls_cv_header_libgt=intl/libgettext.h -+ AC_CHECK_LIB(intl, libintl_gettext, -+ [INTLDEPS='' -+ INTLLIBS='-lintl' -+ nls_cv_header_intl= -+ nls_cv_header_libgt=], -+ [INTLDEPS='$(top_builddir)/intl/libintl.a' -+ INTLLIBS=$INTLDEPS -+ LIBS=`echo $LIBS | sed -e 's/-lintl//'` -+ nls_cv_header_intl=intl/libintl.h -+ nls_cv_header_libgt=intl/libgettext.h]) - fi - - dnl Test whether we really found GNU xgettext. diff -urN -x CVS /usr/ports/japanese/samba/files/patch-ba ./files/patch-ba --- /usr/ports/japanese/samba/files/patch-ba Mon Jul 8 22:53:47 2002 +++ ./files/patch-ba Tue Dec 17 08:34:01 2002 @@ -1,6 +1,6 @@ ---- configure.in.orig Thu May 2 20:02:46 2002 -+++ configure.in Thu May 9 02:29:20 2002 -@@ -498,9 +498,23 @@ +--- configure.in.orig Mon Dec 16 12:00:04 2002 ++++ configure.in Mon Dec 16 22:56:30 2002 +@@ -510,9 +510,23 @@ ############################################ # we need dlopen/dlclose/dlsym/dlerror for PAM, the password database plugins and the new VFS code AC_CHECK_FUNCS(dlopen) @@ -26,15 +26,15 @@ fi # dlopen/dlclose/dlsym/dlerror will be checked again later and defines will be set then -@@ -870,6 +884,7 @@ - ;; - *bsd*) BLDSHARED="true" +@@ -972,6 +986,7 @@ + *osf*) AC_DEFINE(OSF1) + BLDSHARED="true" LDSHFLAGS="-shared" + DYNEXP="-Wl,--export-dynamic" SONAMEFLAG="-Wl,-soname," PICFLAG="-fPIC" AC_DEFINE(STAT_ST_BLOCKSIZE,512) -@@ -1868,7 +1883,7 @@ +@@ -1981,7 +1996,7 @@ yes) AC_MSG_RESULT(yes) AC_DEFINE(KRB5_AUTH) @@ -43,12 +43,3 @@ CFLAGS="$CFLAGS -I$withval/include" LDFLAGS="$LDFLAGS -L$withval/lib" ;; -@@ -2042,7 +2057,7 @@ - yes) - AC_MSG_RESULT(yes) - AC_DEFINE(WITH_LDAP_SAM) -- LIBS="-lldap -llber -lresolv $LIBS" -+ LIBS="-lldap -llber $LIBS" - with_smbpasswd_sam=no - ;; - *) diff -urN -x CVS /usr/ports/japanese/samba/files/patch-includes.h ./files/patch-includes.h --- /usr/ports/japanese/samba/files/patch-includes.h Wed Dec 11 01:48:46 2002 +++ ./files/patch-includes.h Thu Feb 6 09:41:57 2003 @@ -4,7 +4,7 @@ #endif /* this guess needs to be improved (tridge) */ -+#ifndef __FreeBSD__ ++#ifndef FREEBSD #if (defined(STAT_STATVFS) || defined(STAT_STATVFS64)) && !defined(SYSV) #define SYSV 1 +#endif diff -urN -x CVS /usr/ports/japanese/samba/files/patch-nsswitch:pam_winbind.h ./files/patch-nsswitch:pam_winbind.h --- /usr/ports/japanese/samba/files/patch-nsswitch:pam_winbind.h Fri Feb 7 19:46:22 2003 +++ ./files/patch-nsswitch:pam_winbind.h Thu Jan 1 09:00:00 1970 @@ -1,11 +0,0 @@ ---- nsswitch/pam_winbind.h.orig Wed Feb 5 17:25:59 2003 -+++ nsswitch/pam_winbind.h Wed Feb 5 17:26:53 2003 -@@ -25,7 +25,7 @@ - #define PAM_SM_ACCOUNT - #define PAM_SM_PASSWORD - --#if defined(SUNOS5) || defined(SUNOS4) || defined(HPUX) -+#if defined(SUNOS5) || defined(SUNOS4) || defined(HPUX) || defined(FREEBSD) - - /* Solaris always uses dynamic pam modules */ - #define PAM_EXTERN extern diff -urN -x CVS /usr/ports/japanese/samba/files/smb.conf.default ./files/smb.conf.default --- /usr/ports/japanese/samba/files/smb.conf.default Mon Jan 21 11:21:21 2002 +++ ./files/smb.conf.default Mon Feb 24 12:07:29 2003 @@ -419,6 +419,15 @@ ; valid users = %S # ------------------------------------------------------------ + +# $B$3$N%Q%i%a!<%?$,@_Dj$5$l$F$$$?>l9g!"6&M-Fb$G:o=|$5$l$k%U%!%$%k$O!"C1(B +# $B$K:o=|$5$l$kBe$o$j$K!"%Q%i%a!<%?$G;XDj$7$?%G%#%l%/%H%j$K0\F0$5$l$^$9!#(B +# $BF1$8L>A0$N%U%!%$%k$,J#?t:o=|$5$l$?>l9g$O(B, $B%U%!%$%kL>$K0l0U$J<1JL;R$,(B +# $B2C$($i$l$?%U%!%$%kL>$K$J$j$^$9!#(B + +; recycle bin = .recycle + +# ------------------------------------------------------------ # $BFCDj$N%W%m%8%'%/%H$N%a%s%P$N$_$,MxMQ2DG=$J6&M-$NNc$G$9!#(B # $B$3$N6&M-$rMxMQ$9$k$K$O(B project-a $B%0%k!<%W$,Dj5A$5$l$F$$$kI,MW$,$"$j(B # $B$^$9!#(B diff -urN -x CVS /usr/ports/japanese/samba/pkg-plist ./pkg-plist --- /usr/ports/japanese/samba/pkg-plist Wed Aug 21 00:45:51 2002 +++ ./pkg-plist Mon Feb 24 13:25:36 2003 @@ -1,3 +1,4 @@ +bin/findsmb bin/make_nftable bin/make_printerdef bin/make_smbcodepage @@ -15,6 +16,10 @@ bin/testparm bin/testprns bin/tdbbackup +%%LDAPSAM%%bin/pdbedit +%%WINBIND%%bin/wbinfo +%%WINBIND%%sbin/winbindd +etc/codepages/codepage.1125 etc/codepages/codepage.1251 etc/codepages/codepage.437 etc/codepages/codepage.737 @@ -40,6 +45,7 @@ etc/codepages/nftable.936 etc/codepages/nftable.949 etc/codepages/nftable.950 +etc/codepages/nftable.1125 etc/codepages/nftable.1251 etc/codepages/nftable.ISO8859-1 etc/codepages/nftable.ISO8859-13 @@ -49,6 +55,7 @@ etc/codepages/nftable.ISO8859-7 etc/codepages/nftable.ISO8859-9 etc/codepages/nftable.KOI8-R +etc/codepages/nftable.KOI8-U etc/codepages/unicode_map.437 etc/codepages/unicode_map.737 etc/codepages/unicode_map.775 @@ -61,6 +68,7 @@ etc/codepages/unicode_map.936 etc/codepages/unicode_map.949 etc/codepages/unicode_map.950 +etc/codepages/unicode_map.1125 etc/codepages/unicode_map.1251 etc/codepages/unicode_map.ISO8859-1 etc/codepages/unicode_map.ISO8859-13 @@ -70,723 +78,772 @@ etc/codepages/unicode_map.ISO8859-7 etc/codepages/unicode_map.ISO8859-9 etc/codepages/unicode_map.KOI8-R +etc/codepages/unicode_map.KOI8-U @dirrm etc/codepages etc/rc.d/samba.sh.sample etc/smb.conf.default +%%AUDIT%%lib/samba/audit.so +%%RECYCLE%%lib/samba/recycle.so private/smbpasswd.sample sbin/nmbd sbin/smbd sbin/swat -share/doc/samba/COPYING -share/doc/samba/Manifest -share/doc/samba/OID/allocated-arcs.txt -share/doc/samba/OID/samba-oid.mail -share/doc/samba/README -share/doc/samba/README.FreeBSD -share/doc/samba/README.Win2kSP2 -share/doc/samba/README.Win32-Viruses -share/doc/samba/README.ldap -share/doc/samba/README.swat -share/doc/samba/Read-Manifest-Now -share/doc/samba/Registry/NT4-Locking.reg -share/doc/samba/Registry/NT4_PlainPassword.reg -share/doc/samba/Registry/Win2000_PlainPassword.reg -share/doc/samba/Registry/Win95_PlainPassword.reg -share/doc/samba/Registry/Win98_PlainPassword.reg -share/doc/samba/Registry/Win9X-CacheHandling.reg -share/doc/samba/Registry/WinME_PlainPassword.reg -share/doc/samba/Registry/WinXP_SignOrSeal.reg -share/doc/samba/Registry/WindowsTerminalServer.reg -share/doc/samba/Roadmap -share/doc/samba/Samba-HOWTO-Collection.pdf -share/doc/samba/THANKS -share/doc/samba/WHATSNEW.txt -share/doc/samba/announce -share/doc/samba/docbook/Makefile.in -share/doc/samba/docbook/configure -share/doc/samba/docbook/configure.in -share/doc/samba/docbook/dbsgml/40chg.txt -share/doc/samba/docbook/dbsgml/41chg.txt -share/doc/samba/docbook/dbsgml/50issues.txt -share/doc/samba/docbook/dbsgml/ChangeLog -share/doc/samba/docbook/dbsgml/cals-tbl.dtd -share/doc/samba/docbook/dbsgml/catalog -share/doc/samba/docbook/dbsgml/dbcent.mod -share/doc/samba/docbook/dbsgml/dbgenent.mod -share/doc/samba/docbook/dbsgml/dbhier.mod -share/doc/samba/docbook/dbsgml/dbnotn.mod -share/doc/samba/docbook/dbsgml/dbpool.mod -share/doc/samba/docbook/dbsgml/docbook.cat -share/doc/samba/docbook/dbsgml/docbook.dcl -share/doc/samba/docbook/dbsgml/docbook.dtd -share/doc/samba/docbook/dbsgml/ent/ISOamsa -share/doc/samba/docbook/dbsgml/ent/ISOamsb -share/doc/samba/docbook/dbsgml/ent/ISOamsc -share/doc/samba/docbook/dbsgml/ent/ISOamsn -share/doc/samba/docbook/dbsgml/ent/ISOamso -share/doc/samba/docbook/dbsgml/ent/ISOamsr -share/doc/samba/docbook/dbsgml/ent/ISObox -share/doc/samba/docbook/dbsgml/ent/ISOcyr1 -share/doc/samba/docbook/dbsgml/ent/ISOcyr2 -share/doc/samba/docbook/dbsgml/ent/ISOdia -share/doc/samba/docbook/dbsgml/ent/ISOgrk1 -share/doc/samba/docbook/dbsgml/ent/ISOgrk2 -share/doc/samba/docbook/dbsgml/ent/ISOgrk3 -share/doc/samba/docbook/dbsgml/ent/ISOgrk4 -share/doc/samba/docbook/dbsgml/ent/ISOlat1 -share/doc/samba/docbook/dbsgml/ent/ISOlat2 -share/doc/samba/docbook/dbsgml/ent/ISOnum -share/doc/samba/docbook/dbsgml/ent/ISOpub -share/doc/samba/docbook/dbsgml/ent/ISOtech -share/doc/samba/docbook/dbsgml/readme.txt -share/doc/samba/docbook/docbook.txt -share/doc/samba/docbook/faq/README.NOW -share/doc/samba/docbook/global.ent -share/doc/samba/docbook/howto/README.NOW -share/doc/samba/docbook/manpages/findsmb.1.sgml -share/doc/samba/docbook/manpages/lmhosts.5.sgml -share/doc/samba/docbook/manpages/make_smbcodepage.1.sgml -share/doc/samba/docbook/manpages/make_unicodemap.1.sgml -share/doc/samba/docbook/manpages/nmbd.8.sgml -share/doc/samba/docbook/manpages/nmblookup.1.sgml -share/doc/samba/docbook/manpages/pdbedit.8.sgml -share/doc/samba/docbook/manpages/rpcclient.1.sgml -share/doc/samba/docbook/manpages/samba.7.sgml -share/doc/samba/docbook/manpages/smb.conf.5.sgml -share/doc/samba/docbook/manpages/smbcacls.1.sgml -share/doc/samba/docbook/manpages/smbclient.1.sgml -share/doc/samba/docbook/manpages/smbcontrol.1.sgml -share/doc/samba/docbook/manpages/smbd.8.sgml -share/doc/samba/docbook/manpages/smbmnt.8.sgml -share/doc/samba/docbook/manpages/smbmount.8.sgml -share/doc/samba/docbook/manpages/smbpasswd.5.sgml -share/doc/samba/docbook/manpages/smbpasswd.8.sgml -share/doc/samba/docbook/manpages/smbsh.1.sgml -share/doc/samba/docbook/manpages/smbspool.8.sgml -share/doc/samba/docbook/manpages/smbstatus.1.sgml -share/doc/samba/docbook/manpages/smbtar.1.sgml -share/doc/samba/docbook/manpages/smbumount.8.sgml -share/doc/samba/docbook/manpages/swat.8.sgml -share/doc/samba/docbook/manpages/testparm.1.sgml -share/doc/samba/docbook/manpages/testprns.1.sgml -share/doc/samba/docbook/manpages/wbinfo.1.sgml -share/doc/samba/docbook/manpages/winbindd.8.sgml -share/doc/samba/docbook/projdoc/CVS-Access.sgml -share/doc/samba/docbook/projdoc/DOMAIN_MEMBER.sgml -share/doc/samba/docbook/projdoc/ENCRYPTION.sgml -share/doc/samba/docbook/projdoc/Integrating-with-Windows.sgml -share/doc/samba/docbook/projdoc/NT_Security.sgml -share/doc/samba/docbook/projdoc/OS2-Client-HOWTO.sgml -share/doc/samba/docbook/projdoc/PAM-Authentication-And-Samba.sgml -share/doc/samba/docbook/projdoc/Samba-BDC-HOWTO.sgml -share/doc/samba/docbook/projdoc/Samba-LDAP-HOWTO.sgml -share/doc/samba/docbook/projdoc/Samba-PDC-HOWTO.sgml -share/doc/samba/docbook/projdoc/UNIX_INSTALL.sgml -share/doc/samba/docbook/projdoc/msdfs_setup.sgml -share/doc/samba/docbook/projdoc/printer_driver2.sgml -share/doc/samba/docbook/projdoc/samba-doc.sgml -share/doc/samba/docbook/projdoc/winbind.sgml -share/doc/samba/docbook/scripts/README.ldp_print -share/doc/samba/docbook/scripts/collateindex.pl -share/doc/samba/docbook/scripts/fix_print_html.lib -share/doc/samba/docbook/scripts/ldp_print -share/doc/samba/docbook/scripts/make-article.pl -share/doc/samba/docbook/scripts/strip-links.pl -share/doc/samba/docbook/stylesheets/ldp.dsl.in -share/doc/samba/faq/README -share/doc/samba/faq/Samba-Server-FAQ-1.html -share/doc/samba/faq/Samba-Server-FAQ-2.html -share/doc/samba/faq/Samba-Server-FAQ.html -share/doc/samba/faq/Samba-Server-FAQ.sgml -share/doc/samba/faq/Samba-meta-FAQ-1.html -share/doc/samba/faq/Samba-meta-FAQ-2.html -share/doc/samba/faq/Samba-meta-FAQ-3.html -share/doc/samba/faq/Samba-meta-FAQ-4.html -share/doc/samba/faq/Samba-meta-FAQ-5.html -share/doc/samba/faq/Samba-meta-FAQ-6.html -share/doc/samba/faq/Samba-meta-FAQ.html -share/doc/samba/faq/Samba-meta-FAQ.sgml -share/doc/samba/faq/Samba-meta-FAQ.txt -share/doc/samba/faq/sambafaq-1.html -share/doc/samba/faq/sambafaq-2.html -share/doc/samba/faq/sambafaq-3.html -share/doc/samba/faq/sambafaq-4.html -share/doc/samba/faq/sambafaq-5.html -share/doc/samba/faq/sambafaq.html -share/doc/samba/faq/sambafaq.sgml -share/doc/samba/faq/sambafaq.txt -share/doc/samba/history -share/doc/samba/htmldocs/CVS-Access.html -share/doc/samba/htmldocs/DOMAIN_MEMBER.html -share/doc/samba/htmldocs/ENCRYPTION.html -share/doc/samba/htmldocs/Integrating-with-Windows.html -share/doc/samba/htmldocs/NT_Security.html -share/doc/samba/htmldocs/OS2-Client-HOWTO.html -share/doc/samba/htmldocs/PAM-Authentication-And-Samba.html -share/doc/samba/htmldocs/Samba-BDC-HOWTO.html -share/doc/samba/htmldocs/Samba-HOWTO-Collection.html -share/doc/samba/htmldocs/Samba-LDAP-HOWTO.html -share/doc/samba/htmldocs/Samba-PDC-HOWTO.html -share/doc/samba/htmldocs/UNIX_INSTALL.html -share/doc/samba/htmldocs/findsmb.1.html -share/doc/samba/htmldocs/lmhosts.5.html -share/doc/samba/htmldocs/make_smbcodepage.1.html -share/doc/samba/htmldocs/make_unicodemap.1.html -share/doc/samba/htmldocs/msdfs_setup.html -share/doc/samba/htmldocs/nmbd.8.html -share/doc/samba/htmldocs/nmblookup.1.html -share/doc/samba/htmldocs/pdbedit.8.html -share/doc/samba/htmldocs/printer_driver2.html -share/doc/samba/htmldocs/rpcclient.1.html -share/doc/samba/htmldocs/samba.7.html -share/doc/samba/htmldocs/smb.conf.5.html -share/doc/samba/htmldocs/smbcacls.1.html -share/doc/samba/htmldocs/smbclient.1.html -share/doc/samba/htmldocs/smbcontrol.1.html -share/doc/samba/htmldocs/smbd.8.html -share/doc/samba/htmldocs/smbmnt.8.html -share/doc/samba/htmldocs/smbmount.8.html -share/doc/samba/htmldocs/smbpasswd.5.html -share/doc/samba/htmldocs/smbpasswd.8.html -share/doc/samba/htmldocs/smbsh.1.html -share/doc/samba/htmldocs/smbspool.8.html -share/doc/samba/htmldocs/smbstatus.1.html -share/doc/samba/htmldocs/smbtar.1.html -share/doc/samba/htmldocs/smbumount.8.html -share/doc/samba/htmldocs/swat.8.html -share/doc/samba/htmldocs/testparm.1.html -share/doc/samba/htmldocs/testprns.1.html -share/doc/samba/htmldocs/using_samba/appa_01.html -share/doc/samba/htmldocs/using_samba/appa_02.html -share/doc/samba/htmldocs/using_samba/appa_03.html -share/doc/samba/htmldocs/using_samba/appa_04.html -share/doc/samba/htmldocs/using_samba/appa_05.html -share/doc/samba/htmldocs/using_samba/appb_01.html -share/doc/samba/htmldocs/using_samba/appb_02.html -share/doc/samba/htmldocs/using_samba/appb_03.html -share/doc/samba/htmldocs/using_samba/appc_01.html -share/doc/samba/htmldocs/using_samba/appd_01.html -share/doc/samba/htmldocs/using_samba/appe_01.html -share/doc/samba/htmldocs/using_samba/appf_01.html -share/doc/samba/htmldocs/using_samba/ch01_01.html -share/doc/samba/htmldocs/using_samba/ch01_02.html -share/doc/samba/htmldocs/using_samba/ch01_03.html -share/doc/samba/htmldocs/using_samba/ch01_04.html -share/doc/samba/htmldocs/using_samba/ch01_05.html -share/doc/samba/htmldocs/using_samba/ch01_06.html -share/doc/samba/htmldocs/using_samba/ch01_07.html -share/doc/samba/htmldocs/using_samba/ch01_08.html -share/doc/samba/htmldocs/using_samba/ch02_01.html -share/doc/samba/htmldocs/using_samba/ch02_02.html -share/doc/samba/htmldocs/using_samba/ch02_03.html -share/doc/samba/htmldocs/using_samba/ch02_04.html -share/doc/samba/htmldocs/using_samba/ch02_05.html -share/doc/samba/htmldocs/using_samba/ch02_06.html -share/doc/samba/htmldocs/using_samba/ch03_01.html -share/doc/samba/htmldocs/using_samba/ch03_02.html -share/doc/samba/htmldocs/using_samba/ch03_03.html -share/doc/samba/htmldocs/using_samba/ch04_01.html -share/doc/samba/htmldocs/using_samba/ch04_02.html -share/doc/samba/htmldocs/using_samba/ch04_03.html -share/doc/samba/htmldocs/using_samba/ch04_04.html -share/doc/samba/htmldocs/using_samba/ch04_05.html -share/doc/samba/htmldocs/using_samba/ch04_06.html -share/doc/samba/htmldocs/using_samba/ch04_07.html -share/doc/samba/htmldocs/using_samba/ch04_08.html -share/doc/samba/htmldocs/using_samba/ch05_01.html -share/doc/samba/htmldocs/using_samba/ch05_02.html -share/doc/samba/htmldocs/using_samba/ch05_03.html -share/doc/samba/htmldocs/using_samba/ch05_04.html -share/doc/samba/htmldocs/using_samba/ch05_05.html -share/doc/samba/htmldocs/using_samba/ch06_01.html -share/doc/samba/htmldocs/using_samba/ch06_02.html -share/doc/samba/htmldocs/using_samba/ch06_03.html -share/doc/samba/htmldocs/using_samba/ch06_04.html -share/doc/samba/htmldocs/using_samba/ch06_05.html -share/doc/samba/htmldocs/using_samba/ch06_06.html -share/doc/samba/htmldocs/using_samba/ch07_01.html -share/doc/samba/htmldocs/using_samba/ch07_02.html -share/doc/samba/htmldocs/using_samba/ch07_03.html -share/doc/samba/htmldocs/using_samba/ch08_01.html -share/doc/samba/htmldocs/using_samba/ch08_02.html -share/doc/samba/htmldocs/using_samba/ch08_03.html -share/doc/samba/htmldocs/using_samba/ch08_04.html -share/doc/samba/htmldocs/using_samba/ch08_05.html -share/doc/samba/htmldocs/using_samba/ch08_06.html -share/doc/samba/htmldocs/using_samba/ch08_07.html -share/doc/samba/htmldocs/using_samba/ch09_01.html -share/doc/samba/htmldocs/using_samba/ch09_02.html -share/doc/samba/htmldocs/using_samba/ch09_03.html -share/doc/samba/htmldocs/using_samba/figs/sam.0101.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0102.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0103.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0104.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0105.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0106.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0107.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0108.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0109.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0110.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0111.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0112.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0113.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0114.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0201.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0202.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0203.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0204.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0301.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0302.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0303.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0304.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0305.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0306.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0307.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0308.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0309.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0310.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0311.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0312.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0313.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0314.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0315.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0316.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0317.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0318.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0319.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0320.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0321.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0322.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0323.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0324.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0325.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0326.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0327.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0328.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0401.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0402.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0403.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0404.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0405.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0406.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0407.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0501.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0502.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0503.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0504.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0505.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0506.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0507.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0508.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0601.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0602.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0603.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0604.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0605.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0606.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0701.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0702.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0703.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0704.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0705.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0706.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0707.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0708.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0709.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0801.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0802.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0803.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0804.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0805.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0901.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0902.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0903.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0904.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0905.gif -share/doc/samba/htmldocs/using_samba/figs/sam.aa01.gif -share/doc/samba/htmldocs/using_samba/figs/sam.ab01.gif -share/doc/samba/htmldocs/using_samba/figs/sam.ab02.gif -share/doc/samba/htmldocs/using_samba/gifs/index.gif -share/doc/samba/htmldocs/using_samba/gifs/samba.s.gif -share/doc/samba/htmldocs/using_samba/gifs/txthome.gif -share/doc/samba/htmldocs/using_samba/gifs/txtnexta.gif -share/doc/samba/htmldocs/using_samba/gifs/txtpreva.gif -share/doc/samba/htmldocs/using_samba/index.html -share/doc/samba/htmldocs/using_samba/inx.html -share/doc/samba/htmldocs/using_samba/licenseinfo.html -share/doc/samba/htmldocs/using_samba/this_edition.html -share/doc/samba/htmldocs/wbinfo.1.html -share/doc/samba/htmldocs/wfw_slip.htm -share/doc/samba/htmldocs/winbind.html -share/doc/samba/htmldocs/winbindd.8.html -share/doc/samba/ja/CREDITS.txt -share/doc/samba/ja/ML.txt -share/doc/samba/ja/README.txt -share/doc/samba/ja/WHATSNEW.txt -share/doc/samba/ja/history -share/doc/samba/ja/htmldocs/BrowsingFAQ/browsing01.html -share/doc/samba/ja/htmldocs/BrowsingFAQ/browsing02.html -share/doc/samba/ja/htmldocs/BrowsingFAQ/fig_1.html -share/doc/samba/ja/htmldocs/BrowsingFAQ/fig_2.html -share/doc/samba/ja/htmldocs/BrowsingFAQ/fig_4.html -share/doc/samba/ja/htmldocs/BrowsingFAQ/fig_5.html -share/doc/samba/ja/htmldocs/BrowsingFAQ/fig_6.html -share/doc/samba/ja/htmldocs/BrowsingFAQ/fig_7.html -share/doc/samba/ja/htmldocs/BrowsingFAQ/fig_8.html -share/doc/samba/ja/htmldocs/BrowsingFAQ/image/fig1.png -share/doc/samba/ja/htmldocs/BrowsingFAQ/image/fig2.png -share/doc/samba/ja/htmldocs/BrowsingFAQ/image/fig4s.png -share/doc/samba/ja/htmldocs/BrowsingFAQ/image/fig5s.png -share/doc/samba/ja/htmldocs/BrowsingFAQ/image/fig7s.png -share/doc/samba/ja/htmldocs/BrowsingFAQ/image/fig8s.png -share/doc/samba/ja/htmldocs/BrowsingFAQ/index.html -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig05.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig06.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig07.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig08.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig09.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig10.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig11.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig12.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig14.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig15.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig16.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig17.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig18.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig19.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig20.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig21.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig22.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig23.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig24.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig25.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/index.html -share/doc/samba/ja/htmldocs/NT_Security.html -share/doc/samba/ja/htmldocs/diag.html -share/doc/samba/ja/htmldocs/encrypt-passwd.html -share/doc/samba/ja/htmldocs/findsmb.1.html -share/doc/samba/ja/htmldocs/lmhosts.5.html -share/doc/samba/ja/htmldocs/make_smbcodepage.1.html -share/doc/samba/ja/htmldocs/make_unicodemap.1.html -share/doc/samba/ja/htmldocs/msdfs_setup.html -share/doc/samba/ja/htmldocs/nmbd.8.html -share/doc/samba/ja/htmldocs/nmblookup.1.html -share/doc/samba/ja/htmldocs/pdbedit.8.html -share/doc/samba/ja/htmldocs/printer_driver2.html -share/doc/samba/ja/htmldocs/quota/fig1.gif -share/doc/samba/ja/htmldocs/quota/fig2.gif -share/doc/samba/ja/htmldocs/quota/fig3.gif -share/doc/samba/ja/htmldocs/quota/fig4.gif -share/doc/samba/ja/htmldocs/quota/fig5.gif -share/doc/samba/ja/htmldocs/quota/fig6.gif -share/doc/samba/ja/htmldocs/quota/index.html -share/doc/samba/ja/htmldocs/rpcclient.1.html -share/doc/samba/ja/htmldocs/samba-func.html -share/doc/samba/ja/htmldocs/samba-j.html -share/doc/samba/ja/htmldocs/samba-pdc-faq.html -share/doc/samba/ja/htmldocs/samba.7.html -share/doc/samba/ja/htmldocs/samba2.2_func/fig01.gif -share/doc/samba/ja/htmldocs/samba2.2_func/fig03.gif -share/doc/samba/ja/htmldocs/samba2.2_func/fig04.gif -share/doc/samba/ja/htmldocs/samba2.2_func/fig05.gif -share/doc/samba/ja/htmldocs/samba2.2_func/fig06.gif -share/doc/samba/ja/htmldocs/samba2.2_func/fig07.gif -share/doc/samba/ja/htmldocs/samba2.2_func/index.html -share/doc/samba/ja/htmldocs/samba2.2_whatsnew/fig01.gif -share/doc/samba/ja/htmldocs/samba2.2_whatsnew/fig02.gif -share/doc/samba/ja/htmldocs/samba2.2_whatsnew/fig03.gif -share/doc/samba/ja/htmldocs/samba2.2_whatsnew/fig04.gif -share/doc/samba/ja/htmldocs/samba2.2_whatsnew/fig05.gif -share/doc/samba/ja/htmldocs/samba2.2_whatsnew/index.html -share/doc/samba/ja/htmldocs/samba2.html -share/doc/samba/ja/htmldocs/samba_begin.html -share/doc/samba/ja/htmldocs/sambafaq-1.html -share/doc/samba/ja/htmldocs/sambafaq-2.html -share/doc/samba/ja/htmldocs/sambafaq-3.html -share/doc/samba/ja/htmldocs/sambafaq-4.html -share/doc/samba/ja/htmldocs/sambafaq-5.html -share/doc/samba/ja/htmldocs/sambafaq.html -share/doc/samba/ja/htmldocs/sambafaq.sgml -share/doc/samba/ja/htmldocs/smb.conf.5.html -share/doc/samba/ja/htmldocs/smbcacls.1.html -share/doc/samba/ja/htmldocs/smbclient.1.html -share/doc/samba/ja/htmldocs/smbcontrol.1.html -share/doc/samba/ja/htmldocs/smbd.8.html -share/doc/samba/ja/htmldocs/smbmnt.8.html -share/doc/samba/ja/htmldocs/smbmount.8.html -share/doc/samba/ja/htmldocs/smbpasswd.5.html -share/doc/samba/ja/htmldocs/smbpasswd.8.html -share/doc/samba/ja/htmldocs/smbsh.1.html -share/doc/samba/ja/htmldocs/smbspool.8.html -share/doc/samba/ja/htmldocs/smbstatus.1.html -share/doc/samba/ja/htmldocs/smbtar.1.html -share/doc/samba/ja/htmldocs/smbumount.8.html -share/doc/samba/ja/htmldocs/swat.8.html -share/doc/samba/ja/htmldocs/testparm.1.html -share/doc/samba/ja/htmldocs/testprns.1.html -share/doc/samba/ja/htmldocs/tuning.japanese.html -share/doc/samba/ja/htmldocs/using_samba/appa_01.html -share/doc/samba/ja/htmldocs/using_samba/appa_02.html -share/doc/samba/ja/htmldocs/using_samba/appa_03.html -share/doc/samba/ja/htmldocs/using_samba/appa_04.html -share/doc/samba/ja/htmldocs/using_samba/appa_05.html -share/doc/samba/ja/htmldocs/using_samba/appb_01.html -share/doc/samba/ja/htmldocs/using_samba/appb_02.html -share/doc/samba/ja/htmldocs/using_samba/appb_03.html -share/doc/samba/ja/htmldocs/using_samba/appc_01.html -share/doc/samba/ja/htmldocs/using_samba/appd_01.html -share/doc/samba/ja/htmldocs/using_samba/appe_01.html -share/doc/samba/ja/htmldocs/using_samba/appf_01.html -share/doc/samba/ja/htmldocs/using_samba/ch01_01.html -share/doc/samba/ja/htmldocs/using_samba/ch01_02.html -share/doc/samba/ja/htmldocs/using_samba/ch01_03.html -share/doc/samba/ja/htmldocs/using_samba/ch01_04.html -share/doc/samba/ja/htmldocs/using_samba/ch01_05.html -share/doc/samba/ja/htmldocs/using_samba/ch01_06.html -share/doc/samba/ja/htmldocs/using_samba/ch01_07.html -share/doc/samba/ja/htmldocs/using_samba/ch01_08.html -share/doc/samba/ja/htmldocs/using_samba/ch02_01.html -share/doc/samba/ja/htmldocs/using_samba/ch02_02.html -share/doc/samba/ja/htmldocs/using_samba/ch02_03.html -share/doc/samba/ja/htmldocs/using_samba/ch02_04.html -share/doc/samba/ja/htmldocs/using_samba/ch02_05.html -share/doc/samba/ja/htmldocs/using_samba/ch02_06.html -share/doc/samba/ja/htmldocs/using_samba/ch03_01.html -share/doc/samba/ja/htmldocs/using_samba/ch03_02.html -share/doc/samba/ja/htmldocs/using_samba/ch03_03.html -share/doc/samba/ja/htmldocs/using_samba/ch04_01.html -share/doc/samba/ja/htmldocs/using_samba/ch04_02.html -share/doc/samba/ja/htmldocs/using_samba/ch04_03.html -share/doc/samba/ja/htmldocs/using_samba/ch04_04.html -share/doc/samba/ja/htmldocs/using_samba/ch04_05.html -share/doc/samba/ja/htmldocs/using_samba/ch04_06.html -share/doc/samba/ja/htmldocs/using_samba/ch04_07.html -share/doc/samba/ja/htmldocs/using_samba/ch04_08.html -share/doc/samba/ja/htmldocs/using_samba/ch05_01.html -share/doc/samba/ja/htmldocs/using_samba/ch05_02.html -share/doc/samba/ja/htmldocs/using_samba/ch05_03.html -share/doc/samba/ja/htmldocs/using_samba/ch05_04.html -share/doc/samba/ja/htmldocs/using_samba/ch05_05.html -share/doc/samba/ja/htmldocs/using_samba/ch06_01.html -share/doc/samba/ja/htmldocs/using_samba/ch06_02.html -share/doc/samba/ja/htmldocs/using_samba/ch06_03.html -share/doc/samba/ja/htmldocs/using_samba/ch06_04.html -share/doc/samba/ja/htmldocs/using_samba/ch06_05.html -share/doc/samba/ja/htmldocs/using_samba/ch06_06.html -share/doc/samba/ja/htmldocs/using_samba/ch07_01.html -share/doc/samba/ja/htmldocs/using_samba/ch07_02.html -share/doc/samba/ja/htmldocs/using_samba/ch07_03.html -share/doc/samba/ja/htmldocs/using_samba/ch08_01.html -share/doc/samba/ja/htmldocs/using_samba/ch08_02.html -share/doc/samba/ja/htmldocs/using_samba/ch08_03.html -share/doc/samba/ja/htmldocs/using_samba/ch08_04.html -share/doc/samba/ja/htmldocs/using_samba/ch08_05.html -share/doc/samba/ja/htmldocs/using_samba/ch08_06.html -share/doc/samba/ja/htmldocs/using_samba/ch08_07.html -share/doc/samba/ja/htmldocs/using_samba/ch09_01.html -share/doc/samba/ja/htmldocs/using_samba/ch09_02.html -share/doc/samba/ja/htmldocs/using_samba/ch09_03.html -share/doc/samba/ja/htmldocs/using_samba/contributor.html -share/doc/samba/ja/htmldocs/using_samba/index.html -share/doc/samba/ja/htmldocs/using_samba/inx.html -share/doc/samba/ja/htmldocs/using_samba/licenseinfo.html -share/doc/samba/ja/htmldocs/using_samba/status.html -share/doc/samba/ja/htmldocs/using_samba/this_edition.html -share/doc/samba/ja/htmldocs/wbinfo.1.html -share/doc/samba/ja/htmldocs/whatsamba.html -share/doc/samba/ja/htmldocs/winbind.html -share/doc/samba/ja/htmldocs/winbindd.8.html -share/doc/samba/ja/reg/NT4_PlainPassword.reg -share/doc/samba/ja/reg/Win2000_PlainPassword.reg -share/doc/samba/ja/reg/Win95_PlainPassword.reg -share/doc/samba/ja/reg/Win98_PlainPassword.reg -share/doc/samba/ja/reg/Win9X-CacheHandling.reg -share/doc/samba/ja/status.html -share/doc/samba/ja/status.txt -share/doc/samba/ja/textdocs/Application_Serving.txt -share/doc/samba/ja/textdocs/BROWSING-Config.txt -share/doc/samba/ja/textdocs/BROWSING.txt -share/doc/samba/ja/textdocs/CRLF-LF-Conversions.txt -share/doc/samba/ja/textdocs/CVS_ACCESS.txt -share/doc/samba/ja/textdocs/DIAGNOSIS.txt -share/doc/samba/ja/textdocs/DOMAIN.txt -share/doc/samba/ja/textdocs/DOMAIN_MEMBER.txt -share/doc/samba/ja/textdocs/ENCRYPTION.txt -share/doc/samba/ja/textdocs/File-Cacheing.txt -share/doc/samba/ja/textdocs/Macintosh_Clients.txt -share/doc/samba/ja/textdocs/NT-Guest-Access.txt -share/doc/samba/ja/textdocs/NTDOMAIN.txt -share/doc/samba/ja/textdocs/NetBIOS.txt -share/doc/samba/ja/textdocs/PRINTER_DRIVER.txt -share/doc/samba/ja/textdocs/PROFILES.txt -share/doc/samba/ja/textdocs/Passwords.txt -share/doc/samba/ja/textdocs/README.smbmount.txt -share/doc/samba/ja/textdocs/Speed.txt -share/doc/samba/ja/textdocs/Speed2.txt -share/doc/samba/ja/textdocs/UNIX-SMB.txt -share/doc/samba/ja/textdocs/UNIX_INSTALL.txt -share/doc/samba/ja/textdocs/Win95.txt -share/doc/samba/ja/textdocs/WinNT.txt -share/doc/samba/ja/textdocs/footer.html -share/doc/samba/ja/textdocs/header.html -share/doc/samba/ja/textdocs/security_level.txt -share/doc/samba/ja/textdocs/smbmount.txt -share/doc/samba/ja/yodldocs/NT_Security.yo -share/doc/samba/ja/yodldocs/make_smbcodepage.1.yo -share/doc/samba/ja/yodldocs/make_unicodemap.1.yo -share/doc/samba/ja/yodldocs/smbclient.1.yo -share/doc/samba/ja/yodldocs/smbpasswd.8.yo -share/doc/samba/manpages/findsmb.1 -share/doc/samba/manpages/ja/Makefile -share/doc/samba/manpages/ja/findsmb.1.man -share/doc/samba/manpages/ja/install-man.sh -share/doc/samba/manpages/ja/lmhosts.5.man -share/doc/samba/manpages/ja/make_smbcodepage.1.man -share/doc/samba/manpages/ja/make_unicodemap.1.man -share/doc/samba/manpages/ja/nmbd.8.man -share/doc/samba/manpages/ja/nmblookup.1.man -share/doc/samba/manpages/ja/pdbedit.8.man -share/doc/samba/manpages/ja/rpcclient.1.man -share/doc/samba/manpages/ja/samba.7.man -share/doc/samba/manpages/ja/smb.conf.5.man -share/doc/samba/manpages/ja/smbcacls.1.man -share/doc/samba/manpages/ja/smbclient.1.man -share/doc/samba/manpages/ja/smbcontrol.1.man -share/doc/samba/manpages/ja/smbd.8.man -share/doc/samba/manpages/ja/smbmnt.8.man -share/doc/samba/manpages/ja/smbmount.8.man -share/doc/samba/manpages/ja/smbpasswd.5.man -share/doc/samba/manpages/ja/smbpasswd.8.man -share/doc/samba/manpages/ja/smbsh.1.man -share/doc/samba/manpages/ja/smbspool.8.man -share/doc/samba/manpages/ja/smbstatus.1.man -share/doc/samba/manpages/ja/smbtar.1.man -share/doc/samba/manpages/ja/smbumount.8.man -share/doc/samba/manpages/ja/swat.8.man -share/doc/samba/manpages/ja/testparm.1.man -share/doc/samba/manpages/ja/testprns.1.man -share/doc/samba/manpages/ja/wbinfo.1.man -share/doc/samba/manpages/ja/winbindd.8.man -share/doc/samba/manpages/lmhosts.5 -share/doc/samba/manpages/make_smbcodepage.1 -share/doc/samba/manpages/make_unicodemap.1 -share/doc/samba/manpages/nmbd.8 -share/doc/samba/manpages/nmblookup.1 -share/doc/samba/manpages/pdbedit.8 -share/doc/samba/manpages/rpcclient.1 -share/doc/samba/manpages/samba.7 -share/doc/samba/manpages/smb.conf.5 -share/doc/samba/manpages/smbcacls.1 -share/doc/samba/manpages/smbclient.1 -share/doc/samba/manpages/smbcontrol.1 -share/doc/samba/manpages/smbd.8 -share/doc/samba/manpages/smbmnt.8 -share/doc/samba/manpages/smbmount.8 -share/doc/samba/manpages/smbpasswd.5 -share/doc/samba/manpages/smbpasswd.8 -share/doc/samba/manpages/smbsh.1 -share/doc/samba/manpages/smbspool.8 -share/doc/samba/manpages/smbstatus.1 -share/doc/samba/manpages/smbtar.1 -share/doc/samba/manpages/smbumount.8 -share/doc/samba/manpages/swat.8 -share/doc/samba/manpages/testparm.1 -share/doc/samba/manpages/testprns.1 -share/doc/samba/manpages/wbinfo.1 -share/doc/samba/manpages/winbindd.8 -share/doc/samba/textdocs/Application_Serving.txt -share/doc/samba/textdocs/BROWSING-Config.txt -share/doc/samba/textdocs/BROWSING.txt -share/doc/samba/textdocs/BUGS.txt -share/doc/samba/textdocs/DHCP-Server-Configuration.txt -share/doc/samba/textdocs/DIAGNOSIS.txt -share/doc/samba/textdocs/DNIX.txt -share/doc/samba/textdocs/Faxing.txt -share/doc/samba/textdocs/GOTCHAS.txt -share/doc/samba/textdocs/HINTS.txt -share/doc/samba/textdocs/INSTALL.sambatar -share/doc/samba/textdocs/Imprints.txt -share/doc/samba/textdocs/Macintosh_Clients.txt -share/doc/samba/textdocs/NetBIOS.txt -share/doc/samba/textdocs/PROFILES.txt -share/doc/samba/textdocs/Passwords.txt -share/doc/samba/textdocs/Printing.txt -share/doc/samba/textdocs/README.DCEDFS -share/doc/samba/textdocs/README.NOW -share/doc/samba/textdocs/README.jis -share/doc/samba/textdocs/README.sambatar -share/doc/samba/textdocs/Recent-FAQs.txt -share/doc/samba/textdocs/RoutedNetworks.txt -share/doc/samba/textdocs/SCO.txt -share/doc/samba/textdocs/SMBTAR.notes -share/doc/samba/textdocs/Samba-OpenSSL.txt -share/doc/samba/textdocs/Solaris-Winbind-HOWTO.txt -share/doc/samba/textdocs/Speed.txt -share/doc/samba/textdocs/Speed2.txt -share/doc/samba/textdocs/Tracing.txt -share/doc/samba/textdocs/UNIX-SMB.txt -share/doc/samba/textdocs/UNIX_SECURITY.txt -share/doc/samba/textdocs/Win95.txt -share/doc/samba/textdocs/WinNT.txt -share/doc/samba/textdocs/cifsntdomain.txt -share/doc/samba/textdocs/outdated/NTDOMAIN.txt -share/doc/samba/textdocs/outdated/PRINTER_DRIVER.txt -share/doc/samba/textdocs/outdated/PROJECTS -share/doc/samba/textdocs/security_level.txt -share/doc/samba/yodldocs/README-NOW -@dirrm share/doc/samba/OID -@dirrm share/doc/samba/Registry -@dirrm share/doc/samba/docbook/faq -@dirrm share/doc/samba/docbook/dbsgml/ent -@dirrm share/doc/samba/docbook/dbsgml -@dirrm share/doc/samba/docbook/howto -@dirrm share/doc/samba/docbook/manpages -@dirrm share/doc/samba/docbook/projdoc -@dirrm share/doc/samba/docbook/scripts -@dirrm share/doc/samba/docbook/stylesheets -@dirrm share/doc/samba/docbook -@dirrm share/doc/samba/faq -@dirrm share/doc/samba/htmldocs/using_samba/figs -@dirrm share/doc/samba/htmldocs/using_samba/gifs -@dirrm share/doc/samba/htmldocs/using_samba -@dirrm share/doc/samba/htmldocs -@dirrm share/doc/samba/ja/reg -@dirrm share/doc/samba/ja/htmldocs/quota -@dirrm share/doc/samba/ja/htmldocs/BrowsingFAQ/image -@dirrm share/doc/samba/ja/htmldocs/BrowsingFAQ -@dirrm share/doc/samba/ja/htmldocs/HowToUseSamba2.2 -@dirrm share/doc/samba/ja/htmldocs/samba2.2_func -@dirrm share/doc/samba/ja/htmldocs/samba2.2_whatsnew -@dirrm share/doc/samba/ja/htmldocs/using_samba -@dirrm share/doc/samba/ja/htmldocs -@dirrm share/doc/samba/ja/textdocs -@dirrm share/doc/samba/ja/yodldocs -@dirrm share/doc/samba/ja -@dirrm share/doc/samba/manpages/ja -@dirrm share/doc/samba/manpages -@dirrm share/doc/samba/textdocs/outdated -@dirrm share/doc/samba/textdocs -@dirrm share/doc/samba/yodldocs +%%PORTDOCS%%share/doc/samba/COPYING +%%PORTDOCS%%share/doc/samba/Manifest +%%PORTDOCS%%share/doc/samba/OID/allocated-arcs.txt +%%PORTDOCS%%share/doc/samba/OID/samba-oid.mail +%%PORTDOCS%%share/doc/samba/README +%%PORTDOCS%%share/doc/samba/README.FreeBSD +%%PORTDOCS%%share/doc/samba/README.Win2kSP2 +%%PORTDOCS%%share/doc/samba/README.Win32-Viruses +%%PORTDOCS%%share/doc/samba/README.ldap +%%PORTDOCS%%share/doc/samba/README.swat +%%PORTDOCS%%share/doc/samba/Read-Manifest-Now +%%PORTDOCS%%share/doc/samba/Registry/NT4-Locking.reg +%%PORTDOCS%%share/doc/samba/Registry/NT4_PlainPassword.reg +%%PORTDOCS%%share/doc/samba/Registry/Win2000_PlainPassword.reg +%%PORTDOCS%%share/doc/samba/Registry/Win95_PlainPassword.reg +%%PORTDOCS%%share/doc/samba/Registry/Win98_PlainPassword.reg +%%PORTDOCS%%share/doc/samba/Registry/Win9X-CacheHandling.reg +%%PORTDOCS%%share/doc/samba/Registry/WinME_PlainPassword.reg +%%PORTDOCS%%share/doc/samba/Registry/WinXP_SignOrSeal.reg +%%PORTDOCS%%share/doc/samba/Registry/WindowsTerminalServer.reg +%%PORTDOCS%%share/doc/samba/Roadmap +%%PORTDOCS%%share/doc/samba/Samba-HOWTO-Collection.pdf +%%PORTDOCS%%share/doc/samba/THANKS +%%PORTDOCS%%share/doc/samba/WHATSNEW.txt +%%PORTDOCS%%share/doc/samba/announce +%%PORTDOCS%%share/doc/samba/docbook/Makefile.in +%%PORTDOCS%%share/doc/samba/docbook/configure +%%PORTDOCS%%share/doc/samba/docbook/configure.in +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/40chg.txt +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/41chg.txt +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/50issues.txt +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ChangeLog +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/cals-tbl.dtd +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/catalog +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/dbcent.mod +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/dbgenent.mod +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/dbhier.mod +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/dbnotn.mod +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/dbpool.mod +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/docbook.cat +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/docbook.dcl +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/docbook.dtd +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOamsa +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOamsb +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOamsc +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOamsn +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOamso +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOamsr +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISObox +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOcyr1 +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOcyr2 +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOdia +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOgrk1 +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOgrk2 +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOgrk3 +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOgrk4 +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOlat1 +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOlat2 +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOnum +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOpub +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOtech +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/readme.txt +%%PORTDOCS%%share/doc/samba/docbook/docbook.txt +%%PORTDOCS%%share/doc/samba/docbook/faq/README.NOW +%%PORTDOCS%%share/doc/samba/docbook/global.ent +%%PORTDOCS%%share/doc/samba/docbook/howto/README.NOW +%%PORTDOCS%%share/doc/samba/docbook/manpages/findsmb.1.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/lmhosts.5.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/make_smbcodepage.1.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/make_unicodemap.1.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/nmbd.8.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/nmblookup.1.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/pdbedit.8.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/rpcclient.1.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/samba.7.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/smb.conf.5.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/smbcacls.1.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/smbclient.1.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/smbcontrol.1.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/smbd.8.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/smbmnt.8.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/smbmount.8.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/smbpasswd.5.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/smbpasswd.8.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/smbsh.1.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/smbspool.8.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/smbstatus.1.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/smbtar.1.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/smbumount.8.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/swat.8.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/testparm.1.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/testprns.1.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/wbinfo.1.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/winbindd.8.sgml +%%PORTDOCS%%share/doc/samba/docbook/projdoc/CVS-Access.sgml +%%PORTDOCS%%share/doc/samba/docbook/projdoc/DOMAIN_MEMBER.sgml +%%PORTDOCS%%share/doc/samba/docbook/projdoc/ENCRYPTION.sgml +%%PORTDOCS%%share/doc/samba/docbook/projdoc/Integrating-with-Windows.sgml +%%PORTDOCS%%share/doc/samba/docbook/projdoc/NT_Security.sgml +%%PORTDOCS%%share/doc/samba/docbook/projdoc/OS2-Client-HOWTO.sgml +%%PORTDOCS%%share/doc/samba/docbook/projdoc/PAM-Authentication-And-Samba.sgml +%%PORTDOCS%%share/doc/samba/docbook/projdoc/Samba-BDC-HOWTO.sgml +%%PORTDOCS%%share/doc/samba/docbook/projdoc/Samba-LDAP-HOWTO.sgml +%%PORTDOCS%%share/doc/samba/docbook/projdoc/Samba-PDC-HOWTO.sgml +%%PORTDOCS%%share/doc/samba/docbook/projdoc/UNIX_INSTALL.sgml +%%PORTDOCS%%share/doc/samba/docbook/projdoc/cups.sgml +%%PORTDOCS%%share/doc/samba/docbook/projdoc/msdfs_setup.sgml +%%PORTDOCS%%share/doc/samba/docbook/projdoc/printer_driver2.sgml +%%PORTDOCS%%share/doc/samba/docbook/projdoc/samba-doc.sgml +%%PORTDOCS%%share/doc/samba/docbook/projdoc/winbind.sgml +%%PORTDOCS%%share/doc/samba/docbook/scripts/README.ldp_print +%%PORTDOCS%%share/doc/samba/docbook/scripts/collateindex.pl +%%PORTDOCS%%share/doc/samba/docbook/scripts/fix_print_html.lib +%%PORTDOCS%%share/doc/samba/docbook/scripts/ldp_print +%%PORTDOCS%%share/doc/samba/docbook/scripts/make-article.pl +%%PORTDOCS%%share/doc/samba/docbook/scripts/strip-links.pl +%%PORTDOCS%%share/doc/samba/docbook/stylesheets/ldp.dsl.in +%%PORTDOCS%%share/doc/samba/faq/README +%%PORTDOCS%%share/doc/samba/faq/Samba-Server-FAQ-1.html +%%PORTDOCS%%share/doc/samba/faq/Samba-Server-FAQ-2.html +%%PORTDOCS%%share/doc/samba/faq/Samba-Server-FAQ.html +%%PORTDOCS%%share/doc/samba/faq/Samba-Server-FAQ.sgml +%%PORTDOCS%%share/doc/samba/faq/Samba-meta-FAQ-1.html +%%PORTDOCS%%share/doc/samba/faq/Samba-meta-FAQ-2.html +%%PORTDOCS%%share/doc/samba/faq/Samba-meta-FAQ-3.html +%%PORTDOCS%%share/doc/samba/faq/Samba-meta-FAQ-4.html +%%PORTDOCS%%share/doc/samba/faq/Samba-meta-FAQ-5.html +%%PORTDOCS%%share/doc/samba/faq/Samba-meta-FAQ-6.html +%%PORTDOCS%%share/doc/samba/faq/Samba-meta-FAQ.html +%%PORTDOCS%%share/doc/samba/faq/Samba-meta-FAQ.sgml +%%PORTDOCS%%share/doc/samba/faq/Samba-meta-FAQ.txt +%%PORTDOCS%%share/doc/samba/faq/sambafaq-1.html +%%PORTDOCS%%share/doc/samba/faq/sambafaq-2.html +%%PORTDOCS%%share/doc/samba/faq/sambafaq-3.html +%%PORTDOCS%%share/doc/samba/faq/sambafaq-4.html +%%PORTDOCS%%share/doc/samba/faq/sambafaq-5.html +%%PORTDOCS%%share/doc/samba/faq/sambafaq.html +%%PORTDOCS%%share/doc/samba/faq/sambafaq.sgml +%%PORTDOCS%%share/doc/samba/faq/sambafaq.txt +%%PORTDOCS%%share/doc/samba/history +%%PORTDOCS%%share/doc/samba/htmldocs/CVS-Access.html +%%PORTDOCS%%share/doc/samba/htmldocs/DOMAIN_MEMBER.html +%%PORTDOCS%%share/doc/samba/htmldocs/ENCRYPTION.html +%%PORTDOCS%%share/doc/samba/htmldocs/Integrating-with-Windows.html +%%PORTDOCS%%share/doc/samba/htmldocs/NT_Security.html +%%PORTDOCS%%share/doc/samba/htmldocs/OS2-Client-HOWTO.html +%%PORTDOCS%%share/doc/samba/htmldocs/PAM-Authentication-And-Samba.html +%%PORTDOCS%%share/doc/samba/htmldocs/Samba-BDC-HOWTO.html +%%PORTDOCS%%share/doc/samba/htmldocs/Samba-HOWTO-Collection.html +%%PORTDOCS%%share/doc/samba/htmldocs/Samba-LDAP-HOWTO.html +%%PORTDOCS%%share/doc/samba/htmldocs/Samba-PDC-HOWTO.html +%%PORTDOCS%%share/doc/samba/htmldocs/UNIX_INSTALL.html +%%PORTDOCS%%share/doc/samba/htmldocs/cups.html +%%PORTDOCS%%share/doc/samba/htmldocs/findsmb.1.html +%%PORTDOCS%%share/doc/samba/htmldocs/lmhosts.5.html +%%PORTDOCS%%share/doc/samba/htmldocs/make_smbcodepage.1.html +%%PORTDOCS%%share/doc/samba/htmldocs/make_unicodemap.1.html +%%PORTDOCS%%share/doc/samba/htmldocs/msdfs_setup.html +%%PORTDOCS%%share/doc/samba/htmldocs/nmbd.8.html +%%PORTDOCS%%share/doc/samba/htmldocs/nmblookup.1.html +%%PORTDOCS%%share/doc/samba/htmldocs/pdbedit.8.html +%%PORTDOCS%%share/doc/samba/htmldocs/printer_driver2.html +%%PORTDOCS%%share/doc/samba/htmldocs/rpcclient.1.html +%%PORTDOCS%%share/doc/samba/htmldocs/samba.7.html +%%PORTDOCS%%share/doc/samba/htmldocs/smb.conf.5.html +%%PORTDOCS%%share/doc/samba/htmldocs/smbcacls.1.html +%%PORTDOCS%%share/doc/samba/htmldocs/smbclient.1.html +%%PORTDOCS%%share/doc/samba/htmldocs/smbcontrol.1.html +%%PORTDOCS%%share/doc/samba/htmldocs/smbd.8.html +%%PORTDOCS%%share/doc/samba/htmldocs/smbmnt.8.html +%%PORTDOCS%%share/doc/samba/htmldocs/smbmount.8.html +%%PORTDOCS%%share/doc/samba/htmldocs/smbpasswd.5.html +%%PORTDOCS%%share/doc/samba/htmldocs/smbpasswd.8.html +%%PORTDOCS%%share/doc/samba/htmldocs/smbsh.1.html +%%PORTDOCS%%share/doc/samba/htmldocs/smbspool.8.html +%%PORTDOCS%%share/doc/samba/htmldocs/smbstatus.1.html +%%PORTDOCS%%share/doc/samba/htmldocs/smbtar.1.html +%%PORTDOCS%%share/doc/samba/htmldocs/smbumount.8.html +%%PORTDOCS%%share/doc/samba/htmldocs/swat.8.html +%%PORTDOCS%%share/doc/samba/htmldocs/testparm.1.html +%%PORTDOCS%%share/doc/samba/htmldocs/testprns.1.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/appa_01.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/appa_02.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/appa_03.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/appa_04.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/appa_05.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/appb_01.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/appb_02.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/appb_03.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/appc_01.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/appd_01.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/appe_01.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/appf_01.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch01_01.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch01_02.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch01_03.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch01_04.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch01_05.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch01_06.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch01_07.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch01_08.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch02_01.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch02_02.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch02_03.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch02_04.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch02_05.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch02_06.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch03_01.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch03_02.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch03_03.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch04_01.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch04_02.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch04_03.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch04_04.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch04_05.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch04_06.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch04_07.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch04_08.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch05_01.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch05_02.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch05_03.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch05_04.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch05_05.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch06_01.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch06_02.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch06_03.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch06_04.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch06_05.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch06_06.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch07_01.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch07_02.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch07_03.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch08_01.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch08_02.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch08_03.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch08_04.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch08_05.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch08_06.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch08_07.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch09_01.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch09_02.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch09_03.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0101.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0102.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0103.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0104.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0105.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0106.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0107.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0108.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0109.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0110.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0111.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0112.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0113.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0114.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0201.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0202.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0203.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0204.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0301.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0302.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0303.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0304.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0305.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0306.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0307.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0308.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0309.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0310.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0311.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0312.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0313.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0314.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0315.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0316.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0317.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0318.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0319.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0320.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0321.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0322.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0323.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0324.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0325.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0326.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0327.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0328.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0401.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0402.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0403.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0404.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0405.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0406.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0407.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0501.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0502.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0503.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0504.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0505.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0506.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0507.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0508.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0601.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0602.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0603.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0604.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0605.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0606.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0701.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0702.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0703.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0704.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0705.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0706.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0707.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0708.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0709.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0801.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0802.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0803.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0804.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0805.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0901.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0902.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0903.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0904.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0905.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.aa01.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.ab01.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.ab02.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/gifs/index.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/gifs/samba.s.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/gifs/txthome.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/gifs/txtnexta.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/gifs/txtpreva.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/index.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/inx.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/licenseinfo.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/this_edition.html +%%PORTDOCS%%share/doc/samba/htmldocs/wbinfo.1.html +%%PORTDOCS%%share/doc/samba/htmldocs/wfw_slip.htm +%%PORTDOCS%%share/doc/samba/htmldocs/winbind.html +%%PORTDOCS%%share/doc/samba/htmldocs/winbindd.8.html +%%PORTDOCS%%share/doc/samba/ja/CREDITS.txt +%%PORTDOCS%%share/doc/samba/ja/ML.txt +%%PORTDOCS%%share/doc/samba/ja/WHATSNEW.txt +%%PORTDOCS%%share/doc/samba/ja/history +%%PORTDOCS%%share/doc/samba/ja/htmldocs/CVS-Access.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/DOMAIN_MEMBER.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/BrowsingFAQ/browsing01.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/BrowsingFAQ/browsing02.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/BrowsingFAQ/fig_1.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/BrowsingFAQ/fig_2.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/BrowsingFAQ/image/fig1.png +%%PORTDOCS%%share/doc/samba/ja/htmldocs/BrowsingFAQ/image/fig2.png +%%PORTDOCS%%share/doc/samba/ja/htmldocs/BrowsingFAQ/image/fig4.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/BrowsingFAQ/image/fig5.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/BrowsingFAQ/image/fig6.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/BrowsingFAQ/image/fig7.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/BrowsingFAQ/image/fig8.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/BrowsingFAQ/image/return.png +%%PORTDOCS%%share/doc/samba/ja/htmldocs/BrowsingFAQ/index.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig05.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig06.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig07.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig08.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig09.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig10.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig11.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig12.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig14.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig15.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig16.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig17.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig18.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig19.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig20.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig21.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig22.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig23.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig24.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig25.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/index.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/NT_Security.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/diag.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/encrypt-passwd.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/findsmb.1.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/lmhosts.5.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/make_smbcodepage.1.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/make_unicodemap.1.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/msdfs_setup.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/nmbd.8.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/nmblookup.1.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/pdbedit.8.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/printer_driver2.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/quota/fig1.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/quota/fig2.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/quota/fig3.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/quota/fig4.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/quota/fig5.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/quota/fig6.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/quota/index.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/rpcclient.1.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba-func.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba-j.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba-pdc-faq.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba.7.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba2.2_func/fig01.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba2.2_func/fig03.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba2.2_func/fig04.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba2.2_func/fig05.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba2.2_func/fig06.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba2.2_func/fig07.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba2.2_func/index.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba2.2_whatsnew/fig01.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba2.2_whatsnew/fig02.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba2.2_whatsnew/fig03.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba2.2_whatsnew/fig04.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba2.2_whatsnew/fig05.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba2.2_whatsnew/index.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba2.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba_begin.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/sambafaq-1.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/sambafaq-2.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/sambafaq-3.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/sambafaq-4.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/sambafaq-5.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/sambafaq.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/sambafaq.sgml +%%PORTDOCS%%share/doc/samba/ja/htmldocs/smb.conf.5.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/smbcacls.1.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/smbclient.1.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/smbcontrol.1.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/smbd.8.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/smbmnt.8.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/smbmount.8.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/smbpasswd.5.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/smbpasswd.8.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/smbsh.1.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/smbspool.8.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/smbstatus.1.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/smbtar.1.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/smbumount.8.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/swat.8.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/testparm.1.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/testprns.1.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/tuning.japanese.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/appa_01.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/appa_02.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/appa_03.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/appa_04.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/appa_05.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/appb_01.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/appb_02.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/appb_03.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/appc_01.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/appd_01.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/appe_01.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/appf_01.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch01_01.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch01_02.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch01_03.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch01_04.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch01_05.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch01_06.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch01_07.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch01_08.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch02_01.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch02_02.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch02_03.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch02_04.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch02_05.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch02_06.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch03_01.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch03_02.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch03_03.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch04_01.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch04_02.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch04_03.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch04_04.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch04_05.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch04_06.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch04_07.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch04_08.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch05_01.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch05_02.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch05_03.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch05_04.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch05_05.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch06_01.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch06_02.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch06_03.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch06_04.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch06_05.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch06_06.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch07_01.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch07_02.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch07_03.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch08_01.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch08_02.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch08_03.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch08_04.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch08_05.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch08_06.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch08_07.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch09_01.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch09_02.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch09_03.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/contributor.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/index.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/inx.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/licenseinfo.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/status.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/this_edition.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/wbinfo.1.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/whatsamba.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/winbind.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/winbindd.8.html +%%PORTDOCS%%share/doc/samba/ja/reg/NT4_PlainPassword.reg +%%PORTDOCS%%share/doc/samba/ja/reg/Win2000_PlainPassword.reg +%%PORTDOCS%%share/doc/samba/ja/reg/Win95_PlainPassword.reg +%%PORTDOCS%%share/doc/samba/ja/reg/Win98_PlainPassword.reg +%%PORTDOCS%%share/doc/samba/ja/reg/Win9X-CacheHandling.reg +%%PORTDOCS%%share/doc/samba/ja/status.html +%%PORTDOCS%%share/doc/samba/ja/textdocs/Application_Serving.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/BROWSING-Config.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/BROWSING.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/CRLF-LF-Conversions.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/CVS_ACCESS.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/DIAGNOSIS.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/DOMAIN.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/DOMAIN_MEMBER.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/ENCRYPTION.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/File-Cacheing.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/Macintosh_Clients.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/NT-Guest-Access.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/NTDOMAIN.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/NetBIOS.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/PRINTER_DRIVER.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/PROFILES.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/Passwords.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/README.smbmount.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/Speed.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/Speed2.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/UNIX-SMB.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/UNIX_INSTALL.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/Win95.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/WinNT.txt +%%PORTDOCS%%share/doc/samba/textdocs/CUPS-PrintingInfo.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/footer.html +%%PORTDOCS%%share/doc/samba/ja/textdocs/header.html +%%PORTDOCS%%share/doc/samba/ja/textdocs/security_level.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/smbmount.txt +%%PORTDOCS%%share/doc/samba/ja/yodldocs/NT_Security.yo +%%PORTDOCS%%share/doc/samba/ja/yodldocs/make_smbcodepage.1.yo +%%PORTDOCS%%share/doc/samba/ja/yodldocs/make_unicodemap.1.yo +%%PORTDOCS%%share/doc/samba/ja/yodldocs/smbpasswd.8.yo +%%PORTDOCS%%share/doc/samba/manpages/findsmb.1 +%%PORTDOCS%%share/doc/samba/manpages/ja/Makefile +%%PORTDOCS%%share/doc/samba/manpages/ja/findsmb.1.man +%%PORTDOCS%%share/doc/samba/manpages/ja/install-man.sh +%%PORTDOCS%%share/doc/samba/manpages/ja/lmhosts.5.man +%%PORTDOCS%%share/doc/samba/manpages/ja/make_smbcodepage.1.man +%%PORTDOCS%%share/doc/samba/manpages/ja/make_unicodemap.1.man +%%PORTDOCS%%share/doc/samba/manpages/ja/nmbd.8.man +%%PORTDOCS%%share/doc/samba/manpages/ja/nmblookup.1.man +%%PORTDOCS%%share/doc/samba/manpages/ja/pdbedit.8.man +%%PORTDOCS%%share/doc/samba/manpages/ja/rpcclient.1.man +%%PORTDOCS%%share/doc/samba/manpages/ja/samba.7.man +%%PORTDOCS%%share/doc/samba/manpages/ja/smb.conf.5.man +%%PORTDOCS%%share/doc/samba/manpages/ja/smbcacls.1.man +%%PORTDOCS%%share/doc/samba/manpages/ja/smbclient.1.man +%%PORTDOCS%%share/doc/samba/manpages/ja/smbcontrol.1.man +%%PORTDOCS%%share/doc/samba/manpages/ja/smbd.8.man +%%PORTDOCS%%share/doc/samba/manpages/ja/smbmnt.8.man +%%PORTDOCS%%share/doc/samba/manpages/ja/smbmount.8.man +%%PORTDOCS%%share/doc/samba/manpages/ja/smbpasswd.5.man +%%PORTDOCS%%share/doc/samba/manpages/ja/smbpasswd.8.man +%%PORTDOCS%%share/doc/samba/manpages/ja/smbsh.1.man +%%PORTDOCS%%share/doc/samba/manpages/ja/smbspool.8.man +%%PORTDOCS%%share/doc/samba/manpages/ja/smbstatus.1.man +%%PORTDOCS%%share/doc/samba/manpages/ja/smbtar.1.man +%%PORTDOCS%%share/doc/samba/manpages/ja/smbumount.8.man +%%PORTDOCS%%share/doc/samba/manpages/ja/swat.8.man +%%PORTDOCS%%share/doc/samba/manpages/ja/testparm.1.man +%%PORTDOCS%%share/doc/samba/manpages/ja/testprns.1.man +%%PORTDOCS%%share/doc/samba/manpages/ja/wbinfo.1.man +%%PORTDOCS%%share/doc/samba/manpages/ja/winbindd.8.man +%%PORTDOCS%%share/doc/samba/manpages/lmhosts.5 +%%PORTDOCS%%share/doc/samba/manpages/make_smbcodepage.1 +%%PORTDOCS%%share/doc/samba/manpages/make_unicodemap.1 +%%PORTDOCS%%share/doc/samba/manpages/nmbd.8 +%%PORTDOCS%%share/doc/samba/manpages/nmblookup.1 +%%PORTDOCS%%share/doc/samba/manpages/pdbedit.8 +%%PORTDOCS%%share/doc/samba/manpages/rpcclient.1 +%%PORTDOCS%%share/doc/samba/manpages/samba.7 +%%PORTDOCS%%share/doc/samba/manpages/smb.conf.5 +%%PORTDOCS%%share/doc/samba/manpages/smbcacls.1 +%%PORTDOCS%%share/doc/samba/manpages/smbclient.1 +%%PORTDOCS%%share/doc/samba/manpages/smbcontrol.1 +%%PORTDOCS%%share/doc/samba/manpages/smbd.8 +%%PORTDOCS%%share/doc/samba/manpages/smbmnt.8 +%%PORTDOCS%%share/doc/samba/manpages/smbmount.8 +%%PORTDOCS%%share/doc/samba/manpages/smbpasswd.5 +%%PORTDOCS%%share/doc/samba/manpages/smbpasswd.8 +%%PORTDOCS%%share/doc/samba/manpages/smbsh.1 +%%PORTDOCS%%share/doc/samba/manpages/smbspool.8 +%%PORTDOCS%%share/doc/samba/manpages/smbstatus.1 +%%PORTDOCS%%share/doc/samba/manpages/smbtar.1 +%%PORTDOCS%%share/doc/samba/manpages/smbumount.8 +%%PORTDOCS%%share/doc/samba/manpages/swat.8 +%%PORTDOCS%%share/doc/samba/manpages/testparm.1 +%%PORTDOCS%%share/doc/samba/manpages/testprns.1 +%%PORTDOCS%%share/doc/samba/manpages/wbinfo.1 +%%PORTDOCS%%share/doc/samba/manpages/winbindd.8 +%%PORTDOCS%%share/doc/samba/textdocs/Application_Serving.txt +%%PORTDOCS%%share/doc/samba/textdocs/BROWSING-Config.txt +%%PORTDOCS%%share/doc/samba/textdocs/BROWSING.txt +%%PORTDOCS%%share/doc/samba/textdocs/BUGS.txt +%%PORTDOCS%%share/doc/samba/textdocs/DHCP-Server-Configuration.txt +%%PORTDOCS%%share/doc/samba/textdocs/DIAGNOSIS.txt +%%PORTDOCS%%share/doc/samba/textdocs/DNIX.txt +%%PORTDOCS%%share/doc/samba/textdocs/Faxing.txt +%%PORTDOCS%%share/doc/samba/textdocs/GOTCHAS.txt +%%PORTDOCS%%share/doc/samba/textdocs/HINTS.txt +%%PORTDOCS%%share/doc/samba/textdocs/INSTALL.sambatar +%%PORTDOCS%%share/doc/samba/textdocs/Imprints.txt +%%PORTDOCS%%share/doc/samba/textdocs/Macintosh_Clients.txt +%%PORTDOCS%%share/doc/samba/textdocs/NetBIOS.txt +%%PORTDOCS%%share/doc/samba/textdocs/PROFILES.txt +%%PORTDOCS%%share/doc/samba/textdocs/Passwords.txt +%%PORTDOCS%%share/doc/samba/textdocs/Printing.txt +%%PORTDOCS%%share/doc/samba/textdocs/README.DCEDFS +%%PORTDOCS%%share/doc/samba/textdocs/README.NOW +%%PORTDOCS%%share/doc/samba/textdocs/README.jis +%%PORTDOCS%%share/doc/samba/textdocs/README.sambatar +%%PORTDOCS%%share/doc/samba/textdocs/Recent-FAQs.txt +%%PORTDOCS%%share/doc/samba/textdocs/RoutedNetworks.txt +%%PORTDOCS%%share/doc/samba/textdocs/SCO.txt +%%PORTDOCS%%share/doc/samba/textdocs/SMBTAR.notes +%%PORTDOCS%%share/doc/samba/textdocs/Samba-OpenSSL.txt +%%PORTDOCS%%share/doc/samba/textdocs/Speed.txt +%%PORTDOCS%%share/doc/samba/textdocs/Speed2.txt +%%PORTDOCS%%share/doc/samba/textdocs/Tracing.txt +%%PORTDOCS%%share/doc/samba/textdocs/UNIX-SMB.txt +%%PORTDOCS%%share/doc/samba/textdocs/UNIX_SECURITY.txt +%%PORTDOCS%%share/doc/samba/textdocs/Win95.txt +%%PORTDOCS%%share/doc/samba/textdocs/WinNT.txt +%%PORTDOCS%%share/doc/samba/textdocs/cifsntdomain.txt +%%PORTDOCS%%share/doc/samba/textdocs/outdated/NTDOMAIN.txt +%%PORTDOCS%%share/doc/samba/textdocs/outdated/PRINTER_DRIVER.txt +%%PORTDOCS%%share/doc/samba/textdocs/outdated/PROJECTS +%%PORTDOCS%%share/doc/samba/textdocs/security_level.txt +%%PORTDOCS%%share/doc/samba/yodldocs/README-NOW +%%PORTDOCS%%@dirrm share/doc/samba/OID +%%PORTDOCS%%@dirrm share/doc/samba/Registry +%%PORTDOCS%%@dirrm share/doc/samba/docbook/faq +%%PORTDOCS%%@dirrm share/doc/samba/docbook/dbsgml/ent +%%PORTDOCS%%@dirrm share/doc/samba/docbook/dbsgml +%%PORTDOCS%%@dirrm share/doc/samba/docbook/howto +%%PORTDOCS%%@dirrm share/doc/samba/docbook/manpages +%%PORTDOCS%%@dirrm share/doc/samba/docbook/projdoc +%%PORTDOCS%%@dirrm share/doc/samba/docbook/scripts +%%PORTDOCS%%@dirrm share/doc/samba/docbook/stylesheets +%%PORTDOCS%%@dirrm share/doc/samba/docbook +%%PORTDOCS%%@dirrm share/doc/samba/faq +%%PORTDOCS%%@dirrm share/doc/samba/htmldocs/using_samba/figs +%%PORTDOCS%%@dirrm share/doc/samba/htmldocs/using_samba/gifs +%%PORTDOCS%%@dirrm share/doc/samba/htmldocs/using_samba +%%PORTDOCS%%@dirrm share/doc/samba/htmldocs +%%PORTDOCS%%@dirrm share/doc/samba/ja/reg +%%PORTDOCS%%@dirrm share/doc/samba/ja/htmldocs/quota +%%PORTDOCS%%@dirrm share/doc/samba/ja/htmldocs/BrowsingFAQ/image +%%PORTDOCS%%@dirrm share/doc/samba/ja/htmldocs/BrowsingFAQ +%%PORTDOCS%%@dirrm share/doc/samba/ja/htmldocs/HowToUseSamba2.2 +%%PORTDOCS%%@dirrm share/doc/samba/ja/htmldocs/samba2.2_func +%%PORTDOCS%%@dirrm share/doc/samba/ja/htmldocs/samba2.2_whatsnew +%%PORTDOCS%%@dirrm share/doc/samba/ja/htmldocs/using_samba +%%PORTDOCS%%@dirrm share/doc/samba/ja/htmldocs +%%PORTDOCS%%@dirrm share/doc/samba/ja/textdocs +%%PORTDOCS%%@dirrm share/doc/samba/ja/yodldocs +%%PORTDOCS%%@dirrm share/doc/samba/ja +%%PORTDOCS%%@dirrm share/doc/samba/manpages/ja +%%PORTDOCS%%@dirrm share/doc/samba/manpages +%%PORTDOCS%%@dirrm share/doc/samba/textdocs/outdated +%%PORTDOCS%%@dirrm share/doc/samba/textdocs +%%PORTDOCS%%@dirrm share/doc/samba/yodldocs share/examples/samba/LDAP/README -share/examples/samba/LDAP/export2_smbpasswd.pl share/examples/samba/LDAP/export_smbpasswd.pl -share/examples/samba/LDAP/import2_smbpasswd.pl share/examples/samba/LDAP/import_smbpasswd.pl share/examples/samba/LDAP/ldapchpasswd share/examples/samba/LDAP/ldapsync.pl +share/examples/samba/LDAP/samba-nds.schema share/examples/samba/LDAP/samba.schema share/examples/samba/LDAP/samba-schema-netscapeds4.x share/examples/samba/LDAP/samba-schema-netscapeds5.x share/examples/samba/LDAP/samba-schema.IBMSecureWay +share/examples/samba/LDAP/smbldap-tools/AUTHORS +share/examples/samba/LDAP/smbldap-tools/CONTRIBUTORS +share/examples/samba/LDAP/smbldap-tools/COPYING +share/examples/samba/LDAP/smbldap-tools/ChangeLog +share/examples/samba/LDAP/smbldap-tools/FILES +share/examples/samba/LDAP/smbldap-tools/INFRASTRUCTURE +share/examples/samba/LDAP/smbldap-tools/INSTALL +share/examples/samba/LDAP/smbldap-tools/Makefile +share/examples/samba/LDAP/smbldap-tools/NEWS +share/examples/samba/LDAP/smbldap-tools/README +share/examples/samba/LDAP/smbldap-tools/TODO +share/examples/samba/LDAP/smbldap-tools/cgi/README +share/examples/samba/LDAP/smbldap-tools/cgi/ldappass.cgi +share/examples/samba/LDAP/smbldap-tools/mkntpwd/Makefile +share/examples/samba/LDAP/smbldap-tools/mkntpwd/getopt.c +share/examples/samba/LDAP/smbldap-tools/mkntpwd/getopt.h +share/examples/samba/LDAP/smbldap-tools/mkntpwd/md4.c +share/examples/samba/LDAP/smbldap-tools/mkntpwd/mkntpwd.c +share/examples/samba/LDAP/smbldap-tools/mkntpwd/mkntpwd.h +share/examples/samba/LDAP/smbldap-tools/mkntpwd/smbdes.c +share/examples/samba/LDAP/smbldap-tools/smbldap-groupadd.pl +share/examples/samba/LDAP/smbldap-tools/smbldap-groupdel.pl +share/examples/samba/LDAP/smbldap-tools/smbldap-groupmod.pl +share/examples/samba/LDAP/smbldap-tools/smbldap-groupshow.pl +share/examples/samba/LDAP/smbldap-tools/smbldap-migrate-accounts.pl +share/examples/samba/LDAP/smbldap-tools/smbldap-migrate-groups.pl +share/examples/samba/LDAP/smbldap-tools/smbldap-passwd.pl +share/examples/samba/LDAP/smbldap-tools/smbldap-populate.pl +share/examples/samba/LDAP/smbldap-tools/smbldap-tools.spec +share/examples/samba/LDAP/smbldap-tools/smbldap-useradd.pl +share/examples/samba/LDAP/smbldap-tools/smbldap-userdel.pl +share/examples/samba/LDAP/smbldap-tools/smbldap-usermod.pl +share/examples/samba/LDAP/smbldap-tools/smbldap-usershow.pl +share/examples/samba/LDAP/smbldap-tools/smbldap_conf.pm +share/examples/samba/LDAP/smbldap-tools/smbldap_tools.pm share/examples/samba/README -share/examples/samba/VFS/Makefile +%%BUILD_VFS%%share/examples/samba/VFS/Makefile +share/examples/samba/VFS/.cvsignore share/examples/samba/VFS/README share/examples/samba/VFS/audit.c -share/examples/samba/VFS/block/Makefile +%%BUILD_VFS%%share/examples/samba/VFS/audit.o +%%BUILD_VFS%%share/examples/samba/VFS/audit.so share/examples/samba/VFS/block/block.c +%%BUILD_VFS%%share/examples/samba/VFS/block/block.o +%%BUILD_VFS%%share/examples/samba/VFS/block/block.so +%%BUILD_VFS%%share/examples/samba/VFS/recycle/recycle.o +%%BUILD_VFS%%share/examples/samba/VFS/recycle/recycle.so +%%BUILD_VFS%%share/examples/samba/VFS/skel.o +%%BUILD_VFS%%share/examples/samba/VFS/skel.so share/examples/samba/VFS/block/samba-block.conf share/examples/samba/VFS/block/smb.conf -share/examples/samba/VFS/recycle.c +share/examples/samba/VFS/Makefile.in +share/examples/samba/VFS/configure +share/examples/samba/VFS/configure.in +share/examples/samba/VFS/recycle/README +share/examples/samba/VFS/recycle/cleanup_recycle.pl +share/examples/samba/VFS/recycle/recycle.c +share/examples/samba/VFS/recycle/recycle.conf share/examples/samba/VFS/skel.c share/examples/samba/appliance/Makefile share/examples/samba/appliance/README @@ -796,6 +853,8 @@ share/examples/samba/autofs/auto.a share/examples/samba/dce-dfs/README share/examples/samba/dce-dfs/smb.conf +share/examples/samba/libsmbclient/Makefile +share/examples/samba/libsmbclient/README share/examples/samba/libsmbclient/testsmbc.c share/examples/samba/libsmbclient/tree.c share/examples/samba/misc/extra_smbstatus @@ -810,6 +869,7 @@ share/examples/samba/printer-accounting/printcap share/examples/samba/printing/smbprint share/examples/samba/printing/smbprint.newer +share/examples/samba/printing/smbprint.old share/examples/samba/printing/smbprint.safer share/examples/samba/printing/smbprint.sysv share/examples/samba/simple/README @@ -843,8 +903,12 @@ share/examples/samba/validchars/readme share/examples/samba/validchars/validchr.c share/examples/samba/validchars/validchr.com +@dirrm share/examples/samba/LDAP/smbldap-tools/cgi +@dirrm share/examples/samba/LDAP/smbldap-tools/mkntpwd +@dirrm share/examples/samba/LDAP/smbldap-tools @dirrm share/examples/samba/LDAP @dirrm share/examples/samba/VFS/block +@dirrm share/examples/samba/VFS/recycle @dirrm share/examples/samba/VFS @dirrm share/examples/samba/appliance @dirrm share/examples/samba/autofs @@ -876,6 +940,7 @@ share/swat/help/Samba-LDAP-HOWTO.html share/swat/help/Samba-PDC-HOWTO.html share/swat/help/UNIX_INSTALL.html +share/swat/help/cups.html share/swat/help/findsmb.1.html share/swat/help/lmhosts.5.html share/swat/help/make_smbcodepage.1.html @@ -916,6 +981,7 @@ share/swat/images/shares.gif share/swat/images/status.gif share/swat/images/viewconfig.gif +share/swat/images/wizard.gif share/swat/include/footer.html share/swat/include/header.html share/swat/ja/help/Application_Serving.txt.html @@ -925,23 +991,22 @@ share/swat/ja/help/BrowsingFAQ/browsing02.html share/swat/ja/help/BrowsingFAQ/fig_1.html share/swat/ja/help/BrowsingFAQ/fig_2.html -share/swat/ja/help/BrowsingFAQ/fig_4.html -share/swat/ja/help/BrowsingFAQ/fig_5.html -share/swat/ja/help/BrowsingFAQ/fig_6.html -share/swat/ja/help/BrowsingFAQ/fig_7.html -share/swat/ja/help/BrowsingFAQ/fig_8.html share/swat/ja/help/BrowsingFAQ/image/fig1.png share/swat/ja/help/BrowsingFAQ/image/fig2.png -share/swat/ja/help/BrowsingFAQ/image/fig4s.png -share/swat/ja/help/BrowsingFAQ/image/fig5s.png -share/swat/ja/help/BrowsingFAQ/image/fig7s.png -share/swat/ja/help/BrowsingFAQ/image/fig8s.png +share/swat/ja/help/BrowsingFAQ/image/fig4.gif +share/swat/ja/help/BrowsingFAQ/image/fig5.gif +share/swat/ja/help/BrowsingFAQ/image/fig6.gif +share/swat/ja/help/BrowsingFAQ/image/fig7.gif +share/swat/ja/help/BrowsingFAQ/image/fig8.gif +share/swat/ja/help/BrowsingFAQ/image/return.png share/swat/ja/help/BrowsingFAQ/index.html share/swat/ja/help/CRLF-LF-Conversions.txt.html share/swat/ja/help/CVS_ACCESS.txt.html +share/swat/ja/help/CVS-Access.html share/swat/ja/help/DIAGNOSIS.txt.html share/swat/ja/help/DOMAIN.txt.html share/swat/ja/help/DOMAIN_MEMBER.txt.html +share/swat/ja/help/DOMAIN_MEMBER.html share/swat/ja/help/ENCRYPTION.txt.html share/swat/ja/help/File-Cacheing.txt.html share/swat/ja/help/HowToUseSamba2.2/fig05.gif @@ -1124,6 +1189,7 @@ share/swat/ja/images/shares.gif share/swat/ja/images/status.gif share/swat/ja/images/viewconfig.gif +share/swat/ja/images/wizard.gif share/swat/ja/include/footer.html share/swat/ja/include/header.JP1.html share/swat/ja/include/header.html @@ -1468,13 +1534,5 @@ @dirrm share/swat/using_samba/ja @dirrm share/swat/using_samba @exec /bin/cat %D/share/doc/samba/README.FreeBSD -@exec /bin/cat /etc/passwd | %D/bin/make_smbpasswd > %D/private/smbpasswd.default -@exec /bin/chmod 600 %D/private/smbpasswd* -@exec /bin/mkdir -p -m 1777 /var/spool/samba -@exec /bin/mkdir -p -m 500 %D/private -@exec /usr/sbin/chown -R root:wheel %D/private -@exec if [ ! -e %D/private/smbpasswd ]; then /bin/cp -p %D/private/smbpasswd.default %D/private/smbpasswd; fi -@unexec /bin/rm -rf /var/spool/samba @unexec /bin/rmdir /var/db/samba 2>/dev/null || true -@unexec /bin/rmdir %D/private 2>/dev/null || true -@unexec if cmp %D/private/smbpasswd.default %D/private/smbpasswd >/dev/null 2>&1; then /bin/rm -f %D/private/smbpasswd ; fi +%%LIBSAMBA%%@dirrm lib/samba >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 21:56:47 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 746B937B406; Sun, 23 Feb 2003 21:56:46 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11EE243F93; Sun, 23 Feb 2003 21:56:46 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (leeym@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O5ujNS050905; Sun, 23 Feb 2003 21:56:45 -0800 (PST) (envelope-from leeym@freefall.freebsd.org) Received: (from leeym@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O5ujTA050901; Sun, 23 Feb 2003 21:56:45 -0800 (PST) Date: Sun, 23 Feb 2003 21:56:45 -0800 (PST) From: Yen-Ming Lee Message-Id: <200302240556.h1O5ujTA050901@freefall.freebsd.org> To: lazykang@hotmail.com, leeym@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48485: Ports mail/imp contains a SQL injection vulnerability, Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Ports mail/imp contains a SQL injection vulnerability, State-Changed-From-To: open->closed State-Changed-By: leeym State-Changed-When: Sun Feb 23 21:56:45 PST 2003 State-Changed-Why: mail/imp was removed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48485 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 22: 0:31 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 78DDC37B401 for ; Sun, 23 Feb 2003 22:00:30 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 274D143F3F for ; Sun, 23 Feb 2003 22:00:30 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O60TNS051072 for ; Sun, 23 Feb 2003 22:00:29 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O60TEk051071; Sun, 23 Feb 2003 22:00:29 -0800 (PST) Date: Sun, 23 Feb 2003 22:00:29 -0800 (PST) Message-Id: <200302240600.h1O60TEk051071@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: parv Subject: Re: ports/45490: tightvnc leaks connections Reply-To: parv Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/45490; it has been noted by GNATS. From: parv To: freebsd-gnats-submit@freebsd.org Cc: scheidell@secnap.net Subject: Re: ports/45490: tightvnc leaks connections Date: Mon, 24 Feb 2003 00:56:05 -0500 As shown below, the problem of TightVNC leaking connection still persists in version 1.2.7 ... # which -a Xvnc vncserver /usr/X11R6/bin/Xvnc /usr/X11R6/bin/vncserver # vncserver -help TightVNC server version 1.2.7 ... # Xvnc -localhost :1 >dev/null 2>&1 & sockstat | fgrep Xvnc parv Xvnc 50874 0 tcp4 *:6001 *:* parv Xvnc 50874 3 tcp4 127.0.0.1:5901 *:* parv Xvnc 50874 1 stream /tmp/.X11-unix/X1 - parv -- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 22:10:19 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1719F37B401 for ; Sun, 23 Feb 2003 22:10:17 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 303AA43FEC for ; Sun, 23 Feb 2003 22:10:15 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O6AENS056854 for ; Sun, 23 Feb 2003 22:10:14 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O6AE9K056853; Sun, 23 Feb 2003 22:10:14 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9528237B401 for ; Sun, 23 Feb 2003 22:06:00 -0800 (PST) Received: from Fluffy.Khv.RU (fluffy.khv.ru [212.19.26.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3EBBE43FA3 for ; Sun, 23 Feb 2003 22:05:52 -0800 (PST) (envelope-from redfox@Fluffy.Khv.RU) Received: from Fluffy.Khv.RU (localhost [127.0.0.1]) by Fluffy.Khv.RU (8.12.7/8.12.7/Fluffy/5.2) with ESMTP id h1O64qF5044001 for ; Mon, 24 Feb 2003 16:04:52 +1000 (VLAT) (envelope-from redfox@Fluffy.Khv.RU) Received: (from redfox@localhost) by Fluffy.Khv.RU (8.12.7/8.12.7/Fluffy/Submit/1.1) id h1O64pVf044000; Mon, 24 Feb 2003 16:04:51 +1000 (VLAT) (envelope-from redfox) Message-Id: <200302240604.h1O64pVf044000@Fluffy.Khv.RU> Date: Mon, 24 Feb 2003 16:04:51 +1000 (VLAT) From: Dmitry Panov Reply-To: Dmitry Panov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48617: Switch to GNOMENG for x11-toolkits/gtk-xfce-engine Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48617 >Category: ports >Synopsis: Switch to GNOMENG for x11-toolkits/gtk-xfce-engine >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Feb 23 22:10:13 PST 2003 >Closed-Date: >Last-Modified: >Originator: Dmitry Panov >Release: FreeBSD 4.7-STABLE i386 >Organization: Twilight Zone >Environment: System: FreeBSD Fluffy.Khv.RU 4.7-STABLE FreeBSD 4.7-STABLE #0: Sat Feb 15 16:28:04 VLAT 2003 root@Meow.Fluffy.Khv.RU:/usr/obj/usr/src/sys/FLUFFY i386 >Description: >How-To-Repeat: >Fix: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/x11-toolkits/gtk-xfce-engine/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- Makefile 23 Feb 2003 10:51:24 -0000 1.4 +++ Makefile 24 Feb 2003 06:00:47 -0000 @@ -21,7 +21,8 @@ WRKSRC= ${WRKDIR}/gtk-xfce-engine-${PORTVERSION} USE_GMAKE= yes -USE_GTK= yes +USE_GNOMENG= yes +USE_GNOME= gnomehack USE_LIBTOOL= yes USE_X_PREFIX= yes >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 22:17:13 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1702037B401; Sun, 23 Feb 2003 22:17:13 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7457F43F3F; Sun, 23 Feb 2003 22:17:12 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O6HCNS059247; Sun, 23 Feb 2003 22:17:12 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O6HCmJ059243; Sun, 23 Feb 2003 22:17:12 -0800 (PST) Date: Sun, 23 Feb 2003 22:17:12 -0800 (PST) From: Edwin Groothuis Message-Id: <200302240617.h1O6HCmJ059243@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, olgeni@FreeBSD.org Subject: Re: ports/48617: Switch to GNOMENG for x11-toolkits/gtk-xfce-engine Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Switch to GNOMENG for x11-toolkits/gtk-xfce-engine Responsible-Changed-From-To: freebsd-ports-bugs->olgeni Responsible-Changed-By: edwin Responsible-Changed-When: Sun Feb 23 22:17:02 PST 2003 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=48617 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 22:39: 3 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F2E737B401; Sun, 23 Feb 2003 22:39:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5AA443FA3; Sun, 23 Feb 2003 22:39:02 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O6d2NS063646; Sun, 23 Feb 2003 22:39:02 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O6d2O2063642; Sun, 23 Feb 2003 22:39:02 -0800 (PST) Date: Sun, 23 Feb 2003 22:39:02 -0800 (PST) From: Edwin Groothuis Message-Id: <200302240639.h1O6d2O2063642@freefall.freebsd.org> To: sheepkiller@cotds.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48527: [update orphan port] : net/dhcpconf Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [update orphan port] : net/dhcpconf State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 22:38:58 PST 2003 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48527 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 22:40:56 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1073B37B401; Sun, 23 Feb 2003 22:40:56 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7AFC43FBF; Sun, 23 Feb 2003 22:40:55 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O6etNS064861; Sun, 23 Feb 2003 22:40:55 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O6etic064839; Sun, 23 Feb 2003 22:40:55 -0800 (PST) Date: Sun, 23 Feb 2003 22:40:55 -0800 (PST) From: Edwin Groothuis Message-Id: <200302240640.h1O6etic064839@freefall.freebsd.org> To: sheepkiller@cultdeadsheep.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48528: [update orphan port] : print/guitartex Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [update orphan port] : print/guitartex State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 22:40:49 PST 2003 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48528 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 22:47:51 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 191BA37B401; Sun, 23 Feb 2003 22:47:51 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFEBD43F3F; Sun, 23 Feb 2003 22:47:50 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O6loNS066043; Sun, 23 Feb 2003 22:47:50 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O6lo09066039; Sun, 23 Feb 2003 22:47:50 -0800 (PST) Date: Sun, 23 Feb 2003 22:47:50 -0800 (PST) From: Edwin Groothuis Message-Id: <200302240647.h1O6lo09066039@freefall.freebsd.org> To: sheepkiller@cultdeadsheep.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48529: [update orphan port] : games/xbill Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [update orphan port] : games/xbill State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 22:47:47 PST 2003 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48529 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 22:49:11 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C802A37B407; Sun, 23 Feb 2003 22:49:10 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAB1B43F93; Sun, 23 Feb 2003 22:49:09 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O6n9NS066105; Sun, 23 Feb 2003 22:49:09 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O6n9tt066101; Sun, 23 Feb 2003 22:49:09 -0800 (PST) Date: Sun, 23 Feb 2003 22:49:09 -0800 (PST) From: Edwin Groothuis Message-Id: <200302240649.h1O6n9tt066101@freefall.freebsd.org> To: sheepkiller@cultdeadsheep.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48530: [update orphan port] : mail/cvsmail Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [update orphan port] : mail/cvsmail State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 22:49:03 PST 2003 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48530 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 22:50: 8 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 35A3837B401 for ; Sun, 23 Feb 2003 22:50:07 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 977D243FB1 for ; Sun, 23 Feb 2003 22:50:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O6o5NS066184 for ; Sun, 23 Feb 2003 22:50:05 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O6o544066183; Sun, 23 Feb 2003 22:50:05 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB6CA37B405 for ; Sun, 23 Feb 2003 22:47:39 -0800 (PST) Received: from Fluffy.Khv.RU (fluffy.khv.ru [212.19.26.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 15B5743FBF for ; Sun, 23 Feb 2003 22:47:35 -0800 (PST) (envelope-from redfox@Fluffy.Khv.RU) Received: from Fluffy.Khv.RU (localhost [127.0.0.1]) by Fluffy.Khv.RU (8.12.7/8.12.7/Fluffy/5.2) with ESMTP id h1O6kKF5050223 for ; Mon, 24 Feb 2003 16:46:20 +1000 (VLAT) (envelope-from redfox@Fluffy.Khv.RU) Received: (from redfox@localhost) by Fluffy.Khv.RU (8.12.7/8.12.7/Fluffy/Submit/1.1) id h1O6kJVO050222; Mon, 24 Feb 2003 16:46:19 +1000 (VLAT) (envelope-from redfox) Message-Id: <200302240646.h1O6kJVO050222@Fluffy.Khv.RU> Date: Mon, 24 Feb 2003 16:46:19 +1000 (VLAT) From: Dmitry Panov Reply-To: Dmitry Panov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48618: devel/gnomevfs fails to build Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48618 >Category: ports >Synopsis: devel/gnomevfs fails to build >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Feb 23 22:50:05 PST 2003 >Closed-Date: >Last-Modified: >Originator: Dmitry Panov >Release: FreeBSD 4.7-STABLE i386 >Organization: Twilight Zone >Environment: System: FreeBSD Fluffy.Khv.RU 4.7-STABLE FreeBSD 4.7-STABLE #0: Sat Feb 15 16:28:04 VLAT 2003 root@Meow.Fluffy.Khv.RU:/usr/obj/usr/src/sys/FLUFFY i386 >Description: devel/gnomevfs fails to build if cdparanoia present on system. >How-To-Repeat: install cdparanoia; cd ${PORTSDIR}/devel/gnomevfs; make >Fix: Same as devel/gnomevfs2, patch-modules_cdda-method.c work for this. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 22:50:15 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B300137B401; Sun, 23 Feb 2003 22:50:14 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6776843FAF; Sun, 23 Feb 2003 22:50:14 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from freefall.freebsd.org (nork@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O6oENS066384; Sun, 23 Feb 2003 22:50:14 -0800 (PST) (envelope-from nork@freefall.freebsd.org) Received: (from nork@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O6oDo3066378; Sun, 23 Feb 2003 22:50:13 -0800 (PST) Date: Sun, 23 Feb 2003 22:50:13 -0800 (PST) From: Norikatsu Shigemura Message-Id: <200302240650.h1O6oDo3066378@freefall.freebsd.org> To: nakaji@jp.freebsd.org, nork@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, nork@FreeBSD.org Subject: Re: ports/48615: japanese/samba updated to 2.2.7a-ja-1.0 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: japanese/samba updated to 2.2.7a-ja-1.0 State-Changed-From-To: open->feedback State-Changed-By: nork State-Changed-When: Sun Feb 23 22:40:26 PST 2003 State-Changed-Why: Please check between your environment and ports official. There are some diff on only your environment, and no script in this PR. What files/patch-aclocal.m4? What files/patch-nsswitch:pam_winbind.h? Where scripts/configure.samba? And rejected patch to files/smb.conf.default. Quite recently, net/openldap2 was moved to net/openldap20. Toiukotode, Sashimodoshi. Yoroshiku! Responsible-Changed-From-To: freebsd-ports-bugs->nork Responsible-Changed-By: nork Responsible-Changed-When: Sun Feb 23 22:40:26 PST 2003 Responsible-Changed-Why: I'll handle this. http://www.freebsd.org/cgi/query-pr.cgi?pr=48615 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 23: 0:26 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE0DF37B48E; Sun, 23 Feb 2003 23:00:24 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D4F043FB1; Sun, 23 Feb 2003 23:00:24 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O70ONS068448; Sun, 23 Feb 2003 23:00:24 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O70OFr068444; Sun, 23 Feb 2003 23:00:24 -0800 (PST) Date: Sun, 23 Feb 2003 23:00:24 -0800 (PST) From: Edwin Groothuis Message-Id: <200302240700.h1O70OFr068444@freefall.freebsd.org> To: ryan@wonko.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48507: Update www/notftp to 1.3.1 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update www/notftp to 1.3.1 State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 23:00:20 PST 2003 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48507 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 23: 2:51 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8358537B401; Sun, 23 Feb 2003 23:02:50 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D940D43FBF; Sun, 23 Feb 2003 23:02:49 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O72nNS070427; Sun, 23 Feb 2003 23:02:49 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O72nJq070423; Sun, 23 Feb 2003 23:02:49 -0800 (PST) Date: Sun, 23 Feb 2003 23:02:49 -0800 (PST) From: Edwin Groothuis Message-Id: <200302240702.h1O72nJq070423@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org Subject: Re: ports/48618: devel/gnomevfs fails to build Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: devel/gnomevfs fails to build Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Sun Feb 23 23:02:42 PST 2003 Responsible-Changed-Why: Over to maintainerns. http://www.freebsd.org/cgi/query-pr.cgi?pr=48618 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 23:10:12 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F2F337B401 for ; Sun, 23 Feb 2003 23:10:11 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC60843F85 for ; Sun, 23 Feb 2003 23:10:10 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O7AANS074096 for ; Sun, 23 Feb 2003 23:10:10 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O7AAUQ074095; Sun, 23 Feb 2003 23:10:10 -0800 (PST) Date: Sun, 23 Feb 2003 23:10:10 -0800 (PST) Message-Id: <200302240710.h1O7AAUQ074095@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/48507: www/notftp Reply-To: Edwin Groothuis Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48507; it has been noted by GNATS. From: Edwin Groothuis To: freebsd-gnats-submit@FreeBSD.org, sheepkiller@cultdeadsheep.org Cc: Subject: Re: ports/48507: www/notftp Date: Mon, 24 Feb 2003 18:01:35 +1100 If you really like I can move it to ports/ftp, but it will have some administrative redtape. Edwin -- Edwin Groothuis edwin@freebsd.org http://www.mavetju.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 23:30:15 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 74AC937B401 for ; Sun, 23 Feb 2003 23:30:12 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A09743FDF for ; Sun, 23 Feb 2003 23:30:11 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O7UANS078676 for ; Sun, 23 Feb 2003 23:30:10 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O7UAZN078675; Sun, 23 Feb 2003 23:30:10 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9685E37B401 for ; Sun, 23 Feb 2003 23:29:04 -0800 (PST) Received: from postoffice.aims.com.au (eth0.lnk.aims.com.au [203.31.73.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5493743F75 for ; Sun, 23 Feb 2003 23:29:01 -0800 (PST) (envelope-from chris@aims.com.au) Received: from ait0fd01.aims.private (ait0fd01.aims.private [192.168.10.254]) by postoffice.aims.com.au with ESMTP id h1O7SojI075179 for ; Mon, 24 Feb 2003 18:28:50 +1100 (EST) (envelope-from chris@aims.com.au) Received: from ait0fd01.aims.private (localhost [127.0.0.1]) by ait0fd01.aims.private (8.12.6/8.12.6) with ESMTP id h1O7SnM6078924 for ; Mon, 24 Feb 2003 18:28:49 +1100 (EST) (envelope-from chris@aims.com.au) Received: (from root@localhost) by ait0fd01.aims.private (8.12.6/8.12.6/Submit) id h1O7Snvf078923; Mon, 24 Feb 2003 18:28:49 +1100 (EST) Message-Id: <200302240728.h1O7Snvf078923@ait0fd01.aims.private> Date: Mon, 24 Feb 2003 18:28:49 +1100 (EST) From: Chris Knight Reply-To: Chris Knight To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48620: www/eddie, net/rdesktop, net/rdesktop-devel: Release Maintainership Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48620 >Category: ports >Synopsis: www/eddie, net/rdesktop, net/rdesktop-devel: Release Maintainership >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Feb 23 23:30:10 PST 2003 >Closed-Date: >Last-Modified: >Originator: Chris Knight >Release: FreeBSD 4.7-STABLE i386 >Organization: AIMS Independent Computer Professionals >Environment: System: FreeBSD ait0fd01.aims.private 4.7-STABLE FreeBSD 4.7-STABLE #0: Thu Jan 23 20:54:29 EST 2003 root@ait0fd01.aims.private:/var/obj/usr/src/sys/THINKPAD i386 >Description: I'm finding that I don't have the time to spend on these ports that I would like. Release maintainership in the hope that someone will do a better job than I. The easiest fix for eddie would be for lang/erlang to be repo-copied to lang/erlang8 and diff'ed back to version 8.1, then change the dependency for eddie. Left as an exercise for someone else with more time. >How-To-Repeat: N/A >Fix: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/www/eddie/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- Makefile 21 Feb 2003 14:01:15 -0000 1.6 +++ Makefile 24 Feb 2003 07:17:25 -0000 @@ -12,7 +12,7 @@ MASTER_SITES= http://www.aims.com.au/chris/ DISTNAME= eddie-1.5.1-20020619 -MAINTAINER= chris@aims.com.au +MAINTAINER= ports@freebsd.org COMMENT= Tool for building fault-tolerant redundant WWW servers BUILD_DEPENDS= erlc:${PORTSDIR}/lang/erlang Index: Makefile =================================================================== RCS file: /home/ncvs/ports/net/rdesktop/Makefile,v retrieving revision 1.19 diff -u -r1.19 Makefile --- Makefile 21 Feb 2003 13:15:01 -0000 1.19 +++ Makefile 24 Feb 2003 07:18:27 -0000 @@ -12,7 +12,7 @@ MASTER_SITE_SUBDIR= ${PORTNAME} DISTNAME= rdesktop-1.2.0 -MAINTAINER= chris@aims.com.au +MAINTAINER= ports@freebsd.org COMMENT= RDP client for Windows NT Terminal Server USE_XLIB= yes Index: Makefile =================================================================== RCS file: /home/ncvs/ports/net/rdesktop-devel/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- Makefile 21 Feb 2003 13:15:00 -0000 1.14 +++ Makefile 24 Feb 2003 07:19:02 -0000 @@ -12,7 +12,7 @@ MASTER_SITE_SUBDIR= ${PORTNAME} DISTNAME= rdesktop-1.2beta1 -MAINTAINER= chris@aims.com.au +MAINTAINER= ports@freebsd.org COMMENT= RDP client for Windows NT Terminal Server USE_XLIB= yes >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 23:41: 4 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B5D8D37B401; Sun, 23 Feb 2003 23:41:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 568B843FB1; Sun, 23 Feb 2003 23:41:03 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O7f3NS081922; Sun, 23 Feb 2003 23:41:03 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O7f2ix081894; Sun, 23 Feb 2003 23:41:02 -0800 (PST) Date: Sun, 23 Feb 2003 23:41:02 -0800 (PST) From: Edwin Groothuis Message-Id: <200302240741.h1O7f2ix081894@freefall.freebsd.org> To: erwin@lansing.dk, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48537: fix www/p5-CGI-modules not to install patch cruft Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: fix www/p5-CGI-modules not to install patch cruft State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 23:40:57 PST 2003 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48537 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 23:48:19 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E33DA37B406; Sun, 23 Feb 2003 23:48:18 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E07FB43F3F; Sun, 23 Feb 2003 23:48:16 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O7mGNS084454; Sun, 23 Feb 2003 23:48:16 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O7mGD3084450; Sun, 23 Feb 2003 23:48:16 -0800 (PST) Date: Sun, 23 Feb 2003 23:48:16 -0800 (PST) From: Edwin Groothuis Message-Id: <200302240748.h1O7mGD3084450@freefall.freebsd.org> To: thierry@pompo.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48549: www/tidy-devel: upgrading to 030220 + new port www/tidy-lib. Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: www/tidy-devel: upgrading to 030220 + new port www/tidy-lib. State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 23:48:11 PST 2003 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48549 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 23:53: 4 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B99837B401; Sun, 23 Feb 2003 23:53:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E2D943FDD; Sun, 23 Feb 2003 23:53:02 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O7r2NS088379; Sun, 23 Feb 2003 23:53:02 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O7r2Ex088375; Sun, 23 Feb 2003 23:53:02 -0800 (PST) Date: Sun, 23 Feb 2003 23:53:02 -0800 (PST) From: Edwin Groothuis Message-Id: <200302240753.h1O7r2Ex088375@freefall.freebsd.org> To: chris@aims.com.au, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48620: www/eddie, net/rdesktop, net/rdesktop-devel: Release Maintainership Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: www/eddie, net/rdesktop, net/rdesktop-devel: Release Maintainership State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 23:52:50 PST 2003 State-Changed-Why: Commited, thanks for your support! http://www.freebsd.org/cgi/query-pr.cgi?pr=48620 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sun Feb 23 23:59: 7 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D04BE37B401; Sun, 23 Feb 2003 23:59:06 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7177843F85; Sun, 23 Feb 2003 23:59:06 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O7x6NS090601; Sun, 23 Feb 2003 23:59:06 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O7x6Z9090597; Sun, 23 Feb 2003 23:59:06 -0800 (PST) Date: Sun, 23 Feb 2003 23:59:06 -0800 (PST) From: Edwin Groothuis Message-Id: <200302240759.h1O7x6Z9090597@freefall.freebsd.org> To: h.eichmann@gmx.de, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48477: port 'pear-HTML_Select' breaks HTML port list Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: port 'pear-HTML_Select' breaks HTML port list State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Sun Feb 23 23:58:22 PST 2003 State-Changed-Why: Problem should be gone after todays commit of devel/evel/pear-HTML_SELECT_Common http://www.freebsd.org/cgi/query-pr.cgi?pr=48477 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 0:41:25 2003 Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 29E1C37B401; Mon, 24 Feb 2003 00:40:31 -0800 (PST) Received: from boggy.acest.tutrp.tut.ac.jp (boggy.acest.tutrp.tut.ac.jp [133.15.67.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFCC543FCB; Mon, 24 Feb 2003 00:40:10 -0800 (PST) (envelope-from nakaji@tutrp.tut.ac.jp) Received: from boggy.acest.tutrp.tut.ac.jp (localhost [IPv6:::1]) by boggy.acest.tutrp.tut.ac.jp (8.12.6/8.12.6) with ESMTP id h1O8e5tt060788; Mon, 24 Feb 2003 17:40:07 +0900 (JST) (envelope-from nakaji@tutrp.tut.ac.jp) To: Norikatsu Shigemura Cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48615: japanese/samba updated to 2.2.7a-ja-1.0 MIME-Version: 1.0 (generated by SEMI 1.14.5 - "Awara-Onsen") Content-Type: text/plain; charset=US-ASCII From: NAKAJI Hiroyuki Date: Mon, 24 Feb 2003 17:40:05 +0900 In-Reply-To: <200302240650.h1O6oDo3066378@freefall.freebsd.org> (Norikatsu Shigemura's message of "Sun, 23 Feb 2003 22:50:13 -0800 (PST)") Message-ID: <87isvaxeai.fsf@boggy.acest.tutrp.tut.ac.jp> User-Agent: T-gnus/6.15.15 (based on Oort Gnus v0.15) SEMI/1.14.5 (Awara-Onsen) FLIM/1.14.5 (Demachiyanagi) APEL/10.4 Emacs/21.2 (i386--freebsd) MULE/5.0 (SAKAKI) References: <200302240650.h1O6oDo3066378@freefall.freebsd.org> X-Virus-Scanned: by AMaViS - amavis-milter (http://www.amavis.org/) Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >>>>> In <200302240650.h1O6oDo3066378@freefall.freebsd.org> >>>>> Norikatsu Shigemura wrote: > State-Changed-Why: > Please check between your environment and ports official. > There are some diff on only your environment, and no script > in this PR. Sorry. I forgot that I had modified japanese/samba in real world. I updated /usr/ports again: rm -rf /usr/ports/japanese/samba/* cd /usr/ports make update And then made diff again: begin 644 ja-samba.diff M9&EF9B`M=7).("UX($-64R`O=7-R+W!O65S"BM54T5?1TU!2T4]"7EE65S"BLN96YD M:68**PHK+FEF(&5X:7-TU=22T1)4E!2149)6'TD>RY#55)$25)]+TUA M:V5F:6QE+FEN8RD**RYI;F-L=61E("(D>U=22T1)4E!2149)6'TD>RY#55)$ M25)]+TUA:V5F:6QE+FEN8R(**RYE;F1I9@HK"BM!541)5#\]"0DB0&-O;6UE M;G0@(@HK4D5#64-,13\]"2)`8V]M;65N="`B"BM,24)304U"03\]"2)`8V]M M;65N="`B"BM"54E,1%]61E,_/0DB0&-O;6UE;G0@(@HK3$1!4%-!33\]"2)` M8V]M;65N="`B"BM724Y"24Y$/ST)(D!C;VUM96YT("(**PHK+FEF(&1E9FEN M960H5TE42%]!541)5"D**T%51$E4/0D)(B(**TQ)0E-!34)!/0DB(@HK0E5) M3$1?5D93/0DB(@HK+F5N9&EF"BL**RYI9B!D969I;F5D*%=)5$A?4D5#64-, M12D**U)%0UE#3$4]"2(B"BM,24)304U"03T)(B(**T)524Q$7U9&4ST)(B(* M*RYE;F1I9@HK"B!605)$25(]"0DO=F%R"B!304U"05]34$]/3#T))'M605)$ M25)]+W-P;V]L+W-A;6)A"B!304U"05],3T=$25(]"21[5D%21$E2?2]L;V<* M(%-!34)!7U!2259!5$4]"21[4%)%1DE8?2]PU!2149)6'TO971C"BM304U"05]61E-$25(]"21[4%)%1DE8?2]L M:6(O65S"BU'3E5?0T].1DE'55)%/0EY97,*+55315]!551/0T].1CT)>65S"BU5 M4T5?1TU!2T4]"7EE'0@7`H@"0DM+6QI8F1IU-! M34)!7T-/3D9$25)](%P*(`D)+2UL;V-A;'-T871E9&ER/21[5D%21$E2?2`M M+7=I=&@MU!2149)6'TOTQ/0T%,0D%317TO:6YC;'5D92!<"BL)"4Q$1DQ!1U,]+4PD>TQ/ M0T%,0D%317TO;&EB"BM,1$%04T%-/0DB(@HK+F5N9&EF"BL**RYI9B`A9&5F M:6YE9"A7251(3U547T-54%,I"BM7251(7T-54%,]"7EETQ/0T%,0D%317TO:6YC;'5D92!< M"BL)"4Q$1DQ!1U,]+4PD>TQ/0T%,0D%317TO;&EB"BLN96QS90HK0T].1DE' M55)%7T%21U,K/2`M+61ITM20C5?2$]-17T*("YE;F1I9@H@ M"BTN:68@9&5F:6YE9"A54T5?3U!%3E-33"D*+4-/3D9)1U5215]!4D=3*ST) M+2UW:71H+7-S;`HK+FEF(&1E9FEN960H5TE42%]!0TQ?4U504$]25"D**RYI M9B`D>T]35D524TE/3GT@/"`U,#`P,3@**T)23TM%3CT)(D%#3"!S=7!P;W)T M(')E<75IT1)4U1.04U%?2]S M;W5R8V4*0$`@+38Y+#$X("LQ-C@L-34@0$`*(`D)<&1B961I="XX"B!-04Y, M04Y'/0DB(B!J80H@"BM3141?4$Q)4U0]"21[4T5$?2`M92`GU!2149) M6'TA)40A9R<**PHK4$Q)4U1?4U5"/2`@("`@($%51$E4/21[055$251](%P* M*PD)4D5#64-,13TD>U)%0UE#3$5](%P**PD)3$E"4T%-0D$])'M,24)304U" M07T@7`HK"0E"54E,1%]61E,])'M"54E,1%]61E-](%P**PD)3$1!4%-!33TD M>TQ$05!304U](%P**PD)5TE.0DE.1#TD>U=)3D))3D1]"BL**W!R92UB=6EL M9#H**PDD>U)-?2`M9G(@)'M74DM34D-]+VEN8VQU9&4O<')O=&\N:`HK"2AC M9"`D>U=22U-20WT@)B8@;6%K92!PU-%1'T@)W,Z+W5SU!2149)6'TZ9R<@)'M&24Q%4T1)4GTO MU=22T1)4GTOU=22T1)4GTO)'M$25-43D%-17TO97AA;7!L97,O M5D93.R!<"BL)"2XO8V]N9FEG=7)E.R1[1TU!2T5].R!<"BL)"21[4DU]("UF M(&-O;F9I9RYC86-H92!C;VYF:6U-!34)!7U9& M4T1)4GT@?'P@)'M-2T1)4GT@)'M304U"05]61E-$25)]"BLN:68@9&5F:6YE M9"A7251(7T%51$E4*0HK"21[24Y35$%,3%]04D]'4D%-?2`D>U=22T1)4GTO M)'M$25-43D%-17TO97AA;7!L97,O5D93+V%U9&ET+G-O("1[4T%-0D%?5D93 M1$E2?0HK+F5N9&EF"BLN:68@9&5F:6YE9"A7251(7U)%0UE#3$4I"BL))'M) M3E-404Q,7U!23T=204U]("1[5U)+1$E2?2\D>T1)4U1.04U%?2]E>&%M<&QE M6-L92]R96-Y8VQE+G-O("1[4T%-0D%?5D931$E2?0HK+F5N M9&EF"BLN96YD:68**PDD>TU+1$E2?2`D>U!2149)6'TOU!2149)6'TOU!2149)6'TO M7!E(&0@+6YA;64@(BYL:6)S M(B!\("1[6$%21U-]("1[4DU]("UR"BL)0&9O6-L92]R96-Y8VQE+F\@6-L92]R96-Y8VQE+G-O M('-K96PN;R!S:V5L+G-O(#L@9&\@7`HK"0DD>U)-?2`D>U!2149)6'TOV9I;&5](#L@7`HK"61O;F4**RYE M;F1I9@H@"4`D>U-44DE07T--1'T@)'M04D5&25A]+W-B:6XOU!2 M149)6'TOU!2149)6'TO8FEN+W1EU!2149)6'TO8FEN+VUA:V5?<')I;G1EU-4 M4DE07T--1'T@)'M04D5&25A]+V)I;B]S;6)P87-S=V0@)'M04D5&25A]+V)I M;B]M86ME7W-M8F-O9&5P86=E("1[4%)%1DE8?2]B:6XOT1)4U1.04U%?2]E>&%M<&QE MU1!4GT@("TM97AC;'5D92`N8W9S:6=N;W)E("UC9B`M("X@ M?"`D>U1!4GT@+7AF("T@+4,@)'M04D5&25A]+W-H87)E+V5X86UP;&5S+W-A M;6)A"BL)"21[5$%2?2`@+2UE>&-L=61E("YC=G-I9VYO&-L=61E M("YL:6)S("UC9B`M("X@?"`D>U1!4GT@+7AF("T@+4,@)'M04D5&25A]+W-H M87)E+V5X86UP;&5S+W-A;6)A"B`)0&EF(%L@(2`M9B`D>U-405)455!?4T-2 M25!4?2!=.R!T:&5N"0D)"5P*(`D))'M%0TA/?2`B26YS=&%L;&EN9R`D>U-4 M05)455!?4T-225!4?2!S=&%R='5P(&9I;&4N(B`["5P*(`D))'M)3E-404Q, M7U-#4DE05'T@)'M74DM$25)]+W-A;6)A+G-H+G-A;7!L92`)"5P*0$`@+3$P M-2PV("LR-#$L,38@0$`*(`H@"4`D>T-(3U=.?2!R;V]T.G=H965L("1[4%)% M1DE8?2]B:6XOU!2149)6'TO M8FEN+W-M8G!AU1%4U1]("UD M("1[4T%-0D%?4U!/3TQ]('Q\("1[34M$25)]("1[4T%-0D%?4U!/3TQ]("8F M("1[0TA-3T1](#$W-S<@)'M304U"05]34$]/3'TB('P@)'M3141?4$Q)4U1] M(#X^("1[5$U04$Q)4U1]"BL))'M%0TA/7T--1'T@(D!U;F5X96,@)'M237T@ M+7)F("1[4T%-0D%?4U!/3TQ](B!\("1[4T5$7U!,25-4?2`^/B`D>U1-4%!, M25-4?0HK"21[14-(3U]#341](")`97AE8R`D>TU+1$E2?2`M;2`U,#`@)'M3 M04U"05]04DE6051%?2(@?"`D>U-%1%]03$E35'T@/CX@)'M435!03$E35'T* M*PDD>T5#2$]?0TU$?2`B0&5X96,@)'M#2$]73GT@U-! M34)!7U!2259!5$5](B!\("1[4T5$7U!,25-4?2`^/B`D>U1-4%!,25-4?0HK M"21[14-(3U]#341](")`97AE8R`D>T-!5'T@+V5T8R]P87-S=V0@?"`D>T=2 M15!]("UV(")>(R(@?"`D>U!2149)6'TO8FEN+VUA:V5?U-%1%]0 M3$E35'T@/CX@)'M435!03$E35'T**PDD>T5#2$]?0TU$?2`B0&5X96,@)'M4 M15-4?2`M92`D>U-!34)!7U!2259!5$5]+W-M8G!AT-0?2`M M<"`D>U-!34)!7U!2259!5$5]+W-M8G!AU1-4%!, M25-4?0HK"21[14-(3U]#341](")`97AE8R`D>T-(34]$?2`V,#`@)'M304U" M05]04DE6051%?2]S;6)P87-S=V0J(B!\("1[4T5$7U!,25-4?2`^/B`D>U1- M4%!,25-4?0HK"21[14-(3U]#341](")`=6YE>&5C("]UU-!34)!7U!2259!5$5]+W-M8G!AU-!34)!7U!2259!5$5] M+W-M8G!AU-%1%]03$E35'T@/CX@)'M435!03$E35'T**PDD>T5# M2$]?0TU$?2`B0'5N97AE8R`D>U)-?2`M9B`D>U-!34)!7U!2259!5$5]+W-M M8G!AU1-4%!,25-4 M?0HK"21[14-(3U]#341](")`=6YE>&5C("1[4DU$25)]("1[4T%-0D%?4%)) M5D%417T@?'P@*"1[14-(3U]#341](%PB5V%R;FEN9SH@268@>6]U('=I;&P@ M*DY/5"H@=7-E('1H:7,@<&%C:V%G92!A;GEM;W)E+%PB("8F("1[14-(3U]# M341](%PB("`@("`@("`@<&QE87-E(')E;6]V92`D>U-!34)!7U!2259!5$5] M(&%N9"!I=',@8V]N=&5N=',@;6%N=6%L;'DN7"(I(B!\("1[4T5$7U!,25-4 M?2`^/B`D>U1-4%!,25-4?0H@"B`N:68@(61E9FEN960H3D]03U)41$]#4RD* M(`E`)'M-2T1)4GT@)'M04D5&25A]+W-H87)E+V1O8R]S86UB80I`0"`M,3(U M+#4@*S(W,2PV($!`"B`)0&EF(%L@+68@)'M605)$25)]+W-P;V]L+VQO8VLO M8G)O=W-E+F1A="!=.R!T:&5N(%P*(`D))'M237T@+68@)'M605)$25)]+W-P M;V]L+VQO8VLO8G)O=W-E+F1A=#L@7`H@"69I"BL)0"1[0T%4?2`D>U!+1TU% M4U-!1T5]"B`*+2YI;F-L=61E(#QB2`@.2`P,CHR.3HR,"`R,#`R"BU`0"`M-#DX+#D@*S0Y."PR,R!` M0`HK+2TM(&-O;F9I9W5R92YI;BYO6TO9&QE65S*0HM("`@("!!0U]-4T=? M4D5354Q4*'EEREKZ7(I>JDR[#E[:6XI:>E MKZ7(I,ZEX:7SI="DSJ3?I*S-^,W1LL3'O:3*MJ;-K:3.SN.DQZ2YH:,*(",@ MI+.DSK:FS:VD\LWXS=&DN:3KI,NDSR!PDK,3J MM<&DM:3LI,:DI*3KR:S-UZ2LI**DZ@H@(R"DWJ2YH:,@"F1I9F8@+75R3B`M M>"!#5E,@+W5S2]7:6XY-5]0;&%I;E!A'0*+7-H M87)E+V1O8R]S86UB82]D;V-B;V]K+V1B'0*+7-H87)E M+V1O8R]S86UB82]D;V-B;V]K+V1B'0*+7-H87)E M+V1O8R]S86UB82]D;V-B;V]K+V1B2YS9VUL"BUS:&%R92]D;V,O%]P'0*+7-H87)E+V1O8R]S86UB82]F M87$O'1A+F=I9@HM"YH=&UL"BUS:&%R92]D;V,O M"YH=&UL"BUS:&%R92]D;V,O"YH=&UL"BUS:&%R92]D M;V,O"YH M=&UL"BUS:&%R92]D;V,O'1D;V-S+T-23$8M3$8M0V]N=F5R'0*+7-H M87)E+V1O8R]S86UB82]J82]T97AT9&]C'1D;V-S+T1/34%)3E]-14U"15(N='AT"BUS:&%R92]D M;V,O'0*+7-H87)E+V1O M8R]S86UB82]J82]T97AT9&]C'1D;V-S+TUA8VEN=&]S:%]#;&EE;G1S+G1X=`HM M'1D;V-S+TY4+4=U97-T+4%C8V5S'0*+7-H87)E+V1O8R]S86UB82]J82]T97AT9&]C'0* M+7-H87)E+V1O8R]S86UB82]J82]T97AT9&]C'1D;V-S+U!224Y415)?1%))5D52+G1X=`HM M'1D;V-S+U!23T9)3$53+G1X=`HM'1D;V-S+U!A'0*+7-H87)E M+V1O8R]S86UB82]J82]T97AT9&]C'1D;V-S+U5.25@M4TU"+G1X=`HM'1D;V-S+U5.25A?24Y35$%,3"YT>'0*+7-H87)E+V1O8R]S86UB M82]J82]T97AT9&]C'0*+7-H87)E+V1O8R]S86UB82]J82]T M97AT9&]C'0*+7-H87)E+V1O8R]S86UB82]J82]T97AT9&]C M'1D;V-S+VAE M861E6\*+7-H87)E+V1O8R]S86UB82]J82]Y;V1L9&]C6\*+7-H87)E+V1O8R]S86UB82]J82]Y;V1L9&]C6]D;&1O M8W,O6\*+7-H87)E+V1O8R]S86UB82]M86YP86=E'0*+7-H87)E+V1O8R]S86UB82]T M97AT9&]C'0*+7-H87)E+V1O8R]S86UB82]T97AT9&]C'1D M;V-S+T1)04=.3U-)4RYT>'0*+7-H87)E+V1O8R]S86UB82]T97AT9&]C'1D;V-S+T9A>&EN9RYT>'0* M+7-H87)E+V1O8R]S86UB82]T97AT9&]C'1D;V-S+TA)3E13+G1X=`HM'1D;V-S+TE.4U1!3$PN'0*+7-H87)E+V1O8R]S86UB82]T97AT9&]C M'0*+7-H87)E+V1O8R]S86UB82]T97AT M9&]C'1D;V-S+U!2 M3T9)3$53+G1X=`HM'1D;V-S+U!A'0*+7-H87)E+V1O8R]S86UB82]T97AT9&]C'0* M+7-H87)E+V1O8R]S86UB82]T97AT9&]C'1D;V-S+U)%041-12YJ:7,*+7-H87)E+V1O8R]S86UB82]T97AT M9&]C'0*+7-H87)E+V1O8R]S86UB82]T97AT9&]C'0*+7-H87)E+V1O8R]S86UB82]T97AT9&]C'1D;V-S+U1R86-I;F'0*+7-H87)E+V1O8R]S86UB82]T97AT9&]C M'0*+7-H87)E+V1O8R]S86UB82]T97AT9&]C'0*+7-H87)E+V1O8R]S86UB82]T97AT9&]C5]L979E;"YT>'0*+7-H87)E+V1O8R]S86UB82]Y;V1L9&]C0HM0&1I'0**R4E4$]25$1/0U,E)7-H87)E+V1O8R]S86UB82]/240O2]7:6YD;W=S5&5R;6EN86Q397)V97(N M`HK)2503U)4 M1$]#4R4E7(Q"BLE)5!/4E1$3T-3)25S:&%R92]D;V,O'0**R4E M4$]25$1/0U,E)7-H87)E+V1O8R]S86UB82]D;V-B;V]K+V1O8V)O;VLN='AT M"BLE)5!/4E1$3T-3)25S:&%R92]D;V,O%]P'0* M*R4E4$]25$1/0U,E)7-H87)E+V1O8R]S86UB82]F87$O'1A+F=I9@HK M)2503U)41$]#4R4E"YH=&UL"BLE)5!/4E1$3T-3)25S:&%R92]D;V,O2YH=&UL"BLE)5!/4E1$3T-3)25S:&%R M92]D;V,O"YH=&UL M"BLE)5!/4E1$3T-3)25S:&%R92]D;V,O'1D;V-S+T)23U=324Y'+4-O;F9I9RYT>'0* M*R4E4$]25$1/0U,E)7-H87)E+V1O8R]S86UB82]J82]T97AT9&]C'0**R4E4$]25$1/0U,E)7-H87)E+V1O8R]S86UB82]J82]T97AT M9&]C'1D;V-S+T-64U]!0T-%4U,N='AT"BLE)5!/ M4E1$3T-3)25S:&%R92]D;V,O'1D;V-S M+T1/34%)3BYT>'0**R4E4$]25$1/0U,E)7-H87)E+V1O8R]S86UB82]J82]T M97AT9&]C'1D;V-S+T5.0U)94%1)3TXN='AT"BLE)5!/4E1$ M3T-3)25S:&%R92]D;V,O'0**R4E4$]25$1/0U,E)7-H87)E+V1O8R]S86UB82]J82]T97AT9&]C M'0**R4E4$]25$1/0U,E)7-H87)E+V1O M8R]S86UB82]J82]T97AT9&]C'0**R4E4$]25$1/0U,E)7-H87)E M+V1O8R]S86UB82]J82]T97AT9&]C'0**R4E4$]25$1/ M0U,E)7-H87)E+V1O8R]S86UB82]J82]T97AT9&]C'1D;V-S+U-P965D+G1X=`HK)2503U)41$]#4R4E'1D;V-S+U-P965D,BYT>'0**R4E4$]25$1/0U,E)7-H M87)E+V1O8R]S86UB82]J82]T97AT9&]C'0**R4E4$]2 M5$1/0U,E)7-H87)E+V1O8R]S86UB82]J82]T97AT9&]C'1D;V-S M+W-E8W5R:71Y7VQE=F5L+G1X=`HK)2503U)41$]#4R4E'1D;V-S+W-M8FUO=6YT+G1X=`HK)2503U)41$]#4R4E6]D;&1O8W,O;6%K95]S;6)C M;V1E<&%G92XQ+GEO"BLE)5!/4E1$3T-3)25S:&%R92]D;V,O6]D;&1O8W,O;6%K95]U;FEC;V1E;6%P+C$N>6\**R4E4$]25$1/0U,E)7-H M87)E+V1O8R]S86UB82]J82]Y;V1L9&]C'1D;V-S+T)23U=324Y'+4-O;F9I M9RYT>'0**R4E4$]25$1/0U,E)7-H87)E+V1O8R]S86UB82]T97AT9&]C'0**R4E4$]25$1/0U,E)7-H87)E+V1O8R]S86UB82]T97AT M9&]C'1D;V-S+T1(0U`M4V5R=F5R+4-O;F9I9W5R871I;VXN='AT"BLE)5!/4E1$ M3T-3)25S:&%R92]D;V,O'1D;V-S+T1.25@N='AT M"BLE)5!/4E1$3T-3)25S:&%R92]D;V,O'1D;V-S+T=/ M5$-(05,N='AT"BLE)5!/4E1$3T-3)25S:&%R92]D;V,O'1D;V-S+TUA8VEN=&]S:%]#;&EE;G1S+G1X=`HK M)2503U)41$]#4R4E'1D;V-S+TYE=$))3U,N M='AT"BLE)5!/4E1$3T-3)25S:&%R92]D;V,O'1D;V-S+U)%041-12Y$0T5$1E,**R4E4$]25$1/0U,E)7-H M87)E+V1O8R]S86UB82]T97AT9&]C'1D;V-S+U)%041-12YS86UB871A M<@HK)2503U)41$]#4R4E'1D;V-S+U)E8V5N M="U&05%S+G1X=`HK)2503U)41$]#4R4E'1D M;V-S+U)O=71E9$YE='=O'1D;V-S+U-#3RYT>'0**R4E4$]25$1/0U,E)7-H87)E+V1O M8R]S86UB82]T97AT9&]C'1D;V-S+U-P965D+G1X=`HK M)2503U)41$]#4R4E'1D;V-S+U-P965D,BYT M>'0**R4E4$]25$1/0U,E)7-H87)E+V1O8R]S86UB82]T97AT9&]C'1D;V-S M+U5.25@M4TU"+G1X=`HK)2503U)41$]#4R4E'1D;V-S+U5.25A?4T5#55))5%DN='AT"BLE)5!/4E1$3T-3)25S:&%R92]D M;V,O'1D;V-S+V]U=&1A=&5D+TY4 M1$]-04E.+G1X=`HK)2503U)41$]#4R4E'1D M;V-S+V]U=&1A=&5D+U!224Y415)?1%))5D52+G1X=`HK)2503U)41$]#4R4E M'1D;V-S+V]U=&1A=&5D+U!23TI%0U13"BLE M)5!/4E1$3T-3)25S:&%R92]D;V,O6]D M;&1O8W,**R4E4$]25$1/0U,E)4!D:7)R;2!S:&%R92]D;V,O6]D;&1O8W,*('-H87)E+V5X86UP;&5S+W-A;6)A+TQ$05`O4D5!1$U% M"BUS:&%R92]E>&%M<&QE&%M<&QE0HK&%M<&QE&%M<&QE&%M<&QE&%M<&QE&%M<&QE&%M<&QE&%M<&QE&%M<&QE&%M<&QE&%M<&QE&%M<&QE M&%M<&QE&%M<&QE&%M<&QE&%M M<&QE6-L92]R96-Y8VQE+F\**R4E0E5)3$1?5D93 M)25S:&%R92]E>&%M<&QE6-L92]R96-Y8VQE+G-O M"BLE)4)524Q$7U9&4R4E&%M<&QE&%M<&QE6-L92YC"BMS:&%R M92]E>&%M<&QE&%M<&QE6-L92]R96-Y8VQE+F,**W-H87)E+V5X86UP;&5S+W-A;6)A+U9& M4R]R96-Y8VQE+W)E8WEC;&4N8V]N9@H@&%M<&QE&%M<&QE&%M<&QE&%M<&QE&%M<&QE&%M<&QE&%M<&QE&%M<&QE&%M<&QE&%M<&QE&%M<&QE&%M<&QE&%M<&QE&%M<&QEF%R9"YG:68*('-H87)E M+W-W870O:6YC;'5D92]F;V]T97(N:'1M;`H@'0N:'1M;`I`0"`M.3(U+#(S("LY.3$L,C(@0$`*('-H87)E M+W-W870O:F$O:&5L<"]"'0N:'1M;`HK&5C("]B:6XO8V%T("]E=&,O<&%S&5C("]B:6XO&5C("]B:6XO M&5C M(&EF(&-M<"`E1"]PU)%04Q#55)$25)]+TUA:V5F:6QE M+FEN8R!=.R!T:&5N"BL)97AI=`HK9FD**PHK=&5M<&9I;&4]8"]U7-L;V<@65S(B`^)'M74DM$25)04D5&25A])'M214%,0U521$E2 M?2]-86ME9FEL92YI;F,**PHK=VAI;&4@6R`B)#$B(%T[(&1O"BL)8V%S92`D M,2!I;@HK"0E<(G-YU=22T1)4E!2149)6'TD>U)%04Q#55)$25)]+TUA:V5F:6QE M+FEN8PHK"0D).SL**PD)7")MU=22T1)4E!2149)6'TD>U)%04Q#55)$25)]+TUA:V5F M:6QE+FEN8PHK"0D).SL**PD)7")R96-Y8VQE7"(I"BL)"0EE8VAO(")7251( M7U)%0UE#3$4]6453(B`^/B1[5U)+1$E24%)%1DE8?21[4D5!3$-54D1)4GTO M36%K969I;&4N:6YC"BL)"0D[.PHK"0E<(F%U9&ET7"(I"BL)"0EE8VAO(")7 M251(7T%51$E4/5E%4R(@/CXD>U=22T1)4E!2149)6'TD>U)%04Q#55)$25)] M+TUA:V5F:6QE+FEN8PHK"0D).SL**PD)7")W:6YB:6YD7"(I"BL)"0EE8VAO M(")7251(7U=)3D))3D0]6453(B`^/B1[5U)+1$E24%)%1DE8?21[4D5!3$-5 M4D1)4GTO36%K969I;&4N:6YC"BL)"0D[.PHK"0E<(G=B875T:%PB*0HK"0D) M96-H;R`B5TE42%]724Y"24Y$7T%55$A?0TA!3$Q%3D=%/5E%4R(@/CXD>U=2 M2T1)4E!2149)6'TD>U)%04Q#55)$25)]+TUA:V5F:6QE+FEN8PHK"0D).SL* M*PD)*BD**PD)"65C:&\@(DEN=F%L:60@;W!T:6]N.B`D,2(**PD)"7)M("UF M("1[5U)+1$E24%)%1DE8?21[4D5!3$-54D1)4GTO36%K969I;&4N:6YC"BL) E"0EE>&ET(#$**PD)"3L["BL)97-A8PHK"7-H:69T"BMD;VYE"@`` ` end YOROSHIKU ONEGAI SHIMASU. -- NAKAJI Hiroyuki To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 1:10: 7 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A8EC537B401 for ; Mon, 24 Feb 2003 01:10:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89F9543FBD for ; Mon, 24 Feb 2003 01:10:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O9A3NS020546 for ; Mon, 24 Feb 2003 01:10:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O9A3s2020545; Mon, 24 Feb 2003 01:10:03 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 136D137B401 for ; Mon, 24 Feb 2003 01:03:40 -0800 (PST) Received: from transport.cksoft.de (transport.cksoft.de [62.111.66.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18D7143F75 for ; Mon, 24 Feb 2003 01:03:39 -0800 (PST) (envelope-from ck@cksoft.de) Received: from localhost (localhost [127.0.0.1]) by transport.cksoft.de (Postfix) with ESMTP id 3AFE61FFB25 for ; Mon, 24 Feb 2003 10:03:37 +0100 (CET) Received: from majakka.cksoft.de (p508A9762.dip.t-dialin.net [80.138.151.98]) (using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits)) (No client certificate requested) by transport.cksoft.de (Postfix) with ESMTP id 3BE7B1FF97B for ; Mon, 24 Feb 2003 10:03:36 +0100 (CET) Received: from majakka.cksoft.de (localhost [127.0.0.1]) by majakka.cksoft.de (Postfix) with ESMTP id 8131D44ABD for ; Mon, 24 Feb 2003 10:03:35 +0100 (CET) Received: by majakka.cksoft.de (Postfix, from userid 1000) id F3A1D44ABA; Mon, 24 Feb 2003 10:03:34 +0100 (CET) Message-Id: <20030224090334.F3A1D44ABA@majakka.cksoft.de> Date: Mon, 24 Feb 2003 10:03:34 +0100 (CET) From: Christian Kratzer Reply-To: Christian Kratzer To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48621: Allow selection of specific Openldap port agains which to build Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48621 >Category: ports >Synopsis: Allow selection of specific Openldap port agains which to build >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 01:10:02 PST 2003 >Closed-Date: >Last-Modified: >Originator: Christian Kratzer >Release: FreeBSD 4.7-STABLE i386 >Organization: CK Software GmbH >Environment: System: FreeBSD majakka.cksoft.de 4.7-STABLE FreeBSD 4.7-STABLE #1: Thu Dec 19 14:57:42 CET 2002 ck@majakka.cksoft.de:/usr/obj/usr/src/RELENG_4/src/sys/MAJAKKA i386 >Description: There are currently 3 different ports of openldap. This patch extends scripts/configure.postfix to select the specific openldap port we want to build with. We need this so that the correct dependency gets registered with the package. >How-To-Repeat: >Fix: --- postfix/scripts/configure.postfix.orig Mon Feb 24 08:48:37 2003 +++ postfix/scripts/configure.postfix Mon Feb 24 09:43:48 2003 @@ -32,7 +32,9 @@ DB41 "Berkeley DB4.1 (required if SASL also built with DB4.1)" "$status_DB41" \ MySQL "MySQL map lookups" "$status_MySQL" \ PgSQL "PostgreSQL map lookups" "$status_PgSQL" \ -OpenLDAP "OpenLDAP map lookups" "$status_OpenLDAP" \ +OpenLDAP1 "OpenLDAP 1.x map lookups" "$status_OpenLDAP" \ +OpenLDAP20 "OpenLDAP 2.0 map lookups" "$status_OpenLDAP" \ +OpenLDAP21 "OpenLDAP 2.1 map lookups" "$status_OpenLDAP" \ Test "SMTP/LMTP test server and generator" "$status_Test" \ 2> $tempfile @@ -171,8 +173,20 @@ echo "PATCHFILES+= postfix-pg.postfix-2.0.0.2.patch" echo "PATCH_DIST_STRIP= -p1" ;; - OpenLDAP) + OpenLDAP1) echo "BUILD_DEPENDS+= \${LOCALBASE}/lib/libldap.a:\${PORTSDIR}/net/openldap12" + echo "POSTFIX_CCARGS+= -DHAS_LDAP -I\${LOCALBASE}/include" + echo "POSTFIX_AUXLIBS+= \${LOCALBASE}/lib/libldap.a \${PREFIX}/lib/liblber.a" + echo "OPENLDAP_SUFFIX= +openldap" + ;; + OpenLDAP20) + echo "BUILD_DEPENDS+= \${LOCALBASE}/lib/libldap.a:\${PORTSDIR}/net/openldap20" + echo "POSTFIX_CCARGS+= -DHAS_LDAP -I\${LOCALBASE}/include" + echo "POSTFIX_AUXLIBS+= \${LOCALBASE}/lib/libldap.a \${PREFIX}/lib/liblber.a" + echo "OPENLDAP_SUFFIX= +openldap" + ;; + OpenLDAP21) + echo "BUILD_DEPENDS+= \${LOCALBASE}/lib/libldap.a:\${PORTSDIR}/net/openldap21" echo "POSTFIX_CCARGS+= -DHAS_LDAP -I\${LOCALBASE}/include" echo "POSTFIX_AUXLIBS+= \${LOCALBASE}/lib/libldap.a \${PREFIX}/lib/liblber.a" echo "OPENLDAP_SUFFIX= +openldap" >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 1:43:54 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5754137B401; Mon, 24 Feb 2003 01:43:53 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A418D43FBD; Mon, 24 Feb 2003 01:43:52 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from freefall.freebsd.org (nork@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O9hqNS036986; Mon, 24 Feb 2003 01:43:52 -0800 (PST) (envelope-from nork@freefall.freebsd.org) Received: (from nork@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O9hqjS036981; Mon, 24 Feb 2003 01:43:52 -0800 (PST) Date: Mon, 24 Feb 2003 01:43:52 -0800 (PST) From: Norikatsu Shigemura Message-Id: <200302240943.h1O9hqjS036981@freefall.freebsd.org> To: nork@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, nork@FreeBSD.org Subject: Re: ports/48616: New port: linux-flashplugin6 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port: linux-flashplugin6 Responsible-Changed-From-To: freebsd-ports-bugs->nork Responsible-Changed-By: nork Responsible-Changed-When: Mon Feb 24 01:43:42 PST 2003 Responsible-Changed-Why: I'll handle this. http://www.freebsd.org/cgi/query-pr.cgi?pr=48616 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 1:52:18 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60B4D37B401; Mon, 24 Feb 2003 01:52:17 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0257643F75; Mon, 24 Feb 2003 01:52:17 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from freefall.freebsd.org (nork@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O9qGNS039450; Mon, 24 Feb 2003 01:52:16 -0800 (PST) (envelope-from nork@freefall.freebsd.org) Received: (from nork@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O9qGgX039446; Mon, 24 Feb 2003 01:52:16 -0800 (PST) Date: Mon, 24 Feb 2003 01:52:16 -0800 (PST) From: Norikatsu Shigemura Message-Id: <200302240952.h1O9qGgX039446@freefall.freebsd.org> To: tgeier@acsmail.com, nork@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48463: Gringotts port does not build due to linker error. Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Gringotts port does not build due to linker error. State-Changed-From-To: analyzed->closed State-Changed-By: nork State-Changed-When: Mon Feb 24 01:50:55 PST 2003 State-Changed-Why: Committed. Please update x11-toolkits/pango port and ... http://www.freebsd.org/cgi/query-pr.cgi?pr=48463 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 1:58:19 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BBFD637B401; Mon, 24 Feb 2003 01:58:18 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F34D43F75; Mon, 24 Feb 2003 01:58:18 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1O9wINS039581; Mon, 24 Feb 2003 01:58:18 -0800 (PST) (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1O9wHlB039577; Mon, 24 Feb 2003 01:58:17 -0800 (PST) Date: Mon, 24 Feb 2003 01:58:17 -0800 (PST) From: Tilman Linneweh Message-Id: <200302240958.h1O9wHlB039577@freefall.freebsd.org> To: mharnois@cpinternet.com, arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/37358: xawtv generates sigalrm with bktr Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: xawtv generates sigalrm with bktr State-Changed-From-To: feedback->closed State-Changed-By: arved State-Changed-When: Mon Feb 24 01:58:09 PST 2003 State-Changed-Why: Feedback timeout (1 month) http://www.freebsd.org/cgi/query-pr.cgi?pr=37358 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 2:26:51 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C42B237B405; Mon, 24 Feb 2003 02:26:50 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 65DFE43FDF; Mon, 24 Feb 2003 02:26:50 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OAQoNS049868; Mon, 24 Feb 2003 02:26:50 -0800 (PST) (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OAQoTE049864; Mon, 24 Feb 2003 02:26:50 -0800 (PST) Date: Mon, 24 Feb 2003 02:26:50 -0800 (PST) From: Tilman Linneweh Message-Id: <200302241026.h1OAQoTE049864@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, nork@FreeBSD.org Subject: Re: ports/48470: [PATCH www/flashpluginwrapper] add helper script Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [PATCH www/flashpluginwrapper] add helper script Responsible-Changed-From-To: freebsd-ports-bugs->nork Responsible-Changed-By: arved Responsible-Changed-When: Mon Feb 24 02:26:30 PST 2003 Responsible-Changed-Why: Over to Maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=48470 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 2:28:39 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7390F37B405; Mon, 24 Feb 2003 02:28:38 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09CA943F3F; Mon, 24 Feb 2003 02:28:38 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OASbNS049947; Mon, 24 Feb 2003 02:28:37 -0800 (PST) (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OASbns049943; Mon, 24 Feb 2003 02:28:37 -0800 (PST) Date: Mon, 24 Feb 2003 02:28:37 -0800 (PST) From: Tilman Linneweh Message-Id: <200302241028.h1OASbns049943@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org Subject: Re: ports/48478: update for x11-toolkits/scintilla Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: update for x11-toolkits/scintilla Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: arved Responsible-Changed-When: Mon Feb 24 02:28:15 PST 2003 Responsible-Changed-Why: Over to Maintainers http://www.freebsd.org/cgi/query-pr.cgi?pr=48478 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 2:30: 7 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFE9337B401 for ; Mon, 24 Feb 2003 02:30:06 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B1A743F75 for ; Mon, 24 Feb 2003 02:30:06 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OAU6NS049991 for ; Mon, 24 Feb 2003 02:30:06 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OAU6hf049990; Mon, 24 Feb 2003 02:30:06 -0800 (PST) Date: Mon, 24 Feb 2003 02:30:06 -0800 (PST) Message-Id: <200302241030.h1OAU6hf049990@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: David Booth Subject: Re: ports/46768: postgresql-jdbc fails to build while building interfaces Reply-To: David Booth Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/46768; it has been noted by GNATS. From: David Booth To: freebsd-gnats-submit@FreeBSD.org, wbooth@austin.rr.com Cc: girgen@pingpong.net Subject: Re: ports/46768: postgresql-jdbc fails to build while building interfaces Date: Mon, 24 Feb 2003 04:21:04 -0600 I traced this problem to the presence of the postgresql.jar file from a 7.2.3 build of postgresql-jdbc in /usr/local/share/java/classes. Evidently, Ant puts all of the files thar are in this directory in the java.class.path environment ahead of the local directories and some classes in this file were being read instead of some with the same names in the build directory causing the failure. The work-around is to move temporarily the postgresql.jar from the /usr/local/share/java/classes directory during the build. A fix that modifies the build.xml file to exclude this file from the java.class.path is probably a better choice, but I do not have one. David Booth To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 2:30:13 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 677A937B401 for ; Mon, 24 Feb 2003 02:30:12 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 110BE43FB1 for ; Mon, 24 Feb 2003 02:30:12 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OAUBNS050050 for ; Mon, 24 Feb 2003 02:30:11 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OAUB5V050049; Mon, 24 Feb 2003 02:30:11 -0800 (PST) Date: Mon, 24 Feb 2003 02:30:11 -0800 (PST) Message-Id: <200302241030.h1OAUB5V050049@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Palle Girgensohn Subject: Re: ports/46768: postgresql-jdbc fails to build while building interfaces Reply-To: Palle Girgensohn Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/46768; it has been noted by GNATS. From: Palle Girgensohn To: David Booth , freebsd-gnats-submit@FreeBSD.org, wbooth@austin.rr.com Cc: Subject: Re: ports/46768: postgresql-jdbc fails to build while building interfaces Date: Mon, 24 Feb 2003 11:29:22 +0100 Ah, I suspected this. Thanks for the input, I'll see if I can hack up a=20 patch. /Palle --On m=E5ndag, februari 24, 2003 04.21.04 -0600 David Booth=20 wrote: > I traced this problem to the presence of the postgresql.jar file from a > 7.2.3 build of postgresql-jdbc in /usr/local/share/java/classes. > Evidently, Ant puts all of the files thar are in this directory in the > java.class.path environment ahead of the local directories and some > classes in this file were being read instead of some with the same names > in the build directory causing the failure. The work-around is to move > temporarily the postgresql.jar from the /usr/local/share/java/classes > directory during the build. A fix that modifies the build.xml file to > exclude this file from the java.class.path is probably a better choice, > but I do not have one. > > David Booth To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 2:38:10 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 965DE37B401; Mon, 24 Feb 2003 02:38:09 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EEF8443F85; Mon, 24 Feb 2003 02:38:08 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OAc8NS052110; Mon, 24 Feb 2003 02:38:08 -0800 (PST) (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OAc8EA052106; Mon, 24 Feb 2003 02:38:08 -0800 (PST) Date: Mon, 24 Feb 2003 02:38:08 -0800 (PST) From: Tilman Linneweh Message-Id: <200302241038.h1OAc8EA052106@freefall.freebsd.org> To: tadalunch@sources.redhat.com, arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48373: net/qadsl: URL fix (pkg-descr) Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: net/qadsl: URL fix (pkg-descr) State-Changed-From-To: open->closed State-Changed-By: arved State-Changed-When: Mon Feb 24 02:38:02 PST 2003 State-Changed-Why: Committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=48373 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 2:46:42 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9307837B401; Mon, 24 Feb 2003 02:46:41 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35C6343F3F; Mon, 24 Feb 2003 02:46:41 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OAkfNS054196; Mon, 24 Feb 2003 02:46:41 -0800 (PST) (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OAkfhg054192; Mon, 24 Feb 2003 02:46:41 -0800 (PST) Date: Mon, 24 Feb 2003 02:46:41 -0800 (PST) From: Tilman Linneweh Message-Id: <200302241046.h1OAkfhg054192@freefall.freebsd.org> To: tadalunch@sources.redhat.com, arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48300: editors/cooledit: URL fix (pkg-descr) Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: editors/cooledit: URL fix (pkg-descr) State-Changed-From-To: open->closed State-Changed-By: arved State-Changed-When: Mon Feb 24 02:46:33 PST 2003 State-Changed-Why: Committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=48300 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 2:48:51 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F13C537B405; Mon, 24 Feb 2003 02:48:50 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D4BE43FBD; Mon, 24 Feb 2003 02:48:50 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OAmoNS054249; Mon, 24 Feb 2003 02:48:50 -0800 (PST) (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OAmoCZ054245; Mon, 24 Feb 2003 02:48:50 -0800 (PST) Date: Mon, 24 Feb 2003 02:48:50 -0800 (PST) From: Tilman Linneweh Message-Id: <200302241048.h1OAmoCZ054245@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, billf@FreeBSD.org Subject: Re: ports/48573: update-port: irc/muh Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: update-port: irc/muh Responsible-Changed-From-To: freebsd-ports-bugs->billf Responsible-Changed-By: arved Responsible-Changed-When: Mon Feb 24 02:47:55 PST 2003 Responsible-Changed-Why: Over to Maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=48573 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 2:50: 8 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C9CCF37B401 for ; Mon, 24 Feb 2003 02:50:05 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7ED6B43FCB for ; Mon, 24 Feb 2003 02:50:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OAo4NS054307 for ; Mon, 24 Feb 2003 02:50:04 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OAo4HP054306; Mon, 24 Feb 2003 02:50:04 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0686137B401 for ; Mon, 24 Feb 2003 02:40:06 -0800 (PST) Received: from transport.cksoft.de (transport.cksoft.de [62.111.66.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12E7743FCB for ; Mon, 24 Feb 2003 02:40:03 -0800 (PST) (envelope-from ck@cksoft.de) Received: from localhost (localhost [127.0.0.1]) by transport.cksoft.de (Postfix) with ESMTP id 5271D1FFB25; Mon, 24 Feb 2003 11:40:01 +0100 (CET) Received: from majakka.cksoft.de (p508A9762.dip.t-dialin.net [80.138.151.98]) (using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits)) (No client certificate requested) by transport.cksoft.de (Postfix) with ESMTP id 035991FF97B; Mon, 24 Feb 2003 11:40:00 +0100 (CET) Received: from majakka.cksoft.de (localhost [127.0.0.1]) by majakka.cksoft.de (Postfix) with ESMTP id 4120244ABD; Mon, 24 Feb 2003 11:39:59 +0100 (CET) Received: by majakka.cksoft.de (Postfix, from userid 1000) id B2F7D44ABA; Mon, 24 Feb 2003 11:39:58 +0100 (CET) Message-Id: <20030224103958.B2F7D44ABA@majakka.cksoft.de> Date: Mon, 24 Feb 2003 11:39:58 +0100 (CET) From: Christian Kratzer Reply-To: Christian Kratzer To: FreeBSD-gnats-submit@FreeBSD.org Cc: Christian Kratzer X-Send-Pr-Version: 3.113 Subject: ports/48622: Update to 1.7.0, add selection of openldap port Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48622 >Category: ports >Synopsis: Update to 1.7.0, add selection of openldap port >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 02:50:03 PST 2003 >Closed-Date: >Last-Modified: >Originator: Christian Kratzer >Release: FreeBSD 4.7-STABLE i386 >Organization: CK Software GmbH >Environment: System: FreeBSD majakka.cksoft.de 4.7-STABLE FreeBSD 4.7-STABLE #1: Thu Dec 19 14:57:42 CET 2002 ck@majakka.cksoft.de:/usr/obj/usr/src/RELENG_4/src/sys/MAJAKKA i386 >Description: Update courier-imap to 1.7.0 and add flags to select openldap port. Add WITH_LDAP20 and WITH_LDAP21 to Makefile to select which of the 2.x openldap ports to build against. >How-To-Repeat: >Fix: --- courier-imap/Makefile.orig Mon Feb 24 11:16:01 2003 +++ courier-imap/Makefile Mon Feb 24 11:28:37 2003 @@ -6,8 +6,8 @@ # PORTNAME= courier-imap -PORTVERSION= 1.6.1 -PORTREVISION= 1 +PORTVERSION= 1.7.0 +PORTREVISION= 0 CATEGORIES= mail ipv6 MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= courier @@ -29,7 +29,9 @@ # WITH_VPOPMAIL: Build in vpopmail support # WITH_MYSQL: Build in mysql support # WITH_POSTGRESQL: Build in postgresql support -# WITH_LDAP: Build in ldap support with openldap 2.x +# WITH_LDAP: Build in ldap support with openldap 2.1 +# WITH_LDAP21: Build in ldap support with openldap 2.1 +# WITH_LDAP20: Build in ldap support with openldap 2.0 # WITH_LDAP1: Build in ldap support with openldap 1.x # @@ -64,14 +66,22 @@ BUILD_DEPENDS+= ${VPOPMAILDIR}/lib/libvpopmail.a:${PORTSDIR}/mail/vpopmail .endif -.if !defined(WITH_LDAP) && !defined(WITH_LDAP1) +# default to openldap21 +.if defined(WITH_LDAP) +WITH_LDAP21= yes +.endif + +.if !defined(WITH_LDAP21) && !defined(WITH_LDAP20) && !defined(WITH_LDAP1) CONFIGURE_ARGS+= --without-authldap PLIST_SUB+= LDAPFLAG="@comment " .else CONFIGURE_ARGS+= --with-authldap PLIST_SUB+= LDAPFLAG="" -.if defined(WITH_LDAP) +.if defined(WITH_LDAP21) +LIB_DEPENDS= ldap.2:${PORTSDIR}/net/openldap21 \ + lber.2:${PORTSDIR}/net/openldap21 +.elseif defined(WITH_LDAP20) LIB_DEPENDS= ldap.2:${PORTSDIR}/net/openldap20 \ lber.2:${PORTSDIR}/net/openldap20 .else --- courier-imap/distinfo.orig Mon Feb 24 11:28:16 2003 +++ courier-imap/distinfo Mon Feb 24 11:30:11 2003 @@ -1 +1 @@ -MD5 (courier-imap-1.6.1.tar.bz2) = 313a1b1c7a6813c81f543b524f4f2a3d +MD5 (courier-imap-1.7.0.tar.bz2) = f74abb58b45810cc485426bc8bad14e6 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 2:52:55 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6A08537B401; Mon, 24 Feb 2003 02:52:54 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6298C43FD7; Mon, 24 Feb 2003 02:52:53 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OAqrNS056439; Mon, 24 Feb 2003 02:52:53 -0800 (PST) (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OAqr8F056435; Mon, 24 Feb 2003 02:52:53 -0800 (PST) Date: Mon, 24 Feb 2003 02:52:53 -0800 (PST) From: Tilman Linneweh Message-Id: <200302241052.h1OAqr8F056435@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, anholt@FreeBSD.org Subject: Re: ports/48613: XFree86-clients port overwrites config file Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: XFree86-clients port overwrites config file Responsible-Changed-From-To: freebsd-ports-bugs->anholt Responsible-Changed-By: arved Responsible-Changed-When: Mon Feb 24 02:52:33 PST 2003 Responsible-Changed-Why: Over to Maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=48613 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 3: 2:19 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFD3E37B401; Mon, 24 Feb 2003 03:02:12 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8355043F93; Mon, 24 Feb 2003 03:02:12 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OB2CNS058666; Mon, 24 Feb 2003 03:02:12 -0800 (PST) (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OB2CFF058662; Mon, 24 Feb 2003 03:02:12 -0800 (PST) Date: Mon, 24 Feb 2003 03:02:12 -0800 (PST) From: Tilman Linneweh Message-Id: <200302241102.h1OB2CFF058662@freefall.freebsd.org> To: stevep@zpfe.com, arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48577: updating path to nocol distribution in Makefile Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: updating path to nocol distribution in Makefile State-Changed-From-To: open->closed State-Changed-By: arved State-Changed-When: Mon Feb 24 03:02:06 PST 2003 State-Changed-Why: Committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=48577 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 3: 4:37 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5ADC937B401; Mon, 24 Feb 2003 03:04:36 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF72643FAF; Mon, 24 Feb 2003 03:04:35 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OB4ZNS058724; Mon, 24 Feb 2003 03:04:35 -0800 (PST) (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OB4ZfI058720; Mon, 24 Feb 2003 03:04:35 -0800 (PST) Date: Mon, 24 Feb 2003 03:04:35 -0800 (PST) From: Tilman Linneweh Message-Id: <200302241104.h1OB4ZfI058720@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, nbm@FreeBSD.org Subject: Re: ports/48622: Update to 1.7.0, add selection of openldap port Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update to 1.7.0, add selection of openldap port Responsible-Changed-From-To: freebsd-ports-bugs->nbm Responsible-Changed-By: arved Responsible-Changed-When: Mon Feb 24 03:04:15 PST 2003 Responsible-Changed-Why: over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=48622 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 3: 6:35 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A83F37B401; Mon, 24 Feb 2003 03:06:34 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E190943FD7; Mon, 24 Feb 2003 03:06:33 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OB6XNS062404; Mon, 24 Feb 2003 03:06:33 -0800 (PST) (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OB6XES062400; Mon, 24 Feb 2003 03:06:33 -0800 (PST) Date: Mon, 24 Feb 2003 03:06:33 -0800 (PST) From: Tilman Linneweh Message-Id: <200302241106.h1OB6XES062400@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dd@FreeBSD.org Subject: Re: ports/48586: [PATCH] net/dictd UTF8 support broken Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [PATCH] net/dictd UTF8 support broken Responsible-Changed-From-To: freebsd-ports-bugs->dd Responsible-Changed-By: arved Responsible-Changed-When: Mon Feb 24 03:05:29 PST 2003 Responsible-Changed-Why: Over to Maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=48586 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 3:10:55 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9577437B406; Mon, 24 Feb 2003 03:10:54 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8EAA43FDD; Mon, 24 Feb 2003 03:10:53 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OBArNS063374; Mon, 24 Feb 2003 03:10:53 -0800 (PST) (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OBArqT063367; Mon, 24 Feb 2003 03:10:53 -0800 (PST) Date: Mon, 24 Feb 2003 03:10:53 -0800 (PST) From: Tilman Linneweh Message-Id: <200302241110.h1OBArqT063367@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sobomax@FreeBSD.org Subject: Re: ports/48426: [PATCH] digger-vgl does not support console switching Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [PATCH] digger-vgl does not support console switching Responsible-Changed-From-To: freebsd-ports-bugs->sobomax Responsible-Changed-By: arved Responsible-Changed-When: Mon Feb 24 03:10:31 PST 2003 Responsible-Changed-Why: Over to Maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=48426 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 3:12: 6 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5BB6237B401; Mon, 24 Feb 2003 03:12:05 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F30B343FCB; Mon, 24 Feb 2003 03:12:04 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OBC4NS064529; Mon, 24 Feb 2003 03:12:04 -0800 (PST) (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OBC46x064524; Mon, 24 Feb 2003 03:12:04 -0800 (PST) Date: Mon, 24 Feb 2003 03:12:04 -0800 (PST) From: Tilman Linneweh Message-Id: <200302241112.h1OBC46x064524@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kris@FreeBSD.org Subject: Re: ports/48410: Update ports: security/snortsnarf version 021111.1 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update ports: security/snortsnarf version 021111.1 Responsible-Changed-From-To: freebsd-ports-bugs->kris Responsible-Changed-By: arved Responsible-Changed-When: Mon Feb 24 03:11:35 PST 2003 Responsible-Changed-Why: Over to Maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=48410 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 3:15:11 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 625E737B401; Mon, 24 Feb 2003 03:15:10 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3A5E43F93; Mon, 24 Feb 2003 03:15:09 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OBF9NS064721; Mon, 24 Feb 2003 03:15:09 -0800 (PST) (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OBF9qf064717; Mon, 24 Feb 2003 03:15:09 -0800 (PST) Date: Mon, 24 Feb 2003 03:15:09 -0800 (PST) From: Tilman Linneweh Message-Id: <200302241115.h1OBF9qf064717@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, greid@FreeBSD.org Subject: Re: ports/48391: sysutils/installwatch: URL fix (pkg-descr) Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: sysutils/installwatch: URL fix (pkg-descr) Responsible-Changed-From-To: freebsd-ports-bugs->greid Responsible-Changed-By: arved Responsible-Changed-When: Mon Feb 24 03:14:40 PST 2003 Responsible-Changed-Why: Over to Maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=48391 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 3:30:16 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 54F9F37B401 for ; Mon, 24 Feb 2003 03:30:13 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA79243F85 for ; Mon, 24 Feb 2003 03:30:11 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OBUBNS067022 for ; Mon, 24 Feb 2003 03:30:11 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OBUBTj067021; Mon, 24 Feb 2003 03:30:11 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 90FE837B401 for ; Mon, 24 Feb 2003 03:26:24 -0800 (PST) Received: from transport.cksoft.de (transport.cksoft.de [62.111.66.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D25043F85 for ; Mon, 24 Feb 2003 03:26:23 -0800 (PST) (envelope-from ck@cksoft.de) Received: from localhost (localhost [127.0.0.1]) by transport.cksoft.de (Postfix) with ESMTP id 5BC661FFB25; Mon, 24 Feb 2003 12:26:22 +0100 (CET) Received: from majakka.cksoft.de (p508AA572.dip.t-dialin.net [80.138.165.114]) (using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits)) (No client certificate requested) by transport.cksoft.de (Postfix) with ESMTP id 3D5541FF97B; Mon, 24 Feb 2003 12:26:21 +0100 (CET) Received: from majakka.cksoft.de (localhost [127.0.0.1]) by majakka.cksoft.de (Postfix) with ESMTP id 259B944ABD; Mon, 24 Feb 2003 12:26:20 +0100 (CET) Received: by majakka.cksoft.de (Postfix, from userid 1000) id 84D3E44ABA; Mon, 24 Feb 2003 12:26:18 +0100 (CET) Message-Id: <20030224112618.84D3E44ABA@majakka.cksoft.de> Date: Mon, 24 Feb 2003 12:26:18 +0100 (CET) From: Christian Kratzer Reply-To: Christian Kratzer To: FreeBSD-gnats-submit@FreeBSD.org Cc: Christian Kratzer X-Send-Pr-Version: 3.113 Subject: ports/48623: Add openldap21 dependency to mod_php4 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48623 >Category: ports >Synopsis: Add openldap21 dependency to mod_php4 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 03:30:11 PST 2003 >Closed-Date: >Last-Modified: >Originator: Christian Kratzer >Release: FreeBSD 4.7-STABLE i386 >Organization: CK Software GmbH >Environment: System: FreeBSD majakka.cksoft.de 4.7-STABLE FreeBSD 4.7-STABLE #1: Thu Dec 19 14:57:42 CET 2002 ck@majakka.cksoft.de:/usr/obj/usr/src/RELENG_4/src/sys/MAJAKKA i386 >Description: Add support for the new openldap21 port to mod_php4. >How-To-Repeat: >Fix: --- mod_php4/scripts/configure.php.orig Mon Feb 24 07:42:43 2003 +++ mod_php4/scripts/configure.php Mon Feb 24 11:44:43 2003 @@ -34,7 +34,8 @@ dBase "dBase database support" OFF \ GDBM "GNU database manager support" OFF \ OpenLDAP1 "OpenLDAP 1.x support" OFF \ -OpenLDAP2 "OpenLDAP 2.x support" OFF \ +OpenLDAP20 "OpenLDAP 2.0 support" OFF \ +OpenLDAP21 "OpenLDAP 2.1 support" OFF \ OpenSSL "OpenSSL support" OFF \ SNMP "SNMP support" OFF \ XML "XML support" OFF \ @@ -222,8 +223,8 @@ echo "LIB_DEPENDS+= ldap.1:\${PORTSDIR}/net/openldap12" echo "LIB_DEPENDS+= lber.1:\${PORTSDIR}/net/openldap12" echo "CONFIGURE_ARGS+=--with-ldap=\${LOCALBASE}" - if [ "$OPENLDAP2" ]; then - echo "OpenLDAP1 and OpenLDAP2 are mutually exclusive." > /dev/stderr + if [ "$OPENLDAP20" -o "$OPENLDAP21" ]; then + echo "OpenLDAP1, OpenLDAP20 and OpenLDAP21 are mutually exclusive." > /dev/stderr rm -f ${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc exit 1 fi @@ -232,19 +233,33 @@ fi OPENLDAP1=1 ;; - \"OpenLDAP2\") + \"OpenLDAP20\") echo "LIB_DEPENDS+= ldap.2:\${PORTSDIR}/net/openldap20" echo "LIB_DEPENDS+= lber.2:\${PORTSDIR}/net/openldap20" echo "CONFIGURE_ARGS+=--with-ldap=\${LOCALBASE}" - if [ "$OPENLDAP1" ]; then - echo "OpenLDAP1 and OpenLDAP2 are mutually exclusive." > /dev/stderr + if [ "$OPENLDAP1" -o "$OPENLDAP21" ]; then + echo "OpenLDAP1, OpenLDAP20 and OpenLDAP21 are mutually exclusive." > /dev/stderr rm -f ${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc exit 1 fi if [ -f /usr/lib/libkrb.a -a -f /usr/lib/libdes.a -a ! -L /usr/lib/libdes.a ]; then LIBS="${LIBS} -lkrb -ldes -L\${LOCALBASE}/lib" fi - OPENLDAP2=1 + OPENLDAP20=1 + ;; + \"OpenLDAP21\") + echo "LIB_DEPENDS+= ldap.2:\${PORTSDIR}/net/openldap21" + echo "LIB_DEPENDS+= lber.2:\${PORTSDIR}/net/openldap21" + echo "CONFIGURE_ARGS+=--with-ldap=\${LOCALBASE}" + if [ "$OPENLDAP1" -o "$OPENLDAP20" ]; then + echo "OpenLDAP1, OpenLDAP20 and OpenLDAP21 are mutually exclusive." > /dev/stderr + rm -f ${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc + exit 1 + fi + if [ -f /usr/lib/libkrb.a -a -f /usr/lib/libdes.a -a ! -L /usr/lib/libdes.a ]; then + LIBS="${LIBS} -lkrb -ldes -L\${LOCALBASE}/lib" + fi + OPENLDAP21=1 ;; \"OpenSSL\") echo "USE_OPENSSL=yes" >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 4:30:18 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E319E37B401 for ; Mon, 24 Feb 2003 04:30:15 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8F3C43FD7 for ; Mon, 24 Feb 2003 04:30:14 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OCUENS087570 for ; Mon, 24 Feb 2003 04:30:14 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OCUEKX087569; Mon, 24 Feb 2003 04:30:14 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 901D037B401; Mon, 24 Feb 2003 04:25:54 -0800 (PST) Received: from helo.liwing.de (helo.liwing.de [213.70.188.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B35C43FA3; Mon, 24 Feb 2003 04:25:53 -0800 (PST) (envelope-from root@helo.liwing.de) Received: from helo.liwing.de (localhost.liwing.de [127.0.0.1]) by helo.liwing.de (8.12.6/8.12.6) with ESMTP id h1OCPp3D020436; Mon, 24 Feb 2003 12:25:51 GMT (envelope-from root@helo.liwing.de) Received: (from root@localhost) by helo.liwing.de (8.12.6/8.12.6/Submit) id h1OCPoWK020435; Mon, 24 Feb 2003 12:25:50 GMT Message-Id: <200302241225.h1OCPoWK020435@helo.liwing.de> Date: Mon, 24 Feb 2003 12:25:50 GMT From: Jens Rehsack Reply-To: Jens Rehsack To: FreeBSD-gnats-submit@FreeBSD.org Cc: Jens Rehsack , "Vanilla I. Shu" X-Send-Pr-Version: 3.113 Subject: ports/48624: fixing problem with using make.conf's CFLAGS of php-dbg-2.11.5 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48624 >Category: ports >Synopsis: fixing problem with using make.conf's CFLAGS of php-dbg-2.11.5 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 04:30:14 PST 2003 >Closed-Date: >Last-Modified: >Originator: Jens Rehsack >Release: FreeBSD 4.7-STABLE i386 >Organization: LiWing IT-Services >Environment: System: FreeBSD fozzie.muppets.liwing.de 4.7-STABLE FreeBSD 4.7-STABLE #0: Sun Feb 2 21:10:03 GMT 2003 root@fozzie.muppets.liwing.de:/usr/obj/usr/src/sys/FOZZIE i386 >Description: Since phpize generates the autoconf and configure scripts for the port, it doesn't recognize the value for CFLAGS in /etc/make.conf not correctly (better: ignore it). Even a fix in the skeleton files of the php port would be much better, here is a fix for the php-dbg port. >How-To-Repeat: Look at the commands for compile 'make build' is using :-) >Fix: --- php-dbg.diff begins here --- --- Makefile.orig Mon Feb 24 12:05:15 2003 +++ Makefile Mon Feb 24 12:17:25 2003 @@ -7,6 +7,7 @@ PORTNAME= dbg PORTVERSION= 2.11.5 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://dd.cron.ru/dbg/dnld/ PKGNAMEPREFIX= php- @@ -24,6 +25,7 @@ WRKSRC= ${WRKDIR}/dbg CONFIGURE_ARGS= --enable-dbg=shared --with-dbg-profiler \ --with-php-config=${PREFIX}/bin/php-config +CONFIGURE_ENV= CFLAGS="${CFLAGS}" PKGMESSAGE= ${WRKDIR}/pkg-message PLIST= ${WRKDIR}/pkg-plist --- /dev/null Mon Feb 24 12:17:58 2003 +++ files/patch-configure Mon Feb 24 12:15:42 2003 @@ -0,0 +1,25 @@ +--- configure.orig Mon Feb 24 12:14:38 2003 ++++ configure Mon Feb 24 12:15:22 2003 +@@ -2217,18 +2217,18 @@ + + OVERALL_TARGET=php + php_c_pre='$(CC)' +- php_c_meta='$(COMMON_FLAGS) $(CFLAGS_CLEAN) $(EXTRA_CFLAGS)' ++ php_c_meta='$(COMMON_FLAGS) ${CFLAGS} $(CFLAGS_CLEAN) $(EXTRA_CFLAGS)' + php_c_post=' && echo > $@' + php_cxx_pre='$(CXX)' +- php_cxx_meta='$(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS)' ++ php_cxx_meta='$(COMMON_FLAGS) ${CXXFLAGS} $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS)' + php_cxx_post=' && echo > $@' + php_lo=o + + shared_c_pre='$(LIBTOOL) --mode=compile $(CC)' +- shared_c_meta='$(COMMON_FLAGS) $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) -prefer-pic' ++ shared_c_meta='$(COMMON_FLAGS) ${CFLAGS} $(CFLAGS_CLEAN) $(EXTRA_CFLAGS)' + shared_c_post= + shared_cxx_pre='$(LIBTOOL) --mode=compile $(CXX)' +- shared_cxx_meta='$(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -prefer-pic' ++ shared_cxx_meta='$(COMMON_FLAGS) ${CXXFLAGS} $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS)' + shared_cxx_post= + shared_lo=lo + --- php-dbg.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 5:38: 4 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38E4F37B401 for ; Mon, 24 Feb 2003 05:38:02 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 067694423F for ; Mon, 24 Feb 2003 05:11:14 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1ODA8NS099824 for ; Mon, 24 Feb 2003 05:10:08 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1ODA8NI099823; Mon, 24 Feb 2003 05:10:08 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 84BDD37B401 for ; Mon, 24 Feb 2003 05:04:12 -0800 (PST) Received: from norfolk.ki.iif.hu (norfolk.ki.iif.hu [193.6.222.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id 88A3B43F3F for ; Mon, 24 Feb 2003 05:04:11 -0800 (PST) (envelope-from mohacsi@norfolk.ki.iif.hu) Received: (from mohacsi@localhost) by norfolk.ki.iif.hu (8.12.6/8.12.6) id h1OD4ab4000996; Mon, 24 Feb 2003 14:04:36 +0100 (CET) (envelope-from mohacsi) Message-Id: <200302241304.h1OD4ab4000996@norfolk.ki.iif.hu> Date: Mon, 24 Feb 2003 14:04:36 +0100 (CET) From: Janos Mohacsi Reply-To: Janos Mohacsi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48625: Maintainer update: lookout version 1.2 (master site changed) Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48625 >Category: ports >Synopsis: Maintainer update: lookout version 1.2 (master site changed) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 05:10:07 PST 2003 >Closed-Date: >Last-Modified: >Originator: Janos Mohacsi >Release: FreeBSD 4.7-STABLE i386 >Organization: NIIF >Environment: System: FreeBSD norfolk.ki.iif.hu 4.7-STABLE FreeBSD 4.7-STABLE #6: Sun Jan 5 13:40:28 CET 2003 root@norfolk.ki.iif.hu:/usr/src/sys/compile/NORFOLK i386 >Description: The MASTER_SITE has changed. Port upgraded accordingly. >How-To-Repeat: apply this diff. >Fix: diff -ruN lookout.bak/Makefile lookout/Makefile --- lookout.bak/Makefile Mon Feb 24 13:47:28 2003 +++ lookout/Makefile Mon Feb 24 13:40:44 2003 @@ -2,13 +2,13 @@ # Date created: 12 Apr 2002 # Whom: janos.mohacsi@bsd.hu # -# $FreeBSD: ports/mail/lookout/Makefile,v 1.1 2002/09/18 08:43:24 ijliao Exp $ +# $FreeBSD: ports/mail/lookout/Makefile,v 1.2 2003/02/21 12:42:17 knu Exp $ # PORTNAME= lookout PORTVERSION= 1.2 CATEGORIES= mail -MASTER_SITES= http://tuxedo.org/~esr/lookout/ +MASTER_SITES= http://catb.org/~esr/lookout/ MAINTAINER= janos.mohacsi@bsd.hu COMMENT= Convert Outlook97 addressbook export files to KDE KAB/GNOME gnomecard diff -ruN lookout.bak/pkg-descr lookout/pkg-descr --- lookout.bak/pkg-descr Wed Sep 18 10:43:24 2002 +++ lookout/pkg-descr Mon Feb 24 14:00:28 2003 @@ -1,4 +1,4 @@ Python script that convert Outlook 97 addressbook export files to KDE KAB or GNOME gnomecard. -WWW: http://tuxedo.org/~esr/lookout/ +WWW: http://catb.org/~esr/lookout/ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 6: 6:21 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 88F0F37B405; Mon, 24 Feb 2003 06:06:20 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E1CC44499; Mon, 24 Feb 2003 05:33:02 -0800 (PST) (envelope-from vanilla@FreeBSD.org) Received: from freefall.freebsd.org (vanilla@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1ODUbNS005116; Mon, 24 Feb 2003 05:30:37 -0800 (PST) (envelope-from vanilla@freefall.freebsd.org) Received: (from vanilla@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1ODUb9r005109; Mon, 24 Feb 2003 05:30:37 -0800 (PST) Date: Mon, 24 Feb 2003 05:30:37 -0800 (PST) From: "Vanilla I. Shu" Message-Id: <200302241330.h1ODUb9r005109@freefall.freebsd.org> To: rehsack@liwing.de, vanilla@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48624: fixing problem with using make.conf's CFLAGS of php-dbg-2.11.5 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: fixing problem with using make.conf's CFLAGS of php-dbg-2.11.5 State-Changed-From-To: open->closed State-Changed-By: vanilla State-Changed-When: Mon Feb 24 05:30:27 PST 2003 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48624 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 6: 9:57 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1547E37B419; Mon, 24 Feb 2003 06:09:53 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A0644432B; Mon, 24 Feb 2003 06:01:08 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (leeym@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OE0cNS019290; Mon, 24 Feb 2003 06:00:38 -0800 (PST) (envelope-from leeym@freefall.freebsd.org) Received: (from leeym@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OE0bRt019284; Mon, 24 Feb 2003 06:00:37 -0800 (PST) Date: Mon, 24 Feb 2003 06:00:37 -0800 (PST) From: Yen-Ming Lee Message-Id: <200302241400.h1OE0bRt019284@freefall.freebsd.org> To: lehmann@ans-netz.de, leeym@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48592: update-port: graphics/netpbm Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: update-port: graphics/netpbm State-Changed-From-To: open->closed State-Changed-By: leeym State-Changed-When: Mon Feb 24 06:00:36 PST 2003 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48592 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 6:12:26 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFAEE37B405 for ; Mon, 24 Feb 2003 06:12:15 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C9284416C for ; Mon, 24 Feb 2003 06:10:11 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OEA8NS024942 for ; Mon, 24 Feb 2003 06:10:08 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OEA8A3024941; Mon, 24 Feb 2003 06:10:08 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F28437B406 for ; Mon, 24 Feb 2003 06:07:32 -0800 (PST) Received: from meitner.wh.uni-dortmund.de (meitner.wh.Uni-Dortmund.DE [129.217.129.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 567DC44219 for ; Mon, 24 Feb 2003 05:39:38 -0800 (PST) (envelope-from lofi@lofi.dyndns.org) Received: from lofi.dyndns.org ([10.3.12.105]) by meitner.wh.uni-dortmund.de (8.10.2/8.10.2/SuSE Linux 8.10.0-0.3) with ESMTP id h1ODbAc29500; Mon, 24 Feb 2003 14:37:10 +0100 Received: from lofi.dyndns.org (lofi@localhost [127.0.0.1]) by lofi.dyndns.org (8.12.6/8.12.6) with ESMTP id h1ODb872006318 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Mon, 24 Feb 2003 14:37:09 +0100 (CET) (envelope-from lofi@lofi.dyndns.org) Received: (from lofi@localhost) by lofi.dyndns.org (8.12.6/8.12.6/Submit) id h1ODb3LB006317; Mon, 24 Feb 2003 14:37:03 +0100 (CET) (envelope-from lofi) Message-Id: <200302241337.h1ODb3LB006317@lofi.dyndns.org> Date: Mon, 24 Feb 2003 14:37:03 +0100 (CET) From: Michael Nottebrock Reply-To: Michael Nottebrock To: FreeBSD-gnats-submit@FreeBSD.org Cc: Holger Lamm , G Panula X-Send-Pr-Version: 3.113 Subject: ports/48626: Maintainer update: multimedia/dvdrip Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48626 >Category: ports >Synopsis: Maintainer update: multimedia/dvdrip >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 06:10:07 PST 2003 >Closed-Date: >Last-Modified: >Originator: Michael Nottebrock >Release: FreeBSD 5.0-RELEASE-p1 i386 >Organization: >Environment: System: FreeBSD lofi.dyndns.org 5.0-RELEASE-p1 FreeBSD 5.0-RELEASE-p1 #0: Thu Feb 6 06:12:21 CET 2003 lofi@lofi.dyndns.org:/usr/obj/usr/src/sys/LOFI i386 >Description: Changes: - Add check for installed perl-version. Mark as BROKEN on systems with perl < 5.6.0. >How-To-Repeat: >Fix: diff -urN dvdrip.orig/Makefile dvdrip/Makefile --- dvdrip.orig/Makefile Mon Feb 24 13:57:01 2003 +++ dvdrip/Makefile Mon Feb 24 14:34:30 2003 @@ -2,11 +2,12 @@ # Date created: 18 April 2002 # Whom: Michael Nottebrock # -# $FreeBSD: ports/multimedia/dvdrip/Makefile,v 1.9 2003/02/24 12:57:01 nobutaka Exp $ +# $FreeBSD: ports/multimedia/dvdrip/Makefile,v 1.8 2003/02/21 12:51:05 knu Exp $ # PORTNAME= dvdrip PORTVERSION= 0.48.8 +PORTREVISION= 1 CATEGORIES= multimedia MASTER_SITES= http://www.exit1.org/dvdrip/dist/ DISTNAME= Video-DVDRip-${PORTVERSION} @@ -44,6 +45,8 @@ MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} MAN3= Video::DVDRip.3 +.include + pre-everything:: .if !defined(WITHOUT_CLUSTER) @${ECHO_MSG} @@ -74,4 +77,9 @@ post-install: @${CAT} ${PKGMESSAGE} -.include +.if ${PERL_LEVEL} < 500600 +BROKEN= "You need at least perl 5.6.0. Do not use FreeBSD 4.x' system perl,\ + it's outdated. Install lang/perl5 and issue 'use.perl port'" +.endif + +.include >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 6:12:29 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CAAB37B406; Mon, 24 Feb 2003 06:12:16 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 08B8A44179; Mon, 24 Feb 2003 06:10:43 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (leeym@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OEAgNS025272; Mon, 24 Feb 2003 06:10:42 -0800 (PST) (envelope-from leeym@freefall.freebsd.org) Received: (from leeym@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OEAgiq025268; Mon, 24 Feb 2003 06:10:42 -0800 (PST) Date: Mon, 24 Feb 2003 06:10:42 -0800 (PST) From: Yen-Ming Lee Message-Id: <200302241410.h1OEAgiq025268@freefall.freebsd.org> To: janos.mohacsi@bsd.hu, leeym@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48625: Maintainer update: lookout version 1.2 (master site changed) Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Maintainer update: lookout version 1.2 (master site changed) State-Changed-From-To: open->closed State-Changed-By: leeym State-Changed-When: Mon Feb 24 06:10:41 PST 2003 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48625 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 6:22:42 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 79CCA37B407 for ; Mon, 24 Feb 2003 06:22:40 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7329344030 for ; Mon, 24 Feb 2003 06:20:17 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OEKFNS031210 for ; Mon, 24 Feb 2003 06:20:15 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OEKFud031209; Mon, 24 Feb 2003 06:20:15 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 392F837B447 for ; Mon, 24 Feb 2003 06:12:21 -0800 (PST) Received: from mail2.itxmarket.com (fw.itxmarket.com [213.11.40.109]) by mx1.FreeBSD.org (Postfix) with ESMTP id F219944017 for ; Mon, 24 Feb 2003 06:11:47 -0800 (PST) (envelope-from root@icommerce-france.com) Received: from icommerce-france.com (extranet.itxmarket.com [192.168.2.24]) by mail2.itxmarket.com (Postfix) with ESMTP id A5C9337C95 for ; Mon, 24 Feb 2003 15:11:46 +0100 (CET) Received: by icommerce-france.com (Postfix, from userid 0) id 8116B14A24; Mon, 24 Feb 2003 15:11:46 +0100 (CET) Message-Id: <20030224141146.8116B14A24@icommerce-france.com> Date: Mon, 24 Feb 2003 15:11:46 +0100 (CET) From: "Michael L.Hostbaek" Reply-To: "Michael L.Hostbaek" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48627: Update port: [Maintainer Update]: security/hackbot Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48627 >Category: ports >Synopsis: Update port: [Maintainer Update]: security/hackbot >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 06:20:14 PST 2003 >Closed-Date: >Last-Modified: >Originator: Michael L. Hostbaek >Release: FreeBSD 4.7-STABLE i386 >Organization: FreeBSDCluster.org >Environment: System: FreeBSD extranet.itxmarket.com 4.7-STABLE FreeBSD 4.7-STABLE #0: Fri Oct 11 17:00:45 CEST 2002 root@extranet.itxmarket.com:/usr/obj/usr/src/sys/EXTRANET1 i386 >Description: Update to latest release. >How-To-Repeat: >Fix: diff -u -ruN hackbot.bak/Makefile hackbot/Makefile --- hackbot.bak/Makefile Mon Feb 24 15:08:09 2003 +++ hackbot/Makefile Mon Feb 24 15:08:25 2003 @@ -6,7 +6,7 @@ # PORTNAME= hackbot -PORTVERSION= 2.18 +PORTVERSION= 2.19 CATEGORIES= security MASTER_SITES= http://ws.obit.nl/hackbot/ EXTRACT_SUFX= .tgz diff -u -ruN hackbot.bak/distinfo hackbot/distinfo --- hackbot.bak/distinfo Mon Feb 24 15:08:09 2003 +++ hackbot/distinfo Mon Feb 24 15:08:30 2003 @@ -1 +1 @@ -MD5 (hackbot-2.18.tgz) = 382ea0e00fe1caf16d6b8cf0d819a617 +MD5 (hackbot-2.19.tgz) = ffccd83d5b3ade18add9acc5fcf64953 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 6:22:46 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6858A37B401 for ; Mon, 24 Feb 2003 06:22:40 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7336E440AA for ; Mon, 24 Feb 2003 06:20:17 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OEKFNS031224 for ; Mon, 24 Feb 2003 06:20:15 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OEKFE3031223; Mon, 24 Feb 2003 06:20:15 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BCB337B401 for ; Mon, 24 Feb 2003 06:17:23 -0800 (PST) Received: from meitner.wh.uni-dortmund.de (meitner.wh.Uni-Dortmund.DE [129.217.129.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC6F04404B for ; Mon, 24 Feb 2003 06:16:58 -0800 (PST) (envelope-from lofi@lofi.dyndns.org) Received: from lofi.dyndns.org ([10.3.12.105]) by meitner.wh.uni-dortmund.de (8.10.2/8.10.2/SuSE Linux 8.10.0-0.3) with ESMTP id h1OEGvc29810 for ; Mon, 24 Feb 2003 15:16:58 +0100 Received: from lofi.dyndns.org (lofi@localhost [127.0.0.1]) by lofi.dyndns.org (8.12.6/8.12.6) with ESMTP id h1OEGl72022302 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Mon, 24 Feb 2003 15:16:48 +0100 (CET) (envelope-from lofi@lofi.dyndns.org) Received: (from lofi@localhost) by lofi.dyndns.org (8.12.6/8.12.6/Submit) id h1OEGkmh022300; Mon, 24 Feb 2003 15:16:46 +0100 (CET) (envelope-from lofi) Message-Id: <200302241416.h1OEGkmh022300@lofi.dyndns.org> Date: Mon, 24 Feb 2003 15:16:46 +0100 (CET) From: Michael Nottebrock Reply-To: Michael Nottebrock To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48628: Maintainer update: security/newpg Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48628 >Category: ports >Synopsis: Maintainer update: security/newpg >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 06:20:15 PST 2003 >Closed-Date: >Last-Modified: >Originator: Michael Nottebrock >Release: FreeBSD 5.0-RELEASE-p1 i386 >Organization: >Environment: System: FreeBSD lofi.dyndns.org 5.0-RELEASE-p1 FreeBSD 5.0-RELEASE-p1 #0: Thu Feb 6 06:12:21 CET 2003 lofi@lofi.dyndns.org:/usr/obj/usr/src/sys/LOFI i386 >Description: Changes: - Add dependency on gnupg - Utilize USE_AUTOCONF_VER - Bump PORTREVISION >How-To-Repeat: >Fix: diff -urN newpg.orig/Makefile newpg/Makefile --- newpg.orig/Makefile Fri Feb 21 14:26:48 2003 +++ newpg/Makefile Mon Feb 24 15:05:16 2003 @@ -7,6 +7,7 @@ PORTNAME= newpg PORTVERSION= 0.9.4 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_GNUPG} MASTER_SITE_SUBDIR= alpha/aegypten @@ -14,14 +15,15 @@ MAINTAINER= michaelnottebrock@gmx.net COMMENT= Prerelease package of GnuPG extensions for GnuPG 2.0 -BUILD_DEPENDS= autoconf:${PORTSDIR}/devel/autoconf LIB_DEPENDS= gcrypt.6:${PORTSDIR}/security/libgcrypt \ iconv.3:${PORTSDIR}/converters/libiconv \ intl.4:${PORTSDIR}/devel/gettext \ ksba.7:${PORTSDIR}/security/libksba \ pth.20:${PORTSDIR}/devel/pth -RUN_DEPENDS= pinentry-curses:${PORTSDIR}/security/pinentry +RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg \ + pinentry-curses:${PORTSDIR}/security/pinentry +USE_AUTOCONF_VER=253 USE_LIBTOOL= yes USE_GMAKE= yes INSTALLS_SHLIB= yes >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 6:25:33 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7FDB237B401; Mon, 24 Feb 2003 06:25:32 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E58443FDD; Mon, 24 Feb 2003 06:25:32 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (leeym@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OEPWNS033313; Mon, 24 Feb 2003 06:25:32 -0800 (PST) (envelope-from leeym@freefall.freebsd.org) Received: (from leeym@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OEPV0a033309; Mon, 24 Feb 2003 06:25:31 -0800 (PST) Date: Mon, 24 Feb 2003 06:25:31 -0800 (PST) From: Yen-Ming Lee Message-Id: <200302241425.h1OEPV0a033309@freefall.freebsd.org> To: mich@freebsdcluster.org, leeym@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48627: Update port: [Maintainer Update]: security/hackbot Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: [Maintainer Update]: security/hackbot State-Changed-From-To: open->closed State-Changed-By: leeym State-Changed-When: Mon Feb 24 06:25:31 PST 2003 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48627 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 6:30:17 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A51BF37B401 for ; Mon, 24 Feb 2003 06:30:15 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD8FB43FBD for ; Mon, 24 Feb 2003 06:30:14 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OEUENS033412 for ; Mon, 24 Feb 2003 06:30:14 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OEUElv033411; Mon, 24 Feb 2003 06:30:14 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 83E0637B40F for ; Mon, 24 Feb 2003 06:22:45 -0800 (PST) Received: from kiwi.isdnet.net (xbeaudouin.isdnet.net [62.4.2.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id 78BC24413C for ; Mon, 24 Feb 2003 06:21:14 -0800 (PST) (envelope-from root@xbeaudouin.isdnet.net) Received: by kiwi.isdnet.net (Postfix, from userid 0) id 8DCEA1BAC5; Mon, 24 Feb 2003 15:14:39 +0100 (CET) Message-Id: <20030224141439.8DCEA1BAC5@kiwi.isdnet.net> Date: Mon, 24 Feb 2003 15:14:39 +0100 (CET) From: Xavier Beaudouin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48629: Maintainer: lang/pike73 to be removed. Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48629 >Category: ports >Synopsis: Maintainer: lang/pike73 to be removed. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 06:30:12 PST 2003 >Closed-Date: >Last-Modified: >Originator: Xavier Beaudouin >Release: FreeBSD 4.7-RELEASE-p3 i386 >Organization: The Caudium Group >Environment: System: FreeBSD kiwi.isdnet.net 4.7-RELEASE-p3 FreeBSD 4.7-RELEASE-p3 #0: Mon Jan 13 15:59:54 CET 2003 root@kiwi.isdnet.net:/usr/src/sys/compile/KIWI i386 >Description: Pike 7.3 is dead, it was a devel-branch and now it is replaced by pike 7.4 branch. So lang/pike73 should be removed from port collections. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 6:40:11 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 41CB337B406 for ; Mon, 24 Feb 2003 06:40:08 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1AE6243FDD for ; Mon, 24 Feb 2003 06:40:06 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OEe5NS041698 for ; Mon, 24 Feb 2003 06:40:05 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OEe5gf041697; Mon, 24 Feb 2003 06:40:05 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A55E237B405 for ; Mon, 24 Feb 2003 06:37:15 -0800 (PST) Received: from transport.cksoft.de (transport.cksoft.de [62.111.66.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 270A643F93 for ; Mon, 24 Feb 2003 06:37:13 -0800 (PST) (envelope-from ck@cksoft.de) Received: from localhost (localhost [127.0.0.1]) by transport.cksoft.de (Postfix) with ESMTP id 50F141FFB25; Mon, 24 Feb 2003 15:37:11 +0100 (CET) Received: from majakka.cksoft.de (p508AA572.dip.t-dialin.net [80.138.165.114]) (using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits)) (No client certificate requested) by transport.cksoft.de (Postfix) with ESMTP id 55A181FF97B; Mon, 24 Feb 2003 15:37:10 +0100 (CET) Received: from majakka.cksoft.de (localhost [127.0.0.1]) by majakka.cksoft.de (Postfix) with ESMTP id 8DE2644ABD; Mon, 24 Feb 2003 15:37:09 +0100 (CET) Received: by majakka.cksoft.de (Postfix, from userid 1000) id E206044ABA; Mon, 24 Feb 2003 15:37:08 +0100 (CET) Message-Id: <20030224143708.E206044ABA@majakka.cksoft.de> Date: Mon, 24 Feb 2003 15:37:08 +0100 (CET) From: Christian Kratzer Reply-To: Christian Kratzer To: FreeBSD-gnats-submit@FreeBSD.org Cc: Christian Kratzer X-Send-Pr-Version: 3.113 Subject: ports/48630: openldap21 port broken, file missing Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48630 >Category: ports >Synopsis: openldap21 port broken, file missing >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 06:40:05 PST 2003 >Closed-Date: >Last-Modified: >Originator: Christian Kratzer >Release: FreeBSD 4.7-STABLE i386 >Organization: CK Software GmbH >Environment: System: FreeBSD majakka.cksoft.de 4.7-STABLE FreeBSD 4.7-STABLE #1: Thu Dec 19 14:57:42 CET 2002 ck@majakka.cksoft.de:/usr/obj/usr/src/RELENG_4/src/sys/MAJAKKA i386 >Description: files/slapd.sh somehow ended up in the Attic in the initial repocopy and commit frenzy. Please either recover files/slapd.sh from Attic or recreate with attached patch. Due to this the port is currently broken and does not buil.d For consistency this is the same slapd.sh that is in the openldap20 port. Once this gets cleared up I will consider a new set of startup scripts for slapd and slurpd that pull their arguments from rc.conf as is coming popular. But lets get this fixed first.. >How-To-Repeat: >Fix: --- openldap21/files/slapd.sh.orig Mon Feb 24 15:27:02 2003 +++ openldap21/files/slapd.sh Mon Feb 24 15:27:44 2003 @@ -0,0 +1,47 @@ +#!/bin/sh +# +# $FreeBSD: ports/net/openldap20/files/slapd.sh,v 1.3 2002/09/19 21:49:55 ijliao Exp $ + +slapd_program=@@PREFIX@@/libexec/slapd + +# Uncomment one of the following: +# +# IPv4 Only +#slapd_args='-h ldap://0.0.0.0;' +# +# IPv6 and IPv4 +#slapd_ags='-h "ldap://[::] ldap://0.0.0.0";' +# +# IPv6 Only +#slapd_args='-h ldap://[::];' +# +# +slapd_args= + +pidfile=/var/run/slapd.pid + +case "$1" in +start) + if [ -x $slapd ]; then + echo -n ' slapd' + ${slapd_program} ${slapd_args} + + fi + ;; +stop) + if [ -f $pidfile ]; then + kill `cat $pidfile` + telnet localhost ldap /dev/null 2>&1 + echo -n ' slapd' + rm $pidfile + else + echo ' slapd: not running' + fi + ;; +*) + echo "Usage: `basename $0` {start|stop}" >&2 + exit 64 + ;; +esac + +exit 0 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 6:50:17 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5389937B401 for ; Mon, 24 Feb 2003 06:50:15 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C4E143F75 for ; Mon, 24 Feb 2003 06:50:13 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OEoCNS045735 for ; Mon, 24 Feb 2003 06:50:12 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OEoCtA045734; Mon, 24 Feb 2003 06:50:12 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 43C4437B401 for ; Mon, 24 Feb 2003 06:43:31 -0800 (PST) Received: from mail2.itxmarket.com (fw.itxmarket.com [213.11.40.109]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9032243FBF for ; Mon, 24 Feb 2003 06:43:30 -0800 (PST) (envelope-from root@icommerce-france.com) Received: from icommerce-france.com (extranet.itxmarket.com [192.168.2.24]) by mail2.itxmarket.com (Postfix) with ESMTP id D89F537C9C for ; Mon, 24 Feb 2003 15:36:02 +0100 (CET) Received: by icommerce-france.com (Postfix, from userid 0) id BE00F14A24; Mon, 24 Feb 2003 15:36:02 +0100 (CET) Message-Id: <20030224143602.BE00F14A24@icommerce-france.com> Date: Mon, 24 Feb 2003 15:36:02 +0100 (CET) From: "Michael L.Hostbaek" Reply-To: "Michael L.Hostbaek" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48631: Update port: [Maintainer Update]: net/cdpr Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48631 >Category: ports >Synopsis: Update port: [Maintainer Update]: net/cdpr >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 06:50:12 PST 2003 >Closed-Date: >Last-Modified: >Originator: Michael L. Hostbaek >Release: FreeBSD 4.7-STABLE i386 >Organization: FreeBSDCluster.org >Environment: System: FreeBSD extranet.itxmarket.com 4.7-STABLE FreeBSD 4.7-STABLE #0: Fri Oct 11 17:00:45 CEST 2002 root@extranet.itxmarket.com:/usr/obj/usr/src/sys/EXTRANET1 i386 >Description: Update to latest release. >How-To-Repeat: >Fix: diff -u -ruN cdpr.bak/Makefile cdpr/Makefile --- cdpr.bak/Makefile Mon Feb 24 15:14:30 2003 +++ cdpr/Makefile Mon Feb 24 15:31:09 2003 @@ -7,9 +7,10 @@ # PORTNAME= cdpr -PORTVERSION= 1.0.7 +PORTVERSION= 1.0.8 CATEGORIES= net MASTER_SITES= http://freebsdcluster.org/~mich/software/ \ + http://www.monkeymental.com/mmfiles/ \ ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR= ${PORTNAME} EXTRACT_SUFX= .tgz diff -u -ruN cdpr.bak/distinfo cdpr/distinfo --- cdpr.bak/distinfo Mon Feb 24 15:14:30 2003 +++ cdpr/distinfo Mon Feb 24 15:30:33 2003 @@ -1 +1 @@ -MD5 (cdpr-1.0.7.tgz) = 2a06a7f49364174e254525bae9e7add7 +MD5 (cdpr-1.0.8.tgz) = c254a396bd341f134225fbb6b06cb050 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 6:50:20 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77FA637B405 for ; Mon, 24 Feb 2003 06:50:15 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D430C43FAF for ; Mon, 24 Feb 2003 06:50:13 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OEoDNS045748 for ; Mon, 24 Feb 2003 06:50:13 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OEoDBS045747; Mon, 24 Feb 2003 06:50:13 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E1B437B401 for ; Mon, 24 Feb 2003 06:44:49 -0800 (PST) Received: from woozle.rinet.ru (woozle.rinet.ru [195.54.192.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id A22B843FAF for ; Mon, 24 Feb 2003 06:44:47 -0800 (PST) (envelope-from marck@woozle.rinet.ru) Received: from woozle.rinet.ru (localhost [127.0.0.1]) by woozle.rinet.ru (8.12.6/8.12.6) with ESMTP id h1OEij8U050123 for ; Mon, 24 Feb 2003 17:44:45 +0300 (MSK) (envelope-from marck@woozle.rinet.ru) Received: (from marck@localhost) by woozle.rinet.ru (8.12.7/8.12.6/Submit) id h1OEij9i050122; Mon, 24 Feb 2003 17:44:45 +0300 (MSK) Message-Id: <200302241444.h1OEij9i050122@woozle.rinet.ru> Date: Mon, 24 Feb 2003 17:44:45 +0300 (MSK) From: Dmitry Morozovsky Reply-To: Dmitry Morozovsky To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48632: net/ehnt update (fetch during build elimination) Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48632 >Category: ports >Synopsis: net/ehnt update (fetch during build elimination) >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 06:50:13 PST 2003 >Closed-Date: >Last-Modified: >Originator: Dmitry Morozovsky >Release: FreeBSD 4-STABLE i386 >Organization: Cronyx Plus LLC (RiNet ISP) >Environment: System: FreeBSD 4-STABLE >Description: New package building process disallows additional fetching of any additional files during port build process. Due to permanent changes in routing registry databases, it's wise for me to simply force to build package without possibly stale AS-numbers info. >How-To-Repeat: http://bento.freebsd.org/errorlogs/i386-5-latest/ehnt-0.3_2.log >Fix: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/net/ehnt/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- Makefile 21 Feb 2003 13:14:40 -0000 1.7 +++ Makefile 24 Feb 2003 14:38:39 -0000 @@ -7,14 +7,10 @@ PORTNAME= ehnt PORTVERSION= 0.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} -DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} -.if !defined(NO_ASN_DATA) -DISTFILES+= ${PORTNAME}_data-${PORTVERSION}${EXTRACT_SUFX} -.endif MAINTAINER= marck@rinet.ru COMMENT= A simple Cisco NetFlow data collector @@ -24,10 +20,8 @@ MAN1= ehnt.1 MAN8= ehntserv.8 -.if defined(NO_ASN_DATA) post-extract: ${TOUCH} ${WRKSRC}/asnc.txt -.endif do-install: ${INSTALL_PROGRAM} ${WRKSRC}/ehnt ${PREFIX}/bin/ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 7: 0:28 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E10D37B401 for ; Mon, 24 Feb 2003 07:00:26 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF66143FDF for ; Mon, 24 Feb 2003 07:00:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OF0LNS048029 for ; Mon, 24 Feb 2003 07:00:21 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OF0LS4048028; Mon, 24 Feb 2003 07:00:21 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD80337B401 for ; Mon, 24 Feb 2003 06:51:11 -0800 (PST) Received: from mail2.itxmarket.com (fw.itxmarket.com [213.11.40.109]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0497243FAF for ; Mon, 24 Feb 2003 06:51:11 -0800 (PST) (envelope-from root@icommerce-france.com) Received: from icommerce-france.com (extranet.itxmarket.com [192.168.2.24]) by mail2.itxmarket.com (Postfix) with ESMTP id 2BA1737CAB for ; Mon, 24 Feb 2003 15:49:00 +0100 (CET) Received: by icommerce-france.com (Postfix, from userid 0) id 1809914A24; Mon, 24 Feb 2003 15:49:00 +0100 (CET) Message-Id: <20030224144900.1809914A24@icommerce-france.com> Date: Mon, 24 Feb 2003 15:49:00 +0100 (CET) From: "Michael L.Hostbaek" Reply-To: "Michael L.Hostbaek" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48634: Update port: [Maintainer Update]: sysutils/vcp Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48634 >Category: ports >Synopsis: Update port: [Maintainer Update]: sysutils/vcp >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 07:00:21 PST 2003 >Closed-Date: >Last-Modified: >Originator: Michael L. Hostbaek >Release: FreeBSD 4.7-STABLE i386 >Organization: FreeBSDCluster.org >Environment: System: FreeBSD extranet.itxmarket.com 4.7-STABLE FreeBSD 4.7-STABLE #0: Fri Oct 11 17:00:45 CEST 2002 root@extranet.itxmarket.com:/usr/obj/usr/src/sys/EXTRANET1 i386 >Description: Update to latest release. >How-To-Repeat: >Fix: diff -u -ruN vcp.bak/Makefile vcp/Makefile --- vcp.bak/Makefile Mon Feb 24 15:45:02 2003 +++ vcp/Makefile Mon Feb 24 15:45:17 2003 @@ -7,7 +7,7 @@ # PORTNAME= vcp -PORTVERSION= 0.7 +PORTVERSION= 0.8 CATEGORIES= sysutils MASTER_SITES= http://members.optusnet.com.au/~dbbryan/vcp/ EXTRACT_SUFX= .tar.Z diff -u -ruN vcp.bak/distinfo vcp/distinfo --- vcp.bak/distinfo Mon Feb 24 15:45:02 2003 +++ vcp/distinfo Mon Feb 24 15:45:29 2003 @@ -1 +1 @@ -MD5 (vcp-0.7.tar.Z) = 4e1cf22a477416085498a6682871ef21 +MD5 (vcp-0.8.tar.Z) = cd3db66609e9ca36ff463021389e8cef >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 7: 0:30 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A87037B405 for ; Mon, 24 Feb 2003 07:00:26 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2217543FE9 for ; Mon, 24 Feb 2003 07:00:21 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OF0KNS048016 for ; Mon, 24 Feb 2003 07:00:20 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OF0KkA048015; Mon, 24 Feb 2003 07:00:20 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61B2437B401 for ; Mon, 24 Feb 2003 06:50:44 -0800 (PST) Received: from mail2.itxmarket.com (fw.itxmarket.com [213.11.40.109]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99DBF43F75 for ; Mon, 24 Feb 2003 06:50:43 -0800 (PST) (envelope-from root@icommerce-france.com) Received: from icommerce-france.com (extranet.itxmarket.com [192.168.2.24]) by mail2.itxmarket.com (Postfix) with ESMTP id A5EA637CA5 for ; Mon, 24 Feb 2003 15:43:17 +0100 (CET) Received: by icommerce-france.com (Postfix, from userid 0) id 52B6C14A24; Mon, 24 Feb 2003 15:43:17 +0100 (CET) Message-Id: <20030224144317.52B6C14A24@icommerce-france.com> Date: Mon, 24 Feb 2003 15:43:17 +0100 (CET) From: "Michael L.Hostbaek" Reply-To: "Michael L.Hostbaek" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48633: Update port: [Maintainer Update]: sysutils/spinner Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48633 >Category: ports >Synopsis: Update port: [Maintainer Update]: sysutils/spinner >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 07:00:20 PST 2003 >Closed-Date: >Last-Modified: >Originator: Michael L. Hostbaek >Release: FreeBSD 4.7-STABLE i386 >Organization: FreeBSDcluster.org >Environment: System: FreeBSD extranet.itxmarket.com 4.7-STABLE FreeBSD 4.7-STABLE #0: Fri Oct 11 17:00:45 CEST 2002 root@extranet.itxmarket.com:/usr/obj/usr/src/sys/EXTRANET1 i386 >Description: Update to latest release. >How-To-Repeat: >Fix: diff -u -ruN spinner.bak/Makefile spinner/Makefile --- spinner.bak/Makefile Mon Feb 24 15:38:24 2003 +++ spinner/Makefile Mon Feb 24 15:38:40 2003 @@ -7,7 +7,7 @@ # PORTNAME= spinner -PORTVERSION= 1.2.2 +PORTVERSION= 1.2.4 CATEGORIES= sysutils MASTER_SITES= http://downloads.laffeycomputer.com/current_builds/spinner/ diff -u -ruN spinner.bak/distinfo spinner/distinfo --- spinner.bak/distinfo Mon Feb 24 15:38:24 2003 +++ spinner/distinfo Mon Feb 24 15:38:45 2003 @@ -1 +1 @@ -MD5 (spinner-1.2.2.tar.gz) = bd185e7d5466485354f0463ce648e807 +MD5 (spinner-1.2.4.tar.gz) = 21d5d1c5ae20104f0cd36fdf6b0daa71 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 7:30:15 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E71537B401 for ; Mon, 24 Feb 2003 07:30:11 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F0B0943FAF for ; Mon, 24 Feb 2003 07:30:09 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OFU9NS003550 for ; Mon, 24 Feb 2003 07:30:09 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OFU93U003549; Mon, 24 Feb 2003 07:30:09 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 03D7737B401 for ; Mon, 24 Feb 2003 07:26:30 -0800 (PST) Received: from transport.cksoft.de (transport.cksoft.de [62.111.66.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BEB943F93 for ; Mon, 24 Feb 2003 07:26:29 -0800 (PST) (envelope-from ck@cksoft.de) Received: from localhost (localhost [127.0.0.1]) by transport.cksoft.de (Postfix) with ESMTP id 022CC1FFBA6; Mon, 24 Feb 2003 16:26:28 +0100 (CET) Received: from majakka.cksoft.de (p508AA572.dip.t-dialin.net [80.138.165.114]) (using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits)) (No client certificate requested) by transport.cksoft.de (Postfix) with ESMTP id 0B6DE1FFB78; Mon, 24 Feb 2003 16:26:27 +0100 (CET) Received: from majakka.cksoft.de (localhost [127.0.0.1]) by majakka.cksoft.de (Postfix) with ESMTP id E64A344ABD; Mon, 24 Feb 2003 16:26:25 +0100 (CET) Received: by majakka.cksoft.de (Postfix, from userid 1000) id AD1CA44ABA; Mon, 24 Feb 2003 16:26:23 +0100 (CET) Message-Id: <20030224152623.AD1CA44ABA@majakka.cksoft.de> Date: Mon, 24 Feb 2003 16:26:23 +0100 (CET) From: Christian Kratzer Reply-To: Christian Kratzer To: FreeBSD-gnats-submit@FreeBSD.org Cc: Christian Kratzer X-Send-Pr-Version: 3.113 Subject: ports/48635: Add support for openldap21 port Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48635 >Category: ports >Synopsis: Add support for openldap21 port >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 07:30:09 PST 2003 >Closed-Date: >Last-Modified: >Originator: Christian Kratzer >Release: FreeBSD 4.7-STABLE i386 >Organization: CK Software GmbH >Environment: System: FreeBSD majakka.cksoft.de 4.7-STABLE FreeBSD 4.7-STABLE #1: Thu Dec 19 14:57:42 CET 2002 ck@majakka.cksoft.de:/usr/obj/usr/src/RELENG_4/src/sys/MAJAKKA i386 >Description: This patch adds support for the new openldap21 port to cyrus-sasl2. Allow users to select if to build against openldap 2.0 or openldap 2.1. >How-To-Repeat: >Fix: --- cyrus-sasl2/scripts/configure.sasl.orig Mon Feb 24 16:07:19 2003 +++ cyrus-sasl2/scripts/configure.sasl Mon Feb 24 16:12:56 2003 @@ -48,7 +48,8 @@ NDBM "ndbm DB" ${SET_NDBM} \ DB3 "Berkeley DB, revision 3" ${SET_DB3} \ MySQL "MySQL password Authentication" ${SET_MYSQL} \ -OpenLDAP "OpenLDAP 2.x password Authentication w/TLS" ${SET_LDAP} \ +OpenLDAP20 "OpenLDAP 2.0 password Authentication w/TLS" OFF \ +OpenLDAP21 "OpenLDAP 2.1 password Authentication w/TLS" ${SET_LDAP} \ SASLAUTHD "Use saslauthd for password Authentication" ON \ 2> $tempfile @@ -106,11 +107,27 @@ echo "PLIST_SUB+= MYSQL=\"\"" DEFMYSQL=1 ;; - \"OpenLDAP\") + \"OpenLDAP20\") + if [ "$OPENLDAP21" ]; then + echo "OpenLDAP20 and OpenLDAP21 are mutually exclusive." > /dev/stderr + rm -f ${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc + exit 1 + fi echo "LIB_DEPENDS+= ldap.2:\${PORTSDIR}/net/openldap20" echo "LIB_DEPENDS+= lber.2:\${PORTSDIR}/net/openldap20" echo "CONFIGURE_ARGS+= --with-ldap=\${PREFIX}" - OPENLDAP=1 + OPENLDAP20=1 + ;; + \"OpenLDAP21\") + if [ "$OPENLDAP20" ]; then + echo "OpenLDAP20 and OpenLDAP21 are mutually exclusive." > /dev/stderr + rm -f ${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc + exit 1 + fi + echo "LIB_DEPENDS+= ldap.2:\${PORTSDIR}/net/openldap21" + echo "LIB_DEPENDS+= lber.2:\${PORTSDIR}/net/openldap21" + echo "CONFIGURE_ARGS+= --with-ldap=\${PREFIX}" + OPENLDAP21=1 ;; \"SASLAUTHD\") echo "PWCHECK_SUB+= -e \"s;%%PWCHECK%%;saslauthd;g\"" >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 8: 0:33 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4193C37B401 for ; Mon, 24 Feb 2003 08:00:30 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C6D1943FDD for ; Mon, 24 Feb 2003 08:00:27 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OG0RNS009900 for ; Mon, 24 Feb 2003 08:00:27 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OG0RHV009899; Mon, 24 Feb 2003 08:00:27 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A51637B401 for ; Mon, 24 Feb 2003 07:51:24 -0800 (PST) Received: from rcpt-expgw.biglobe.ne.jp (rcpt-expgw.biglobe.ne.jp [202.225.89.154]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0205E43F75 for ; Mon, 24 Feb 2003 07:51:23 -0800 (PST) (envelope-from kawata@mta.biglobe.ne.jp) Received: from smtp-gw.biglobe.ne.jp by rcpt-expgw.biglobe.ne.jp (mnmy/5508310702) with ESMTP id h1OFpMK16322 for ; Tue, 25 Feb 2003 00:51:22 +0900 (JST) Received: from figo (202.225.164.62 [202.225.164.62]) by smtp-gw.biglobe.ne.jp id AAVIC0A826A6; Tue, 25 Feb 2003 00:51:21 +0900 (JST) Message-Id: <20030225005633.59FB.KAWATA@mta.biglobe.ne.jp> Date: Tue, 25 Feb 2003 00:56:42 +0900 From: KAWATA Masahiko Reply-To: kawata@mta.biglobe.ne.jp To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48636: Build options in Makefile.local are ignored Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48636 >Category: ports >Synopsis: Build options in Makefile.local are ignored >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 08:00:27 PST 2003 >Closed-Date: >Last-Modified: >Originator: KAWATA Masahiko >Release: FreeBSD 4.7-STABLEE i386 >Organization: >Environment: FreeBSD coco 4.7-STABLE FreeBSD 4.7-STABLE #28: Fri Feb 21 18:30:35 JST 2003 kawata:/usr/src/sys/compile/COCO i386 >Description: To specify local build options, I use Makefile.local instead of command line. In many other ports this way is effective but it's ignored in sane-backends port. >How-To-Repeat: [/usr/ports/graphics/sane-backends]% cat Makefile.local WITH_GPHOTO2=yes [/usr/ports/graphics/sane-backends]% make >Fix: Use instead of -------- # diff -u Makefile.orig Makefile --- Makefile.orig Wed Feb 19 12:15:25 2003 +++ Makefile Mon Feb 24 19:13:24 2003 @@ -28,6 +28,8 @@ MAKE_ENV= NOPORTDOCS=${NOPORTDOCS} INSTALLS_SHLIB= yes +.include + .if defined(WITH_GPHOTO2) LIB_DEPENDS+= gphoto2.2:${PORTSDIR}/graphics/gphoto2 CONFIGURE_ARGS+= --with-gphoto2=yes @@ -49,4 +51,4 @@ s|gphoto2 2.0.1|gphoto2 2.0|g' ${WRKSRC}/configure .include "Makefile.man" -.include +.include >Release-Note: >Audit-Trail: >Unformatted: SEND-PR: -*- send-pr -*- SEND-PR: Lines starting with `SEND-PR' will be removed automatically, as SEND-PR: will all comments (text enclosed in `<' and `>'). SEND-PR: SEND-PR: Please consult the following URL if you are not sure how to SEND-PR: fill out a problem report: SEND-PR: http://www.freebsd.org/doc/en/articles/problem-reports/article.html SEND-PR: SEND-PR: Note that the Synopsis field is mandatory. SEND-PR: SEND-PR: Please note that (unless you state otherwise) if your report SEND-PR: includes a patch then it will be taken under the same license as SEND-PR: the one on the file(s) you want to change. SEND-PR: SEND-PR: BE ADVISED THAT FREEBSD PROBLEM REPORTS ARE PUBLIC INFORMATION AND SEND-PR: WILL BE PUBLISHED AS-IS ON THE PROJECT'S MAILING LISTS AND WEB SITES. SEND-PR: DO NOT SUBMIT ANY INFORMATION YOU DO NOT WANT MADE PUBLIC. SEND-PR: SEND-PR: For sensitive security issues, consider contacting the FreeBSD SEND-PR: security officer team (security-officer@freebsd.org) directly. SEND-PR: SEND-PR: Choose from the following categories: SEND-PR: SEND-PR: advocacy alpha bin conf docs gnu SEND-PR: i386 ia64 java kern misc ports SEND-PR: powerpc sparc64 standards www SEND-PR: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 8: 0:49 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9951337B405 for ; Mon, 24 Feb 2003 08:00:30 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D4F9C43FE3 for ; Mon, 24 Feb 2003 08:00:28 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OG0SNS009913 for ; Mon, 24 Feb 2003 08:00:28 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OG0S5M009912; Mon, 24 Feb 2003 08:00:28 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 62CD837B401 for ; Mon, 24 Feb 2003 07:53:03 -0800 (PST) Received: from ftp.translate.ru (ftp.translate.ru [195.131.4.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFAF143F93 for ; Mon, 24 Feb 2003 07:53:01 -0800 (PST) (envelope-from lev@ftp.translate.ru) Received: from ftp.translate.ru (localhost [127.0.0.1]) by ftp.translate.ru (8.12.6/8.12.6) with ESMTP id h1OFtsG1067999; Mon, 24 Feb 2003 18:55:54 +0300 (MSK) (envelope-from lev@ftp.translate.ru) Received: (from lev@localhost) by ftp.translate.ru (8.12.6/8.12.6/Submit) id h1OFtmZY067998; Mon, 24 Feb 2003 18:55:48 +0300 (MSK) (envelope-from lev) Message-Id: <200302241555.h1OFtmZY067998@ftp.translate.ru> Date: Mon, 24 Feb 2003 18:55:48 +0300 (MSK) From: "Lev A. Serebryakov" Reply-To: "Lev A. Serebryakov" To: FreeBSD-gnats-submit@FreeBSD.org, gcross@netspace.net.au X-Send-Pr-Version: 3.113 Subject: ports/48637: Update for port devel/cppunit Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48637 >Category: ports >Synopsis: Update for port devel/cppunit >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 08:00:27 PST 2003 >Closed-Date: >Last-Modified: >Originator: Lev A. Serebryakov >Release: FreeBSD 4.6-STABLE i386 >Organization: >Environment: System: FreeBSD freebsd.sereb.net 4.6-STABLE FreeBSD 4.6-STABLE #0: Thu Aug 8 20:06:13 MSD 2002 root@freebsd.sereb.net:/usr/obj/usr/src/sys/LEVMAIL i386 Ports collection: 24 Feb 2003 >Description: This PR updates `devel/cppunit' to latest 1.8.0 version. Documentation is not builded by default, because it need `devel/doxygen'. Added files: files/patch-doc::Makefile.in >How-To-Repeat: >Fix: diff -ruN cppunit.orig/Makefile cppunit/Makefile --- cppunit.orig/Makefile Sun Feb 23 23:06:23 2003 +++ cppunit/Makefile Mon Feb 24 18:48:23 2003 @@ -5,28 +5,47 @@ # $FreeBSD: ports/devel/cppunit/Makefile,v 1.2 2003/02/21 11:22:28 knu Exp $ PORTNAME= cppunit -PORTVERSION= 1.6.2 +PORTVERSION= 1.8.0 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} +.if defined(WITH_DOXYGEN) +BUILD_DEPENDS= doxygen:${PORTSDIR}/devel/doxygen +.endif + MAINTAINER= gcross@netspace.net.au COMMENT= C++ port of the JUnit framework for unit testing HAS_CONFIGURE= yes +.if defined(WITH_DOXYGEN) && !defined(NOPORTDOCS) +CONFIGURE_ARGS+= --enable-doc --enable-doxygen --enable-html-docs +PLIST_SUB+= DOXYGEN="" +.else +CONFIGURE_ARGS+= --disable-doc --disable-doxygen +PLIST_SUB+= DOXYGEN="@comment " +.endif INSTALLS_SHLIB= yes .if !defined(NOMAN) MAN1= cppunit-config.1 .endif MANCOMPRESSED= no +pre-everything: +.if !defined(WITH_DOXYGEN) && !defined(NOPORTDOCS) + @${ECHO_MSG} + @${ECHO_MSG} You could define WITH_DOXYGEN if you want HTML documentation + @${ECHO_MSG} +.endif + post-install: .if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/cppunit - ${INSTALL_MAN} ${WRKSRC}/NEWS ${PREFIX}/share/doc/cppunit - ${INSTALL_MAN} ${WRKSRC}/README ${PREFIX}/share/doc/cppunit +.if !defined(WITH_DOXYGEN) + ${MKDIR} -p ${PREFIX}/share/doc/cppunit ${INSTALL_MAN} ${WRKSRC}/doc/FAQ ${PREFIX}/share/doc/cppunit - ${INSTALL_MAN} ${WRKSRC}/doc/cookbook.html ${PREFIX}/share/doc/cppunit +.endif + ${INSTALL_MAN} ${WRKSRC}/NEWS ${PREFIX}/share/doc/cppunit + ${INSTALL_MAN} ${WRKSRC}/README ${PREFIX}/share/doc/cppunit .endif - + .include diff -ruN cppunit.orig/distinfo cppunit/distinfo --- cppunit.orig/distinfo Sun Feb 23 23:06:23 2003 +++ cppunit/distinfo Sun Feb 23 23:08:19 2003 @@ -1 +1 @@ -MD5 (cppunit-1.6.2.tar.gz) = ac2876beb323b9a68ddb9499bf3e6c04 +MD5 (cppunit-1.8.0.tar.gz) = 9f18d97ca99b4f095f5ff18139df59c3 diff -ruN cppunit.orig/files/patch-doc::Makefile.in cppunit/files/patch-doc::Makefile.in --- cppunit.orig/files/patch-doc::Makefile.in Thu Jan 1 03:00:00 1970 +++ cppunit/files/patch-doc::Makefile.in Mon Feb 24 18:23:01 2003 @@ -0,0 +1,20 @@ +--- doc/Makefile.in.orig Mon Feb 24 13:30:22 2003 ++++ doc/Makefile.in Mon Feb 24 13:31:51 2003 +@@ -108,7 +108,7 @@ + # and an extra copy or two in the install-data-hook. + # However, the manpages do not appear to be tremendously useful, so + # let's not bother. +-@DOC_TRUE@htmldir = $(pkgdatadir)/html ++@DOC_TRUE@htmldir = $(prefix)/share/doc/cppunit + @DOC_TRUE@html_DATA = $(static_pages) html/index.html + subdir = doc + mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs +@@ -263,7 +263,7 @@ + + + @DOC_TRUE@install-data-hook: +-@DOC_TRUE@ cp -dpR html/* $(DESTDIR)$(htmldir) ++@DOC_TRUE@ cp -pR html/* $(htmldir) + + # Automake's "distcheck" is sensitive to having files left over + # after "make uninstall", so we have to clean up the install hook. diff -ruN cppunit.orig/pkg-plist cppunit/pkg-plist --- cppunit.orig/pkg-plist Sun Feb 23 23:06:23 2003 +++ cppunit/pkg-plist Mon Feb 24 18:24:04 2003 @@ -1,42 +1,455 @@ -bin/cppunit-config -include/cppunit/Exception.h -include/cppunit/NotEqualException.h -include/cppunit/Portability.h -include/cppunit/Test.h -include/cppunit/TestAssert.h -include/cppunit/TestCaller.h -include/cppunit/TestCase.h -include/cppunit/TestFailure.h -include/cppunit/TestListener.h -include/cppunit/TestRegistry.h -include/cppunit/TestResult.h -include/cppunit/TestSuite.h -include/cppunit/TextTestResult.h -include/cppunit/TextTestRunner.h -include/cppunit/config-auto.h -include/cppunit/config-bcb5.h -include/cppunit/config-msvc6.h -include/cppunit/extensions/AutoRegisterSuite.h -include/cppunit/extensions/HelperMacros.h -include/cppunit/extensions/Orthodox.h -include/cppunit/extensions/RepeatedTest.h -include/cppunit/extensions/TestDecorator.h -include/cppunit/extensions/TestFactory.h -include/cppunit/extensions/TestFactoryRegistry.h -include/cppunit/extensions/TestSetUp.h -include/cppunit/extensions/TestSuiteBuilder.h -include/cppunit/extensions/TestSuiteFactory.h -include/cppunit/extensions/TypeInfoHelper.h -lib/libcppunit-1.6.so -lib/libcppunit-1.6.so.0 -lib/libcppunit.a -lib/libcppunit.la -lib/libcppunit.so -share/aclocal/cppunit.m4 -%%PORTDOCS%%share/doc/cppunit/NEWS -%%PORTDOCS%%share/doc/cppunit/README -%%PORTDOCS%%share/doc/cppunit/FAQ -%%PORTDOCS%%share/doc/cppunit/cookbook.html -%%PORTDOCS%%@dirrm share/doc/cppunit -@dirrm include/cppunit/extensions -@dirrm include/cppunit +bin/cppunit-config +include/cppunit/Asserter.h +include/cppunit/CompilerOutputter.h +include/cppunit/config-auto.h +include/cppunit/config-bcb5.h +include/cppunit/config-msvc6.h +include/cppunit/Exception.h +include/cppunit/extensions/AutoRegisterSuite.h +include/cppunit/extensions/HelperMacros.h +include/cppunit/extensions/Orthodox.h +include/cppunit/extensions/RepeatedTest.h +include/cppunit/extensions/TestDecorator.h +include/cppunit/extensions/TestFactory.h +include/cppunit/extensions/TestFactoryRegistry.h +include/cppunit/extensions/TestSetUp.h +include/cppunit/extensions/TestSuiteBuilder.h +include/cppunit/extensions/TestSuiteFactory.h +include/cppunit/extensions/TypeInfoHelper.h +include/cppunit/NotEqualException.h +include/cppunit/Outputter.h +include/cppunit/Portability.h +include/cppunit/SourceLine.h +include/cppunit/SynchronizedObject.h +include/cppunit/Test.h +include/cppunit/TestAssert.h +include/cppunit/TestCaller.h +include/cppunit/TestCase.h +include/cppunit/TestFailure.h +include/cppunit/TestFixture.h +include/cppunit/TestListener.h +include/cppunit/TestResult.h +include/cppunit/TestResultCollector.h +include/cppunit/TestSucessListener.h +include/cppunit/TestSuite.h +include/cppunit/TextOutputter.h +include/cppunit/TextTestProgressListener.h +include/cppunit/TextTestResult.h +include/cppunit/TextTestRunner.h +include/cppunit/ui/mfc/TestRunner.h +include/cppunit/ui/qt/Config.h +include/cppunit/ui/qt/TestRunner.h +include/cppunit/ui/text/TestRunner.h +include/cppunit/XmlOutputter.h +lib/libcppunit-1.8.so +lib/libcppunit-1.8.so.0 +lib/libcppunit.a +lib/libcppunit.la +lib/libcppunit.so +share/aclocal/cppunit.m4 +%%PORTDOCS%%share/doc/cppunit/README +%%PORTDOCS%%share/doc/cppunit/FAQ +%%PORTDOCS%%share/doc/cppunit/NEWS +%%DOXYGEN%%share/doc/cppunit/_asserter_8cpp.html +%%DOXYGEN%%share/doc/cppunit/_asserter_8cpp__incl.png +%%DOXYGEN%%share/doc/cppunit/_asserter_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_asserter_8h.html +%%DOXYGEN%%share/doc/cppunit/_asserter_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/_asserter_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_auto_register_suite_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_auto_register_suite_8h.html +%%DOXYGEN%%share/doc/cppunit/_auto_register_suite_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/_auto_register_suite_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_compiler_outputter_8cpp.html +%%DOXYGEN%%share/doc/cppunit/_compiler_outputter_8cpp__incl.png +%%DOXYGEN%%share/doc/cppunit/_compiler_outputter_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_compiler_outputter_8h.html +%%DOXYGEN%%share/doc/cppunit/_compiler_outputter_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/_compiler_outputter_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_config_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_config_8h.html +%%DOXYGEN%%share/doc/cppunit/_config_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/_dll_main_8cpp.html +%%DOXYGEN%%share/doc/cppunit/_dll_main_8cpp__incl.png +%%DOXYGEN%%share/doc/cppunit/_exception_8cpp.html +%%DOXYGEN%%share/doc/cppunit/_exception_8cpp__incl.png +%%DOXYGEN%%share/doc/cppunit/_exception_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_exception_8h.html +%%DOXYGEN%%share/doc/cppunit/_exception_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/_exception_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_helper_macros_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_helper_macros_8h.html +%%DOXYGEN%%share/doc/cppunit/_helper_macros_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_not_equal_exception_8cpp.html +%%DOXYGEN%%share/doc/cppunit/_not_equal_exception_8cpp__incl.png +%%DOXYGEN%%share/doc/cppunit/_not_equal_exception_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_not_equal_exception_8h.html +%%DOXYGEN%%share/doc/cppunit/_not_equal_exception_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/_not_equal_exception_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_orthodox_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_orthodox_8h.html +%%DOXYGEN%%share/doc/cppunit/_orthodox_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_outputter_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_outputter_8h.html +%%DOXYGEN%%share/doc/cppunit/_outputter_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/_outputter_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_portability_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_portability_8h.html +%%DOXYGEN%%share/doc/cppunit/_portability_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/_portability_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_repeated_test_8cpp.html +%%DOXYGEN%%share/doc/cppunit/_repeated_test_8cpp__incl.png +%%DOXYGEN%%share/doc/cppunit/_repeated_test_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_repeated_test_8h.html +%%DOXYGEN%%share/doc/cppunit/_repeated_test_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/_repeated_test_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_source_line_8cpp.html +%%DOXYGEN%%share/doc/cppunit/_source_line_8cpp__incl.png +%%DOXYGEN%%share/doc/cppunit/_source_line_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_source_line_8h.html +%%DOXYGEN%%share/doc/cppunit/_source_line_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/_source_line_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_synchronized_object_8cpp.html +%%DOXYGEN%%share/doc/cppunit/_synchronized_object_8cpp__incl.png +%%DOXYGEN%%share/doc/cppunit/_synchronized_object_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_synchronized_object_8h.html +%%DOXYGEN%%share/doc/cppunit/_synchronized_object_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/_synchronized_object_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_test_8h.html +%%DOXYGEN%%share/doc/cppunit/_test_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_assert_8cpp.html +%%DOXYGEN%%share/doc/cppunit/_test_assert_8cpp__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_assert_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_test_assert_8h.html +%%DOXYGEN%%share/doc/cppunit/_test_assert_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_assert_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_caller_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_test_caller_8h.html +%%DOXYGEN%%share/doc/cppunit/_test_caller_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_caller_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_case_8cpp.html +%%DOXYGEN%%share/doc/cppunit/_test_case_8cpp__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_case_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_test_case_8h.html +%%DOXYGEN%%share/doc/cppunit/_test_case_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_case_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_decorator_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_test_decorator_8h.html +%%DOXYGEN%%share/doc/cppunit/_test_decorator_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_decorator_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_factory_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_test_factory_8h.html +%%DOXYGEN%%share/doc/cppunit/_test_factory_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_factory_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_factory_registry_8cpp.html +%%DOXYGEN%%share/doc/cppunit/_test_factory_registry_8cpp__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_factory_registry_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_test_factory_registry_8h.html +%%DOXYGEN%%share/doc/cppunit/_test_factory_registry_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_factory_registry_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_failure_8cpp.html +%%DOXYGEN%%share/doc/cppunit/_test_failure_8cpp__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_failure_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_test_failure_8h.html +%%DOXYGEN%%share/doc/cppunit/_test_failure_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_failure_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_fixture_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_test_fixture_8h.html +%%DOXYGEN%%share/doc/cppunit/_test_fixture_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_fixture_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_listener_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_test_listener_8h.html +%%DOXYGEN%%share/doc/cppunit/_test_listener_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_listener_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_plug_in_interface_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_test_plug_in_interface_8h.html +%%DOXYGEN%%share/doc/cppunit/_test_plug_in_interface_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_result_8cpp.html +%%DOXYGEN%%share/doc/cppunit/_test_result_8cpp__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_result_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_test_result_8h.html +%%DOXYGEN%%share/doc/cppunit/_test_result_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_result_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_result_collector_8cpp.html +%%DOXYGEN%%share/doc/cppunit/_test_result_collector_8cpp__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_result_collector_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_test_result_collector_8h.html +%%DOXYGEN%%share/doc/cppunit/_test_result_collector_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_result_collector_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_runner_8cpp.html +%%DOXYGEN%%share/doc/cppunit/_test_runner_8cpp__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_set_up_8cpp.html +%%DOXYGEN%%share/doc/cppunit/_test_set_up_8cpp__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_set_up_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_test_set_up_8h.html +%%DOXYGEN%%share/doc/cppunit/_test_set_up_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_set_up_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_sucess_listener_8cpp.html +%%DOXYGEN%%share/doc/cppunit/_test_sucess_listener_8cpp__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_sucess_listener_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_test_sucess_listener_8h.html +%%DOXYGEN%%share/doc/cppunit/_test_sucess_listener_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_sucess_listener_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_suite_8cpp.html +%%DOXYGEN%%share/doc/cppunit/_test_suite_8cpp__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_suite_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_test_suite_8h.html +%%DOXYGEN%%share/doc/cppunit/_test_suite_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_suite_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_suite_builder_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_test_suite_builder_8h.html +%%DOXYGEN%%share/doc/cppunit/_test_suite_builder_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_suite_builder_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_suite_factory_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_test_suite_factory_8h.html +%%DOXYGEN%%share/doc/cppunit/_test_suite_factory_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/_test_suite_factory_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_text_outputter_8cpp.html +%%DOXYGEN%%share/doc/cppunit/_text_outputter_8cpp__incl.png +%%DOXYGEN%%share/doc/cppunit/_text_outputter_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_text_outputter_8h.html +%%DOXYGEN%%share/doc/cppunit/_text_outputter_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/_text_outputter_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_text_test_progress_listener_8cpp.html +%%DOXYGEN%%share/doc/cppunit/_text_test_progress_listener_8cpp__incl.png +%%DOXYGEN%%share/doc/cppunit/_text_test_progress_listener_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_text_test_progress_listener_8h.html +%%DOXYGEN%%share/doc/cppunit/_text_test_progress_listener_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/_text_test_progress_listener_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_text_test_result_8cpp.html +%%DOXYGEN%%share/doc/cppunit/_text_test_result_8cpp__incl.png +%%DOXYGEN%%share/doc/cppunit/_text_test_result_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_text_test_result_8h.html +%%DOXYGEN%%share/doc/cppunit/_text_test_result_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/_text_test_result_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_text_test_runner_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_text_test_runner_8h.html +%%DOXYGEN%%share/doc/cppunit/_text_test_runner_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_type_info_helper_8cpp.html +%%DOXYGEN%%share/doc/cppunit/_type_info_helper_8cpp__incl.png +%%DOXYGEN%%share/doc/cppunit/_type_info_helper_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_type_info_helper_8h.html +%%DOXYGEN%%share/doc/cppunit/_type_info_helper_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/_xml_outputter_8cpp.html +%%DOXYGEN%%share/doc/cppunit/_xml_outputter_8cpp__incl.png +%%DOXYGEN%%share/doc/cppunit/_xml_outputter_8h-source.html +%%DOXYGEN%%share/doc/cppunit/_xml_outputter_8h.html +%%DOXYGEN%%share/doc/cppunit/_xml_outputter_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/_xml_outputter_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/annotated.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_auto_register_suite-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_auto_register_suite.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_compiler_outputter-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_compiler_outputter.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_compiler_outputter__coll__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_compiler_outputter__inherit__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_exception-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_exception.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_exception_1_1_type-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_exception_1_1_type.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_exception__coll__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_exception__inherit__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_mfc_ui_1_1_test_runner-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_mfc_ui_1_1_test_runner.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_mfc_ui_1_1_test_runner__coll__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_named_registries-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_named_registries.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_no_exception_expected-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_no_exception_expected.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_not_equal_exception-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_not_equal_exception.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_not_equal_exception__coll__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_not_equal_exception__inherit__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_orthodox-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_orthodox.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_orthodox__coll__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_orthodox__inherit__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_outputter-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_outputter.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_outputter__inherit__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_qt_ui_1_1_test_runner-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_qt_ui_1_1_test_runner.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_qt_ui_1_1_test_runner__coll__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_repeated_test-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_repeated_test.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_repeated_test__coll__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_repeated_test__inherit__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_source_line-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_source_line.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_synchronized_object-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_synchronized_object.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_synchronized_object_1_1_exclusive_zone-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_synchronized_object_1_1_exclusive_zone.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_synchronized_object_1_1_exclusive_zone__coll__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_synchronized_object_1_1_synchronization_object-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_synchronized_object_1_1_synchronization_object.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_synchronized_object__coll__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_synchronized_object__inherit__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test__inherit__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_caller-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_caller.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_caller__coll__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_caller__inherit__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_case-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_case.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_case__coll__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_case__inherit__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_decorator-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_decorator.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_decorator__coll__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_decorator__inherit__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_factory-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_factory.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_factory__inherit__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_factory_registry-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_factory_registry.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_factory_registry__coll__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_factory_registry__inherit__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_failure-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_failure.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_failure__coll__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_fixture-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_fixture.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_fixture__inherit__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_fixture_factory-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_fixture_factory.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_listener-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_listener.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_listener__inherit__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_result-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_result.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_result__coll__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_result__inherit__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_result_collector-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_result_collector.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_result_collector__coll__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_result_collector__inherit__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_set_up-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_set_up.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_set_up__coll__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_set_up__inherit__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_sucess_listener-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_sucess_listener.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_sucess_listener__coll__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_sucess_listener__inherit__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_suite-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_suite.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_suite__coll__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_suite__inherit__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_suite_builder-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_suite_builder.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_suite_factory-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_suite_factory.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_suite_factory__coll__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_test_suite_factory__inherit__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_text_outputter-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_text_outputter.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_text_outputter__coll__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_text_outputter__inherit__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_text_test_progress_listener-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_text_test_progress_listener.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_text_test_progress_listener__coll__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_text_test_progress_listener__inherit__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_text_test_result-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_text_test_result.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_text_test_result__coll__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_text_test_result__inherit__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_text_ui_1_1_test_runner-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_text_ui_1_1_test_runner.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_text_ui_1_1_test_runner__coll__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_xml_outputter-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_xml_outputter.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_xml_outputter_1_1_node-members.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_xml_outputter_1_1_node.html +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_xml_outputter__coll__graph.png +%%DOXYGEN%%share/doc/cppunit/class_cpp_unit_1_1_xml_outputter__inherit__graph.png +%%DOXYGEN%%share/doc/cppunit/class_test_plug_in_interface-members.html +%%DOXYGEN%%share/doc/cppunit/class_test_plug_in_interface.html +%%DOXYGEN%%share/doc/cppunit/classes.html +%%DOXYGEN%%share/doc/cppunit/cookbook_8dox.html +%%DOXYGEN%%share/doc/cppunit/cppunit_2ui_2mfc_2_test_runner_8h-source.html +%%DOXYGEN%%share/doc/cppunit/cppunit_2ui_2mfc_2_test_runner_8h.html +%%DOXYGEN%%share/doc/cppunit/cppunit_2ui_2mfc_2_test_runner_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/cppunit_2ui_2mfc_2_test_runner_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/cppunit_2ui_2qt_2_test_runner_8h-source.html +%%DOXYGEN%%share/doc/cppunit/cppunit_2ui_2qt_2_test_runner_8h.html +%%DOXYGEN%%share/doc/cppunit/cppunit_2ui_2qt_2_test_runner_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/cppunit_2ui_2text_2_test_runner_8h-source.html +%%DOXYGEN%%share/doc/cppunit/cppunit_2ui_2text_2_test_runner_8h.html +%%DOXYGEN%%share/doc/cppunit/cppunit_2ui_2text_2_test_runner_8h__dep__incl.png +%%DOXYGEN%%share/doc/cppunit/cppunit_2ui_2text_2_test_runner_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/cppunit_cookbook.html +%%DOXYGEN%%share/doc/cppunit/deprecated.html +%%DOXYGEN%%share/doc/cppunit/doxygen.css +%%DOXYGEN%%share/doc/cppunit/doxygen.png +%%DOXYGEN%%share/doc/cppunit/files.html +%%DOXYGEN%%share/doc/cppunit/functions.html +%%DOXYGEN%%share/doc/cppunit/globals.html +%%DOXYGEN%%share/doc/cppunit/graph_legend.dot +%%DOXYGEN%%share/doc/cppunit/graph_legend.html +%%DOXYGEN%%share/doc/cppunit/graph_legend.png +%%DOXYGEN%%share/doc/cppunit/group___assertions.html +%%DOXYGEN%%share/doc/cppunit/group___browsing_collected_test_result.html +%%DOXYGEN%%share/doc/cppunit/group___creating_new_assertions.html +%%DOXYGEN%%share/doc/cppunit/group___creating_test_suite.html +%%DOXYGEN%%share/doc/cppunit/group___executing_test.html +%%DOXYGEN%%share/doc/cppunit/group___tracking_test_execution.html +%%DOXYGEN%%share/doc/cppunit/group___writing_test_fixture.html +%%DOXYGEN%%share/doc/cppunit/group___writing_test_result.html +%%DOXYGEN%%share/doc/cppunit/hierarchy.html +%%DOXYGEN%%share/doc/cppunit/index.html +%%DOXYGEN%%share/doc/cppunit/inherit__graph__0.png +%%DOXYGEN%%share/doc/cppunit/inherit__graph__1.png +%%DOXYGEN%%share/doc/cppunit/inherit__graph__10.png +%%DOXYGEN%%share/doc/cppunit/inherit__graph__11.png +%%DOXYGEN%%share/doc/cppunit/inherit__graph__12.png +%%DOXYGEN%%share/doc/cppunit/inherit__graph__13.png +%%DOXYGEN%%share/doc/cppunit/inherit__graph__14.png +%%DOXYGEN%%share/doc/cppunit/inherit__graph__15.png +%%DOXYGEN%%share/doc/cppunit/inherit__graph__16.png +%%DOXYGEN%%share/doc/cppunit/inherit__graph__17.png +%%DOXYGEN%%share/doc/cppunit/inherit__graph__18.png +%%DOXYGEN%%share/doc/cppunit/inherit__graph__19.png +%%DOXYGEN%%share/doc/cppunit/inherit__graph__2.png +%%DOXYGEN%%share/doc/cppunit/inherit__graph__20.png +%%DOXYGEN%%share/doc/cppunit/inherit__graph__21.png +%%DOXYGEN%%share/doc/cppunit/inherit__graph__22.png +%%DOXYGEN%%share/doc/cppunit/inherit__graph__3.png +%%DOXYGEN%%share/doc/cppunit/inherit__graph__4.png +%%DOXYGEN%%share/doc/cppunit/inherit__graph__5.png +%%DOXYGEN%%share/doc/cppunit/inherit__graph__6.png +%%DOXYGEN%%share/doc/cppunit/inherit__graph__7.png +%%DOXYGEN%%share/doc/cppunit/inherit__graph__8.png +%%DOXYGEN%%share/doc/cppunit/inherit__graph__9.png +%%DOXYGEN%%share/doc/cppunit/inherits.html +%%DOXYGEN%%share/doc/cppunit/modules.html +%%DOXYGEN%%share/doc/cppunit/msvc6_2testrunner_2_test_runner_8h-source.html +%%DOXYGEN%%share/doc/cppunit/msvc6_2testrunner_2_test_runner_8h.html +%%DOXYGEN%%share/doc/cppunit/msvc6_2testrunner_2_test_runner_8h__incl.png +%%DOXYGEN%%share/doc/cppunit/namespace_cpp_unit.html +%%DOXYGEN%%share/doc/cppunit/namespace_cpp_unit_1_1_asserter.html +%%DOXYGEN%%share/doc/cppunit/namespace_cpp_unit_1_1_mfc_ui.html +%%DOXYGEN%%share/doc/cppunit/namespace_cpp_unit_1_1_qt_ui.html +%%DOXYGEN%%share/doc/cppunit/namespace_cpp_unit_1_1_test_assert.html +%%DOXYGEN%%share/doc/cppunit/namespace_cpp_unit_1_1_text_ui.html +%%DOXYGEN%%share/doc/cppunit/namespacemembers.html +%%DOXYGEN%%share/doc/cppunit/namespaces.html +%%DOXYGEN%%share/doc/cppunit/other__documentation_8dox.html +%%DOXYGEN%%share/doc/cppunit/pages.html +%%DOXYGEN%%share/doc/cppunit/struct_cpp_unit_1_1_expected_exception_traits-members.html +%%DOXYGEN%%share/doc/cppunit/struct_cpp_unit_1_1_expected_exception_traits.html +%%DOXYGEN%%share/doc/cppunit/struct_cpp_unit_1_1_expected_exception_traits_3_01_no_exception_expected_01_4-members.html +%%DOXYGEN%%share/doc/cppunit/struct_cpp_unit_1_1_expected_exception_traits_3_01_no_exception_expected_01_4.html +%%DOXYGEN%%share/doc/cppunit/struct_cpp_unit_1_1assertion__traits-members.html +%%DOXYGEN%%share/doc/cppunit/struct_cpp_unit_1_1assertion__traits.html +%%PORTDOCS%%@dirrm share/doc/cppunit +@dirrm include/cppunit/extensions +@dirrm include/cppunit/ui/mfc +@dirrm include/cppunit/ui/qt +@dirrm include/cppunit/ui/text +@dirrm include/cppunit/ui +@dirrm include/cppunit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 8:24: 7 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA60837B401; Mon, 24 Feb 2003 08:24:05 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 412C243FD7; Mon, 24 Feb 2003 08:24:05 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (leeym@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OGO5NS020095; Mon, 24 Feb 2003 08:24:05 -0800 (PST) (envelope-from leeym@freefall.freebsd.org) Received: (from leeym@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OGO4KR020091; Mon, 24 Feb 2003 08:24:04 -0800 (PST) Date: Mon, 24 Feb 2003 08:24:04 -0800 (PST) From: Yen-Ming Lee Message-Id: <200302241624.h1OGO4KR020091@freefall.freebsd.org> To: hetzels@westbend.net, leeym@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48555: www/frontpage* - File permissions changed after install Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: www/frontpage* - File permissions changed after install State-Changed-From-To: open->closed State-Changed-By: leeym State-Changed-When: Mon Feb 24 08:24:04 PST 2003 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48555 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 8:36: 1 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 75B1E37B405; Mon, 24 Feb 2003 08:36:00 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18EBE43FCB; Mon, 24 Feb 2003 08:36:00 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (leeym@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OGZxNS022413; Mon, 24 Feb 2003 08:35:59 -0800 (PST) (envelope-from leeym@freefall.freebsd.org) Received: (from leeym@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OGZxgs022409; Mon, 24 Feb 2003 08:35:59 -0800 (PST) Date: Mon, 24 Feb 2003 08:35:59 -0800 (PST) From: Yen-Ming Lee Message-Id: <200302241635.h1OGZxgs022409@freefall.freebsd.org> To: hetzels@westbend.net, leeym@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/47944: NEW PORT: mod_frontpage{13,20} Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: NEW PORT: mod_frontpage{13,20} State-Changed-From-To: open->closed State-Changed-By: leeym State-Changed-When: Mon Feb 24 08:35:59 PST 2003 State-Changed-Why: superceeded by ports/48217. http://www.freebsd.org/cgi/query-pr.cgi?pr=47944 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 8:42: 7 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E814837B4AB; Mon, 24 Feb 2003 08:42:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63D5D43F3F; Mon, 24 Feb 2003 08:42:03 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (leeym@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OGg3NS024501; Mon, 24 Feb 2003 08:42:03 -0800 (PST) (envelope-from leeym@freefall.freebsd.org) Received: (from leeym@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OGg3h8024497; Mon, 24 Feb 2003 08:42:03 -0800 (PST) Date: Mon, 24 Feb 2003 08:42:03 -0800 (PST) From: Yen-Ming Lee Message-Id: <200302241642.h1OGg3h8024497@freefall.freebsd.org> To: mich@freebsdcluster.org, leeym@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48633: Update port: [Maintainer Update]: sysutils/spinner Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: [Maintainer Update]: sysutils/spinner State-Changed-From-To: open->closed State-Changed-By: leeym State-Changed-When: Mon Feb 24 08:42:02 PST 2003 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48633 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 8:43:53 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4AFD37B417; Mon, 24 Feb 2003 08:43:50 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB35643FA3; Mon, 24 Feb 2003 08:43:49 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (leeym@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OGhnNS024561; Mon, 24 Feb 2003 08:43:49 -0800 (PST) (envelope-from leeym@freefall.freebsd.org) Received: (from leeym@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OGhnYv024557; Mon, 24 Feb 2003 08:43:49 -0800 (PST) Date: Mon, 24 Feb 2003 08:43:49 -0800 (PST) From: Yen-Ming Lee Message-Id: <200302241643.h1OGhnYv024557@freefall.freebsd.org> To: mich@freebsdcluster.org, leeym@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48634: Update port: [Maintainer Update]: sysutils/vcp Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: [Maintainer Update]: sysutils/vcp State-Changed-From-To: open->closed State-Changed-By: leeym State-Changed-When: Mon Feb 24 08:43:49 PST 2003 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48634 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 9:19:29 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AAC6C37B401; Mon, 24 Feb 2003 09:19:28 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 002AC43FB1; Mon, 24 Feb 2003 09:19:27 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (leeym@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OHJRNS034758; Mon, 24 Feb 2003 09:19:27 -0800 (PST) (envelope-from leeym@freefall.freebsd.org) Received: (from leeym@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OHJRLi034754; Mon, 24 Feb 2003 09:19:27 -0800 (PST) Date: Mon, 24 Feb 2003 09:19:27 -0800 (PST) From: Yen-Ming Lee Message-Id: <200302241719.h1OHJRLi034754@freefall.freebsd.org> To: mich@freebsdcluster.org, leeym@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48631: Update port: [Maintainer Update]: net/cdpr Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: [Maintainer Update]: net/cdpr State-Changed-From-To: open->closed State-Changed-By: leeym State-Changed-When: Mon Feb 24 09:19:27 PST 2003 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48631 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 9:20:12 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E904537B405 for ; Mon, 24 Feb 2003 09:20:09 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 25E5A43FBF for ; Mon, 24 Feb 2003 09:20:08 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OHK7NS034799 for ; Mon, 24 Feb 2003 09:20:07 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OHK7TR034798; Mon, 24 Feb 2003 09:20:07 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 136B237B405 for ; Mon, 24 Feb 2003 09:12:50 -0800 (PST) Received: from sparky.acsmail.com (acsmail.com [66.73.61.222]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B77F43F3F for ; Mon, 24 Feb 2003 09:12:49 -0800 (PST) (envelope-from tgeier@sparky.acsmail.com) Received: from phoenix.acsmail.com (acsmail.com [66.73.61.222]) by sparky.acsmail.com (8.12.5/8.12.5) with ESMTP id h1OHCl4L014045 for ; Mon, 24 Feb 2003 12:12:48 -0500 Received: from phoenix.acsmail.com (localhost.acsmail.com [127.0.0.1]) by phoenix.acsmail.com (8.12.6/8.12.3) with ESMTP id h1OHCkk6024298 for ; Mon, 24 Feb 2003 12:12:47 -0500 (EST) (envelope-from tgeier@phoenix.acsmail.com) Received: (from tgeier@localhost) by phoenix.acsmail.com (8.12.6/8.12.3/Submit) id h1OHCjHa024297; Mon, 24 Feb 2003 12:12:45 -0500 (EST) Message-Id: <200302241712.h1OHCjHa024297@phoenix.acsmail.com> Date: Mon, 24 Feb 2003 12:12:45 -0500 (EST) From: "Timothy R. Geier" Reply-To: "Timothy R. Geier" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48639: logjam2 port fails to link with glib Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48639 >Category: ports >Synopsis: logjam2 port fails to link with glib >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 09:20:07 PST 2003 >Closed-Date: >Last-Modified: >Originator: Timothy R. Geier >Release: FreeBSD 4.7-RELEASE i386 >Organization: >Environment: System: FreeBSD phoenix.acsmail.com 4.7-RELEASE FreeBSD 4.7-RELEASE #16: Wed Jan 8 09:30:16 EST 2003 root@phoenix.acsmail.com:/usr/src/sys/compile/PHOENIX i386 >Description: During the link of the logjam2 port, the following fatal errors are produced: /usr/local/lib/libgthread12.so.3: undefined reference to `pthread_mutex_trylock' /usr/local/lib/libgthread12.so.3: undefined reference to `pthread_cond_timedwait' gmake[2]: *** [logjam] Error 1 gmake[2]: Leaving directory `/usr/ports/deskutils/logjam2/work/logjam-4.0.0/src' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/deskutils/logjam2/work/logjam-4.0.0' gmake: *** [all-recursive-am] Error 2 *** Error code 2 Stop in /usr/ports/deskutils/logjam2. Whether this is a problem with logjam2 and/or glib is unknown. >How-To-Repeat: Attempt to build logjam2 with an updated ports tree. >Fix: Unknown. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 10:20:15 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F65737B410 for ; Mon, 24 Feb 2003 10:20:12 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFC0E43FE3 for ; Mon, 24 Feb 2003 10:20:10 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OIKANS051271 for ; Mon, 24 Feb 2003 10:20:10 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OIKAMx051270; Mon, 24 Feb 2003 10:20:10 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B250537B401 for ; Mon, 24 Feb 2003 10:11:53 -0800 (PST) Received: from vaio.alexdupre.com (212-41-211-209.adsl.galactica.it [212.41.211.209]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7DC543FE1 for ; Mon, 24 Feb 2003 10:11:51 -0800 (PST) (envelope-from alex@vaio.alexdupre.com) Received: from vaio.alexdupre.com (localhost [127.0.0.1]) by vaio.alexdupre.com (8.12.7/8.12.7) with ESMTP id h1OIBnnV041054 for ; Mon, 24 Feb 2003 19:11:49 +0100 (CET) (envelope-from alex@vaio.alexdupre.com) Received: (from alex@localhost) by vaio.alexdupre.com (8.12.7/8.12.7/Submit) id h1OIBmm9041053; Mon, 24 Feb 2003 19:11:48 +0100 (CET) Message-Id: <200302241811.h1OIBmm9041053@vaio.alexdupre.com> Date: Mon, 24 Feb 2003 19:11:48 +0100 (CET) From: Alex Dupre Reply-To: Alex Dupre To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48640: Port: math/libgmp4 (Enable MPFR - Take Maintainership) Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48640 >Category: ports >Synopsis: Port: math/libgmp4 (Enable MPFR - Take Maintainership) >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 10:20:10 PST 2003 >Closed-Date: >Last-Modified: >Originator: Alex Dupre >Release: FreeBSD 4.8-ALEXDUPRE i386 >Organization: >Environment: System: FreeBSD vaio.alexdupre.com 4.8-ALEXDUPRE FreeBSD 4.8-ALEXDUPRE #0: Sat Feb 22 15:23:34 CET 2003 root@vaio.alexdupre.com:/usr/obj/usr/src/sys/VAIO i386 >Description: Enable building of MPFR, a C library for multiple-precision floating-point computations with exact rounding, in GMP. Take maintainership. Supersedes PR 48023. >How-To-Repeat: >Fix: --- libgmp4.diff begins here --- diff -ruN libgmp4/Makefile libgmp4.new/Makefile --- libgmp4/Makefile Fri Feb 21 09:24:13 2003 +++ libgmp4.new/Makefile Sun Feb 23 17:15:16 2003 @@ -8,22 +8,22 @@ PORTNAME= libgmp PORTVERSION= 4.1.2 +PORTREVISION= 1 CATEGORIES= math devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= gmp DISTNAME= gmp-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sysadmin@alexdupre.com COMMENT= A free library for arbitrary precision arithmetic USE_REINPLACE= yes USE_LIBTOOL= yes -CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL} -CONFIGURE_ARGS= --enable-cxx +CONFIGURE_ARGS= --enable-cxx --enable-mpfr INSTALLS_SHLIB= yes post-patch: - @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \ - 's|--tag=CC||g' + @${FIND} ${WRKSRC} -name "Makefile.in" | \ + ${XARGS} ${REINPLACE_CMD} -e 's|--tag=CC||g' .include diff -ruN libgmp4/pkg-descr libgmp4.new/pkg-descr --- libgmp4/pkg-descr Tue Jun 5 07:22:15 2001 +++ libgmp4.new/pkg-descr Sun Feb 23 17:07:22 2003 @@ -18,5 +18,5 @@ WWW: http://www.swox.com/gmp/ --- Ying-Chieh Liao - ijliao@csie.nctu.edu.tw +- Alex Dupre +sysadmin@alexdupre.com diff -ruN libgmp4/pkg-plist libgmp4.new/pkg-plist --- libgmp4/pkg-plist Tue Jan 14 19:54:23 2003 +++ libgmp4.new/pkg-plist Sun Feb 23 17:05:22 2003 @@ -1,5 +1,8 @@ include/gmp.h include/gmpxx.h +include/mpf2mpfr.h +include/mpfr.h +include/mpfrxx.h @unexec install-info --delete %D/info/gmp.info %D/info/dir info/gmp.info info/gmp.info-1 @@ -12,9 +15,13 @@ info/gmp.info-8 info/gmp.info-9 @exec install-info %D/info/gmp.info %D/info/dir +@unexec install-info --delete %D/info/mpfr.info %D/info/dir +info/mpfr.info +@exec install-info %D/info/mpfr.info %D/info/dir lib/libgmp.a lib/libgmp.so lib/libgmp.so.6 lib/libgmpxx.a lib/libgmpxx.so lib/libgmpxx.so.3 +lib/libmpfr.a --- libgmp4.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 10:40:17 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 45C7337B401 for ; Mon, 24 Feb 2003 10:40:12 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B695743FCB for ; Mon, 24 Feb 2003 10:40:10 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OIeANS055493 for ; Mon, 24 Feb 2003 10:40:10 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OIeACY055492; Mon, 24 Feb 2003 10:40:10 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5903F37B401 for ; Mon, 24 Feb 2003 10:30:58 -0800 (PST) Received: from phobos.raisdorf.net (phobos.raisdorf.net [195.244.235.251]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F17043FA3 for ; Mon, 24 Feb 2003 10:30:56 -0800 (PST) (envelope-from hscholz@goanna.lan.raisdorf.net) Received: by phobos.raisdorf.net (Postfix, from userid 66) id 3208A23AFB; Mon, 24 Feb 2003 19:29:50 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by platypus.lan.raisdorf.net (Postfix) with ESMTP id E8E0C5C7B; Mon, 24 Feb 2003 19:05:44 +0100 (CET) Received: from platypus.lan.raisdorf.net ([127.0.0.1]) by localhost (platypus.lan.raisdorf.net [127.0.0.1:10024]) (amavisd-new) with ESMTP id 16686-08; Mon, 24 Feb 2003 19:05:43 +0100 (CET) Received: from goanna.lan.raisdorf.net (goanna.lan.raisdorf.net [10.10.1.2]) by platypus.lan.raisdorf.net (Postfix) with ESMTP id 504AA5C28; Mon, 24 Feb 2003 19:05:43 +0100 (CET) Received: from goanna.lan.raisdorf.net (localhost [127.0.0.1]) by goanna.lan.raisdorf.net (8.12.6/8.12.6) with ESMTP id h1OI6DZY000479; Mon, 24 Feb 2003 19:06:13 +0100 (CET) (envelope-from hscholz@goanna.lan.raisdorf.net) Received: (from hscholz@localhost) by goanna.lan.raisdorf.net (8.12.6/8.12.6/Submit) id h1NGYd2I010083; Sun, 23 Feb 2003 17:34:39 +0100 (CET) Message-Id: <200302231634.h1NGYd2I010083@goanna.lan.raisdorf.net> Date: Sun, 23 Feb 2003 17:34:39 +0100 (CET) From: Hendrik Scholz Reply-To: Hendrik Scholz To: FreeBSD-gnats-submit@FreeBSD.org Cc: Hendrik Scholz X-Send-Pr-Version: 3.113 Subject: ports/48641: new port: net/wmnetload: a network load dockapp Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48641 >Category: ports >Synopsis: new port: net/wmnetload: a network load dockapp >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 10:40:08 PST 2003 >Closed-Date: >Last-Modified: >Originator: Hendrik Scholz >Release: FreeBSD 5.0-CURRENT i386 >Organization: NetUSE AG >Environment: System: FreeBSD goanna.lan.raisdorf.net 5.0-CURRENT FreeBSD 5.0-CURRENT #2: Fri Jan 24 01:44:03 CET 2003 hscholz@goanna.lan.raisdorf.net:/source/src/sys/i386/compile/GOANNA i386 >Description: wmnetload is a windowmaker dockapp showing the network load while reassambling the look&feel of dockapps like wmcpuload and wmmemload. I previously sent ports/47981 which hasn't been committed yet so it should be closed. Changes since pr 47981: - update to 1.3 - de-pkg-comment - remove files/ as my patches made it into the main distribution >How-To-Repeat: >Fix: --- wmnetload-1.3.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # wmnetload # wmnetload/Makefile # wmnetload/distinfo # wmnetload/pkg-descr # wmnetload/pkg-plist # echo c - wmnetload mkdir -p wmnetload > /dev/null 2>&1 echo x - wmnetload/Makefile sed 's/^X//' >wmnetload/Makefile << 'END-of-wmnetload/Makefile' X# New ports collection makefile for: wmnetload X# Date created: 6 February 2003 X# Whom: Hendrik Scholz X# X# $FreeBSD$ X# X XPORTNAME= wmnetload XPORTVERSION= 1.3 XCATEGORIES= windowmaker afterstep net XMASTER_SITES= ftp://truffula.com/pub/ X XMAINTAINER= hendrik@scholz.net XCOMMENT= Network load monitor dockapp X XBUILD_DEPENDS= ${X11BASE}/include/dockapp.h:${PORTSDIR}/x11-wm/libdockapp X XUSE_BZIP2= yes XGNU_CONFIGURE= yes X Xpost-install: X.if !defined(NOPORTDOCS) X @${MKDIR} ${PREFIX}/share/doc/wmnetload X @${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/wmnetload/ X.endif X X.include END-of-wmnetload/Makefile echo x - wmnetload/distinfo sed 's/^X//' >wmnetload/distinfo << 'END-of-wmnetload/distinfo' XMD5 (wmnetload-1.3.tar.bz2) = f2a0507cd526ce2c6977ebe9252df81c END-of-wmnetload/distinfo echo x - wmnetload/pkg-descr sed 's/^X//' >wmnetload/pkg-descr << 'END-of-wmnetload/pkg-descr' Xwmnetload is a network interface monitor dockapp. It is designed to Xfit well with dockapps like wmcpuload and wmmemmon. X XWWW: http://freshmeat.net/projects/wmnetload X X-- Hendrik Scholz END-of-wmnetload/pkg-descr echo x - wmnetload/pkg-plist sed 's/^X//' >wmnetload/pkg-plist << 'END-of-wmnetload/pkg-plist' Xbin/wmnetload X%%PORTDOCS%%share/doc/wmnetload/README X%%PORTDOCS%%@dirrm share/doc/wmnetload END-of-wmnetload/pkg-plist exit --- wmnetload-1.3.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 12:10: 9 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0758837B401 for ; Mon, 24 Feb 2003 12:10:07 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC34D43FA3 for ; Mon, 24 Feb 2003 12:10:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OKA5NS006506 for ; Mon, 24 Feb 2003 12:10:05 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OKA5Ke006505; Mon, 24 Feb 2003 12:10:05 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 889B937B401 for ; Mon, 24 Feb 2003 12:01:51 -0800 (PST) Received: from mail.karamazov.org (h162-040-089-010.adsl.navix.net [162.40.89.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3FE0C43FD7 for ; Mon, 24 Feb 2003 12:01:50 -0800 (PST) (envelope-from smoberly@karamazov.org) Received: from xavier.karamazov.org (xavier.karamazov.org [10.0.0.2]) by mail.karamazov.org (8.12.6/8.12.6) with ESMTP id h1OK1nVV095661 for ; Mon, 24 Feb 2003 14:01:49 -0600 (CST) (envelope-from smoberly@karamazov.org) Received: (from smoberly@localhost) by xavier.karamazov.org (8.12.7/8.12.7/Submit) id h1OK1m4F070303; Mon, 24 Feb 2003 14:01:48 -0600 (CST) (envelope-from smoberly) Message-Id: <200302242001.h1OK1m4F070303@xavier.karamazov.org> Date: Mon, 24 Feb 2003 14:01:48 -0600 (CST) From: "Scott A. Moberly" Reply-To: "Scott A. Moberly" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48643: Maintainer update: kmamerun for 5.x Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48643 >Category: ports >Synopsis: Maintainer update: kmamerun for 5.x >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 12:10:05 PST 2003 >Closed-Date: >Last-Modified: >Originator: Scott A. Moberly >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: FreeBSD xavier.karamazov.org 4.7-STABLE FreeBSD 4.7-STABLE #4: Sat Feb 15 11:31:04 CST 2003 root@xavier.karamazov.org:/usr/src/sys/compile/XAVIER i386 >Description: kmamerun fails to compile of FreeBSD 5.x >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # files/patch-kmamerun+gamelist.h # echo x - files/patch-kmamerun+gamelist.h sed 's/^X//' >files/patch-kmamerun+gamelist.h << 'END-of-files/patch-kmamerun+gamelist.h' X*** kmamerun/gamelist.h.orig Tue Aug 6 09:15:28 2002 X--- kmamerun/gamelist.h Mon Feb 24 11:07:07 2003 X*************** X*** 54,60 **** X int size; X bool valid; X }; X! typedef std::map > GameListMap; X X GameListMap gamelist; X bool modified; X--- 54,60 ---- X int size; X bool valid; X }; X! typedef std::map > GameListMap; X X GameListMap gamelist; X bool modified; END-of-files/patch-kmamerun+gamelist.h exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 12:12: 9 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3CE0837B401; Mon, 24 Feb 2003 12:12:09 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D4A7C43F3F; Mon, 24 Feb 2003 12:12:08 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OKC8NS007870; Mon, 24 Feb 2003 12:12:08 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OKC29W007822; Mon, 24 Feb 2003 12:12:02 -0800 (PST) Date: Mon, 24 Feb 2003 12:12:02 -0800 (PST) From: Edwin Groothuis Message-Id: <200302242012.h1OKC29W007822@freefall.freebsd.org> To: ck@cksoft.de, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48630: openldap21 port broken, file missing Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: openldap21 port broken, file missing State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Mon Feb 24 12:11:42 PST 2003 State-Changed-Why: Commited, thanks! (my fault) http://www.freebsd.org/cgi/query-pr.cgi?pr=48630 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 12:20: 9 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F04E37B401 for ; Mon, 24 Feb 2003 12:20:07 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 39FC443FA3 for ; Mon, 24 Feb 2003 12:20:07 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OKK7NS016192 for ; Mon, 24 Feb 2003 12:20:07 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OKK7r4016189; Mon, 24 Feb 2003 12:20:07 -0800 (PST) Date: Mon, 24 Feb 2003 12:20:07 -0800 (PST) Message-Id: <200302242020.h1OKK7r4016189@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Yen-Ming Lee Subject: Re: ports/47907: New port : misc/gubby Reply-To: Yen-Ming Lee Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/47907; it has been noted by GNATS. From: Yen-Ming Lee To: freebsd-gnats-submit@FreeBSD.org, mich@freebsdcluster.org Cc: Subject: Re: ports/47907: New port : misc/gubby Date: Tue, 25 Feb 2003 04:09:56 +0800 --xHFwDpU9dbj6ez1V Content-Type: text/plain; charset=big5 Content-Disposition: inline Content-Transfer-Encoding: 8bit Would it be better to put in "mail" category ? -- Yen-Ming Lee [§õ«Û©ú] KeyID: 0x5EB52E51 : www.leeym.com : Taipei, Taiwan leeym@{leeym.com,FreeBSD.org,yahoo-inc.com,ntu.edu.tw,civil.ncku.edu.tw} --xHFwDpU9dbj6ez1V Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iQCVAwUBPlp8FMnMx0NetS5RAQHBMgQAmDC79lZMPWcajP6a+M+Dwy2+i7wqHySz 12pUNyrhttdz3BbMHfbsS7EMxGqetxbngMNy9zZgGH5EyKsu+b6mQvUrD6tgAkPL V5w0gvewggV7WUk8fDdV99pcFkksXzP8eYlln3sYmWrxu8COKYqaj4mp/1qiCkXj T7AtosdB0eI= =7CvW -----END PGP SIGNATURE----- --xHFwDpU9dbj6ez1V-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 12:30:24 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BAC837B401 for ; Mon, 24 Feb 2003 12:30:21 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A0D343FDF for ; Mon, 24 Feb 2003 12:30:06 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OKU5NS019240 for ; Mon, 24 Feb 2003 12:30:05 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OKU5JZ019239; Mon, 24 Feb 2003 12:30:05 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C50B37B406 for ; Mon, 24 Feb 2003 12:27:15 -0800 (PST) Received: from pm4-03.lft.widomaker.com (pm4-03.lft.widomaker.com [206.246.249.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BC4E43F75 for ; Mon, 24 Feb 2003 12:27:12 -0800 (PST) (envelope-from jason@pm4-03.lft.widomaker.com) Received: (from jason@localhost) by pm4-03.lft.widomaker.com (8.11.3/8.11.3) id h1OKR9l07671; Mon, 24 Feb 2003 15:27:09 -0500 (EST) (envelope-from jason) Message-Id: <200302242027.h1OKR9l07671@pm4-03.lft.widomaker.com> Date: Mon, 24 Feb 2003 15:27:09 -0500 (EST) From: Jason Harris Reply-To: Jason Harris To: FreeBSD-gnats-submit@FreeBSD.org Cc: Jason Harris X-Send-Pr-Version: 3.113 Subject: ports/48644: [maintainer-update] ports/www/elinks - fix gzip-encoded pages Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48644 >Category: ports >Synopsis: [maintainer-update] ports/www/elinks - fix gzip-encoded pages >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 12:30:05 PST 2003 >Closed-Date: >Last-Modified: >Originator: Jason Harris >Release: FreeBSD 4.3-RELEASE i386 >Organization: none here >Environment: System: FreeBSD 4.3-RELEASE i386 >Description: make gzip-encoded pages display properly >How-To-Repeat: apply patch below >Fix: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 NotDashEscaped: You need GnuPG to verify this message ? files/patch-compression cvs server: Diffing . Index: Makefile =================================================================== RCS file: /home/ncvs/ports/www/elinks/Makefile,v retrieving revision 1.25 diff -u -r1.25 Makefile --- Makefile 2003/02/21 14:01:15 1.25 +++ Makefile 2003/02/24 20:16:40 @@ -7,6 +7,7 @@ PORTNAME= elinks PORTVERSION= 0.4.2 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://elinks.or.cz/download/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.asc cvs server: Diffing files --- /dev/null Mon Feb 24 15:17:19 2003 +++ files/patch-compression Mon Feb 24 14:52:31 2003 @@ -0,0 +1,44 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 +NotDashEscaped: You need GnuPG to verify this message + + +# copied from: +# http://archive.linuxfromscratch.org/mail-archives/links-list/2003/02/att-0021/01-elinks-openbsd_bug.patch +# http://archive.linuxfromscratch.org/mail-archives/links-list/2003/02/0021.html + +--- src/protocol/http/http.c.orig Sun Feb 9 02:14:19 2003 ++++ src/protocol/http/http.c Sun Feb 9 02:21:10 2003 +@@ -710,6 +710,8 @@ + } + + do { ++ int init; ++ + if (to_read == PIPE_BUF / 2) { + /* ... we aren't finishing yet. */ + int written = write(conn->stream_pipes[1], data, +@@ -743,12 +745,13 @@ + conn->stream = open_encoded(conn->stream_pipes[0], + conn->content_encoding); + if (!conn->stream) return NULL; +- } ++ else init = 1; ++ } else init = 0; + + output = (unsigned char *) mem_realloc(output, *new_len + to_read); + if (!output) break; + +- did_read = read_encoded(conn->stream, output + *new_len, to_read); ++ did_read = read_encoded(conn->stream, output + *new_len, init ? PIPE_BUF / 4 : to_read); + if (did_read > 0) *new_len += did_read; + } while (!(!len && did_read != to_read)); + + +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.2.1 (FreeBSD) + +iD8DBQE+Wnf/SypIl9OdoOMRAiKLAJ9UoMBFqKp6Z5WQPCpWyyLnZ5js3ACfbalV +mEIH0ioE4rpuE/Tmcu9nj08= +=5S2+ +-----END PGP SIGNATURE----- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+Wn62SypIl9OdoOMRAqpzAJ43PmuFd9Ytd/gu2Tju6MNBFM6ZuwCgpnIm okXnhu3psxJIujyvZpH7boo= =MZvf -----END PGP SIGNATURE----- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 12:30:32 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 78FA237B405 for ; Mon, 24 Feb 2003 12:30:25 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F5E943F93 for ; Mon, 24 Feb 2003 12:30:06 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OKU6NS019253 for ; Mon, 24 Feb 2003 12:30:06 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OKU6J5019252; Mon, 24 Feb 2003 12:30:06 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 604B937B405 for ; Mon, 24 Feb 2003 12:29:39 -0800 (PST) Received: from lautre.net (estelle.lautre.net [80.67.164.8]) by mx1.FreeBSD.org (Postfix) with SMTP id A69DD43FAF for ; Mon, 24 Feb 2003 12:29:37 -0800 (PST) (envelope-from thierry@pompo.net) Received: (qmail 24544 invoked by alias); 24 Feb 2003 20:29:31 -0000 Received: from unknown (HELO graf.pompo.net) (62.147.48.161) by estelle.lautre.net with SMTP; 24 Feb 2003 20:29:31 -0000 Received: by graf.pompo.net (Postfix, from userid 1001) id 2AAB176B1; Mon, 24 Feb 2003 21:28:35 +0100 (CET) Message-Id: <20030224202835.2AAB176B1@graf.pompo.net> Date: Mon, 24 Feb 2003 21:28:35 +0100 (CET) From: Thierry Thomas Reply-To: Thierry Thomas To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48645: mail/imp3: upgrading to IMP 3.2. Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48645 >Category: ports >Synopsis: mail/imp3: upgrading to IMP 3.2. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 12:30:06 PST 2003 >Closed-Date: >Last-Modified: >Originator: Thierry Thomas >Release: FreeBSD 4.7-STABLE i386 >Organization: Kabbale Eros >Environment: System: FreeBSD graf.pompo.net 4.7-STABLE FreeBSD 4.7-STABLE #0: Sun Feb 16 20:58:08 CET 2003 thierry@graf.pompo.net:/usr/obj/mntsrc/src/sys/GRAF020727 i386 >Description: (From ML announce@lists.horde.org) Major new changes in this release: - Several workarounds for buggy browser behaviour when downloading attachments - Warning before a user session times out - Allow creation of folder names in other charsets than iso-8859-1 - New image mime type viewer - VFS (Virtual Filesystem) support for attachments in composed messages - New translations: Bulgarian, Lithuanian, Romanian, Latvian, Catalan - Many bug fixes. The full list of changes can be viewed here: . >How-To-Repeat: N/A. >Fix: Please apply this patch: diff -urN mail/imp3.orig/Makefile mail/imp3/Makefile --- mail/imp3.orig/Makefile Mon Feb 24 03:56:33 2003 +++ mail/imp3/Makefile Mon Feb 24 21:12:02 2003 @@ -6,8 +6,7 @@ # PORTNAME= imp -PORTVERSION= 3.1 -PORTREVISION= 3 +PORTVERSION= 3.2 CATEGORIES= mail www MASTER_SITES= ftp://ftp.horde.org/pub/imp/ \ ftp://ftp.au.horde.org/pub/horde/imp/ \ @@ -19,8 +18,6 @@ MAINTAINER= thierry@pompo.net COMMENT= A webmail system which accesses mail over IMAP -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} - #----------------------------------------------------------------------- # You may define these options: # @@ -128,6 +125,8 @@ NO_BUILD= yes USE_REINPLACE= yes +LDD= /usr/bin/ldd + REINPLACE_ARGS= -i.beforeIMP DOCS= COPYING README docs/CHANGES docs/CREDITS docs/INSTALL CONFFILE= conf.php filter.txt header.txt html.php menu.php \ @@ -148,6 +147,7 @@ HCONFDIR= ${HORDEDIR}/config HORDE_INC= ${LOCALBASE}/etc/horde +PHPSO?= ${LOCALBASE}/libexec/apache/libphp4.so HOSTNAME?= `/bin/hostname` SERVOS?= ${OPSYS}-${OSREL} @@ -174,7 +174,7 @@ ${ECHO_MSG} "" ; \ ${FALSE} ; \ fi - @if ! ${LDCONFIG} -r | ${GREP} -q -e "c-client4.8"; then \ + @if ! ${LDD} ${PHPSO} | ${GREP} -q -e "libc-client4"; then \ ${ECHO_MSG} "" ; \ ${ECHO_MSG} "Please configure PHP with IMAP or IMAP-SSL support." ; \ ${ECHO_MSG} "" ; \ @@ -192,14 +192,14 @@ .endif .if !defined(WITHOUT_LDAP) .if defined(WITH_LDAP1) - @if ! ${LDCONFIG} -r | ${GREP} -q -e "ldap.1"; then \ + @if ! ${LDD} ${PHPSO} | ${GREP} -q -e "libldap.so.1"; then \ ${ECHO_MSG} "" ; \ ${ECHO_MSG} "Please configure PHP with OpenLDAP support." ; \ ${ECHO_MSG} "" ; \ ${FALSE} ; \ fi .else - @if ! ${LDCONFIG} -r | ${GREP} -q -e "ldap.2"; then \ + @if ! ${LDD} ${PHPSO} | ${GREP} -q -e "libldap.so.2"; then \ ${ECHO_MSG} "" ; \ ${ECHO_MSG} "Please configure PHP with OpenLDAP2 support." ; \ ${ECHO_MSG} "" ; \ @@ -208,7 +208,7 @@ .endif .endif .if !defined(NOCRYPT) - @if ! ${LDCONFIG} -r | ${GREP} -q -e "mcrypt.8"; then \ + @if ! ${LDD} ${PHPSO} | ${GREP} -q -e "libmcrypt.so.8"; then \ ${ECHO_MSG} "" ; \ ${ECHO_MSG} "Please configure PHP with mcrypt support." ; \ ${ECHO_MSG} "" ; \ @@ -216,10 +216,10 @@ fi .endif .if !defined(WITHOUT_SUPPORTED_DB) - @if ! ${LDCONFIG} -r | ${GREP} -q -e "mysqlclient.10" ; then \ - if ! ${LDCONFIG} -r | ${GREP} -q -e "pq.3" ; then \ - if ! ${LDCONFIG} -r | ${GREP} -q -e "sybdb.1" ; then \ - if ! ${LDCONFIG} -r | ${GREP} -q -e "ct.0" ; then \ + @if ! ${LDD} ${PHPSO} | ${GREP} -q -e "libmysqlclient.so.10"; then \ + if ! ${LDD} ${PHPSO} | ${GREP} -q -e "libpq.so.3" ; then \ + if ! ${LDD} ${PHPSO} | ${GREP} -q -e "libsybdb.so.1" ; then \ + if ! ${LDD} ${PHPSO} | ${GREP} -q -e "libct.so.0" ; then \ ${ECHO_MSG} "" ; \ ${ECHO_MSG} "Please configure PHP with a database support." ; \ ${ECHO_MSG} "MySQL, PostgreSQL and Sybase (CTLIB or DBLIB)" ; \ diff -urN mail/imp3.orig/distinfo mail/imp3/distinfo --- mail/imp3.orig/distinfo Tue Jun 18 09:42:58 2002 +++ mail/imp3/distinfo Mon Feb 24 19:11:21 2003 @@ -1 +1 @@ -MD5 (imp-3.1.tar.gz) = 73ff42a32e3ee3617fd411be356cb70f +MD5 (imp-3.2.tar.gz) = f40c9cb7e65516837f08692803f295ea diff -urN mail/imp3.orig/pkg-plist mail/imp3/pkg-plist --- mail/imp3.orig/pkg-plist Tue Jun 18 09:42:58 2002 +++ mail/imp3/pkg-plist Mon Feb 24 20:42:29 2003 @@ -44,6 +44,7 @@ %%IMPDIR%%/graphics/draft.gif %%IMPDIR%%/graphics/empty_trash.gif %%IMPDIR%%/graphics/expand.gif +%%IMPDIR%%/graphics/favicon.ico %%IMPDIR%%/graphics/fetchmail.gif %%IMPDIR%%/graphics/filters.gif %%IMPDIR%%/graphics/first-grey.gif @@ -68,6 +69,7 @@ %%IMPDIR%%/graphics/lock.gif %%IMPDIR%%/graphics/manage_attachments.gif %%IMPDIR%%/graphics/mime/html.gif +%%IMPDIR%%/graphics/mime/image.gif %%IMPDIR%%/graphics/mime/text.gif %%IMPDIR%%/graphics/next-grey.gif %%IMPDIR%%/graphics/next.gif @@ -86,6 +88,7 @@ %%IMPDIR%%/identities.php %%IMPDIR%%/index.php %%IMPDIR%%/lib/.htaccess +%%IMPDIR%%/lib/Browser.php %%IMPDIR%%/lib/Folder.php %%IMPDIR%%/lib/IMP.php %%IMPDIR%%/lib/Identity/IMP.php @@ -95,6 +98,7 @@ %%IMPDIR%%/lib/Maintenance/imp.php %%IMPDIR%%/lib/MIME/Viewer/html.php %%IMPDIR%%/lib/MIME/Viewer/enriched.php +%%IMPDIR%%/lib/MIME/Viewer/images.php %%IMPDIR%%/lib/MIME/Viewer/text.php %%IMPDIR%%/lib/Message.php %%IMPDIR%%/lib/Tree.php @@ -103,6 +107,9 @@ %%IMPDIR%%/lib/constants.php %%IMPDIR%%/lib/version.php %%IMPDIR%%/locale/.htaccess +%%IMPDIR%%/locale/bg_BG/LC_MESSAGES/imp.mo +%%IMPDIR%%/locale/ca_ES/LC_MESSAGES/imp.mo +%%IMPDIR%%/locale/ca_ES/help.xml %%IMPDIR%%/locale/cs_CZ/LC_MESSAGES/imp.mo %%IMPDIR%%/locale/cs_CZ/help.xml %%IMPDIR%%/locale/da_DK/LC_MESSAGES/imp.mo @@ -127,6 +134,8 @@ %%IMPDIR%%/locale/ja_JP/LC_MESSAGES/imp.mo %%IMPDIR%%/locale/ko_KR/LC_MESSAGES/imp.mo %%IMPDIR%%/locale/ko_KR/help.xml +%%IMPDIR%%/locale/lt_LT/LC_MESSAGES/imp.mo +%%IMPDIR%%/locale/lv_LV/LC_MESSAGES/imp.mo %%IMPDIR%%/locale/nb_NO/LC_MESSAGES/imp.mo %%IMPDIR%%/locale/nb_NO/help.xml %%IMPDIR%%/locale/nl_NL/LC_MESSAGES/imp.mo @@ -138,6 +147,7 @@ %%IMPDIR%%/locale/pt_BR/help.xml %%IMPDIR%%/locale/pt_PT/LC_MESSAGES/imp.mo %%IMPDIR%%/locale/pt_PT/help.xml +%%IMPDIR%%/locale/ro_RO/LC_MESSAGES/imp.mo %%IMPDIR%%/locale/ru_RU/LC_MESSAGES/imp.mo %%IMPDIR%%/locale/ru_RU/help.xml %%IMPDIR%%/locale/ru_RU.KOI8-R/LC_MESSAGES/imp.mo @@ -160,6 +170,8 @@ %%IMPDIR%%/po/.htaccess %%IMPDIR%%/po/Makefile %%IMPDIR%%/po/README +%%IMPDIR%%/po/bg_BG.po +%%IMPDIR%%/po/ca_ES.po %%IMPDIR%%/po/cs_CZ.po %%IMPDIR%%/po/da_DK.po %%IMPDIR%%/po/de_DE.po @@ -170,15 +182,19 @@ %%IMPDIR%%/po/fi_FI.po %%IMPDIR%%/po/fr_FR.po %%IMPDIR%%/po/hu_HU.po +%%IMPDIR%%/po/imp.pot %%IMPDIR%%/po/it_IT.po %%IMPDIR%%/po/ja_JP.po %%IMPDIR%%/po/ko_KR.po +%%IMPDIR%%/po/lt_LT.po +%%IMPDIR%%/po/lv_LV.po %%IMPDIR%%/po/nb_NO.po %%IMPDIR%%/po/nl_NL.po %%IMPDIR%%/po/nn_NO.po %%IMPDIR%%/po/pl_PL.po %%IMPDIR%%/po/pt_BR.po %%IMPDIR%%/po/pt_PT.po +%%IMPDIR%%/po/ro_RO.po %%IMPDIR%%/po/ru_RU.po %%IMPDIR%%/po/ru_RU.KOI8-R.po %%IMPDIR%%/po/shtool @@ -197,6 +213,7 @@ %%IMPDIR%%/scripts/imp-cleanup.cron %%IMPDIR%%/scripts/imp2horde.pl %%IMPDIR%%/scripts/imp2turba.pl +%%IMPDIR%%/scripts/singlescript.php %%IMPDIR%%/search.php %%IMPDIR%%/spelling.php %%IMPDIR%%/status.php @@ -267,6 +284,10 @@ @dirrm %%IMPDIR%%/lib/Maintenance/Task @dirrm %%IMPDIR%%/lib/Maintenance @dirrm %%IMPDIR%%/lib +@dirrm %%IMPDIR%%/locale/bg_BG/LC_MESSAGES +@dirrm %%IMPDIR%%/locale/bg_BG +@dirrm %%IMPDIR%%/locale/ca_ES/LC_MESSAGES +@dirrm %%IMPDIR%%/locale/ca_ES @dirrm %%IMPDIR%%/locale/cs_CZ/LC_MESSAGES @dirrm %%IMPDIR%%/locale/cs_CZ @dirrm %%IMPDIR%%/locale/da_DK/LC_MESSAGES @@ -293,6 +314,10 @@ @dirrm %%IMPDIR%%/locale/ja_JP @dirrm %%IMPDIR%%/locale/ko_KR/LC_MESSAGES @dirrm %%IMPDIR%%/locale/ko_KR +@dirrm %%IMPDIR%%/locale/lt_LT/LC_MESSAGES +@dirrm %%IMPDIR%%/locale/lt_LT +@dirrm %%IMPDIR%%/locale/lv_LV/LC_MESSAGES +@dirrm %%IMPDIR%%/locale/lv_LV @dirrm %%IMPDIR%%/locale/nb_NO/LC_MESSAGES @dirrm %%IMPDIR%%/locale/nb_NO @dirrm %%IMPDIR%%/locale/nl_NL/LC_MESSAGES @@ -305,6 +330,8 @@ @dirrm %%IMPDIR%%/locale/pt_BR @dirrm %%IMPDIR%%/locale/pt_PT/LC_MESSAGES @dirrm %%IMPDIR%%/locale/pt_PT +@dirrm %%IMPDIR%%/locale/ro_RO/LC_MESSAGES +@dirrm %%IMPDIR%%/locale/ro_RO @dirrm %%IMPDIR%%/locale/ru_RU/LC_MESSAGES @dirrm %%IMPDIR%%/locale/ru_RU @dirrm %%IMPDIR%%/locale/ru_RU.KOI8-R/LC_MESSAGES >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 13: 0:14 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6BDA37B401 for ; Mon, 24 Feb 2003 13:00:12 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A969243FB1 for ; Mon, 24 Feb 2003 13:00:11 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OL0BNS026445 for ; Mon, 24 Feb 2003 13:00:11 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OL0Bni026444; Mon, 24 Feb 2003 13:00:11 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4465E37B405 for ; Mon, 24 Feb 2003 12:56:26 -0800 (PST) Received: from hueymiccailhuitl.mtu.ru (hueytecuilhuitl.mtu.ru [195.34.32.123]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B94B43FD7 for ; Mon, 24 Feb 2003 12:56:22 -0800 (PST) (envelope-from sem@ciam.ru) Received: from sem-home.ciam.ru (ppp136-206.dialup.mtu-net.ru [62.118.136.206]) by hueymiccailhuitl.mtu.ru (Postfix) with ESMTP id 19CC8F9449; Mon, 24 Feb 2003 23:56:01 +0300 (MSK) (envelope-from sem@ciam.ru) Received: from sem by sem-home.ciam.ru with local (Exim 4.12) id 18nPe1-000CL9-00; Mon, 24 Feb 2003 23:56:13 +0300 Message-Id: Date: Mon, 24 Feb 2003 23:56:13 +0300 From: Sergey Matveychuk Reply-To: Sergey Matveychuk To: FreeBSD-gnats-submit@FreeBSD.org Cc: kris@obsecurity.org X-Send-Pr-Version: 3.113 Subject: ports/48646: check-already-installed port by origin Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48646 >Category: ports >Synopsis: check-already-installed port by origin >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 13:00:10 PST 2003 >Closed-Date: >Last-Modified: >Originator: Sergey Matveychuk >Release: FreeBSD 5.0-RELEASE-p2 i386 >Organization: >Environment: System: FreeBSD sem-home.ciam.ru 5.0-RELEASE-p2 FreeBSD 5.0-RELEASE-p2 #0: Mon Feb 24 22:03:00 MSK 2003 root@sem-home.ciam.ru:/usr/src/sys/i386/compile/SEM-HOME i386 >Description: pkg_add(1) checks already installed packages by origin. Why port install system don't do it? So we can install a few version of a port. It's bad. This small patch fix it. >How-To-Repeat: >Fix: --- bsd.port.mk.1_440 Mon Feb 17 02:23:01 2003 +++ bsd.port.mk Mon Feb 24 23:36:08 2003 @@ -2718,7 +2726,8 @@ .if !target(check-already-installed) check-already-installed: .if !defined(NO_PKG_REGISTER) && !defined(FORCE_PKG_REGISTER) - @if [ -d ${PKG_DBDIR}/${PKGNAME} ]; then \ + @if [ -d ${PKG_DBDIR}/${PKGNAME} -o \ + "x`${PKG_INFO} -q -O ${PKGORIGIN}`" != "x" ]; then \ ${ECHO_CMD} "===> ${PKGNAME} is already installed - perhaps an older version?"; \ ${ECHO_CMD} " If so, you may wish to \`\`make deinstall'' and install"; \ ${ECHO_CMD} " this port again by \`\`make reinstall'' to upgrade it properly."; \ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 13:10:16 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BCAB537B401 for ; Mon, 24 Feb 2003 13:10:13 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A917843FBD for ; Mon, 24 Feb 2003 13:10:12 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OLACNS032166 for ; Mon, 24 Feb 2003 13:10:12 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OLACK3032165; Mon, 24 Feb 2003 13:10:12 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 41E3537B401 for ; Mon, 24 Feb 2003 13:06:06 -0800 (PST) Received: from transport.cksoft.de (transport.cksoft.de [62.111.66.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 58CF243F93 for ; Mon, 24 Feb 2003 13:06:05 -0800 (PST) (envelope-from ck@cksoft.de) Received: from localhost (localhost [127.0.0.1]) by transport.cksoft.de (Postfix) with ESMTP id 871971FFB25; Mon, 24 Feb 2003 22:06:03 +0100 (CET) Received: from majakka.cksoft.de (p508AA572.dip.t-dialin.net [80.138.165.114]) (using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits)) (No client certificate requested) by transport.cksoft.de (Postfix) with ESMTP id 84C521FF97B; Mon, 24 Feb 2003 22:06:02 +0100 (CET) Received: from majakka.cksoft.de (localhost [127.0.0.1]) by majakka.cksoft.de (Postfix) with ESMTP id 6F99844ABD; Mon, 24 Feb 2003 22:06:01 +0100 (CET) Received: by majakka.cksoft.de (Postfix, from userid 1000) id 1B9D144ABA; Mon, 24 Feb 2003 22:06:00 +0100 (CET) Message-Id: <20030224210600.1B9D144ABA@majakka.cksoft.de> Date: Mon, 24 Feb 2003 22:06:00 +0100 (CET) From: Christian Kratzer Reply-To: Christian Kratzer To: FreeBSD-gnats-submit@FreeBSD.org Cc: Christian Kratzer X-Send-Pr-Version: 3.113 Subject: ports/48647: Update openldap21 to version 2.1.13 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48647 >Category: ports >Synopsis: Update openldap21 to version 2.1.13 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 13:10:12 PST 2003 >Closed-Date: >Last-Modified: >Originator: Christian Kratzer >Release: FreeBSD 4.7-STABLE i386 >Organization: CK Software GmbH >Environment: System: FreeBSD majakka.cksoft.de 4.7-STABLE FreeBSD 4.7-STABLE #1: Thu Dec 19 14:57:42 CET 2002 ck@majakka.cksoft.de:/usr/obj/usr/src/RELENG_4/src/sys/MAJAKKA i386 >Description: The OpenLDAP project released OpenLDAP 2.1.13 today. The build framework now insists on Berkeley db4.1 over Berkeley db 4.0. >How-To-Repeat: >Fix: --- openldap21/Makefile.orig Mon Feb 24 20:14:13 2003 +++ openldap21/Makefile Mon Feb 24 21:52:46 2003 @@ -15,7 +15,7 @@ # PORTNAME= openldap21 -PORTVERSION= 2.1.12 +PORTVERSION= 2.1.13 PORTREVISION= 0 CATEGORIES= net databases MASTER_SITES= ftp://ftp.OpenLDAP.org/pub/OpenLDAP/%SUBDIR%/ \ @@ -38,10 +38,10 @@ MAINTAINER= ck@cksoft.de COMMENT= Open source LDAP client and server software -LIB_DEPENDS+= db4.0:${PORTSDIR}/databases/db4 +LIB_DEPENDS+= db41.1:${PORTSDIR}/databases/db41 -CXXFLAGS+= -D_REENTRANT ${PTHREAD_CFLAGS} -I${LOCALBASE}/include/db4 -CPPFLAGS+= -D_REENTRANT ${PTHREAD_CFLAGS} -I${LOCALBASE}/include/db4 +CXXFLAGS+= -D_REENTRANT ${PTHREAD_CFLAGS} -I${LOCALBASE}/include/db41 +CPPFLAGS+= -D_REENTRANT ${PTHREAD_CFLAGS} -I${LOCALBASE}/include/db41 LDFLAGS+= -L${LOCALBASE}/lib USE_OPENSSL= yes --- openldap21/distinfo.orig Mon Feb 24 21:34:40 2003 +++ openldap21/distinfo Mon Feb 24 21:34:47 2003 @@ -1 +1 @@ -MD5 (openldap-2.1.12.tgz) = 23a38674ed6067a92b2f2c977f92a485 +MD5 (openldap-2.1.13.tgz) = 17afd77fbfb9e25d7acf9d0e39c84f62 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 14:40:27 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7BEEF37B401 for ; Mon, 24 Feb 2003 14:40:26 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F19943FF7 for ; Mon, 24 Feb 2003 14:40:12 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OMeBNS055423 for ; Mon, 24 Feb 2003 14:40:11 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OMeBHm055422; Mon, 24 Feb 2003 14:40:11 -0800 (PST) Date: Mon, 24 Feb 2003 14:40:11 -0800 (PST) Message-Id: <200302242240.h1OMeBHm055422@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Giorgos Keramidas Subject: Re: ports/48610: database/postgresql-jdbc postgresql.jar is incomplete. Reply-To: Giorgos Keramidas Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48610; it has been noted by GNATS. From: Giorgos Keramidas To: bug-followup@freebsd.org Cc: Subject: Re: ports/48610: database/postgresql-jdbc postgresql.jar is incomplete. Date: Tue, 25 Feb 2003 00:32:20 +0200 Adding to audit trail from pending/48619. : Message-Id: <13270000.1046071268@palle.girgensohn.se> : Date: Mon, 24 Feb 2003 08:21:08 +0100 : From: Palle Girgensohn : : Hi Jonathan! : : Thanks, I'll check this ASAP! It seems it should go into the postgresql : distribution as well, not just the FreeBSD port... I'll have a look at it! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 14:40:39 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C5B2437B405 for ; Mon, 24 Feb 2003 14:40:34 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E83643FE5 for ; Mon, 24 Feb 2003 14:40:09 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1OMe9NS055414 for ; Mon, 24 Feb 2003 14:40:09 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1OMe9AG055413; Mon, 24 Feb 2003 14:40:09 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E99E37B401 for ; Mon, 24 Feb 2003 14:31:37 -0800 (PST) Received: from phobos.raisdorf.net (phobos.raisdorf.net [195.244.235.251]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9407043F85 for ; Mon, 24 Feb 2003 14:31:35 -0800 (PST) (envelope-from hscholz@goanna.lan.raisdorf.net) Received: by phobos.raisdorf.net (Postfix, from userid 66) id 5FE7223AFC; Mon, 24 Feb 2003 23:30:29 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by platypus.lan.raisdorf.net (Postfix) with ESMTP id 3BDF05C7B; Mon, 24 Feb 2003 23:29:38 +0100 (CET) Received: from platypus.lan.raisdorf.net ([127.0.0.1]) by localhost (platypus.lan.raisdorf.net [127.0.0.1:10024]) (amavisd-new) with ESMTP id 48085-05; Mon, 24 Feb 2003 23:29:35 +0100 (CET) Received: from goanna.lan.raisdorf.net (goanna.lan.raisdorf.net [10.10.1.2]) by platypus.lan.raisdorf.net (Postfix) with ESMTP id AC7D45C28; Mon, 24 Feb 2003 23:29:35 +0100 (CET) Received: from goanna.lan.raisdorf.net (localhost [127.0.0.1]) by goanna.lan.raisdorf.net (8.12.6/8.12.6) with ESMTP id h1OMU8PD019684; Mon, 24 Feb 2003 23:30:08 +0100 (CET) (envelope-from hscholz@goanna.lan.raisdorf.net) Received: (from hscholz@localhost) by goanna.lan.raisdorf.net (8.12.6/8.12.6/Submit) id h1OMU2Os019683; Mon, 24 Feb 2003 23:30:02 +0100 (CET) Message-Id: <200302242230.h1OMU2Os019683@goanna.lan.raisdorf.net> Date: Mon, 24 Feb 2003 23:30:02 +0100 (CET) From: Hendrik Scholz Reply-To: Hendrik Scholz To: FreeBSD-gnats-submit@FreeBSD.org Cc: Hendrik Scholz X-Send-Pr-Version: 3.113 Subject: ports/48649: maintainer-update: graphics/transcode Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48649 >Category: ports >Synopsis: maintainer-update: graphics/transcode >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 14:40:08 PST 2003 >Closed-Date: >Last-Modified: >Originator: Hendrik Scholz >Release: FreeBSD 5.0-CURRENT i386 >Organization: NetUSE AG >Environment: System: FreeBSD goanna.lan.raisdorf.net 5.0-CURRENT FreeBSD 5.0-CURRENT #2: Fri Jan 24 01:44:03 CET 2003 hscholz@goanna.lan.raisdorf.net:/source/src/sys/i386/compile/GOANNA i386 >Description: Changes: - de-pkg-comment (remove pkg-comment) - add WITH_SUBRIP knob proposed by Michael Nottebrock in ports/47923 - add two patches submitted by Atte Peltomäki and Pierre Beyssac - bump PORTREVISION >How-To-Repeat: >Fix: --- transcode-0.6.3-1.patch begins here --- diff -urP transcode-0.6.3/Makefile transcode/Makefile --- transcode-0.6.3/Makefile Mon Feb 17 23:46:44 2003 +++ transcode/Makefile Fri Feb 21 14:35:54 2003 @@ -7,10 +7,12 @@ PORTNAME= transcode PORTVERSION= 0.6.3 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= http://www.theorie.physik.uni-goettingen.de/~ostreich/transcode/pre/ MAINTAINER= hendrik@scholz.net +COMMENT= A text-console utility for video stream processing LIB_DEPENDS= dvdread.2:${PORTSDIR}/multimedia/libdvdread \ gnugetopt.1:${PORTSDIR}/devel/libgnugetopt \ @@ -201,6 +203,12 @@ PLIST_SUB+= WITH_MJPEG="@comment " .endif +.if defined(WITH_SUBRIP) +PLIST_SUB+= WITH_SUBRIP="" +.else +PLIST_SUB+= WITH_SUBRIP="@comment " +.endif + pre-everything:: .if !defined(WITH_OPTIMIZED_CFLAGS) @${ECHO_MSG} @@ -272,7 +280,11 @@ .endif .if !defined(WITH_MJPEG) @${ECHO_MSG} - @${ECHO_MSG} "You can enable support for the MJPEG toolkit by defining WITH_MJPEG" + @${ECHO_MSG} "You can enable support for the MJPEG toolkit by defining WITH_MJPEG." +.endif +.if !defined(WITH_SUBRIP) + @${ECHO_MSG} + @${ECHO_MSG} "You can enable compilation of subtitleripper by defining WITH_SUBRIP." .endif post-patch: @@ -300,6 +312,12 @@ @${LN} -sf ${LOCALBASE}/lib/libxvidcore.so \ ${PREFIX}/lib/transcode/libxvidcore.so .endif + +.if defined(WITH_SUBRIP) + @cd ${WRKSRC}/contrib/subrip; ${GMAKE} clean all; \ + ${INSTALL_PROGRAM} srttool subtitle2pgm subtitle2vobsub ${PREFIX}/bin +.endif + @${RM} ${PREFIX}/lib/transcode/*.la .include diff -urP transcode-0.6.3/files/patch-contrib:subrip:Makefile transcode/files/patch-contrib:subrip:Makefile --- transcode-0.6.3/files/patch-contrib:subrip:Makefile Thu Jan 1 01:00:00 1970 +++ transcode/files/patch-contrib:subrip:Makefile Fri Feb 21 14:35:17 2003 @@ -0,0 +1,13 @@ +--- contrib/subrip/Makefile.orig Wed Feb 5 02:23:45 2003 ++++ contrib/subrip/Makefile Wed Feb 5 02:23:56 2003 +@@ -8,8 +8,8 @@ + INCLUDES := + + ### enable ppm support ### +-DEFINES += -D_HAVE_LIB_PPM_ +-LIBS += -lppm ++#DEFINES += -D_HAVE_LIB_PPM_ ++#LIBS += -lppm + + ### enable zlib support ### + DEFINES += -D_HAVE_ZLIB_ diff -urP transcode-0.6.3/files/patch-dvdread:dvd_reader.c transcode/files/patch-dvdread:dvd_reader.c --- transcode-0.6.3/files/patch-dvdread:dvd_reader.c Thu Jan 1 01:00:00 1970 +++ transcode/files/patch-dvdread:dvd_reader.c Wed Feb 19 10:28:00 2003 @@ -0,0 +1,19 @@ +--- dvdread/dvd_reader.c.orig Wed Feb 19 10:27:09 2003 ++++ dvdread/dvd_reader.c Wed Feb 19 10:27:36 2003 +@@ -140,15 +140,7 @@ + dvdcss_error = (char* (*)(dvdcss_handle)) + dlsym( dvdcss_library, U_S "dvdcss_error" ); + +- if( dlsym( dvdcss_library, U_S "dvdcss_crack" ) ) { +- fprintf( stderr, "libdvdread: Old (pre-0.0.2) version of " +- "libdvdcss found.\n" +- "libdvdread: You should get the " +- "latest version from " +- "http://www.videolan.org/\n" ); +- dlclose( dvdcss_library ); +- dvdcss_library = 0; +- } else if( !dvdcss_open || !dvdcss_close || !dvdcss_seek || ++ if( !dvdcss_open || !dvdcss_close || !dvdcss_seek || + !dvdcss_title || !dvdcss_read || !dvdcss_error ) { + + fprintf( stderr, "libdvdread: Unknown incompatible version " diff -urP transcode-0.6.3/files/patch-src:transcode.c transcode/files/patch-src:transcode.c --- transcode-0.6.3/files/patch-src:transcode.c Thu Jan 1 01:00:00 1970 +++ transcode/files/patch-src:transcode.c Mon Feb 17 23:58:12 2003 @@ -0,0 +1,11 @@ +--- src/transcode.c.orig Mon Feb 17 23:49:13 2003 ++++ src/transcode.c Mon Feb 17 23:57:47 2003 +@@ -831,6 +831,8 @@ + vob->vob_psu_num2 = INT_MAX; + vob->vob_info_file = NULL; + vob->vob_percentage = 0; ++ vob->im_a_string = NULL; ++ vob->im_v_string = NULL; + + vob->reduce_h = 1; + vob->reduce_w = 1; Only in transcode-0.6.3/: pkg-comment diff -urP transcode-0.6.3/pkg-plist transcode/pkg-plist --- transcode-0.6.3/pkg-plist Mon Feb 17 23:46:44 2003 +++ transcode/pkg-plist Fri Feb 21 14:35:17 2003 @@ -2,6 +2,9 @@ bin/avimerge bin/avisplit bin/avisync +%%WITH_SUBRIP%%bin/srttool +%%WITH_SUBRIP%%bin/subtitle2pgm +%%WITH_SUBRIP%%bin/subtitle2vobsub bin/tccat bin/tcdecode bin/tcdemux --- transcode-0.6.3-1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 15:30:14 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD12B37B401 for ; Mon, 24 Feb 2003 15:30:12 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EEECF43F75 for ; Mon, 24 Feb 2003 15:30:11 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1ONUBNS069752 for ; Mon, 24 Feb 2003 15:30:11 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1ONUBOK069751; Mon, 24 Feb 2003 15:30:11 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9D1737B405 for ; Mon, 24 Feb 2003 15:25:09 -0800 (PST) Received: from mippet.ci.com.au (mippet.ci.com.au [192.65.182.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4708A43FA3 for ; Mon, 24 Feb 2003 15:25:08 -0800 (PST) (envelope-from daveh@ci.com.au) Received: from mippet.ci.com.au (daveh@localhost [127.0.0.1]) by mippet.ci.com.au (8.12.7/8.12.7/CE020811/c+m+l) with ESMTP id h1ONP29O055842 for ; Tue, 25 Feb 2003 10:25:03 +1100 (EST) Received: (from daveh@localhost) by mippet.ci.com.au (8.12.7/8.12.7/Submit) id h1ONP2iY055841; Tue, 25 Feb 2003 10:25:02 +1100 (EST) Message-Id: <200302242325.h1ONP2iY055841@mippet.ci.com.au> Date: Tue, 25 Feb 2003 10:25:02 +1100 (EST) From: Dave Horsfall Reply-To: Dave Horsfall To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48651: Need to update OpenLDAP to use latest BDB Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48651 >Category: ports >Synopsis: Need to update OpenLDAP to use latest BDB >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 15:30:11 PST 2003 >Closed-Date: >Last-Modified: >Originator: Dave Horsfall >Release: FreeBSD 4.7-STABLE i386 >Organization: Corinthian Engineering >Environment: System: FreeBSD mippet.ci.com.au 4.7-STABLE FreeBSD 4.7-STABLE #2: Sun Feb 2 11:36:09 EST 2003 rpp@mippet.ci.com.au:/u1/usr-obj/usr/src/sys/LOCAL i386 >Description: The port of OpenLDAP 2.1.12, if/when it's committed, uses BDB 4.0, which is considered to be obsolete by the OpenLDAP devels. Please consider re-porting using BDB 4.1. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 15:55:39 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6BF837B401; Mon, 24 Feb 2003 15:55:38 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B26943F93; Mon, 24 Feb 2003 15:55:38 -0800 (PST) (envelope-from mbr@FreeBSD.org) Received: from freefall.freebsd.org (mbr@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1ONtcNS076167; Mon, 24 Feb 2003 15:55:38 -0800 (PST) (envelope-from mbr@freefall.freebsd.org) Received: (from mbr@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1ONtbUg076163; Mon, 24 Feb 2003 15:55:37 -0800 (PST) Date: Mon, 24 Feb 2003 15:55:37 -0800 (PST) From: Martin Blapp Message-Id: <200302242355.h1ONtbUg076163@freefall.freebsd.org> To: freebsd.dev@blueyonder.co.uk, mbr@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/46644: upgrade emulators/uae to GCC 3.2.1 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: upgrade emulators/uae to GCC 3.2.1 State-Changed-From-To: open->closed State-Changed-By: mbr State-Changed-When: Mon Feb 24 15:54:57 PST 2003 State-Changed-Why: Committed, thanks ! http://www.freebsd.org/cgi/query-pr.cgi?pr=46644 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 18:51:31 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A69A137B401; Mon, 24 Feb 2003 18:51:30 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 481B643F93; Mon, 24 Feb 2003 18:51:30 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1P2pUNS025250; Mon, 24 Feb 2003 18:51:30 -0800 (PST) (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1P2pTlX025246; Mon, 24 Feb 2003 18:51:29 -0800 (PST) Date: Mon, 24 Feb 2003 18:51:29 -0800 (PST) From: Ying-Chieh Liao Message-Id: <200302250251.h1P2pTlX025246@freefall.freebsd.org> To: sysadmin@alexdupre.com, ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48023: [New Feature] Enable MPFR in GMP4 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [New Feature] Enable MPFR in GMP4 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Mon Feb 24 18:51:18 PST 2003 State-Changed-Why: superseded by pr/48640 http://www.freebsd.org/cgi/query-pr.cgi?pr=48023 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 21:10: 6 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 349DC37B401 for ; Mon, 24 Feb 2003 21:10:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D02843FDD for ; Mon, 24 Feb 2003 21:10:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1P5A3NS063978 for ; Mon, 24 Feb 2003 21:10:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1P5A3LY063977; Mon, 24 Feb 2003 21:10:03 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A8AC37B401 for ; Mon, 24 Feb 2003 21:08:23 -0800 (PST) Received: from rwcrmhc52.attbi.com (rwcrmhc52.attbi.com [216.148.227.88]) by mx1.FreeBSD.org (Postfix) with ESMTP id B9BBA43F75 for ; Mon, 24 Feb 2003 21:08:22 -0800 (PST) (envelope-from tokada@attbi.com) Received: from photoniii.ne1.client2.attbi.com (h0005025b549e.ne.client2.attbi.com[66.31.5.199]) by rwcrmhc52.attbi.com (rwcrmhc52) with ESMTP id <20030225050821052000vtpge>; Tue, 25 Feb 2003 05:08:21 +0000 Received: (from tokada@localhost) by photoniii.ne1.client2.attbi.com (8.12.7/8.12.7/Submit) id h1P56h6g023360; Tue, 25 Feb 2003 00:06:43 -0500 (EST) (envelope-from tokada) Message-Id: <200302250506.h1P56h6g023360@photoniii.ne1.client2.attbi.com> Date: Tue, 25 Feb 2003 00:06:43 -0500 (EST) From: Tadayuki OKADA Reply-To: Tadayuki OKADA To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48653: kdemultimedia build broken with libxine installed Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48653 >Category: ports >Synopsis: kdemultimedia build broken with libxine installed >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 21:10:02 PST 2003 >Closed-Date: >Last-Modified: >Originator: Tadayuki OKADA >Release: FreeBSD 4.8-PRERELEASE i386 >Organization: >Environment: System: FreeBSD photoniii.ne1.client2.attbi.com 4.8-PRERELEASE FreeBSD 4.8-PRERELEASE #11: Sun Feb 23 20:35:03 EST 2003 root@photoniii.ne1.client2.attbi.com:/usr/obj/usr/src/sys/PHOTON i386 >Description: Kdemultimedia build is broken if libxine is installed. >How-To-Repeat: cd /usr/ports/multimediab/libxine && make install clean cd /usr/ports/multimediab/kdemultimedia3 && make install clean >Fix: --- Makefile.orig Mon Feb 24 21:50:01 2003 +++ Makefile Mon Feb 24 21:50:10 2003 @@ -50,7 +50,7 @@ DO_NOT_COMPILE+= kmidi .endif # defined(WITHOUT_MIDI) -DO_NOT_COMPILE+= xine-artsplugin +DO_NOT_COMPILE+= xine_artsplugin .if exists(${X11BASE}/bin/xine-config) WITH_XINE= yes >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 23:10:13 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1FFCC37B401 for ; Mon, 24 Feb 2003 23:10:11 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09A5D43FDF for ; Mon, 24 Feb 2003 23:10:06 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1P7A6NS096780 for ; Mon, 24 Feb 2003 23:10:06 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1P7A672096779; Mon, 24 Feb 2003 23:10:06 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 05EEB37B401 for ; Mon, 24 Feb 2003 23:06:53 -0800 (PST) Received: from t-mta3.odn.ne.jp (mfep3.odn.ne.jp [143.90.131.181]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8E2543F85 for ; Mon, 24 Feb 2003 23:06:51 -0800 (PST) (envelope-from fuyuki@hadaly.dyndns.org) Received: from hadaly.dyndns.org ([211.131.105.144]) by t-mta1.odn.ne.jp with ESMTP id <20030225062649406.FXH.12615.t-mta1.odn.ne.jp@mta1.odn.ne.jp>; Tue, 25 Feb 2003 15:26:49 +0900 Received: by hadaly.dyndns.org (Postfix, from userid 1001) id 8D510549A; Tue, 25 Feb 2003 15:26:48 +0900 (JST) Message-Id: <20030225062648.8D510549A@hadaly.dyndns.org> Date: Tue, 25 Feb 2003 15:26:48 +0900 (JST) From: Kimura Fuyuki To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48655: Update port: sysutils/rtty (distfiles survey) Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48655 >Category: ports >Synopsis: Update port: sysutils/rtty (distfiles survey) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 23:10:06 PST 2003 >Closed-Date: >Last-Modified: >Originator: Kimura Fuyuki >Release: FreeBSD 4.7-RELEASE-p6 i386 >Organization: >Environment: System: FreeBSD hadaly.dyndns.org 4.7-RELEASE-p6 FreeBSD 4.7-RELEASE-p6 #0: Tue Feb 25 11:11:20 JST 2003 root@hadaly.dyndns.org:/sack/tmp/obj/usr/src/sys/NS i386 >Description: Add a mirror site >How-To-Repeat: >Fix: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/sysutils/rtty/Makefile,v retrieving revision 1.12 diff -u -r1.12 Makefile --- Makefile 20 Feb 2003 19:00:49 -0000 1.12 +++ Makefile 25 Feb 2003 06:26:19 -0000 @@ -8,7 +8,8 @@ PORTNAME= rtty PORTVERSION= 4.0 CATEGORIES= sysutils -MASTER_SITES= ftp://ftp.vix.com/pub/vixie/ +MASTER_SITES= ftp://ftp.vix.com/pub/vixie/ \ + ftp://gatekeeper.research.compaq.com/pub/misc/vixie/ EXTRACT_SUFX= .shar.gz MAINTAINER= ports@FreeBSD.org >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 23:10:15 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 53CE937B405 for ; Mon, 24 Feb 2003 23:10:11 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C32D43FCB for ; Mon, 24 Feb 2003 23:10:06 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1P7A6NS096767 for ; Mon, 24 Feb 2003 23:10:06 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1P7A6CQ096766; Mon, 24 Feb 2003 23:10:06 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5188A37B401 for ; Mon, 24 Feb 2003 23:01:06 -0800 (PST) Received: from fallback02.mail.atl.earthlink.net (fallback02.mail.atl.earthlink.net [207.69.200.241]) by mx1.FreeBSD.org (Postfix) with ESMTP id 008F243FB1 for ; Mon, 24 Feb 2003 23:01:05 -0800 (PST) (envelope-from david@usermode.org) Received: from granger.mail.mindspring.net (granger.mail.mindspring.net [207.69.200.148]) by fallback02.mail.atl.earthlink.net (8.11.6+Sun/8.11.6) with ESMTP id h1P6WMe14188 for ; Tue, 25 Feb 2003 01:32:22 -0500 (EST) Received: from h-68-164-176-161.snvacaid.covad.net ([68.164.176.161] helo=brandybuck.home) by granger.mail.mindspring.net with esmtp (Exim 3.33 #1) id 18nYdP-0004sC-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 25 Feb 2003 01:32:21 -0500 Received: from brandybuck.home (localhost.home [127.0.0.1]) by brandybuck.home (8.12.6/8.12.6) with ESMTP id h1P6VTRd024276 for ; Mon, 24 Feb 2003 22:31:49 -0800 (PST) (envelope-from david@brandybuck.home) Received: (from david@localhost) by brandybuck.home (8.12.6/8.12.6/Submit) id h1P6V4fW024275; Mon, 24 Feb 2003 22:31:04 -0800 (PST) (envelope-from david) Message-Id: <200302250631.h1P6V4fW024275@brandybuck.home> Date: Mon, 24 Feb 2003 22:31:04 -0800 (PST) From: David Johnson Reply-To: David Johnson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48654: port upgrade for x11-wm/qinx Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48654 >Category: ports >Synopsis: port upgrade for x11-wm/qinx >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 23:10:06 PST 2003 >Closed-Date: >Last-Modified: >Originator: David Johnson >Release: FreeBSD 5.0-RELEASE i386 >Organization: >Environment: System: FreeBSD brandybuck.home 5.0-RELEASE FreeBSD 5.0-RELEASE #0: Sat Feb 8 17:42:15 PST 2003 root@brandybuck.home:/usr/obj/usr/src/sys/BRANDYBUCK i386 >Description: update x11-wm/qinx port to version 0.5 >How-To-Repeat: N/A >Fix: --- qinx.diff begins here --- diff -ruN qinx/Makefile qinx.new/Makefile --- qinx/Makefile Fri Feb 21 18:42:26 2003 +++ qinx.new/Makefile Sun Feb 23 23:19:51 2003 @@ -6,7 +6,7 @@ # PORTNAME= qinx -PORTVERSION= 0.4 +PORTVERSION= 0.5 CATEGORIES= x11-wm kde MASTER_SITES= http://www.usermode.org/code/ diff -ruN qinx/distinfo qinx.new/distinfo --- qinx/distinfo Wed Nov 13 01:55:11 2002 +++ qinx.new/distinfo Sun Feb 23 23:36:58 2003 @@ -1 +1 @@ -MD5 (qinx-0.4.tar.gz) = 7a81f54bd12f6fe98b1ae3db8b51147e +MD5 (qinx-0.5.tar.gz) = 23d8a3f578d43d176ce7ebd564c08b5f --- qinx.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Mon Feb 24 23:30: 6 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C35B637B401 for ; Mon, 24 Feb 2003 23:30:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC53943F93 for ; Mon, 24 Feb 2003 23:30:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1P7U3NS001267 for ; Mon, 24 Feb 2003 23:30:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1P7U39W001266; Mon, 24 Feb 2003 23:30:03 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 829FC37B401 for ; Mon, 24 Feb 2003 23:24:07 -0800 (PST) Received: from neva.vlink.ru (neva.vlink.ru [195.239.222.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC8BD43F85 for ; Mon, 24 Feb 2003 23:24:05 -0800 (PST) (envelope-from dsh@neva.vlink.ru) Received: from neva.vlink.ru (localhost [127.0.0.1]) by neva.vlink.ru (8.12.6/8.12.6) with ESMTP id h1P6puKX089041 for ; Tue, 25 Feb 2003 09:51:56 +0300 (MSK) (envelope-from dsh@neva.vlink.ru) Received: (from dsh@localhost) by neva.vlink.ru (8.12.6/8.12.6/Submit) id h1P6puM0089040; Tue, 25 Feb 2003 09:51:56 +0300 (MSK) (envelope-from dsh) Message-Id: <200302250651.h1P6puM0089040@neva.vlink.ru> Date: Tue, 25 Feb 2003 09:51:56 +0300 (MSK) From: Denis Shaposhnikov Reply-To: Denis Shaposhnikov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48656: Update port: devel/p5-Class-Container to latest (0.09) version Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48656 >Category: ports >Synopsis: Update port: devel/p5-Class-Container to latest (0.09) version >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 23:30:02 PST 2003 >Closed-Date: >Last-Modified: >Originator: Denis Shaposhnikov >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: FreeBSD neva.vlink.ru 4.7-STABLE FreeBSD 4.7-STABLE #2: Wed Dec 11 17:29:12 MSK 2002 dsh@neva.vlink.ru:/var/FreeBSD/src/sys/compile/NEVA i386 >Description: Upgrade to latest version. >How-To-Repeat: >Fix: diff -Nru p5-Class-Container.orig/Makefile p5-Class-Container/Makefile --- p5-Class-Container.orig/Makefile Tue Feb 25 09:26:26 2003 +++ p5-Class-Container/Makefile Tue Feb 25 09:28:09 2003 @@ -6,7 +6,7 @@ # PORTNAME= Class-Container -PORTVERSION= 0.07 +PORTVERSION= 0.09 CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Class @@ -15,7 +15,7 @@ MAINTAINER= dsh@vlink.ru COMMENT= Glues object frameworks together transparently -BUILD_DEPENDS= ${SITE_PERL}/Params/Validate.pm:${PORTSDIR}/devel/p5-Params-Validate +BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Params/Validate.pm:${PORTSDIR}/devel/p5-Params-Validate RUN_DEPENDS= ${BUILD_DEPENDS} PERL_CONFIGURE= yes diff -Nru p5-Class-Container.orig/distinfo p5-Class-Container/distinfo --- p5-Class-Container.orig/distinfo Tue Feb 25 09:26:26 2003 +++ p5-Class-Container/distinfo Tue Feb 25 09:28:31 2003 @@ -1 +1 @@ -MD5 (Class-Container-0.07.tar.gz) = 069462179e6804ea1733c78620fe1ecf +MD5 (Class-Container-0.09.tar.gz) = 55e2e16ad5fd6616a5a1853627761656 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 0: 0:35 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E1EA37B401 for ; Tue, 25 Feb 2003 00:00:28 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30F6043FE9 for ; Tue, 25 Feb 2003 00:00:26 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1P80QNS007827 for ; Tue, 25 Feb 2003 00:00:26 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1P80PqQ007826; Tue, 25 Feb 2003 00:00:25 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E3AC737B401 for ; Mon, 24 Feb 2003 23:55:47 -0800 (PST) Received: from vsmi.ru (ns.vsmi.ru [217.23.84.98]) by mx1.FreeBSD.org (Postfix) with SMTP id 28F8743F85 for ; Mon, 24 Feb 2003 23:55:43 -0800 (PST) (envelope-from info@volginfo.ru) Received: (qmail 88942 invoked from network); 25 Feb 2003 11:02:16 -0000 Received: from unknown (HELO img.local) (192.168.0.1) by 192.168.0.50 with SMTP; 25 Feb 2003 11:02:16 -0000 Message-Id: <200302251102.27674.info@volginfo.ru> Date: Tue, 25 Feb 2003 11:02:27 +0300 From: "Denis N. Peplin" To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/48657: New port: drweb-qmail Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48657 >Category: ports >Synopsis: New port: drweb-qmail >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Feb 25 00:00:25 PST 2003 >Closed-Date: >Last-Modified: >Originator: Denis N.Peplin >Release: FreeBSD 4.7-RELEASE-p1 i386 >Organization: >Environment: System: FreeBSD img.local 4.7-RELEASE-p1 FreeBSD 4.7-RELEASE-p1 #0: Wed Nov 6 16:45:51 MSK 2002 sg@img.local:/usr/obj/usr/src/sys/nKERN2 i386 >Description: Qmail client for DrWeb antivirus suite Pr 48004 now too old. Please, close it. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # . # ./files # ./files/patch-aa # ./Makefile # ./pkg-plist # ./pkg-descr # ./pkg-comment # ./distinfo # ./pkg-message # echo c - . mkdir -p . > /dev/null 2>&1 echo c - ./files mkdir -p ./files > /dev/null 2>&1 echo x - ./files/patch-aa sed 's/^X//' >./files/patch-aa << 'END-of-./files/patch-aa' X--- etc/drweb/drweb_qmail.conf.orig Mon Feb 17 18:05:25 2003 X+++ etc/drweb/drweb_qmail.conf Wed Feb 19 15:28:54 2003 X@@ -17,7 +17,7 @@ X # Address = local:/usr/local/drweb/run/drwebd.skt X # Address = pid:/usr/local/drweb/run/drwebd.pid X # Address = pid:/var/drweb/run/drwebd.pid, inet:3000@backup_server.example.com X-Address = inet:3000@localhost X+Address = local:/usr/local/drweb/run/drwebd.sock X X # Enable/disable caching resolved daemon host X # (useful only if daemon uses TCP/IP communications) X@@ -69,7 +69,7 @@ X DenyOnOne = yes X X # List with rules for users or domains to block scanning X-DenyList = /etc/drweb/users.conf X+DenyList = /usr/local/drweb/users.conf X X # Directory used for story temporary files X Spool = /var/drweb/spool X@@ -182,10 +182,10 @@ X FilterMail = DrWEB-DAEMON@example.com X X # List of unnotificable viruses X-UnnotificableVirusesList = /etc/drweb/viruses.conf X+UnnotificableVirusesList = /usr/local/drweb/viruses.conf X X # List of unnotificable addresses X-UnnotificableAddressesList = /etc/drweb/addresses.conf X+UnnotificableAddressesList = /usr/local/drweb/addresses.conf X X # Quarantine directory. X # The infected files could be moved in that dir X@@ -206,9 +206,9 @@ X RcptsNotify = yes X X # Files with notification templates X-AdminTemplate = /etc/drweb/templates/en-ru/qmail/virus-admin.msg X-RcptsTemplate = /etc/drweb/templates/en-ru/qmail/virus-rcpts.msg X-SenderTemplate = /etc/drweb/templates/en-ru/qmail/virus-sender.msg X+AdminTemplate = /usr/local/drweb/templates/en-ru/qmail/virus-admin.msg X+RcptsTemplate = /usr/local/drweb/templates/en-ru/qmail/virus-rcpts.msg X+SenderTemplate = /usr/local/drweb/templates/en-ru/qmail/virus-sender.msg X X [SkipNotifications] X SenderNotify = yes X@@ -216,23 +216,23 @@ X RcptsNotify = no X AdminTemplate = X RcptsTemplate = X-SenderTemplate = /etc/drweb/templates/en-ru/qmail/skip-sender.msg X+SenderTemplate = /usr/local/drweb/templates/en-ru/qmail/skip-sender.msg X X [ArchiveRestrictionNotifications] X SenderNotify = yes X AdminNotify = yes X RcptsNotify = no X-AdminTemplate = /etc/drweb/templates/en-ru/qmail/archive-admin.msg X+AdminTemplate = /usr/local/drweb/templates/en-ru/qmail/archive-admin.msg X RcptsTemplate = X-SenderTemplate = /etc/drweb/templates/en-ru/qmail/archive-sender.msg X+SenderTemplate = /usr/local/drweb/templates/en-ru/qmail/archive-sender.msg X X [ErrorNotifications] X SenderNotify = yes X AdminNotify = yes X RcptsNotify = no X-AdminTemplate = /etc/drweb/templates/en-ru/qmail/error-admin.msg X+AdminTemplate = /usr/local/drweb/templates/en-ru/qmail/error-admin.msg X RcptsTemplate = X-SenderTemplate = /etc/drweb/templates/en-ru/qmail/error-sender.msg X+SenderTemplate = /usr/local/drweb/templates/en-ru/qmail/error-sender.msg X X ################### X # Logging section # END-of-./files/patch-aa echo x - ./Makefile sed 's/^X//' >./Makefile << 'END-of-./Makefile' X# New ports collection makefile for: drweb-qmail X# Date created: 05 February 2003 X# Whom: Denis N. Peplin X# X# $FreeBSD$ X# X XPORTNAME= drweb_qmail XPORTVERSION= 4.29.10 XCATEGORIES= security mail XMASTER_SITES= ftp://ftp.drweb.ru/pub/unix/ XDISTNAME= drweb-qmail-${PORTVERSION}-freebsd4 X XMAINTAINER= info@volginfo.ru X XQMAIL_PREFIX?= /var/qmail XQMAIL_NOFILES?= qnofiles X XDRWEB_WRKDIR= /var/drweb XDRWEB_PREFIX= ${PREFIX}/drweb X XRUN_DEPENDS= ${DRWEB_PREFIX}/drwebd:${PORTSDIR}/security/drweb \ X ${QMAIL_PREFIX}/bin/qmail-queue:${PORTSDIR}/mail/qmail X XWRKSRC= ${WRKDIR}/drweb-qmail X XNO_BUILD= YES X XP?= /usr/sbin/pw X Xpre-fetch: X @${ECHO_MSG} "" X @${ECHO_MSG} "You can use QMAIL_PREFIX (default value is /var/qmail) and QMAIL_NOFILES (default value is qnofiles) options." X @${ECHO_MSG} "" X XBINOWN= drweb XBINGRP= qmail XBINMODE= 4711 X Xdo-install: X ${PW} usermod drweb -G ${QMAIL_NOFILES} X ${INSTALL_PROGRAM} ${WRKSRC}/opt/drweb/qmail-queue \ X ${QMAIL_PREFIX}/bin/qmail-queue.drweb X ${INSTALL_DATA} ${WRKSRC}/etc/drweb/addresses.conf \ X ${DRWEB_PREFIX}/addresses.conf-dist X ${INSTALL_DATA} ${WRKSRC}/etc/drweb/drweb_qmail.conf \ X ${DRWEB_PREFIX}/drweb_qmail.conf-dist X ${INSTALL_DATA} ${WRKSRC}/etc/drweb/users.conf \ X ${DRWEB_PREFIX}/users.conf-dist X ${INSTALL_DATA} ${WRKSRC}/etc/drweb/viruses.conf \ X ${DRWEB_PREFIX}/viruses.conf-dist X if [ ! -f ${DRWEB_PREFIX}/addresses.conf ] ; then \ X ${CP} ${DRWEB_PREFIX}/addresses.conf-dist \ X ${DRWEB_PREFIX}/addresses.conf; \ X fi X if [ ! -f ${DRWEB_PREFIX}/drweb_qmail.conf ] ; then \ X ${CP} ${DRWEB_PREFIX}/drweb_qmail.conf-dist \ X ${DRWEB_PREFIX}/drweb_qmail.conf; \ X fi X if [ ! -f ${DRWEB_PREFIX}/users.conf ] ; then \ X ${CP} ${DRWEB_PREFIX}/users.conf-dist \ X ${DRWEB_PREFIX}/users.conf; \ X fi X if [ ! -f ${DRWEB_PREFIX}/viruses.conf ] ; then \ X ${CP} ${DRWEB_PREFIX}/viruses.conf-dist \ X ${DRWEB_PREFIX}/viruses.conf; \ X fi X ${MKDIR} -m 755 ${DRWEB_WRKDIR} X ${MKDIR} -m 770 ${DRWEB_WRKDIR}/infected ${DRWEB_WRKDIR}/spool X ${CHOWN} drweb:drweb ${DRWEB_WRKDIR} X ${CHOWN} drweb:${QMAIL_NOFILES} ${DRWEB_WRKDIR}/infected \ X ${DRWEB_WRKDIR}/spool X ${CP} -R ${WRKSRC}/etc/drweb/templates ${PREFIX}/drweb X ${CP} -R ${WRKSRC}/opt/drweb/doc/qmail ${PREFIX}/drweb/doc X Xpost-install: X @${CAT} ${PKGMESSAGE} X X.include END-of-./Makefile echo x - ./pkg-plist sed 's/^X//' >./pkg-plist << 'END-of-./pkg-plist' X@unexec if [ -f %D/drweb/addresses.conf ] && cmp -s %D/drweb/addresses.conf %D/drweb/addresses.conf-dist; then rm -f %D/drweb/addresses.conf; fi Xdrweb/addresses.conf-dist X@exec if [ ! -f %D/drweb/addresses.conf ] ; then cp -p %D/%F %B/addresses.conf; fi Xdrweb/doc/qmail/addresses_list.rus.txt Xdrweb/doc/qmail/addresses_list.txt Xdrweb/doc/qmail/conf_file.rus.txt Xdrweb/doc/qmail/conf_file.txt Xdrweb/doc/qmail/notify.rus.txt Xdrweb/doc/qmail/notify.txt Xdrweb/doc/qmail/readme Xdrweb/doc/qmail/readme.rus Xdrweb/doc/qmail/users_list.rus.txt Xdrweb/doc/qmail/users_list.txt Xdrweb/doc/qmail/viruses_list.rus.txt Xdrweb/doc/qmail/viruses_list.txt X@unexec if [ -f %D/drweb/drweb_qmail.conf ] && cmp -s %D/drweb/drweb_qmail.conf %D/drweb/drweb_qmail.conf-dist; then rm -f %D/drweb/drweb_qmail.conf; fi Xdrweb/drweb_qmail.conf-dist X@exec if [ ! -f %D/drweb/drweb_qmail.conf ] ; then cp -p %D/%F %B/drweb_qmail.conf; fi Xdrweb/templates/en-ru/admin_archive.msg Xdrweb/templates/en-ru/admin_error.msg Xdrweb/templates/en-ru/admin_virus.msg Xdrweb/templates/en-ru/qmail/archive-admin.msg Xdrweb/templates/en-ru/qmail/archive-sender.msg Xdrweb/templates/en-ru/qmail/error-admin.msg Xdrweb/templates/en-ru/qmail/error-sender.msg Xdrweb/templates/en-ru/qmail/skip-sender.msg Xdrweb/templates/en-ru/qmail/virus-admin.msg Xdrweb/templates/en-ru/qmail/virus-rcpts.msg Xdrweb/templates/en-ru/qmail/virus-sender.msg Xdrweb/templates/en-ru/rcpts_virus.msg Xdrweb/templates/en-ru/sender_archive.msg Xdrweb/templates/en-ru/sender_error.msg Xdrweb/templates/en-ru/sender_skip.msg Xdrweb/templates/en-ru/sender_virus.msg X@unexec if [ -f %D/drweb/users.conf ] && cmp -s %D/drweb/users.conf %D/drweb/users.conf-dist; then rm -f %D/drweb/users.conf; fi Xdrweb/users.conf-dist X@exec if [ ! -f %D/drweb/users.conf ] ; then cp -p %D/%F %B/users.conf; fi X@unexec if [ -f %D/drweb/viruses.conf ] && cmp -s %D/drweb/viruses.conf %D/drweb/viruses.conf-dist; then rm -f %D/drweb/viruses.conf; fi Xdrweb/viruses.conf-dist X@exec if [ ! -f %D/drweb/viruses.conf ] ; then cp -p %D/%F %B/viruses.conf; fi X@dirrm drweb/templates/en-ru/qmail X@dirrm drweb/templates/en-ru X@dirrm drweb/templates X@dirrm drweb/doc/qmail X@cwd /var Xqmail/bin/qmail-queue.drweb X@exec mkdir -m 755 %D/drweb X@exec mkdir -m 770 %D/drweb/infected X@exec mkdir -m 770 %D/drweb/spool X@exec chown drweb:drweb %D/drweb X@exec chown drweb:qnofiles %D/drweb/infected %D/drweb/spool X@dirrm drweb/infected X@dirrm drweb/spool X@dirrm drweb END-of-./pkg-plist echo x - ./pkg-descr sed 's/^X//' >./pkg-descr << 'END-of-./pkg-descr' XQmail client for DrWeb antivirus suite X XWWW: http://www.dials.ru/english/ END-of-./pkg-descr echo x - ./pkg-comment sed 's/^X//' >./pkg-comment << 'END-of-./pkg-comment' XQmail client for DrWeb antivirus suite END-of-./pkg-comment echo x - ./distinfo sed 's/^X//' >./distinfo << 'END-of-./distinfo' XMD5 (drweb-qmail-4.29.10-freebsd4.tar.gz) = d576b49891a17b535a3b3ae460e8b738 END-of-./distinfo echo x - ./pkg-message sed 's/^X//' >./pkg-message << 'END-of-./pkg-message' XThis port based on proxing qmail-queue component of Qmail. You can enable this port by two different ways: X1. Move qmail-queue to qmail-queue.original, then move qmail-queue.drweb to qmail-queue. X2. If Qmail built WITH_QMAILQUEUE_PATCH, You can set QMAILQUEUE variable to full path of qmail-queue.drweb, then specify old qmail-queue in drweb_qmail.conf instead of default qmail-queue.original. Read Qmail docs for details. END-of-./pkg-message exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 0:10:11 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1631637B401 for ; Tue, 25 Feb 2003 00:10:10 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B73C243FAF for ; Tue, 25 Feb 2003 00:10:09 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1P8A9NS013589 for ; Tue, 25 Feb 2003 00:10:09 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1P8A9Qx013588; Tue, 25 Feb 2003 00:10:09 -0800 (PST) Date: Tue, 25 Feb 2003 00:10:09 -0800 (PST) Message-Id: <200302250810.h1P8A9Qx013588@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Mark Laws Subject: Re: ports/48604: update-port: security/oidentd Reply-To: Mark Laws Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48604; it has been noted by GNATS. From: Mark Laws To: freebsd-gnats-submit@FreeBSD.org Cc: lehmann@ans-netz.de Subject: Re: ports/48604: update-port: security/oidentd Date: Tue, 25 Feb 2003 00:08:15 -0800 On Sun, Feb 23, 2003 at 10:22:51PM +0100, Oliver Lehmann wrote: > Hi, > > please take a look at http://www.freebsd.org/cgi/query-pr.cgi?pr=48604 > > do you apporve that update? > > > Greetings, Oliver > -- > Oliver Lehmann > @home: lehmann@ans-netz.de > @office: oliver.lehmann@mgi.de > @www: http://www.pofo.de/ | http://wishlist.ans-netz.de/ This is fine. In fact, if you would like to take over the port, you may do so if you wish. Unfortunately, I've been too busy to give it the attention it deserves as of late. :( -- Mark Laws mdl@60hz.org http://www.60hz.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 0:20:11 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E6D537B401 for ; Tue, 25 Feb 2003 00:20:10 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1CAA143F85 for ; Tue, 25 Feb 2003 00:20:10 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1P8K9NS015907 for ; Tue, 25 Feb 2003 00:20:09 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1P8K9iE015906; Tue, 25 Feb 2003 00:20:09 -0800 (PST) Date: Tue, 25 Feb 2003 00:20:09 -0800 (PST) Message-Id: <200302250820.h1P8K9iE015906@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: "Denis N. Peplin" Subject: Re: ports/48004: New port: DrWeb client for qmail Reply-To: "Denis N. Peplin" Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48004; it has been noted by GNATS. From: "Denis N. Peplin" To: freebsd-gnats-submit@FreeBSD.org, info@volginfo.ru Cc: Subject: Re: ports/48004: New port: DrWeb client for qmail Date: Tue, 25 Feb 2003 11:24:40 +0300 Please, close this pr. Look at new 48657. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 0:40: 9 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D91737B401 for ; Tue, 25 Feb 2003 00:40:06 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 188AA43FA3 for ; Tue, 25 Feb 2003 00:40:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1P8e4NS020086 for ; Tue, 25 Feb 2003 00:40:04 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1P8e4kq020085; Tue, 25 Feb 2003 00:40:04 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A5A337B401 for ; Tue, 25 Feb 2003 00:34:23 -0800 (PST) Received: from pommac.syncrontech.com (pommac.syncrontech.com [62.71.8.20]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBFAB43F3F for ; Tue, 25 Feb 2003 00:34:21 -0800 (PST) (envelope-from ari@pommac.syncrontech.com) Received: from pommac.syncrontech.com (localhost [127.0.0.1]) by pommac.syncrontech.com (8.12.6/8.12.6) with ESMTP id h1P8YKok099418 for ; Tue, 25 Feb 2003 10:34:20 +0200 (EET) (envelope-from ari@pommac.syncrontech.com) Received: (from ari@localhost) by pommac.syncrontech.com (8.12.6/8.12.6/Submit) id h1P8YJCR099417; Tue, 25 Feb 2003 10:34:19 +0200 (EET) Message-Id: <200302250834.h1P8YJCR099417@pommac.syncrontech.com> Date: Tue, 25 Feb 2003 10:34:19 +0200 (EET) From: Ari Suutari Reply-To: Ari Suutari To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48658: Update java-commapi-freebsd port to version 0.2 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48658 >Category: ports >Synopsis: Update java-commapi-freebsd port to version 0.2 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Feb 25 00:40:04 PST 2003 >Closed-Date: >Last-Modified: >Originator: Ari Suutari >Release: FreeBSD 4.7-STABLE i386 >Organization: Syncron Tech Oy >Environment: System: FreeBSD pommac.syncrontech.com 4.7-STABLE FreeBSD 4.7-STABLE #9: Wed Jan 22 10:02:01 EET 2003 root@pommac.syncrontech.com:/usr/obj/usr/src/sys/POMMAC i386 >Description: This is an updated port of FreeBSD's java commapi library. Current version is 0.2, which includes some bug fixes and code cleanup. >How-To-Repeat: N/A >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # pkg-comment # pkg-descr # pkg-plist # distinfo # Makefile # echo x - pkg-comment sed 's/^X//' >pkg-comment << 'END-of-pkg-comment' XJava Communication API for FreeBSD END-of-pkg-comment echo x - pkg-descr sed 's/^X//' >pkg-descr << 'END-of-pkg-descr' XThis is the offical port of Sun's Java Communication API for FreeBSD. XThis API allows communications across RS-232 and Xparallel lines using Java technology under FreeBSD. END-of-pkg-descr echo x - pkg-plist sed 's/^X//' >pkg-plist << 'END-of-pkg-plist' Xjdk1.3.1/jre/lib/ext/CommDriver.jar Xjdk1.3.1/jre/lib/i386/libSerial.so Xjdk1.3.1/jre/lib/i386/libParallel.so Xjdk1.3.1/jre/lib/javax.comm.properties END-of-pkg-plist echo x - distinfo sed 's/^X//' >distinfo << 'END-of-distinfo' XMD5 (freebsd-commapi-0.2.tar.gz) = 06161a300cf239e35f9fdf4100b308dd END-of-distinfo echo x - Makefile sed 's/^X//' >Makefile << 'END-of-Makefile' X# New ports collection makefile for: java freebsd-commapi X# Date created: 2001/07/01 X# Whom: Ari Suutari X# X# $FreeBSD: ports/comms/java-commapi-freebsd/Makefile,v 1.1 2002/08/07 19:44:31 znerd Exp $ X# X XPORTNAME= java-commapi-freebsd XPORTVERSION= 0.2 XCATEGORIES= comms java XMASTER_SITES= http://www.syncrontech.org/freebsd/ XDISTNAME= freebsd-commapi-0.2 X XMAINTAINER= ari.suutari@syncrontech.com X XBUILD_DEPENDS= ${JDKDIR}/bin/javac:${PORTSDIR}/java/jdk13 \ X ${JDKDIR}/jre/lib/ext/comm.jar:${PORTSDIR}/comms/java-commapi XRUN_DEPENDS= ${JDKDIR}/bin/java:${PORTSDIR}/java/jdk13 \ X ${JDKDIR}/jre/lib/ext/comm.jar:${PORTSDIR}/comms/java-commapi X XJDKDIR= ${LOCALBASE}/jdk1.3.1 XMAKE_ENV= JAVA_HOME=${JDKDIR} X X.include END-of-Makefile exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 2: 0:14 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 13F1C37B401 for ; Tue, 25 Feb 2003 02:00:13 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A599143F93 for ; Tue, 25 Feb 2003 02:00:12 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1PA0CNS040836 for ; Tue, 25 Feb 2003 02:00:12 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1PA0Cv8040835; Tue, 25 Feb 2003 02:00:12 -0800 (PST) Date: Tue, 25 Feb 2003 02:00:12 -0800 (PST) Message-Id: <200302251000.h1PA0Cv8040835@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Christian Kratzer Subject: Re: ports/48651: Need to update OpenLDAP to use latest BDB Reply-To: Christian Kratzer Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48651; it has been noted by GNATS. From: Christian Kratzer To: Dave Horsfall Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: ports/48651: Need to update OpenLDAP to use latest BDB Date: Tue, 25 Feb 2003 10:53:55 +0100 (CET) Hi, On Tue, 25 Feb 2003, Dave Horsfall wrote: > >Number: 48651 > >Category: ports > >Synopsis: Need to update OpenLDAP to use latest BDB [snipp] > >Description: > The port of OpenLDAP 2.1.12, if/when it's committed, uses BDB > 4.0, which is considered to be obsolete by the OpenLDAP devels. > Please consider re-porting using BDB 4.1. please close this PR#48651. Problem already taken care of in PR#48647. See http://www.freebsd.org/cgi/query-pr.cgi?pr=48647 Greetings Christ -- CK Software GmbH Christian Kratzer, Schwarzwaldstr. 31, 71131 Jettingen Email: ck@cksoft.de Phone: +49 7452 889-135 Open Software Solutions, Network Security Fax: +49 7452 889-136 FreeBSD spoken here! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 2:10:13 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C5CDC37B401 for ; Tue, 25 Feb 2003 02:10:10 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E0ECB43FBD for ; Tue, 25 Feb 2003 02:10:09 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1PAA9NS046530 for ; Tue, 25 Feb 2003 02:10:09 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1PAA9VT046529; Tue, 25 Feb 2003 02:10:09 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A378137B401 for ; Tue, 25 Feb 2003 02:05:08 -0800 (PST) Received: from ouinch.absolight.com (mx3.absolight.net [212.43.217.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id D708043F75 for ; Tue, 25 Feb 2003 02:05:07 -0800 (PST) (envelope-from root@ouinch.absolight.com) Received: by ouinch.absolight.com (Postfix, from userid 0) id A77BF2CB7; Tue, 25 Feb 2003 11:05:06 +0100 (CET) Message-Id: <20030225100506.A77BF2CB7@ouinch.absolight.com> Date: Tue, 25 Feb 2003 11:05:06 +0100 (CET) From: Mathieu Arnold Reply-To: Mathieu Arnold To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48659: New port devel/p5-Locale-Maketext-Lexicon Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48659 >Category: ports >Synopsis: New port devel/p5-Locale-Maketext-Lexicon >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Feb 25 02:10:09 PST 2003 >Closed-Date: >Last-Modified: >Originator: Mathieu Arnold >Release: FreeBSD 4.7-RELEASE-p2 i386 >Organization: Absolight >Environment: System: FreeBSD ouinch.absolight.net 4.7-RELEASE-p2 FreeBSD 4.7-RELEASE-p2 #0: Sat Nov 30 11:10:32 CET 2002 root@ouinch.absolight.net:/usr/obj/usr/src/sys/MAIL i386 >Description: New port p5-Locale-Maketext-Lexicon >How-To-Repeat: >Fix: begin 644 p5-Locale-Maketext-Lexicon.shar.gz M'XL(`"(_6SX"`Z5686_B.!#]G/R*T;92[Z22T'+=[7*E6EK2"AT$1.".DTZ' M3&*(U22.8M.67?'?=R8!EG:O-.U)K43L-^/G-^-G'\`P%`KPCX$*>10!R_Q0 MW',+P&/W'(0&D>#D3$3\&#(>2QQDR5*'(IG#E,]DQLT#T)0E$@EB6!+@)T]@ MD:3,OZ,,TR7P1/.,0CZH,$_V`5=PI<8`!,1LB4G\C#/-(1`9][7,!%>_YU"5 MY]P9A@>!3*<Z;([KOFCKG3XHT"030-$9#\J$$J+9";WH]*[>27@ MRL]>AZ419D1NW`\E/$(%RE!4*,B1LO\=V_817):(@(L+.'+<5D7.*B7@1^;X M`%S^`*G,M$(-HPC+@@IC$=<)L2?J>_9&"5I4Z*+>0=TPC!L^S18L6\)I[1A. MJ]4:@?X*94R31I=A?_$%-+-$1@%ZS#_ M-L?]WF#H-KM.PWB1"4'^=`9>N^'SFUOT':\AA'P>QY1%T5G MYKC;](;.8.*UAS1U^&WG>])W!IW)=;_IKI[@)M[HJM4>;`C@>G_<$J/^P+EI MCQLD$A'M-MON$/\=1#[;&_+I=;N..VP8(X4-CRT&*! M>GVS14I[-6IW6I.6T\?JYHRW5%?V@,_Y8VI?RSB6B97&]<-OI(6';%L[$A,[;Q5;"4TG]!/&YE0$FRQ55%HM[:I/4[EOW8#?\"I M([U\>EJKLD^^__FD]MOGH/HQ.&&GO,:#T^IY MK6J67[F4#C_NGM)";$-**K'%HQ3Y91O+8($''T_RO<`)B-92A'A=1_0@*``* MM,3G!0M@ELEX[7,1+2*^,KI>S/':[8Y!+?P0F()U1Q]#T;#%TT-)P*8#\PU4 M2VM77,AOTBX/>8-V.1ZUFXK$WCDMYOB_W.7,.K>J=LS\T&9H`L^MT-XDMN@A MEG-_+0U]YZKC60SVH5]8"MWW'5'VQIO>%YT;X/M"UU;WOF"R/XK\@D_3+(;_ 74:$2.5Z*?$-;F3B@3?,[=]#`0O0+```` ` end >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 2:40: 6 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8949637B401 for ; Tue, 25 Feb 2003 02:40:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 80CBD43FDD for ; Tue, 25 Feb 2003 02:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1PAe3NS052987 for ; Tue, 25 Feb 2003 02:40:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1PAe3Ra052986; Tue, 25 Feb 2003 02:40:03 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 50B9637B401 for ; Tue, 25 Feb 2003 02:34:07 -0800 (PST) Received: from mail2.itxmarket.com (fw.itxmarket.com [213.11.40.109]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6EAED43F3F for ; Tue, 25 Feb 2003 02:34:06 -0800 (PST) (envelope-from root@icommerce-france.com) Received: from icommerce-france.com (extranet.itxmarket.com [192.168.2.24]) by mail2.itxmarket.com (Postfix) with ESMTP id 411E437C9C for ; Tue, 25 Feb 2003 11:34:05 +0100 (CET) Received: by icommerce-france.com (Postfix, from userid 0) id D3B6914A24; Tue, 25 Feb 2003 11:34:04 +0100 (CET) Message-Id: <20030225103404.D3B6914A24@icommerce-france.com> Date: Tue, 25 Feb 2003 11:34:04 +0100 (CET) From: "Michael L.Hostbaek" Reply-To: "Michael L.Hostbaek" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48660: Update port: [Maintainer Update]: net/slurm Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48660 >Category: ports >Synopsis: Update port: [Maintainer Update]: net/slurm >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Feb 25 02:40:03 PST 2003 >Closed-Date: >Last-Modified: >Originator: Michael L. Hostbaek >Release: FreeBSD 4.7-STABLE i386 >Organization: FreeBSDCluster.org >Environment: System: FreeBSD extranet.itxmarket.com 4.7-STABLE FreeBSD 4.7-STABLE #0: Fri Oct 11 17:00:45 CEST 2002 root@extranet.itxmarket.com:/usr/obj/usr/src/sys/EXTRANET1 i386 >Description: Update to latest release. >How-To-Repeat: >Fix: diff -u -ruN slurm.bak/Makefile slurm/Makefile --- slurm.bak/Makefile Tue Feb 25 11:30:31 2003 +++ slurm/Makefile Tue Feb 25 11:30:43 2003 @@ -7,7 +7,7 @@ # PORTNAME= slurm -PORTVERSION= 0.2.0 +PORTVERSION= 0.2.1 CATEGORIES= net MASTER_SITES= http://www.raisdorf.net/files/code/ \ http://www.fachschaft.fh-kiel.de/~hscholz/slurm/ \ diff -u -ruN slurm.bak/distinfo slurm/distinfo --- slurm.bak/distinfo Tue Feb 25 11:30:31 2003 +++ slurm/distinfo Tue Feb 25 11:30:51 2003 @@ -1 +1 @@ -MD5 (slurm-0.2.0.tar.gz) = c320325a48e68e64ea1a3c465cd05bba +MD5 (slurm-0.2.1.tar.gz) = 00958f6eafba65b83945fe9af63e19b5 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 3: 0:24 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 44A6837B401 for ; Tue, 25 Feb 2003 03:00:20 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28AD743FBD for ; Tue, 25 Feb 2003 03:00:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1PB0INS057326 for ; Tue, 25 Feb 2003 03:00:19 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1PB0IWh057325; Tue, 25 Feb 2003 03:00:18 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C2B9D37B401 for ; Tue, 25 Feb 2003 02:54:16 -0800 (PST) Received: from wi4d22.informatik.uni-wuerzburg.de (wi4d22.informatik.uni-wuerzburg.de [132.187.101.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3D7C43F75 for ; Tue, 25 Feb 2003 02:54:15 -0800 (PST) (envelope-from root@wi4d22.informatik.uni-wuerzburg.de) Received: from wi4d22.informatik.uni-wuerzburg.de (localhost [127.0.0.1]) by wi4d22.informatik.uni-wuerzburg.de (8.12.6/8.12.6) with ESMTP id h1PAsjnj041747 for ; Tue, 25 Feb 2003 11:54:45 +0100 (CET) (envelope-from root@wi4d22.informatik.uni-wuerzburg.de) Received: (from root@localhost) by wi4d22.informatik.uni-wuerzburg.de (8.12.6/8.12.6/Submit) id h1PAsirQ041746; Tue, 25 Feb 2003 11:54:44 +0100 (CET) Message-Id: <200302251054.h1PAsirQ041746@wi4d22.informatik.uni-wuerzburg.de> Date: Tue, 25 Feb 2003 11:54:44 +0100 (CET) From: Matthias Buelow Reply-To: Matthias Buelow To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48661: mutt port won't build on 5.0 w/ current ports Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48661 >Category: ports >Synopsis: mutt port won't build on 5.0 w/ current ports >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 25 03:00:16 PST 2003 >Closed-Date: >Last-Modified: >Originator: Charlie & >Release: FreeBSD 5.0-RELEASE-p2 i386 >Organization: Univ. Wuerzburg, Germany >Environment: System: FreeBSD reiher.informatik.uni-wuerzburg.de 5.0-RELEASE-p2 FreeBSD 5.0-RELEASE-p2 #0: Sun Feb 23 01:38:51 CET 2003 root@reiher.informatik.uni-wuerzburg.de:/usr/obj/usr/src/sys/REIHER i386 >Description: I'm using 5.0-p2 and a ports tree that is as I believe up-to-date with CVS. All ports I have tried build correctly but mail/mutt won't: Error: your port uses an old layout. Please update it to match this bsd.port.mk. If you have updated your ports collection via cvsup and are still getting this error, see Q12 and Q13 in the cvsup FAQ on http://www.polstra.com for further information. *** Error code 1 Stop in /usr/ports/mail/mutt. CVS status of the files in mail/mutt: cvs server: Examining . =================================================================== File: Makefile Status: Up-to-date Working revision: 1.128 Repository revision: 1.128 /home/ncvs/ports/mail/mutt/Makefile,v Sticky Tag: (none) Sticky Date: (none) Sticky Options: (none) =================================================================== File: distinfo Status: Up-to-date Working revision: 1.55 Repository revision: 1.55 /home/ncvs/ports/mail/mutt/distinfo,v Sticky Tag: (none) Sticky Date: (none) Sticky Options: (none) =================================================================== File: pkg-descr Status: Up-to-date Working revision: 1.6 Repository revision: 1.6 /home/ncvs/ports/mail/mutt/pkg-descr,v Sticky Tag: (none) Sticky Date: (none) Sticky Options: (none) =================================================================== File: pkg-plist Status: Up-to-date Working revision: 1.26 Repository revision: 1.26 /home/ncvs/ports/mail/mutt/pkg-plist,v Sticky Tag: (none) Sticky Date: (none) Sticky Options: (none) =================================================================== File: pkg-plist.htmlfiles Status: Up-to-date Working revision: 1.9 Repository revision: 1.9 /home/ncvs/ports/mail/mutt/pkg-plist.htmlfiles,v Sticky Tag: (none) Sticky Date: (none) Sticky Options: (none) cvs server: Examining files =================================================================== File: extra-patch-doc-ref Status: Up-to-date Working revision: 1.1 Repository revision: 1.1 /home/ncvs/ports/mail/mutt/files/extra-patch-doc-ref,v Sticky Tag: (none) Sticky Date: (none) Sticky Options: (none) =================================================================== File: patch-02 Status: Up-to-date Working revision: 1.8 Repository revision: 1.8 /home/ncvs/ports/mail/mutt/files/patch-02,v Sticky Tag: (none) Sticky Date: (none) Sticky Options: (none) =================================================================== File: patch-03 Status: Up-to-date Working revision: 1.5 Repository revision: 1.5 /home/ncvs/ports/mail/mutt/files/patch-03,v Sticky Tag: (none) Sticky Date: (none) Sticky Options: (none) =================================================================== File: patch-05 Status: Up-to-date Working revision: 1.11 Repository revision: 1.11 /home/ncvs/ports/mail/mutt/files/patch-05,v Sticky Tag: (none) Sticky Date: (none) Sticky Options: (none) =================================================================== File: patch-08 Status: Up-to-date Working revision: 1.2 Repository revision: 1.2 /home/ncvs/ports/mail/mutt/files/patch-08,v Sticky Tag: (none) Sticky Date: (none) Sticky Options: (none) =================================================================== File: patch-aclocal.m4 Status: Up-to-date Working revision: 1.1 Repository revision: 1.1 /home/ncvs/ports/mail/mutt/files/patch-aclocal.m4,v Sticky Tag: (none) Sticky Date: (none) Sticky Options: (none) =================================================================== File: patch-configure.in Status: Up-to-date Working revision: 1.4 Repository revision: 1.4 /home/ncvs/ports/mail/mutt/files/patch-configure.in,v Sticky Tag: (none) Sticky Date: (none) Sticky Options: (none) cvs server: Examining patches I'm using anoncvs.freebsd.org. Removing mail/mutt and checking it out again won't help. I've also checked out again ports/Mk/* to no avail. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 3:20: 7 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F352237B401 for ; Tue, 25 Feb 2003 03:20:02 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00BFF43FBD for ; Tue, 25 Feb 2003 03:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1PBK1NS065435 for ; Tue, 25 Feb 2003 03:20:01 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1PBK1Ia065434; Tue, 25 Feb 2003 03:20:01 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C2D6F37B401 for ; Tue, 25 Feb 2003 03:16:02 -0800 (PST) Received: from mail2.itxmarket.com (fw.itxmarket.com [213.11.40.109]) by mx1.FreeBSD.org (Postfix) with ESMTP id 16F7F43FA3 for ; Tue, 25 Feb 2003 03:16:02 -0800 (PST) (envelope-from root@icommerce-france.com) Received: from icommerce-france.com (extranet.itxmarket.com [192.168.2.24]) by mail2.itxmarket.com (Postfix) with ESMTP id EA6C037CA0 for ; Tue, 25 Feb 2003 12:16:00 +0100 (CET) Received: by icommerce-france.com (Postfix, from userid 0) id 8D4AC14A24; Tue, 25 Feb 2003 12:16:00 +0100 (CET) Message-Id: <20030225111600.8D4AC14A24@icommerce-france.com> Date: Tue, 25 Feb 2003 12:16:00 +0100 (CET) From: "Michael L.Hostbaek" Reply-To: "Michael L.Hostbaek" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48662: New port: www/html2hdml Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48662 >Category: ports >Synopsis: New port: www/html2hdml >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Feb 25 03:20:01 PST 2003 >Closed-Date: >Last-Modified: >Originator: Michael L. Hostbaek >Release: FreeBSD 4.7-STABLE i386 >Organization: FreeBSDCluster.org >Environment: System: FreeBSD extranet.itxmarket.com 4.7-STABLE FreeBSD 4.7-STABLE #0: Fri Oct 11 17:00:45 CEST 2002 root@extranet.itxmarket.com:/usr/obj/usr/src/sys/EXTRANET1 i386 >Description: A HTML to HDML converter. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # html2hdml # html2hdml/Makefile # html2hdml/distinfo # html2hdml/pkg-descr # html2hdml/pkg-plist # echo c - html2hdml mkdir -p html2hdml > /dev/null 2>&1 echo x - html2hdml/Makefile sed 's/^X//' >html2hdml/Makefile << 'END-of-html2hdml/Makefile' X# Ports collection makefile for: html2hdml X# Date created: Tue Feb 25, 2003 X# Whom: Michael L. Hostbaek X# X# $FreeBSD$ X# X XPORTNAME= html2hdml XPORTVERSION= 1.0.2 XCATEGORIES= www converters XMASTER_SITES= http://downloads.sourceforge.jp/html2hdml/2459/ X XMAINTAINER= mich@freebsdcluster.org XCOMMENT= HTML to HDML converter X XGNU_CONFIGURE= yes X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin X X.if !defined(NOPORTDOCS) X ${MKDIR} ${DOCSDIR} X ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}/README X.endif X X.include END-of-html2hdml/Makefile echo x - html2hdml/distinfo sed 's/^X//' >html2hdml/distinfo << 'END-of-html2hdml/distinfo' XMD5 (html2hdml-1.0.2.tar.gz) = 6a0edeebd31e5eb2cf56389c9387ba82 END-of-html2hdml/distinfo echo x - html2hdml/pkg-descr sed 's/^X//' >html2hdml/pkg-descr << 'END-of-html2hdml/pkg-descr' XHtml2hdml is a HTML to HDML (Handheld Device Markup Language) converter. XIt is designed to be lightweight, fast, and portable, and works on XLinux, FreeBSD, Solaris, and Cygwin. X XWWW: http://freshmeat.net/projects/html2hdml/ X X - Michael L. Hostbaek X mich@freebsdcluster.org END-of-html2hdml/pkg-descr echo x - html2hdml/pkg-plist sed 's/^X//' >html2hdml/pkg-plist << 'END-of-html2hdml/pkg-plist' Xbin/html2hdml X%%PORTDOCS%%share/doc/html2hdml/README X%%PORTDOCS%%@dirrm /share/doc/html2hdml END-of-html2hdml/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 3:50:15 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC77537B401 for ; Tue, 25 Feb 2003 03:50:12 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3891443F85 for ; Tue, 25 Feb 2003 03:50:12 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1PBoBNS071691 for ; Tue, 25 Feb 2003 03:50:11 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1PBoBbJ071690; Tue, 25 Feb 2003 03:50:11 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E7C3437B401 for ; Tue, 25 Feb 2003 03:46:06 -0800 (PST) Received: from matrix.eurocontrol.fr (matrix.eurocontrol.fr [147.196.254.254]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D5E843F3F for ; Tue, 25 Feb 2003 03:46:06 -0800 (PST) (envelope-from roberto@eurocontrol.fr) Received: from caerdonn.eurocontrol.fr (caerdonn.eurocontrol.fr [147.196.130.91]) by matrix.eurocontrol.fr (Postfix/TLS) with ESMTP id 335634AA29; Tue, 25 Feb 2003 12:45:52 +0100 (MET) Received: by caerdonn.eurocontrol.fr (Postfix/TLS, from userid 1193) id 0437C3BFE; Tue, 25 Feb 2003 12:45:51 +0100 (CET) Message-Id: <20030225114551.0437C3BFE@caerdonn.eurocontrol.fr> Date: Tue, 25 Feb 2003 12:45:51 +0100 (CET) From: Ollivier Robert Reply-To: Ollivier Robert To: FreeBSD-gnats-submit@FreeBSD.org Cc: bms@spc.org, alan@clegg.com X-Send-Pr-Version: 3.113 Subject: ports/48663: Both sysutils/sjog & graphics/picturebook br0ken the same way Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48663 >Category: ports >Synopsis: Both sysutils/sjog & graphics/picturebook br0ken the same way >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 25 03:50:10 PST 2003 >Closed-Date: >Last-Modified: >Originator: Ollivier Robert >Release: FreeBSD 5.0-CURRENT i386 >Organization: Usenet Canal Historique >Environment: System: FreeBSD caerdonn.eurocontrol.fr 5.0-CURRENT FreeBSD 5.0-CURRENT #6: Tue Jan 21 16:05:16 CET 2003 roberto@caerdonn.eurocontrol.fr:/src/src/sys/i386/compile/tCAERDONN i386 ports tree up to date. >Description: Both ports cannot build (see bento) because the patch to setbrightness is wrong. gmake[2]: Leaving directory `/local/src/ports/sysutils/sjog/work/sjog-0.5/src' Making all in setbrightness gmake[2]: Entering directory `/local/src/ports/sysutils/sjog/work/sjog-0.5/setbrightness' cc -DHAVE_CONFIG_H -I. -I. -I.. -O -pipe -c setbrightness.c In file included from setbrightness.c:21: /usr/include/machine/cpufunc.h:69: syntax error before "bsfl" /usr/include/machine/cpufunc.h:69: syntax error before "mask" /usr/include/machine/cpufunc.h: In function `bsfl': /usr/include/machine/cpufunc.h:71: syntax error before "result" /usr/include/machine/cpufunc.h:73: `result' undeclared (first use in this function) /usr/include/machine/cpufunc.h:73: (Each undeclared identifier is reported only once /usr/include/machine/cpufunc.h:73: for each function it appears in.) /usr/include/machine/cpufunc.h:73: `mask' undeclared (first use in this function) /usr/include/machine/cpufunc.h: At top level: /usr/include/machine/cpufunc.h:78: syntax error before "bsrl" /usr/include/machine/cpufunc.h:78: syntax error before "mask" /usr/include/machine/cpufunc.h: In function `bsrl': /usr/include/machine/cpufunc.h:80: syntax error before "result" /usr/include/machine/cpufunc.h:82: `result' undeclared (first use in this function) /usr/include/machine/cpufunc.h:82: `mask' undeclared (first use in this function) /usr/include/machine/cpufunc.h: At top level: >How-To-Repeat: cd /usr/ports/susytils/sjog make >Fix: Unknown >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 3:53:25 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B661A37B401; Tue, 25 Feb 2003 03:53:24 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A43D43FAF; Tue, 25 Feb 2003 03:53:24 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (leeym@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1PBrONS073960; Tue, 25 Feb 2003 03:53:24 -0800 (PST) (envelope-from leeym@freefall.freebsd.org) Received: (from leeym@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1PBrOv9073955; Tue, 25 Feb 2003 03:53:24 -0800 (PST) Date: Tue, 25 Feb 2003 03:53:24 -0800 (PST) From: Yen-Ming Lee Message-Id: <200302251153.h1PBrOv9073955@freefall.freebsd.org> To: leeym@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, leeym@FreeBSD.org Subject: Re: ports/47907: New port : misc/gubby Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port : misc/gubby Responsible-Changed-From-To: freebsd-ports-bugs->leeym Responsible-Changed-By: leeym Responsible-Changed-When: Tue Feb 25 03:53:23 PST 2003 Responsible-Changed-Why: I will handle this pr. http://www.freebsd.org/cgi/query-pr.cgi?pr=47907 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 4:10:40 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 84DA937B401 for ; Tue, 25 Feb 2003 04:10:37 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6427D44011 for ; Tue, 25 Feb 2003 04:10:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1PCAGNS083617 for ; Tue, 25 Feb 2003 04:10:16 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1PCAGA9083616; Tue, 25 Feb 2003 04:10:16 -0800 (PST) Date: Tue, 25 Feb 2003 04:10:16 -0800 (PST) Message-Id: <200302251210.h1PCAGA9083616@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Michael Hostbaek Subject: Re: ports/48660: Update port: [Maintainer Update]: net/slurm Reply-To: Michael Hostbaek Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48660; it has been noted by GNATS. From: Michael Hostbaek To: hendrik@scholz.net Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/48660: Update port: [Maintainer Update]: net/slurm Date: Tue, 25 Feb 2003 13:03:33 +0100 Ooops.. Didn't see the added man page. diff looks good. /mich (Maintainer) Hendrik Scholz (hscholz) writes: > Hi! > > Please use the attached patch with the following changes: > > - standard update > - update pkg-descr > - add manpage > > Thanks, Hendrik (slurm author) > > diff -urP slurm-0.2.0/Makefile slurm/Makefile > --- slurm-0.2.0/Makefile Tue Feb 25 12:49:41 2003 > +++ slurm/Makefile Tue Feb 25 12:56:28 2003 > @@ -7,7 +7,7 @@ > # > > PORTNAME= slurm > -PORTVERSION= 0.2.0 > +PORTVERSION= 0.2.1 > CATEGORIES= net > MASTER_SITES= http://www.raisdorf.net/files/code/ \ > http://www.fachschaft.fh-kiel.de/~hscholz/slurm/ \ > @@ -18,10 +18,13 @@ > > LDFLAGS+= -lncurses > > +MAN1= slurm.1 > + > do-build: > (cd ${WRKSRC} && ${CC} ${CFLAGS} ${LDFLAGS} -o ${PORTNAME} slurm.c) > > do-install: > + ${INSTALL_DATA} ${WRKSRC}/${MAN1} ${PREFIX}/man/man1 > ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin > > .if !defined(NOPORTDOCS) > diff -urP slurm-0.2.0/distinfo slurm/distinfo > --- slurm-0.2.0/distinfo Tue Feb 25 12:49:41 2003 > +++ slurm/distinfo Tue Feb 25 12:50:09 2003 > @@ -1 +1 @@ > -MD5 (slurm-0.2.0.tar.gz) = c320325a48e68e64ea1a3c465cd05bba > +MD5 (slurm-0.2.1.tar.gz) = 00958f6eafba65b83945fe9af63e19b5 > diff -urP slurm-0.2.0/pkg-descr slurm/pkg-descr > --- slurm-0.2.0/pkg-descr Tue Feb 25 12:49:41 2003 > +++ slurm/pkg-descr Tue Feb 25 12:54:38 2003 > @@ -1,7 +1,7 @@ > slurm started as a port of pppstatus to FreeBSD and now is a generic > -network load monitor. It features three different modes with real-time > -ASCII graphs and interface statistics for all kinds of network > -interfaces on FreeBSD, NetBSD, OpenBSD, and Linux > +curses based network load monitor. > +It features three different modes with real-time ASCII graphs and > +interface statistics for all kinds of network interfaces on most Unix systems. > > WWW: http://www.raisdorf.net/slurm/ > > > -- > Hendrik Scholz - - http://raisdorf.net/ > > drag me, drop me - treat me like an object -- Best Regards, Michael Landin Hostbaek FreeBSDCluster.org - an International Community */ PGP-key available upon request /* To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 4:30:17 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F37D37B401 for ; Tue, 25 Feb 2003 04:30:15 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D39043F85 for ; Tue, 25 Feb 2003 04:30:14 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1PCUDNS087992 for ; Tue, 25 Feb 2003 04:30:13 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1PCUDB0087991; Tue, 25 Feb 2003 04:30:13 -0800 (PST) Date: Tue, 25 Feb 2003 04:30:13 -0800 (PST) Message-Id: <200302251230.h1PCUDB0087991@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Hendrik Scholz Subject: Re: ports/48660: Update port: [Maintainer Update]: net/slurm Reply-To: Hendrik Scholz Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48660; it has been noted by GNATS. From: Hendrik Scholz To: "Michael L.Hostbaek" Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/48660: Update port: [Maintainer Update]: net/slurm Date: Tue, 25 Feb 2003 12:59:54 +0100 Hi! Please use the attached patch with the following changes: - standard update - update pkg-descr - add manpage Thanks, Hendrik (slurm author) diff -urP slurm-0.2.0/Makefile slurm/Makefile --- slurm-0.2.0/Makefile Tue Feb 25 12:49:41 2003 +++ slurm/Makefile Tue Feb 25 12:56:28 2003 @@ -7,7 +7,7 @@ # PORTNAME= slurm -PORTVERSION= 0.2.0 +PORTVERSION= 0.2.1 CATEGORIES= net MASTER_SITES= http://www.raisdorf.net/files/code/ \ http://www.fachschaft.fh-kiel.de/~hscholz/slurm/ \ @@ -18,10 +18,13 @@ LDFLAGS+= -lncurses +MAN1= slurm.1 + do-build: (cd ${WRKSRC} && ${CC} ${CFLAGS} ${LDFLAGS} -o ${PORTNAME} slurm.c) do-install: + ${INSTALL_DATA} ${WRKSRC}/${MAN1} ${PREFIX}/man/man1 ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin .if !defined(NOPORTDOCS) diff -urP slurm-0.2.0/distinfo slurm/distinfo --- slurm-0.2.0/distinfo Tue Feb 25 12:49:41 2003 +++ slurm/distinfo Tue Feb 25 12:50:09 2003 @@ -1 +1 @@ -MD5 (slurm-0.2.0.tar.gz) = c320325a48e68e64ea1a3c465cd05bba +MD5 (slurm-0.2.1.tar.gz) = 00958f6eafba65b83945fe9af63e19b5 diff -urP slurm-0.2.0/pkg-descr slurm/pkg-descr --- slurm-0.2.0/pkg-descr Tue Feb 25 12:49:41 2003 +++ slurm/pkg-descr Tue Feb 25 12:54:38 2003 @@ -1,7 +1,7 @@ slurm started as a port of pppstatus to FreeBSD and now is a generic -network load monitor. It features three different modes with real-time -ASCII graphs and interface statistics for all kinds of network -interfaces on FreeBSD, NetBSD, OpenBSD, and Linux +curses based network load monitor. +It features three different modes with real-time ASCII graphs and +interface statistics for all kinds of network interfaces on most Unix systems. WWW: http://www.raisdorf.net/slurm/ -- Hendrik Scholz - - http://raisdorf.net/ drag me, drop me - treat me like an object To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 4:30:27 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7300937B405 for ; Tue, 25 Feb 2003 04:30:16 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A4FAB43FBD for ; Tue, 25 Feb 2003 04:30:14 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1PCUENS088006 for ; Tue, 25 Feb 2003 04:30:14 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1PCUEVe088005; Tue, 25 Feb 2003 04:30:14 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 893BF37B401 for ; Tue, 25 Feb 2003 04:28:15 -0800 (PST) Received: from woolridge.ca (ip30-166.tor.istop.com [66.11.166.30]) by mx1.FreeBSD.org (Postfix) with SMTP id 810A443FA3 for ; Tue, 25 Feb 2003 04:28:14 -0800 (PST) (envelope-from dwoolrid@woolridge.ca) Received: (qmail 16476 invoked by uid 1000); 25 Feb 2003 12:28:13 -0000 Message-Id: <20030225122813.16475.qmail@najla.woolridge.ca> Date: 25 Feb 2003 12:28:13 -0000 From: Dale Woolridge Reply-To: Dale Woolridge To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48664: New port: Binc IMAP is a GPL licensed IMAP4rev1 server for Maildir Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48664 >Category: ports >Synopsis: New port: Binc IMAP is a GPL licensed IMAP4rev1 server for Maildir >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Feb 25 04:30:14 PST 2003 >Closed-Date: >Last-Modified: >Originator: Dale Woolridge >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: FreeBSD najla.woolridge.ca 4.7-STABLE FreeBSD 4.7-STABLE #2: Mon Feb 3 17:45:35 EST 2003 root@najla.woolridge.ca:/usr/obj/usr/src/sys/NAJLA i386 >Description: Binc IMAP is a GPL licensed IMAP4rev1 server for Maildir, written in C++. It strives to be stable, fast, flexible, and RFC compliant. For those familiar with qmail-pop3d, this IMAP server will be the natural choice. It is invoked similarily, uses checkpassword, and it is also very easy to write your own authenticator. WWW: http://www.bincimap.andreas.hanssen.name/ >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # /usr/ports/mail/bincimap/ # /usr/ports/mail/bincimap/pkg-descr # /usr/ports/mail/bincimap/distinfo # /usr/ports/mail/bincimap/Makefile # /usr/ports/mail/bincimap/pkg-plist # /usr/ports/mail/bincimap/pkg-message # /usr/ports/mail/bincimap/files # /usr/ports/mail/bincimap/files/patch-01 # /usr/ports/mail/bincimap/files/patch-02 # /usr/ports/mail/bincimap/files/patch-03 # /usr/ports/mail/bincimap/bincimap.shar # echo c - /usr/ports/mail/bincimap/ mkdir -p /usr/ports/mail/bincimap/ > /dev/null 2>&1 echo x - /usr/ports/mail/bincimap/pkg-descr sed 's/^X//' >/usr/ports/mail/bincimap/pkg-descr << 'END-of-/usr/ports/mail/bincimap/pkg-descr' XBinc IMAP is a GPL licensed IMAP4rev1 server for Maildir, Xwritten in C++. It strives to be stable, fast, flexible, Xand RFC compliant. X XFor those familiar with qmail-pop3d, this IMAP server Xwill be the natural choice. It is invoked similarily, Xuses checkpassword, and it is also very easy to write Xyour own authenticator. X XWWW: http://www.bincimap.andreas.hanssen.name/ END-of-/usr/ports/mail/bincimap/pkg-descr echo x - /usr/ports/mail/bincimap/distinfo sed 's/^X//' >/usr/ports/mail/bincimap/distinfo << 'END-of-/usr/ports/mail/bincimap/distinfo' XMD5 (bincimap-1.0.24.tar.gz) = d30719069dbf62763f349ecd87654740 END-of-/usr/ports/mail/bincimap/distinfo echo x - /usr/ports/mail/bincimap/Makefile sed 's/^X//' >/usr/ports/mail/bincimap/Makefile << 'END-of-/usr/ports/mail/bincimap/Makefile' X# New ports collection makefile for: binc X# Date created: 25/03/2003 X# Whom: Dale Woolridge X# X# $FreeBSD$ X# X XPORTNAME= bincimap XPORTVERSION= 1.0.24 XCATEGORIES= mail XMASTER_SITES= http://www.bincimap.andreas.hanssen.name/dl/tarballs/ XDISTNAME= ${PORTNAME}-${PORTVERSION} X XMAINTAINER= dale-freebsd-port-binc@woolridge.org XCOMMENT= Binc IMAP is a GPL licensed IMAP4rev1 server for Maildir X XGNU_CONFIGURE= yes X XCONFIGURE_ARGS+= --sysconfdir=${PREFIX}/etc/bincimap X X# X# compile static X# X.if BINC_STATIC XCONFIGURE_ARGS+= --enable-static X.endif X Xpost-install: X ${MKDIR} ${PREFIX}/etc/bincimap X ${CHOWN} ${SHAREOWN}:${SHAREGRP} ${PREFIX}/etc/bincimap X ${INSTALL_DATA} ${WRKSRC}/conf/bincimap.conf ${PREFIX}/etc/bincimap/bincimap.conf.sample X ${INSTALL_DATA} ${WRKSRC}/service/run ${PREFIX}/etc/bincimap/supervise.sample X ${INSTALL_DATA} ${WRKSRC}/service/run-ssl ${PREFIX}/etc/bincimap/supervise-ssl.sample X ${INSTALL_DATA} ${WRKSRC}/conf/xinetd-bincimap ${PREFIX}/etc/bincimap/xinetd.sample X ${INSTALL_DATA} ${WRKSRC}/conf/xinetd-bincimaps ${PREFIX}/etc/bincimap/xinetd-ssl.sample X ${INSTALL_MAN} ${WRKSRC}/man/bincimapd.1 ${PREFIX}/man/man1/ X ${INSTALL_MAN} ${WRKSRC}/man/bincimap.conf.5 ${PREFIX}/man/man5/ X @${CAT} pkg-message X X.include END-of-/usr/ports/mail/bincimap/Makefile echo x - /usr/ports/mail/bincimap/pkg-plist sed 's/^X//' >/usr/ports/mail/bincimap/pkg-plist << 'END-of-/usr/ports/mail/bincimap/pkg-plist' Xbin/bincimapd Xbin/bincimap-auth-checkpassword Xbin/bincimap-uidpwd Xetc/bincimap/bincimap.conf.sample Xetc/bincimap/supervise.sample Xetc/bincimap/supervise-ssl.sample Xetc/bincimap/xinetd.sample Xetc/bincimap/xinetd-ssl.sample Xman/man1/bincimapd.1 Xman/man5/bincimap.conf.5 X@dirrm etc/bincimap END-of-/usr/ports/mail/bincimap/pkg-plist echo x - /usr/ports/mail/bincimap/pkg-message sed 's/^X//' >/usr/ports/mail/bincimap/pkg-message << 'END-of-/usr/ports/mail/bincimap/pkg-message' X************************************************** X XThe bincimapd daemon should be invoked by a supervise'd tcpserver or xinetd. X XPlease examine the sample configuration file (bincimap.conf.sample) and Xcreate your own by modifying a copy of the sample file. X XSample files have been provided for running bincimapd under supervise, Xwith and without ssl, as supervise.sample and supervise-ssl.sample. XSimilarly, a sample for running under xinetd have also been provided Xas xinetd.sample and xinetd-ssl.sample. X XPlease note that bincimapd will reject non-encrypted logins by default X(when not used with ssl); this behaviour can be modified via a configuration Xsetting. X X************************************************** END-of-/usr/ports/mail/bincimap/pkg-message echo c - /usr/ports/mail/bincimap/files mkdir -p /usr/ports/mail/bincimap/files > /dev/null 2>&1 echo x - /usr/ports/mail/bincimap/files/patch-01 sed 's/^X//' >/usr/ports/mail/bincimap/files/patch-01 << 'END-of-/usr/ports/mail/bincimap/files/patch-01' X--- conf/bincimap.conf Sat Feb 22 06:53:56 2003 X+++ conf/bincimap.conf Mon Feb 24 02:59:54 2003 X@@ -91,7 +91,7 @@ Session { X X //---------------------------------------------------------------------------- X SSL { X- pem file = "/usr/share/ssl/certs/stunnel.pem", /* private key and X+ pem file = "/usr/local/etc/stunnel/mail.pem", /* private key and X certificate X chain PEM file X name */ END-of-/usr/ports/mail/bincimap/files/patch-01 echo x - /usr/ports/mail/bincimap/files/patch-02 sed 's/^X//' >/usr/ports/mail/bincimap/files/patch-02 << 'END-of-/usr/ports/mail/bincimap/files/patch-02' X--- src/parsers/args/args.cc Sat Feb 22 08:23:28 2003 X+++ src/parsers/args/args.cc Mon Feb 24 16:05:01 2003 X@@ -47,6 +47,8 @@ X #ifdef HAVE_GETOPT_LONG X #define _GNU_SOURCE X #include X+#else X+#include X #endif X X using namespace Binc::Util; END-of-/usr/ports/mail/bincimap/files/patch-02 echo x - /usr/ports/mail/bincimap/files/patch-03 sed 's/^X//' >/usr/ports/mail/bincimap/files/patch-03 << 'END-of-/usr/ports/mail/bincimap/files/patch-03' X--- service/run-ssl.in Sat Feb 22 11:49:36 2003 X+++ service/run-ssl.in Tue Feb 25 05:11:34 2003 X@@ -11,5 +11,5 @@ exec tcpserver -c 100 -u 0 -g 0 \ X --logtype=multilog \ X --conf=@sysconfdir@/bincimap.conf --ssl \ X @prefix@/bin/bincimap-auth-checkpassword \ X- /bin/checkpassword \ X+ /usr/local/bin/checkpassword \ X @prefix@/bin/bincimap-uidpwd X--- service/run.in Sat Feb 22 11:49:36 2003 X+++ service/run.in Tue Feb 25 05:11:44 2003 X@@ -11,5 +11,5 @@ exec tcpserver -c 100 -u 0 -g 0 \ X --logtype=multilog \ X --conf=@sysconfdir@/bincimap.conf \ X @prefix@/bin/bincimap-auth-checkpassword \ X- /bin/checkpassword \ X+ /usr/local/bin/checkpassword \ X @prefix@/bin/bincimap-uidpwd END-of-/usr/ports/mail/bincimap/files/patch-03 echo x - /usr/ports/mail/bincimap/bincimap.shar sed 's/^X//' >/usr/ports/mail/bincimap/bincimap.shar << 'END-of-/usr/ports/mail/bincimap/bincimap.shar' X# This is a shell archive. Save it in a file, remove anything before X# this line, and then unpack it by entering "sh file". Note, it may X# create directories; files and directories will be owned by you and X# have default permissions. X# X# This archive contains: X# X# /usr/ports/mail/bincimap/ X# /usr/ports/mail/bincimap/pkg-descr X# /usr/ports/mail/bincimap/distinfo X# /usr/ports/mail/bincimap/Makefile X# /usr/ports/mail/bincimap/pkg-plist X# /usr/ports/mail/bincimap/pkg-message X# /usr/ports/mail/bincimap/files X# /usr/ports/mail/bincimap/files/patch-01 X# /usr/ports/mail/bincimap/files/patch-02 X# /usr/ports/mail/bincimap/files/patch-03 X# /usr/ports/mail/bincimap/bincimap.shar X# Xecho c - /usr/ports/mail/bincimap/ Xmkdir -p /usr/ports/mail/bincimap/ > /dev/null 2>&1 Xecho x - /usr/ports/mail/bincimap/pkg-descr Xsed 's/^X//' >/usr/ports/mail/bincimap/pkg-descr << 'END-of-/usr/ports/mail/bincimap/pkg-descr' XXBinc IMAP is a GPL licensed IMAP4rev1 server for Maildir, XXwritten in C++. It strives to be stable, fast, flexible, XXand RFC compliant. XX XXFor those familiar with qmail-pop3d, this IMAP server XXwill be the natural choice. It is invoked similarily, XXuses checkpassword, and it is also very easy to write XXyour own authenticator. XX XXWWW: http://www.bincimap.andreas.hanssen.name/ XEND-of-/usr/ports/mail/bincimap/pkg-descr Xecho x - /usr/ports/mail/bincimap/distinfo Xsed 's/^X//' >/usr/ports/mail/bincimap/distinfo << 'END-of-/usr/ports/mail/bincimap/distinfo' XXMD5 (bincimap-1.0.24.tar.gz) = d30719069dbf62763f349ecd87654740 XEND-of-/usr/ports/mail/bincimap/distinfo Xecho x - /usr/ports/mail/bincimap/Makefile Xsed 's/^X//' >/usr/ports/mail/bincimap/Makefile << 'END-of-/usr/ports/mail/bincimap/Makefile' XX# New ports collection makefile for: binc XX# Date created: 25/03/2003 XX# Whom: Dale Woolridge XX# XX# $FreeBSD$ XX# XX XXPORTNAME= bincimap XXPORTVERSION= 1.0.24 XXCATEGORIES= mail XXMASTER_SITES= http://www.bincimap.andreas.hanssen.name/dl/tarballs/ XXDISTNAME= ${PORTNAME}-${PORTVERSION} XX XXMAINTAINER= dale-freebsd-port-binc@woolridge.org XXCOMMENT= Binc IMAP is a GPL licensed IMAP4rev1 server for Maildir XX XXGNU_CONFIGURE= yes XX XXCONFIGURE_ARGS+= --sysconfdir=${PREFIX}/etc/bincimap XX XX# XX# compile static XX# XX.if BINC_STATIC XXCONFIGURE_ARGS+= --enable-static XX.endif XX XXpost-install: XX ${MKDIR} ${PREFIX}/etc/bincimap XX ${CHOWN} ${SHAREOWN}:${SHAREGRP} ${PREFIX}/etc/bincimap XX ${INSTALL_DATA} ${WRKSRC}/conf/bincimap.conf ${PREFIX}/etc/bincimap/bincimap.conf.sample XX ${INSTALL_DATA} ${WRKSRC}/service/run ${PREFIX}/etc/bincimap/supervise.sample XX ${INSTALL_DATA} ${WRKSRC}/service/run-ssl ${PREFIX}/etc/bincimap/supervise-ssl.sample XX ${INSTALL_DATA} ${WRKSRC}/conf/xinetd-bincimap ${PREFIX}/etc/bincimap/xinetd.sample XX ${INSTALL_DATA} ${WRKSRC}/conf/xinetd-bincimaps ${PREFIX}/etc/bincimap/xinetd-ssl.sample XX ${INSTALL_MAN} ${WRKSRC}/man/bincimapd.1 ${PREFIX}/man/man1/ XX ${INSTALL_MAN} ${WRKSRC}/man/bincimap.conf.5 ${PREFIX}/man/man5/ XX @${CAT} pkg-message XX XX.include XEND-of-/usr/ports/mail/bincimap/Makefile Xecho x - /usr/ports/mail/bincimap/pkg-plist Xsed 's/^X//' >/usr/ports/mail/bincimap/pkg-plist << 'END-of-/usr/ports/mail/bincimap/pkg-plist' XXbin/bincimapd XXbin/bincimap-auth-checkpassword XXbin/bincimap-uidpwd XXetc/bincimap/bincimap.conf.sample XXetc/bincimap/supervise.sample XXetc/bincimap/supervise-ssl.sample XXetc/bincimap/xinetd.sample XXetc/bincimap/xinetd-ssl.sample XXman/man1/bincimapd.1 XXman/man5/bincimap.conf.5 XX@dirrm etc/bincimap XEND-of-/usr/ports/mail/bincimap/pkg-plist Xecho x - /usr/ports/mail/bincimap/pkg-message Xsed 's/^X//' >/usr/ports/mail/bincimap/pkg-message << 'END-of-/usr/ports/mail/bincimap/pkg-message' XX************************************************** XX XXThe bincimapd daemon should be invoked by a supervise'd tcpserver or xinetd. XX XXPlease examine the sample configuration file (bincimap.conf.sample) and XXcreate your own by modifying a copy of the sample file. XX XXSample files have been provided for running bincimapd under supervise, XXwith and without ssl, as supervise.sample and supervise-ssl.sample. XXSimilarly, a sample for running under xinetd have also been provided XXas xinetd.sample and xinetd-ssl.sample. XX XXPlease note that bincimapd will reject non-encrypted logins by default XX(when not used with ssl); this behaviour can be modified via a configuration XXsetting. XX XX************************************************** XEND-of-/usr/ports/mail/bincimap/pkg-message Xecho c - /usr/ports/mail/bincimap/files Xmkdir -p /usr/ports/mail/bincimap/files > /dev/null 2>&1 Xecho x - /usr/ports/mail/bincimap/files/patch-01 Xsed 's/^X//' >/usr/ports/mail/bincimap/files/patch-01 << 'END-of-/usr/ports/mail/bincimap/files/patch-01' XX--- conf/bincimap.conf Sat Feb 22 06:53:56 2003 XX+++ conf/bincimap.conf Mon Feb 24 02:59:54 2003 XX@@ -91,7 +91,7 @@ Session { XX XX //---------------------------------------------------------------------------- XX SSL { XX- pem file = "/usr/share/ssl/certs/stunnel.pem", /* private key and XX+ pem file = "/usr/local/etc/stunnel/mail.pem", /* private key and XX certificate XX chain PEM file XX name */ XEND-of-/usr/ports/mail/bincimap/files/patch-01 Xecho x - /usr/ports/mail/bincimap/files/patch-02 Xsed 's/^X//' >/usr/ports/mail/bincimap/files/patch-02 << 'END-of-/usr/ports/mail/bincimap/files/patch-02' XX--- src/parsers/args/args.cc Sat Feb 22 08:23:28 2003 XX+++ src/parsers/args/args.cc Mon Feb 24 16:05:01 2003 XX@@ -47,6 +47,8 @@ XX #ifdef HAVE_GETOPT_LONG XX #define _GNU_SOURCE XX #include XX+#else XX+#include XX #endif XX XX using namespace Binc::Util; XEND-of-/usr/ports/mail/bincimap/files/patch-02 Xecho x - /usr/ports/mail/bincimap/files/patch-03 Xsed 's/^X//' >/usr/ports/mail/bincimap/files/patch-03 << 'END-of-/usr/ports/mail/bincimap/files/patch-03' XX--- service/run-ssl.in Sat Feb 22 11:49:36 2003 XX+++ service/run-ssl.in Tue Feb 25 05:11:34 2003 XX@@ -11,5 +11,5 @@ exec tcpserver -c 100 -u 0 -g 0 \ XX --logtype=multilog \ XX --conf=@sysconfdir@/bincimap.conf --ssl \ XX @prefix@/bin/bincimap-auth-checkpassword \ XX- /bin/checkpassword \ XX+ /usr/local/bin/checkpassword \ XX @prefix@/bin/bincimap-uidpwd XX--- service/run.in Sat Feb 22 11:49:36 2003 XX+++ service/run.in Tue Feb 25 05:11:44 2003 XX@@ -11,5 +11,5 @@ exec tcpserver -c 100 -u 0 -g 0 \ XX --logtype=multilog \ XX --conf=@sysconfdir@/bincimap.conf \ XX @prefix@/bin/bincimap-auth-checkpassword \ XX- /bin/checkpassword \ XX+ /usr/local/bin/checkpassword \ XX @prefix@/bin/bincimap-uidpwd XEND-of-/usr/ports/mail/bincimap/files/patch-03 Xecho x - /usr/ports/mail/bincimap/bincimap.shar Xsed 's/^X//' >/usr/ports/mail/bincimap/bincimap.shar << 'END-of-/usr/ports/mail/bincimap/bincimap.shar' END-of-/usr/ports/mail/bincimap/bincimap.shar exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 4:40:12 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 51CB137B401 for ; Tue, 25 Feb 2003 04:40:10 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C57EA43FBF for ; Tue, 25 Feb 2003 04:40:08 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1PCe8NS090056 for ; Tue, 25 Feb 2003 04:40:08 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1PCe8m2090055; Tue, 25 Feb 2003 04:40:08 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 337E937B401 for ; Tue, 25 Feb 2003 04:31:22 -0800 (PST) Received: from arbi.Informatik.Uni-Oldenburg.DE (arbi.Informatik.Uni-Oldenburg.DE [134.106.1.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id C78C743FBD for ; Tue, 25 Feb 2003 04:31:18 -0800 (PST) (envelope-from Frerich.Raabe@Informatik.Uni-Oldenburg.DE) Received: from troja.Informatik.Uni-Oldenburg.DE ([134.106.1.36]) by arbi.Informatik.Uni-Oldenburg.DE (Exim 3.16) id 18neEr-0000v5-00; Tue, 25 Feb 2003 13:31:13 +0100 Received: from tatzelwurm.Informatik.Uni-Oldenburg.DE ([134.106.11.164]) by troja.Informatik.Uni-Oldenburg.DE (Exim 3.36) id 18neEq-0006m3-00; Tue, 25 Feb 2003 13:31:12 +0100 Received: from missingHELO (missingIP) by tatzelwurm.Informatik.Uni-Oldenburg.DE (Exim 3.36) id 18neEq-00024I-00; Tue, 25 Feb 2003 13:31:12 +0100 Message-Id: Date: Tue, 25 Feb 2003 13:31:12 +0100 From: Frerich Raabe Reply-To: Frerich Raabe To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48665: Update port: devel/distcc to version 1.2.1 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48665 >Category: ports >Synopsis: Update port: devel/distcc to version 1.2.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Feb 25 04:40:07 PST 2003 >Closed-Date: >Last-Modified: >Originator: Frerich Raabe >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: FreeBSD tatzelwurm 4.7-STABLE FreeBSD 4.7-STABLE #2: Thu Feb 20 11:40:42 MET 2003 root@trecroci:/usr/src/sys/compile/ARBI-PC i386 >Description: The attached patch updates the port devel/distcc to honour the recently released version 1.2.1 of distcc. Among the features is a new authentication system for allowing distccd IP-based access control, and a new scheduler which can give an up to 10% improvement of performance of a cluster. >How-To-Repeat: >Fix: diff -ruN distcc.old/Makefile distcc/Makefile --- distcc.old/Makefile Tue Feb 25 13:18:40 2003 +++ distcc/Makefile Tue Feb 25 13:19:00 2003 @@ -6,7 +6,7 @@ # PORTNAME= distcc -PORTVERSION= 1.1 +PORTVERSION= 1.2.1 CATEGORIES= devel MASTER_SITES= http://distcc.samba.org/ftp/distcc/ diff -ruN distcc.old/distinfo distcc/distinfo --- distcc.old/distinfo Tue Feb 25 13:18:40 2003 +++ distcc/distinfo Tue Feb 25 13:19:35 2003 @@ -1 +1 @@ -MD5 (distcc-1.1.tar.bz2) = ad2a433dbe4361baffa8dc5f24ba2be7 +MD5 (distcc-1.2.1.tar.bz2) = 03d55a0a3ccaf8266c087623991ae58a >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 5:27:27 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D195837B401; Tue, 25 Feb 2003 05:27:26 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73E6C43FA3; Tue, 25 Feb 2003 05:27:26 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from freefall.freebsd.org (naddy@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1PDRQNS005060; Tue, 25 Feb 2003 05:27:26 -0800 (PST) (envelope-from naddy@freefall.freebsd.org) Received: (from naddy@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1PDRQSP005056; Tue, 25 Feb 2003 05:27:26 -0800 (PST) Date: Tue, 25 Feb 2003 05:27:26 -0800 (PST) From: Christian Weisgerber Message-Id: <200302251327.h1PDRQSP005056@freefall.freebsd.org> To: daveh@ci.com.au, naddy@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48651: Need to update OpenLDAP to use latest BDB Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Need to update OpenLDAP to use latest BDB State-Changed-From-To: open->closed State-Changed-By: naddy State-Changed-When: Tue Feb 25 05:26:03 PST 2003 State-Changed-Why: Already handled by PR #48647. http://www.freebsd.org/cgi/query-pr.cgi?pr=48651 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 5:29: 1 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6EE6D37B401; Tue, 25 Feb 2003 05:29:00 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B55E43F3F; Tue, 25 Feb 2003 05:29:00 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from freefall.freebsd.org (naddy@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1PDSxNS005147; Tue, 25 Feb 2003 05:28:59 -0800 (PST) (envelope-from naddy@freefall.freebsd.org) Received: (from naddy@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1PDSwN4005143; Tue, 25 Feb 2003 05:28:58 -0800 (PST) Date: Tue, 25 Feb 2003 05:28:58 -0800 (PST) From: Christian Weisgerber Message-Id: <200302251328.h1PDSwN4005143@freefall.freebsd.org> To: info@volginfo.ru, naddy@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48004: New port: DrWeb client for qmail Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port: DrWeb client for qmail State-Changed-From-To: open->closed State-Changed-By: naddy State-Changed-When: Tue Feb 25 05:27:55 PST 2003 State-Changed-Why: Superseded by ports/48657. http://www.freebsd.org/cgi/query-pr.cgi?pr=48004 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 6:20:17 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9570937B401 for ; Tue, 25 Feb 2003 06:20:14 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 182CC43FAF for ; Tue, 25 Feb 2003 06:20:14 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1PEKDNS028158 for ; Tue, 25 Feb 2003 06:20:13 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1PEKDTN028157; Tue, 25 Feb 2003 06:20:13 -0800 (PST) Date: Tue, 25 Feb 2003 06:20:13 -0800 (PST) Message-Id: <200302251420.h1PEKDTN028157@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: "Simon 'portlint' Schubert" Subject: Re: ports/48664: New port: Binc IMAP is a GPL licensed IMAP4rev1 server for Maildir Reply-To: "Simon 'portlint' Schubert" Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48664; it has been noted by GNATS. From: "Simon 'portlint' Schubert" To: Dale Woolridge Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/48664: New port: Binc IMAP is a GPL licensed IMAP4rev1 server for Maildir Date: Tue, 25 Feb 2003 15:19:04 +0100 --=.Pb(7g0nu+iPtf? Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Lately Dale Woolridge told: > sed 's/^X//' >/usr/ports/mail/bincimap/Makefile << 'END-of-/usr/ports/mail/bincimap/Makefile' [...] > XDISTNAME= ${PORTNAME}-${PORTVERSION} this is the default. > X @${CAT} pkg-message ${PKGMESSAGE} or at least ${.CURDIR}/pkg-message > sed 's/^X//' >/usr/ports/mail/bincimap/pkg-plist << 'END-of-/usr/ports/mail/bincimap/pkg-plist' [...] > Xman/man1/bincimapd.1 > Xman/man5/bincimap.conf.5 man pages shouldn't appear in the plist but should be noted in the Makefile: MAN1= bincimapd.1 MAN5= bincimap.conf.5 > sed 's/^X//' >/usr/ports/mail/bincimap/files/patch-01 << 'END-of-/usr/ports/mail/bincimap/files/patch-01' > X--- conf/bincimap.conf Sat Feb 22 06:53:56 2003 > X+++ conf/bincimap.conf Mon Feb 24 02:59:54 2003 > X@@ -91,7 +91,7 @@ Session { > X > X //---------------------------------------------------------------------------- > X SSL { > X- pem file = "/usr/share/ssl/certs/stunnel.pem", /* private key and > X+ pem file = "/usr/local/etc/stunnel/mail.pem", /* private key and ${LOCALBASE}? > sed 's/^X//' >/usr/ports/mail/bincimap/files/patch-03 << 'END-of-/usr/ports/mail/bincimap/files/patch-03' > X--- service/run-ssl.in Sat Feb 22 11:49:36 2003 > X+++ service/run-ssl.in Tue Feb 25 05:11:34 2003 > X@@ -11,5 +11,5 @@ exec tcpserver -c 100 -u 0 -g 0 \ > X --logtype=multilog \ > X --conf=@sysconfdir@/bincimap.conf --ssl \ > X @prefix@/bin/bincimap-auth-checkpassword \ > X- /bin/checkpassword \ > X+ /usr/local/bin/checkpassword \ ${LOCALBASE}? > X @prefix@/bin/bincimap-uidpwd > X--- service/run.in Sat Feb 22 11:49:36 2003 > X+++ service/run.in Tue Feb 25 05:11:44 2003 > X@@ -11,5 +11,5 @@ exec tcpserver -c 100 -u 0 -g 0 \ > X --logtype=multilog \ > X --conf=@sysconfdir@/bincimap.conf \ > X @prefix@/bin/bincimap-auth-checkpassword \ > X- /bin/checkpassword \ > X+ /usr/local/bin/checkpassword \ ${LOCALBASE}? > sed 's/^X//' >/usr/ports/mail/bincimap/bincimap.shar << 'END-of-/usr/ports/mail/bincimap/bincimap.shar' > X# This is a shell archive. Save it in a file, remove anything before well, yes... cheers simon -- /"\ http://corecode.ath.cx/#donate \ / \ ASCII Ribbon Campaign / \ Against HTML Mail and News --=.Pb(7g0nu+iPtf? Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.0 (GNU/Linux) iD8DBQE+W3ter5S+dk6z85oRAtImAKDosg6f+mEglNdRr1UKoWwlhsRyrgCg1VYs HiPwdAEtbbV13iGJkVnPiTw= =i1WP -----END PGP SIGNATURE----- --=.Pb(7g0nu+iPtf?-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 6:40:13 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C902337B401 for ; Tue, 25 Feb 2003 06:40:11 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D73343F3F for ; Tue, 25 Feb 2003 06:40:11 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1PEeBNS042520 for ; Tue, 25 Feb 2003 06:40:11 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1PEeB1e042519; Tue, 25 Feb 2003 06:40:11 -0800 (PST) Date: Tue, 25 Feb 2003 06:40:11 -0800 (PST) Message-Id: <200302251440.h1PEeB1e042519@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Dale Woolridge Subject: Re: ports/48664: New port: Binc IMAP is a GPL licensed IMAP4rev1 server for Maildir Reply-To: Dale Woolridge Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48664; it has been noted by GNATS. From: Dale Woolridge To: Simon 'portlint' Schubert Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/48664: New port: Binc IMAP is a GPL licensed IMAP4rev1 server for Maildir Date: Tue, 25 Feb 2003 09:37:41 -0500 On 25-Feb-2003 15:19 Simon 'portlint' Schubert wrote: | | this is the default. ok. | man pages shouldn't appear in the plist but should be noted in the | Makefile: | MAN1= bincimapd.1 | MAN5= bincimap.conf.5 ok. | > X- pem file = "/usr/share/ssl/certs/stunnel.pem", /* private key and | > X+ pem file = "/usr/local/etc/stunnel/mail.pem", /* private key and | | ${LOCALBASE}? maybe. it's a sample file and i only wanted to make the default a little more likely to be true. | > X+ /usr/local/bin/checkpassword \ | | ${LOCALBASE}? same as above. it's really up to installer to determine how much of the sample pertains to them. yes? | > sed 's/^X//' >/usr/ports/mail/bincimap/bincimap.shar << 'END-of-/usr/ports/mail/bincimap/bincimap.shar' | > X# This is a shell archive. Save it in a file, remove anything before | | well, yes... lol. oops. big time. should I resubmit? -- -Dale To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 7: 0:32 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F7DA37B401 for ; Tue, 25 Feb 2003 07:00:28 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 24CBD43FCB for ; Tue, 25 Feb 2003 07:00:25 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1PF0ONS048753 for ; Tue, 25 Feb 2003 07:00:24 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1PF0OXd048752; Tue, 25 Feb 2003 07:00:24 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 843BA37B401 for ; Tue, 25 Feb 2003 06:51:10 -0800 (PST) Received: from relay1.ntu-kpi.kiev.ua (www.ntu-kpi.kiev.ua [212.111.192.161]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7ED3643FB1 for ; Tue, 25 Feb 2003 06:50:44 -0800 (PST) (envelope-from simon@comsys.ntu-kpi.kiev.ua) Received: by relay1.ntu-kpi.kiev.ua (Postfix, from userid 426) id 15F0E19F50; Tue, 25 Feb 2003 16:50:23 +0200 (EET) Received: from comsys.ntu-kpi.kiev.ua (eth0.comsys.ntu-kpi.kiev.ua [10.0.1.184]) by relay1.ntu-kpi.kiev.ua (Postfix) with ESMTP id 654B119EDB for ; Tue, 25 Feb 2003 16:50:22 +0200 (EET) Received: from pm514-9.comsys.ntu-kpi.kiev.ua (pm514-9.comsys.ntu-kpi.kiev.ua [10.18.54.109]) by comsys.ntu-kpi.kiev.ua (8.11.6/8.11.6) with ESMTP id h1PEsrS11829 for ; Tue, 25 Feb 2003 16:54:53 +0200 (EET) Received: from pm514-9.comsys.ntu-kpi.kiev.ua (localhost [127.0.0.1]) by pm514-9.comsys.ntu-kpi.kiev.ua (8.12.6/8.12.6) with ESMTP id h1PEneLn000278 for ; Tue, 25 Feb 2003 16:49:40 +0200 (EET) (envelope-from simon@pm514-9.comsys.ntu-kpi.kiev.ua) Received: (from simon@localhost) by pm514-9.comsys.ntu-kpi.kiev.ua (8.12.6/8.12.6/Submit) id h1PEneWL000277 for FreeBSD-gnats-submit@freebsd.org; Tue, 25 Feb 2003 16:49:40 +0200 (EET) Message-Id: <20030225144939.GA206@pm514-9.comsys.ntu-kpi.kiev.ua> Date: Tue, 25 Feb 2003 16:49:39 +0200 From: Andrey Simonenko To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/48668: Maintainer update port sysutils/ipa 1.3 -> 1.3.1 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48668 >Category: ports >Synopsis: Maintainer update port sysutils/ipa 1.3 -> 1.3.1 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Feb 25 07:00:22 PST 2003 >Closed-Date: >Last-Modified: >Originator: Andrey Simonenko >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: FreeBSD 4.7-STABLE i386 Current FreeBSD ports collection >Description: Please update port sysutils/ipa 1.3 -> 1.3.1. Changes in port: 1. Two MASTER_SITES were removed. 2. MAINTAINER email was changed. 3. ALL_TARGET was "disabled", let original Makefile finds right target. Changes in ipa-1.3.1 (from the ipa-1.3.1/HISTORY file): 1. Some improvements for ipa(8) were implemented, as a result ipa(8) now uses less CPU time when works with many rules and with many limits. 2. Fixed incorrectly rounded Kbytes, Mbytes, Gbytes and Tbytes in output of ipastat(8). 3. Fixed some minor bugs in ipa(8). >How-To-Repeat: >Fix: diff -ruN ipa.orig/Makefile ipa/Makefile --- ipa.orig/Makefile Sat Jan 25 13:29:02 2003 +++ ipa/Makefile Tue Feb 25 00:14:37 2003 @@ -6,19 +6,17 @@ # PORTNAME= ipa -PORTVERSION= 1.3 +PORTVERSION= 1.3.1 CATEGORIES= sysutils -MASTER_SITES= http://www.simon.org.ua/ipa/ \ - http://ipa-system.sourceforge.net/ \ +MASTER_SITES= http://ipa-system.sourceforge.net/ \ http://www.mirrors.wiretapped.net/security/network-monitoring/ipa/ \ ftp://ftp.mirrors.wiretapped.net/pub/security/network-monitoring/ipa/ \ - http://www.outloud.org/ipa/ \ http://ipa.it-ss.be/ -MAINTAINER= simon@simon.org.ua +MAINTAINER= simon@comsys.ntu-kpi.kiev.ua NO_PACKAGE= "Needs to be built uniquely for each host" -ALL_TARGET= FreeBSD +ALL_TARGET= .ifdef(NOPORTDOCS) MAKE_ENV= NOPORTDOCS="${NOPORTDOCS}" .endif diff -ruN ipa.orig/distinfo ipa/distinfo --- ipa.orig/distinfo Sat Jan 25 13:29:02 2003 +++ ipa/distinfo Mon Feb 24 23:40:01 2003 @@ -1 +1 @@ -MD5 (ipa-1.3.tar.gz) = c3cb19ac9ab140fea523eb7c8144a60b +MD5 (ipa-1.3.1.tar.gz) = b41e56e508d63855408ece5c8a0b9db6 diff -ruN ipa.orig/files/patch-aa ipa/files/patch-aa --- ipa.orig/files/patch-aa Sat Jan 25 13:29:02 2003 +++ ipa/files/patch-aa Mon Feb 24 23:43:53 2003 @@ -1,5 +1,5 @@ ---- Makefile.orig Mon Oct 28 21:40:37 2002 -+++ Makefile Mon Oct 28 22:15:47 2002 +--- Makefile.orig Thu Feb 20 09:06:58 2003 ++++ Makefile Mon Feb 24 23:43:33 2003 @@ -38,7 +38,7 @@ # -Ox - optimize; # -g - produce debugging information. @@ -11,7 +11,7 @@ # PREFIX - prefix for all below listed paths @@ -81,10 +81,10 @@ # - # Some INSTALL_* variables + # INSTALL_* variables # -INSTALL_MAN= ${INSTALL} -c -g wheel -o root -m 0444 -INSTALL_DATA= ${INSTALL} -c -g wheel -o root -m 0444 @@ -24,14 +24,14 @@ INSTALL_MAN_DIR= ${INSTALL} -d -m 0555 -g wheel -o root INSTALL_DATA_DIR= ${INSTALL} -d -m 0555 -g wheel -o root -@@ -247,8 +247,10 @@ +@@ -218,8 +218,10 @@ .endif - ${INSTALL_MAN} man/ru_RU.KOI8-R/ipa.5 man/ru_RU.KOI8-R/ipa.conf.5 ${DSTMANDIR}/ru_SU.KOI8-R/man5 - ${INSTALL_MAN} man/ru_RU.KOI8-R/ipa.8 man/ru_RU.KOI8-R/ipastat.8 ${DSTMANDIR}/ru_SU.KOI8-R/man8 + ${INSTALL_MAN} man/ru_RU.KOI8-R/ipa.5 man/ru_RU.KOI8-R/ipa.conf.5 ${DST_MAN_DIR}/ru_RU.KOI8-R/man5 + ${INSTALL_MAN} man/ru_RU.KOI8-R/ipa.8 man/ru_RU.KOI8-R/ipastat.8 ${DST_MAN_DIR}/ru_RU.KOI8-R/man8 +.if !defined(NOPORTDOCS) - ${INSTALL_DATA_DIR} ${DSTEXAMPLEDIR} - ${INSTALL_DATA} examples/* ${DSTEXAMPLEDIR} + ${INSTALL_DATA_DIR} ${DST_EXAMPLE_DIR} + ${INSTALL_DATA} examples/* ${DST_EXAMPLE_DIR} +.endif - .if exists(${DSTRCDIR}) - ${INSTALL_SCRIPT} etc/ipa.sh.sample ${DSTRCDIR} + .if exists(${DST_RC_DIR}) + ${INSTALL_SCRIPT} etc/ipa.sh.sample ${DST_RC_DIR} .else diff -ruN ipa.orig/pkg-descr ipa/pkg-descr --- ipa.orig/pkg-descr Sat Jan 25 13:29:02 2003 +++ ipa/pkg-descr Wed Feb 19 22:51:38 2003 @@ -8,8 +8,7 @@ ipastat(8) is a viewer for IP accounting database made by ipa(8). -WWW: http://www.simon.org.ua/ipa/ +WWW: http://ipa-system.sourceforge.net/ - Andrey Simonenko -simon@simon.org.ua simon@comsys.ntu-kpi.kiev.ua >Release-Note: >Audit-Trail: >Unformatted: To: FreeBSD-gnats-submit@freebsd.org From: Andrey Simonenko Reply-To: Andrey Simonenko Cc: X-send-pr-version: 3.113 X-GNATS-Notify: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 7:10:12 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 45ECA37B401 for ; Tue, 25 Feb 2003 07:10:10 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 17B2F43FBD for ; Tue, 25 Feb 2003 07:10:09 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1PFA4NS081444 for ; Tue, 25 Feb 2003 07:10:04 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1PFA4VX081432; Tue, 25 Feb 2003 07:10:04 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 620F637B401 for ; Tue, 25 Feb 2003 07:06:46 -0800 (PST) Received: from hotmail.com (f12.law10.hotmail.com [64.4.15.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3407543F3F for ; Tue, 25 Feb 2003 07:06:45 -0800 (PST) (envelope-from delphij@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 25 Feb 2003 07:06:44 -0800 Received: from 218.246.96.6 by lw10fd.law10.hotmail.msn.com with HTTP; Tue, 25 Feb 2003 15:06:44 GMT Message-Id: Date: Tue, 25 Feb 2003 23:06:44 +0800 From: "öÎ Àî" To: FreeBSD-gnats-submit@FreeBSD.org Cc: delphij@frontfree.net Subject: ports/48669: [patch] upgrade port/www/mod_webapp-apache2 to 4.1.18 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48669 >Category: ports >Synopsis: [patch] upgrade port/www/mod_webapp-apache2 to 4.1.18 >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Feb 25 07:10:04 PST 2003 >Closed-Date: >Last-Modified: >Originator: Xin LI >Release: FreeBSD 5.0-CURRENT i386 >Organization: Frontfree Technology Network >Environment: System: FreeBSD bt.inet0.frontfree.net 5.0-CURRENT FreeBSD 5.0-CURRENT #5: Mon Feb 24 17:46:02 CST 2003 bt@bt.inet0.frontfree.net:/usr/obj/usr/src/sys/BT i386 >Description: The current ported version of mod_webapp-apache2 is 4.1.12, while the ported jakarta/Tomcat version is 4.1.18. It will be better to have a sync. >How-To-Repeat: Not applicable. >Fix: Apply the following patch to ports/www This patch is tested under FreeBSD 5-CURRENT, and should work well under FreeBSD 4-STABLE. diff -ruN mod_webapp-apache2.orig/Makefile mod_webapp-apache2/Makefile --- mod_webapp-apache2.orig/Makefile Fri Feb 21 22:01:22 2003 +++ mod_webapp-apache2/Makefile Tue Feb 25 20:23:16 2003 @@ -6,7 +6,7 @@ # PORTNAME= mod_webapp -PORTVERSION= 4.1.12 +PORTVERSION= 4.1.18 CATEGORIES= www MASTER_SITES= http://jakarta.apache.org/builds/jakarta-tomcat-4.0/release/v${TOMCAT_RELEASE}/src/ PKGNAMESUFFIX= -apache2 diff -ruN mod_webapp-apache2.orig/distinfo mod_webapp-apache2/distinfo --- mod_webapp-apache2.orig/distinfo Sat Oct 19 04:20:54 2002 +++ mod_webapp-apache2/distinfo Tue Feb 25 20:42:14 2003 @@ -1 +1 @@ -MD5 (mod_webapp/jakarta-tomcat-connectors-4.1.12-src.tar.gz) = 669254eae8d7a6dda6f58053fedc978b +MD5 (mod_webapp/jakarta-tomcat-connectors-4.1.18-src.tar.gz) = a53f5dc7c04e5988c85ec4ee8e8b92d7 _________________________________________________________________ Help STOP SPAM with the new MSN 8 and get 2 months FREE* http://join.msn.com/?page=features/junkmail >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 7:10:22 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F70337B405 for ; Tue, 25 Feb 2003 07:10:11 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C341643FD7 for ; Tue, 25 Feb 2003 07:10:09 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1PFA9NS082105 for ; Tue, 25 Feb 2003 07:10:09 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1PFA9cL082104; Tue, 25 Feb 2003 07:10:09 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01BD037B401 for ; Tue, 25 Feb 2003 07:09:49 -0800 (PST) Received: from mail.dt.e-technik.uni-dortmund.de (krusty.dt.E-Technik.Uni-Dortmund.DE [129.217.163.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B06F43F75 for ; Tue, 25 Feb 2003 07:09:46 -0800 (PST) (envelope-from matthias.andree@web.de) Received: from m2a2.dyndns.org (krusty.dt.e-technik.uni-dortmund.de [129.217.163.1]) by mail.dt.e-technik.uni-dortmund.de (Postfix) with ESMTP id F0F57A381D for ; Tue, 25 Feb 2003 16:09:43 +0100 (CET) Received: from libertas.emma.line.org (libertas.emma.line.org [192.168.0.2]) by merlin.emma.line.org (Postfix) with ESMTP id 40A797C4AF; Tue, 25 Feb 2003 16:08:30 +0100 (CET) Received: from libertas.emma.line.org (localhost [127.0.0.1]) by libertas.emma.line.org (8.12.7/8.12.7) with ESMTP id h1PF9fnM041255; Tue, 25 Feb 2003 16:09:41 +0100 (CET) (envelope-from emma@libertas.emma.line.org) Received: (from emma@localhost) by libertas.emma.line.org (8.12.7/8.12.7/Submit) id h1PF9eEr041254; Tue, 25 Feb 2003 16:09:40 +0100 (CET) (envelope-from emma) Message-Id: <200302251509.h1PF9eEr041254@libertas.emma.line.org> Date: Tue, 25 Feb 2003 16:09:40 +0100 (CET) From: Matthias Andree Reply-To: Matthias Andree To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48670: maintainer update: (fixes pkg-*) news/leafnode -> 1.9.35_1 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48670 >Category: ports >Synopsis: maintainer update: (fixes pkg-*) news/leafnode -> 1.9.35_1 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Feb 25 07:10:09 PST 2003 >Closed-Date: >Last-Modified: >Originator: Matthias Andree >Release: FreeBSD 4.8-PRERELEASE i386 >Organization: >Environment: System: FreeBSD libertas.emma.line.org 4.8-PRERELEASE FreeBSD 4.8-PRERELEASE #15: Tue Feb 25 00:45:38 CET 2003 toor@libertas.emma.line.org:/usr/src/sys/compile/LIBERTAS i386 >Description: * Add upstream patch to fix fetchnews going out of sync with server when an article is filtered out and make minor documentation fixes. These patches are from the upcoming leafnode-1.9.36 version. * LOCALBASE -> PREFIX * Fix extra files after uninstall * Add "deinstall for good" instructions. * Use the more efficient quickmkdir program from pkg-install. * Move spooldir into ${PREFIX} and lockfile into ${SPOOLDIR} (compatibility hack for ports that aren't turned into packages to allow for continued use of /var/spool/news for ${SPOOLDIR} is in place) * Execute pkg-install stuff only once (in POST-INSTALL phase). >How-To-Repeat: >Fix: diff -Nur /usr/ports/news/leafnode/Makefile /root/leafnode/Makefile --- /usr/ports/news/leafnode/Makefile Mon Feb 24 22:03:33 2003 +++ /root/leafnode/Makefile Tue Feb 25 15:47:18 2003 @@ -2,12 +2,12 @@ # Whom: Brian Somers # Date created: 1997-06-27 # -# $FreeBSD: ports/news/leafnode/Makefile,v 1.33 2003/02/22 15:56:02 leeym Exp $ +# $FreeBSD: ports/news/leafnode/Makefile,v 1.31 2003/02/19 01:21:08 leeym Exp $ # PORTNAME= leafnode PORTVERSION= 1.9.35 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= news ipv6 MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:S/$/:sourceforge/} \ http://www.dt.e-technik.uni-dortmund.de/~ma/${PORTNAME}/ \ @@ -24,32 +24,41 @@ LIB_DEPENDS= pcre.0:${PORTSDIR}/devel/pcre +.if exists(/var/spool/news) && !defined(PACKAGE_BUILDING) +LEAFNODE_SPOOLDIR?=/var/spool/news +.endif +LEAFNODE_SPOOLDIR?=${PREFIX}/var/spool/leafnode +PLIST_SUB= SPOOLDIR=${LEAFNODE_SPOOLDIR} + USE_BZIP2= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS= --quiet --sysconfdir=${LOCALBASE}/etc/leafnode \ - --with-lockfile=/var/spool/lock/news/leafnode.lck \ - --with-spooldir=/var/spool/news --with-ipv6 +CONFIGURE_ARGS= --quiet --prefix=${PREFIX} --sysconfdir=${PREFIX}/etc/leafnode \ + --with-lockfile=${LEAFNODE_SPOOLDIR}/leaf.node/lock.file \ + --with-spooldir=${LEAFNODE_SPOOLDIR} --with-ipv6 CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} MAKE_ARGS= MAN1= leafnode-version.1 newsq.1 MAN8= applyfilter.8 checkgroups.8 fetchnews.8 leafnode.8 texpire.8 post-install: - ${INSTALL_SCRIPT} ${WRKSRC}/setup-daemontools.sh ${LOCALBASE}/sbin/ + ${INSTALL_PROGRAM} ${WRKSRC}/quickmkdir ${PREFIX}/sbin/ + ${INSTALL_SCRIPT} ${WRKSRC}/setup-daemontools.sh ${PREFIX}/sbin/ .if !defined(NOPORTDOCS) - ${MKDIR} ${LOCALBASE}/share/doc/${PORTNAME} + ${MKDIR} ${PREFIX}/share/doc/${PORTNAME} for i in ChangeLog COPYING CREDITS FAQ.txt FAQ.pdf FAQ.html \ INSTALL NEWS README \ README-FQDN README-FQDN.html README-daemontools \ README.FIRST TODO leafnode.cron.daily ; do \ ${INSTALL_MAN} ${WRKSRC}/$$i \ - ${LOCALBASE}/share/doc/${PORTNAME} ; done - ${MKDIR} ${LOCALBASE}/share/doc/${PORTNAME}/doc_german + ${PREFIX}/share/doc/${PORTNAME} ; done + ${MKDIR} ${PREFIX}/share/doc/${PORTNAME}/doc_german for i in INSTALL_de LIESMICH-daemontools README \ README_de newsq.1 ${MAN8} ; do \ ${INSTALL_MAN} ${WRKSRC}/doc_german/$$i \ - ${LOCALBASE}/share/doc/${PORTNAME}/doc_german ; done + ${PREFIX}/share/doc/${PORTNAME}/doc_german ; done .endif ${CAT} pkg-message + PKG_PREFIX=${PREFIX} SPOOLDIR=${LEAFNODE_SPOOLDIR} \ + ${SH} pkg-install ${PORTNAME} POST-INSTALL .include diff -Nur /usr/ports/news/leafnode/files/patch-aa /root/leafnode/files/patch-aa --- /usr/ports/news/leafnode/files/patch-aa Thu Jan 1 01:00:00 1970 +++ /root/leafnode/files/patch-aa Tue Feb 25 15:27:01 2003 @@ -0,0 +1,182 @@ +Index: README +=================================================================== +RCS file: /var/CVS/leafnode-1/README,v +retrieving revision 1.24 +retrieving revision 1.25 +diff -u -u -r1.24 -r1.25 +--- README 18 Feb 2003 23:29:20 -0000 1.24 ++++ README 24 Feb 2003 16:41:20 -0000 1.25 +@@ -170,9 +170,8 @@ + Note: some things have changed in 1.9.20. + + 1. Fetchnews now tries to send XOVER to figure which articles to +- download, older versions only used XHDR. If that's unsuitable for +- a certain server, write "preferxhdr=1" just below your server= line +- for that particular server. ++ download, older versions only used XHDR. Leafnode will automatically fall ++ back to using XHDR if XOVER fails. + + 2. Most leafnode programs enforce a fully-qualified unique domain name + and exit if gethostbyname("HOSTNAME") does not yield one. (HOSTNAME + +Index: fetchnews.c +=================================================================== +RCS file: /var/CVS/leafnode-1/fetchnews.c,v +retrieving revision 1.94 +retrieving revision 1.95 +diff -u -u -r1.94 -r1.95 +--- fetchnews.c 28 Jan 2003 14:14:04 -0000 1.94 ++++ fetchnews.c 24 Feb 2003 23:49:02 -0000 1.95 +@@ -967,8 +967,10 @@ + xsnprintf(lineout, SIZE_lineout, "%s %lu\r\n", cmd, stufftoget[i]); + putaline(); + l = getaline(nntpin); +- if (!l) /* timeout */ ++ /* timeout */ ++ if (!l) + return server; ++ /* check proper reply code */ + if (sscanf(l, "%3ld %lu", &n, &h) < 2 || ((n / 10) != 22)) { + if (verbose > 2) + printf("%s %s %lu: reply %s (%ld more up in the air)\n", +@@ -978,6 +980,9 @@ + continue; + } + ++ /* anything below this line will have to make sure that data is ++ * drained properly in case */ ++ + debug = 0; + if (verbose > 2) + printf("%s: receiving article %lu (%ld more up in the air)\n", +@@ -1026,8 +1031,7 @@ + free(l); + + if (!takethis) { +- if (requested_body) +- ignore_answer(nntpin); ++ if (requested_body) ignore_answer(nntpin); + continue; /* filtered article */ + } + +@@ -1045,6 +1049,7 @@ + "Discarding article %lu - no %s found", + stufftoget[i], hnames[h]); + killed++; ++ if (requested_body) ignore_answer(nntpin); + continue; + } + } +@@ -1056,6 +1061,7 @@ + syslog(LOG_INFO, "Discarding article %lu %s - older than %d days", + stufftoget[i], hd[4], localmaxage); + killed++; ++ if (requested_body) ignore_answer(nntpin); + continue; + } + if (minlines || maxlines) { +@@ -1071,6 +1077,7 @@ + "Discarding article %lu %s -- %ld < minlines", + stufftoget[i], hd[4], n); + killed++; ++ if (requested_body) ignore_answer(nntpin); + continue; + } + if (maxlines && n > maxlines) { +@@ -1081,6 +1088,7 @@ + "Discarding article %lu %s -- %ld > maxlines", + stufftoget[i], hd[4], n); + killed++; ++ if (requested_body) ignore_answer(nntpin); + continue; + } + } +@@ -1102,6 +1110,7 @@ + "Discarding article %lu %s - posted to %ld groups " + "(max. %ld)", stufftoget[i], hd[4], n, crosspostlimit); + killed++; ++ if (requested_body) ignore_answer(nntpin); + continue; + } + } +@@ -1112,11 +1121,13 @@ + + if (!c) { + syslog(LOG_ERR, "lookup of %s failed", hd[1]); ++ if (requested_body) ignore_answer(nntpin); + continue; + } + + if (!stat(c, &st)) { + syslog(LOG_INFO, "article %s already stored", c); ++ if (requested_body) ignore_answer(nntpin); + continue; /* for some reasons, article is already there */ + } else if (errno == ENOENT) { + if ((f = fopen(c, "w")) == NULL) { +@@ -1140,12 +1151,14 @@ + syslog(LOG_ERR, "unable to create article %s: %m", c); + if (verbose) + printf("unable to create article %s\n", c); ++ if (requested_body) ignore_answer(nntpin); + continue; + } + } else { + syslog(LOG_ERR, "unable to store article %s: %m", c); + if (verbose) + printf("unable to store article %s\n", c); ++ if (requested_body) ignore_answer(nntpin); + continue; + } + +@@ -1177,6 +1190,7 @@ + if (fflush(f)) { + (void)fclose(f); + (void)unlink(c); ++ if (requested_body) ignore_answer(nntpin); + continue; + } + +Index: texpire.8.in +=================================================================== +RCS file: /var/CVS/leafnode-1/texpire.8.in,v +retrieving revision 1.10 +retrieving revision 1.11 +diff -u -u -r1.10 -r1.11 +--- texpire.8.in 22 Aug 2002 14:34:07 -0000 1.10 ++++ texpire.8.in 22 Feb 2003 16:58:56 -0000 1.11 +@@ -7,7 +7,7 @@ + .\" Use, modification and distribution is allowed without limitation, + .\" warranty, or liability of any kind. + .\" +-.\" $Id: texpire.8.in,v 1.10 2002/08/22 14:34:07 ralf Exp $ ++.\" $Id: texpire.8.in,v 1.11 2003/02/22 16:58:56 emma Exp $ + .\" + .\" hilit19 is stupid: " + .SH NAME +@@ -26,7 +26,7 @@ + The design of + .B leafnode + is intended to repair any problems itself, to detect what newsgroups +-the users read, and to require no manual manual maintenance. ++the users read, and to require no manual maintenance. + .PP + .B Texpire + is the program which deletes old articles from the local news spool. +Index: doc_german/README_de +=================================================================== +RCS file: /var/CVS/leafnode-1/doc_german/README_de,v +retrieving revision 1.3 +retrieving revision 1.4 +diff -u -u -r1.3 -r1.4 +--- doc_german/README_de 22 Aug 2002 15:25:24 -0000 1.3 ++++ doc_german/README_de 24 Feb 2003 16:42:15 -0000 1.4 +@@ -188,8 +188,7 @@ + 1. fetchnews verwendet nun auch den XOVER-Befehl, um zu schauen, welche + neuen Artikel der/die Upstream-Server vorhalten; vorher wurde lediglich + XHDR verwendet. Sollte einer Ihrer Upstream-Server den XOVER-Befehl +- nicht verstehen, so schreiben Sie "preferxhdr=1" unter die server= +- Zeile in die Konfigurationsdatei. ++ nicht verstehen, wird Leafnode stattdessen automatisch XHDR verwenden. + + 2. Die meisten Leafnode-Programme verlangen die Einstellung eines voll + qualifizierten Domainnamens ("fully qualified domain name", FQDN) und diff -Nur /usr/ports/news/leafnode/pkg-install /root/leafnode/pkg-install --- /usr/ports/news/leafnode/pkg-install Fri Aug 23 17:19:12 2002 +++ /root/leafnode/pkg-install Tue Feb 25 15:44:00 2003 @@ -1,31 +1,32 @@ #! /bin/sh -SPOOLDIR=${VAR:=/var}/spool/news -LOCKFILE=$VAR/spool/lock/news/fetch.lck -LIBDIR=${PREFIX:=/usr/local}/lib/leafnode - -mkdir -p `dirname $LOCKFILE` -mkdir -p $SPOOLDIR $LIBDIR -mkdir -p $SPOOLDIR/leaf.node -mkdir -p $SPOOLDIR/message.id -mkdir -p $SPOOLDIR/interesting.groups -mkdir -p $SPOOLDIR/out.going -chown news:news `dirname $LOCKFILE` -chown news:news $SPOOLDIR $LIBDIR -chown news:news $SPOOLDIR/leaf.node -chown news:news $SPOOLDIR/message.id -chown news:news $SPOOLDIR/interesting.groups -chown news:news $SPOOLDIR/out.going -cd $SPOOLDIR/message.id -for a in 0 1 2 3 4 5 6 7 8 9 ; do - for b in 0 1 2 3 4 5 6 7 8 9 ; do - mkdir -p ${a}${b}0 ${a}${b}1 ${a}${b}2 \ - ${a}${b}3 ${a}${b}4 ${a}${b}5 \ - ${a}${b}6 ${a}${b}7 ${a}${b}8 \ - ${a}${b}9 - chown news:news ${a}${b}0 ${a}${b}1 ${a}${b}2 \ - ${a}${b}3 ${a}${b}4 ${a}${b}5 \ - ${a}${b}6 ${a}${b}7 ${a}${b}8 \ - ${a}${b}9 ; \ - done -done +case $2 in +PRE-INSTALL) + ;; +POST-INSTALL) + SPOOLDIR=${SPOOLDIR:=${PKG_PREFIX}/var/spool/leafnode} + LOCKFILE=${SPOOLDIR}/leaf.node/lock.file + + mkdir -p `dirname $LOCKFILE` + mkdir -p $SPOOLDIR + mkdir -p $SPOOLDIR/failed.postings + mkdir -p $SPOOLDIR/leaf.node + mkdir -p $SPOOLDIR/message.id + mkdir -p $SPOOLDIR/interesting.groups + mkdir -p $SPOOLDIR/out.going + mkdir -p $SPOOLDIR/temp.files + chown news:news `dirname $LOCKFILE` + chown news:news $SPOOLDIR + chown news:news $SPOOLDIR/failed.postings + chown news:news $SPOOLDIR/leaf.node + chown news:news $SPOOLDIR/message.id + chown news:news $SPOOLDIR/interesting.groups + chown news:news $SPOOLDIR/out.going + chown news:news $SPOOLDIR/temp.files + ${PKG_PREFIX}/sbin/quickmkdir + ;; +*) + echo >&2 "Unknown argument in $0 $@" + exit 1 + ;; +esac diff -Nur /usr/ports/news/leafnode/pkg-plist /root/leafnode/pkg-plist --- /usr/ports/news/leafnode/pkg-plist Thu Jan 2 13:07:07 2003 +++ /root/leafnode/pkg-plist Tue Feb 25 15:50:19 2003 @@ -14,6 +14,7 @@ sbin/checkgroups sbin/applyfilter sbin/setup-daemontools.sh +sbin/quickmkdir share/doc/leafnode/ChangeLog share/doc/leafnode/COPYING share/doc/leafnode/CREDITS @@ -41,5 +42,19 @@ share/doc/leafnode/doc_german/texpire.8 @dirrm share/doc/leafnode/doc_german @dirrm share/doc/leafnode -@unexec rmdir %D/lib/leafnode 2>/dev/null || true +@comment only remove these when empty: +@unexec rm -f %%SPOOLDIR%%/leaf.node/lock.file +@unexec rmdir %%SPOOLDIR%%/failed.postings 2>/dev/null || : +@unexec rmdir %%SPOOLDIR%%/failed.postings 2>/dev/null || : +@unexec rmdir %%SPOOLDIR%%/leaf.node 2>/dev/null || : +@unexec rmdir %%SPOOLDIR%%/message.id/* 2>/dev/null || : +@unexec rmdir %%SPOOLDIR%%/message.id 2>/dev/null || : +@unexec rmdir %%SPOOLDIR%%/interesting.groups 2>/dev/null || : +@unexec rmdir %%SPOOLDIR%%/out.going 2>/dev/null || : +@unexec rmdir %%SPOOLDIR%%/temp.files 2>/dev/null || : +@unexec rmdir %%SPOOLDIR%% 2>/dev/null || : +@unexec rmdir %%PREFIX%%/var/spool 2>/dev/null || : +@unexec rmdir %%PREFIX%%/var 2>/dev/null || : +@unexec rmdir %D/lib/leafnode 2>/dev/null || : @dirrm etc/leafnode +@unexec if test -d "%%SPOOLDIR%%" ; then echo ; echo "==================================================" ; echo "If you want to remove leafnode for good," ; echo "type: rm -rf %%SPOOLDIR%%" ; echo "==================================================" ; fi >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 7:20: 7 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF6A337B401 for ; Tue, 25 Feb 2003 07:20:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6521043F93 for ; Tue, 25 Feb 2003 07:20:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1PFK4NS002394 for ; Tue, 25 Feb 2003 07:20:04 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1PFK3Xh002393; Tue, 25 Feb 2003 07:20:03 -0800 (PST) Date: Tue, 25 Feb 2003 07:20:03 -0800 (PST) Message-Id: <200302251520.h1PFK3Xh002393@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Christian Kratzer Subject: Re: ports/48647: Update openldap21 to version 2.1.13 Reply-To: Christian Kratzer Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48647; it has been noted by GNATS. From: Christian Kratzer To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/48647: Update openldap21 to version 2.1.13 Date: Tue, 25 Feb 2003 16:15:57 +0100 (CET) Hi, On Mon, 24 Feb 2003, Christian Kratzer wrote: > > >Number: 48647 > >Category: ports > >Synopsis: Update openldap21 to version 2.1.13 > >Confidential: no > >Severity: non-critical > >Priority: medium > >Responsible: freebsd-ports-bugs > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: maintainer-update > >Submitter-Id: current-users > >Arrival-Date: Mon Feb 24 13:10:12 PST 2003 > >Closed-Date: > >Last-Modified: > >Originator: Christian Kratzer > >Release: FreeBSD 4.7-STABLE i386 > >Organization: > CK Software GmbH > >Environment: > System: FreeBSD majakka.cksoft.de 4.7-STABLE FreeBSD 4.7-STABLE #1: Thu Dec 19 14:57:42 CET 2002 ck@majakka.cksoft.de:/usr/obj/usr/src/RELENG_4/src/sys/MAJAKKA i386 > > >Description: > > The OpenLDAP project released OpenLDAP 2.1.13 today. > The build framework now insists on Berkeley db4.1 over Berkeley db 4.0. please close this PR and do not commit. Further testing has shown that dropping of depreceated api's in openldap breaks at least the postfix and cyrus-sasl2 ports. Of course nobody would expect sth. like this in a minor release change from 2.1.12 to 2.1.13. ;-( I will provide a new PR that adds Berkeley db4.1 and --enable-crypt to openldap-2.1.12. I will update the openldap21 port to 2.1.13 or later once the confusion clears with openldap. There is no point in having a port that no other ports can depend on. Greetings Christian -- CK Software GmbH Christian Kratzer, Schwarzwaldstr. 31, 71131 Jettingen Email: ck@cksoft.de Phone: +49 7452 889-135 Open Software Solutions, Network Security Fax: +49 7452 889-136 FreeBSD spoken here! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 7:30:23 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B9B9837B401 for ; Tue, 25 Feb 2003 07:30:13 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4EB5043FBD for ; Tue, 25 Feb 2003 07:30:11 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1PFUBNS004538 for ; Tue, 25 Feb 2003 07:30:11 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1PFUBwX004537; Tue, 25 Feb 2003 07:30:11 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6211137B401 for ; Tue, 25 Feb 2003 07:20:47 -0800 (PST) Received: from thoth.sbs.de (thoth.sbs.de [192.35.17.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0E2443F93 for ; Tue, 25 Feb 2003 07:20:42 -0800 (PST) (envelope-from udo.schweigert@siemens.com) Received: from mail1.siemens.de (mail1.siemens.de [139.23.33.14]) by thoth.sbs.de (8.11.6/8.11.6) with ESMTP id h1PFKfO21146 for ; Tue, 25 Feb 2003 16:20:41 +0100 (MET) Received: from mars.cert.siemens.de (ust.mchp.siemens.de [139.23.201.17]) by mail1.siemens.de (8.11.6/8.11.6) with ESMTP id h1PFKe317462 for ; Tue, 25 Feb 2003 16:20:40 +0100 (MET) Received: from alaska.cert.siemens.de (alaska.cert.siemens.de [139.23.202.134]) by mars.cert.siemens.de (8.12.7/8.12.7/$SiemensCERT: mail/cert.mc,v 1.42 2003/02/21 12:06:56 ust Exp $) with ESMTP id h1PFKd70092593 for ; Tue, 25 Feb 2003 16:20:39 +0100 (CET) Received: from alaska.cert.siemens.de (alaska.cert.siemens.de [127.0.0.1]) by alaska.cert.siemens.de (8.12.7/8.12.7/$Ust: hosts/alaska/mail/config.mc,v 1.15 2002/12/31 15:32:17 ust Exp $) with ESMTP id h1PFKdCX095718 for ; Tue, 25 Feb 2003 16:20:39 +0100 (CET) (envelope-from ust@alaska.cert.siemens.de) Received: (from ust@localhost) by alaska.cert.siemens.de (8.12.7/8.12.7/$Ust: hosts/alaska/mail/submit.mc,v 1.4 2002/12/31 15:32:17 ust Exp $) id h1PFKdGx089410; Tue, 25 Feb 2003 16:20:39 +0100 (CET) (envelope-from ust) Message-Id: <200302251520.h1PFKdGx089410@alaska.cert.siemens.de> Date: Tue, 25 Feb 2003 16:20:39 +0100 (CET) From: Udo Schweigert Reply-To: Udo Schweigert To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48671: maintainer-update of security/nessus-*-devel Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48671 >Category: ports >Synopsis: maintainer-update of security/nessus-*-devel >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Feb 25 07:30:11 PST 2003 >Closed-Date: >Last-Modified: >Originator: Udo Schweigert >Release: FreeBSD 4.8-PRERELEASE i386 >Organization: >Environment: System: FreeBSD alaska.cert.siemens.de 4.8-PRERELEASE FreeBSD 4.8-PRERELEASE #45: Wed Feb 19 17:56:26 CET 2003 ust@alaska.cert.siemens.de:/usr/obj/work/src/RELENG_4/sys/alaska i386 >Description: Maintainer update of security/nessus-*-devel: - Update to 2.0.0 the most recent STABLE version (this is going to go also to security/nessus) Tested on : -current and -stable (i386 only) >How-To-Repeat: >Fix: diff -ru /usr/ports/security/nessus-devel/Makefile nessus-devel/Makefile --- /usr/ports/security/nessus-devel/Makefile Fri Feb 21 14:26:47 2003 +++ nessus-devel/Makefile Tue Feb 25 08:29:18 2003 @@ -4,20 +4,20 @@ # PORTNAME= nessus-devel -PORTVERSION= 1.3.4 +PORTVERSION= 2.0.0 CATEGORIES= security -MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.gwdg.de/pub/linux/misc/nessus/unstable/nessus-${PORTVERSION}/src/ \ - http://ftp.gwdg.de/pub/linux/misc/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://sunsite.cnlab-switch.ch/mirror/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.chg.ru/pub/security/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.sekure.net/pub/nessus/unstable/nessus-${PORTVERSION}/src/ +MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ + http://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ + ftp://sunsite.cnlab-switch.ch/mirror/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.chg.ru/pub/security/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.sekure.net/pub/nessus/nessus-${PORTVERSION}/src/ DISTNAME= nessus-core-${PORTVERSION} MAINTAINER= udo.schweigert@siemens.com COMMENT= A security scanner: looks for vulnerabilities in a given network -LIB_DEPENDS= nasl.4:${PORTSDIR}/security/nessus-libnasl-devel +LIB_DEPENDS= nasl.2:${PORTSDIR}/security/nessus-libnasl-devel DIST_SUBDIR= nessus WRKSRC= ${WRKDIR}/nessus-core diff -ru /usr/ports/security/nessus-devel/distinfo nessus-devel/distinfo --- /usr/ports/security/nessus-devel/distinfo Fri Feb 14 19:53:54 2003 +++ nessus-devel/distinfo Tue Feb 25 08:17:18 2003 @@ -1 +1 @@ -MD5 (nessus/nessus-core-1.3.4.tar.gz) = 07dee8809755fbc9c1bb0c4b157b034e +MD5 (nessus/nessus-core-2.0.0.tar.gz) = 862546873b999ee23ee0bb6974df728c diff -ru /usr/ports/security/nessus-libnasl-devel/Makefile nessus-libnasl-devel/Makefile --- /usr/ports/security/nessus-libnasl-devel/Makefile Fri Feb 21 14:26:47 2003 +++ nessus-libnasl-devel/Makefile Tue Feb 25 08:32:30 2003 @@ -4,20 +4,20 @@ # PORTNAME= nessus-libnasl-devel -PORTVERSION= 1.3.4 +PORTVERSION= 2.0.0 CATEGORIES= security -MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.gwdg.de/pub/linux/misc/nessus/unstable/nessus-${PORTVERSION}/src/ \ - http://ftp.gwdg.de/pub/linux/misc/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://sunsite.cnlab-switch.ch/mirror/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.chg.ru/pub/security/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.sekure.net/pub/nessus/unstable/nessus-${PORTVERSION}/src/ +MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ + http://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ + ftp://sunsite.cnlab-switch.ch/mirror/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.chg.ru/pub/security/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.sekure.net/pub/nessus/nessus-${PORTVERSION}/src/ DISTNAME= libnasl-${PORTVERSION} MAINTAINER= udo.schweigert@siemens.com COMMENT= Nessus Attack Scripting Language -LIB_DEPENDS= nessus.4:${PORTSDIR}/security/nessus-libraries-devel +LIB_DEPENDS= nessus.2:${PORTSDIR}/security/nessus-libraries-devel DIST_SUBDIR= nessus WRKSRC= ${WRKDIR}/libnasl diff -ru /usr/ports/security/nessus-libnasl-devel/distinfo nessus-libnasl-devel/distinfo --- /usr/ports/security/nessus-libnasl-devel/distinfo Fri Feb 14 19:53:54 2003 +++ nessus-libnasl-devel/distinfo Tue Feb 25 08:14:21 2003 @@ -1 +1 @@ -MD5 (nessus/libnasl-1.3.4.tar.gz) = 138ed54b5c76b44c194c4d62e0dbe635 +MD5 (nessus/libnasl-2.0.0.tar.gz) = 6b4dfcbf0fd53800f181911cdfdcf8d2 diff -ru /usr/ports/security/nessus-libnasl-devel/pkg-plist nessus-libnasl-devel/pkg-plist --- /usr/ports/security/nessus-libnasl-devel/pkg-plist Thu Jan 9 15:18:19 2003 +++ nessus-libnasl-devel/pkg-plist Tue Feb 25 08:16:05 2003 @@ -4,4 +4,4 @@ lib/libnasl.a lib/libnasl.la lib/libnasl.so -lib/libnasl.so.4 +lib/libnasl.so.2 diff -ru /usr/ports/security/nessus-libraries-devel/Makefile nessus-libraries-devel/Makefile --- /usr/ports/security/nessus-libraries-devel/Makefile Fri Feb 21 14:26:47 2003 +++ nessus-libraries-devel/Makefile Tue Feb 25 08:31:30 2003 @@ -4,14 +4,14 @@ # PORTNAME= nessus-libraries-devel -PORTVERSION= 1.3.4 +PORTVERSION= 2.0.0 CATEGORIES= security -MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.gwdg.de/pub/linux/misc/nessus/unstable/nessus-${PORTVERSION}/src/ \ - http://ftp.gwdg.de/pub/linux/misc/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://sunsite.cnlab-switch.ch/mirror/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.chg.ru/pub/security/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.sekure.net/pub/nessus/unstable/nessus-${PORTVERSION}/src/ +MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ + http://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ + ftp://sunsite.cnlab-switch.ch/mirror/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.chg.ru/pub/security/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.sekure.net/pub/nessus/nessus-${PORTVERSION}/src/ DISTNAME= nessus-libraries-${PORTVERSION} MAINTAINER= udo.schweigert@siemens.com diff -ru /usr/ports/security/nessus-libraries-devel/distinfo nessus-libraries-devel/distinfo --- /usr/ports/security/nessus-libraries-devel/distinfo Fri Feb 14 19:53:55 2003 +++ nessus-libraries-devel/distinfo Tue Feb 25 08:09:41 2003 @@ -1 +1 @@ -MD5 (nessus/nessus-libraries-1.3.4.tar.gz) = eaaa1395b748ceca3090b00bf2fc35d7 +MD5 (nessus/nessus-libraries-2.0.0.tar.gz) = 8be4b24ff858d0b3b9315cbd5bfe7639 diff -ru /usr/ports/security/nessus-libraries-devel/pkg-plist nessus-libraries-devel/pkg-plist --- /usr/ports/security/nessus-libraries-devel/pkg-plist Thu Jan 9 15:18:20 2003 +++ nessus-libraries-devel/pkg-plist Tue Feb 25 08:11:44 2003 @@ -9,15 +9,15 @@ lib/libhosts_gatherer.a lib/libhosts_gatherer.la lib/libhosts_gatherer.so -lib/libhosts_gatherer.so.4 +lib/libhosts_gatherer.so.2 lib/libnessus.a lib/libnessus.la lib/libnessus.so -lib/libnessus.so.4 +lib/libnessus.so.2 lib/libpcap-nessus.a lib/libpcap-nessus.la lib/libpcap-nessus.so -lib/libpcap-nessus.so.4 +lib/libpcap-nessus.so.2 sbin/uninstall-nessus @dirrm include/nessus/net @dirrm include/nessus diff -ru /usr/ports/security/nessus-plugins-devel/Makefile nessus-plugins-devel/Makefile --- /usr/ports/security/nessus-plugins-devel/Makefile Fri Feb 21 14:26:47 2003 +++ nessus-plugins-devel/Makefile Tue Feb 25 08:33:29 2003 @@ -4,14 +4,14 @@ # PORTNAME= nessus-plugins-devel -PORTVERSION= 1.3.4 +PORTVERSION= 2.0.0 CATEGORIES= security -MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.gwdg.de/pub/linux/misc/nessus/unstable/nessus-${PORTVERSION}/src/ \ - http://ftp.gwdg.de/pub/linux/misc/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://sunsite.cnlab-switch.ch/mirror/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.chg.ru/pub/security/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.sekure.net/pub/nessus/unstable/nessus-${PORTVERSION}/src/ +MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ + http://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ + ftp://sunsite.cnlab-switch.ch/mirror/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.chg.ru/pub/security/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.sekure.net/pub/nessus/nessus-${PORTVERSION}/src/ DISTNAME= nessus-plugins-${PORTVERSION} MAINTAINER= udo.schweigert@siemens.com diff -ru /usr/ports/security/nessus-plugins-devel/distinfo nessus-plugins-devel/distinfo --- /usr/ports/security/nessus-plugins-devel/distinfo Fri Feb 14 19:53:55 2003 +++ nessus-plugins-devel/distinfo Tue Feb 25 08:21:22 2003 @@ -1 +1 @@ -MD5 (nessus/nessus-plugins-1.3.4.tar.gz) = 0540bb7ca9f66a92d3576bedfd449a84 +MD5 (nessus/nessus-plugins-2.0.0.tar.gz) = 7409fa7d2449a2d7a90a04685422ca7d diff -ru /usr/ports/security/nessus-plugins-devel/pkg-plist nessus-plugins-devel/pkg-plist --- /usr/ports/security/nessus-plugins-devel/pkg-plist Fri Feb 14 19:53:55 2003 +++ nessus-plugins-devel/pkg-plist Tue Feb 25 08:25:31 2003 @@ -1,6 +1,4 @@ bin/nessus-build -etc/nessus/accounts.txt -etc/nessus/queso.conf lib/nessus/plugins/3com_hub.nes lib/nessus/plugins/3com_switches.nasl lib/nessus/plugins/4553.nasl @@ -82,7 +80,33 @@ lib/nessus/plugins/Xerver_DoS.nasl lib/nessus/plugins/a1stats.nasl lib/nessus/plugins/acc.nasl -lib/nessus/plugins/accounts.nes +lib/nessus/plugins/account_4Dgifts.nasl +lib/nessus/plugins/account_EZsetup.nasl +lib/nessus/plugins/account_OutOfBox.nasl +lib/nessus/plugins/account_StoogR.nasl +lib/nessus/plugins/account_backdoor.nasl +lib/nessus/plugins/account_date.nasl +lib/nessus/plugins/account_demos.nasl +lib/nessus/plugins/account_friday.nasl +lib/nessus/plugins/account_gamez_lrkr0x.nasl +lib/nessus/plugins/account_glftpd.nasl +lib/nessus/plugins/account_guest.nasl +lib/nessus/plugins/account_guest_guest.nasl +lib/nessus/plugins/account_hax0r.nasl +lib/nessus/plugins/account_jack.nasl +lib/nessus/plugins/account_jill.nasl +lib/nessus/plugins/account_lp.nasl +lib/nessus/plugins/account_rewt_satori.nasl +lib/nessus/plugins/account_root.nasl +lib/nessus/plugins/account_root_root.nasl +lib/nessus/plugins/account_root_rootkit1.nasl +lib/nessus/plugins/account_root_rootkit1bis.nasl +lib/nessus/plugins/account_root_rootkit2.nasl +lib/nessus/plugins/account_sync.nasl +lib/nessus/plugins/account_system_manager.nasl +lib/nessus/plugins/account_toor.nasl +lib/nessus/plugins/account_tutor.nasl +lib/nessus/plugins/account_wank_wank.nasl lib/nessus/plugins/achievo_code_injection.nasl lib/nessus/plugins/activestate_perl.nasl lib/nessus/plugins/admentor_login_flaw.nasl @@ -111,6 +135,7 @@ lib/nessus/plugins/analogx_dos.nasl lib/nessus/plugins/analogx_traversal.nasl lib/nessus/plugins/annex_dos.nasl +lib/nessus/plugins/anti_nessus.nasl lib/nessus/plugins/aolserver_default_password.nasl lib/nessus/plugins/apache_1_3_27.nasl lib/nessus/plugins/apache_Tomcat_DOS_Device_XSS.nasl @@ -258,6 +283,7 @@ lib/nessus/plugins/dcforum.nasl lib/nessus/plugins/dcshop_information_disclosure.nasl lib/nessus/plugins/deep_throat.nasl +lib/nessus/plugins/default_account.inc lib/nessus/plugins/delegate_overflow.nasl lib/nessus/plugins/deltaups_detect.nasl lib/nessus/plugins/dhcp.nasl @@ -265,6 +291,7 @@ lib/nessus/plugins/directoryphp.nasl lib/nessus/plugins/directorypro.nasl lib/nessus/plugins/dmail_overflow.nasl +lib/nessus/plugins/dns_server.nasl lib/nessus/plugins/dns_xfer.nasl lib/nessus/plugins/doc_browsable.nasl lib/nessus/plugins/doc_package_browseable.nasl @@ -603,6 +630,7 @@ lib/nessus/plugins/nimda.nasl lib/nessus/plugins/nis_server.nasl lib/nessus/plugins/nisd_overflow.nasl +lib/nessus/plugins/nmap_osfingerprint.nes lib/nessus/plugins/nmap_tcp_connect.nes lib/nessus/plugins/nmap_wrapper.nes lib/nessus/plugins/nntp_info.nasl @@ -625,6 +653,7 @@ lib/nessus/plugins/ntp_open.nasl lib/nessus/plugins/ntp_overflow.nasl lib/nessus/plugins/nullhttpd_content_length.nasl +lib/nessus/plugins/nx_web_content_file_include.nasl lib/nessus/plugins/oas_overflow.nasl lib/nessus/plugins/objectserver.nes lib/nessus/plugins/officescan_disclosure.nasl @@ -639,6 +668,7 @@ lib/nessus/plugins/openssh_uselogin.nasl lib/nessus/plugins/openssh_uselogin_environment.nasl lib/nessus/plugins/openssl_overflow_generic_test.nasl +lib/nessus/plugins/openssl_password_interception.nasl lib/nessus/plugins/oracle9iAS_slashdot_DoS.nasl lib/nessus/plugins/oracle9iAS_too_long_url.nasl lib/nessus/plugins/oracle9i_XSQLServlet_XSQLConfig.nasl @@ -694,6 +724,7 @@ lib/nessus/plugins/phpMyExplorer.nasl lib/nessus/plugins/phpPgAdmin_file_reading.nasl lib/nessus/plugins/php_4_2_x_malformed_POST.nasl +lib/nessus/plugins/php_4_3_0.nasl lib/nessus/plugins/php_apache_win32_default.nasl lib/nessus/plugins/php_file_upload.nasl lib/nessus/plugins/php_imap_overflow.nasl @@ -701,6 +732,7 @@ lib/nessus/plugins/php_nuke_admin_cp.nasl lib/nessus/plugins/php_nuke_bb_smilies_passwd.nasl lib/nessus/plugins/php_nuke_galleryaddon.nasl +lib/nessus/plugins/php_nuke_installed.nasl lib/nessus/plugins/php_nuke_opendir.nasl lib/nessus/plugins/php_nuke_sql_debug.nasl lib/nessus/plugins/php_overflow.nasl @@ -747,7 +779,6 @@ lib/nessus/plugins/qpopper_euidl.nasl lib/nessus/plugins/qpopper_list.nasl lib/nessus/plugins/quake3_dos.nasl -lib/nessus/plugins/queso.nes lib/nessus/plugins/quickstore.nasl lib/nessus/plugins/quote.nasl lib/nessus/plugins/radmin_detect.nasl @@ -849,6 +880,7 @@ lib/nessus/plugins/sendmail_debug.nasl lib/nessus/plugins/sendmail_debug_leak.nasl lib/nessus/plugins/sendmail_decode.nasl +lib/nessus/plugins/sendmail_dns_map_txt_overflow.nasl lib/nessus/plugins/sendmail_expn.nasl lib/nessus/plugins/sendmail_ident.nasl lib/nessus/plugins/sendmail_local_overflow.nasl @@ -1173,12 +1205,14 @@ lib/nessus/plugins/wu_ftpd_site_exec.nasl lib/nessus/plugins/wu_ftpd_site_newer.nasl lib/nessus/plugins/www_infinite_request_DoS.nasl +lib/nessus/plugins/www_server_name.nasl lib/nessus/plugins/www_too_long_auth.nasl lib/nessus/plugins/www_too_long_cookie.nasl lib/nessus/plugins/www_too_long_header.nasl lib/nessus/plugins/www_too_long_header10.nasl lib/nessus/plugins/www_too_long_header11.nasl lib/nessus/plugins/www_too_long_method.nasl +lib/nessus/plugins/www_too_long_options.nasl lib/nessus/plugins/www_too_long_post.nasl lib/nessus/plugins/www_too_long_url.nasl lib/nessus/plugins/www_too_long_useragent.nasl @@ -1204,6 +1238,7 @@ lib/nessus/plugins/zope.nasl lib/nessus/plugins/zope_dos.nasl lib/nessus/plugins/zope_img_updating.nasl +lib/nessus/plugins/zope_path_disclosure.nasl lib/nessus/plugins/zope_zclass.nasl lib/nessus/plugins/zyxel_pwd.nasl lib/nessus/plugins_factory/Makefile >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 8: 0:32 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3492437B401 for ; Tue, 25 Feb 2003 08:00:29 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B62E543F3F for ; Tue, 25 Feb 2003 08:00:28 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1PG0SNS011346 for ; Tue, 25 Feb 2003 08:00:28 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1PG0S8A011345; Tue, 25 Feb 2003 08:00:28 -0800 (PST) Date: Tue, 25 Feb 2003 08:00:28 -0800 (PST) Message-Id: <200302251600.h1PG0S8A011345@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: patrick Subject: Re: ports/36711: Configure Bug: cyrus-sasl-1.5.27_2 / krb5- unable to detect MIT Kerberos when Heimdal libraries and includes are installed. Reply-To: patrick Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/36711; it has been noted by GNATS. From: patrick To: freebsd-gnats-submit@FreeBSD.org, psripitisawad@yahoo.com Cc: Subject: Re: ports/36711: Configure Bug: cyrus-sasl-1.5.27_2 / krb5- unable to detect MIT Kerberos when Heimdal libraries and includes are installed. Date: Tue, 25 Feb 2003 16:52:48 +0100 I cvsupped to 1.5.28 and still get errors on FreeBSD 4.8-PRELEASE # New ports collection makefile for: cyrus-sasl # Date created: Nov 1 1999 # Whom: hetzels@westbend.net # # $FreeBSD: ports/security/cyrus-sasl/Makefile,v 1.48 2003/02/21 13:26:42 knu Exp $ # PORTNAME= cyrus-sasl PORTVERSION= 1.5.28 FreeBSD sco 4.8-PRERELEASE FreeBSD 4.8-PRERELEASE #1: Fri Feb 21 15:02:50 CET 2003 pine@sco:/usr/obj/usr/src/sys/SCO i386 creating libdigestmd5.la (cd .libs && rm -f libdigestmd5.la && ln -s ../libdigestmd5.la libdigestmd5.la) /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../include -I/usr/local/includee/db3 -I/usr/include/openssl -I/usr/local/include -Wall -W -O -pipe -c kerberos4.c rm -f .libs/kerberos4.lo cc -DHAVE_CONFIG_H -I. -I. -I.. -I../include -I/usr/local/include/db3 -I/usr/include/openssl -I/usr//local/include -Wall -W -O -pipe -c kerberos4.c -fPIC -DPIC -o .libs/kerberos4.lo kerberos4.c:731: unterminated macro call kerberos4.c:1402: warning: preprocessing directive not recognized within macro arg kerberos4.c:1402: warning: preprocessing directive not recognized within macro arg kerberos4.c:730: unterminated `#if' conditional In file included from /usr/include/krb.h:355, from kerberos4.c:48: /usr/include/krb-protos.h:182: warning: `struct des_ks_struct' declared inside parameter list /usr/include/krb-protos.h:182: warning: its scope is only this definition or declaration, which is pprobably not what you want. /usr/include/krb-protos.h:455: warning: `struct des_ks_struct' declared inside parameter list /usr/include/krb-protos.h:533: warning: `struct des_ks_struct' declared inside parameter list /usr/include/krb-protos.h:573: warning: `struct des_ks_struct' declared inside parameter list /usr/include/krb-protos.h:589: warning: `struct des_ks_struct' declared inside parameter list kerberos4.c: In function `privacy_encode': kerberos4.c:195: incompatible type for argument 4 of `krb_mk_priv' kerberos4.c:195: warning: passing arg 6 of `krb_mk_priv' from incompatible pointer type kerberos4.c:195: warning: passing arg 7 of `krb_mk_priv' from incompatible pointer type kerberos4.c: In function `privacy_decode': kerberos4.c:279: incompatible type for argument 3 of `krb_rd_priv' kerberos4.c:279: warning: passing arg 5 of `krb_rd_priv' from incompatible pointer type kerberos4.c:279: warning: passing arg 6 of `krb_rd_priv' from incompatible pointer type kerberos4.c: In function `integrity_encode': kerberos4.c:344: warning: passing arg 5 of `krb_mk_safe' from incompatible pointer type kerberos4.c:344: warning: passing arg 6 of `krb_mk_safe' from incompatible pointer type kerberos4.c: In function `integrity_decode': kerberos4.c:426: warning: passing arg 4 of `krb_rd_safe' from incompatible pointer type kerberos4.c:426: warning: passing arg 5 of `krb_rd_safe' from incompatible pointer type kerberos4.c: In function `server_continue_step': kerberos4.c:733: undefined or invalid # directive kerberos4.c:736: undefined or invalid # directive kerberos4.c:740: warning: passing arg 1 of `DES_pcbc_encrypt' from incompatible pointer type kerberos4.c:740: warning: passing arg 2 of `DES_pcbc_encrypt' from incompatible pointer type kerberos4.c:740: syntax error before `;' kerberos4.c:742: syntax error before `;' kerberos4.c:712: warning: `testnum' might be used uninitialized in this function kerberos4.c: At top level: kerberos4.c:870: syntax error before `)' kerberos4.c:871: invalid lvalue in unary `&' kerberos4.c:871: initializer element is not constant kerberos4.c:871: (near initialization for `plugins[0].mech_name') kerberos4.c:873: syntax error before `)' kerberos4.c:867: warning: array `plugins' assumed to have one element kerberos4.c:503: warning: `server_start' defined but not used kerberos4.c:512: warning: `dispose' defined but not used kerberos4.c:521: warning: `mech_free' defined but not used kerberos4.c:560: warning: `server_continue_step' defined but not used *** Error code 1 Stop in /usr/ports/security/cyrus-sasl/work/cyrus-sasl-1.5.28/plugins. *** Error code 1 Stop in /usr/ports/security/cyrus-sasl/work/cyrus-sasl-1.5.28. *** Error code 1 Stop in /usr/ports/security/cyrus-sasl/work/cyrus-sasl-1.5.28. *** Error code 1 Stop in /usr/ports/security/cyrus-sasl. *** Error code 1 Stop in /usr/ports/security/cyrus-sasl. sco# To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 8:10:18 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 310C437B401 for ; Tue, 25 Feb 2003 08:10:17 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B53443FBF for ; Tue, 25 Feb 2003 08:10:16 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1PGAFNS017124 for ; Tue, 25 Feb 2003 08:10:15 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1PGAFjR017123; Tue, 25 Feb 2003 08:10:15 -0800 (PST) Date: Tue, 25 Feb 2003 08:10:15 -0800 (PST) Message-Id: <200302251610.h1PGAFjR017123@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Oliver Lehmann Subject: Re: ports/48604: update-port: security/oidentd Reply-To: Oliver Lehmann Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48604; it has been noted by GNATS. From: Oliver Lehmann To: Mark Laws Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/48604: update-port: security/oidentd Date: Tue, 25 Feb 2003 17:07:35 +0100 Mark Laws wrote: > This is fine. In fact, if you would like to take over the port, you may > do so if you wish. Ok, thanks. If nobody object, I'm willing to take the maintainership. Greetings, Oliver -- Oliver Lehmann @home: lehmann@ans-netz.de @office: oliver.lehmann@mgi.de @www: http://www.pofo.de/ | http://wishlist.ans-netz.de/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 9:20:12 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8935B37B405 for ; Tue, 25 Feb 2003 09:20:10 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7FD6E43FAF for ; Tue, 25 Feb 2003 09:20:08 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1PHK8NS036140 for ; Tue, 25 Feb 2003 09:20:08 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1PHK8KP036139; Tue, 25 Feb 2003 09:20:08 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DACEB37B401 for ; Tue, 25 Feb 2003 09:18:43 -0800 (PST) Received: from reiher.informatik.uni-wuerzburg.de (wi4d22.informatik.uni-wuerzburg.de [132.187.101.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id D887E43FBD for ; Tue, 25 Feb 2003 09:18:42 -0800 (PST) (envelope-from mkb@reiher.informatik.uni-wuerzburg.de) Received: by reiher.informatik.uni-wuerzburg.de (Postfix, from userid 1000) id 6CDDA5C25; Tue, 25 Feb 2003 18:18:51 +0100 (CET) Message-Id: <20030225171851.6CDDA5C25@reiher.informatik.uni-wuerzburg.de> Date: Tue, 25 Feb 2003 18:18:51 +0100 (CET) From: Matthias Buelow Reply-To: Matthias Buelow To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48675: lang/sml-nj port build fails on 5.0 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48675 >Category: ports >Synopsis: lang/sml-nj port build fails on 5.0 >Confidential: no >Severity: critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 25 09:20:07 PST 2003 >Closed-Date: >Last-Modified: >Originator: Matthias Buelow >Release: FreeBSD 5.0-RELEASE-p2 i386 >Organization: >Environment: System: FreeBSD reiher.informatik.uni-wuerzburg.de 5.0-RELEASE-p2 FreeBSD 5.0-RELEASE-p2 #0: Sun Feb 23 01:38:51 CET 2003 root@reiher.informatik.uni-wuerzburg.de:/usr/obj/usr/src/sys/REIHER i386 >Description: The ports/sml-nj port bombs on build on 5.0-p2 (it worked on 4.7): $ make ... [Loading posix-io-sig.sml.bin] [Loading posix-io.sml.bin] [Loading posix-procenv-sig.sml.bin] [Loading posix-procenv.sml.bin] /usr/ports/lang/sml-nj/work/bin/.run/run.x86-freebsd: Fatal error -- Uncaught exception SysErr with raised at !!! unable to build SML heap image (sml.x86-bsd) *** Error code 1 Stop in /usr/ports/lang/sml-nj. >How-To-Repeat: Try to build the port on 5.0/i386. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 9:30:16 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D98237B405 for ; Tue, 25 Feb 2003 09:30:10 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3390243FDF for ; Tue, 25 Feb 2003 09:30:07 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1PHU7NS038341 for ; Tue, 25 Feb 2003 09:30:07 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1PHU7ur038340; Tue, 25 Feb 2003 09:30:07 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C05C037B401 for ; Tue, 25 Feb 2003 09:22:31 -0800 (PST) Received: from reiher.informatik.uni-wuerzburg.de (wi4d22.informatik.uni-wuerzburg.de [132.187.101.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 359F043FA3 for ; Tue, 25 Feb 2003 09:22:30 -0800 (PST) (envelope-from mkb@reiher.informatik.uni-wuerzburg.de) Received: by reiher.informatik.uni-wuerzburg.de (Postfix, from userid 1000) id B7B675C25; Tue, 25 Feb 2003 18:22:38 +0100 (CET) Message-Id: <20030225172238.B7B675C25@reiher.informatik.uni-wuerzburg.de> Date: Tue, 25 Feb 2003 18:22:38 +0100 (CET) From: Matthias Buelow Reply-To: Matthias Buelow To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48678: lang/moscow_ml port broken on 5.0 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48678 >Category: ports >Synopsis: lang/moscow_ml port broken on 5.0 >Confidential: no >Severity: critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 25 09:30:06 PST 2003 >Closed-Date: >Last-Modified: >Originator: Matthias Buelow >Release: FreeBSD 5.0-RELEASE-p2 i386 >Organization: >Environment: System: FreeBSD reiher.informatik.uni-wuerzburg.de 5.0-RELEASE-p2 FreeBSD 5.0-RELEASE-p2 #0: Sun Feb 23 01:38:51 CET 2003 root@reiher.informatik.uni-wuerzburg.de:/usr/obj/usr/src/sys/REIHER i386 >Description: The lang/moscow_ml port doesn't build on 5.0-p2: $ make ... cd intinf; make INCDIR=../../runtime gcc -Dunix -O2 -fno-defer-pop -fPIC -I../../runtime -c -o intinf.o intinf.c intinf.c:4:17: gmp.h: No such file or directory intinf.c: In function `largeint_finalize': intinf.c:85: `MP_INT' undeclared (first use in this function) intinf.c:85: (Each undeclared identifier is reported only once intinf.c:85: for each function it appears in.) intinf.c:85: `mpint' undeclared (first use in this function) intinf.c:85: syntax error before ')' token intinf.c: In function `largeint_alloc': intinf.c:157: `MP_INT' undeclared (first use in this function) intinf.c: In function `largeint_make': intinf.c:175: `MP_INT' undeclared (first use in this function) intinf.c:175: syntax error before ')' token intinf.c: In function `largeint_make_si': intinf.c:182: `MP_INT' undeclared (first use in this function) intinf.c:182: syntax error before ')' token intinf.c: In function `largeint_set': intinf.c:188: `MP_INT' undeclared (first use in this function) intinf.c:188: syntax error before ')' token intinf.c:188: syntax error before ')' token intinf.c: In function `largeint_set_si': intinf.c:194: `MP_INT' undeclared (first use in this function) intinf.c:194: syntax error before ')' token intinf.c: In function `largeint_to_si': intinf.c:200: `MP_INT' undeclared (first use in this function) intinf.c:200: syntax error before ')' token intinf.c: In function `largeint_neg': intinf.c:209: `MP_INT' undeclared (first use in this function) intinf.c:209: syntax error before ')' token intinf.c:209: syntax error before ')' token intinf.c: In function `largeint_add': intinf.c:215: `MP_INT' undeclared (first use in this function) intinf.c:215: syntax error before ')' token intinf.c:215: syntax error before ')' token intinf.c:215: syntax error before ')' token intinf.c: In function `largeint_sub': intinf.c:221: `MP_INT' undeclared (first use in this function) intinf.c:221: syntax error before ')' token intinf.c:221: syntax error before ')' token intinf.c:221: syntax error before ')' token intinf.c: In function `largeint_mul': intinf.c:227: `MP_INT' undeclared (first use in this function) intinf.c:227: syntax error before ')' token intinf.c:227: syntax error before ')' token intinf.c:227: syntax error before ')' token intinf.c: In function `largeint_tdiv': intinf.c:234: `MP_INT' undeclared (first use in this function) intinf.c:234: syntax error before ')' token intinf.c:234: syntax error before ')' token intinf.c:234: syntax error before ')' token intinf.c: In function `largeint_tmod': intinf.c:240: `MP_INT' undeclared (first use in this function) intinf.c:240: syntax error before ')' token intinf.c:240: syntax error before ')' token intinf.c:240: syntax error before ')' token intinf.c: In function `largeint_tdivmod': intinf.c:246: `MP_INT' undeclared (first use in this function) intinf.c:246: syntax error before ')' token intinf.c:246: syntax error before ')' token intinf.c:247: syntax error before ')' token intinf.c:247: syntax error before ')' token intinf.c: In function `largeint_fdiv': intinf.c:254: `MP_INT' undeclared (first use in this function) intinf.c:254: syntax error before ')' token intinf.c:254: syntax error before ')' token intinf.c:254: syntax error before ')' token intinf.c: In function `largeint_fmod': intinf.c:260: `MP_INT' undeclared (first use in this function) intinf.c:260: syntax error before ')' token intinf.c:260: syntax error before ')' token intinf.c:260: syntax error before ')' token intinf.c: In function `largeint_fdivmod': intinf.c:266: `MP_INT' undeclared (first use in this function) intinf.c:266: syntax error before ')' token intinf.c:266: syntax error before ')' token intinf.c:267: syntax error before ')' token intinf.c:267: syntax error before ')' token intinf.c: In function `largeint_cmp': intinf.c:273: `MP_INT' undeclared (first use in this function) intinf.c:273: syntax error before ')' token intinf.c:273: syntax error before ')' token intinf.c: In function `largeint_cmp_si': intinf.c:284: `MP_INT' undeclared (first use in this function) intinf.c:284: syntax error before ')' token intinf.c: In function `largeint_sizeinbase': intinf.c:294: `MP_INT' undeclared (first use in this function) intinf.c:294: syntax error before ')' token intinf.c: In function `largeint_set_str': intinf.c:308: `MP_INT' undeclared (first use in this function) intinf.c:308: syntax error before ')' token intinf.c: In function `largeint_get_str': intinf.c:318: `MP_INT' undeclared (first use in this function) intinf.c:318: syntax error before ')' token intinf.c:321: syntax error before ')' token intinf.c: In function `largeint_pow_ui': intinf.c:334: `MP_INT' undeclared (first use in this function) intinf.c:334: syntax error before ')' token intinf.c:334: syntax error before ')' token *** Error code 1 Stop in /usr/ports/lang/moscow_ml/work/mosml/src/dynlibs/intinf. *** Error code 1 Stop in /usr/ports/lang/moscow_ml/work/mosml/src/dynlibs. *** Error code 1 Stop in /usr/ports/lang/moscow_ml/work/mosml/src. *** Error code 1 Stop in /usr/ports/lang/moscow_ml. >How-To-Repeat: Try to build lang/moscow_ml on 5.0/i386. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 12:32: 2 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E50637B401 for ; Tue, 25 Feb 2003 12:31:35 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 910F644028 for ; Tue, 25 Feb 2003 12:30:08 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1PKU8NS088485 for ; Tue, 25 Feb 2003 12:30:08 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1PKU8p3088484; Tue, 25 Feb 2003 12:30:08 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2CCAD37B401; Tue, 25 Feb 2003 12:24:54 -0800 (PST) Received: from ftp.translate.ru (ftp.translate.ru [195.131.4.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id D00C444096; Tue, 25 Feb 2003 12:23:16 -0800 (PST) (envelope-from lev@ftp.translate.ru) Received: from ftp.translate.ru (localhost [127.0.0.1]) by ftp.translate.ru (8.12.6/8.12.6) with ESMTP id h1PJoxG1019903; Tue, 25 Feb 2003 22:50:59 +0300 (MSK) (envelope-from lev@ftp.translate.ru) Received: (from lev@localhost) by ftp.translate.ru (8.12.6/8.12.6/Submit) id h1PJosk2019902; Tue, 25 Feb 2003 22:50:54 +0300 (MSK) (envelope-from lev) Message-Id: <200302251950.h1PJosk2019902@ftp.translate.ru> Date: Tue, 25 Feb 2003 22:50:54 +0300 (MSK) From: "Lev A. Serebryakov" Reply-To: "Lev A. Serebryakov" To: FreeBSD-gnats-submit@FreeBSD.org Cc: kde@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48681: `x11/kdebase3' could not be build on recent -CURRENT Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48681 >Category: ports >Synopsis: `x11/kdebase3' could not be build on recent -CURRENT >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 25 12:30:07 PST 2003 >Closed-Date: >Last-Modified: >Originator: Lev A. Serebryakov >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD freebsd.vmware.sereb.net 5.0-CURRENT FreeBSD 5.0-CURRENT #1: Mon Feb 24 21:55:43 MSK 2003 root@freebsd.vmware.sereb.net:/usr/obj/usr/src/sys/VMWARE i386 Ports collection: 24 Feb 2003 >Description: ksysguard from kdebase3 could not be build due to header problems >How-To-Repeat: cd /usr/ports/x11/kdebase3 && make install Here is log: ======================================================= ===# Extracting for kdebase-3.1_1 ## Checksum OK for KDE/kdebase-3.1.tar.bz2. ===# kdebase-3.1_1 depends on file: /usr/X11R6/bin/moc - found ===# kdebase-3.1_1 depends on executable: gmake - found ===# kdebase-3.1_1 depends on shared library: kdecore - found ===# kdebase-3.1_1 depends on shared library: fontconfig.1 - found ===# kdebase-3.1_1 depends on shared library: Xm.3 - found ===# kdebase-3.1_1 depends on shared library: X11.6 - found If you don't want to compile with Xinerama support, hit Ctrl-C right now and use "make WITHOUT_XINERAMA=yes" ===# Patching for kdebase-3.1_1 ===# Applying FreeBSD patches for kdebase-3.1_1 ===# Configuring for kdebase-3.1_1 checking build system type... i386-portbld-freebsd5.0 checking host system type... i386-portbld-freebsd5.0 checking target system type... i386-portbld-freebsd5.0 checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for gawk... no checking for mawk... no checking for nawk... nawk checking whether gmake sets ${MAKE}... yes checking for style of include used by gmake... GNU checking for gcc... cc checking for C compiler default output... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking dependency style of cc... gcc3 checking how to run the C preprocessor... cc -E checking whether we are using the GNU C++ compiler... yes checking whether c++ accepts -g... yes checking dependency style of c++... gcc3 checking whether c++ supports -Wundef... yes checking whether c++ supports -Wno-long-long... yes checking whether c++ supports -Wnon-virtual-dtor... yes checking whether c++ supports -fno-exceptions... yes checking whether c++ supports -fno-check-new... yes checking whether c++ supports -fexceptions... yes checking how to run the C++ preprocessor... c++ -E checking whether c++ supports -frepo... yes not using lib directory suffix checking for ld used by GCC... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for /usr/bin/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking for a sed that does not truncate output... checking whether ln -s works... yes checking how to recognise dependant libraries... pass_all checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking the maximum length of command line arguments... 16384 checking command to parse /usr/bin/nm -B output from cc object... ok checking for objdir... .libs checking for ranlib... ranlib checking for strip... strip checking if cc static flag works... yes checking if cc supports -fno-rtti -fno-exceptions... yes checking for cc option to produce PIC... -fPIC checking if cc PIC flag -fPIC works... yes checking if cc supports -c -o file.o... yes checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... yes checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking dynamic linker characteristics... freebsd5.0 ld.so checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking whether the c++ linker (/usr/bin/ld) supports shared libraries... yes checking for c++ option to produce PIC... -fPIC checking if c++ PIC flag -fPIC works... yes checking if c++ supports -c -o file.o... yes checking whether the c++ linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... yes checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking dynamic linker characteristics... freebsd5.0 ld.so appending configuration tag "GCJ" to libtool checking if gcj supports -fno-rtti -fno-exceptions... (cached) yes checking for gcj option to produce PIC... -fPIC checking if gcj PIC flag -fPIC works... no checking if gcj supports -c -o file.o... no checking whether the gcj linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... yes checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking dynamic linker characteristics... freebsd5.0 ld.so checking for msgfmt... /usr/local/bin/msgfmt checking for gmsgfmt... /usr/local/bin/msgfmt checking for xgettext... /usr/local/bin/xgettext checking for main in -lutil... yes checking for main in -lcompat... yes checking for crypt in -lcrypt... yes checking for socklen_t... socklen_t checking for dnet_ntoa in -ldnet... no checking for dnet_ntoa in -ldnet_stub... no checking for inet_ntoa... yes checking for connect... yes checking for remove... yes checking for shmat... yes checking crt_externs.h usability... no checking crt_externs.h presence... no checking for crt_externs.h... no checking for _NSGetEnviron... no checking for sys/types.h... (cached) yes checking for stdint.h... (cached) yes checking for poll in -lpoll... no checking CoreAudio/CoreAudio.h usability... no checking CoreAudio/CoreAudio.h presence... no checking for CoreAudio/CoreAudio.h... no checking if res_init needs -lresolv... no checking if res_init is available... yes checking for killpg in -lucb... no checking for int... yes checking size of int... 4 checking for long... yes checking size of long... 4 checking for char *... yes checking size of char *... 4 checking for char... yes checking size of char... 1 checking for dlopen in -ldl... no checking for shl_unload in -ldld... no checking for vsnprintf... yes checking for snprintf... yes checking for X... libraries /usr/X11R6/lib, headers /usr/X11R6/include checking for IceConnectionNumber in -lICE... yes checking for libXext... yes checking for Xinerama... yes checking for pthread_create in -lpthread... no checking whether c++ supports -pthread... yes checking for extra includes... no checking for extra libs... added checking for libz... -lz checking for libpng... -lpng -lz -lm checking for libjpeg6b... no checking for libjpeg... -ljpeg checking for Qt... libraries /usr/X11R6/lib, headers /usr/X11R6/include using -mt checking for moc... /usr/X11R6/bin/moc checking for uic... /usr/X11R6/bin/uic checking whether uic supports -L ... yes checking whether uic supports -nounload ... yes checking if Qt needs -ljpeg... no checking for rpath... yes checking for KDE... libraries /usr/local/lib, headers /usr/local/include checking if UIC has KDE plugins available... yes checking for KDE paths... defaults checking for dcopidl... /usr/local/bin/dcopidl checking for dcopidl2cpp... /usr/local/bin/dcopidl2cpp checking for mcopidl... /usr/local/bin/mcopidl checking for artsc-config... /usr/local/bin/artsc-config checking for kde-config... /usr/local/bin/kde-config checking for meinproc... /usr/local/bin/meinproc checking for pam_start in -lpam... yes checking security/pam_appl.h usability... yes checking security/pam_appl.h presence... yes checking for security/pam_appl.h... yes checking for PAM... yes checking for const pam_message... const: Linux-type PAM checking for getspent in -lshadow... no checking for getspent in -lgen... no checking for getspent... no checking for shadow passwords... no The PAM service used by kdm will be kde The PAM service used by kcheckpass will be kde The PAM service used by kscreensaver will be kde checking for libtiff tiff... yes checking for dirent.h that defines DIR... yes checking for library containing opendir... none required checking for ANSI C header files... (cached) yes checking sys/time.h usability... yes checking sys/time.h presence... yes checking for sys/time.h... yes checking crypt.h usability... no checking crypt.h presence... no checking for crypt.h... no checking sys/select.h usability... yes checking sys/select.h presence... yes checking for sys/select.h... yes checking sys/ioctl.h usability... yes checking sys/ioctl.h presence... yes checking for sys/ioctl.h... yes checking sys/stropts.h usability... no checking sys/stropts.h presence... no checking for sys/stropts.h... no checking stropts.h usability... no checking stropts.h presence... no checking for stropts.h... no checking termio.h usability... no checking termio.h presence... no checking for termio.h... no checking termios.h usability... yes checking termios.h presence... yes checking for termios.h... yes checking sys/termios.h usability... yes checking sys/termios.h presence... yes checking for sys/termios.h... yes checking lastlog.h usability... no checking lastlog.h presence... no checking for lastlog.h... no checking sys/socket.h usability... yes checking sys/socket.h presence... yes checking for sys/socket.h... yes checking sys/sockio.h usability... yes checking sys/sockio.h presence... yes checking for sys/sockio.h... yes checking krb5/krb5.h usability... no checking krb5/krb5.h presence... no checking for krb5/krb5.h... no checking rpc/rpc.h usability... yes checking rpc/rpc.h presence... yes checking for rpc/rpc.h... yes checking rpc/key_prot.h usability... yes checking rpc/key_prot.h presence... yes checking for rpc/key_prot.h... yes checking sys/m_wait.h usability... no checking sys/m_wait.h presence... no checking for sys/m_wait.h... no checking ncurses.h usability... yes checking ncurses.h presence... yes checking for ncurses.h... yes checking paths.h usability... yes checking paths.h presence... yes checking for paths.h... yes checking login_cap.h usability... yes checking login_cap.h presence... yes checking for login_cap.h... yes checking syslog.h usability... yes checking syslog.h presence... yes checking for syslog.h... yes checking sys/wait.h usability... yes checking sys/wait.h presence... yes checking for sys/wait.h... yes checking sys/ucred.h usability... no checking sys/ucred.h presence... yes configure: WARNING: sys/ucred.h: present but cannot be compiled configure: WARNING: sys/ucred.h: check for missing prerequisite headers? configure: WARNING: sys/ucred.h: proceeding with the preprocessor's result checking for sys/ucred.h... yes checking sys/mount.h usability... no checking sys/mount.h presence... yes configure: WARNING: sys/mount.h: present but cannot be compiled configure: WARNING: sys/mount.h: check for missing prerequisite headers? configure: WARNING: sys/mount.h: proceeding with the preprocessor's result checking for sys/mount.h... yes checking floatingpoint.h usability... yes checking floatingpoint.h presence... yes checking for floatingpoint.h... yes checking fstab.h usability... yes checking fstab.h presence... yes checking for fstab.h... yes checking mntent.h usability... no checking mntent.h presence... no checking for mntent.h... no checking Alib.h usability... no checking Alib.h presence... no checking for Alib.h... no checking libutil.h usability... yes checking libutil.h presence... yes checking for libutil.h... yes checking util.h usability... no checking util.h presence... no checking for util.h... no checking time.h usability... yes checking time.h presence... yes checking for time.h... yes checking limits.h usability... yes checking limits.h presence... yes checking for limits.h... yes checking vfork.h usability... no checking vfork.h presence... no checking for vfork.h... no checking for string.h... (cached) yes checking float.h usability... yes checking float.h presence... yes checking for float.h... yes checking math.h usability... yes checking math.h presence... yes checking for math.h... yes checking nan.h usability... no checking nan.h presence... no checking for nan.h... no checking ieeefp.h usability... yes checking ieeefp.h presence... yes checking for ieeefp.h... yes checking pty.h usability... no checking pty.h presence... no checking for pty.h... no checking for ptsname... yes checking for main in -lAlib... no checking for main in -lossaudio... no checking for main in -lcfg... no checking for main in -lodm... no checking for setupterm in -lcurses... yes checking for addToUtmp in -lutempter... no checking for res_init... yes checking whether time.h and sys/time.h may both be included... yes checking for working long double with more range or precision than double... yes checking for uid_t in sys/types.h... yes checking type of array argument to getgroups... gid_t checking for char... (cached) yes checking size of char... (cached) 1 checking for short... yes checking size of short... 2 checking for int... (cached) yes checking size of int... (cached) 4 checking for long... (cached) yes checking size of long... (cached) 4 checking whether byte ordering is bigendian... no checking for socket... yes checking for powl... no checking for sqrtl... no checking for strdup... yes checking for getdtablesize... yes checking for setpgid... yes checking for nice... yes checking for seteuid... yes checking for vsyslog... yes checking for initgroups... yes checking for setgroups... yes checking for getgroups... yes checking for grantpt... yes checking for pw_encrypt... no checking for setpriority... yes checking for getpt... no checking for unlockpt... yes checking for ptsname... (cached) yes checking for waitpid... yes checking for mkstemp... yes checking if mkstemp needs custom prototype... no checking for setenv... yes checking if setenv needs custom prototype... no checking for unsetenv... yes checking if unsetenv needs custom prototype... no checking for getdomainname... yes checking if getdomainname needs custom prototype... no checking for gethostname... yes checking if gethostname needs custom prototype... no checking for usleep... yes checking if usleep needs custom prototype... no checking for random... yes checking if random needs custom prototype... no checking for srandom... yes checking if srandom needs custom prototype... no checking for S_ISSOCK... yes checking for MAXPATHLEN... 1024 checking for strlcpy... yes checking if strlcpy needs custom prototype... no checking for strlcat... yes checking if strlcat needs custom prototype... no checking for size_t... yes checking size of size_t... 4 checking for unsigned long... yes checking size of unsigned long... 4 checking sizeof(size_t) == sizeof(unsigned long)... yes checking if it's safe to enable UTMP... yes checking for utmp file... /var/run/utmp checking for kstat_open in -lkstat... no checking libdevinfo.h usability... no checking libdevinfo.h presence... no checking for libdevinfo.h... no checking for Java... none found checking X11/extensions/XTest.h usability... yes checking X11/extensions/XTest.h presence... yes checking for X11/extensions/XTest.h... yes checking for XTestFakeKeyEvent in -lXtst... yes checking X11/XKBlib.h usability... yes checking X11/XKBlib.h presence... yes checking for X11/XKBlib.h... yes checking for XkbLockModifiers in -lX11... yes checking for XkbSetPerClientControls in -lX11... yes checking for Qt docs... NO checking for dot... not found checking for doxygen... not found checking X11/extensions/XKBstr.h usability... no checking X11/extensions/XKBstr.h presence... yes configure: WARNING: X11/extensions/XKBstr.h: present but cannot be compiled configure: WARNING: X11/extensions/XKBstr.h: check for missing prerequisite headers? configure: WARNING: X11/extensions/XKBstr.h: proceeding with the preprocessor's result checking for X11/extensions/XKBstr.h... yes checking for OpenSSL... libraries /usr/lib, headers /usr/include checking whether OpenSSL uses rsaref... no checking for easter eggs... none found checking for OpenSSL version... ok checking for DPMS... yes checking for fontconfig-config... /usr/X11R6/bin/fontconfig-config checking devinfo.h usability... yes checking devinfo.h presence... yes checking for devinfo.h... yes checking for devinfo_foreach_rman in -ldevinfo... yes checking for long long... yes checking for freetype-config... /usr/local/bin/freetype-config checking for FTC_Manager_New in -lfreetype... yes checking for getifaddrs... yes checking for getnameinfo... yes checking kcarddb.h usability... no checking kcarddb.h presence... no checking for kcarddb.h... no checking X11/extensions/Xrender.h usability... yes checking X11/extensions/Xrender.h presence... yes checking for X11/extensions/Xrender.h... yes checking for XRenderComposite in -lXrender... yes checking for sigset... no checking for sigaction... yes checking "struct ucred"... no checking nogroup... nogroup checking for getpeereid... yes checking for xmkmf... /usr/X11R6/bin/xmkmf checking various X settings... done checking whether to use xdm authorization... yes checking for X binary directory... /usr/X11R6/bin checking for X library directory... /usr/X11R6/lib/X11 checking for main in -lXau... yes checking for main in -lXdmcp... yes checking X11/Xdmcp.h usability... yes checking X11/Xdmcp.h presence... yes checking for X11/Xdmcp.h... yes checking whether to use Kerberos v4... no checking whether to use AFS... no checking for main in -ls... no checking whether to use Kerberos5 for Xauth cookies in kdm... no checking whether to use Sun's secure RPC for Xauth cookies in kdm... no checking for pw_expire in struct passwd... yes checking for setusercontext... yes checking for getusershell... no checking if getusershell needs custom prototype... yes checking for login_getclass... yes checking for auth_timeok... yes checking for vsyslog... (cached) yes xdm CFLAGS: -DCSRG_BASED -DTCPCONN -DUNIXCONN -DOSMAJORVERSION=5 -DOSMINORVERSION=0 -DHASXDMAUTH -DFRAGILE_DEV_MEM -DBSD44SOCKETS -DHAS_MKSTEMP -DHAVE_PW_EXPIRE -DHAS_SETUSERCONTEXT -DHAVE_GETUSERSHELL -DHAVE_LOGIN_GETCLASS -DHAVE_AUTH_TIMEOK -DUSE_SYSLOG -DUSE_PAM -DXDMCP checking whether devices kioslave should be compiled... yes checking for bzDecompress in libbz2... no checking whether c++ supports -shared... yes checking for BZ2_bzDecompress in (shared) libbz2... -lbz2 checking for termios.h... (cached) yes checking for pty.h... (cached) no checking for libutil.h... (cached) yes checking for util.h... (cached) no checking for sys/types.h... (cached) yes checking for sys/ioctl.h... (cached) yes checking for stropts.h... (cached) no checking for getpt... (cached) no checking for openpty... yes checking for isastream... no checking whether to compile LDAP support... no checking libsmbclient.h usability... no checking libsmbclient.h presence... no checking for libsmbclient.h... no checking for smbc_init in -lsmbclient... no checking whether we can use openpty... no checking how cwd can be be found by seperate process... no checking for _IceTransNoListen... yes checking if ksysguardd can be compiled... yes checking for sensors_init in -lsensors... no checking sensors/sensors.h usability... no checking sensors/sensors.h presence... no checking for sensors/sensors.h... no checking X11/extensions/shape.h usability... yes checking X11/extensions/shape.h presence... yes checking for X11/extensions/shape.h... yes checking for X11/extensions/XKBstr.h... (cached) yes checking X11/extensions/XKBrules.h usability... no checking X11/extensions/XKBrules.h presence... yes configure: WARNING: X11/extensions/XKBrules.h: present but cannot be compiled configure: WARNING: X11/extensions/XKBrules.h: check for missing prerequisite headers? configure: WARNING: X11/extensions/XKBrules.h: proceeding with the preprocessor's result checking for X11/extensions/XKBrules.h... yes checking for X... libraries /usr/X11R6/lib, headers /usr/X11R6/include checking for gethostbyname... yes checking for connect... (cached) yes checking for remove... (cached) yes checking for shmat... (cached) yes checking for IceConnectionNumber in -lICE... (cached) yes checking for XpStartPage in -lXp... yes checking for Motif... libraries in default path, headers in default path checking if libkonq should be compiled... yes checking if applnk should be compiled... yes checking if doc should be compiled... yes checking if drkonqi should be compiled... yes checking if kappfinder should be compiled... yes checking if kate should be compiled... yes checking if kcheckpass should be compiled... yes checking if kcontrol should be compiled... yes checking if kdcop should be compiled... yes checking if kdebugdialog should be compiled... yes checking if kdeprint should be compiled... yes checking if kdesu should be compiled... yes checking if kdialog should be compiled... yes checking if kfind should be compiled... yes checking if khelpcenter should be compiled... yes checking if khotkeys should be compiled... yes checking if kicker should be compiled... yes checking if kioslave should be compiled... yes checking if klipper should be compiled... yes checking if kmenuedit should be compiled... yes checking if konsole should be compiled... yes checking if kpager should be compiled... yes checking if kpersonalizer should be compiled... yes checking if kreadconfig should be compiled... yes checking if krichtexteditor should be compiled... no checking if kscreensaver should be compiled... yes checking if ksmserver should be compiled... yes checking if ksplash should be compiled... yes checking if kstart should be compiled... yes checking if ksysguard should be compiled... yes checking if ksystraycmd should be compiled... yes checking if ktip should be compiled... yes checking if kwin should be compiled... yes checking if kxkb should be compiled... yes checking if l10n should be compiled... yes checking if legacyimport should be compiled... no checking if nsplugins should be compiled... yes checking if pics should be compiled... yes checking if konqueror should be compiled... yes checking if kdesktop should be compiled... yes checking if kdm should be compiled... yes configure: creating ./config.status fast creating Makefile fast creating applnk/Makefile ============ [SKIPPPPPED] ============ fast creating pics/wallpapers/Makefile config.status: creating config.h config.status: executing depfiles commands Good - your configure finished. Start make now /usr/bin/sed -i.bak -e "s@genkdmconf --in@genkdmconf --no-old --in@" /usr/ports/x11/kdebase3/work/kdebase-3.1/kdm/kfrontend/Makefile /usr/bin/sed -i.bak -e "s@^\s*Exec=.*\$@Exec=ElectricEyes@" /usr/ports/x11/kdebase3/work/kdebase-3.1/kappfinder/apps/Graphics/ElectricEyes.desktop /usr/bin/sed -i.bak -e 's/444/644/g' /usr/ports/x11/kdebase3/work/kdebase-3.1/kdesktop/init/Templates/Makefile ===# Building for kdebase-3.1_1 /bin/cat /usr/ports/x11/kdebase3/files/plist.base /usr/ports/x11/kdebase3/files/plist.mkfontdir /usr/ports/x11/kdebase3/files/plist.motif 2>/dev/null >/usr/ports/x11/kdebase3/work/plist ============ [SKIPPPPPED] ============ Making all in ksysguard gmake[2]: Entering directory `/usr/ports/x11/kdebase3/work/kdebase-3.1/ksysguard' Making all in CContLib gmake[3]: Entering directory `/usr/ports/x11/kdebase3/work/kdebase-3.1/ksysguard/CContLib' source='ccont.c' object='ccont.o' libtool=no \ depfile='.deps/ccont.Po' tmpdepfile='.deps/ccont.TPo' \ depmode=gcc3 /bin/sh ../../admin/depcomp \ cc -DHAVE_CONFIG_H -I. -I. -I../.. -pthread -DQT_THREAD_SUPPORT -I/usr/local/include -I/usr/local/include -I/usr/X11R6/include -D_GETOPT_H -D_THREAD_SAFE -ggdb -DNDEBUG -O2 -O -pipe -march=pentiumpro -D_GNU_SOURCE -c `test -f 'ccont.c' || echo './'`ccont.c rm -f libccont.a ar cru libccont.a ccont.o ranlib libccont.a gmake[3]: Leaving directory `/usr/ports/x11/kdebase3/work/kdebase-3.1/ksysguard/CContLib' Making all in ksysguardd gmake[3]: Entering directory `/usr/ports/x11/kdebase3/work/kdebase-3.1/ksysguard/ksysguardd' Making all in FreeBSD gmake[4]: Entering directory `/usr/ports/x11/kdebase3/work/kdebase-3.1/ksysguard/ksysguardd/FreeBSD' source='CPU.c' object='CPU.o' libtool=no \ depfile='.deps/CPU.Po' tmpdepfile='.deps/CPU.TPo' \ depmode=gcc3 /bin/sh ../../../admin/depcomp \ cc -DHAVE_CONFIG_H -I. -I. -I../../.. -I./../../CContLib -I./.. -pthread -DQT_THREAD_SUPPORT -I/usr/local/include -I/usr/local/include -I/usr/X11R6/include -D_GETOPT_H -D_THREAD_SAFE -DNDEBUG -O2 -O -pipe -march=pentiumpro -D_GNU_SOURCE -c `test -f 'CPU.c' || echo './'`CPU.c In file included from CPU.c:24: /usr/include/sys/dkstat.h:45:2: warning: #warning " is deprecated and should not be #include'd" In file included from CPU.c:27: /usr/include/devstat.h:110: `CPUSTATES' undeclared here (not in a function) CPU.c:42: `CPUSTATES' undeclared here (not in a function) CPU.c:43: `CPUSTATES' undeclared here (not in a function) CPU.c:44: `CPUSTATES' undeclared here (not in a function) CPU.c:45: `CPUSTATES' undeclared here (not in a function) CPU.c: In function `updateCpuInfo': CPU.c:71: warning: passing arg 3 of `sysctlbyname' makes pointer from integer without a cast CPU.c:72: `CPUSTATES' undeclared (first use in this function) CPU.c:72: (Each undeclared identifier is reported only once CPU.c:72: for each function it appears in.) CPU.c: In function `printCPUUser': CPU.c:79: `CP_USER' undeclared (first use in this function) CPU.c: In function `printCPUNice': CPU.c:91: `CP_NICE' undeclared (first use in this function) CPU.c: In function `printCPUSys': CPU.c:103: `CP_SYS' undeclared (first use in this function) CPU.c: In function `printCPUIdle': CPU.c:115: `CP_IDLE' undeclared (first use in this function) /usr/include/stdio.h: At top level: CPU.c:42: storage size of `cp_time' isn't known CPU.c:43: storage size of `cp_old' isn't known CPU.c:44: storage size of `cp_diff' isn't known CPU.c:45: storage size of `cpu_states' isn't known gmake[4]: *** [CPU.o] Error 1 gmake[4]: Leaving directory `/usr/ports/x11/kdebase3/work/kdebase-3.1/ksysguard/ksysguardd/FreeBSD' gmake[3]: *** [all-recursive] Error 1 gmake[3]: Leaving directory `/usr/ports/x11/kdebase3/work/kdebase-3.1/ksysguard/ksysguardd' gmake[2]: *** [all-recursive] Error 1 gmake[2]: Leaving directory `/usr/ports/x11/kdebase3/work/kdebase-3.1/ksysguard' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/x11/kdebase3/work/kdebase-3.1' gmake: *** [all] Error 2 *** Error code 2 Stop in /usr/ports/x11/kdebase3. freebsd# ======================================================= >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 12:58:12 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DEC4E37B401; Tue, 25 Feb 2003 12:58:11 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E3CB43F3F; Tue, 25 Feb 2003 12:58:11 -0800 (PST) (envelope-from roger@FreeBSD.org) Received: from freefall.freebsd.org (roger@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1PKwBNS094796; Tue, 25 Feb 2003 12:58:11 -0800 (PST) (envelope-from roger@freefall.freebsd.org) Received: (from roger@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1PKwBEg094792; Tue, 25 Feb 2003 12:58:11 -0800 (PST) Date: Tue, 25 Feb 2003 12:58:11 -0800 (PST) From: Roger Hardiman Message-Id: <200302252058.h1PKwBEg094792@freefall.freebsd.org> To: charlie@sysninjas.com, roger@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/40441: sysutils/lcdproc + HD44780 + 'winamp' wiring scheme =3D = Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: sysutils/lcdproc + HD44780 + 'winamp' wiring scheme =3D = State-Changed-From-To: open->closed State-Changed-By: roger State-Changed-When: Tue Feb 25 12:50:52 PST 2003 State-Changed-Why: I have added a patch to the port to fix the outb() bug. I also updated the port Makefile to compile all hardware drivers. I actually fixed the outb() bug and did the commits prior to finding this PR. My Oriental Display OD-DM1602F (HD44780 16x2 LCD) wired in 4 bit mode now works on my 4.7-stable laptop. http://www.freebsd.org/cgi/query-pr.cgi?pr=40441 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 14:30: 9 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BFF837B401 for ; Tue, 25 Feb 2003 14:30:07 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C99243FDF for ; Tue, 25 Feb 2003 14:30:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1PMU5NS021472 for ; Tue, 25 Feb 2003 14:30:05 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1PMU5Vh021471; Tue, 25 Feb 2003 14:30:05 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB09837B401 for ; Tue, 25 Feb 2003 14:23:40 -0800 (PST) Received: from osm.michaelines.net (osm.michaelines.net [66.238.77.213]) by mx1.FreeBSD.org (Postfix) with ESMTP id 203F943F93 for ; Tue, 25 Feb 2003 14:23:40 -0800 (PST) (envelope-from blaise@michaelines.net) Received: by osm.michaelines.net (Postfix, from userid 1002) id 5726D20D16; Tue, 25 Feb 2003 17:24:23 -0500 (EST) Message-Id: <20030225222423.5726D20D16@osm.michaelines.net> Date: Tue, 25 Feb 2003 17:24:23 -0500 (EST) From: Jim Trigg Reply-To: Jim Trigg To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48684: mail/postfix port relies on incorrect dependencies Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48684 >Category: ports >Synopsis: mail/postfix port relies on incorrect dependencies >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Feb 25 14:30:04 PST 2003 >Closed-Date: >Last-Modified: >Originator: Jim Trigg >Release: FreeBSD 4.6.2-RELEASE i386 >Organization: Me, Myself, and I >Environment: System: FreeBSD osm.michaelines.net 4.6.2-RELEASE FreeBSD 4.6.2-RELEASE #0: Wed Aug 14 21:23:26 GMT 2002 murray@builder.freebsdmall.com:/usr/src/sys/compile/GENERIC i386 >Description: The optional dependencies for the mail/postfix port are out of date. As of version 2, postfix uses OpenLDAP 2.0, not 1.2. Also, the IPv6+TLS patch is one release out of date (it is for 2.0.3 when the port is at 2.0.4). >How-To-Repeat: cd /usr/ports/mail/postfix; make pre-fetch Select LDAP and IPv6+TLS Examine Makefile.inc >Fix: Here is a patch for the configure.postfix script that fixes these issues: --- ports/mail/postfix/scripts/configure.postfix,v 1.29 Tue Feb 25 17:17:53 2003 +++ ports/mail/postfix/scripts/configure.postfix Tue Feb 25 17:18:33 2003 @@ -172,7 +172,7 @@ echo "PATCH_DIST_STRIP= -p1" ;; OpenLDAP) - echo "BUILD_DEPENDS+= \${LOCALBASE}/lib/libldap.a:\${PORTSDIR}/net/openldap12" + echo "BUILD_DEPENDS+= \${LOCALBASE}/lib/libldap.a:\${PORTSDIR}/net/openldap20" echo "POSTFIX_CCARGS+= -DHAS_LDAP -I\${LOCALBASE}/include" echo "POSTFIX_AUXLIBS+= \${LOCALBASE}/lib/libldap.a \${PREFIX}/lib/liblber.a" echo "OPENLDAP_SUFFIX= +openldap" @@ -208,8 +208,8 @@ echo "MAN8+= tlsmgr.8" echo "POSTFIX_CCARGS+= -DHAS_SSL -I/usr/include/openssl" echo "POSTFIX_AUXLIBS+= -lssl -lcrypto" - echo "PATCH_SITES+= ftp://ftp.stack.nl/pub/postfix/tls+ipv6/1.12/" - echo "PATCHFILES+= tls+ipv6-1.12-pf-2.0.3.patch.gz" + echo "PATCH_SITES+= ftp://ftp.stack.nl/pub/postfix/tls+ipv6/1.13/" + echo "PATCHFILES+= tls+ipv6-1.13-pf-2.0.4.patch.gz" echo "PATCH_DIST_STRIP= -p1" echo "TLS_SUFFIX= +tls+ipv6" SUB_TLS="" >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 14:30:12 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 84A5537B405 for ; Tue, 25 Feb 2003 14:30:07 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E06F743FCB for ; Tue, 25 Feb 2003 14:30:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1PMU4NS021455 for ; Tue, 25 Feb 2003 14:30:04 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1PMU4iJ021453; Tue, 25 Feb 2003 14:30:04 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77CF737B401 for ; Tue, 25 Feb 2003 14:22:38 -0800 (PST) Received: from fuzzilicious.fuzzynerd.com (ip-60-65.academy.rpi.edu [128.113.60.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7DF5A43F3F for ; Tue, 25 Feb 2003 14:22:37 -0800 (PST) (envelope-from lansil@fuzzilicious.fuzzynerd.com) Received: from fuzzilicious.fuzzynerd.com (localhost [127.0.0.1]) by fuzzilicious.fuzzynerd.com (8.12.6/8.12.6) with ESMTP id h1PMFNj3020851 for ; Tue, 25 Feb 2003 17:15:23 -0500 (EST) (envelope-from lansil@fuzzilicious.fuzzynerd.com) Received: (from lansil@localhost) by fuzzilicious.fuzzynerd.com (8.12.6/8.12.6/Submit) id h1PMFN7K020850; Tue, 25 Feb 2003 17:15:23 -0500 (EST) Message-Id: <200302252215.h1PMFN7K020850@fuzzilicious.fuzzynerd.com> Date: Tue, 25 Feb 2003 17:15:23 -0500 (EST) From: Larry Lansing Reply-To: Larry Lansing To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48683: 'passivetex' port out of date, checksum error (patch included) Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48683 >Category: ports >Synopsis: 'passivetex' port out of date, checksum error (patch included) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Feb 25 14:30:04 PST 2003 >Closed-Date: >Last-Modified: >Originator: Larry Lansing >Release: FreeBSD 5.0-RELEASE i386 >Organization: Rensselaer Polytechnic Institute >Environment: System: FreeBSD fuzzilicious.fuzzynerd.com 5.0-RELEASE FreeBSD 5.0-RELEASE #0: Sat Jan 25 21:10:30 EST 2003 root@fuzzilicious.ell:/usr/obj/usr/src/sys/FUZZILICIOUS i386 >Description: The passivetex author releases new versions of the distfile on top of old versions. This causes building of the port to break, due to checksum errors. The port can be upgraded to version 1.23 to fix this problem. >How-To-Repeat: portupgrade -NR passivetex >Fix: --- passivetex_bak/Makefile Tue Feb 25 15:44:27 2003 +++ passivetex/Makefile Tue Feb 25 15:44:55 2003 @@ -6,7 +6,7 @@ # PORTNAME= passivetex -PORTVERSION= 1.21 +PORTVERSION= 1.23 CATEGORIES= print MASTER_SITES= http://www.tei-c.org.uk/Software/passivetex/ DISTFILES= passivetex.zip diff -ru passivetex_bak/distinfo passivetex/distinfo --- passivetex_bak/distinfo Tue Feb 25 15:44:27 2003 +++ passivetex/distinfo Tue Feb 25 15:45:25 2003 @@ -1 +1 @@ -MD5 (passivetex/passivetex.zip) = 700c10a716ef14ad9bbc073061ad7307 +MD5 (passivetex/passivetex.zip) = 31114736cfcfd907bb9d39a96515f411 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 14:40: 5 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 07A1C37B401 for ; Tue, 25 Feb 2003 14:40:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2913B43FBF for ; Tue, 25 Feb 2003 14:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1PMe2NS024753 for ; Tue, 25 Feb 2003 14:40:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1PMe20j024752; Tue, 25 Feb 2003 14:40:02 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C2F537B401 for ; Tue, 25 Feb 2003 14:37:26 -0800 (PST) Received: from osm.michaelines.net (osm.michaelines.net [66.238.77.213]) by mx1.FreeBSD.org (Postfix) with ESMTP id DBAD043FAF for ; Tue, 25 Feb 2003 14:37:25 -0800 (PST) (envelope-from blaise@michaelines.net) Received: by osm.michaelines.net (Postfix, from userid 1002) id B133120D16; Tue, 25 Feb 2003 17:38:08 -0500 (EST) Message-Id: <20030225223808.B133120D16@osm.michaelines.net> Date: Tue, 25 Feb 2003 17:38:08 -0500 (EST) From: Jim Trigg Reply-To: Jim Trigg To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48685: ports tree missing from ftp site Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48685 >Category: ports >Synopsis: ports tree missing from ftp site >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Feb 25 14:40:02 PST 2003 >Closed-Date: >Last-Modified: >Originator: Jim Trigg >Release: FreeBSD 4.6.2-RELEASE i386 >Organization: Me, Myself, and I >Environment: System: FreeBSD osm.michaelines.net 4.6.2-RELEASE FreeBSD 4.6.2-RELEASE #0: Wed Aug 14 21:23:26 GMT 2002 murray@builder.freebsdmall.com: /usr/src/sys/compile/GENERIC i386 >Description: The FTP site (ftp://ftp.FreeBSD.org) does not have the ports tree -- /pub/FreeBSD/branches/-current/ports does not exist. This is a problem because if someone wants to update one file in one port, using the FTP site is much more efficient than an entire CVSup. >How-To-Repeat: FTP to ftp://ftp.FreeBSD.org/pub/FreeBSD/ports and attempt to cd to ports. It will fail because the ports symlink points to a non-existent directory. >Fix: Load the ports tree back onto the FTP site. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 15:30: 4 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 80D8D37B401 for ; Tue, 25 Feb 2003 15:30:02 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A47B543FDD for ; Tue, 25 Feb 2003 15:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1PNU1NS040296 for ; Tue, 25 Feb 2003 15:30:01 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1PNU1VX040295; Tue, 25 Feb 2003 15:30:01 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 816C637B406 for ; Tue, 25 Feb 2003 15:20:21 -0800 (PST) Received: from web13509.mail.yahoo.com (web13509.mail.yahoo.com [216.136.173.13]) by mx1.FreeBSD.org (Postfix) with SMTP id D739A43FAF for ; Tue, 25 Feb 2003 15:20:20 -0800 (PST) (envelope-from dyeske@yahoo.com) Received: from [24.196.239.120] by web13509.mail.yahoo.com via HTTP; Tue, 25 Feb 2003 15:20:20 PST Message-Id: <20030225232020.27438.qmail@web13509.mail.yahoo.com> Date: Tue, 25 Feb 2003 15:20:20 -0800 (PST) From: David Yeske To: FreeBSD-gnats-submit@FreeBSD.org Cc: Mario Subject: ports/48687: new port: audio/xmms-faad Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48687 >Category: ports >Synopsis: new port: audio/xmms-faad >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 25 15:30:01 PST 2003 >Closed-Date: >Last-Modified: >Originator: David Yeske >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: FreeBSD blue 4.7-STABLE FreeBSD 4.7-STABLE #1: Sat Feb 8 18:38:03 EST 2003 root@blue:/usr/obj/usr/src/sys/BLUE i386 >Description: This uses the same distfile and pkg-descr as audio/faad >How-To-Repeat: >Fix: http://pigseye.kennesaw.edu/~dyeske/freebsd/xmms-faad.tgz __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 15:40:10 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 73D2137B401 for ; Tue, 25 Feb 2003 15:40:08 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84A4443FBD for ; Tue, 25 Feb 2003 15:40:07 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1PNe7NS042390 for ; Tue, 25 Feb 2003 15:40:07 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1PNe72u042389; Tue, 25 Feb 2003 15:40:07 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E3FD137B401 for ; Tue, 25 Feb 2003 15:39:58 -0800 (PST) Received: from t-mta1.odn.ne.jp (mfep1.odn.ne.jp [143.90.131.179]) by mx1.FreeBSD.org (Postfix) with ESMTP id B8AC343FDD for ; Tue, 25 Feb 2003 15:39:57 -0800 (PST) (envelope-from fuyuki@hadaly.dyndns.org) Received: from hadaly.dyndns.org ([211.131.105.144]) by t-mta1.odn.ne.jp with ESMTP id <20030225233956723.HRGA.12615.t-mta1.odn.ne.jp@mta1.odn.ne.jp>; Wed, 26 Feb 2003 08:39:56 +0900 Received: by hadaly.dyndns.org (Postfix, from userid 1001) id 9B524549A; Wed, 26 Feb 2003 08:39:55 +0900 (JST) Message-Id: <20030225233955.9B524549A@hadaly.dyndns.org> Date: Wed, 26 Feb 2003 08:39:55 +0900 (JST) From: Kimura Fuyuki To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48688: Update port: databases/tinycdb to 0.73 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48688 >Category: ports >Synopsis: Update port: databases/tinycdb to 0.73 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Feb 25 15:40:07 PST 2003 >Closed-Date: >Last-Modified: >Originator: Kimura Fuyuki >Release: FreeBSD 4.7-RELEASE-p6 i386 >Organization: >Environment: System: FreeBSD hadaly.dyndns.org 4.7-RELEASE-p6 FreeBSD 4.7-RELEASE-p6 #0: Tue Feb 25 11:11:20 JST 2003 root@hadaly.dyndns.org:/sack/tmp/obj/usr/src/sys/NS i386 >Description: Update to 0.73 >How-To-Repeat: >Fix: cvs server: Diffing . Index: Makefile =================================================================== RCS file: /home/ncvs/ports/databases/tinycdb/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- Makefile 20 Feb 2003 17:00:25 -0000 1.4 +++ Makefile 25 Feb 2003 23:39:24 -0000 @@ -7,7 +7,7 @@ # PORTNAME= tinycdb -PORTVERSION= 0.72 +PORTVERSION= 0.73 CATEGORIES= databases MASTER_SITES= ftp://ftp.corpit.ru/pub/tinycdb/ Index: distinfo =================================================================== RCS file: /home/ncvs/ports/databases/tinycdb/distinfo,v retrieving revision 1.1 diff -u -r1.1 distinfo --- distinfo 17 Oct 2002 16:23:42 -0000 1.1 +++ distinfo 25 Feb 2003 23:39:24 -0000 @@ -1 +1 @@ -MD5 (tinycdb-0.72.tar.gz) = 2b836b947707d3dd5903a12551e25f8e +MD5 (tinycdb-0.73.tar.gz) = 4a751aad0ac3067a7b922c40e495d79e >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 18:10:18 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77A9137B401 for ; Tue, 25 Feb 2003 18:10:14 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DCF3243F85 for ; Tue, 25 Feb 2003 18:10:13 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1Q2ADNS084997 for ; Tue, 25 Feb 2003 18:10:13 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1Q2ADhF084996; Tue, 25 Feb 2003 18:10:13 -0800 (PST) Date: Tue, 25 Feb 2003 18:10:13 -0800 (PST) Message-Id: <200302260210.h1Q2ADhF084996@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Dale Woolridge Subject: Re: ports/48664: New port: Binc IMAP is a GPL licensed IMAP4rev1 server for Maildir Reply-To: Dale Woolridge Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48664; it has been noted by GNATS. From: Dale Woolridge To: Simon 'portlint' Schubert Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/48664: New port: Binc IMAP is a GPL licensed IMAP4rev1 server for Maildir Date: Tue, 25 Feb 2003 21:03:36 -0500 --rS8CxjVDS/+yyDmU Content-Type: multipart/mixed; boundary="1yeeQ81UyVL57Vl7" Content-Disposition: inline --1yeeQ81UyVL57Vl7 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Here's the new (correct) shar (attached). Apologies if you would have preferred receiving a diff, but given that the last shar was (more or less) wholly munged, a complete replacment seemed most appropriate. Final corrections included to account for getopt_long(). -- -Dale --1yeeQ81UyVL57Vl7 Content-Type: application/x-shar Content-Disposition: attachment; filename="bincimap.shar" Content-Transfer-Encoding: quoted-printable # This is a shell archive. Save it in a file, remove anything before=0A# t= his line, and then unpack it by entering "sh file". Note, it may=0A# creat= e directories; files and directories will be owned by you and=0A# have defa= ult permissions.=0A#=0A# This archive contains:=0A#=0A# /usr/ports/mail/bin= cimap/=0A# /usr/ports/mail/bincimap/pkg-descr=0A# /usr/ports/mail/bincimap/= distinfo=0A# /usr/ports/mail/bincimap/Makefile=0A# /usr/ports/mail/bincimap= /pkg-plist=0A# /usr/ports/mail/bincimap/pkg-message=0A# /usr/ports/mail/bin= cimap/files=0A# /usr/ports/mail/bincimap/files/patch-01=0A# /usr/ports/mail= /bincimap/files/patch-02=0A# /usr/ports/mail/bincimap/files/patch-03=0A#=0A= echo c - /usr/ports/mail/bincimap/=0Amkdir -p /usr/ports/mail/bincimap/ > /= dev/null 2>&1=0Aecho x - /usr/ports/mail/bincimap/pkg-descr=0Ased 's/^X//' = >/usr/ports/mail/bincimap/pkg-descr << 'END-of-/usr/ports/mail/bincimap/pkg= -descr'=0AXBinc IMAP is a GPL licensed IMAP4rev1 server for Maildir,=0AXwri= tten in C++. It strives to be stable, fast, flexible,=0AXand RFC compliant= =2E=0AX=0AXFor those familiar with qmail-pop3d, this IMAP server=0AXwill be= the natural choice. It is invoked similarily,=0AXuses checkpassword, and = it is also very easy to write=0AXyour own authenticator.=0AX=0AXWWW: http:/= /www.bincimap.andreas.hanssen.name/=0AEND-of-/usr/ports/mail/bincimap/pkg-d= escr=0Aecho x - /usr/ports/mail/bincimap/distinfo=0Ased 's/^X//' >/usr/port= s/mail/bincimap/distinfo << 'END-of-/usr/ports/mail/bincimap/distinfo'=0AXM= D5 (bincimap-1.0.24.tar.gz) =3D d30719069dbf62763f349ecd87654740=0AEND-of-/= usr/ports/mail/bincimap/distinfo=0Aecho x - /usr/ports/mail/bincimap/Makefi= le=0Ased 's/^X//' >/usr/ports/mail/bincimap/Makefile << 'END-of-/usr/ports/= mail/bincimap/Makefile'=0AX# New ports collection makefile for: binc=0AX# D= ate created: 25/03/2003=0AX# Whom: Dale Woolridge =0AX#=0AX# $FreeBSD$=0AX#=0AX=0AXPORTNAME=3D bincimap= =0AXPORTVERSION=3D 1.0.24=0AXCATEGORIES=3D mail=0AXMASTER_SITES=3D http://w= ww.bincimap.andreas.hanssen.name/dl/tarballs/=0AX=0AXMAINTAINER=3D dale-fre= ebsd-port-binc@woolridge.org=0AXCOMMENT=3D Binc IMAP is a GPL licensed IMAP= 4rev1 server for Maildir=0AX=0AXMAN1=3D bincimapd.1=0AXMAN5=3D bincimap.con= f.5=0AX=0AXGNU_CONFIGURE=3D yes=0AX=0AXCONFIGURE_ARGS+=3D --sysconfd= ir=3D${PREFIX}/etc/bincimap=0AXCONFIGURE_ENV=3D CPPFLAGS=3D"-I${LOCALBASE}/= include" \=0AX LDFLAGS=3D"-L${LOCALBASE}/lib -lgnugetopt"=0AX=0AX#=0AX# co= mpile static=0AX#=0AX.if BINC_STATIC=0AXCONFIGURE_ARGS+=3D --enable-static= =0AX.endif=0AX=0AXpost-install:=0AX ${MKDIR} ${PREFIX}/etc/bincimap=0AX ${C= HOWN} ${SHAREOWN}:${SHAREGRP} ${PREFIX}/etc/bincimap=0AX ${INSTALL_DATA} ${= WRKSRC}/conf/bincimap.conf ${PREFIX}/etc/bincimap/bincimap.conf.sample=0AX = ${INSTALL_DATA} ${WRKSRC}/service/run ${PREFIX}/etc/bincimap/supervise.samp= le=0AX ${INSTALL_DATA} ${WRKSRC}/service/run-ssl ${PREFIX}/etc/bincimap/sup= ervise-ssl.sample=0AX ${INSTALL_DATA} ${WRKSRC}/conf/xinetd-bincimap ${PREF= IX}/etc/bincimap/xinetd.sample=0AX ${INSTALL_DATA} ${WRKSRC}/conf/xinetd-bi= ncimaps ${PREFIX}/etc/bincimap/xinetd-ssl.sample=0AX ${INSTALL_MAN} ${WRKSR= C}/man/bincimapd.1 ${PREFIX}/man/man1/=0AX ${INSTALL_MAN} ${WRKSRC}/man/bin= cimap.conf.5 ${PREFIX}/man/man5/=0AX @${CAT} ${PKGMESSAGE}=0AX=0AX.include = =0AEND-of-/usr/ports/mail/bincimap/Makefile=0Aecho x - /usr/po= rts/mail/bincimap/pkg-plist=0Ased 's/^X//' >/usr/ports/mail/bincimap/pkg-pl= ist << 'END-of-/usr/ports/mail/bincimap/pkg-plist'=0AXbin/bincimapd=0AXbin/= bincimap-auth-checkpassword=0AXbin/bincimap-uidpwd=0AXetc/bincimap/bincimap= =2Econf.sample=0AXetc/bincimap/supervise.sample=0AXetc/bincimap/supervise-s= sl.sample=0AXetc/bincimap/xinetd.sample=0AXetc/bincimap/xinetd-ssl.sample= =0AX@dirrm etc/bincimap=0AEND-of-/usr/ports/mail/bincimap/pkg-plist=0Aecho = x - /usr/ports/mail/bincimap/pkg-message=0Ased 's/^X//' >/usr/ports/mail/bi= ncimap/pkg-message << 'END-of-/usr/ports/mail/bincimap/pkg-message'=0AX****= **********************************************=0AX=0AXThe bincimapd daemon = should be invoked by a supervise'd tcpserver or xinetd.=0AX=0AXPlease exami= ne the sample configuration file (bincimap.conf.sample) and=0AXcreate your = own by modifying a copy of the sample file.=0AX=0AXSample files have been p= rovided for running bincimapd under supervise,=0AXwith and without ssl, as = supervise.sample and supervise-ssl.sample.=0AXSimilarly, a sample for runni= ng under xinetd have also been provided=0AXas xinetd.sample and xinetd-ssl.= sample.=0AX=0AXPlease note that bincimapd will reject non-encrypted logins = by default=0AX(when not used with ssl); this behaviour can be modified via = a configuration=0AXsetting.=0AX=0AX****************************************= **********=0AEND-of-/usr/ports/mail/bincimap/pkg-message=0Aecho c - /usr/po= rts/mail/bincimap/files=0Amkdir -p /usr/ports/mail/bincimap/files > /dev/nu= ll 2>&1=0Aecho x - /usr/ports/mail/bincimap/files/patch-01=0Ased 's/^X//' >= /usr/ports/mail/bincimap/files/patch-01 << 'END-of-/usr/ports/mail/bincimap= /files/patch-01'=0AX--- conf/bincimap.conf Sat Feb 22 06:53:56 2003=0AX+++ = conf/bincimap.conf Mon Feb 24 02:59:54 2003=0AX@@ -91,7 +91,7 @@ Session {= =0AX =0AX //---------------------------------------------------------------= -------------=0AX SSL {=0AX- pem file =3D "/usr/share/ssl/certs/stunnel.= pem", /* private key and=0AX+ pem file =3D "/usr/local/etc/stunnel/mail.= pem", /* private key and=0AX = certificate=0AX = chain PEM file=0AX = name */=0AEND-of-/usr/ports/mail/bincimap/files/patch-01=0Aecho x - /usr/= ports/mail/bincimap/files/patch-02=0Ased 's/^X//' >/usr/ports/mail/bincimap= /files/patch-02 << 'END-of-/usr/ports/mail/bincimap/files/patch-02'=0AX--- = src/parsers/args/args.cc Sat Feb 22 08:23:28 2003=0AX+++ src/parsers/args/a= rgs.cc Mon Feb 24 16:05:01 2003=0AX@@ -47,6 +47,8 @@=0AX #ifdef HAVE_GETOPT= _LONG=0AX #define _GNU_SOURCE=0AX #include =0AX+#else=0AX+#includ= e =0AX #endif=0AX =0AX using namespace Binc::Util;=0AEND-of-/usr/= ports/mail/bincimap/files/patch-02=0Aecho x - /usr/ports/mail/bincimap/file= s/patch-03=0Ased 's/^X//' >/usr/ports/mail/bincimap/files/patch-03 << 'END-= of-/usr/ports/mail/bincimap/files/patch-03'=0AX--- service/run-ssl.in Sat F= eb 22 11:49:36 2003=0AX+++ service/run-ssl.in Tue Feb 25 05:11:34 2003=0AX@= @ -11,5 +11,5 @@ exec tcpserver -c 100 -u 0 -g 0 \=0AX --logtype=3Dmu= ltilog \=0AX --conf=3D@sysconfdir@/bincimap.conf --ssl \=0AX = @prefix@/bin/bincimap-auth-checkpassword \=0AX- /bin/checkpassword = \=0AX+ /usr/local/bin/checkpassword \=0AX @prefix@/bin/bincimap= -uidpwd=0AX--- service/run.in Sat Feb 22 11:49:36 2003=0AX+++ service/run.i= n Tue Feb 25 05:11:44 2003=0AX@@ -11,5 +11,5 @@ exec tcpserver -c 100 -u 0 = -g 0 \=0AX --logtype=3Dmultilog \=0AX --conf=3D@sysconfdir@/bin= cimap.conf \=0AX @prefix@/bin/bincimap-auth-checkpassword \=0AX- /bi= n/checkpassword \=0AX+ /usr/local/bin/checkpassword \=0AX @prefi= x@/bin/bincimap-uidpwd=0AEND-of-/usr/ports/mail/bincimap/files/patch-03=0Ae= xit=0A=0A --1yeeQ81UyVL57Vl7-- --rS8CxjVDS/+yyDmU Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+XCB4v34mfh2J8ZMRAjVaAJ43IOmVB9yAI/PlRjM3la9IsLlZRgCcD0gr r20mW9xCeBd8nitdPaGUWxU= =KfFx -----END PGP SIGNATURE----- --rS8CxjVDS/+yyDmU-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 19: 0:33 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 983B537B401 for ; Tue, 25 Feb 2003 19:00:30 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 486CF43FAF for ; Tue, 25 Feb 2003 19:00:29 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1Q30TNS095750 for ; Tue, 25 Feb 2003 19:00:29 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1Q30TwW095749; Tue, 25 Feb 2003 19:00:29 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B74D537B401 for ; Tue, 25 Feb 2003 18:52:35 -0800 (PST) Received: from ridge.aps.org (ridge.aps.org [149.28.1.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id D618043F75 for ; Tue, 25 Feb 2003 18:52:34 -0800 (PST) (envelope-from paul@aps.org) Received: from lugnut.aps.org (lugnut.aps.org [149.28.3.182]) by ridge.aps.org (8.9.3+Sun/8.9.3) with ESMTP id VAA20091; Tue, 25 Feb 2003 21:52:34 -0500 (EST) Received: from lugnut.aps.org (localhost [127.0.0.1]) by lugnut.aps.org (Postfix) with ESMTP id 07068135; Tue, 25 Feb 2003 21:52:34 -0500 (EST) Received: (from paul@localhost) by lugnut.aps.org (8.12.6/8.12.6/Submit) id h1Q2qXpn004536; Tue, 25 Feb 2003 21:52:33 -0500 (EST) Message-Id: <200302260252.h1Q2qXpn004536@lugnut.aps.org> Date: Tue, 25 Feb 2003 21:52:33 -0500 (EST) From: Paul Dlug Reply-To: Paul Dlug To: FreeBSD-gnats-submit@FreeBSD.org Cc: paul@nerdlabs.com X-Send-Pr-Version: 3.113 Subject: ports/48690: Update: net/nrpe to 1.8 plus minor fixes Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48690 >Category: ports >Synopsis: Update: net/nrpe to 1.8 plus minor fixes >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Feb 25 19:00:28 PST 2003 >Closed-Date: >Last-Modified: >Originator: Paul Dlug >Release: FreeBSD 5.0-RELEASE-p3 i386 >Organization: >Environment: System: FreeBSD lugnut.aps.org 5.0-RELEASE-p3 FreeBSD 5.0-RELEASE-p3 #1: Tue Feb 25 11:22:55 EST 2003 root@lugnut.aps.org:/usr/obj/usr/src/sys/LUGNUT i386 >Description: Updated the net/nrpe port to version 1.8 which contains minor bug fixes. Corrected incorrect paths to plugins in the sample configuration file. Installed the check_nrpe plugin (in case the installer wants to use this host as a client). >How-To-Repeat: >Fix: diff -ruN nrpe.bak/Makefile nrpe/Makefile --- nrpe.bak/Makefile Tue Feb 25 21:30:36 2003 +++ nrpe/Makefile Tue Feb 25 21:35:41 2003 @@ -6,7 +6,7 @@ # PORTNAME= nrpe -PORTVERSION= 1.7 +PORTVERSION= 1.8 PORTREVISION= 0 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} @@ -22,9 +22,11 @@ pre-install: @PKG_PREFIX="${PREFIX}" ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL ${SED} -i bak -e "s=/usr/local/bin/nrpe=${PREFIX}/sbin/nrpe=" ${WRKSRC}/init-script.freebsd + ${SED} -i bak -e "s=/usr/local/libexec=/usr/local/libexec/nagios=" ${WRKSRC}/nrpe.cfg do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/nrpe ${PREFIX}/sbin/nrpe + ${INSTALL_PROGRAM} ${WRKSRC}/src/check_nrpe ${PREFIX}/libexec/nagios/check_nrpe ${INSTALL_DATA} ${WRKSRC}/nrpe.cfg ${PREFIX}/etc/nrpe.cfg-sample ${INSTALL_SCRIPT} ${WRKSRC}/init-script.freebsd ${PREFIX}/etc/rc.d/nrpe.sh diff -ruN nrpe.bak/distinfo nrpe/distinfo --- nrpe.bak/distinfo Tue Feb 25 21:30:36 2003 +++ nrpe/distinfo Tue Feb 25 21:32:15 2003 @@ -1 +1 @@ -MD5 (nrpe-1.7.tar.gz) = f9462e9446ef1928e27a612ac5f87fdb +MD5 (nrpe-1.8.tar.gz) = b285e2838685508ab85395f480018373 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 21:20: 5 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E51337B405 for ; Tue, 25 Feb 2003 21:20:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 66E2A43FCB for ; Tue, 25 Feb 2003 21:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1Q5K2NS036746 for ; Tue, 25 Feb 2003 21:20:02 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1Q5K2Oc036745; Tue, 25 Feb 2003 21:20:02 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E6DD537B401 for ; Tue, 25 Feb 2003 21:12:23 -0800 (PST) Received: from mango.attlabs.att.com (mpfg.attlabs.net [12.106.35.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FFFF43F75 for ; Tue, 25 Feb 2003 21:12:23 -0800 (PST) (envelope-from fenner@research.att.com) Received: (from fenner@localhost) by mango.attlabs.att.com (8.11.3/8.11.3) id h1Q5CM596193; Tue, 25 Feb 2003 21:12:22 -0800 (PST) (envelope-from fenner) Message-Id: <200302260512.h1Q5CM596193@mango.attlabs.att.com> Date: Tue, 25 Feb 2003 21:12:22 -0800 (PST) From: Bill Fenner Reply-To: fenner@research.att.com To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48692: Installing gnupg port breaks existing net/openldap installation Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48692 >Category: ports >Synopsis: Installing gnupg port breaks existing net/openldap installation >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 25 21:20:01 PST 2003 >Closed-Date: >Last-Modified: >Originator: >Release: FreeBSD 4.5-STABLE i386 >Organization: AT&T Labs -- Research >Environment: System: FreeBSD mango.attlabs.att.com 4.5-STABLE FreeBSD 4.5-STABLE #12: Wed Jan 22 15:16:49 PST 2003 root@mango.attlabs.att.com:/usr/src/sys/compile/MANGO i386 >Description: gnupg's test for whether or not openldap2 is installed finds the library installed by openldap. It then depends on openldap2, so the port builds and installs openldap2, wiping out the existing openldap installation. >How-To-Repeat: Install openldap. Then install gnupg, and wonder why it is buildling openldap2, and wonder if openldap2 will nuke your openldap. Wait for the port to finish building, and discover that your phone number lookup script broke. >Fix: One possibility, check if the versioned library exists instead of just libldap.so, since the openldap v1 port also installs libldap.so . >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 22:50:13 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF75A37B401 for ; Tue, 25 Feb 2003 22:50:10 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB75443FAF for ; Tue, 25 Feb 2003 22:50:09 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1Q6o9NS059484 for ; Tue, 25 Feb 2003 22:50:09 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1Q6o9PI059483; Tue, 25 Feb 2003 22:50:09 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B0D9C37B401 for ; Tue, 25 Feb 2003 22:41:34 -0800 (PST) Received: from lautre.net (estelle.lautre.net [80.67.164.8]) by mx1.FreeBSD.org (Postfix) with SMTP id 7328043FCB for ; Tue, 25 Feb 2003 22:41:33 -0800 (PST) (envelope-from thierry@pompo.net) Received: (qmail 6939 invoked by alias); 26 Feb 2003 06:41:31 -0000 Received: from unknown (HELO graf.pompo.net) (62.147.51.82) by estelle.lautre.net with SMTP; 26 Feb 2003 06:41:31 -0000 Received: by graf.pompo.net (Postfix, from userid 1001) id 4D5D676BC; Wed, 26 Feb 2003 07:40:19 +0100 (CET) Message-Id: <20030226064019.4D5D676BC@graf.pompo.net> Date: Wed, 26 Feb 2003 07:40:19 +0100 (CET) From: Thierry Thomas Reply-To: Thierry Thomas To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48693: www/tidy-devel: upgrading to 030225. Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48693 >Category: ports >Synopsis: www/tidy-devel: upgrading to 030225. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Feb 25 22:50:09 PST 2003 >Closed-Date: >Last-Modified: >Originator: Thierry Thomas >Release: FreeBSD 4.7-STABLE i386 >Organization: Kabbale Eros >Environment: System: FreeBSD graf.pompo.net 4.7-STABLE FreeBSD 4.7-STABLE #0: Sun Feb 16 20:58:08 CET 2003 thierry@graf.pompo.net:/usr/obj/mntsrc/src/sys/GRAF020727 i386 >Description: Upgrading tidy-devel to 030225. >How-To-Repeat: N/A. >Fix: Remark: files/patch-build_gnuauto_src_Makefile.am has been removed (now included in the main code). Please apply the following patch. diff -urN www/tidy-devel.orig/Makefile www/tidy-devel/Makefile --- www/tidy-devel.orig/Makefile Mon Feb 24 19:07:05 2003 +++ www/tidy-devel/Makefile Tue Feb 25 18:28:22 2003 @@ -6,7 +6,7 @@ # PORTNAME?= tidy -PORTVERSION= 030220 +PORTVERSION= 030225 CATEGORIES= www MASTER_SITES= http://tidy.sourceforge.net/src/%SUBDIR%/ \ http://tidy.sourceforge.net/docs/:docs diff -urN www/tidy-devel.orig/distinfo www/tidy-devel/distinfo --- www/tidy-devel.orig/distinfo Mon Feb 24 19:07:05 2003 +++ www/tidy-devel/distinfo Tue Feb 25 18:30:01 2003 @@ -1,2 +1,2 @@ -MD5 (tidy_src_030220.tgz) = 1386d1a54e4429d4ddbb5a8bb01b5bc7 +MD5 (tidy_src_030225.tgz) = 0e6f3393c795759a82b39e3dd1261c4c MD5 (tidy_docs_030216.tgz) = b832e6a78836bf31b3eadca3d5301106 diff -urN www/tidy-devel.orig/files/patch-build_gnuauto_src_Makefile.am www/tidy-devel/files/patch-build_gnuauto_src_Makefile.am --- www/tidy-devel.orig/files/patch-build_gnuauto_src_Makefile.am Thu Feb 20 23:13:50 2003 +++ www/tidy-devel/files/patch-build_gnuauto_src_Makefile.am Thu Jan 1 01:00:00 1970 @@ -1,11 +0,0 @@ ---- build/gnuauto/src/Makefile.am.orig Sun Feb 16 20:33:04 2003 -+++ build/gnuauto/src/Makefile.am Thu Feb 20 23:13:11 2003 -@@ -68,7 +68,7 @@ - tidylib.c - - libtidy_la_LDFLAGS = \ -- -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_LITE_AGE) \ -+ -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \ - -release $(LT_RELEASE) -no-undefined -export-dynamic - - HFILES = \ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Tue Feb 25 23: 0:31 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96CF037B407 for ; Tue, 25 Feb 2003 23:00:27 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F5B943F85 for ; Tue, 25 Feb 2003 23:00:26 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1Q70QNS061646 for ; Tue, 25 Feb 2003 23:00:26 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1Q70Q6U061645; Tue, 25 Feb 2003 23:00:26 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A70AC37B401 for ; Tue, 25 Feb 2003 22:58:57 -0800 (PST) Received: from quenix.dyndns.org (modemcable246.166-130-66.que.mc.videotron.ca [66.130.166.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id E830343F3F for ; Tue, 25 Feb 2003 22:58:56 -0800 (PST) (envelope-from serge@quenix.dyndns.org) Received: from serge by quenix.dyndns.org with local (Exim 4.10) id 18nvX9-000Evj-00; Wed, 26 Feb 2003 01:59:15 -0500 Message-Id: Date: Wed, 26 Feb 2003 01:59:15 -0500 From: Serge Gagnon Reply-To: Serge Gagnon To: FreeBSD-gnats-submit@FreeBSD.org Cc: gagnon__s@videotron.ca X-Send-Pr-Version: 3.113 Subject: ports/48694: New port: Plan9 compatibility libraries Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48694 >Category: ports >Synopsis: New port: Plan9 compatibility libraries >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Feb 25 23:00:25 PST 2003 >Closed-Date: >Last-Modified: >Originator: Serge Gagnon >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: FreeBSD quenix.dyndns.org 4.7-STABLE FreeBSD 4.7-STABLE #0: Mon Feb 24 15:31:07 EST 2003 serge@quenix.dyndns.org:/usr/obj/usr/src/sys/OCEAN i386 >Description: This is 9libs, a package of Plan 9 compatibility libraries derived from the X11 version of Rob Pike's editor, sam. This release differs from the Bell Labs release. >How-To-Repeat: >Fix: --- 9libs.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # 9libs # 9libs/Makefile # 9libs/distinfo # 9libs/pkg-descr # 9libs/pkg-plist # echo c - 9libs mkdir -p 9libs > /dev/null 2>&1 echo x - 9libs/Makefile sed 's/^X//' >9libs/Makefile << 'END-of-9libs/Makefile' X# New ports collection makefile for: 9libs X# Date created: 15 February 2003 X# Whom: gagnon__s@videotron.ca X# X# $FreeBSD$ X# X XPORTNAME= 9libs XPORTVERSION= 1.0 XCATEGORIES= x11-toolkits plan9 XMASTER_SITES= ftp://ftp.cs.yorku.ca/pub/wily/src/ X XMAINTAINER= gagnon__s@videotron.ca XCOMMENT= Plan9 compatibility libraries X XUSE_XLIB= YES XGNU_CONFIGURE= YES X XMAN3= add.3 balloc.3 bitblt.3 cachechars.3 event.3 frame.3 graphics.3 rgbpix.3 rune.3 XMAN4= font.4 keyboard.4 utf.4 XMAN6= bitmap.6 regexp.6 X X.include END-of-9libs/Makefile echo x - 9libs/distinfo sed 's/^X//' >9libs/distinfo << 'END-of-9libs/distinfo' XMD5 (9libs-1.0.tar.gz) = e1402cfdfed4a45bf7dcb4789c5063cc END-of-9libs/distinfo echo x - 9libs/pkg-descr sed 's/^X//' >9libs/pkg-descr << 'END-of-9libs/pkg-descr' XThis is 9libs, a package of Plan 9 compatibility libraries derived from Xthe X11 version of Rob Pike's editor, sam. XThis release differs from the Bell Labs release. END-of-9libs/pkg-descr echo x - 9libs/pkg-plist sed 's/^X//' >9libs/pkg-plist << 'END-of-9libs/pkg-plist' Xinclude/frame.h Xinclude/libc.h Xinclude/libg.h Xinclude/regexp.h Xinclude/u.h Xlib/9libs/include/conf9libs.h Xlib/libXg.a Xlib/libXg.la Xlib/libframe.a Xlib/libframe.la Xlib/libplan9c.a Xlib/libplan9c.la X@dirrm lib/9libs/include X@dirrm lib/9libs END-of-9libs/pkg-plist exit --- 9libs.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 0:30:12 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B3B8C37B406 for ; Wed, 26 Feb 2003 00:30:09 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED75D43FDF for ; Wed, 26 Feb 2003 00:30:07 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1Q8U7NS088959 for ; Wed, 26 Feb 2003 00:30:07 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1Q8U7kR088958; Wed, 26 Feb 2003 00:30:07 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 37B2037B405 for ; Wed, 26 Feb 2003 00:20:50 -0800 (PST) Received: from athena.ginganet.org (tk0008-202x210x243x26.ap-TK.usen.ad.jp [202.210.243.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D81643FE0 for ; Wed, 26 Feb 2003 00:20:46 -0800 (PST) (envelope-from ginga@athena.ginganet.org) Received: by athena.ginganet.org (Postfix, from userid 5003) id 2D4B0D0CC; Wed, 26 Feb 2003 17:20:45 +0900 (JST) Message-Id: <20030226082045.2D4B0D0CC@athena.ginganet.org> Date: Wed, 26 Feb 2003 17:20:45 +0900 (JST) From: Kawaguti Ginga Reply-To: Kawaguti Ginga To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48696: maintainer update for ports/audio/afsp Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48696 >Category: ports >Synopsis: maintainer update for ports/audio/afsp >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Feb 26 00:30:07 PST 2003 >Closed-Date: >Last-Modified: >Originator: Kawaguti Ginga >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: FreeBSD 4.7-STABLE #9: Sat Feb 8 15:35:21 JST 2003 i386 >Description: ports update for original source's version up. >How-To-Repeat: patch below. >Fix: diff -ur /usr/ports/audio/afsp/Makefile ./Makefile --- /usr/ports/audio/afsp/Makefile Tue Feb 25 10:54:40 2003 +++ ./Makefile Wed Feb 26 17:19:48 2003 @@ -6,10 +6,10 @@ # PORTNAME= afsp -PORTVERSION= 6.6a +PORTVERSION= 6.7b CATEGORIES= audio MASTER_SITES= ftp://ftp.tsp.ece.mcgill.ca/pub/AFsp/ -DISTNAME= AFsp-v6r6a +DISTNAME= AFsp-v6r7b MAINTAINER= ginga-freebsd@ginganet.org COMMENT= Audio file conversion utilities and library diff -ur /usr/ports/audio/afsp/distinfo ./distinfo --- /usr/ports/audio/afsp/distinfo Mon Nov 18 00:55:21 2002 +++ ./distinfo Sat Feb 8 11:05:46 2003 @@ -1 +1 @@ -MD5 (AFsp-v6r6a.tar.gz) = 4aafdb0d1153e3f58007c491d14d059a +MD5 (AFsp-v6r7b.tar.gz) = 84ebac95ef3ec2018d81ff6e3cb5a05b diff -ur /usr/ports/audio/afsp/pkg-descr ./pkg-descr --- /usr/ports/audio/afsp/pkg-descr Mon Dec 3 11:23:39 2001 +++ ./pkg-descr Wed Feb 26 17:14:17 2003 @@ -18,6 +18,6 @@ The following file formats are supported for writing. - Headerless, AU, WAVE, AIFF-C -WWW: http://www.TSP.ECE.McGill.CA/Docs/Software/AFsp/AFsp.html +WWW: http://www.TSP.ECE.McGill.CA/MMSP/Documents/Software/index.html -- Kawaguti Ginga >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 0:44:35 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EFCDB37B401; Wed, 26 Feb 2003 00:44:34 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91C5743FBD; Wed, 26 Feb 2003 00:44:34 -0800 (PST) (envelope-from dougb@FreeBSD.org) Received: from freefall.freebsd.org (dougb@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1Q8iYNS093162; Wed, 26 Feb 2003 00:44:34 -0800 (PST) (envelope-from dougb@freefall.freebsd.org) Received: (from dougb@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1Q8iYhx093158; Wed, 26 Feb 2003 00:44:34 -0800 (PST) Date: Wed, 26 Feb 2003 00:44:34 -0800 (PST) From: Doug Barton Message-Id: <200302260844.h1Q8iYhx093158@freefall.freebsd.org> To: dougb@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wjv@FreeBSD.org Subject: Re: ports/48514: Update phpbb to 2.0.4 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update phpbb to 2.0.4 Responsible-Changed-From-To: freebsd-ports-bugs->wjv Responsible-Changed-By: dougb Responsible-Changed-When: Wed Feb 26 00:44:14 PST 2003 Responsible-Changed-Why: Over to MAINTAINER http://www.freebsd.org/cgi/query-pr.cgi?pr=48514 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 0:45:21 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A41537B401; Wed, 26 Feb 2003 00:45:20 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A12D43F93; Wed, 26 Feb 2003 00:45:20 -0800 (PST) (envelope-from foxfair@FreeBSD.org) Received: from freefall.freebsd.org (foxfair@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1Q8jKNS093192; Wed, 26 Feb 2003 00:45:20 -0800 (PST) (envelope-from foxfair@freefall.freebsd.org) Received: (from foxfair@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1Q8jJa1093188; Wed, 26 Feb 2003 00:45:19 -0800 (PST) Date: Wed, 26 Feb 2003 00:45:19 -0800 (PST) From: Foxfair Hu Message-Id: <200302260845.h1Q8jJa1093188@freefall.freebsd.org> To: cravey@gotbrains.org, foxfair@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/47828: ports/security/acid upgrade to 0.9.6b23 with deinstall fix Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: ports/security/acid upgrade to 0.9.6b23 with deinstall fix State-Changed-From-To: open->closed State-Changed-By: foxfair State-Changed-When: Wed Feb 26 00:42:32 PST 2003 State-Changed-Why: I'm going to close this PR becuase it has been fixed (by me). Feel free to drop me an email if you have further problem/suggestion. Thanks! -Foxfair. http://www.freebsd.org/cgi/query-pr.cgi?pr=47828 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 0:50: 5 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D637037B401; Wed, 26 Feb 2003 00:50:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 776B543FBD; Wed, 26 Feb 2003 00:50:04 -0800 (PST) (envelope-from foxfair@FreeBSD.org) Received: from freefall.freebsd.org (foxfair@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1Q8o4NS093303; Wed, 26 Feb 2003 00:50:04 -0800 (PST) (envelope-from foxfair@freefall.freebsd.org) Received: (from foxfair@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1Q8o3VK093299; Wed, 26 Feb 2003 00:50:03 -0800 (PST) Date: Wed, 26 Feb 2003 00:50:03 -0800 (PST) From: Foxfair Hu Message-Id: <200302260850.h1Q8o3VK093299@freefall.freebsd.org> To: king@main.v2project.com, foxfair@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/47277: Port Update: security/acid to 0.9.6b23 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Port Update: security/acid to 0.9.6b23 State-Changed-From-To: open->closed State-Changed-By: foxfair State-Changed-When: Wed Feb 26 00:46:31 PST 2003 State-Changed-Why: Close this after PR 47828. Upgrade work: Done. -Foxfair. http://www.freebsd.org/cgi/query-pr.cgi?pr=47277 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 1: 8:10 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B258837B401; Wed, 26 Feb 2003 01:08:09 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5476143F75; Wed, 26 Feb 2003 01:08:09 -0800 (PST) (envelope-from foxfair@FreeBSD.org) Received: from freefall.freebsd.org (foxfair@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1Q989NS001383; Wed, 26 Feb 2003 01:08:09 -0800 (PST) (envelope-from foxfair@freefall.freebsd.org) Received: (from foxfair@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1Q988od001379; Wed, 26 Feb 2003 01:08:08 -0800 (PST) Date: Wed, 26 Feb 2003 01:08:08 -0800 (PST) From: Foxfair Hu Message-Id: <200302260908.h1Q988od001379@freefall.freebsd.org> To: yonatan@xpert.com, foxfair@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/41763: [walkthrough] fixing security/acid port Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [walkthrough] fixing security/acid port State-Changed-From-To: open->closed State-Changed-By: foxfair State-Changed-When: Wed Feb 26 01:07:33 PST 2003 State-Changed-Why: sync ports tree to get acid work. http://www.freebsd.org/cgi/query-pr.cgi?pr=41763 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 1: 8:38 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B47A37B401; Wed, 26 Feb 2003 01:08:37 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A95E43F85; Wed, 26 Feb 2003 01:08:37 -0800 (PST) (envelope-from foxfair@FreeBSD.org) Received: from freefall.freebsd.org (foxfair@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1Q98aNS001423; Wed, 26 Feb 2003 01:08:36 -0800 (PST) (envelope-from foxfair@freefall.freebsd.org) Received: (from foxfair@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1Q98afj001419; Wed, 26 Feb 2003 01:08:36 -0800 (PST) Date: Wed, 26 Feb 2003 01:08:36 -0800 (PST) From: Foxfair Hu Message-Id: <200302260908.h1Q98afj001419@freefall.freebsd.org> To: eivind@aminor.no, foxfair@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/41577: port security/acid won't see apache2+mod_php4 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: port security/acid won't see apache2+mod_php4 State-Changed-From-To: open->closed State-Changed-By: foxfair State-Changed-When: Wed Feb 26 01:07:33 PST 2003 State-Changed-Why: sync ports tree to get acid work. http://www.freebsd.org/cgi/query-pr.cgi?pr=41763 State-Changed-From-To: open->closed State-Changed-By: foxfair State-Changed-When: Wed Feb 26 01:07:33 PST 2003 State-Changed-Why: Sync ports tree to get acid work. http://www.freebsd.org/cgi/query-pr.cgi?pr=41577 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 1:30:16 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9F77C37B401 for ; Wed, 26 Feb 2003 01:30:11 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 399BA43F85 for ; Wed, 26 Feb 2003 01:30:10 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1Q9UANS005877 for ; Wed, 26 Feb 2003 01:30:10 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1Q9UAql005876; Wed, 26 Feb 2003 01:30:10 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E96F537B401 for ; Wed, 26 Feb 2003 01:29:02 -0800 (PST) Received: from shiva.bouglou.net (shiva.bouglou.net [62.4.22.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0ADA743FD7 for ; Wed, 26 Feb 2003 01:29:02 -0800 (PST) (envelope-from ecu@shiva.bouglou.net) Received: by shiva.bouglou.net (Postfix, from userid 1000) id 9ADB315237; Wed, 26 Feb 2003 10:29:22 +0100 (CET) Message-Id: <20030226092922.9ADB315237@shiva.bouglou.net> Date: Wed, 26 Feb 2003 10:29:22 +0100 (CET) From: Nicolas Jombart Reply-To: Nicolas Jombart To: FreeBSD-gnats-submit@FreeBSD.org Cc: ecu@ipv42.net X-Send-Pr-Version: 3.113 Subject: ports/48697: New port: sysutils/sec Simple event correlator Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48697 >Category: ports >Synopsis: New port: sysutils/sec Simple event correlator >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Feb 26 01:30:09 PST 2003 >Closed-Date: >Last-Modified: >Originator: Nicolas Jombart >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: FreeBSD shiva.bouglou.net 4.7-STABLE FreeBSD 4.7-STABLE #15: Sat Jan 4 18:49:56 CET 2003 ecu@shiva.bouglou.net:/usr/obj/usr/src/sys/SHIVA i386 >Description: New port: sysutils/sec Note that the sec.pl script becomes just "sec". >How-To-Repeat: >Fix: --- sec.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # sec/ # sec/Makefile # sec/pkg-descr # sec/pkg-plist # sec/distinfo # echo c - sec/ mkdir -p sec/ > /dev/null 2>&1 echo x - sec/Makefile sed 's/^X//' >sec/Makefile << 'END-of-sec/Makefile' X# New ports collection Makefile for: sec X# Date created: 25, February 2003 X# Whom: Nicolas Jombart X# X# $FreeBSD$ X# X XPORTNAME= sec XPORTVERSION= 2.1.7 XCATEGORIES= sysutils XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= sourceforge/simple-evcorr X XMAINTAINER= ecu@ipv42.net XCOMMENT= Simple event (logs) correlator X XUSE_PERL5= YES XNO_BUILD= YES X XMAN8= sec.8 X Xdo-install: X @${INSTALL_SCRIPT} ${WRKSRC}/sec.pl ${PREFIX}/bin/sec X @${INSTALL_MAN} ${WRKSRC}/sec.pl.man ${PREFIX}/man/man8/sec.8 X.if !defined(NOPORTDOCS) X @${MKDIR} ${DOCSDIR} X.for f in README convert.pl itostream.c X @${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} X.endfor X.endif X X.include END-of-sec/Makefile echo x - sec/pkg-descr sed 's/^X//' >sec/pkg-descr << 'END-of-sec/pkg-descr' XSEC is an event correlation tool that was designed to fill the gap between Xcommercial event correlation systems and homegrown solutions that usually Xcomprise of a few simple shell scripts. XSEC is highly customisable to accept events from many sources and build Xa powerful correlation engine. X XWWW: http://simple-evcorr.sourceforge.net/ X X-- Nicolas Jombart END-of-sec/pkg-descr echo x - sec/pkg-plist sed 's/^X//' >sec/pkg-plist << 'END-of-sec/pkg-plist' Xbin/sec X%%PORTDOCS%%%%DOCSDIR%%/README X%%PORTDOCS%%%%DOCSDIR%%/convert.pl X%%PORTDOCS%%%%DOCSDIR%%/itostream.c X%%PORTDOCS%%@dirrm %%DOCSDIR%% END-of-sec/pkg-plist echo x - sec/distinfo sed 's/^X//' >sec/distinfo << 'END-of-sec/distinfo' XMD5 (sec-2.1.7.tar.gz) = 012b25604b5b1c5bb39cab3bb4a9e7e9 END-of-sec/distinfo exit --- sec.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 1:30:21 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A72F037B405 for ; Wed, 26 Feb 2003 01:30:12 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 325B343FA3 for ; Wed, 26 Feb 2003 01:30:11 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1Q9UBNS005891 for ; Wed, 26 Feb 2003 01:30:11 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1Q9UBmf005890; Wed, 26 Feb 2003 01:30:11 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3214837B401 for ; Wed, 26 Feb 2003 01:30:00 -0800 (PST) Received: from boggy.acest.tutrp.tut.ac.jp (boggy.acest.tutrp.tut.ac.jp [133.15.67.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0046643F3F for ; Wed, 26 Feb 2003 01:29:59 -0800 (PST) (envelope-from nakaji@boggy.acest.tutrp.tut.ac.jp) Received: from boggy.acest.tutrp.tut.ac.jp (localhost [IPv6:::1]) by boggy.acest.tutrp.tut.ac.jp (8.12.6/8.12.6) with ESMTP id h1Q9Tqtt090942 for ; Wed, 26 Feb 2003 18:29:53 +0900 (JST) (envelope-from nakaji@boggy.acest.tutrp.tut.ac.jp) Received: (from nakaji@localhost) by boggy.acest.tutrp.tut.ac.jp (8.12.6/8.12.6/Submit) id h1Q9Tckg090941; Wed, 26 Feb 2003 18:29:38 +0900 (JST) Message-Id: <200302260929.h1Q9Tckg090941@boggy.acest.tutrp.tut.ac.jp> Date: Wed, 26 Feb 2003 18:29:38 +0900 (JST) From: NAKAJI Hiroyuki Reply-To: NAKAJI Hiroyuki To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48698: japanese/samba cannot compile on 4-stable and other fixes Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48698 >Category: ports >Synopsis: japanese/samba cannot compile on 4-stable and other fixes >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Feb 26 01:30:10 PST 2003 >Closed-Date: >Last-Modified: >Originator: NAKAJI Hiroyuki >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD boggy.acest.tutrp.tut.ac.jp 5.0-CURRENT FreeBSD 5.0-CURRENT #56: Sat Feb 8 14:14:47 JST 2003 root@boggy.acest.tutrp.tut.ac.jp:/usr/obj/usr/src/sys/NAKAJI i386 >Description: Build problem on 4.8-PRERELEASE was reported in FreeBSD-users-jp #73581. http://home.jp.freebsd.org/cgi-bin/showmail/FreeBSD-users-jp/73581 And a solution is provided in ports-jp #13562 http://home.jp.freebsd.org/cgi-bin/showmail/ports-jp/13562 To solve this problem, files/patch-nsswitch:pam_winbind.h is added. Also, in sugj-tech ML of Samba-ja team, some other problems in japanese/samba are indicated by Shirai Takashi that some files/patch-* are unnecessary for samba-2.2.7a-ja-1.0. Files/patch-ak and files/patch-includes.h are to be removed. Note I just checked compile, install and deinstall. For example, it is not checked if winbind can work on FreeBSD or not. >How-To-Repeat: >Fix: Here's a diff. diff -urN -x CVS /usr/ports/japanese/samba/Makefile ./Makefile --- /usr/ports/japanese/samba/Makefile Tue Feb 25 00:15:06 2003 +++ ./Makefile Wed Feb 26 18:25:47 2003 @@ -7,6 +7,7 @@ PORTNAME= samba PORTVERSION= ${SAMBA_VERSION}.j${SAMBA_JA_VERSION} +PORTREVISION= 1 CATEGORIES= japanese net MASTER_SITES= ftp://ftp.samba.gr.jp/pub/samba-jp/%SUBDIR%/ \ ftp://ftp.iij.ad.jp/pub/SAMBA/samba-jp/%SUBDIR%/ \ diff -urN -x CVS /usr/ports/japanese/samba/files/patch-ak ./files/patch-ak --- /usr/ports/japanese/samba/files/patch-ak Thu Mar 28 01:06:37 2002 +++ ./files/patch-ak Thu Jan 1 09:00:00 1970 @@ -1,20 +0,0 @@ ---- script/installswat.sh.orig Thu Jan 31 16:56:23 2002 -+++ script/installswat.sh Wed Feb 20 15:36:18 2002 -@@ -10,7 +10,7 @@ - - for d in $SWATDIR $SWATDIR/help $SWATDIR/images $SWATDIR/include; do - if [ ! -d $d ]; then -- mkdir $d -+ mkdir -p $d - if [ ! -d $d ]; then - echo Failed to make directory $d, does $USER have privileges? - exit 1 -@@ -69,7 +69,7 @@ - - for d in $BOOKDIR $BOOKDIR/figs $BOOKDIR/gifs; do - if [ ! -d $d ]; then -- mkdir $d -+ mkdir -p $d - if [ ! -d $d ]; then - echo Failed to make directory $d, does $USER have privileges? - exit 1 diff -urN -x CVS /usr/ports/japanese/samba/files/patch-ba ./files/patch-ba --- /usr/ports/japanese/samba/files/patch-ba Tue Feb 25 00:15:06 2003 +++ ./files/patch-ba Wed Feb 26 17:33:29 2003 @@ -1,40 +1,15 @@ ---- configure.in.orig Mon Dec 16 12:00:04 2002 -+++ configure.in Mon Dec 16 22:56:30 2002 -@@ -510,9 +510,23 @@ - ############################################ - # we need dlopen/dlclose/dlsym/dlerror for PAM, the password database plugins and the new VFS code - AC_CHECK_FUNCS(dlopen) -+case "$host_os" in -+ *bsd*) -+ AC_CHECK_LIB(c, dlopen, [LIBS="$LIBS -lc"; -+ AC_DEFINE(HAVE_DLOPEN)]) -+ ;; -+esac - if test x"$ac_cv_func_dlopen" = x"no"; then -- AC_CHECK_LIB(dl, dlopen, [LIBS="$LIBS -ldl"; -- AC_DEFINE(HAVE_DLOPEN)]) -+ case "$host_os" in -+ *bsd*) -+ AC_CHECK_LIB(c, dlopen, [LIBS="$LIBS -lc"; -+ AC_DEFINE(HAVE_DLOPEN)]) -+ ;; -+ *) -+ AC_CHECK_LIB(dl, dlopen, [LIBS="$LIBS -ldl"; -+ AC_DEFINE(HAVE_DLOPEN)]) -+ ;; -+ esac - fi - # dlopen/dlclose/dlsym/dlerror will be checked again later and defines will be set then +--- configure.in.orig Wed Feb 26 17:32:32 2003 ++++ configure.in Wed Feb 26 17:33:13 2003 +@@ -170,7 +170,7 @@ + AC_SUBST(INSTALLCLIENTLIB) -@@ -972,6 +986,7 @@ - *osf*) AC_DEFINE(OSF1) - BLDSHARED="true" - LDSHFLAGS="-shared" -+ DYNEXP="-Wl,--export-dynamic" - SONAMEFLAG="-Wl,-soname," - PICFLAG="-fPIC" - AC_DEFINE(STAT_ST_BLOCKSIZE,512) -@@ -1981,7 +1996,7 @@ + # compile with optimization and without debugging by default +-CFLAGS="-O ${CFLAGS}" ++CFLAGS="${CFLAGS}" + + AC_ARG_ENABLE(debug, + [ --enable-debug Turn on compiler debugging information (default=no)], +@@ -1981,7 +1981,7 @@ yes) AC_MSG_RESULT(yes) AC_DEFINE(KRB5_AUTH) diff -urN -x CVS /usr/ports/japanese/samba/files/patch-includes.h ./files/patch-includes.h --- /usr/ports/japanese/samba/files/patch-includes.h Tue Feb 25 00:15:06 2003 +++ ./files/patch-includes.h Thu Jan 1 09:00:00 1970 @@ -1,13 +0,0 @@ ---- include/includes.h.orig Tue Dec 10 19:50:18 2002 -+++ include/includes.h Tue Dec 10 19:52:33 2002 -@@ -808,8 +808,10 @@ - #endif - - /* this guess needs to be improved (tridge) */ -+#ifndef FREEBSD - #if (defined(STAT_STATVFS) || defined(STAT_STATVFS64)) && !defined(SYSV) - #define SYSV 1 -+#endif - #endif - - #ifndef DEFAULT_PRINTING diff -urN -x CVS /usr/ports/japanese/samba/files/patch-nsswitch:pam_winbind.h ./files/patch-nsswitch:pam_winbind.h --- /usr/ports/japanese/samba/files/patch-nsswitch:pam_winbind.h Thu Jan 1 09:00:00 1970 +++ ./files/patch-nsswitch:pam_winbind.h Wed Feb 26 14:28:44 2003 @@ -0,0 +1,12 @@ +--- nsswitch/pam_winbind.h.orig Mon Feb 10 17:21:48 2003 ++++ nsswitch/pam_winbind.h Wed Feb 26 14:28:24 2003 +@@ -31,7 +31,9 @@ + #define PAM_EXTERN extern + #include + ++#ifndef PAM_AUTHTOK_RECOVER_ERR + #define PAM_AUTHTOK_RECOVER_ERR PAM_AUTHTOK_RECOVERY_ERR ++#endif + #endif + + #ifdef HAVE_SECURITY_PAM_MODULES_H >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 2: 0:34 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9AA0037B405 for ; Wed, 26 Feb 2003 02:00:29 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9381043FDD for ; Wed, 26 Feb 2003 02:00:28 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QA0SNS012294 for ; Wed, 26 Feb 2003 02:00:28 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QA0Sfq012293; Wed, 26 Feb 2003 02:00:28 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5162237B401 for ; Wed, 26 Feb 2003 01:57:22 -0800 (PST) Received: from mail2.itxmarket.com (fw.itxmarket.com [213.11.40.109]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3130343FA3 for ; Wed, 26 Feb 2003 01:57:21 -0800 (PST) (envelope-from root@icommerce-france.com) Received: from icommerce-france.com (extranet.itxmarket.com [192.168.2.24]) by mail2.itxmarket.com (Postfix) with ESMTP id 6D16337CB3 for ; Wed, 26 Feb 2003 10:57:19 +0100 (CET) Received: by icommerce-france.com (Postfix, from userid 0) id 0CD2014A24; Wed, 26 Feb 2003 10:57:19 +0100 (CET) Message-Id: <20030226095719.0CD2014A24@icommerce-france.com> Date: Wed, 26 Feb 2003 10:57:19 +0100 (CET) From: "Michael L.Hostbaek" Reply-To: "Michael L.Hostbaek" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48700: Update port: [Maintainer Update]: mail/gubby Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48700 >Category: ports >Synopsis: Update port: [Maintainer Update]: mail/gubby >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Feb 26 02:00:28 PST 2003 >Closed-Date: >Last-Modified: >Originator: Michael L. Hostbaek >Release: FreeBSD 4.7-STABLE i386 >Organization: FreeBSDCluster.org >Environment: System: FreeBSD extranet.itxmarket.com 4.7-STABLE FreeBSD 4.7-STABLE #0: Fri Oct 11 17:00:45 CEST 2002 root@extranet.itxmarket.com:/usr/obj/usr/src/sys/EXTRANET1 i386 >Description: Update to latest release. Add man page. >How-To-Repeat: >Fix: diff -u -ruN gubby.bak/Makefile gubby/Makefile --- gubby.bak/Makefile Wed Feb 26 10:35:51 2003 +++ gubby/Makefile Wed Feb 26 10:53:49 2003 @@ -7,13 +7,17 @@ # PORTNAME= gubby -PORTVERSION= 0.3.2 +PORTVERSION= 0.4.2 CATEGORIES= mail -MASTER_SITES= http://sublevel3.org/~csl/gubby/dist/ +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} +DISTNAME= ${PORTNAME}-${PORTVERSION}-src MAINTAINER= mich@freebsdcluster.org COMMENT= A program showing where new mail has been placed +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} + LDFLAGS+= -lncurses -ltermcap CFLAGS+= -felide-constructors -fno-default-inline @@ -23,9 +27,12 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/gubby ${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/doc/${MAN1} ${PREFIX}/man/man1 + .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.TXT ${DOCSDIR}/README .endif +MAN1= gubby.1 .include diff -u -ruN gubby.bak/distinfo gubby/distinfo --- gubby.bak/distinfo Wed Feb 26 10:35:51 2003 +++ gubby/distinfo Wed Feb 26 10:44:58 2003 @@ -1 +1 @@ -MD5 (gubby-0.3.2.tar.gz) = 14e5261531f8bb9142e037ce10cd2d0a +MD5 (gubby-0.4.2-src.tar.gz) = 9195bd369c46be749de1cb039309ee60 diff -u -ruN gubby.bak/files/patch-aa gubby/files/patch-aa --- gubby.bak/files/patch-aa Wed Feb 26 10:35:50 2003 +++ gubby/files/patch-aa Thu Jan 1 01:00:00 1970 @@ -1,18 +0,0 @@ ---- src/gubby.cpp.orig Tue Feb 4 16:16:09 2003 -+++ src/gubby.cpp Tue Feb 4 16:15:32 2003 -@@ -49,13 +49,13 @@ - char buf[1024]; - - if ( f != 0 ) -- while ( !feof(f) ) { -+ while ( !feof(f.fptr()) ) { - - buf[0] = 0; - char* s = &buf[0]; - const char* p = find; - -- fgets(s, sizeof buf / sizeof(char), f); -+ fgets(s, sizeof buf / sizeof(char), f.fptr()); - - // search for matched string - while ( *p++ == *s++ ); diff -u -ruN gubby.bak/files/patch-ab gubby/files/patch-ab --- gubby.bak/files/patch-ab Wed Feb 26 10:35:51 2003 +++ gubby/files/patch-ab Thu Jan 1 01:00:00 1970 @@ -1,13 +0,0 @@ ---- include/file_ptr.h.orig Mon Feb 3 09:38:16 2003 -+++ include/file_ptr.h Tue Feb 4 16:15:37 2003 -@@ -61,6 +61,10 @@ - return ptr; - } - -+ FILE* fptr() const { -+ return ptr; -+ } -+ - void operator=(FILE* f) { - close(); - ptr = f; >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 2:44:26 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA5E437B401; Wed, 26 Feb 2003 02:44:25 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 67C7E43F75; Wed, 26 Feb 2003 02:44:25 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from freefall.freebsd.org (nork@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QAiPNS026581; Wed, 26 Feb 2003 02:44:25 -0800 (PST) (envelope-from nork@freefall.freebsd.org) Received: (from nork@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QAiPE5026577; Wed, 26 Feb 2003 02:44:25 -0800 (PST) Date: Wed, 26 Feb 2003 02:44:25 -0800 (PST) From: Norikatsu Shigemura Message-Id: <200302261044.h1QAiPE5026577@freefall.freebsd.org> To: nakaji@jp.freebsd.org, nork@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, nork@FreeBSD.org Subject: Re: ports/48698: japanese/samba cannot compile on 4-stable and other fixes Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: japanese/samba cannot compile on 4-stable and other fixes State-Changed-From-To: open->analyzed State-Changed-By: nork State-Changed-When: Wed Feb 26 02:43:25 PST 2003 State-Changed-Why: I'll handle this. Responsible-Changed-From-To: freebsd-ports-bugs->nork Responsible-Changed-By: nork Responsible-Changed-When: Wed Feb 26 02:43:25 PST 2003 Responsible-Changed-Why: I'll handle this. http://www.freebsd.org/cgi/query-pr.cgi?pr=48698 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 2:49:54 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C79A437B401; Wed, 26 Feb 2003 02:49:53 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6701043F3F; Wed, 26 Feb 2003 02:49:53 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QAnrNS026681; Wed, 26 Feb 2003 02:49:53 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QAnr9G026677; Wed, 26 Feb 2003 02:49:53 -0800 (PST) Date: Wed, 26 Feb 2003 02:49:53 -0800 (PST) From: Edwin Groothuis Message-Id: <200302261049.h1QAnr9G026677@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kuriyama@FreeBSD.org Subject: Re: ports/48692: Installing gnupg port breaks existing net/openldap installation Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Installing gnupg port breaks existing net/openldap installation Responsible-Changed-From-To: freebsd-ports-bugs->kuriyama Responsible-Changed-By: edwin Responsible-Changed-When: Wed Feb 26 02:49:37 PST 2003 Responsible-Changed-Why: Over to gnupg maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=48692 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 2:55:29 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 14F4437B401; Wed, 26 Feb 2003 02:55:29 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B56C343FBD; Wed, 26 Feb 2003 02:55:27 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QAtRNS028971; Wed, 26 Feb 2003 02:55:27 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QAtR8P028967; Wed, 26 Feb 2003 02:55:27 -0800 (PST) Date: Wed, 26 Feb 2003 02:55:27 -0800 (PST) From: Edwin Groothuis Message-Id: <200302261055.h1QAtR8P028967@freefall.freebsd.org> To: lehmann@ans-netz.de, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48604: update-port: security/oidentd Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: update-port: security/oidentd State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Wed Feb 26 02:55:18 PST 2003 State-Changed-Why: Welcome, new maintainer! http://www.freebsd.org/cgi/query-pr.cgi?pr=48604 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 2:55:48 2003 Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C297137B401 for ; Wed, 26 Feb 2003 02:55:47 -0800 (PST) Received: from topaz.mdcc.cx (topaz.mdcc.cx [212.204.230.141]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2AE0A43FCB for ; Wed, 26 Feb 2003 02:55:47 -0800 (PST) (envelope-from edwin@mavetju.org) Received: from k7.mavetju (topaz.mdcc.cx [212.204.230.141]) by topaz.mdcc.cx (Postfix) with ESMTP id 532AA2B79F for ; Wed, 26 Feb 2003 11:55:45 +0100 (CET) Received: by k7.mavetju (Postfix, from userid 1001) id EA50E6A713A; Wed, 26 Feb 2003 21:55:42 +1100 (EST) Date: Wed, 26 Feb 2003 21:55:42 +1100 From: Edwin Groothuis To: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48604: update-port: security/oidentd Message-ID: <20030226105542.GO50581@k7.mavetju> References: <200302251610.h1PGAFjR017123@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200302251610.h1PGAFjR017123@freefall.freebsd.org> User-Agent: Mutt/1.4i Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Tue, Feb 25, 2003 at 08:10:15AM -0800, Oliver Lehmann wrote: > The following reply was made to PR ports/48604; it has been noted by GNATS. > > From: Oliver Lehmann > To: Mark Laws > Cc: freebsd-gnats-submit@FreeBSD.org > Subject: Re: ports/48604: update-port: security/oidentd > Date: Tue, 25 Feb 2003 17:07:35 +0100 > > Mark Laws wrote: > > > This is fine. In fact, if you would like to take over the port, you may > > do so if you wish. > > Ok, thanks. If nobody object, I'm willing to take the maintainership. changed. Edwin -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://www.mavetju.org/weblog/weblog.php To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 3: 0:33 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 818AC37B405 for ; Wed, 26 Feb 2003 03:00:30 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 80F0A43FBF for ; Wed, 26 Feb 2003 03:00:27 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QB0RNS029072 for ; Wed, 26 Feb 2003 03:00:27 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QB0RnB029071; Wed, 26 Feb 2003 03:00:27 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 006F737B401 for ; Wed, 26 Feb 2003 02:50:44 -0800 (PST) Received: from rzaixsrv2.rrz.uni-hamburg.de (rzaixsrv2.rrz.uni-hamburg.de [134.100.32.71]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B8FC43F75 for ; Wed, 26 Feb 2003 02:50:42 -0800 (PST) (envelope-from andy@nostromo.hs.uni-hamburg.de) Received: from nostromo.hs.uni-hamburg.de (nostromo.hs.uni-hamburg.de [134.100.120.71]) by rzaixsrv2.rrz.uni-hamburg.de (8.11.6/8.11.6) with ESMTP id h1QAoX0125938 (using TLSv1/SSLv3 with cipher EDH-RSA-DES-CBC3-SHA (168 bits) verified NO) for ; Wed, 26 Feb 2003 11:50:34 +0100 Received: from nostromo.hs.uni-hamburg.de (localhost.hs.uni-hamburg.de [127.0.0.1]) by nostromo.hs.uni-hamburg.de (8.12.6/8.12.6) with ESMTP id h1QAoXDI008988 for ; Wed, 26 Feb 2003 11:50:33 +0100 (CET) (envelope-from andy@nostromo.hs.uni-hamburg.de) Received: (from andy@localhost) by nostromo.hs.uni-hamburg.de (8.12.6/8.12.6/Submit) id h1QAoWBY008987; Wed, 26 Feb 2003 11:50:32 +0100 (CET) Message-Id: <200302261050.h1QAoWBY008987@nostromo.hs.uni-hamburg.de> Date: Wed, 26 Feb 2003 11:50:32 +0100 (CET) From: Andreas Schweitzer Reply-To: Andreas Schweitzer To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48701: update of dillo port Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48701 >Category: ports >Synopsis: update of dillo port >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Feb 26 03:00:26 PST 2003 >Closed-Date: >Last-Modified: >Originator: Andreas Schweitzer >Release: FreeBSD 4.7-RELEASE-p6 i386 >Organization: none >Environment: System: FreeBSD nostromo.hs.uni-hamburg.de 4.7-RELEASE-p6 FreeBSD 4.7-RELEASE-p6 #0: Mon Feb 24 18:31:15 CET 2003 toor@nostromo.hs.uni-hamburg.de:/usr/obj/usr/src/sys/DUAL i386 >Description: This is an update of the dillo port. The maintainer seemed to have moved the MAINTAINER part to ports@FreeBSD.org so here is an update. >How-To-Repeat: Visit http://dillo.auriga.wearlab.de/ and compare the version there to the version in the ports. >Fix: diff -rNu dillo.bak/Makefile dillo/Makefile --- dillo.bak/Makefile Mon Feb 24 16:10:55 2003 +++ dillo/Makefile Wed Feb 26 10:50:20 2003 @@ -6,10 +6,9 @@ # PORTNAME= dillo -PORTVERSION= 0.6.6 +PORTVERSION= 0.7.0 CATEGORIES= www -MASTER_SITES= http://dillo.auriga.wearlab.de/download/ \ - ftp://ftp.nuug.no/pub/anders/distfiles/ +MASTER_SITES= http://dillo.auriga.wearlab.de/download/ MAINTAINER= ports@FreeBSD.org COMMENT= A fast, small graphical Web browser built upon GTK+ diff -rNu dillo.bak/distinfo dillo/distinfo --- dillo.bak/distinfo Tue Jun 4 00:54:28 2002 +++ dillo/distinfo Wed Feb 26 10:52:32 2003 @@ -1 +1 @@ -MD5 (dillo-0.6.6.tar.gz) = 01d681ba8bec7fdb074d1bbf99c13285 +MD5 (dillo-0.7.0.tar.gz) = 5cd0c6b17462329b988db417c475f048 diff -rNu dillo.bak/pkg-descr dillo/pkg-descr --- dillo.bak/pkg-descr Tue Jan 7 11:14:53 2003 +++ dillo/pkg-descr Wed Feb 26 10:57:20 2003 @@ -2,7 +2,7 @@ is based on gzilla-0.2.2's widget, and a new improved network engine written from scratch). -Dillo is small; source and binary are less than 220 Kb each. +Dillo is small; source is less than 360 kB and binary is less than 270 Kb. Dillo aims to be a multiplatform browser alternative that's small, stable, developer-friendly, usable, fast, and extensible. diff -rNu dillo.bak/pkg-plist dillo/pkg-plist --- dillo.bak/pkg-plist Thu May 2 02:09:37 2002 +++ dillo/pkg-plist Wed Feb 26 10:55:08 2003 @@ -1,2 +1,3 @@ bin/dillo +bin/bm_srv12 etc/dillorc.sample >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 4:30: 5 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F40F37B401 for ; Wed, 26 Feb 2003 04:30:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 27F2443FAF for ; Wed, 26 Feb 2003 04:30:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QCU3NS059775 for ; Wed, 26 Feb 2003 04:30:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QCU36t059774; Wed, 26 Feb 2003 04:30:03 -0800 (PST) Date: Wed, 26 Feb 2003 04:30:03 -0800 (PST) Message-Id: <200302261230.h1QCU36t059774@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Sergey Matveychuk Subject: Re: ports/48646: check-already-installed port by origin Reply-To: Sergey Matveychuk Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48646; it has been noted by GNATS. From: Sergey Matveychuk To: freebsd-gnats-submit@FreeBSD.org, sem@ciam.ru Cc: Subject: Re: ports/48646: check-already-installed port by origin Date: Wed, 26 Feb 2003 15:28:33 +0300 This is a multi-part message in MIME format. --------------040409060505030307060009 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit I'v found out pkg_info doesn't support -O switch in 4.x. Here is a new patch. (Just ignore stderr). --------------040409060505030307060009 Content-Type: text/plain; name="check-origin.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="check-origin.patch" --- bsd.port.mk.1_440 Mon Feb 17 02:23:01 2003 +++ bsd.port.mk Wed Feb 26 15:20:01 2003 @@ -2718,7 +2726,8 @@ .if !target(check-already-installed) check-already-installed: .if !defined(NO_PKG_REGISTER) && !defined(FORCE_PKG_REGISTER) - @if [ -d ${PKG_DBDIR}/${PKGNAME} ]; then \ + @if [ -d ${PKG_DBDIR}/${PKGNAME} -o \ + "x`${PKG_INFO} -q -O ${PKGORIGIN} 2> /dev/null`" != "x" ]; then \ ${ECHO_CMD} "===> ${PKGNAME} is already installed - perhaps an older version?"; \ ${ECHO_CMD} " If so, you may wish to \`\`make deinstall'' and install"; \ ${ECHO_CMD} " this port again by \`\`make reinstall'' to upgrade it properly."; \ --------------040409060505030307060009-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 5:50:10 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6228237B401 for ; Wed, 26 Feb 2003 05:50:05 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 799B343F93 for ; Wed, 26 Feb 2003 05:50:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QDo4NS086594 for ; Wed, 26 Feb 2003 05:50:04 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QDo42K086593; Wed, 26 Feb 2003 05:50:04 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3CED637B401 for ; Wed, 26 Feb 2003 05:43:46 -0800 (PST) Received: from outpost.lukarcos.com (outpost.globcon.net [62.141.88.161]) by mx1.FreeBSD.org (Postfix) with SMTP id 6461743FCB for ; Wed, 26 Feb 2003 05:43:44 -0800 (PST) (envelope-from sgk@outpost.globcon.net) Received: (qmail 21667 invoked by uid 911); 26 Feb 2003 13:43:42 -0000 Message-Id: <20030226134342.21666.qmail@outpost.globcon.net> Date: 26 Feb 2003 13:43:42 -0000 From: Sergei Kolobov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48702: [MAINTAINER] Update security/libtasn1 to 0.2.1 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48702 >Category: ports >Synopsis: [MAINTAINER] Update security/libtasn1 to 0.2.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Feb 26 05:50:03 PST 2003 >Closed-Date: >Last-Modified: >Originator: Sergei Kolobov >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: FreeBSD outpost.globcon.net 4.7-STABLE FreeBSD 4.7-STABLE #0: Mon Oct 14 02:23:23 MSD 2002 sgk@outpost.globcon.net:/data/FreeBSD/obj/data/FreeBSD/src/sys/OUTPOST i386 >Description: - Update to 0.2.1 - Bumped shlib version to 1 - Conditionalize libgnugetopt dependency >How-To-Repeat: >Fix: --- libtasn1-0.2.1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/security/libtasn1/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- Makefile 2003/02/21 13:26:47 1.5 +++ Makefile 2003/02/26 13:15:12 @@ -6,7 +6,7 @@ # PORTNAME= libtasn1 -PORTVERSION= 0.1.2 +PORTVERSION= 0.2.1 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_GNUPG} \ http://www.mirrors.wiretapped.net/security/network-security/gnutls/libtasn1/ \ @@ -17,17 +17,18 @@ MAINTAINER= sergei@kolobov.com COMMENT= ASN.1 structure parser library +.if !exists(/usr/include/getopt.h) LIB_DEPENDS= gnugetopt.1:${PORTSDIR}/devel/libgnugetopt +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib -lgnugetopt +.endif USE_REINPLACE= yes USE_LIBTOOL= yes INSTALLS_SHLIB= yes -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -lgnugetopt CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" -DOCS= AUTHORS NEWS README THANKS -DOCS2= asn1.ps asn1.tex fdl.tex +DOCS= AUTHORS NEWS README THANKS doc/asn1.ps doc/asn1.tex doc/fdl.tex post-patch: .for file in asn1Coding.c asn1Decoding.c asn1Parser.c @@ -40,9 +41,6 @@ @${MKDIR} ${DOCSDIR} .for file in ${DOCS} ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} -.endfor -.for file in ${DOCS2} - ${INSTALL_DATA} ${WRKSRC}/doc/${file} ${DOCSDIR} .endfor .endif Index: distinfo =================================================================== RCS file: /home/ncvs/ports/security/libtasn1/distinfo,v retrieving revision 1.1 diff -u -r1.1 distinfo --- distinfo 2003/01/07 13:44:32 1.1 +++ distinfo 2003/02/26 13:15:12 @@ -1 +1 @@ -MD5 (libtasn1-0.1.2.tar.gz) = 6c8c376e5582f6845371a939869166dd +MD5 (libtasn1-0.2.1.tar.gz) = 738810df8f97b9b457a5dc6aa5ad2065 Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/security/libtasn1/pkg-plist,v retrieving revision 1.2 diff -u -r1.2 pkg-plist --- pkg-plist 2003/01/28 22:19:12 1.2 +++ pkg-plist 2003/02/26 13:15:12 @@ -1,5 +1,5 @@ include/libtasn1.h -lib/libtasn1.so.0 +lib/libtasn1.so.1 lib/libtasn1.so lib/libtasn1.a %%PORTDOCS%%share/doc/libtasn1/AUTHORS --- libtasn1-0.2.1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 7:10:16 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96DB337B401 for ; Wed, 26 Feb 2003 07:10:13 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02ABE43FBF for ; Wed, 26 Feb 2003 07:10:11 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QFABNS061318 for ; Wed, 26 Feb 2003 07:10:11 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QFABLi061317; Wed, 26 Feb 2003 07:10:11 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EFE437B405; Wed, 26 Feb 2003 07:00:33 -0800 (PST) Received: from wom.ru (ns.v-lazer.com [212.122.18.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C4B343FBF; Wed, 26 Feb 2003 07:00:29 -0800 (PST) (envelope-from wom@wom.ru) Received: from wom by wom.ru with local (Exim 4.12) id 18o32p-000CFU-00; Thu, 27 Feb 2003 01:00:27 +1000 Message-Id: Date: Thu, 27 Feb 2003 01:00:27 +1000 From: Womchick alexeyeff Reply-To: Womchick alexeyeff To: FreeBSD-gnats-submit@FreeBSD.org Cc: dirk@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48703: [PATCH] update www/mod_php4: fix build DOM XML Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48703 >Category: ports >Synopsis: [PATCH] update www/mod_php4: fix build DOM XML >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Feb 26 07:10:08 PST 2003 >Closed-Date: >Last-Modified: >Originator: Womchick alexeyeff >Release: FreeBSD 4.7-RELEASE-p4 i386 >Organization: n/a >Environment: System: FreeBSD ns.v-lazer.com 4.7-RELEASE-p4 FreeBSD 4.7-RELEASE-p4 #1: Sun Feb 16 12:03:44 VLAT 2003 root@ns.v-lazer.com:/usr/obj/usr/src/sys/WOM i386 >Description: use COMMENT instead of pkg-comment build with DOM XML support not include DOM EXSLT support according php manual http://www.php.net/manual/en/ref.domxml.php but manual contains some misprint >How-To-Repeat: cd /usr/ports/www/mod_php4 ; make choose DOM XML in configure menu >Fix: Index: ports/www/mod_php4/Makefile =================================================================== RCS file: /home/ncvs/ports/www/mod_php4/Makefile,v retrieving revision 1.186 diff -u -r1.186 Makefile --- ports/www/mod_php4/Makefile 23 Feb 2003 03:08:32 -0000 1.186 +++ ports/www/mod_php4/Makefile 26 Feb 2003 14:28:15 -0000 @@ -21,6 +21,7 @@ DISTNAME= php-${PORTVERSION} MAINTAINER= dirk@FreeBSD.org +COMMENT= PHP4 module for Apache BUILD_DEPENDS= ${APXS}:${APACHE_PORT} RUN_DEPENDS= ${APXS}:${APACHE_PORT} Index: ports/www/mod_php4/scripts/configure.php =================================================================== RCS file: /home/ncvs/ports/www/mod_php4/scripts/configure.php,v retrieving revision 1.183 diff -u -r1.183 configure.php --- ports/www/mod_php4/scripts/configure.php 24 Feb 2003 02:56:37 -0000 1.183 +++ ports/www/mod_php4/scripts/configure.php 26 Feb 2003 14:28:16 -0000 @@ -289,8 +289,8 @@ fi ;; \"DOMXML\") - echo "LIB_DEPENDS+= xml2.5:\${PORTSDIR}/textproc/libxml2" - echo "CONFIGURE_ARGS+=--with-dom=\${LOCALBASE}" + echo "LIB_DEPENDS+= xslt.1:\${PORTSDIR}/textproc/libxslt" + echo "CONFIGURE_ARGS+=--with-dom-xslt=\${LOCALBASE}" ;; \"FTP\") echo "CONFIGURE_ARGS+=--enable-ftp" >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 7:10:19 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D075237B405 for ; Wed, 26 Feb 2003 07:10:13 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C392643FCB for ; Wed, 26 Feb 2003 07:10:12 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QFACNS061513 for ; Wed, 26 Feb 2003 07:10:12 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QFACse061509; Wed, 26 Feb 2003 07:10:12 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3A88A37B405 for ; Wed, 26 Feb 2003 07:03:11 -0800 (PST) Received: from outpost.lukarcos.com (outpost.globcon.net [62.141.88.161]) by mx1.FreeBSD.org (Postfix) with SMTP id 5B29943FA3 for ; Wed, 26 Feb 2003 07:03:09 -0800 (PST) (envelope-from sgk@outpost.globcon.net) Received: (qmail 22176 invoked by uid 911); 26 Feb 2003 15:03:10 -0000 Message-Id: <20030226150310.22175.qmail@outpost.globcon.net> Date: 26 Feb 2003 15:03:10 -0000 From: Sergei Kolobov To: FreeBSD-gnats-submit@FreeBSD.org Cc: arved@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48704: [PATCH] Update security/libgcrypt to 1.1.12 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48704 >Category: ports >Synopsis: [PATCH] Update security/libgcrypt to 1.1.12 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Feb 26 07:10:11 PST 2003 >Closed-Date: >Last-Modified: >Originator: Sergei Kolobov >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: FreeBSD outpost.globcon.net 4.7-STABLE FreeBSD 4.7-STABLE #0: Mon Oct 14 02:23:23 MSD 2002 sgk@outpost.globcon.net:/data/FreeBSD/obj/data/FreeBSD/src/sys/OUTPOST i386 >Description: - Update to 1.1.12 - Temporarily disable USE_AUTOCONF as this version requires autoconf 2.54 which is still not available in the ports tree Prerequisite for security/opencdk and security/gnutls updates to follow. Port maintainer - arved@FreeBSD.org - has been copied. The update was tested under -STABLE and -CURRENT. >How-To-Repeat: >Fix: --- libgcrypt-1.1.12.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/security/libgcrypt/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- Makefile 2003/02/22 14:38:11 1.5 +++ Makefile 2003/02/26 14:58:11 @@ -5,7 +5,7 @@ # $FreeBSD: ports/security/libgcrypt/Makefile,v 1.5 2003/02/22 14:38:11 arved Exp $ PORTNAME= libgcrypt -PORTVERSION= 1.1.11 +PORTVERSION= 1.1.12 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_GNUPG} MASTER_SITE_SUBDIR= alpha/libgcrypt @@ -15,7 +15,7 @@ USE_REINPLACE= yes USE_PERL5= yes -USE_AUTOCONF_VER= 253 +#USE_AUTOCONF_VER= 253 USE_LIBTOOL= yes CONFIGURE_ENV= MAKEINFO="makeinfo --no-split" CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL} Index: distinfo =================================================================== RCS file: /home/ncvs/ports/security/libgcrypt/distinfo,v retrieving revision 1.2 diff -u -r1.2 distinfo --- distinfo 2003/01/02 14:18:00 1.2 +++ distinfo 2003/02/26 14:58:11 @@ -1 +1 @@ -MD5 (libgcrypt-1.1.11.tar.gz) = 5eb3aedc6b2576052335787bf0606cf9 +MD5 (libgcrypt-1.1.12.tar.gz) = c245f62bf8da9a83c5dae26d9fa3559d Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/security/libgcrypt/pkg-plist,v retrieving revision 1.2 diff -u -r1.2 pkg-plist --- pkg-plist 2003/01/02 14:18:00 1.2 +++ pkg-plist 2003/02/26 14:58:11 @@ -4,7 +4,6 @@ info/gcrypt.info @exec install-info %D/info/gcrypt.info %D/info/dir lib/libgcrypt.a -lib/libgcrypt.la lib/libgcrypt.so lib/libgcrypt.so.6 share/aclocal/libgcrypt.m4 --- libgcrypt-1.1.12.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 7:15:13 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CCCF37B401; Wed, 26 Feb 2003 07:15:12 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D46543FBD; Wed, 26 Feb 2003 07:15:12 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QFFBNS073243; Wed, 26 Feb 2003 07:15:11 -0800 (PST) (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QFFBd7073239; Wed, 26 Feb 2003 07:15:11 -0800 (PST) Date: Wed, 26 Feb 2003 07:15:11 -0800 (PST) From: Tilman Linneweh Message-Id: <200302261515.h1QFFBd7073239@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, arved@FreeBSD.org Subject: Re: ports/48704: [PATCH] Update security/libgcrypt to 1.1.12 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [PATCH] Update security/libgcrypt to 1.1.12 Responsible-Changed-From-To: freebsd-ports-bugs->arved Responsible-Changed-By: arved Responsible-Changed-When: Wed Feb 26 07:14:49 PST 2003 Responsible-Changed-Why: My port http://www.freebsd.org/cgi/query-pr.cgi?pr=48704 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 7:17:28 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE14237B401; Wed, 26 Feb 2003 07:17:27 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8EFD743FB1; Wed, 26 Feb 2003 07:17:27 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QFHRNS073440; Wed, 26 Feb 2003 07:17:27 -0800 (PST) (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QFHRiY073436; Wed, 26 Feb 2003 07:17:27 -0800 (PST) Date: Wed, 26 Feb 2003 07:17:27 -0800 (PST) From: Tilman Linneweh Message-Id: <200302261517.h1QFHRiY073436@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dirk@FreeBSD.org Subject: Re: ports/48703: [PATCH] update www/mod_php4: fix build DOM XML Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [PATCH] update www/mod_php4: fix build DOM XML Responsible-Changed-From-To: freebsd-ports-bugs->dirk Responsible-Changed-By: arved Responsible-Changed-When: Wed Feb 26 07:17:07 PST 2003 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=48703 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 7:20: 9 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7AB8C37B401 for ; Wed, 26 Feb 2003 07:20:08 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23B3443F85 for ; Wed, 26 Feb 2003 07:20:08 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QFK7NS073501 for ; Wed, 26 Feb 2003 07:20:07 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QFK7mT073500; Wed, 26 Feb 2003 07:20:07 -0800 (PST) Date: Wed, 26 Feb 2003 07:20:07 -0800 (PST) Message-Id: <200302261520.h1QFK7mT073500@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Alex Dupre Subject: Re: ports/46984: [New Ports] PHP 5 - Zend Engine 2 (CLI & Apache Modules) Reply-To: Alex Dupre Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/46984; it has been noted by GNATS. From: Alex Dupre To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/46984: [New Ports] PHP 5 - Zend Engine 2 (CLI & Apache Modules) Date: Wed, 26 Feb 2003 16:06:55 +0100 Update to 26/02/2003 snapshot. Fix some "nasty" bugs in the Makefile/configure script. http://www.gufi.org/~alex/php5.tar.gz Remember to remove old dirs (lang/php-dev lang/php-cli-dev www/php-mod-dev) before extracting it in /usr/ports if you tried older versions. I'd like to receive comments and suggestions, so, if you try it, feel free to write me an email :) -- Alex Dupre sysadmin@alexdupre.com http://www.alexdupre.com/ alex@sm.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 7:30: 7 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7FD8B37B401 for ; Wed, 26 Feb 2003 07:30:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9233443FB1 for ; Wed, 26 Feb 2003 07:30:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QFU2NS075717 for ; Wed, 26 Feb 2003 07:30:02 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QFU2Ak075716; Wed, 26 Feb 2003 07:30:02 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1AA8437B401 for ; Wed, 26 Feb 2003 07:29:04 -0800 (PST) Received: from outpost.lukarcos.com (outpost.globcon.net [62.141.88.161]) by mx1.FreeBSD.org (Postfix) with SMTP id 04FA343FF5 for ; Wed, 26 Feb 2003 07:29:01 -0800 (PST) (envelope-from sgk@outpost.globcon.net) Received: (qmail 22454 invoked by uid 911); 26 Feb 2003 15:29:03 -0000 Message-Id: <20030226152903.22453.qmail@outpost.globcon.net> Date: 26 Feb 2003 15:29:03 -0000 From: Sergei Kolobov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48705: [MAINTAINER] Update security/opencdk to 0.4.5 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48705 >Category: ports >Synopsis: [MAINTAINER] Update security/opencdk to 0.4.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Feb 26 07:30:02 PST 2003 >Closed-Date: >Last-Modified: >Originator: Sergei Kolobov >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: FreeBSD outpost.globcon.net 4.7-STABLE FreeBSD 4.7-STABLE #0: Mon Oct 14 02:23:23 MSD 2002 sgk@outpost.globcon.net:/data/FreeBSD/obj/data/FreeBSD/src/sys/OUTPOST i386 >Description: - Update to 0.4.5 - Use DOCSDIR and EXAMPLESDIR in pkg-plist Requires libgcrypt 1.1.12 (ports/48704 PR) to be committed. The update was tested under -STABLE and -CURRENT. >How-To-Repeat: >Fix: --- opencdk-0.4.5.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/security/opencdk/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- Makefile 2003/02/21 13:26:48 1.5 +++ Makefile 2003/02/26 15:03:36 @@ -6,7 +6,7 @@ # PORTNAME= opencdk -PORTVERSION= 0.4.1 +PORTVERSION= 0.4.5 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_GNUPG} \ http://www.mirrors.wiretapped.net/security/network-security/gnutls/opencdk/ \ @@ -28,7 +28,7 @@ DOCS= AUTHORS NEWS README THANKS post-patch: -.for file in encrypt.c main.c +.for file in encrypt.c main.c misc.c ${REINPLACE_CMD} -e 's///' ${WRKSRC}/src/${file} .endfor Index: distinfo =================================================================== RCS file: /home/ncvs/ports/security/opencdk/distinfo,v retrieving revision 1.1 diff -u -r1.1 distinfo --- distinfo 2003/01/18 21:30:53 1.1 +++ distinfo 2003/02/26 15:03:36 @@ -1 +1 @@ -MD5 (opencdk-0.4.1.tar.gz) = 428f93034dbdbded596746c9656e270b +MD5 (opencdk-0.4.5.tar.gz) = 53e7822ae35d6b391951933e73d3cce0 Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/security/opencdk/pkg-plist,v retrieving revision 1.2 diff -u -r1.2 pkg-plist --- pkg-plist 2003/01/28 22:15:48 1.2 +++ pkg-plist 2003/02/26 15:03:36 @@ -1,19 +1,19 @@ bin/opencdk-config include/opencdk.h -lib/libopencdk.so.5 +lib/libopencdk.so.6 lib/libopencdk.so lib/libopencdk.a -%%PORTDOCS%%share/doc/opencdk/AUTHORS -%%PORTDOCS%%share/doc/opencdk/NEWS -%%PORTDOCS%%share/doc/opencdk/README -%%PORTDOCS%%share/doc/opencdk/THANKS -%%PORTDOCS%%share/doc/opencdk/opencdk-api.html -%%PORTDOCS%%@dirrm share/doc/opencdk -share/examples/opencdk/minpg.c -share/examples/opencdk/pub.gpg -share/examples/opencdk/sec-with-pwd.gpg -share/examples/opencdk/sec.gpg -share/examples/opencdk/t-stream.c -share/examples/opencdk/ts.gpg -share/examples/opencdk/wkold.gpg -@dirrm share/examples/opencdk +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/THANKS +%%PORTDOCS%%%%DOCSDIR%%/opencdk-api.html +%%PORTDOCS%%@dirrm %%DOCSDIR%% +%%EXAMPLESDIR%%/minpg.c +%%EXAMPLESDIR%%/pub.gpg +%%EXAMPLESDIR%%/sec-with-pwd.gpg +%%EXAMPLESDIR%%/sec.gpg +%%EXAMPLESDIR%%/t-stream.c +%%EXAMPLESDIR%%/ts.gpg +%%EXAMPLESDIR%%/wkold.gpg +@dirrm %%EXAMPLESDIR%% --- opencdk-0.4.5.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 7:32:48 2003 Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C483537B401; Wed, 26 Feb 2003 07:32:47 -0800 (PST) Received: from pcat.heimat.gr.jp (catv-129-243.tees.ne.jp [202.216.129.243]) by mx1.FreeBSD.org (Postfix) with ESMTP id 37D5943F85; Wed, 26 Feb 2003 07:32:44 -0800 (PST) (envelope-from nakaji@tutrp.tut.ac.jp) Received: from xa12.heimat.gr.jp (xa12.heimat.gr.jp [202.216.136.35]) by pcat.heimat.gr.jp (8.12.7/8.12.7) with ESMTP id h1QFWZ6W064531; Thu, 27 Feb 2003 00:32:40 +0900 (JST) (envelope-from nakaji@tutrp.tut.ac.jp) To: FreeBSD-gnats-submit@FreeBSD.org Cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48698: japanese/samba cannot compile on 4-stable and other fixes MIME-Version: 1.0 (generated by SEMI 1.14.5 - "Awara-Onsen") Content-Type: text/plain; charset=US-ASCII From: NAKAJI Hiroyuki Date: Thu, 27 Feb 2003 00:32:34 +0900 In-Reply-To: <200302260930.h1Q9UAWc005883@freefall.freebsd.org> (FreeBSD-gnats-submit@FreeBSD.org's message of "Wed, 26 Feb 2003 01:30:10 -0800 (PST)") Message-ID: <86n0kjm50t.fsf@xa12.heimat.gr.jp> User-Agent: T-gnus/6.15.15 (based on Oort Gnus v0.15) SEMI/1.14.5 (Awara-Onsen) FLIM/1.14.5 (Demachiyanagi) APEL/10.4 Emacs/21.2 (i386--freebsd) MULE/5.0 (SAKAKI) References: <200302260929.h1Q9Tckg090941@boggy.acest.tutrp.tut.ac.jp> <200302260930.h1Q9UAWc005883@freefall.freebsd.org> X-Virus-Scanned: by AMaViS-perl11-milter (http://amavis.org/) Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Files/patch-ah is also obsolete. Please remove it too. -- NAKAJI Hiroyuki To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 7:40:16 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BE7B37B401 for ; Wed, 26 Feb 2003 07:40:12 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E535043FD7 for ; Wed, 26 Feb 2003 07:40:09 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QFe9NS077889 for ; Wed, 26 Feb 2003 07:40:09 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QFe9Hf077888; Wed, 26 Feb 2003 07:40:09 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D3F2A37B401 for ; Wed, 26 Feb 2003 07:31:25 -0800 (PST) Received: from outpost.lukarcos.com (outpost.globcon.net [62.141.88.161]) by mx1.FreeBSD.org (Postfix) with SMTP id 5423843FAF for ; Wed, 26 Feb 2003 07:31:24 -0800 (PST) (envelope-from sgk@outpost.globcon.net) Received: (qmail 22633 invoked by uid 911); 26 Feb 2003 15:31:26 -0000 Message-Id: <20030226153126.22632.qmail@outpost.globcon.net> Date: 26 Feb 2003 15:31:26 -0000 From: Sergei Kolobov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48706: [MAINTAINER] Update security/gnutls to 0.8.1 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48706 >Category: ports >Synopsis: [MAINTAINER] Update security/gnutls to 0.8.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Feb 26 07:40:09 PST 2003 >Closed-Date: >Last-Modified: >Originator: Sergei Kolobov >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: FreeBSD outpost.globcon.net 4.7-STABLE FreeBSD 4.7-STABLE #0: Mon Oct 14 02:23:23 MSD 2002 sgk@outpost.globcon.net:/data/FreeBSD/obj/data/FreeBSD/src/sys/OUTPOST i386 >Description: - Update to 0.8.1 - Remove WITH_OPENCDK knob - require security/opencdk by default - Use DOCSDIR and EXAMPLESDIR in pkg-plist Requires libgcrypt 1.1.12 (ports/48704 PR) to be committed. The update was tested under -STABLE and -CURRENT. >How-To-Repeat: >Fix: --- gnutls-0.8.1.patch begins here --- ? pkg-comment Index: Makefile =================================================================== RCS file: /home/ncvs/ports/security/gnutls/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- Makefile 2003/02/21 13:26:44 1.5 +++ Makefile 2003/02/26 15:29:26 @@ -6,8 +6,7 @@ # PORTNAME= gnutls -PORTVERSION= 0.6.0 -PORTREVISION= 1 +PORTVERSION= 0.8.1 CATEGORIES= security net MASTER_SITES= ${MASTER_SITE_GNUPG} \ http://www.mirrors.wiretapped.net/security/network-security/gnutls/ \ @@ -19,12 +18,9 @@ COMMENT= GNU Transport Layer Security library LIB_DEPENDS= gcrypt.6:${PORTSDIR}/security/libgcrypt \ - tasn1.0:${PORTSDIR}/security/libtasn1 + tasn1.1:${PORTSDIR}/security/libtasn1 \ + opencdk.6:${PORTSDIR}/security/opencdk -.if defined(WITH_OPENCDK) -LIB_DEPENDS+= opencdk.5:${PORTSDIR}/security/opencdk -.endif - USE_LIBTOOL= yes INSTALLS_SHLIB= yes CPPFLAGS+= -I${LOCALBASE}/include @@ -33,16 +29,6 @@ CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} DOCS= AUTHORS NEWS README THANKS - -pre-configure: - @${ECHO_MSG} "" -.if defined (WITH_OPENCDK) - @${ECHO_MSG} "Enabled OpenCDK support" -.else - @${ECHO_MSG} "OpenCDK support is disabled by default" - @${ECHO_MSG} "Use WITH_OPENCDK=yes to enable" -.endif - @${ECHO_MSG} "" post-install: ${RM} -f ${PREFIX}/lib/libgnutls.la ${PREFIX}/lib/libgnutls-extra.la Index: distinfo =================================================================== RCS file: /home/ncvs/ports/security/gnutls/distinfo,v retrieving revision 1.2 diff -u -r1.2 distinfo --- distinfo 2003/01/18 21:14:06 1.2 +++ distinfo 2003/02/26 15:29:26 @@ -1 +1 @@ -MD5 (gnutls-0.6.0.tar.gz) = 98309d2e229abe5ef092a9f05fa5b437 +MD5 (gnutls-0.8.1.tar.gz) = 4a7d9e5f2683bb10f116f86c32c041c0 Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/security/gnutls/pkg-plist,v retrieving revision 1.4 diff -u -r1.4 pkg-plist --- pkg-plist 2003/02/22 04:11:02 1.4 +++ pkg-plist 2003/02/26 15:29:26 @@ -9,31 +9,31 @@ include/gnutls/openssl.h include/gnutls/gnutls.h @dirrm include/gnutls -lib/libgnutls.so.7 +lib/libgnutls.so.8 lib/libgnutls.so lib/libgnutls.a -lib/libgnutls-extra.so.7 +lib/libgnutls-extra.so.8 lib/libgnutls-extra.so lib/libgnutls-extra.a share/aclocal/libgnutls.m4 share/aclocal/libgnutls-extra.m4 -%%PORTDOCS%%share/doc/gnutls/AUTHORS -%%PORTDOCS%%share/doc/gnutls/NEWS -%%PORTDOCS%%share/doc/gnutls/README -%%PORTDOCS%%share/doc/gnutls/THANKS -%%PORTDOCS%%share/doc/gnutls/gnutls-logo.ps -%%PORTDOCS%%share/doc/gnutls/gnutls.ps -%%PORTDOCS%%@dirrm share/doc/gnutls -share/examples/gnutls/ex-alert.c -share/examples/gnutls/ex-client-resume.c -share/examples/gnutls/ex-client-srp.c -share/examples/gnutls/ex-client1.c -share/examples/gnutls/ex-client2.c -share/examples/gnutls/ex-info.c -share/examples/gnutls/ex-pgp-keyserver.c -share/examples/gnutls/ex-rfc2818.c -share/examples/gnutls/ex-serv-export.c -share/examples/gnutls/ex-serv-pgp.c -share/examples/gnutls/ex-serv-srp.c -share/examples/gnutls/ex-serv1.c -@dirrm share/examples/gnutls +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/THANKS +%%PORTDOCS%%%%DOCSDIR%%/gnutls-logo.ps +%%PORTDOCS%%%%DOCSDIR%%/gnutls.ps +%%PORTDOCS%%@dirrm %%DOCSDIR%% +%%EXAMPLESDIR%%/ex-alert.c +%%EXAMPLESDIR%%/ex-client-resume.c +%%EXAMPLESDIR%%/ex-client-srp.c +%%EXAMPLESDIR%%/ex-client1.c +%%EXAMPLESDIR%%/ex-client2.c +%%EXAMPLESDIR%%/ex-info.c +%%EXAMPLESDIR%%/ex-pgp-keyserver.c +%%EXAMPLESDIR%%/ex-rfc2818.c +%%EXAMPLESDIR%%/ex-serv-export.c +%%EXAMPLESDIR%%/ex-serv-pgp.c +%%EXAMPLESDIR%%/ex-serv-srp.c +%%EXAMPLESDIR%%/ex-serv1.c +@dirrm %%EXAMPLESDIR%% --- gnutls-0.8.1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 7:50:13 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6ADBC37B401 for ; Wed, 26 Feb 2003 07:50:11 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 129CA43FAF for ; Wed, 26 Feb 2003 07:50:11 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QFoANS079954 for ; Wed, 26 Feb 2003 07:50:10 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QFoAjQ079953; Wed, 26 Feb 2003 07:50:10 -0800 (PST) Date: Wed, 26 Feb 2003 07:50:10 -0800 (PST) Message-Id: <200302261550.h1QFoAjQ079953@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Sergei Kolobov Subject: Re: ports/48702: [MAINTAINER] Update security/libtasn1 to 0.2.1 Reply-To: Sergei Kolobov Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48702; it has been noted by GNATS. From: Sergei Kolobov To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/48702: [MAINTAINER] Update security/libtasn1 to 0.2.1 Date: Wed, 26 Feb 2003 18:40:54 +0300 Last-minute touch: - Use DOCSDIR and EXAMPLESDIR in pkg-plist Note: the update was tested under -STABLE and -CURRENT. Please replace pkg-plist patch with the following: Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/security/libtasn1/pkg-plist,v retrieving revision 1.2 diff -u -r1.2 pkg-plist --- pkg-plist 2003/01/28 22:19:12 1.2 +++ pkg-plist 2003/02/26 14:57:14 @@ -1,12 +1,12 @@ include/libtasn1.h -lib/libtasn1.so.0 +lib/libtasn1.so.1 lib/libtasn1.so lib/libtasn1.a -%%PORTDOCS%%share/doc/libtasn1/AUTHORS -%%PORTDOCS%%share/doc/libtasn1/NEWS -%%PORTDOCS%%share/doc/libtasn1/README -%%PORTDOCS%%share/doc/libtasn1/THANKS -%%PORTDOCS%%share/doc/libtasn1/asn1.ps -%%PORTDOCS%%share/doc/libtasn1/asn1.tex -%%PORTDOCS%%share/doc/libtasn1/fdl.tex -%%PORTDOCS%%@dirrm share/doc/libtasn1 +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/THANKS +%%PORTDOCS%%%%DOCSDIR%%/asn1.ps +%%PORTDOCS%%%%DOCSDIR%%/asn1.tex +%%PORTDOCS%%%%DOCSDIR%%/fdl.tex +%%PORTDOCS%%@dirrm %%DOCSDIR%% To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 8:10:13 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B61737B406 for ; Wed, 26 Feb 2003 08:10:11 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F88243FCB for ; Wed, 26 Feb 2003 08:10:09 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QGA9NS087805 for ; Wed, 26 Feb 2003 08:10:09 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QGA99Z087804; Wed, 26 Feb 2003 08:10:09 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B00B237B401; Wed, 26 Feb 2003 08:05:06 -0800 (PST) Received: from freebsd.org.ru (freebsd.org.ru [194.84.67.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0562543F3F; Wed, 26 Feb 2003 08:05:06 -0800 (PST) (envelope-from osa@freebsd.org.ru) Received: by freebsd.org.ru (Postfix, from userid 1000) id D52BB94; Wed, 26 Feb 2003 19:05:03 +0300 (MSK) Message-Id: <20030226160503.D52BB94@freebsd.org.ru> Date: Wed, 26 Feb 2003 19:05:03 +0300 (MSK) From: "Sergey A.Osokin" Reply-To: "Sergey A.Osokin" To: FreeBSD-gnats-submit@FreeBSD.org Cc: des@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48707: [PATCH] www/opera: Opera Cross Site Scripting vulnerability Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48707 >Category: ports >Synopsis: [PATCH] www/opera: Opera Cross Site Scripting vulnerability >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 26 08:10:08 PST 2003 >Closed-Date: >Last-Modified: >Originator: Sergey A. Osokin >Release: FreeBSD 4.8-PRERELEASE i386 >Organization: n/a >Environment: System: FreeBSD 4.8-PRERELEASE i386 >Description: www/opera: Opera Cross Site Scripting vulnerability See http://www.secunia.com/advisories/8155/ Notified by bugtraq use COMMENT instead of pkg-comment >How-To-Repeat: >Fix: Index: ports/www/opera/Makefile =================================================================== RCS file: /home/ncvs/ports/www/opera/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- ports/www/opera/Makefile 10 Dec 2002 20:25:36 -0000 1.6 +++ ports/www/opera/Makefile 26 Feb 2003 16:03:32 -0000 @@ -13,8 +13,11 @@ DISTNAME= ${PORTNAME}-${PORTVERSION:S/11./11-/}.1-static-qt.i386.freebsd MAINTAINER= des@FreeBSD.org +COMMENT= A blazingly fast, full-featured, standards-compliant browser LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png + +FORBIDDEN= http://www.secunia.com/advisories/8155/ USE_BZIP2= yes ONLY_FOR_ARCHS= i386 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 8:10:15 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76EDF37B407 for ; Wed, 26 Feb 2003 08:10:11 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E72B043FE0 for ; Wed, 26 Feb 2003 08:10:09 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QGA9NS087826 for ; Wed, 26 Feb 2003 08:10:09 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QGA9gv087823; Wed, 26 Feb 2003 08:10:09 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 08B3137B401 for ; Wed, 26 Feb 2003 08:09:36 -0800 (PST) Received: from gilliam.users.flyingcroc.net (gilliam.users.flyingcroc.net [207.246.128.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id C624743FBD for ; Wed, 26 Feb 2003 08:09:34 -0800 (PST) (envelope-from joek@zircon.staff.flyingcroc.net) Received: from zircon.staff.flyingcroc.net (zircon.staff.flyingcroc.net [207.246.150.92]) by gilliam.users.flyingcroc.net (8.9.3/8.9.3) with SMTP id IAA04972 for ; Wed, 26 Feb 2003 08:09:33 -0800 (PST) Received: (qmail 45834 invoked by uid 1001); 26 Feb 2003 16:09:33 -0000 Message-Id: <20030226160932.45833.qmail@zircon.staff.flyingcroc.net> Date: 26 Feb 2003 16:09:32 -0000 From: Joe Kelsey Reply-To: Joe Kelsey To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48708: mail/balsa2 link error Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48708 >Category: ports >Synopsis: mail/balsa2 link error >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 26 08:10:09 PST 2003 >Closed-Date: >Last-Modified: >Originator: Joe Kelsey >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: FreeBSD zircon.staff.flyingcroc.net 4.7-STABLE FreeBSD 4.7-STABLE #5: Tue Jan 28 10:02:45 PST 2003 joek@zircon.staff.flyingcroc.net:/usr/obj/usr/src/sys/ZIRCON i386 >Description: balsa2-2.0.9 fails to link. >How-To-Repeat: portupgrade balsa2 For some reason, libtool tries to look for the non-existant library -lpspell-impl. Look at the last two lines of make outbut. The first is the link line from src/Makefile, followed by the line generated by libtool. For some reason, libtool rearranges the libraries and adds some of its own for no apparant reason (at least no reason I can determine). /bin/sh ../libtool --mode=link cc -O -pipe -o balsa address-book-config.o ab-window.o balsa-app.o balsa-icons.o balsa-index-threading.o balsa-index.o balsa-mblist.o balsa-message.o expand-alias.o filter-edit-callbacks.o filter-edit-dialog.o filter-export-callbacks.o filter-export-dialog.o filter-run-callbacks.o filter-run-dialog.o folder-conf.o information-dialog.o mailbox-conf.o mailbox-node.o main-window.o main.o message-window.o pref-manager.o print.o quote-color.o save-restore.o sendmsg-window.o spell-check.o store-address.o toolbar-factory.o toolbar-prefs.o ../libbalsa/libbalsa.a ../libmutt/imap/libimap.a ../libmutt/libmutt.a ../libinit_balsa/libinit_balsa.a -lltdl -lintl -liconv -pthread -Wl,--export-dynamic -L/usr/local/lib -L/usr/X11R6/lib -lgnomeui-2 -lSM -lICE -lbonoboui-2 -lgnomecanvas-2 -lgnome-2 -lart_lgpl_2 -lpangoft2-1.0 -lbonobo-2 -lgconf-2 -lgnomevfs-2 -lbonobo-activation -lORBit-2 -llinc -lgthread-2.0 -lgtkhtml-2 -lgtk-x11-2.0 -lxml2 -lz -lgdk-x11-2.0 -lXinerama -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangoxft-1.0 -lXft -lfreetype -lXext -lXrender -lfontconfig -lpangox-1.0 -lX11 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -liconv -Wl,--export-dynamic -L/usr/local/lib -L/usr/X11R6/lib -lgnomeprintui-2-2 -lgnomeprint-2-2 -lgnomecanvas-2 -lxml2 -lz -lart_lgpl_2 -lpangoft2-1.0 -lgtk-x11-2.0 -lgdk-x11-2.0 -lXinerama -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangoxft-1.0 -lXft -lfreetype -lXext -lXrender -lfontconfig -lpangox-1.0 -lX11 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -liconv -L/usr/local/lib -lpcreposix -lpcre -lssl -lcrypto -liconv -lldap -llber -laspell -L/usr/local/lib -liconv -liconv -lesmtp -pthread -lesmtp mkdir .libs cc -O -pipe -o balsa address-book-config.o ab-window.o balsa-app.o balsa-icons.o balsa-index-threading.o balsa-index.o balsa-mblist.o balsa-message.o expand-alias.o filter-edit-callbacks.o filter-edit-dialog.o filter-export-callbacks.o filter-export-dialog.o filter-run-callbacks.o filter-run-dialog.o folder-conf.o information-dialog.o mailbox-conf.o mailbox-node.o main-window.o main.o message-window.o pref-manager.o print.o quote-color.o save-restore.o sendmsg-window.o spell-check.o store-address.o toolbar-factory.o toolbar-prefs.o -pthread -Wl,--export-dynamic -Wl,--export-dynamic -pthread ../libbalsa/libbalsa.a ../libmutt/imap/libimap.a ../libmutt/libmutt.a ../libinit_balsa/libinit_balsa.a -lltdl -lintl -L/usr/local/lib -L/usr/X11R6/lib -lgnomeui-2 -lSM -lICE -lbonoboui-2 -lgnome-2 -lbonobo-2 -lgconf-2 -lgnomevfs-2 -lbonobo-activation -lORBit-2 -llinc -lgthread-2.0 -lgtkhtml-2 -lgnomeprintui-2-2 -lgnomeprint-2-2 -lgnomecanvas-2 -lxml2 -lz -lart_lgpl_2 -lpangoft2-1.0 -lgtk- x! 11-2.0 -lgdk-x11-2.0 -lXinerama -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangoxft-1.0 -lXft -lfreetype -lXext -lXrender -lfontconfig -lpangox-1.0 -lX11 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lpcreposix -lpcre -lssl -lcrypto -lldap -llber /usr/local/lib/libaspell.so -lpspell -lpspell-impl -liconv -lesmtp -Wl,--rpath -Wl,/usr/local/lib -Wl,--rpath -Wl,/usr/local/lib /usr/libexec/elf/ld: cannot find -lpspell-impl *** Error code 1 >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 8:39:18 2003 Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E22F137B401 for ; Wed, 26 Feb 2003 08:39:16 -0800 (PST) Received: from mail.liwing.de (mail.liwing.de [213.70.188.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id D892043FCB for ; Wed, 26 Feb 2003 08:39:14 -0800 (PST) (envelope-from rehsack@liwing.de) Received: (qmail 52663 invoked from network); 26 Feb 2003 16:39:13 -0000 Received: from stingray.liwing.de (HELO liwing.de) ([213.70.188.164]) (envelope-sender ) by mail.liwing.de (qmail-ldap-1.03) with SMTP for ; 26 Feb 2003 16:39:13 -0000 Message-ID: <3E5CEDB1.2050106@liwing.de> Date: Wed, 26 Feb 2003 17:39:13 +0100 From: Jens Rehsack Organization: LiWing IT-Services User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0.2) Gecko/20021120 Netscape/7.01 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Tilman Linneweh Cc: freebsd-ports-bugs@FreeBSD.org, dirk@FreeBSD.org Subject: Re: ports/48703: [PATCH] update www/mod_php4: fix build DOM XML References: <200302261517.h1QFHRiY073436@freefall.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Tilman Linneweh wrote: > Synopsis: [PATCH] update www/mod_php4: fix build DOM XML > > Responsible-Changed-From-To: freebsd-ports-bugs->dirk > Responsible-Changed-By: arved > Responsible-Changed-When: Wed Feb 26 07:17:07 PST 2003 > Responsible-Changed-Why: > Over to maintainer > > http://www.freebsd.org/cgi/query-pr.cgi?pr=48703 > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports-bugs" in the body of the message > > A similar PR is opened: 48270. (http://www.freebsd.org/cgi/query-pr.cgi?pr=48270) This allows to build mod_php4 either with or without dom-xslt. Even it allows dom-exslt using libxslt. So I recommend to close PR/48703 and commit PR/48270. Kind regardsm Jens To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 8:40: 6 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C6EE837B401 for ; Wed, 26 Feb 2003 08:40:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62BC543FBD for ; Wed, 26 Feb 2003 08:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QGe3NS098776 for ; Wed, 26 Feb 2003 08:40:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QGe3kB098775; Wed, 26 Feb 2003 08:40:03 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3FC1D37B401 for ; Wed, 26 Feb 2003 08:34:43 -0800 (PST) Received: from helo.liwing.de (helo.liwing.de [213.70.188.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id D643343F85 for ; Wed, 26 Feb 2003 08:34:41 -0800 (PST) (envelope-from root@helo.liwing.de) Received: from helo.liwing.de (localhost.liwing.de [127.0.0.1]) by helo.liwing.de (8.12.7/8.12.7) with ESMTP id h1QGYe3F028689; Wed, 26 Feb 2003 16:34:40 GMT (envelope-from root@helo.liwing.de) Received: (from root@localhost) by helo.liwing.de (8.12.7/8.12.7/Submit) id h1QGYdEl028688; Wed, 26 Feb 2003 16:34:39 GMT Message-Id: <200302261634.h1QGYdEl028688@helo.liwing.de> Date: Wed, 26 Feb 2003 16:34:39 GMT From: Rene Fischmann Reply-To: Rene Fischmann To: FreeBSD-gnats-submit@FreeBSD.org Cc: Rene Fischmann , Jens Rehsack X-Send-Pr-Version: 3.113 Subject: ports/48709: Failed to build package for net/cvsup-without-gui Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48709 >Category: ports >Synopsis: Failed to build package for net/cvsup-without-gui >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 26 08:40:02 PST 2003 >Closed-Date: >Last-Modified: >Originator: Rene Fischmann >Release: FreeBSD 5.0-CURRENT i386 >Organization: LiWing IT-Services >Environment: System: FreeBSD hogthrob.muppets.liwing.de 5.0-CURRENT FreeBSD 5.0-CURRENT #1: Wed Feb 26 13:16:45 GMT 2003 root@hogthrob.muppets.liwing.de:/usr/obj/usr/src/sys/HOGTHROB i386 FreeBSD buildjail 5.0-CURRENT FreeBSD 5.0-CURRENT #1: Wed Feb 26 13:16:45 GMT 2003 root@hogthrob.muppets.liwing.de:/usr/obj/usr/src/sys/HOGTHROB i386 >Description: When I try to build a package from cvsup-without-gui, I got following error message: root@buildjail # env WRKDIRPREFIX=/usr/obj/ PKGDIR=/tmp/ make package There is no COMMENT variable defined for this port, please rectify this. *** Error code 1 Stop. >How-To-Repeat: env WRKDIRPREFIX=/usr/obj/ PKGDIR=/tmp/ make package >Fix: Either the port has to be fixed or bsd.port.mk should do the check for the COMMENTFILE later, because building a package for net/cvsup fails, too. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 9:10: 9 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1690537B406 for ; Wed, 26 Feb 2003 09:10:07 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3636A43FBF for ; Wed, 26 Feb 2003 09:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QHA2NS016417 for ; Wed, 26 Feb 2003 09:10:02 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QHA2E0016416; Wed, 26 Feb 2003 09:10:02 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D571A37B401 for ; Wed, 26 Feb 2003 09:07:29 -0800 (PST) Received: from gilliam.users.flyingcroc.net (gilliam.users.flyingcroc.net [207.246.128.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4645643FB1 for ; Wed, 26 Feb 2003 09:07:28 -0800 (PST) (envelope-from joek@zircon.staff.flyingcroc.net) Received: from zircon.staff.flyingcroc.net (zircon.staff.flyingcroc.net [207.246.150.92]) by gilliam.users.flyingcroc.net (8.9.3/8.9.3) with SMTP id JAA14679 for ; Wed, 26 Feb 2003 09:07:27 -0800 (PST) Received: (qmail 73722 invoked by uid 1001); 26 Feb 2003 17:07:27 -0000 Message-Id: <20030226170727.73721.qmail@zircon.staff.flyingcroc.net> Date: 26 Feb 2003 17:07:27 -0000 From: Joe Kelsey Reply-To: Joe Kelsey To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48710: graphics/gthumb2 fails to find libgnomeprint-2.0.pc Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48710 >Category: ports >Synopsis: graphics/gthumb2 fails to find libgnomeprint-2.0.pc >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 26 09:10:01 PST 2003 >Closed-Date: >Last-Modified: >Originator: Joe Kelsey >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: FreeBSD zircon.staff.flyingcroc.net 4.7-STABLE FreeBSD 4.7-STABLE #5: Tue Jan 28 10:02:45 PST 2003 joek@zircon.staff.flyingcroc.net:/usr/obj/usr/src/sys/ZIRCON i386 >Description: graphics/gthumb2 fails to install due to configure script unable to find libgnomeprint-2.0.pc. Latest libgnomeprint installs libgnomeprint-2.2.pc in /usr/X11R6/libdata/pkgconfig. >How-To-Repeat: portupgrade gthumb2 >Fix: I do not understand pkgconfig... >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 9:46: 3 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5084037B401; Wed, 26 Feb 2003 09:46:02 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D582A43F3F; Wed, 26 Feb 2003 09:46:01 -0800 (PST) (envelope-from fjoe@FreeBSD.org) Received: from freefall.freebsd.org (fjoe@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QHk1NS027612; Wed, 26 Feb 2003 09:46:01 -0800 (PST) (envelope-from fjoe@freefall.freebsd.org) Received: (from fjoe@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QHk1MP027608; Wed, 26 Feb 2003 09:46:01 -0800 (PST) Date: Wed, 26 Feb 2003 09:46:01 -0800 (PST) From: Max Khon Message-Id: <200302261746.h1QHk1MP027608@freefall.freebsd.org> To: danfe@regency.nsu.ru, fjoe@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48243: NEW PORT: devel/tpasm, a cross-assembler for 6805, 6809, 68HC11, 6502, Sunplus, 8051, Z80, PIC, and AVR Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: NEW PORT: devel/tpasm, a cross-assembler for 6805, 6809, 68HC11, 6502, Sunplus, 8051, Z80, PIC, and AVR State-Changed-From-To: open->closed State-Changed-By: fjoe State-Changed-When: Wed Feb 26 09:45:33 PST 2003 State-Changed-Why: Thanks, committed. http://www.freebsd.org/cgi/query-pr.cgi?pr=48243 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 9:53:30 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77EC437B401; Wed, 26 Feb 2003 09:53:29 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18F2743F93; Wed, 26 Feb 2003 09:53:29 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from freefall.freebsd.org (marcus@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QHrSNS031750; Wed, 26 Feb 2003 09:53:28 -0800 (PST) (envelope-from marcus@freefall.freebsd.org) Received: (from marcus@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QHrS7m031746; Wed, 26 Feb 2003 09:53:28 -0800 (PST) Date: Wed, 26 Feb 2003 09:53:28 -0800 (PST) From: Joe Marcus Clarke Message-Id: <200302261753.h1QHrS7m031746@freefall.freebsd.org> To: marcus@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org Subject: Re: ports/48708: mail/balsa2 link error Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: mail/balsa2 link error Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: marcus Responsible-Changed-When: Wed Feb 26 09:53:17 PST 2003 Responsible-Changed-Why: Over to maintainers. http://www.freebsd.org/cgi/query-pr.cgi?pr=48708 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 9:56:17 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3229337B401; Wed, 26 Feb 2003 09:56:16 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C014A43FD7; Wed, 26 Feb 2003 09:56:15 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from freefall.freebsd.org (marcus@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QHuFNS032855; Wed, 26 Feb 2003 09:56:15 -0800 (PST) (envelope-from marcus@freefall.freebsd.org) Received: (from marcus@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QHuF9E032850; Wed, 26 Feb 2003 09:56:15 -0800 (PST) Date: Wed, 26 Feb 2003 09:56:15 -0800 (PST) From: Joe Marcus Clarke Message-Id: <200302261756.h1QHuF9E032850@freefall.freebsd.org> To: joek@zircon.staff.flyingcroc.net, marcus@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org Subject: Re: ports/48710: graphics/gthumb2 fails to find libgnomeprint-2.0.pc Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: graphics/gthumb2 fails to find libgnomeprint-2.0.pc State-Changed-From-To: open->closed State-Changed-By: marcus State-Changed-When: Wed Feb 26 09:54:38 PST 2003 State-Changed-Why: Over to maintainers. Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: marcus Responsible-Changed-When: Wed Feb 26 09:54:38 PST 2003 Responsible-Changed-Why: gThumb2 uses libgnomeprint[ui]20 not libgnomeprint[ui]. Therefore, you need to make sure your ports tree is up-to-date, then do: # rm /usr/local/lib/compat/pkg/*print* The build will work. http://www.freebsd.org/cgi/query-pr.cgi?pr=48710 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 10: 2:25 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 960BB37B405; Wed, 26 Feb 2003 10:02:24 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 346CF43F75; Wed, 26 Feb 2003 10:02:24 -0800 (PST) (envelope-from fjoe@FreeBSD.org) Received: from freefall.freebsd.org (fjoe@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QI2ONS037062; Wed, 26 Feb 2003 10:02:24 -0800 (PST) (envelope-from fjoe@freefall.freebsd.org) Received: (from fjoe@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QI2O6U037058; Wed, 26 Feb 2003 10:02:24 -0800 (PST) Date: Wed, 26 Feb 2003 10:02:24 -0800 (PST) From: Max Khon Message-Id: <200302261802.h1QI2O6U037058@freefall.freebsd.org> To: danfe@regency.nsu.ru, fjoe@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/46975: NEW PORT: x11-wm/wampager, a mini pager for waimea window manager Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: NEW PORT: x11-wm/wampager, a mini pager for waimea window manager State-Changed-From-To: open->closed State-Changed-By: fjoe State-Changed-When: Wed Feb 26 10:01:51 PST 2003 State-Changed-Why: Thanks, committed http://www.freebsd.org/cgi/query-pr.cgi?pr=46975 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 10:10: 8 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 21DBE37B401 for ; Wed, 26 Feb 2003 10:10:05 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E769A43FBD for ; Wed, 26 Feb 2003 10:10:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QIA3NS043404 for ; Wed, 26 Feb 2003 10:10:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QIA3Ht043403; Wed, 26 Feb 2003 10:10:03 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D3EC037B401 for ; Wed, 26 Feb 2003 10:08:11 -0800 (PST) Received: from bsdlab.tf-md.net (64-93-1-35.client.dsl.net [64.93.1.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE4C643F75 for ; Wed, 26 Feb 2003 10:08:09 -0800 (PST) (envelope-from kstailey@bsdlab.tf-md.net) Received: from bsdlab.tf-md.net (localhost.tf-md.net [127.0.0.1]) by bsdlab.tf-md.net (8.12.6/8.12.6) with ESMTP id h1QI4Xw5032931 for ; Wed, 26 Feb 2003 13:04:33 -0500 (EST) (envelope-from kstailey@bsdlab.tf-md.net) Received: (from kstailey@localhost) by bsdlab.tf-md.net (8.12.6/8.12.6/Submit) id h1QI4X5G032930; Wed, 26 Feb 2003 13:04:33 -0500 (EST) Message-Id: <200302261804.h1QI4X5G032930@bsdlab.tf-md.net> Date: Wed, 26 Feb 2003 13:04:33 -0500 (EST) From: Ken Stailey Reply-To: Ken Stailey To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48711: new location of ITS RP06 disk image distfile Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48711 >Category: ports >Synopsis: new location of ITS RP06 disk image distfile >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Feb 26 10:10:03 PST 2003 >Closed-Date: >Last-Modified: >Originator: Ken Stailey >Release: FreeBSD 5.0-RELEASE i386 >Organization: self >Environment: System: FreeBSD bsdlab.tf-md.net 5.0-RELEASE FreeBSD 5.0-RELEASE #4: Wed Jan 29 19:15:18 EST 2003 kstailey@bsdlab.tf-md.net:/usr/obj/usr/src/sys/BSDLAB i386 >Description: Old location for disfile no longer serves. Can't contact those involved. >How-To-Repeat: portinstall its >Fix: RCS file: /home/ncvs/ports/emulators/its/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- Makefile 2003/01/19 13:55:28 1.1 +++ Makefile 2003/02/26 18:05:07 @@ -8,7 +8,9 @@ PORTNAME= its PORTVERSION= 1.0 CATEGORIES= emulators -MASTER_SITES= ftp://ftp.usefulprojects.com/pub/FreeBSD/ports/distfiles/ +MASTER_SITES= http://filbert.tubas.net/~kstailey/ITS/ \ + http://free.babolo.ru/src/ \ + http://dl.droso.net/FreeBSD/distfiles/ DISTNAME= PI-ITS-RP06.0-dbd9 EXTRACT_SUFX= .bz2 EXTRACT_ONLY= # none >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 10:14:32 2003 Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 146D437B401; Wed, 26 Feb 2003 10:14:32 -0800 (PST) Received: from unity.copyleft.no (unity.copyleft.no [212.71.72.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DBFB43F93; Wed, 26 Feb 2003 10:14:31 -0800 (PST) (envelope-from johs@unity.copyleft.no) Received: from johs by unity.copyleft.no with local (Exim 3.36 #1) id 18o648-000DUg-00; Wed, 26 Feb 2003 19:14:00 +0100 To: FreeBSD-gnats-submit@FreeBSD.org Cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48258: [NEW PORT] Meta-CVS From: "Johannes =?iso-8859-1?q?Gr=F8dem?=" Date: Wed, 26 Feb 2003 19:13:59 +0100 In-Reply-To: <200302132110.h1DLA6Pd018353@freefall.freebsd.org> (FreeBSD-gnats-submit@FreeBSD.org's message of "Thu, 13 Feb 2003 13:10:06 -0800 (PST)") Message-ID: User-Agent: Gnus/5.090016 (Oort Gnus v0.16) Emacs/21.2 References: <200302132110.h1DLA6Pd018353@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I'll just keep an updated version on http://www.kopkillah.com/pr0n/meta-cvs.shar, so if it gets accepted, just get it there. (I've now updated the port for Meta-CVS 1.0.5.) -- Johannes Grødem To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 10:20: 6 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC2A537B401 for ; Wed, 26 Feb 2003 10:20:05 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E840143FB1 for ; Wed, 26 Feb 2003 10:20:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QIK4NS048829 for ; Wed, 26 Feb 2003 10:20:04 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QIK4C6048827; Wed, 26 Feb 2003 10:20:04 -0800 (PST) Date: Wed, 26 Feb 2003 10:20:04 -0800 (PST) Message-Id: <200302261820.h1QIK4C6048827@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: "Johannes =?iso-8859-1?q?Gr=F8dem?=" Subject: Re: ports/48258: [NEW PORT] Meta-CVS Reply-To: "Johannes =?iso-8859-1?q?Gr=F8dem?=" Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48258; it has been noted by GNATS. From: "Johannes =?iso-8859-1?q?Gr=F8dem?=" To: FreeBSD-gnats-submit@FreeBSD.org Cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48258: [NEW PORT] Meta-CVS Date: Wed, 26 Feb 2003 19:13:59 +0100 I'll just keep an updated version on http://www.kopkillah.com/pr0n/meta-cvs.shar, so if it gets accepted, just get it there. (I've now updated the port for Meta-CVS 1.0.5.) -- Johannes Grødem To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 10:20: 9 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A03F37B405 for ; Wed, 26 Feb 2003 10:20:07 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5252843FDD for ; Wed, 26 Feb 2003 10:20:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QIK5NS048843 for ; Wed, 26 Feb 2003 10:20:05 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QIK5jS048842; Wed, 26 Feb 2003 10:20:05 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7FFE337B401 for ; Wed, 26 Feb 2003 10:18:30 -0800 (PST) Received: from bsdlab.tf-md.net (64-93-1-35.client.dsl.net [64.93.1.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF50E43F85 for ; Wed, 26 Feb 2003 10:18:28 -0800 (PST) (envelope-from kstailey@bsdlab.tf-md.net) Received: from bsdlab.tf-md.net (localhost.tf-md.net [127.0.0.1]) by bsdlab.tf-md.net (8.12.6/8.12.6) with ESMTP id h1QIErw5033062 for ; Wed, 26 Feb 2003 13:14:53 -0500 (EST) (envelope-from kstailey@bsdlab.tf-md.net) Received: (from kstailey@localhost) by bsdlab.tf-md.net (8.12.6/8.12.6/Submit) id h1QIEqC3033061; Wed, 26 Feb 2003 13:14:52 -0500 (EST) Message-Id: <200302261814.h1QIEqC3033061@bsdlab.tf-md.net> Date: Wed, 26 Feb 2003 13:14:52 -0500 (EST) From: Ken Stailey Reply-To: Ken Stailey To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48712: RP06 disk image of MIT ITS disfile location change Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48712 >Category: ports >Synopsis: RP06 disk image of MIT ITS disfile location change >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Feb 26 10:20:04 PST 2003 >Closed-Date: >Last-Modified: >Originator: Ken Stailey >Release: FreeBSD 5.0-RELEASE i386 >Organization: self >Environment: System: FreeBSD bsdlab.tf-md.net 5.0-RELEASE FreeBSD 5.0-RELEASE #4: Wed Jan 29 19:15:18 EST 2003 kstailey@bsdlab.tf-md.net:/usr/obj/usr/src/sys/BSDLAB i386 >Description: The ftp server in the Makefile's MASTER_SITES list no longer serves the distfile and the site owner won't reply to my E-mail asking about it. >How-To-Repeat: portinstall its >Fix: RCS file: /home/ncvs/ports/emulators/its/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- Makefile 2003/01/19 13:55:28 1.1 +++ Makefile 2003/02/26 18:05:07 @@ -8,7 +8,9 @@ PORTNAME= its PORTVERSION= 1.0 CATEGORIES= emulators -MASTER_SITES= ftp://ftp.usefulprojects.com/pub/FreeBSD/ports/distfiles/ +MASTER_SITES= http://filbert.tubas.net/~kstailey/ITS/ \ + http://free.babolo.ru/src/ \ + http://dl.droso.net/FreeBSD/distfiles/ DISTNAME= PI-ITS-RP06.0-dbd9 EXTRACT_SUFX= .bz2 EXTRACT_ONLY= # none >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 11:30:14 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4134E37B401 for ; Wed, 26 Feb 2003 11:30:10 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5AC7543FE1 for ; Wed, 26 Feb 2003 11:30:09 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QJU9NS074975 for ; Wed, 26 Feb 2003 11:30:09 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QJU9Q7074974; Wed, 26 Feb 2003 11:30:09 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C07AF37B405 for ; Wed, 26 Feb 2003 11:27:06 -0800 (PST) Received: from skyrock.fr (sortie6.orbus.fr [212.129.63.145]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0EAD243F93 for ; Wed, 26 Feb 2003 11:27:06 -0800 (PST) (envelope-from root@skyrock.fr) Received: by burotik.sky (Postfix, from userid 0) id 0BFD41AC; Wed, 26 Feb 2003 20:30:59 +0100 (CET) Message-Id: <20030226193059.0BFD41AC@burotik.sky> Date: Wed, 26 Feb 2003 20:30:59 +0100 (CET) From: Frank Denis Reply-To: Frank Denis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48714: New port : PLB Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48714 >Category: ports >Synopsis: New port : PLB >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Feb 26 11:30:08 PST 2003 >Closed-Date: >Last-Modified: >Originator: Frank Denis >Release: FreeBSD 4.7-RELEASE i386 >Organization: 42 Networks >Environment: System: FreeBSD burotik.sky 4.7-RELEASE FreeBSD 4.7-RELEASE #0: Wed Oct 9 15:08:34 GMT 2002 root@builder.freebsdmall.com:/usr/obj/usr/src/sys/GENERIC i386 libraries (multiple lines)> >Description: diff -urN /usr/ports/net/plb/Makefile /tmp/plb/Makefile --- /usr/ports/net/plb/Makefile Thu Jan 1 01:00:00 1970 +++ /tmp/plb/Makefile Wed Feb 26 20:11:31 2003 @@ -0,0 +1,35 @@ +PORTNAME= plb +PORTVERSION= 0.3 +PORTREVISION= 0 +CATEGORIES= net ipv6 +MASTER_SITES= http://plb.sunsite.dk/files/ + +MAINTAINER= j@pureftpd.org +COMMENT= A high-performance HTTP load balancer + +BUILD_DEPENDS+= ${LOCALBASE}/lib/libevent.a:${PORTSDIR}/devel/libevent + +GNU_CONFIGURE= yes + +CONFIGURE_ARGS+= --sysconfdir=${PREFIX}/etc + +MAN8= plb.8 + +.include + +DOCS= AUTHORS CONTACT COPYING NEWS README THANKS TODO + +post-install: + ${INSTALL_DATA} ${WRKSRC}/plb.conf ${PREFIX}/etc/plb.conf.sample + @${SED} -e 's,/usr/local,${PREFIX},g' ${FILESDIR}/plb.sh.sample > ${PREFIX}/etc/rc.d/plb.sh.sample + +.if !defined(NOPORTDOCS) + @${MKDIR} ${PREFIX}/share/doc/plb + (cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${PREFIX}/share/doc/plb) +.endif + @${ECHO_CMD} + @${ECHO_CMD} "Now you need to examine ${PREFIX}/etc/plb.conf.sample," + @${ECHO_CMD} "to adapt it to your needs, and save it as ${PREFIX}/etc/plb.conf.sample." + @${ECHO_CMD} + +.include diff -urN /usr/ports/net/plb/distinfo /tmp/plb/distinfo --- /usr/ports/net/plb/distinfo Thu Jan 1 01:00:00 1970 +++ /tmp/plb/distinfo Wed Feb 26 19:40:24 2003 @@ -0,0 +1 @@ +MD5 (plb-0.3.tar.gz) = 74c1dee5387afc6cff169b0cf8767bbd diff -urN /usr/ports/net/plb/files/plb.sh.sample /tmp/plb/files/plb.sh.sample --- /usr/ports/net/plb/files/plb.sh.sample Thu Jan 1 01:00:00 1970 +++ /tmp/plb/files/plb.sh.sample Wed Feb 26 20:08:43 2003 @@ -0,0 +1,19 @@ +#!/bin/sh + +case "$1" in + +start) + if [ -x /usr/local/bin/plb ]; then + /usr/local/bin/plb -B -c /usr/local/etc/plb.conf && echo -n ' plb' + fi + ;; + +stop) + kill $(cat /var/run/plb.pid) + rm -f /var/run/plb.pid + ;; +*) + echo "$0 start | stop" + ;; + +esac diff -urN /usr/ports/net/plb/pkg-descr /tmp/plb/pkg-descr --- /usr/ports/net/plb/pkg-descr Thu Jan 1 01:00:00 1970 +++ /tmp/plb/pkg-descr Wed Feb 26 20:12:41 2003 @@ -0,0 +1,8 @@ +Pure Load Balancer is a high-performance software load balancer for the +HTTP protocol. + +It uses an asynchronous non-forking/non-blocking model, and provides +fail-over abilities. When a backend server goes down, it automatically +removes it from the server pool, and tries to bring it back to life later. + +WWW: http://plb.sunsite.dk/ diff -urN /usr/ports/net/plb/pkg-plist /tmp/plb/pkg-plist --- /usr/ports/net/plb/pkg-plist Thu Jan 1 01:00:00 1970 +++ /tmp/plb/pkg-plist Wed Feb 26 20:06:56 2003 @@ -0,0 +1,11 @@ +bin/plb +etc/plb.conf.sample +etc/rc.d/plb.sh.sample +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/CONTACT +%%PORTDOCS%%%%DOCSDIR%%/COPYING +%%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/THANKS +%%PORTDOCS%%%%DOCSDIR%%/TODO +%%PORTDOCS%%@dirrm %%DOCSDIR%% >How-To-Repeat: - >Fix: This is a port for Pure Load Balancer (http://plb.sunsite.dk/), a non-forking HTTP load balancer. Tested on FreeBSD 4.7-STABLE, but probably works on 5.0 as well. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 11:40:17 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8FF2237B401 for ; Wed, 26 Feb 2003 11:40:16 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2619B43FD7 for ; Wed, 26 Feb 2003 11:40:16 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QJeFNS077133 for ; Wed, 26 Feb 2003 11:40:15 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QJeF7t077132; Wed, 26 Feb 2003 11:40:15 -0800 (PST) Date: Wed, 26 Feb 2003 11:40:15 -0800 (PST) Message-Id: <200302261940.h1QJeF7t077132@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Larry Rosenman Subject: Re: ports/48689: net/ethereal port dies (OpenSSL 0.9.7?) Reply-To: Larry Rosenman Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48689; it has been noted by GNATS. From: Larry Rosenman To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/48689: net/ethereal port dies (OpenSSL 0.9.7?) Date: Wed, 26 Feb 2003 13:37:06 -0600 portupgrade -f net-snmp portupgrade ethereal fixed it. It appears that the net-snmp port was OpenSSL sensitive. LER -- Larry Rosenman http://www.lerctr.org/~ler Phone: +1 972-414-9812 E-Mail: ler@lerctr.org US Mail: 1905 Steamboat Springs Drive, Garland, TX 75044-6749 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 12:40: 7 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7661437B401 for ; Wed, 26 Feb 2003 12:40:05 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93DA043FBF for ; Wed, 26 Feb 2003 12:40:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QKe4NS093799 for ; Wed, 26 Feb 2003 12:40:04 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QKe4w7093798; Wed, 26 Feb 2003 12:40:04 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD27437B409 for ; Wed, 26 Feb 2003 12:35:21 -0800 (PST) Received: from grizzly.droso.dk (grizzly.droso.dk [62.79.38.252]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1CC1543FA3 for ; Wed, 26 Feb 2003 12:35:20 -0800 (PST) (envelope-from erwin@grizzly.droso.dk) Received: by grizzly.droso.dk (Postfix, from userid 1000) id A2EAD8226; Wed, 26 Feb 2003 21:35:13 +0100 (CET) Message-Id: <20030226203513.A2EAD8226@grizzly.droso.dk> Date: Wed, 26 Feb 2003 21:35:13 +0100 (CET) From: Erwin Lansing Reply-To: Erwin Lansing To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48716: fix build on -current for textproc/pdftohtml Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48716 >Category: ports >Synopsis: fix build on -current for textproc/pdftohtml >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Feb 26 12:40:03 PST 2003 >Closed-Date: >Last-Modified: >Originator: Erwin Lansing >Release: FreeBSD 5.0-RELEASE i386 >Organization: pil.dk >Environment: System: FreeBSD grizzly.droso.net 5.0-RELEASE FreeBSD 5.0-RELEASE #0: Sat Feb 1 17:56:04 CET 2003 root@grizzly.droso.net:/usr/src/sys/i386/compile/GRIZZLY i386 >Description: this patch fixes the build on 5.x Submitted by: Mikhail Teterin >How-To-Repeat: >Fix: add the following patch into files/ --- patch-HtmlOutputDev begins here --- --- src/HtmlOutputDev.cc Sun Jan 12 19:09:52 2003 +++ src/HtmlOutputDev.cc Wed Feb 26 13:47:52 2003 @@ -789,5 +789,5 @@ HtmlOutputDev::HtmlOutputDev(char *fileName, char *title, char *author, char *keywords, char *subject, char *date, - GBool rawOrder, int firstPage = 1) + GBool rawOrder, int firstPage /* default value is 1 */) { char *htmlEncoding; --- patch-HtmlOutputDev ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 12:47:23 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8DBB637B401; Wed, 26 Feb 2003 12:47:22 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 311D443F3F; Wed, 26 Feb 2003 12:47:22 -0800 (PST) (envelope-from vanilla@FreeBSD.org) Received: from freefall.freebsd.org (vanilla@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QKlMNS095922; Wed, 26 Feb 2003 12:47:22 -0800 (PST) (envelope-from vanilla@freefall.freebsd.org) Received: (from vanilla@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QKlMk0095918; Wed, 26 Feb 2003 12:47:22 -0800 (PST) Date: Wed, 26 Feb 2003 12:47:22 -0800 (PST) From: "Vanilla I. Shu" Message-Id: <200302262047.h1QKlMk0095918@freefall.freebsd.org> To: vanilla@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vainlla@FreeBSD.org Subject: Re: ports/48714: New port : PLB Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port : PLB Responsible-Changed-From-To: freebsd-ports-bugs->vainlla Responsible-Changed-By: vanilla Responsible-Changed-When: Wed Feb 26 12:47:06 PST 2003 Responsible-Changed-Why: I will handle this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=48714 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 12:48:13 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1B3EB37B401; Wed, 26 Feb 2003 12:48:13 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43E6A43F3F; Wed, 26 Feb 2003 12:48:12 -0800 (PST) (envelope-from mi@FreeBSD.org) Received: from freefall.freebsd.org (mi@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QKmCNS095986; Wed, 26 Feb 2003 12:48:12 -0800 (PST) (envelope-from mi@freefall.freebsd.org) Received: (from mi@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QKmCAC095982; Wed, 26 Feb 2003 12:48:12 -0800 (PST) Date: Wed, 26 Feb 2003 12:48:12 -0800 (PST) From: Mikhail Teterin Message-Id: <200302262048.h1QKmCAC095982@freefall.freebsd.org> To: erwin@lansing.dk, mi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48716: fix build on -current for textproc/pdftohtml Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: fix build on -current for textproc/pdftohtml State-Changed-From-To: open->closed State-Changed-By: mi State-Changed-When: Wed Feb 26 12:47:59 PST 2003 State-Changed-Why: Committed. http://www.freebsd.org/cgi/query-pr.cgi?pr=48716 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 12:50:16 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7513337B401 for ; Wed, 26 Feb 2003 12:50:15 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0EB2743F93 for ; Wed, 26 Feb 2003 12:50:15 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QKoENS096133 for ; Wed, 26 Feb 2003 12:50:14 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QKoEIn096132; Wed, 26 Feb 2003 12:50:14 -0800 (PST) Date: Wed, 26 Feb 2003 12:50:14 -0800 (PST) Message-Id: <200302262050.h1QKoEIn096132@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Dag-Erling Smorgrav Subject: Re: ports/48707 Reply-To: Dag-Erling Smorgrav Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48707; it has been noted by GNATS. From: Dag-Erling Smorgrav To: Sergey A.Osokin Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/48707 Date: Wed, 26 Feb 2003 21:41:19 +0100 Sergey A.Osokin writes: > +FORBIDDEN= http://www.secunia.com/advisories/8155/ FORBIDDEN is a little harsh considering that the current version is not vulnerable out of the box. Did you actually read the advisory? DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 13: 0:32 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6359C37B401 for ; Wed, 26 Feb 2003 13:00:31 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EBC8A43F93 for ; Wed, 26 Feb 2003 13:00:30 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QL0UNS098273 for ; Wed, 26 Feb 2003 13:00:30 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QL0UpP098272; Wed, 26 Feb 2003 13:00:30 -0800 (PST) Date: Wed, 26 Feb 2003 13:00:30 -0800 (PST) Message-Id: <200302262100.h1QL0UpP098272@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Cyrille Lefevre Subject: Re: ports/48428: net/ddup: default system=dyndns (Update to pr ports/40966) Reply-To: Cyrille Lefevre Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48428; it has been noted by GNATS. From: Cyrille Lefevre To: freebsd-gnats-submit@FreeBSD.org, delta@lackas.net Cc: Subject: Re: ports/48428: net/ddup: default system=dyndns (Update to pr ports/40966) Date: Wed, 26 Feb 2003 21:53:56 +0100 approved, thanks PS : misfilled closed PRs where ports/40966 and ports/48452 ! Cyrille. -- mailto:clefevre-news%no-spam@noos.fr.invalid | UNIX is user-friendly; it's Supprimer %no-spam et .invalid pour me repondre. | just particular about who it Remove %no-spam and .invalid to answer me back. | chooses to be friends with. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 13: 0:35 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC92337B401 for ; Wed, 26 Feb 2003 13:00:33 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5997243FA3 for ; Wed, 26 Feb 2003 13:00:33 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QL0XNS098281 for ; Wed, 26 Feb 2003 13:00:33 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QL0W7i098280; Wed, 26 Feb 2003 13:00:32 -0800 (PST) Date: Wed, 26 Feb 2003 13:00:32 -0800 (PST) Message-Id: <200302262100.h1QL0W7i098280@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: "Sergey A. Osokin" Subject: Re: ports/48707 Reply-To: "Sergey A. Osokin" Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48707; it has been noted by GNATS. From: "Sergey A. Osokin" To: Dag-Erling Smorgrav Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/48707 Date: Wed, 26 Feb 2003 23:54:26 +0300 On Wed, Feb 26, 2003 at 09:41:19PM +0100, Dag-Erling Smorgrav wrote: > Sergey A.Osokin writes: > > +FORBIDDEN= http://www.secunia.com/advisories/8155/ > > FORBIDDEN is a little harsh considering that the current version is > not vulnerable out of the box. Did you actually read the advisory? Yes. Quote: A vulnerability exists in the way the Opera browser generates a temporary page for displaying a redirection, when "Automatic redirection" is disabled (not default setting). If not possible to make it FORBIDDEN, maybe notify user at install-time about this vulnerability (via pkg_message/etc.)? -- Rgdz, /"\ ASCII RIBBON CAMPAIGN Sergey Osokin aka oZZ, \ / AGAINST HTML MAIL http://ozz.pp.ru/ X AND NEWS / \ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 14:20:14 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77B9F37B401 for ; Wed, 26 Feb 2003 14:20:10 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 03B9C43FBD for ; Wed, 26 Feb 2003 14:20:10 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QMK9NS023126 for ; Wed, 26 Feb 2003 14:20:09 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QMK99T023125; Wed, 26 Feb 2003 14:20:09 -0800 (PST) Date: Wed, 26 Feb 2003 14:20:09 -0800 (PST) Message-Id: <200302262220.h1QMK99T023125@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Oliver Braun Subject: Re: ports/48601: [new port] mail/mailsync: Mailsync is a way of keeping a collection of mailboxes synchronized Reply-To: Oliver Braun Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48601; it has been noted by GNATS. From: Oliver Braun To: Maxim Tuliuk Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: ports/48601: [new port] mail/mailsync: Mailsync is a way of keeping a collection of mailboxes synchronized Date: Wed, 26 Feb 2003 23:07:34 +0100 Hi, I am willing to commit your port with the following changes. The new shar is available at http://people.freebsd.org/~obraun/pending_ports/mailsync.shar Approved? Regards, Olli --- gg Wed Feb 26 22:09:35 2003 +++ mailsync.shar Wed Feb 26 23:00:21 2003 @@ -5,16 +5,17 @@ # # This archive contains: # +# mailsync # mailsync/files # mailsync/files/patch-Makefile # mailsync/files/patch-mailsync.c -# mailsync/files/patch-examples::mailsync -# mailsync/files/patch-mailsync.1 # mailsync/Makefile # mailsync/distinfo # mailsync/pkg-descr # mailsync/pkg-plist # +echo c - mailsync +mkdir -p mailsync > /dev/null 2>&1 echo c - mailsync/files mkdir -p mailsync/files > /dev/null 2>&1 echo x - mailsync/files/patch-Makefile @@ -26,14 +27,14 @@ X X # path to c-client headers X-C = /usr/include/c-client -X+C = /usr/local/include/c-client +X+C = ${PREFIX}/include/c-client X #C = ../../libs/imap-2002.RC5/c-client/ X ##C = /usr/include/c-client -I/usr/include/g++-v3/ X X # path to c-client library X # linking dynamically X-CCLIENTLIB = /usr/lib/libc-client.so -X+CCLIENTLIB = /usr/local/lib/libc-client4.so +X+CCLIENTLIB = ${PREFIX}/lib/libc-client4.so X # linkging statically X #CCLIENTLIB = ../imap-2001a/c-client/c-client.a X @@ -63,39 +64,6 @@ X X //------------------------------- Defines ------------------------------- END-of-mailsync/files/patch-mailsync.c -echo x - mailsync/files/patch-examples::mailsync -sed 's/^X//' >mailsync/files/patch-examples::mailsync << 'END-of-mailsync/files/patch-examples::mailsync' -X--- examples/mailsync.orig Tue Jan 29 16:28:12 2002 -X+++ examples/mailsync Mon Feb 3 22:53:30 2003 -X@@ -9,8 +9,8 @@ -X # Tomas Pospisek -X # -X # see also: -X-# [1] /usr/share/doc/mailsync/README -X-# [2] /usr/share/doc/libc-client-ssl2001/naming.txt.gz -X+# [1] /usr/local/share/doc/mailsync/README -X+# [2] /usr/local/share/doc/libc-client-ssl2001/naming.txt.gz -X # [3] rfc2060 -X # -X -END-of-mailsync/files/patch-examples::mailsync -echo x - mailsync/files/patch-mailsync.1 -sed 's/^X//' >mailsync/files/patch-mailsync.1 << 'END-of-mailsync/files/patch-mailsync.1' -X--- mailsync.1.orig Wed Nov 6 13:06:52 2002 -X+++ mailsync.1 Mon Feb 3 22:55:42 2003 -X@@ -76,9 +76,9 @@ -X Show debug info. -X .SH SEE ALSO -X There is more documentation in -X-.IR /usr/share/doc/mailsync -X+.IR /usr/local/share/doc/mailsync -X , and in -X-.IR /usr/share/doc/libc-clientxxxxxx/internal.txt -X+.IR /usr/local/share/doc/libc-clientxxxxxx/internal.txt -X .SH AUTHOR -X Originally written by Jaldhar H. Vyas for the Debian -X GNU/Linux system. Updates by T. Pospisek . -END-of-mailsync/files/patch-mailsync.1 echo x - mailsync/Makefile sed 's/^X//' >mailsync/Makefile << 'END-of-mailsync/Makefile' X# New ports collection makefile for: mailsync @@ -106,35 +74,40 @@ X# X XPORTNAME= mailsync -XPORTVERSION= 4.4.4-1 +XPORTVERSION= 4.4.4 XCATEGORIES= mail XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= ${PORTNAME} -XDISTNAME= ${PORTNAME}_${PORTVERSION} -X -XWRKSRC= ${WRKDIR}/${PORTNAME} +XDISTNAME= ${PORTNAME}_${PORTVERSION}-1 X XMAINTAINER= mt@primats.org.ua XCOMMENT= Mailsync is a way of keeping a collection of mailboxes synchronized X XLIB_DEPENDS= c-client4.8:${PORTSDIR}/mail/cclient X +XWRKSRC= ${WRKDIR}/${PORTNAME} +X XUSE_GMAKE= yes +XUSE_REINPLACE= yes X XALL_TARGET= default X XMAN1= mailsync.1 X +Xpost-patch: +X @${REINPLACE_CMD} -e 's|/usr|${PREFIX}|g' \ +X ${WRKSRC}/examples/mailsync \ +X ${WRKSRC}/mailsync.1 +X Xdo-install: X ${INSTALL_SCRIPT} ${WRKSRC}/mailsync ${PREFIX}/bin X ${INSTALL_MAN} ${WRKSRC}/mailsync.1 ${PREFIX}/man/man1 X.if !defined(NOPORTDOCS) -X ${MKDIR} ${PREFIX}/share/doc/${PORTNAME} -X ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/${PORTNAME} +X ${MKDIR} ${DOCSDIR} +X ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} X.endif -X ${MKDIR} ${PREFIX}/share/examples/${PORTNAME} -X ${INSTALL_DATA} ${WRKSRC}/examples/mailsync \ -X ${PREFIX}/share/examples/${PORTNAME} +X ${MKDIR} ${EXAMPLESDIR} +X ${INSTALL_DATA} ${WRKSRC}/examples/mailsync ${EXAMPLESDIR} X X.include END-of-mailsync/Makefile @@ -152,9 +125,10 @@ echo x - mailsync/pkg-plist sed 's/^X//' >mailsync/pkg-plist << 'END-of-mailsync/pkg-plist' Xbin/mailsync -Xshare/doc/mailsync/README +X%%PORTDOCS%%share/doc/mailsync/README Xshare/examples/mailsync/mailsync X@dirrm share/examples/mailsync -X@dirrm share/doc/mailsync +X%%PORTDOCS%%@dirrm share/doc/mailsync END-of-mailsync/pkg-plist exit + To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 15: 0:33 2003 Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D80DB37B401 for ; Wed, 26 Feb 2003 15:00:30 -0800 (PST) Received: from gatesrv.RZ.UniBw-Muenchen.de (gatesrv.RZ.UniBW-Muenchen.de [137.193.11.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id E963B43F3F for ; Wed, 26 Feb 2003 15:00:27 -0800 (PST) (envelope-from lizard@informatik.unibw-muenchen.de) Received: from nemesis.informatik.unibw-muenchen.de (nemesis.Informatik.UniBw-Muenchen.de [137.193.60.30]) by gatesrv.RZ.UniBw-Muenchen.de (8.11.2/8.11.2) with ESMTP id h1QMoFv18324 for ; Wed, 26 Feb 2003 23:50:15 +0100 (MET) Received: from localhost (localhost.informatik.unibw-muenchen.de [127.0.0.1]) by nemesis.informatik.unibw-muenchen.de (Postfix) with ESMTP id E244E5A547 for ; Wed, 26 Feb 2003 23:50:14 +0100 (CET) Received: by nemesis.informatik.unibw-muenchen.de (Postfix, from userid 1001) id EB9F95A544; Wed, 26 Feb 2003 23:50:13 +0100 (CET) Date: Wed, 26 Feb 2003 23:50:13 +0100 From: Oliver Braun To: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48601: [new port] mail/mailsync: Mailsync is a way of keeping a collection of mailboxes synchronized Message-ID: <20030226225013.GA26028@informatik.unibw-muenchen.de> Mail-Followup-To: Oliver Braun , freebsd-ports-bugs@FreeBSD.org References: <200302262220.h1QMK99T023125@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200302262220.h1QMK99T023125@freefall.freebsd.org> X-PGP-Key: http://pgpkeys.mit.edu:11371/pks/lookup?op=get&search=0xEF25B1BA X-PGP-Key-Alternative: finger obraun@FreeBSD.org X-PGP-Fingerprint: 6A3B 042A 732E 17E4 B6E7 3EAF C0B1 6B7D EF25 B1BA X-URL: http://ist.unibw-muenchen.de/People/obraun X-Accept-Language: de en X-Editor: Vim-601 http://www.vim.org/ User-Agent: Mutt/1.5.3i X-Virus-Scanned: by AMaViS snapshot-20020531 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org * Oliver Braun [2003-02-26 14:20 -0800]: > I am willing to commit your port with the following changes. The new Ups, forgot the patch for gcc2.95 on -current. > shar is available at > http://people.freebsd.org/~obraun/pending_ports/mailsync.shar Regards, Olli --- mailsync.shar.old Wed Feb 26 23:00:21 2003 +++ mailsync.shar Wed Feb 26 23:44:53 2003 @@ -20,9 +20,9 @@ mkdir -p mailsync/files > /dev/null 2>&1 echo x - mailsync/files/patch-Makefile sed 's/^X//' >mailsync/files/patch-Makefile << 'END-of-mailsync/files/patch-Makefile' -X--- Makefile.orig Thu Oct 24 17:03:07 2002 -X+++ Makefile Mon Feb 3 23:05:47 2003 -X@@ -1,13 +1,13 @@ +X--- Makefile.orig Thu Oct 24 16:03:07 2002 +X+++ Makefile Wed Feb 26 23:39:48 2003 +X@@ -1,32 +1,32 @@ X # compiling with g++-3 worked for me with the commented ## lines - tpo X X # path to c-client headers @@ -38,7 +38,12 @@ X # linkging statically X #CCLIENTLIB = ../imap-2001a/c-client/c-client.a X -X@@ -19,7 +19,7 @@ +X # compiler +X-CC = g++ +X+CC = ${CXX} +X ##CC = g++-3.0 +X +X # flags for your compiler X CFLAGS = -g -O2 -Wall -I$(C) X X # required libraries @@ -47,6 +52,14 @@ X # if your system requires pam to access crypt() you have to link pam in X #LDFLAGS = -lm -lssl -lpam X +X default: mailsync +X +X mailsync: mailsync.o $(CCLIENTLIB) +X- $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) +X+ ${CC} $(CFLAGS) -o $@ $^ $(LDFLAGS) +X +X clean: +X rm -f mailsync mailsync.o core END-of-mailsync/files/patch-Makefile echo x - mailsync/files/patch-mailsync.c sed 's/^X//' >mailsync/files/patch-mailsync.c << 'END-of-mailsync/files/patch-mailsync.c' @@ -89,6 +102,7 @@ X XUSE_GMAKE= yes XUSE_REINPLACE= yes +XUSE_GCC= 2.95 X XALL_TARGET= default X To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 15:20:17 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 584C837B401 for ; Wed, 26 Feb 2003 15:20:10 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB8DD43F85 for ; Wed, 26 Feb 2003 15:20:08 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QNK8NS039580 for ; Wed, 26 Feb 2003 15:20:08 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QNK8MI039579; Wed, 26 Feb 2003 15:20:08 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC5A537B401 for ; Wed, 26 Feb 2003 15:19:33 -0800 (PST) Received: from carbon.berkeley.netdot.net (carbon.berkeley.netdot.net [216.27.190.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB39943F75 for ; Wed, 26 Feb 2003 15:19:30 -0800 (PST) (envelope-from nick@carbon.berkeley.netdot.net) Received: by carbon.berkeley.netdot.net (Postfix, from userid 101) id 4E81FF80B; Wed, 26 Feb 2003 15:19:28 -0800 (PST) Message-Id: <20030226231928.4E81FF80B@carbon.berkeley.netdot.net> Date: Wed, 26 Feb 2003 15:19:28 -0800 (PST) From: Nicholas Esborn Reply-To: Nicholas Esborn To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48725: Update port: astro/roadmap 0.6 -> 0.13 + port improvements Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48725 >Category: ports >Synopsis: Update port: astro/roadmap 0.6 -> 0.13 + port improvements >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Feb 26 15:20:08 PST 2003 >Closed-Date: >Last-Modified: >Originator: Nicholas Esborn >Release: FreeBSD 4.7-STABLE i386 >Organization: dot network >Environment: >Description: - Update to 0.13 - Port is now portlint-safe - Quality of port greatly improved - Update submitted as diff - Obsoletes ports/48550 >How-To-Repeat: >Fix: diff -urN /usr/ports/astro/roadmap/Makefile astro/roadmap/Makefile --- /usr/ports/astro/roadmap/Makefile Thu Jan 30 13:15:09 2003 +++ astro/roadmap/Makefile Fri Feb 21 14:19:33 2003 @@ -6,41 +6,54 @@ # PORTNAME= roadmap -PORTVERSION= 0.6 +PORTVERSION= 0.13 CATEGORIES= astro + +MAINTAINER= nick@netdot.net +COMMENT= Vector-based GPS moving map + MASTER_SITES= http://www.geocities.com/pascal_f_martin/roadmap/ MASTER_SITE_SUBDIR= ${PORTNAME} -DISTNAME= ${PORTNAME}_0_6_src +DISTNAME= ${PORTNAME}_0_13_src EXTRACT_SUFX= .tgz -MAINTAINER= nick@netdot.net - LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt WRKSRC= ${WRKDIR}/${PORTNAME} -BUILD_WRKSRC= ${WRKSRC}/src +BUILD_WRKSRC= ${WRKSRC}/src/gtk +INSTALL_WRKSRC= ${WRKSRC}/src USE_GNOMENG= yes USE_GNOME= gtk12 -BINARIES= buildmap buildus dumpmap roadmap roadgps +BINS= buildmap buildus dumpmap +GUI_BINS= gtkroadmap gtkroadgps +SCRIPTS= rdmdownload rdmgetall rdmgenmaps rdmcompare +DATA= sprites preferences schema DOCS= AUTHORS BUGS COPYING README TODO -DOCDIR= ${PREFIX}/share/doc/${PORTNAME} do-install: -.for bin in ${BINARIES} - $(INSTALL_PROGRAM) ${BUILD_WRKSRC}/${bin} ${LOCALBASE}/bin +.for _GUI_BIN in ${GUI_BINS} + ${INSTALL_PROGRAM} ${INSTALL_WRKSRC}/gtk/${_GUI_BIN} ${X11BASE}/bin/${_GUI_BIN} +.endfor +.for _BIN in ${BINS} + ${INSTALL_PROGRAM} ${INSTALL_WRKSRC}/${_BIN} ${LOCALBASE}/bin/${_BIN} +.endfor +.for _SCRIPT in ${SCRIPTS} + ${INSTALL_SCRIPT} ${INSTALL_WRKSRC}/${_SCRIPT} ${LOCALBASE}/bin/${_BIN} +.endfor + ${MKDIR} ${DATADIR} +.for _DATA in ${DATA} + ${INSTALL_DATA} ${INSTALL_WRKSRC}/${_DATA} ${DATADIR}/${_DATA} .endfor - ${MKDIR} ${PREFIX}/share/roadmap - .if !defined(NOPORTDOCS) - ${MKDIR} ${DOCDIR} -.for doc in ${DOCS} - ${INSTALL_MAN} ${WRKSRC}/${doc} ${DOCDIR} + ${MKDIR} ${DOCSDIR} +.for _DOC in ${DOCS} + ${INSTALL_DATA} ${WRKSRC}/${_DOC} ${DOCSDIR}/${_DOC} .endfor .endif post-install: - @${CAT} ${PKGMESSAGE} + @${SED} -e "s|%%DOCSDIR%%|${DOCSDIR}|" ${PKGMESSAGE} .include diff -urN /usr/ports/astro/roadmap/distinfo astro/roadmap/distinfo --- /usr/ports/astro/roadmap/distinfo Thu Jan 30 13:15:09 2003 +++ astro/roadmap/distinfo Tue Feb 18 20:56:49 2003 @@ -1 +1 @@ -MD5 (roadmap_0_6_src.tgz) = 910054bdfecb309c82a782504e3bc4e6 +MD5 (roadmap_0_13_src.tgz) = b0706023f7d9e2946e89cf8d8a0cacf9 diff -urN /usr/ports/astro/roadmap/files/patch-Makefile astro/roadmap/files/patch-Makefile --- /usr/ports/astro/roadmap/files/patch-Makefile Thu Jan 30 13:15:10 2003 +++ astro/roadmap/files/patch-Makefile Wed Dec 31 16:00:00 1969 @@ -1,35 +0,0 @@ ---- src/Makefile.orig Thu Oct 31 22:53:28 2002 -+++ src/Makefile Mon Nov 4 14:40:36 2002 -@@ -1,12 +1,12 @@ - --GUICFLAGS=-DROADMAP_GUI_USES_GTK `gtk-config --cflags` --GUILDFLAGS=`gtk-config --libs` -+GUICFLAGS=-DROADMAP_GUI_USES_GTK `${GTK_CONFIG} --cflags` -+GUILDFLAGS=`${GTK_CONFIG} --libs` - --CFLAGS=-O2 -ffast-math -fomit-frame-pointer -Wall $(GUICFLAGS) -+CFLAGS+=-O2 -ffast-math -fomit-frame-pointer -Wall $(GUICFLAGS) - # CFLAGS=-g -Wall -DROADMAP_DEBUG_HEAP $(GUICFLAGS) - # CFLAGS=-g -Wall -pg -fprofile-arcs -g $(GUICFLAGS) - --LDFLAGS=-lm -+LDFLAGS=-lm -L$(LOCALBASE)/lib - # LDFLAGS=-pg $(LDFLAGS) - - -@@ -103,13 +103,13 @@ - install: uninstall all - mkdir -p $(INSTALLDIR)/share/roadmap - cp *.rdm $(INSTALLDIR)/share/roadmap -- cp roadmap.menu /usr/lib/menu/roadmap -+# cp roadmap.menu /usr/lib/menu/roadmap - cp $(EXECUTABLES) $(INSTALLDIR)/bin - - uninstall: - cd $(INSTALLDIR)/bin ; rm -f $(EXECUTABLES) - rm -rf $(INSTALLDIR)/share/roadmap -- rm -f /usr/lib/menu/roadmap -+# rm -f /usr/lib/menu/roadmap - - # --- The real targets -------------------------------------------- - diff -urN /usr/ports/astro/roadmap/files/patch-gtk-Makefile astro/roadmap/files/patch-gtk-Makefile --- /usr/ports/astro/roadmap/files/patch-gtk-Makefile Wed Dec 31 16:00:00 1969 +++ astro/roadmap/files/patch-gtk-Makefile Tue Feb 18 22:03:10 2003 @@ -0,0 +1,28 @@ +--- src/gtk/Makefile.orig Tue Feb 18 21:59:04 2003 ++++ src/gtk/Makefile Tue Feb 18 22:01:52 2003 +@@ -1,12 +1,12 @@ + +-GUICFLAGS=`gtk-config --cflags` +-GUILDFLAGS=`gtk-config --libs` ++GUICFLAGS=`${GTK_CONFIG} --cflags` ++GUILDFLAGS=`${GTK_CONFIG} --libs` + +-STDCFLAGS=-O2 -ffast-math -fomit-frame-pointer -Wall ++STDCFLAGS=-O2 -ffast-math -fomit-frame-pointer -Wall -I${LOCALBASE}/include + # STDCFLAGS=-g -Wall -DROADMAP_DEBUG_HEAP + # STDCFLAGS=-g -Wall -pg -fprofile-arcs -g + +-CFLAGS=$(STDCFLAGS) $(GUICFLAGS) -I.. ++CFLAGS+=$(STDCFLAGS) $(GUICFLAGS) -I.. + + RDMLIBS= ../libroadmap.a libgtkroadmap.a ../unix/libosroadmap.a + LIBS=$(RDMLIBS) $(GUILDFLAGS) -lm +@@ -23,7 +23,7 @@ + + RUNTIME=gtkroadgps gtkroadmap + +-INSTALLDIR=/usr/local ++INSTALLDIR=${LOCALBASE} + + + # --- Conventional targets ---------------------------------------- diff -urN /usr/ports/astro/roadmap/files/patch-src-Makefile astro/roadmap/files/patch-src-Makefile --- /usr/ports/astro/roadmap/files/patch-src-Makefile Wed Dec 31 16:00:00 1969 +++ astro/roadmap/files/patch-src-Makefile Tue Feb 18 22:02:48 2003 @@ -0,0 +1,25 @@ +--- src/Makefile.orig Tue Feb 18 21:55:28 2003 ++++ src/Makefile Tue Feb 18 21:58:51 2003 +@@ -1,11 +1,11 @@ + + +-CFLAGS=-O2 -ffast-math -fomit-frame-pointer -Wall ++CFLAGS+=-O2 -ffast-math -fomit-frame-pointer -Wall -I${LOCALBASE}/include + # CFLAGS=-g -Wall -DROADMAP_DEBUG_HEAP + # CFLAGS=-g -Wall -pg -fprofile-arcs -g + + RDMLIBS=libroadmap.a unix/libosroadmap.a +-LIBS=$(RDMLIBS) -lpopt -lm ++LIBS=$(RDMLIBS) -lpopt -lm -L${LOCALBASE}/lib + + # LDFLAGS=-pg $(LDFLAGS) + +@@ -88,7 +88,7 @@ + SCRIPTS=rdmdownload rdmgetall rdmgenmaps rdmcompare + RUNTIME=libroadmap.a libguiroadgps.a libguiroadmap.a + +-INSTALLDIR=/usr/local ++INSTALLDIR=${LOCLBASE} + + + # --- Conventional targets ---------------------------------------- diff -urN /usr/ports/astro/roadmap/pkg-comment astro/roadmap/pkg-comment --- /usr/ports/astro/roadmap/pkg-comment Thu Jan 30 13:15:09 2003 +++ astro/roadmap/pkg-comment Wed Dec 31 16:00:00 1969 @@ -1 +0,0 @@ -RoadMap is a displays US maps provided by the US Census Bureau diff -urN /usr/ports/astro/roadmap/pkg-message astro/roadmap/pkg-message --- /usr/ports/astro/roadmap/pkg-message Thu Jan 30 13:15:09 2003 +++ astro/roadmap/pkg-message Fri Feb 21 14:15:02 2003 @@ -1,5 +1,10 @@ +------------------------------------------------------------------ +RoadMap is at an early stage of development, and is not thoroughly +documented. It would be very unwise to rely on RoadMap for real +navigation. -RoadMap is at an early stage of development, and is not thoroughly documented. -See the README in /usr/local/share/doc/roadmap for instructions on obtaining -and using the necessary data from the US Census Bureau. +The instructions for downloading and installing the necessary +TIGER data are located in: + %%DOCSDIR%%/README +------------------------------------------------------------------ diff -urN /usr/ports/astro/roadmap/pkg-plist astro/roadmap/pkg-plist --- /usr/ports/astro/roadmap/pkg-plist Thu Jan 30 13:15:09 2003 +++ astro/roadmap/pkg-plist Fri Feb 21 15:48:24 2003 @@ -1,13 +1,24 @@ +@cwd %%X11BASE%% +bin/gtkroadmap +bin/gtkroadgps +@exec ln -sf %D/bin/gtkroadmap %D/bin/roadmap +@exec ln -sf %D/bin/gtkroadgps %D/bin/roadgps +@unexec rm -f %D/bin/roadmap %D/bin/roadgps +@cwd %%LOCALBASE%% bin/buildmap bin/buildus bin/dumpmap -bin/roadmap -bin/roadgps -%%PORTDOCS%%share/doc/roadmap/AUTHORS -%%PORTDOCS%%share/doc/roadmap/BUGS -%%PORTDOCS%%share/doc/roadmap/COPYING -%%PORTDOCS%%share/doc/roadmap/README -%%PORTDOCS%%share/doc/roadmap/TODO -%%PORTDOCS%%@dirrm share/doc/roadmap -@exec mkdir -p %D/share/roadmap 2>/dev/null || true -@unexec rmdir %D/share/roadmap 2>/dev/null || true +bin/rdmdownload +bin/rdmgetall +bin/rdmgenmaps +bin/rdmcompare +%%DATADIR%%/preferences +%%DATADIR%%/schema +%%DATADIR%%/sprites +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/BUGS +%%PORTDOCS%%%%DOCSDIR%%/COPYING +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/TODO +%%PORTDOCS%%@dirrm %%DOCSDIR%% +@dirrm %%DATADIR%% >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 15:43:13 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 06DA037B487; Wed, 26 Feb 2003 15:43:10 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A2AE43F3F; Wed, 26 Feb 2003 15:43:09 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QNh9NS045782; Wed, 26 Feb 2003 15:43:09 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QNh9Z1045778; Wed, 26 Feb 2003 15:43:09 -0800 (PST) Date: Wed, 26 Feb 2003 15:43:09 -0800 (PST) From: Edwin Groothuis Message-Id: <200302262343.h1QNh9Z1045778@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48725: Update port: astro/roadmap 0.6 -> 0.13 + port improvements Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: astro/roadmap 0.6 -> 0.13 + port improvements Class-Changed-From-To: change-request->maintainer-update Class-Changed-By: edwin Class-Changed-When: Wed Feb 26 15:42:35 PST 2003 Class-Changed-Why: -> maintainer update http://www.freebsd.org/cgi/query-pr.cgi?pr=48725 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 15:43:50 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6199937B401; Wed, 26 Feb 2003 15:43:49 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFCA443FAF; Wed, 26 Feb 2003 15:43:48 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QNhmNS045856; Wed, 26 Feb 2003 15:43:48 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QNhmFV045852; Wed, 26 Feb 2003 15:43:48 -0800 (PST) Date: Wed, 26 Feb 2003 15:43:48 -0800 (PST) From: Edwin Groothuis Message-Id: <200302262343.h1QNhmFV045852@freefall.freebsd.org> To: nick@netdot.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48550: Update port: astro/roadmap 0.6 -> 0.13 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: astro/roadmap 0.6 -> 0.13 State-Changed-From-To: feedback->closed State-Changed-By: edwin State-Changed-When: Wed Feb 26 15:43:27 PST 2003 State-Changed-Why: obsoleted by ports/48725 http://www.freebsd.org/cgi/query-pr.cgi?pr=48550 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 15:50:16 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBE0837B405 for ; Wed, 26 Feb 2003 15:50:10 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 969F043FBF for ; Wed, 26 Feb 2003 15:50:07 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QNo7NS046105 for ; Wed, 26 Feb 2003 15:50:07 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QNo7I7046104; Wed, 26 Feb 2003 15:50:07 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 850E237B401 for ; Wed, 26 Feb 2003 15:48:36 -0800 (PST) Received: from perlpimp.codersluts.net (adsl-158-43-136.asm.bellsouth.net [68.158.43.136]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DEAA43FAF for ; Wed, 26 Feb 2003 15:48:35 -0800 (PST) (envelope-from carl@perlpimp.codersluts.net) Received: from perlpimp.codersluts.net (localhost.codersluts.net [127.0.0.1]) by perlpimp.codersluts.net (8.12.6/8.12.6) with ESMTP id h1QNnA4s022078 for ; Wed, 26 Feb 2003 18:49:10 -0500 (EST) (envelope-from carl@perlpimp.codersluts.net) Received: (from carl@localhost) by perlpimp.codersluts.net (8.12.6/8.12.6/Submit) id h1QNnACI022077; Wed, 26 Feb 2003 18:49:10 -0500 (EST) Message-Id: <200302262349.h1QNnACI022077@perlpimp.codersluts.net> Date: Wed, 26 Feb 2003 18:49:10 -0500 (EST) From: Carl Schmidt Reply-To: Carl Schmidt To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48726: New Port: deskutils/ljcharm Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48726 >Category: ports >Synopsis: New Port: deskutils/ljcharm >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Feb 26 15:50:07 PST 2003 >Closed-Date: >Last-Modified: >Originator: Carl Schmidt >Release: FreeBSD 5.0-RELEASE i386 >Organization: >Environment: System: FreeBSD perlpimp.codersluts.net 5.0-RELEASE FreeBSD 5.0-RELEASE #0: Thu Jan 16 22:16:53 GMT 2003 root@hollin.btc.adaptec.com:/usr/obj/usr/src/sys/GENERIC i386 >Description: Charm is a CLI to LiveJournal servers. >How-To-Repeat: >Fix: --- ljcharm.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # ljcharm # ljcharm/Makefile # ljcharm/distinfo # ljcharm/pkg-descr # ljcharm/pkg-plist # echo c - ljcharm mkdir -p ljcharm > /dev/null 2>&1 echo x - ljcharm/Makefile sed 's/^X//' >ljcharm/Makefile << 'END-of-ljcharm/Makefile' X# Ports collection Makefile for: ljcharm X# Date created: 2003-02-26 X# Whom: schmidtcarl@earthlink.net X# X# $FreeBSD$ X# X XPORTNAME= charm XPORTVERSION= 1.3.0 XCATEGORIES= deskutils net XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= ljcharm X XMAINTAINER= schmidtcarl@earthlink.net XCOMMENT= A menu-driven python-based livejournal client X XUSE_PYTHON= yes XUSE_PYDISTUTILS=yes X Xpost-install: X @${INSTALL_SCRIPT} ${WRKSRC}/charm ${PREFIX}/bin X X @${MKDIR} ${PREFIX}/share/examples/charm X @${INSTALL_MAN} ${WRKSRC}/sample.charmrc ${PREFIX}/share/examples/charm X X.if !defined(NOPORTDOCS) X @${MKDIR} ${PREFIX}/share/doc/charm X @${INSTALL_MAN} ${WRKSRC}/CHANGES.charm ${PREFIX}/share/doc/charm/CHANGES X @${INSTALL_MAN} ${WRKSRC}/README.charm ${PREFIX}/share/doc/charm/README X.endif X X.include END-of-ljcharm/Makefile echo x - ljcharm/distinfo sed 's/^X//' >ljcharm/distinfo << 'END-of-ljcharm/distinfo' XMD5 (charm-1.3.0.tar.gz) = b0662384d52fc873ce517209e51acd9c END-of-ljcharm/distinfo echo x - ljcharm/pkg-descr sed 's/^X//' >ljcharm/pkg-descr << 'END-of-ljcharm/pkg-descr' XCharm is a command-line client written in Python for interacting with XLiveJournal servers. X XWWW: http://ljcharm.sourceforge.net/ X X- Carl Schmidt Xschmidtcarl@earthlink.net END-of-ljcharm/pkg-descr echo x - ljcharm/pkg-plist sed 's/^X//' >ljcharm/pkg-plist << 'END-of-ljcharm/pkg-plist' Xbin/charm X%%PYTHON_SITELIBDIR%%/ljcharm.py X%%PYTHON_SITELIBDIR%%/ljcharm.pyc X%%PYTHON_SITELIBDIR%%/ljcharm.pyo X%%PORTDOCS%%share/doc/charm/CHANGES X%%PORTDOCS%%share/doc/charm/README X%%PORTDOCS%%@dirrm share/doc/charm Xshare/examples/charm/sample.charmrc X@dirrm share/examples/charm END-of-ljcharm/pkg-plist exit --- ljcharm.shar ends here --- --- Makefile.diff begins here --- --- deskutils/Makefile.old Wed Feb 26 17:00:54 2003 +++ deskutils/Makefile Wed Feb 26 17:01:14 2003 @@ -27,6 +27,7 @@ SUBDIR += kronolith SUBDIR += krss SUBDIR += libmrproject + SUBDIR += ljcharm SUBDIR += logjam SUBDIR += logjam2 SUBDIR += loserjabber --- Makefile.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 15:51:55 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3A0E837B401; Wed, 26 Feb 2003 15:51:55 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0FBE43FCB; Wed, 26 Feb 2003 15:51:54 -0800 (PST) (envelope-from alex@FreeBSD.org) Received: from freefall.freebsd.org (alex@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1QNpsNS048225; Wed, 26 Feb 2003 15:51:54 -0800 (PST) (envelope-from alex@freefall.freebsd.org) Received: (from alex@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1QNpsMo048221; Wed, 26 Feb 2003 15:51:54 -0800 (PST) Date: Wed, 26 Feb 2003 15:51:54 -0800 (PST) From: Alexander Langer Message-Id: <200302262351.h1QNpsMo048221@freefall.freebsd.org> To: lehmann@ans-netz.de, alex@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48593: update port: math/fxt Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: update port: math/fxt State-Changed-From-To: open->closed State-Changed-By: alex State-Changed-When: Wed Feb 26 15:51:34 PST 2003 State-Changed-Why: Closed on originators request http://www.freebsd.org/cgi/query-pr.cgi?pr=48593 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 16: 3:36 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6499A37B401; Wed, 26 Feb 2003 16:03:35 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07CF043F85; Wed, 26 Feb 2003 16:03:35 -0800 (PST) (envelope-from alex@FreeBSD.org) Received: from freefall.freebsd.org (alex@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1R03YNS050546; Wed, 26 Feb 2003 16:03:34 -0800 (PST) (envelope-from alex@freefall.freebsd.org) Received: (from alex@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1R03Ylm050542; Wed, 26 Feb 2003 16:03:34 -0800 (PST) Date: Wed, 26 Feb 2003 16:03:34 -0800 (PST) From: Alexander Langer Message-Id: <200302270003.h1R03Ylm050542@freefall.freebsd.org> To: lehmann@ans-netz.de, alex@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/47550: update-port: math/fxt (bento-fix) Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: update-port: math/fxt (bento-fix) State-Changed-From-To: open->closed State-Changed-By: alex State-Changed-When: Wed Feb 26 16:03:08 PST 2003 State-Changed-Why: Closed on orgi. request http://www.freebsd.org/cgi/query-pr.cgi?pr=47550 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 16:40:11 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3453D37B401 for ; Wed, 26 Feb 2003 16:40:05 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0220143F75 for ; Wed, 26 Feb 2003 16:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1R0e3NS060931 for ; Wed, 26 Feb 2003 16:40:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1R0e36j060930; Wed, 26 Feb 2003 16:40:03 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E89E537B401 for ; Wed, 26 Feb 2003 16:35:10 -0800 (PST) Received: from mail.westbend.net (ns1.westbend.net [216.47.253.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0EAF143FBF for ; Wed, 26 Feb 2003 16:35:10 -0800 (PST) (envelope-from admin@WBIw009.westbend.net) Received: from WBIw009.westbend.net (wbiw009 [216.47.253.29]) by mail.westbend.net (8.12.6/8.12.6) with ESMTP id h1R0Z8SG000917 for ; Wed, 26 Feb 2003 18:35:09 -0600 (CST) (envelope-from admin@WBIw009.westbend.net) Received: from WBIw009.westbend.net (localhost [127.0.0.1]) by WBIw009.westbend.net (8.12.7/8.12.7) with ESMTP id h1R0Z6fw023722 for ; Wed, 26 Feb 2003 18:35:08 -0600 (CST) (envelope-from admin@WBIw009.westbend.net) Received: (from root@localhost) by WBIw009.westbend.net (8.12.7/8.12.6/Submit) id h1R0Z5QF023721; Wed, 26 Feb 2003 18:35:05 -0600 (CST) Message-Id: <200302270035.h1R0Z5QF023721@WBIw009.westbend.net> Date: Wed, 26 Feb 2003 18:35:05 -0600 (CST) From: "Scot W. Hetzel" Reply-To: "Scot W. Hetzel" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48731: security/cyrus-sasl: Fix build of Kerberos 4 and Kerberos 5 mechs Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48731 >Category: ports >Synopsis: security/cyrus-sasl: Fix build of Kerberos 4 and Kerberos 5 mechs >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Feb 26 16:40:03 PST 2003 >Closed-Date: >Last-Modified: >Originator: Scot W. Hetzel >Release: FreeBSD 4.7-STABLE i386 >Organization: West Bend Internet >Environment: System: FreeBSD WBIw009.westbend.net 4.7-STABLE FreeBSD 4.7-STABLE #0: Mon Feb 17 22:11:48 CST 2003 root@WBIw009.westbend.net:/usr/obj/usr/src/src4/sys/GENERIC-SMP i386 >Description: The build of the Kerberos 4 mechs was broken due to the openssl version upgrade had changed a function to a macro. This ibreakage was reported by patrick as an additional comment PR 48442. The automatic building of the KERBEROS_V4 mech, if /usr/lib/libkrb.a is found, now depends on setting MAKE_KERBEROS4 in /etc/make.conf. Also, the GSSAPI mech is broken, due to the configure script detects the wrong version of Kerberos 5 (MIT instead of Hemidal) in the base system. Previously, the building of the GSSAPI mech depended on the setting of either KRB5_HOME or HEIMDAL_HOME in /etc/make.conf. I have added a check that if /usr/lib/libkrb5.a is found and MAKE_KERBEROS5 is set in /etc/make.conf, then the GSSAPI mech is automaticly activated. It is also overrideable by the *_HOME variables. >How-To-Repeat: Make sure that the Kerberos 4 & 5 libraries are installed from the base system. Then build the port and see it fail in building the Kerberos 4 mech. To see the Kerberos 5 build failure, disable the krb4 CONFIGURE_ARGS, and then use 'make configure KRB5_HOME=/usr' to see that the GSSAPI mech thinks it is building with MIT, instead of Heimdal. When the 'make build' is used it will fail in building the GSSAPI mech, as it is wants libgssapi_krb5.*. >Fix: Changed Files: Makefile files/patch-ab New Files: files/patch-plugins::kerberos4.c Index: Makefile =================================================================== RCS file: /home/ncvs/ports/security/cyrus-sasl/Makefile,v retrieving revision 1.49 diff -u -r1.49 Makefile --- Makefile 26 Feb 2003 11:25:55 -0000 1.49 +++ Makefile 26 Feb 2003 23:56:07 -0000 @@ -7,7 +7,7 @@ PORTNAME= cyrus-sasl PORTVERSION= 1.5.28 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= security ipv6 MASTER_SITES= ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/%SUBDIR%/ \ ftp://ftp.westbend.net/pub/cyrus-mail/%SUBDIR%/ \ @@ -80,12 +80,14 @@ CONFIGURE_ARGS+= --enable-gssapi=${KRB5_HOME} .elif defined(HEIMDAL_HOME) && exists(${HEIMDAL_HOME}) CONFIGURE_ARGS+= --enable-gssapi=${HEIMDAL_HOME} +.elif exists(/usr/lib/libkrb5.a) && defined(MAKE_KERBEROS5) +CONFIGURE_ARGS+= --enable-gssapi .else CONFIGURE_ARGS+= --disable-gssapi GSSAPI= "@comment " .endif -.if exists(/usr/lib/libkrb.a) +.if exists(/usr/lib/libkrb.a) && defined(MAKE_KERBEROS4) CONFIGURE_ARGS+= --enable-krb4 .else CONFIGURE_ARGS+= --disable-krb4 Index: files/patch-ab =================================================================== RCS file: /home/ncvs/ports/security/cyrus-sasl/files/patch-ab,v retrieving revision 1.15 diff -u -r1.15 patch-ab --- files/patch-ab 26 Feb 2003 11:25:55 -0000 1.15 +++ files/patch-ab 26 Feb 2003 23:22:21 -0000 @@ -1,5 +1,5 @@ ---- configure.in.orig Tue Feb 18 13:18:11 2003 -+++ configure.in Tue Feb 18 14:34:11 2003 +--- configure.in.orig Wed Feb 26 23:00:39 2003 ++++ configure.in Wed Feb 26 23:22:03 2003 @@ -66,8 +66,12 @@ dnl check for -R, etc. switch CMU_GUESS_RUNPATH_SWITCH @@ -104,3 +104,41 @@ AC_SUBST(LIB_DES) +@@ -563,8 +595,8 @@ + AC_CHECK_HEADER(krb.h, + AC_CHECK_LIB(com_err, com_err, + AC_CHECK_LIB(krb, krb_mk_priv, COM_ERR="-lcom_err", +- krb4=no, -ldes -lcom_err), +- AC_CHECK_LIB(krb, krb_mk_priv, COM_ERR="", krb4=no, -ldes))) ++ krb4=no, ${LIB_DES} -lcom_err), ++ AC_CHECK_LIB(krb, krb_mk_priv, COM_ERR="", krb4=no, ${LIB_DES}))) + + else + AC_WARN(No DES library found for Kerberos V4 support) +@@ -592,7 +624,7 @@ + AC_MSG_RESULT(enabled) + SASL_MECHS="$SASL_MECHS libkerberos4.la" + AC_DEFINE(HAVE_KRB) +- SASL_KRB_LIB="-lkrb -ldes $COM_ERR" ++ SASL_KRB_LIB="-lkrb $LIB_DES $COM_ERR" + AC_SUBST(SASL_KRB_LIB) + else + AC_MSG_RESULT(disabled) +@@ -631,7 +663,7 @@ + + # the base64_decode check fails because libroken has dependencies + # FIXME: this is probabally non-optimal as well +- AC_CHECK_LIB(krb5,krb5_vlog,gss_impl="heimdal",,) ++ AC_CHECK_LIB(krb5,krb5_vlog,gss_impl="heimdal",, -lasn1 ${LIB_DES} -lroken ${LIB_CRYPT} -lcom_err) + # AC_CHECK_LIB(roken,base64_decode,gss_impl="heimdal",, $LIB_CRYPT) + + if test -d ${gssapi}; then +@@ -641,7 +673,7 @@ + if test "$gss_impl" = mit; then + GSSAPIBASE_LIBS="$GSSAPIBASE_LIBS -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err" + elif test "$gss_impl" = "heimdal"; then +- GSSAPIBASE_LIBS="$GSSAPIBASE_LIBS -lgssapi -lkrb5 -ldes -lasn1 -lroken ${LIB_CRYPT} -lcom_err" ++ GSSAPIBASE_LIBS="$GSSAPIBASE_LIBS -lgssapi -lkrb5 ${LIB_DES} -lasn1 -lroken ${LIB_CRYPT} -lcom_err" + else + gssapi="no" + AC_WARN(Disabling GSSAPI) Index: files/patch-plugins::kerberos4.c =================================================================== RCS file: files/patch-plugins::kerberos4.c diff -N files/patch-plugins::kerberos4.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-plugins::kerberos4.c 26 Feb 2003 22:46:29 -0000 @@ -0,0 +1,48 @@ +--- plugins/kerberos4.c.orig Wed Feb 26 22:20:04 2003 ++++ plugins/kerberos4.c Wed Feb 26 22:30:25 2003 +@@ -711,14 +730,18 @@ + #ifdef __FreeBSD__ + des_pcbc_encrypt((const unsigned char *)in, + (unsigned char *)in, ++ clientinlen, ++ text->init_keysched, ++ &text->session, ++ DES_DECRYPT); + #else + des_pcbc_encrypt((des_cblock *)in, + (des_cblock *)in, +-#endif + clientinlen, + text->init_keysched, + &text->session, + DES_DECRYPT); ++#endif + + testnum=(in[0]*256*256*256)+(in[1]*256*256)+(in[2]*256)+in[3]; + +@@ -1255,18 +1278,22 @@ + len++; + } + sout[len]=0; ++ + #ifdef __FreeBSD__ + des_pcbc_encrypt((const unsigned char *)sout, +- (unsigned char *)sout, ++ (unsigned char *)sout, ++ len, ++ text->init_keysched, ++ (des_cblock *)text->session, ++ DES_ENCRYPT); + #else +- + des_pcbc_encrypt((des_cblock *)sout, + (des_cblock *)sout, +-#endif + len, + text->init_keysched, + (des_cblock *)text->session, + DES_ENCRYPT); ++#endif + + *clientout = params->utils->malloc(len); + memcpy((char *) *clientout, sout, len); >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 18:40: 5 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9CE7637B401 for ; Wed, 26 Feb 2003 18:40:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 449C843FBF for ; Wed, 26 Feb 2003 18:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1R2e2NS093482 for ; Wed, 26 Feb 2003 18:40:02 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1R2e2PC093481; Wed, 26 Feb 2003 18:40:02 -0800 (PST) Date: Wed, 26 Feb 2003 18:40:02 -0800 (PST) Message-Id: <200302270240.h1R2e2PC093481@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: "Simon 'portlint' Schubert" Subject: Re: ports/48726: New Port: deskutils/ljcharm Reply-To: "Simon 'portlint' Schubert" Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48726; it has been noted by GNATS. From: "Simon 'portlint' Schubert" To: Carl Schmidt Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/48726: New Port: deskutils/ljcharm Date: Thu, 27 Feb 2003 03:30:29 +0100 --=.RhwGxg'w35GU7' Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Lately Carl Schmidt told: > sed 's/^X//' >ljcharm/Makefile << 'END-of-ljcharm/Makefile' [...] > X @${INSTALL_MAN} ${WRKSRC}/sample.charmrc ${PREFIX}/share/examples/charm ${INSTALL_DATA} > X.if !defined(NOPORTDOCS) > X @${MKDIR} ${PREFIX}/share/doc/charm > X @${INSTALL_MAN} ${WRKSRC}/CHANGES.charm ${PREFIX}/share/doc/charm/CHANGES > X @${INSTALL_MAN} ${WRKSRC}/README.charm ${PREFIX}/share/doc/charm/README > X.endif same here cheers simon -- /"\ http://corecode.ath.cx/#donate \ / \ ASCII Ribbon Campaign / \ Against HTML Mail and News --=.RhwGxg'w35GU7' Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.0 (GNU/Linux) iD8DBQE+XXhJr5S+dk6z85oRAkd/AJsFNo8ntHHVGywbOfkLy88HFupjWwCguMIi iZny2zUOHL1zww2JH2akBQg= =zulv -----END PGP SIGNATURE----- --=.RhwGxg'w35GU7'-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 19:40:15 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A03ED37B401 for ; Wed, 26 Feb 2003 19:40:14 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36B7D43FB1 for ; Wed, 26 Feb 2003 19:40:14 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1R3eENS010088 for ; Wed, 26 Feb 2003 19:40:14 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1R3eEul010087; Wed, 26 Feb 2003 19:40:14 -0800 (PST) Date: Wed, 26 Feb 2003 19:40:14 -0800 (PST) Message-Id: <200302270340.h1R3eEul010087@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Carl Schmidt Subject: Re: ports/48726: New Port: deskutils/ljcharm Reply-To: Carl Schmidt Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48726; it has been noted by GNATS. From: Carl Schmidt To: freebsd-gnats-submit@FreeBSD.org Cc: Simon Schubert Subject: Re: ports/48726: New Port: deskutils/ljcharm Date: Wed, 26 Feb 2003 22:32:34 -0500 Regarding ${INSTALL_DATA}: http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/dads-documentation.html I figured ${INSTALL_DATA} was correct since everything else seems to use it. I wanted to follow the directions though just to be sure. I assume then that the directions are wrong. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 19:50: 9 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8387837B401 for ; Wed, 26 Feb 2003 19:50:06 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B2D143FE0 for ; Wed, 26 Feb 2003 19:50:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1R3o4NS012295 for ; Wed, 26 Feb 2003 19:50:04 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1R3o4LV012294; Wed, 26 Feb 2003 19:50:04 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1E2437B401 for ; Wed, 26 Feb 2003 19:42:24 -0800 (PST) Received: from ns6.sony.co.jp (NS6.Sony.CO.JP [137.153.0.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A7B343FB1 for ; Wed, 26 Feb 2003 19:42:21 -0800 (PST) (envelope-from mistral@imasy.or.jp) Received: from mail6.sony.co.jp (mail6.sony.co.jp [43.0.1.208]) by ns6.sony.co.jp (R8/Sony) with ESMTP id h1R3gKQ03425 for ; Thu, 27 Feb 2003 12:42:20 +0900 (JST) Received: from mail6.sony.co.jp (localhost [127.0.0.1]) by mail6.sony.co.jp (R8/Sony) with ESMTP id h1R3gJZ18580 for ; Thu, 27 Feb 2003 12:42:19 +0900 (JST) Received: from mistral.imasy.or.jp ([43.10.151.85]) by mail6.sony.co.jp (R8/Sony) with ESMTP id h1R3gJv18572 for ; Thu, 27 Feb 2003 12:42:19 +0900 (JST) Received: from mistral.imasy.or.jp (localhost [127.0.0.1]) by mistral.imasy.or.jp (8.12.7/8.12.7/mistral) with ESMTP id h1R3gExq024196 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Thu, 27 Feb 2003 12:42:14 +0900 (JST) (envelope-from mistral@imasy.or.jp) Received: (from sarumaru@localhost) by mistral.imasy.or.jp (8.12.7/8.12.7/Submit) id h1R3gEEP024195; Thu, 27 Feb 2003 12:42:14 +0900 (JST) (envelope-from sarumaru) Message-Id: <200302270342.h1R3gEEP024195@mistral.imasy.or.jp> Date: Thu, 27 Feb 2003 12:42:14 +0900 (JST) From: Yoshihiko Sarumaru Reply-To: Yoshihiko Sarumaru To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48732: Update port: deskutils/xcalendar Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48732 >Category: ports >Synopsis: Update port: deskutils/xcalendar >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Feb 26 19:50:04 PST 2003 >Closed-Date: >Last-Modified: >Originator: Yoshihiko Sarumaru >Release: FreeBSD 4.8-PRERELEASE i386 >Organization: >Environment: System: FreeBSD mistral.imasy.or.jp 4.8-PRERELEASE FreeBSD 4.8-PRERELEASE #3: Tue Feb 25 01:38:34 JST 2003 sarumaru@mistral.imasy.or.jp:/usr/obj/usr/src/sys/Z505VRK i386 >Description: There is a typo in both COMMENT and pkg-descr. Obtained from: Roland =?iso-8859-1?Q?K=FCbert?=" ja_JP.EUC is obsoleted by ja_JP.eucJP. >How-To-Repeat: ispell those files. >Fix: diff -ur deskutils/xcalendar.orig/Makefile deskutils/xcalendar/Makefile --- deskutils/xcalendar.orig/Makefile Tue Feb 25 00:50:16 2003 +++ deskutils/xcalendar/Makefile Thu Feb 27 12:18:30 2003 @@ -12,7 +12,7 @@ DISTNAME= ${PORTNAME}-4.0+i18n MAINTAINER= mistral@imasy.or.jp -COMMENT= A calendar with a notebook for X11 (internationarized version) +COMMENT= A calendar with a notebook for X11 (internationalized version) WRKSRC= ${WRKDIR}/${PORTNAME} diff -ur deskutils/xcalendar.orig/pkg-descr deskutils/xcalendar/pkg-descr --- deskutils/xcalendar.orig/pkg-descr Fri Mar 16 11:37:16 2001 +++ deskutils/xcalendar/pkg-descr Thu Feb 27 12:28:27 2003 @@ -5,8 +5,8 @@ If month and year are not provided on the command line they are assumed to be current. -Note: This program is internationarized but only -app-defaults files for English (C) and Japanese (ja_JP.EUC) are included. +Note: This program is internationalized but only +app-defaults files for English (C) and Japanese (ja_JP.eucJP) are included. Let's add another locales! MITA Yoshio >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 21: 0:37 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E5CBF37B401 for ; Wed, 26 Feb 2003 21:00:33 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D6F1343F85 for ; Wed, 26 Feb 2003 21:00:32 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1R50WNS031407 for ; Wed, 26 Feb 2003 21:00:32 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1R50W9F031406; Wed, 26 Feb 2003 21:00:32 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 842B837B401 for ; Wed, 26 Feb 2003 20:57:25 -0800 (PST) Received: from dc-mx14.cluster1.charter.net (dc-mx14.cluster1.charter.net [209.225.8.24]) by mx1.FreeBSD.org (Postfix) with ESMTP id A78D943FDF for ; Wed, 26 Feb 2003 20:57:24 -0800 (PST) (envelope-from glennpj@charter.net) Received: from [24.158.214.251] (HELO gforce.johnson.home) by dc-mx14.cluster1.charter.net (CommuniGate Pro SMTP 3.5.9) with ESMTP id 76134382 for FreeBSD-gnats-submit@freebsd.org; Wed, 26 Feb 2003 23:57:19 -0500 Received: from gforce.johnson.home (localhost [127.0.0.1]) by gforce.johnson.home (8.12.6/8.12.6) with ESMTP id h1R4vIq1043909 for ; Wed, 26 Feb 2003 22:57:18 -0600 (CST) (envelope-from glenn@gforce.johnson.home) Received: (from glenn@localhost) by gforce.johnson.home (8.12.6/8.12.6/Submit) id h1R4vH8q043690; Wed, 26 Feb 2003 22:57:17 -0600 (CST) Message-Id: <200302270457.h1R4vH8q043690@gforce.johnson.home> Date: Wed, 26 Feb 2003 22:57:17 -0600 (CST) From: Glenn Johnson Reply-To: Glenn Johnson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48733: Add WWW line to finance/libofx/pkg-descr Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48733 >Category: ports >Synopsis: Add WWW line to finance/libofx/pkg-descr >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Feb 26 21:00:32 PST 2003 >Closed-Date: >Last-Modified: >Originator: Glenn Johnson >Release: FreeBSD 5.0-RELEASE-p3 i386 >Organization: >Environment: System: FreeBSD gforce.johnson.home 5.0-RELEASE-p3 FreeBSD 5.0-RELEASE-p3 #20: Sun Feb 23 21:31:50 CST 2003 root@gforce.johnson.home:/usr/obj/usr/src/sys/GFORCE i386 >Description: Add WWW line to the pkg-descr file of the finance/libofx port >How-To-Repeat: >Fix: --- libofx_pkg-descr.update begins here --- --- finance/libofx/pkg-descr.orig Wed Feb 26 22:43:52 2003 +++ finance/libofx/pkg-descr Wed Feb 26 22:52:09 2003 @@ -20,3 +20,5 @@ This is an ALPHA release. It really works and is not vaporware, but the API is still subject to change, and several OFX structures are not fully implemented, notably currency conversions and the aggregate. + +WWW: http://libofx.sourceforge.net/ --- libofx_pkg-descr.update ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 21:40:17 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BBF4137B401 for ; Wed, 26 Feb 2003 21:40:15 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B48343FCB for ; Wed, 26 Feb 2003 21:40:15 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1R5eENS043525 for ; Wed, 26 Feb 2003 21:40:14 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1R5eEZ6043524; Wed, 26 Feb 2003 21:40:14 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5657E37B405 for ; Wed, 26 Feb 2003 21:30:10 -0800 (PST) Received: from web13507.mail.yahoo.com (web13507.mail.yahoo.com [216.136.175.86]) by mx1.FreeBSD.org (Postfix) with SMTP id A04E243FAF for ; Wed, 26 Feb 2003 21:30:09 -0800 (PST) (envelope-from dyeske@yahoo.com) Received: from [24.196.239.120] by web13507.mail.yahoo.com via HTTP; Wed, 26 Feb 2003 21:30:09 PST Message-Id: <20030227053009.86247.qmail@web13507.mail.yahoo.com> Date: Wed, 26 Feb 2003 21:30:09 -0800 (PST) From: David Yeske To: FreeBSD-gnats-submit@FreeBSD.org Cc: corecode@corecode.ath.cx, Mario Subject: ports/48734: multimedia/mplayerxp disables cdparanoia Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48734 >Category: ports >Synopsis: multimedia/mplayerxp disables cdparanoia >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 26 21:40:14 PST 2003 >Closed-Date: >Last-Modified: >Originator: David Yeske >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: FreeBSD blue 4.7-STABLE FreeBSD 4.7-STABLE #1: Sat Feb 8 18:38:03 EST 2003 root@blue:/usr/obj/usr/src/sys/BLUE i386 >Description: multimedia/mplayerxp disables cdparanoia via CONFIGURE_ARGS it should be an option this allows $ mplayerxp cdda:// Playing cdda:// Found Audio CD with 7 tracks Detected audio codec: [pcm] drv:pcm (Uncompressed PCM) Selecting Audio Decoder: [pcm] Uncompressed PCM audio decoder AUDIO: srate=44100 chans=2 bps=2 sfmt=0x10 ratio: 176400->176400 AO: [oss] 44100Hz Stereo Signed 16-bit (Little-Endian) audio_setup: sample format: Signed 16-bit (Little-Endian) (requested: Signed 16-bit (Little-Endian)) audio_setup: using 2 channels (requested: 2) audio_setup: using 44100 Hz samplerate (requested: 44100) >How-To-Repeat: >Fix: http://pigseye.kennesaw.edu/~dyeske/freebsd/patch-mplayerxp __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 21:40:22 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 135D737B405 for ; Wed, 26 Feb 2003 21:40:17 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 25DD343FCB for ; Wed, 26 Feb 2003 21:40:16 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1R5eFNS043539 for ; Wed, 26 Feb 2003 21:40:15 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1R5eFMw043538; Wed, 26 Feb 2003 21:40:15 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B659E37B401 for ; Wed, 26 Feb 2003 21:34:24 -0800 (PST) Received: from main.v2project.com (cliente-212079143064.cm256.senpc.supercable.es [212.79.143.64]) by mx1.FreeBSD.org (Postfix) with SMTP id 5214A43FAF for ; Wed, 26 Feb 2003 21:34:22 -0800 (PST) (envelope-from king@main.v2project.com) Received: (qmail 61938 invoked by uid 1001); 27 Feb 2003 05:34:09 -0000 Message-Id: <20030227053409.61937.qmail@main.v2project.com> Date: 27 Feb 2003 05:34:09 -0000 From: Jose Rey Reply-To: Jose Rey To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48735: New Port: net/kismet Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48735 >Category: ports >Synopsis: New Port: net/kismet >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Feb 26 21:40:15 PST 2003 >Closed-Date: >Last-Modified: >Originator: Jose Rey >Release: FreeBSD 4.8-PRERELEASE i386 >Organization: >Environment: >Description: New Port net/kismet Wireless Sniffer >How-To-Repeat: >Fix: --- kismet-2.8.1.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # kismet # kismet/files # kismet/Makefile # kismet/distinfo # kismet/pkg-plist # kismet/pkg-descr # echo c - kismet mkdir -p kismet > /dev/null 2>&1 echo c - kismet/files mkdir -p kismet/files > /dev/null 2>&1 echo x - kismet/Makefile sed 's/^X//' >kismet/Makefile << 'END-of-kismet/Makefile' X# New ports collection makefile for: kismet X# Date created: Thu Feb 27 05:04:34 CET 2003 X# Whom: Jose Rey X# X# $FreeBSD:$ X# X XPORTNAME= kismet XPORTVERSION= 2.8.1 XCATEGORIES= net XMASTER_SITES= http://www.kismetwireless.net/code/ X XMAINTAINER= king@v2project.com XCOMMENT= Kismet is an 802.11 wireless network sniffer X XRUN_DEPENDS= prism2ctl:${PORTSDIR}/net/bsd-airtools X XGNU_CONFIGURE= yes XUSE_GMAKE= yes XCONFIGURE_ARGS+= --disable-gps \ X --disable-netlink \ X --disable-wireless \ X --without-ethereal X X.if !exists(/usr/include/dev/wi/if_wavelan_ieee.h) XBROKEN= You need to upgrade X.endif X X.include END-of-kismet/Makefile echo x - kismet/distinfo sed 's/^X//' >kismet/distinfo << 'END-of-kismet/distinfo' XMD5 (kismet-2.8.1.tar.gz) = 7839368a4e5feee7d41b6582b3b8c3ab END-of-kismet/distinfo echo x - kismet/pkg-plist sed 's/^X//' >kismet/pkg-plist << 'END-of-kismet/pkg-plist' Xbin/kismet_server Xbin/kismet Xbin/kismet_client Xbin/kismet_hopper Xbin/kismet_monitor Xbin/kismet_unmonitor Xetc/ap_manuf Xetc/client_manuf Xetc/kismet.conf Xetc/kismet_ui.conf Xman/man1/kismet.1 Xman/man1/kismet_monitor.1 Xman/man1/kismet_hopper.1 Xman/man5/kismet.conf.5 Xman/man5/kismet_ui.conf.5 Xshare/kismet/wav/new_network.wav Xshare/kismet/wav/traffic.wav Xshare/kismet/wav/junk_traffic.wav Xshare/kismet/wav/alert.wav X@dirrm share/kismet X@dirrm share/kismet/wav END-of-kismet/pkg-plist echo x - kismet/pkg-descr sed 's/^X//' >kismet/pkg-descr << 'END-of-kismet/pkg-descr' Xbsd-airtools is a package that provides a complete toolset for Xwireless 802.11b auditing. Namely, it currently contains a bsd-based Xwep cracking application, called dweputils. It also contains a curses Xbased ap detection application similar to netstumbler (dstumbler) that Xcan be used to detect wireless access points and connected nodes, view Xsignal to noise graphs, and interactively scroll through scanned ap's Xand view statistics for each. It also includes a couple other tools to Xprovide a complete toolset for making use of all 14 of the prism2 Xdebug modes as well as do basic analysis of the hardware-based Xlink-layer protocols provided by prism2's monitor debug mode. X XWWW: http://www.dachb0den.com/projects/bsd-airtools.html END-of-kismet/pkg-descr exit --- kismet-2.8.1.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 21:50:14 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D375D37B401 for ; Wed, 26 Feb 2003 21:50:12 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0358143F93 for ; Wed, 26 Feb 2003 21:50:11 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1R5oBNS045734 for ; Wed, 26 Feb 2003 21:50:11 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1R5oBj1045733; Wed, 26 Feb 2003 21:50:11 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E424637B401 for ; Wed, 26 Feb 2003 21:47:36 -0800 (PST) Received: from web13507.mail.yahoo.com (web13507.mail.yahoo.com [216.136.175.86]) by mx1.FreeBSD.org (Postfix) with SMTP id 4BDEF43FCB for ; Wed, 26 Feb 2003 21:47:36 -0800 (PST) (envelope-from dyeske@yahoo.com) Received: from [24.196.239.120] by web13507.mail.yahoo.com via HTTP; Wed, 26 Feb 2003 21:47:36 PST Message-Id: <20030227054736.88141.qmail@web13507.mail.yahoo.com> Date: Wed, 26 Feb 2003 21:47:36 -0800 (PST) From: David Yeske To: FreeBSD-gnats-submit@FreeBSD.org Cc: nork@FreeBSD.org, Mario Subject: ports/48736: new port:graphics/filmgimp Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48736 >Category: ports >Synopsis: new port:graphics/filmgimp >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Feb 26 21:50:11 PST 2003 >Closed-Date: >Last-Modified: >Originator: David Yeske >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: FreeBSD blue 4.7-STABLE FreeBSD 4.7-STABLE #1: Sat Feb 8 18:38:03 EST 2003 root@blue:/usr/obj/usr/src/sys/BLUE i386 >Description: new port:graphics/filmgimp this has to stay in sync with graphics/OpenEXR this has a workaround for a conflict with graphics/gimp1 >How-To-Repeat: >Fix: http://pigseye.kennesaw.edu/~dyeske/freebsd/filmgimp.tgz __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 22:30:10 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 041AA37B401 for ; Wed, 26 Feb 2003 22:30:08 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8002843FBD for ; Wed, 26 Feb 2003 22:30:07 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1R6U7NS058107 for ; Wed, 26 Feb 2003 22:30:07 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1R6U7dc058106; Wed, 26 Feb 2003 22:30:07 -0800 (PST) Date: Wed, 26 Feb 2003 22:30:07 -0800 (PST) Message-Id: <200302270630.h1R6U7dc058106@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Carl Schmidt Subject: Re: ports/48726: New Port: deskutils/ljcharm Reply-To: Carl Schmidt Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48726; it has been noted by GNATS. From: Carl Schmidt To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: ports/48726: New Port: deskutils/ljcharm Date: Thu, 27 Feb 2003 01:22:32 -0500 New shell archive follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # ljcharm # ljcharm/Makefile # ljcharm/distinfo # ljcharm/pkg-descr # ljcharm/pkg-plist # echo c - ljcharm mkdir -p ljcharm > /dev/null 2>&1 echo x - ljcharm/Makefile sed 's/^X//' >ljcharm/Makefile << 'END-of-ljcharm/Makefile' X# Ports collection Makefile for: ljcharm X# Date created: 2003-02-26 X# Whom: schmidtcarl@earthlink.net X# X# $FreeBSD$ X# X XPORTNAME= charm XPORTVERSION= 1.3.0 XCATEGORIES= deskutils net XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= ljcharm X XMAINTAINER= schmidtcarl@earthlink.net XCOMMENT= A menu-driven python-based livejournal client X XUSE_PYTHON= yes XUSE_PYDISTUTILS=yes X Xpost-install: X @${INSTALL_SCRIPT} ${WRKSRC}/charm ${PREFIX}/bin X X @${MKDIR} ${PREFIX}/share/examples/charm X @${INSTALL_DATA} ${WRKSRC}/sample.charmrc ${PREFIX}/share/examples/charm X X.if !defined(NOPORTDOCS) X @${MKDIR} ${PREFIX}/share/doc/charm X @${INSTALL_DATA} ${WRKSRC}/CHANGES.charm ${PREFIX}/share/doc/charm/CHANGES X @${INSTALL_DATA} ${WRKSRC}/README.charm ${PREFIX}/share/doc/charm/README X.endif X X.include END-of-ljcharm/Makefile echo x - ljcharm/distinfo sed 's/^X//' >ljcharm/distinfo << 'END-of-ljcharm/distinfo' XMD5 (charm-1.3.0.tar.gz) = b0662384d52fc873ce517209e51acd9c END-of-ljcharm/distinfo echo x - ljcharm/pkg-descr sed 's/^X//' >ljcharm/pkg-descr << 'END-of-ljcharm/pkg-descr' XCharm is a command-line client written in Python for interacting with XLiveJournal servers. X XWWW: http://ljcharm.sourceforge.net/ X X- Carl Schmidt Xschmidtcarl@earthlink.net END-of-ljcharm/pkg-descr echo x - ljcharm/pkg-plist sed 's/^X//' >ljcharm/pkg-plist << 'END-of-ljcharm/pkg-plist' Xbin/charm X%%PYTHON_SITELIBDIR%%/ljcharm.py X%%PYTHON_SITELIBDIR%%/ljcharm.pyc X%%PYTHON_SITELIBDIR%%/ljcharm.pyo X%%PORTDOCS%%share/doc/charm/CHANGES X%%PORTDOCS%%share/doc/charm/README X%%PORTDOCS%%@dirrm share/doc/charm Xshare/examples/charm/sample.charmrc X@dirrm share/examples/charm END-of-ljcharm/pkg-plist exit To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 22:54:25 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E359A37B401; Wed, 26 Feb 2003 22:54:24 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8397B43F3F; Wed, 26 Feb 2003 22:54:24 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (leeym@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1R6sONS064480; Wed, 26 Feb 2003 22:54:24 -0800 (PST) (envelope-from leeym@freefall.freebsd.org) Received: (from leeym@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1R6sNXe064476; Wed, 26 Feb 2003 22:54:23 -0800 (PST) Date: Wed, 26 Feb 2003 22:54:23 -0800 (PST) From: Yen-Ming Lee Message-Id: <200302270654.h1R6sNXe064476@freefall.freebsd.org> To: mich@freebsdcluster.org, leeym@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48700: Update port: [Maintainer Update]: mail/gubby Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: [Maintainer Update]: mail/gubby State-Changed-From-To: open->closed State-Changed-By: leeym State-Changed-When: Wed Feb 26 22:54:23 PST 2003 State-Changed-Why: Committed with minor modifications, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48700 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 23: 3:22 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E2AF837B401; Wed, 26 Feb 2003 23:03:20 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8247943FB1; Wed, 26 Feb 2003 23:03:20 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (leeym@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1R73KNS066578; Wed, 26 Feb 2003 23:03:20 -0800 (PST) (envelope-from leeym@freefall.freebsd.org) Received: (from leeym@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1R73KaT066574; Wed, 26 Feb 2003 23:03:20 -0800 (PST) Date: Wed, 26 Feb 2003 23:03:20 -0800 (PST) From: Yen-Ming Lee Message-Id: <200302270703.h1R73KaT066574@freefall.freebsd.org> To: leeym@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, nik@FreeBSD.org Subject: Re: ports/48683: 'passivetex' port out of date, checksum error (patch included) Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: 'passivetex' port out of date, checksum error (patch included) Responsible-Changed-From-To: freebsd-ports-bugs->nik Responsible-Changed-By: leeym Responsible-Changed-When: Wed Feb 26 23:03:20 PST 2003 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=48683 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 23:10: 6 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9266937B401 for ; Wed, 26 Feb 2003 23:10:05 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3758243FCB for ; Wed, 26 Feb 2003 23:10:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1R7A5NS070301 for ; Wed, 26 Feb 2003 23:10:05 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1R7A5AN070300; Wed, 26 Feb 2003 23:10:05 -0800 (PST) Date: Wed, 26 Feb 2003 23:10:05 -0800 (PST) Message-Id: <200302270710.h1R7A5AN070300@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Yen-Ming Lee Subject: Re: ports/48693: www/tidy-devel: upgrading to 030225. Reply-To: Yen-Ming Lee Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48693; it has been noted by GNATS. From: Yen-Ming Lee To: freebsd-gnats-submit@FreeBSD.org, thierry@pompo.net Cc: Subject: Re: ports/48693: www/tidy-devel: upgrading to 030225. Date: Thu, 27 Feb 2003 15:01:23 +0800 Oops, checksum failed for me. leeym@utopia:[W3]~/cvs/ports/www/tidy-devel> make checksum >> tidy_src_030225.tgz doesn't seem to exist in /usr/ports/distfiles/. >> Attempting to fetch from http://tidy.sourceforge.net/src/./. Receiving tidy_src_030225.tgz (204970 bytes): 100% 204970 bytes transferred in 2.1 seconds (94.60 kBps) >> tidy_docs_030216.tgz doesn't seem to exist in /usr/ports/distfiles/. >> Attempting to fetch from http://tidy.sourceforge.net/docs/. Receiving tidy_docs_030216.tgz (149755 bytes): 100% 149755 bytes transferred in 1.8 seconds (82.25 kBps) >> Checksum mismatch for tidy_src_030225.tgz. >> Checksum OK for tidy_docs_030216.tgz. Make sure the Makefile and distinfo file (/home/leeym/cvs/ports/www/tidy-devel/distinfo) are up to date. If you are absolutely sure you want to override this check, type "make NO_CHECKSUM=yes [other args]". *** Error code 1 Stop in /home/leeym/cvs/ports/www/tidy-devel. leeym@utopia:[W3]~/cvs/ports/www/tidy-devel> cd /usr/ports/distfiles/ leeym@utopia:[W3]/usr/ports/distfiles> md5 tidy_src_030225.tgz MD5 (tidy_src_030225.tgz) = d6f38fc7b675df46180d02d0251c089e -- Yen-Ming Lee [§õ«Û©ú] KeyID: 0x5EB52E51 : www.leeym.com : Taipei, Taiwan leeym@{ leeym.com, FreeBSD.org, yahoo-inc.com, ntu.edu.tw, civil.ncku.edu.tw } To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 23:31: 4 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ACE2137B40D; Wed, 26 Feb 2003 23:31:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4CAB943FB1; Wed, 26 Feb 2003 23:31:03 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1R7V3NS075746; Wed, 26 Feb 2003 23:31:03 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1R7V3hf075736; Wed, 26 Feb 2003 23:31:03 -0800 (PST) Date: Wed, 26 Feb 2003 23:31:03 -0800 (PST) From: Edwin Groothuis Message-Id: <200302270731.h1R7V3hf075736@freefall.freebsd.org> To: kstailey@yahoo.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48712: RP06 disk image of MIT ITS disfile location change Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: RP06 disk image of MIT ITS disfile location change State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Wed Feb 26 23:25:17 PST 2003 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48712 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 23:34:33 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 54F1537B406; Wed, 26 Feb 2003 23:34:32 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EBA6143F85; Wed, 26 Feb 2003 23:34:31 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1R7YVNS076765; Wed, 26 Feb 2003 23:34:31 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1R7YVZx076761; Wed, 26 Feb 2003 23:34:31 -0800 (PST) Date: Wed, 26 Feb 2003 23:34:31 -0800 (PST) From: Edwin Groothuis Message-Id: <200302270734.h1R7YVZx076761@freefall.freebsd.org> To: mistral@imasy.or.jp, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48732: Update port: deskutils/xcalendar Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: deskutils/xcalendar State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Wed Feb 26 23:34:26 PST 2003 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48732 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 23:35:40 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB70C37B401; Wed, 26 Feb 2003 23:35:39 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4088C43F85; Wed, 26 Feb 2003 23:35:39 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1R7ZdNS076820; Wed, 26 Feb 2003 23:35:39 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1R7Zc37076816; Wed, 26 Feb 2003 23:35:38 -0800 (PST) Date: Wed, 26 Feb 2003 23:35:38 -0800 (PST) From: Edwin Groothuis Message-Id: <200302270735.h1R7Zc37076816@freefall.freebsd.org> To: glennpj@charter.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48733: Add WWW line to finance/libofx/pkg-descr Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Add WWW line to finance/libofx/pkg-descr State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Wed Feb 26 23:35:33 PST 2003 State-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48733 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Wed Feb 26 23:36:31 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1646937B401; Wed, 26 Feb 2003 23:36:30 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC16C43FDD; Wed, 26 Feb 2003 23:36:29 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1R7aTNS076865; Wed, 26 Feb 2003 23:36:29 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1R7aTSS076861; Wed, 26 Feb 2003 23:36:29 -0800 (PST) Date: Wed, 26 Feb 2003 23:36:29 -0800 (PST) From: Edwin Groothuis Message-Id: <200302270736.h1R7aTSS076861@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, lioux@FreeBSD.org Subject: Re: ports/48734: multimedia/mplayerxp disables cdparanoia Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: multimedia/mplayerxp disables cdparanoia Responsible-Changed-From-To: freebsd-ports-bugs->lioux Responsible-Changed-By: edwin Responsible-Changed-When: Wed Feb 26 23:36:20 PST 2003 Responsible-Changed-Why: Over to maintianer http://www.freebsd.org/cgi/query-pr.cgi?pr=48734 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 0:10:16 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A3D9C37B401 for ; Thu, 27 Feb 2003 00:10:14 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E34AB43FAF for ; Thu, 27 Feb 2003 00:10:13 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1R8ADNS087020 for ; Thu, 27 Feb 2003 00:10:13 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1R8ADDD087018; Thu, 27 Feb 2003 00:10:13 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A9B637B401 for ; Thu, 27 Feb 2003 00:08:46 -0800 (PST) Received: from happygiraffe.net (happygiraffe.net [81.6.215.59]) by mx1.FreeBSD.org (Postfix) with ESMTP id B8F4D43FD7 for ; Thu, 27 Feb 2003 00:08:45 -0800 (PST) (envelope-from dom@happygiraffe.net) Received: by happygiraffe.net (Postfix, from userid 1001) id CC1175C21; Thu, 27 Feb 2003 08:08:43 +0000 (GMT) Message-Id: <20030227080843.CC1175C21@happygiraffe.net> Date: Thu, 27 Feb 2003 08:08:43 +0000 (GMT) From: Dominic Mitchell Reply-To: Dominic Mitchell To: FreeBSD-gnats-submit@FreeBSD.org Cc: "Akinori MUSHA" X-Send-Pr-Version: 3.113 Subject: ports/48739: version bump for textproc/p5-XML-LibXSLT Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48739 >Category: ports >Synopsis: version bump for textproc/p5-XML-LibXSLT >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Feb 27 00:10:13 PST 2003 >Closed-Date: >Last-Modified: >Originator: Dominic Mitchell >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD ppe.happygiraffe.net 5.0-CURRENT FreeBSD 5.0-CURRENT #1: Tue Feb 18 15:02:55 GMT 2003 root@ppe.happygiraffe.net:/usr/obj/usr/src/sys/PPE i386 perl 5.8.0 libxml2-2.5.4 libxslt-1.0.27 >Description: Version Bump. >How-To-Repeat: n/a >Fix: Here's the patch. No files added or removed. diff -urN /usr/ports/textproc/p5-XML-LibXSLT/Makefile p5-XML-LibXSLT/Makefile --- /usr/ports/textproc/p5-XML-LibXSLT/Makefile Sat Feb 22 00:49:09 2003 +++ p5-XML-LibXSLT/Makefile Thu Feb 27 07:38:07 2003 @@ -6,7 +6,7 @@ # PORTNAME= XML-LibXSLT -PORTVERSION= 1.50 +PORTVERSION= 1.53 CATEGORIES= textproc perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= XML diff -urN /usr/ports/textproc/p5-XML-LibXSLT/distinfo p5-XML-LibXSLT/distinfo --- /usr/ports/textproc/p5-XML-LibXSLT/distinfo Fri Jun 21 06:12:35 2002 +++ p5-XML-LibXSLT/distinfo Thu Feb 27 07:44:37 2003 @@ -1 +1 @@ -MD5 (XML-LibXSLT-1.50.tar.gz) = d08cf29aca7e165fbebdda45ebc397e3 +MD5 (XML-LibXSLT-1.53.tar.gz) = 1fc25bedd58fbf9f3faf0d4936632645 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 0:36:49 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36E1237B401; Thu, 27 Feb 2003 00:36:49 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB50C43FD7; Thu, 27 Feb 2003 00:36:48 -0800 (PST) (envelope-from roam@FreeBSD.org) Received: from freefall.freebsd.org (roam@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1R8amNS093480; Thu, 27 Feb 2003 00:36:48 -0800 (PST) (envelope-from roam@freefall.freebsd.org) Received: (from roam@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1R8amQr093476; Thu, 27 Feb 2003 00:36:48 -0800 (PST) Date: Thu, 27 Feb 2003 00:36:48 -0800 (PST) From: Peter Pentchev Message-Id: <200302270836.h1R8amQr093476@freefall.freebsd.org> To: roam@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, anders@FreeBSD.org Subject: Re: ports/48239: [UPDATE] security/pam-mysql update to 0.5 and OpenPAM support Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [UPDATE] security/pam-mysql update to 0.5 and OpenPAM support Responsible-Changed-From-To: freebsd-ports-bugs->anders@FreeBSD.org Responsible-Changed-By: roam Responsible-Changed-When: Thu Feb 27 00:36:08 PST 2003 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=48239 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 1: 0:32 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E913E37B401 for ; Thu, 27 Feb 2003 01:00:29 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41AB943FE9 for ; Thu, 27 Feb 2003 01:00:25 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1R90PNS097796 for ; Thu, 27 Feb 2003 01:00:25 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1R90Pi2097795; Thu, 27 Feb 2003 01:00:25 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 42DCD37B401; Thu, 27 Feb 2003 00:54:31 -0800 (PST) Received: from atlas.informatik.rwth-aachen.de (atlas.Informatik.RWTH-Aachen.DE [137.226.194.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5AFE43FDD; Thu, 27 Feb 2003 00:54:29 -0800 (PST) (envelope-from stolz@i2.informatik.rwth-aachen.de) Received: from menelaos.informatik.rwth-aachen.de (menelaos.Informatik.RWTH-Aachen.DE [137.226.194.73]) by atlas.informatik.rwth-aachen.de (8.11.3/8.11.3/SuSE Linux 8.11.1-0.5) with ESMTP id h1R8sSW10067; Thu, 27 Feb 2003 09:54:28 +0100 Received: (from stolz@localhost) by menelaos.informatik.rwth-aachen.de (8.12.6/8.12.6/Submit) id h1R8tPl3055815; Thu, 27 Feb 2003 09:55:25 +0100 (CET) (envelope-from stolz) Message-Id: <200302270855.h1R8tPl3055815@menelaos.informatik.rwth-aachen.de> Date: Thu, 27 Feb 2003 09:55:25 +0100 (CET) From: Volker Stolz Reply-To: Volker Stolz To: FreeBSD-gnats-submit@FreeBSD.org Cc: taoka@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48740: [patch] Update audio/mpg123.el to 1.35, bento fix Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48740 >Category: ports >Synopsis: [patch] Update audio/mpg123.el to 1.35, bento fix >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Feb 27 01:00:24 PST 2003 >Closed-Date: >Last-Modified: >Originator: Volker Stolz >Release: FreeBSD 4.7-STABLE i386 >Organization: Lehrstuhl für Informatik II >Environment: System: FreeBSD menelaos.informatik.rwth-aachen.de 4.7-STABLE FreeBSD 4.7-STABLE #2: Fri Feb 7 12:48:00 CET 2003 root@menelaos.informatik.rwth-aachen.de:/usr/src/sys/compile/MENELAOS i386 >Description: - Update to recent version (noticed by bento because of checksum mismatch) - Use DIST_SUBDIR to avoid checksum mismatches in the future - Retire pkg-comment while I'm here >How-To-Repeat: >Fix: Committer: Retire pkg-comment --- mpg123.el begins here --- --- Makefile.orig Thu Feb 27 09:41:50 2003 +++ Makefile Thu Feb 27 09:45:03 2003 @@ -6,13 +6,15 @@ # PORTNAME= mpg123.el -PORTVERSION= 1.34 +PORTVERSION= 1.35 CATEGORIES= audio elisp MASTER_SITES= http://www.gentei.org/~yuuji/software/mpg123el/ DISTNAME= ${PORTNAME} +DIST_SUBDIR= ${PORTNAME}-${PORTVERSION} EXTRACT_SUFX= # empty MAINTAINER= taoka@FreeBSD.org +COMMENT= Front-end to mpg123 audio player for Emacsen RUN_DEPENDS= mpg123:${PORTSDIR}/audio/mpg123 --- distinfo.orig Thu Feb 27 09:41:54 2003 +++ distinfo Thu Feb 27 09:45:11 2003 @@ -1 +1 @@ -MD5 (mpg123.el) = 4e17c6565a821aea2369258cd171980a +MD5 (mpg123.el-1.35/mpg123.el) = b46750a54d0bb088a1592666b046e2da --- mpg123.el ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 1:10:18 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4181237B401 for ; Thu, 27 Feb 2003 01:10:17 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E000843FDD for ; Thu, 27 Feb 2003 01:10:16 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1R9AGNS003650 for ; Thu, 27 Feb 2003 01:10:16 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1R9AG94003649; Thu, 27 Feb 2003 01:10:16 -0800 (PST) Date: Thu, 27 Feb 2003 01:10:16 -0800 (PST) Message-Id: <200302270910.h1R9AG94003649@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Erwin Lansing Subject: Re: ports/48711: new location of ITS RP06 disk image distfile Reply-To: Erwin Lansing Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48711; it has been noted by GNATS. From: Erwin Lansing To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/48711: new location of ITS RP06 disk image distfile Date: Thu, 27 Feb 2003 10:02:26 +0100 --G4iJoqBmSsgzjUCe Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Feb 26, 2003 at 01:04:33PM -0500, Ken Stailey wrote: >=20 > >Number: 48711 > >Category: ports > >Synopsis: new location of ITS RP06 disk image distfile This looks like a duplicate of ports/48712 Cheers, -erwin --=20 _._ _,-'""`-._ Erwin Lansing (,-.`._,'( |\`-/| http://droso.org/ erwin@lansing.dk `-.-' \ )-`( , o o) http://fnidder.dk/ -bf- `- \`_`"'- --G4iJoqBmSsgzjUCe Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+XdQiqy9aWxUlaZARAr/oAJoD0hLRa5012zQ+ONL0L/F6UNs3PgCfRYmF dxqyHwBfaeRxDhaDsJeHszA= =B3hi -----END PGP SIGNATURE----- --G4iJoqBmSsgzjUCe-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 1:30:15 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6016337B401 for ; Thu, 27 Feb 2003 01:30:14 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A1ED43FBD for ; Thu, 27 Feb 2003 01:30:14 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1R9UDNS007998 for ; Thu, 27 Feb 2003 01:30:13 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1R9UDOj007997; Thu, 27 Feb 2003 01:30:13 -0800 (PST) Date: Thu, 27 Feb 2003 01:30:13 -0800 (PST) Message-Id: <200302270930.h1R9UDOj007997@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Maxim Tulyuk Subject: Re: ports/48601: [new port] mail/mailsync: Mailsync is a way of keeping a collection of mailboxes synchronized Reply-To: Maxim Tulyuk Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48601; it has been noted by GNATS. From: Maxim Tulyuk To: Oliver Braun Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: ports/48601: [new port] mail/mailsync: Mailsync is a way of keeping a collection of mailboxes synchronized Date: Thu, 27 Feb 2003 11:24:29 +0200 On Wed, Feb 26, 2003 at 11:07:34PM +0100, Oliver Braun wrote: > Hi, > > I am willing to commit your port with the following changes. The new > shar is available at > http://people.freebsd.org/~obraun/pending_ports/mailsync.shar > > Approved? Approved; thanks for your changing! -- Maxim Tulyuk WWW: http://www.primats.org.ua/~mt/ ICQ: 21134222 The bike is absolute freedom of moving To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 1:37:26 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3DA9A37B401; Thu, 27 Feb 2003 01:37:25 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE4DE43FDF; Thu, 27 Feb 2003 01:37:23 -0800 (PST) (envelope-from knu@FreeBSD.org) Received: from freefall.freebsd.org (knu@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1R9bNNS010075; Thu, 27 Feb 2003 01:37:23 -0800 (PST) (envelope-from knu@freefall.freebsd.org) Received: (from knu@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1R9bN7S010071; Thu, 27 Feb 2003 18:37:23 +0900 (JST) Date: Thu, 27 Feb 2003 18:37:23 +0900 (JST) From: Akinori MUSHA Message-Id: <200302270937.h1R9bN7S010071@freefall.freebsd.org> To: dom@happygiraffe.net, knu@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48739: version bump for textproc/p5-XML-LibXSLT Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: version bump for textproc/p5-XML-LibXSLT State-Changed-From-To: open->closed State-Changed-By: knu State-Changed-When: Thu Feb 27 18:37:16 JST 2003 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48739 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 1:40:16 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ADFFD37B401 for ; Thu, 27 Feb 2003 01:40:15 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A567343FDD for ; Thu, 27 Feb 2003 01:40:13 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1R9eDNS010128 for ; Thu, 27 Feb 2003 01:40:13 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1R9eD5J010127; Thu, 27 Feb 2003 01:40:13 -0800 (PST) Date: Thu, 27 Feb 2003 01:40:13 -0800 (PST) Message-Id: <200302270940.h1R9eD5J010127@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Steve Coltrin Subject: Re: ports/39608: upgrade games/cgoban to 1.9.13 Reply-To: Steve Coltrin Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/39608; it has been noted by GNATS. From: Steve Coltrin To: freebsd-gnats-submit@FreeBSD.org Cc: simonm@dcs.gla.ac.uk Subject: Re: ports/39608: upgrade games/cgoban to 1.9.13 Date: Thu, 27 Feb 2003 02:33:20 -0700 8 months after filing, no response from $MAINTAINER (cc'ed) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 1:59:24 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6452C37B401; Thu, 27 Feb 2003 01:59:23 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 05F2A43F75; Thu, 27 Feb 2003 01:59:23 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1R9xMNS014437; Thu, 27 Feb 2003 01:59:22 -0800 (PST) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1R9xMW4014433; Thu, 27 Feb 2003 01:59:22 -0800 (PST) Date: Thu, 27 Feb 2003 01:59:22 -0800 (PST) From: Edwin Groothuis Message-Id: <200302270959.h1R9xMW4014433@freefall.freebsd.org> To: kstailey@bsdlab.tf-md.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48711: new location of ITS RP06 disk image distfile Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: new location of ITS RP06 disk image distfile State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Thu Feb 27 01:58:17 PST 2003 State-Changed-Why: Erwin told me he doesn't like duplicate PRs. Maybe he should close them himself then! *pffft* :-) http://www.freebsd.org/cgi/query-pr.cgi?pr=48711 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 2: 4:58 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7807037B401; Thu, 27 Feb 2003 02:04:57 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1AB0E43FB1; Thu, 27 Feb 2003 02:04:57 -0800 (PST) (envelope-from knu@FreeBSD.org) Received: from freefall.freebsd.org (knu@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RA4uNS016552; Thu, 27 Feb 2003 02:04:56 -0800 (PST) (envelope-from knu@freefall.freebsd.org) Received: (from knu@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RA4uH5016548; Thu, 27 Feb 2003 19:04:56 +0900 (JST) Date: Thu, 27 Feb 2003 19:04:56 +0900 (JST) From: Akinori MUSHA Message-Id: <200302271004.h1RA4uH5016548@freefall.freebsd.org> To: knu@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, taoka@FreeBSD.org Subject: Re: ports/48740: [patch] Update audio/mpg123.el to 1.35, bento fix Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [patch] Update audio/mpg123.el to 1.35, bento fix Responsible-Changed-From-To: freebsd-ports-bugs->taoka Responsible-Changed-By: knu Responsible-Changed-When: Thu Feb 27 19:04:44 JST 2003 Responsible-Changed-Why: Over to MAINTAINER. http://www.freebsd.org/cgi/query-pr.cgi?pr=48740 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 2:11:35 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C032337B401; Thu, 27 Feb 2003 02:11:34 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A4EE43F3F; Thu, 27 Feb 2003 02:11:34 -0800 (PST) (envelope-from knu@FreeBSD.org) Received: from freefall.freebsd.org (knu@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RABYNS022286; Thu, 27 Feb 2003 02:11:34 -0800 (PST) (envelope-from knu@freefall.freebsd.org) Received: (from knu@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RABXOT022282; Thu, 27 Feb 2003 19:11:33 +0900 (JST) Date: Thu, 27 Feb 2003 19:11:33 +0900 (JST) From: Akinori MUSHA Message-Id: <200302271011.h1RABXOT022282@freefall.freebsd.org> To: kiwi@caudium.net, knu@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48629: Maintainer: lang/pike73 to be removed. Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Maintainer: lang/pike73 to be removed. State-Changed-From-To: open->closed State-Changed-By: knu State-Changed-When: Thu Feb 27 19:11:20 JST 2003 State-Changed-Why: Port removed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48629 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 2:57:47 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3506A37B401; Thu, 27 Feb 2003 02:57:46 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 92A2743FA3; Thu, 27 Feb 2003 02:57:46 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from freefall.freebsd.org (lioux@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RAvkNS031185; Thu, 27 Feb 2003 02:57:46 -0800 (PST) (envelope-from lioux@freefall.freebsd.org) Received: (from lioux@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RAvkkS031181; Thu, 27 Feb 2003 02:57:46 -0800 (PST) Date: Thu, 27 Feb 2003 02:57:46 -0800 (PST) From: Mario Sergio Fujikawa Ferreira Message-Id: <200302271057.h1RAvkkS031181@freefall.freebsd.org> To: lioux@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, lioux@FreeBSD.org Subject: Re: ports/48736: new port:graphics/filmgimp Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: new port:graphics/filmgimp Responsible-Changed-From-To: freebsd-ports-bugs->lioux Responsible-Changed-By: lioux Responsible-Changed-When: Thu Feb 27 02:57:46 PST 2003 Responsible-Changed-Why: I will handle this http://www.freebsd.org/cgi/query-pr.cgi?pr=48736 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 5:40:26 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4259237B408 for ; Thu, 27 Feb 2003 05:40:24 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 47EFC44003 for ; Thu, 27 Feb 2003 05:40:16 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RDeGNS081298 for ; Thu, 27 Feb 2003 05:40:16 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RDeGfE081297; Thu, 27 Feb 2003 05:40:16 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6779037B401 for ; Thu, 27 Feb 2003 05:36:30 -0800 (PST) Received: from vaio.alexdupre.com (212-41-211-209.adsl.galactica.it [212.41.211.209]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A29743FA3 for ; Thu, 27 Feb 2003 05:36:29 -0800 (PST) (envelope-from alex@vaio.alexdupre.com) Received: from vaio.alexdupre.com (localhost [127.0.0.1]) by vaio.alexdupre.com (8.12.7/8.12.7) with ESMTP id h1RDaNnV086342 for ; Thu, 27 Feb 2003 14:36:23 +0100 (CET) (envelope-from alex@vaio.alexdupre.com) Received: (from alex@localhost) by vaio.alexdupre.com (8.12.7/8.12.7/Submit) id h1RDaNKs086341; Thu, 27 Feb 2003 14:36:23 +0100 (CET) Message-Id: <200302271336.h1RDaNKs086341@vaio.alexdupre.com> Date: Thu, 27 Feb 2003 14:36:23 +0100 (CET) From: Alex Dupre Reply-To: Alex Dupre To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48743: [Maintainer Update] Port: MySQL 4.0 (client) Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48743 >Category: ports >Synopsis: [Maintainer Update] Port: MySQL 4.0 (client) >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Feb 27 05:40:15 PST 2003 >Closed-Date: >Last-Modified: >Originator: Alex Dupre >Release: FreeBSD 4.8-ALEXDUPRE i386 >Organization: >Environment: System: FreeBSD vaio.alexdupre.com 4.8-ALEXDUPRE FreeBSD 4.8-ALEXDUPRE #0: Sat Feb 22 15:23:34 CET 2003 root@vaio.alexdupre.com:/usr/obj/usr/src/sys/VAIO i386 >Description: Fix package comment. >How-To-Repeat: >Fix: --- mysql40-client.diff begins here --- diff -ruN mysql40-client.orig/Makefile mysql40-client/Makefile --- mysql40-client.orig/Makefile Fri Jan 31 17:02:39 2003 +++ mysql40-client/Makefile Thu Feb 27 14:18:25 2003 @@ -10,7 +10,7 @@ PKGNAMESUFFIX= -client MASTERDIR= ${.CURDIR}/../mysql40-server -COMMENT= ${PKGDIR}/pkg-comment.client +COMMENT= Multithreaded SQL database (client) PKGINSTALL= mustnotexist PLIST= ${PKGDIR}/pkg-plist.client --- mysql40-client.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 5:40:33 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 48B1037B40A for ; Thu, 27 Feb 2003 05:40:24 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B18F4400D for ; Thu, 27 Feb 2003 05:40:16 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RDeGNS081312 for ; Thu, 27 Feb 2003 05:40:16 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RDeGDg081310; Thu, 27 Feb 2003 05:40:16 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1FFDE37B401 for ; Thu, 27 Feb 2003 05:38:55 -0800 (PST) Received: from vaio.alexdupre.com (212-41-211-209.adsl.galactica.it [212.41.211.209]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7862243FA3 for ; Thu, 27 Feb 2003 05:38:53 -0800 (PST) (envelope-from alex@vaio.alexdupre.com) Received: from vaio.alexdupre.com (localhost [127.0.0.1]) by vaio.alexdupre.com (8.12.7/8.12.7) with ESMTP id h1RDclnV086424 for ; Thu, 27 Feb 2003 14:38:47 +0100 (CET) (envelope-from alex@vaio.alexdupre.com) Received: (from alex@localhost) by vaio.alexdupre.com (8.12.7/8.12.7/Submit) id h1RDclEE086423; Thu, 27 Feb 2003 14:38:47 +0100 (CET) Message-Id: <200302271338.h1RDclEE086423@vaio.alexdupre.com> Date: Thu, 27 Feb 2003 14:38:47 +0100 (CET) From: Alex Dupre Reply-To: Alex Dupre To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48744: [Maintainer Update] Port: MySQL 4.0 (server) Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48744 >Category: ports >Synopsis: [Maintainer Update] Port: MySQL 4.0 (server) >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Feb 27 05:40:16 PST 2003 >Closed-Date: >Last-Modified: >Originator: Alex Dupre >Release: FreeBSD 4.8-ALEXDUPRE i386 >Organization: >Environment: System: FreeBSD vaio.alexdupre.com 4.8-ALEXDUPRE FreeBSD 4.8-ALEXDUPRE #0: Sat Feb 22 15:23:34 CET 2003 root@vaio.alexdupre.com:/usr/obj/usr/src/sys/VAIO i386 >Description: Update MySQL to 4.0.11a release. >How-To-Repeat: >Fix: --- mysql40-server.diff begins here --- diff -ruN mysql40-server.orig/Makefile mysql40-server/Makefile --- mysql40-server.orig/Makefile Tue Feb 25 12:48:20 2003 +++ mysql40-server/Makefile Thu Feb 27 14:15:59 2003 @@ -6,7 +6,7 @@ # PORTNAME?= mysql -PORTVERSION= 4.0.10 +PORTVERSION= 4.0.11a PORTREVISION?= 0 CATEGORIES= databases MASTER_SITES= ftp://mysql.secsup.org/pub/software/mysql/Downloads/MySQL-4.0/ \ @@ -26,14 +26,16 @@ DISTNAME= ${PORTNAME}-${PORTVERSION}-gamma MAINTAINER= sysadmin@alexdupre.com -COMMENT= Multithreaded SQL database (server) +COMMENT?= Multithreaded SQL database (server) SLAVEDIRS= databases/mysql40-client DB_DIR?= /var/db/mysql USE_PERL5_RUN= yes USE_LIBTOOL= yes +USE_REINPLACE= yes GNU_CONFIGURE= yes +CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} CONFIGURE_ARGS= --localstatedir=${DB_DIR} \ --without-debug \ --without-readline \ @@ -43,9 +45,7 @@ --with-mysqlfs \ --with-vio \ --with-low-memory \ - --with-comment='FreeBSD port: ${PKGNAME}' \ - --with-server-suffix='' \ - --program-prefix='' + --with-comment='FreeBSD port: ${PKGNAME}' .include @@ -103,8 +103,7 @@ ONLY_FOR_ARCHS= i386 alpha sparc64 -DOCS= manual.html manual.ps manual_toc.html manual.txt manual.texi \ - include.texi +DOCS= manual.html manual.txt manual_toc.html pre-fetch: @${ECHO} "" @@ -115,16 +114,20 @@ @${ECHO} " WITH_OPENSSL=yes Enable secure connections." @${ECHO} " DB_DIR=directory Set alternate directory for database files" @${ECHO} " (default is /var/db/mysql)." - @${ECHO} " WITH_LINUXTHREADS=yes Use the linuxthreads pthread library." - @${ECHO} " OVERWRITE_DB=yes Re-initialize default databases" - @${ECHO} " SKIP_DNS_CHECK=yes Don't run resolveip to do an additional" - @${ECHO} " DNS check before inserting local hostname to" - @${ECHO} " mysql database" + @${ECHO} " WITH_LINUXTHREADS=yes Use the linuxthreads pthread library." + @${ECHO} " OVERWRITE_DB=yes Re-initialize default databases." + @${ECHO} " SKIP_DNS_CHECK=yes Don't run resolveip to do an additional DNS" + @${ECHO} " reverse lookup before inserting local" + @${ECHO} " hostname into mysql database" @${ECHO} " (use if your machine has no official DNS entry)." @${ECHO} " BUILD_STATIC=yes Build a static version of mysqld." @${ECHO} " BUILD_OPTIMIZED=yes Add -mcpu=i686 to CFLAGS." @${ECHO} "" +post-patch: + @${REINPLACE_CMD} -e "s|SUBDIRS =|SUBDIRS = include @sql_server_dirs@ scripts support-files|g" ${WRKSRC}/Makefile.in + @${REINPLACE_CMD} -e "s|install: install-am|install:|g" ${WRKSRC}/include/Makefile.in + .if defined(WITH_OPENSSL) && defined(BUILD_STATIC) pre-configure: @${ECHO} "You can't use the BUILD_STATIC option when using OpenSSL." @@ -147,13 +150,14 @@ .endif @${SED} "s|%%PREFIX%%|${PREFIX}|g; s|%%DB_DIR%%|${DB_DIR}|g" < ${FILESDIR}/mysql-server.sh > ${PREFIX}/etc/rc.d/mysql-server.sh @${CHMOD} 750 ${PREFIX}/etc/rc.d/mysql-server.sh - .if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR}/Flags + @${MKDIR} ${DOCSDIR}/Flags .for doc in ${DOCS} - ${INSTALL_DATA} ${WRKSRC}/Docs/${doc} ${DOCSDIR} + @${INSTALL_DATA} ${WRKSRC}/Docs/${doc} ${DOCSDIR} .endfor - ${INSTALL_DATA} ${WRKSRC}/Docs/Flags/*.gif ${DOCSDIR}/Flags + @${INSTALL_DATA} ${WRKSRC}/Docs/Flags/*.gif ${DOCSDIR}/Flags + @${INSTALL_DATA} ${WRKSRC}/Docs/mysql.info ${PREFIX}/info + @install-info ${PREFIX}/info/mysql.info ${PREFIX}/info/dir .endif # MySQL-Client part @@ -166,12 +170,13 @@ LDCONFIG_DIRS= %%PREFIX%%/lib/mysql CONFIGURE_ARGS+=--without-server -MAKE_ENV= CLIENT_ONLY="${CLIENT_ONLY}" + +post-patch: + @${REINPLACE_CMD} -e "s|SUBDIRS =|SUBDIRS = include @sql_client_dirs@ tests man|g" ${WRKSRC}/Makefile.in post-install: @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/mysql-client.sh > ${PREFIX}/etc/rc.d/000.mysql-client.sh @${CHMOD} 750 ${PREFIX}/etc/rc.d/000.mysql-client.sh - .endif .include diff -ruN mysql40-server.orig/distinfo mysql40-server/distinfo --- mysql40-server.orig/distinfo Tue Feb 4 15:13:33 2003 +++ mysql40-server/distinfo Thu Feb 27 07:27:09 2003 @@ -1 +1 @@ -MD5 (mysql-4.0.10-gamma.tar.gz) = fd66e12e7de57a6836283365107af427 +MD5 (mysql-4.0.11a-gamma.tar.gz) = dbe1426ed5ae1626b2b1a3ebca568200 diff -ruN mysql40-server.orig/files/patch-Makefile.in mysql40-server/files/patch-Makefile.in --- mysql40-server.orig/files/patch-Makefile.in Tue Feb 4 15:13:34 2003 +++ mysql40-server/files/patch-Makefile.in Thu Feb 27 12:27:44 2003 @@ -1,21 +1,16 @@ ---- Makefile.in.orig Tue Feb 4 13:55:10 2003 -+++ Makefile.in Tue Feb 4 13:58:31 2003 -@@ -210,13 +210,11 @@ +--- Makefile.in.orig Thu Feb 20 20:58:01 2003 ++++ Makefile.in Thu Feb 27 12:27:18 2003 +@@ -212,12 +212,7 @@ EXTRA_DIST = INSTALL-SOURCE README \ COPYING COPYING.LIB -SUBDIRS = . include @docs_dirs@ @readline_dir@ \ - @thread_dirs@ pstack @sql_client_dirs@ \ - @sql_server_dirs@ scripts man tests \ -- BUILD netware os2 @libmysqld_dirs@ \ -- @bench_dirs@ support-files @fs_dirs@ @tools_dirs@ \ -- @platform_dir@ +- BUILD @netware_dir@ os2 @libmysqld_dirs@ \ +- @bench_dirs@ support-files @fs_dirs@ @tools_dirs@ - -+.if defined(CLIENT_ONLY) -+SUBDIRS = include @sql_client_dirs@ tests man -+.else -+SUBDIRS = include @docs_dirs@ @sql_server_dirs@ scripts support-files -+.endif ++SUBDIRS = # Relink after clean linked_sources = linked_client_sources linked_server_sources \ diff -ruN mysql40-server.orig/files/patch-configure mysql40-server/files/patch-configure --- mysql40-server.orig/files/patch-configure Tue Feb 4 15:13:34 2003 +++ mysql40-server/files/patch-configure Thu Feb 27 12:42:32 2003 @@ -1,14 +1,16 @@ ---- configure.orig Wed Jan 29 12:29:38 2003 -+++ configure Tue Feb 4 14:07:39 2003 -@@ -8104,6 +8104,7 @@ +--- configure.orig Tue Feb 25 21:30:07 2003 ++++ configure Thu Feb 27 12:42:12 2003 +@@ -8101,7 +8101,8 @@ + # This can be used to rebuild libtool when needed - LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" -+$ac_aux_dir/ltconfig $LIBTOOL_DEPS +-LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" ++LIBTOOL_DEPS="--disable-ltlibs /usr/local/share/libtool/ltmain.sh" ++/usr/local/share/libtool/ltconfig $LIBTOOL_DEPS # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' -@@ -9046,7 +9047,7 @@ +@@ -9044,7 +9045,7 @@ ;; esac fi @@ -17,7 +19,7 @@ if test -n "$HOSTNAME"; then echo "$as_me:$LINENO: result: $HOSTNAME" >&5 -@@ -9238,43 +9239,8 @@ +@@ -9236,43 +9237,8 @@ echo "$as_me:$LINENO: checking \"how to check if pid exists\"" >&5 echo $ECHO_N "checking \"how to check if pid exists\"... $ECHO_C" >&6 PS=$ac_cv_path_PS @@ -61,3 +63,12 @@ echo "$as_me:$LINENO: result: \"$FIND_PROC\"" >&5 echo "${ECHO_T}\"$FIND_PROC\"" >&6 +@@ -22310,7 +22276,7 @@ + /* ) rel_srcdir="$srcdir" ;; + * ) rel_srcdir="../$srcdir" ;; + esac +- if test "x$enable_dependency_tracking" == xno ++ if test "x$enable_dependency_tracking" = xno + then + innodb_conf_flags=--disable-dependency-tracking + fi diff -ruN mysql40-server.orig/files/patch-include::Makefile.in mysql40-server/files/patch-include::Makefile.in --- mysql40-server.orig/files/patch-include::Makefile.in Fri Jan 31 17:02:39 2003 +++ mysql40-server/files/patch-include::Makefile.in Thu Jan 1 01:00:00 1970 @@ -1,14 +0,0 @@ ---- include/Makefile.in.orig Tue Nov 19 17:13:35 2002 -+++ include/Makefile.in Tue Nov 19 17:14:10 2002 -@@ -335,7 +335,11 @@ - installdirs: - $(mkinstalldirs) $(DESTDIR)$(pkgincludedir) - -+.if defined(CLIENT_ONLY) - install: install-am -+.else -+install: -+.endif - install-exec: install-exec-am - install-data: install-data-am - uninstall: uninstall-am diff -ruN mysql40-server.orig/pkg-comment.client mysql40-server/pkg-comment.client --- mysql40-server.orig/pkg-comment.client Tue Dec 28 17:29:25 1999 +++ mysql40-server/pkg-comment.client Thu Jan 1 01:00:00 1970 @@ -1 +0,0 @@ -Multithreaded SQL database (client) diff -ruN mysql40-server.orig/pkg-plist mysql40-server/pkg-plist --- mysql40-server.orig/pkg-plist Fri Jan 31 17:02:39 2003 +++ mysql40-server/pkg-plist Thu Feb 27 14:09:29 2003 @@ -93,13 +93,15 @@ %%PORTDOCS%%share/doc/mysql/Flags/ukraine.gif %%PORTDOCS%%share/doc/mysql/Flags/usa.gif %%PORTDOCS%%share/doc/mysql/Flags/yugoslavia.gif -%%PORTDOCS%%share/doc/mysql/include.texi %%PORTDOCS%%share/doc/mysql/manual.html -%%PORTDOCS%%share/doc/mysql/manual.ps -%%PORTDOCS%%share/doc/mysql/manual.texi %%PORTDOCS%%share/doc/mysql/manual.txt %%PORTDOCS%%share/doc/mysql/manual_toc.html +share/mysql/Description.plist +share/mysql/Info.plist +share/mysql/StartupParameters.plist share/mysql/binary-configure +share/mysql/postinstall +share/mysql/preinstall share/mysql/charsets/Index share/mysql/charsets/README share/mysql/charsets/cp1251.conf --- mysql40-server.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 5:40:37 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 454C637B409 for ; Thu, 27 Feb 2003 05:40:24 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EBEF943FFB for ; Thu, 27 Feb 2003 05:40:15 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RDeFNS081285 for ; Thu, 27 Feb 2003 05:40:15 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RDeFF2081284; Thu, 27 Feb 2003 05:40:15 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E9E837B401 for ; Thu, 27 Feb 2003 05:34:40 -0800 (PST) Received: from vaio.alexdupre.com (212-41-211-209.adsl.galactica.it [212.41.211.209]) by mx1.FreeBSD.org (Postfix) with ESMTP id D819A43F93 for ; Thu, 27 Feb 2003 05:34:38 -0800 (PST) (envelope-from alex@vaio.alexdupre.com) Received: from vaio.alexdupre.com (localhost [127.0.0.1]) by vaio.alexdupre.com (8.12.7/8.12.7) with ESMTP id h1RDYWnV086257 for ; Thu, 27 Feb 2003 14:34:32 +0100 (CET) (envelope-from alex@vaio.alexdupre.com) Received: (from alex@localhost) by vaio.alexdupre.com (8.12.7/8.12.7/Submit) id h1RDYVxB086256; Thu, 27 Feb 2003 14:34:31 +0100 (CET) Message-Id: <200302271334.h1RDYVxB086256@vaio.alexdupre.com> Date: Thu, 27 Feb 2003 14:34:31 +0100 (CET) From: Alex Dupre Reply-To: Alex Dupre To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48742: [Update & Fix] Port: Mysql-modules 1.2219 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48742 >Category: ports >Synopsis: [Update & Fix] Port: Mysql-modules 1.2219 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Feb 27 05:40:15 PST 2003 >Closed-Date: >Last-Modified: >Originator: Alex Dupre >Release: FreeBSD 4.8-ALEXDUPRE i386 >Organization: >Environment: System: FreeBSD vaio.alexdupre.com 4.8-ALEXDUPRE FreeBSD 4.8-ALEXDUPRE #0: Sat Feb 22 15:23:34 CET 2003 root@vaio.alexdupre.com:/usr/obj/usr/src/sys/VAIO i386 >Description: Update to 1.2219 release. Include support for MySQL 4.0. Supersedes PR 45542. >How-To-Repeat: >Fix: --- p5-Mysql.diff begins here --- diff -ruN p5-Mysql.orig/Makefile p5-Mysql/Makefile --- p5-Mysql.orig/Makefile Thu Feb 27 14:01:19 2003 +++ p5-Mysql/Makefile Thu Feb 27 14:05:53 2003 @@ -6,7 +6,7 @@ # PORTNAME= Mysql-modules -PORTVERSION= 1.2216 +PORTVERSION= 1.2219 CATEGORIES= databases perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= DBD @@ -18,7 +18,14 @@ BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Data/ShowTable.pm:${PORTSDIR}/devel/p5-Data-ShowTable \ ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI RUN_DEPENDS= ${BUILD_DEPENDS} + +.include + +.if exists(${LOCALBASE}/lib/mysql/libmysqlclient.so.12) +LIB_DEPENDS= mysqlclient.12:${PORTSDIR}/databases/mysql40-client +.else LIB_DEPENDS= mysqlclient.10:${PORTSDIR}/databases/mysql323-client +.endif PERL_CONFIGURE= yes CONFIGURE_ARGS= PREFIX=${PREFIX} CC="${CC}" CCFLAGS="${CFLAGS}" \ @@ -34,4 +41,4 @@ pre-configure: @${PERL} -p -i -e 's| -lgz||' ${WRKSRC}/lib/DBD/mysql/Install.pm -.include +.include diff -ruN p5-Mysql.orig/distinfo p5-Mysql/distinfo --- p5-Mysql.orig/distinfo Thu Feb 27 14:01:19 2003 +++ p5-Mysql/distinfo Thu Feb 27 14:04:33 2003 @@ -1 +1 @@ -MD5 (Msql-Mysql-modules-1.2216.tar.gz) = b5f764a84c452c9f46c3f7d937798e77 +MD5 (Msql-Mysql-modules-1.2219.tar.gz) = ad3dec1881d4c4ff9a353f33ff434b5f --- p5-Mysql.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 6:30:14 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 20DB237B401 for ; Thu, 27 Feb 2003 06:30:13 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C49143FD7 for ; Thu, 27 Feb 2003 06:30:12 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1REUBNS007350 for ; Thu, 27 Feb 2003 06:30:11 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1REUBGY007349; Thu, 27 Feb 2003 06:30:11 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BAA6337B405 for ; Thu, 27 Feb 2003 06:23:26 -0800 (PST) Received: from AVelizy-101-1-1-180.abo.wanadoo.fr (AVelizy-101-1-1-180.abo.wanadoo.fr [193.251.75.180]) by mx1.FreeBSD.org (Postfix) with ESMTP id B405743FE3 for ; Thu, 27 Feb 2003 06:23:23 -0800 (PST) (envelope-from dhenin@cyclopes.org) Received: from AVelizy-101-1-1-180.abo.wanadoo.fr (localhost [127.0.0.1]) by AVelizy-101-1-1-180.abo.wanadoo.fr (8.12.6/8.12.6) with ESMTP id h1REQJfj019758 for ; Thu, 27 Feb 2003 15:26:19 +0100 (CET) (envelope-from dhenin@AVelizy-101-1-1-180.abo.wanadoo.fr) Received: (from dhenin@localhost) by AVelizy-101-1-1-180.abo.wanadoo.fr (8.12.6/8.12.6/Submit) id h1REQINu019755; Thu, 27 Feb 2003 15:26:18 +0100 (CET) Message-Id: <200302271426.h1REQINu019755@AVelizy-101-1-1-180.abo.wanadoo.fr> Date: Thu, 27 Feb 2003 15:26:18 +0100 (CET) From: Jean-Jacques Dhénin Reply-To: Jean-Jacques Dhénin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48745: portsclean falls in error with a file .tgz Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48745 >Category: ports >Synopsis: portsclean falls in error with a file .tgz >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Feb 27 06:30:11 PST 2003 >Closed-Date: >Last-Modified: >Originator: Jean-Jacques Dhénin >Release: FreeBSD 4.7-RELEASE-p2 i386 >Organization: >Environment: System: FreeBSD polypheme.cyclopes.org 4.7-RELEASE-p2 FreeBSD 4.7-RELEASE-p2 #3: Sat Dec 14 07:55:56 CET 2002 root@polypheme.cyclopes.org:/usr/obj/usr/src/sys/POLYPHEME i386 pc, FreeBSD 4.7-RELEASE-p2 >Description: portsclean falls in error when a file .tgz whithout basename is in /usr/ports/packages/All >How-To-Repeat: put a file .tgz in the directory >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 6:40: 7 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B8A1837B401 for ; Thu, 27 Feb 2003 06:40:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF7EC43FDF for ; Thu, 27 Feb 2003 06:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1REe3NS009430 for ; Thu, 27 Feb 2003 06:40:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1REe3Kw009429; Thu, 27 Feb 2003 06:40:03 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B61D237B401 for ; Thu, 27 Feb 2003 06:32:05 -0800 (PST) Received: from osi.secret.org (osi.secret.org [216.213.189.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0D1943FDD for ; Thu, 27 Feb 2003 06:32:03 -0800 (PST) (envelope-from lucid@osi.secret.org) Received: from osi.secret.org (localhost [127.0.0.1]) by osi.secret.org (8.12.6/8.12.6) with ESMTP id h1REYkN8020827; Thu, 27 Feb 2003 09:34:46 -0500 (EST) (envelope-from lucid@osi.secret.org) Received: (from lucid@localhost) by osi.secret.org (8.12.6/8.12.6/Submit) id h1REYjgT020826; Thu, 27 Feb 2003 09:34:45 -0500 (EST) Message-Id: <200302271434.h1REYjgT020826@osi.secret.org> Date: Thu, 27 Feb 2003 09:34:45 -0500 (EST) From: William Morris Reply-To: William Morris To: FreeBSD-gnats-submit@FreeBSD.org Cc: William Morris X-Send-Pr-Version: 3.113 Subject: ports/48746: fix for broken gdm2 port due to openpam Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48746 >Category: ports >Synopsis: fix for broken gdm2 port due to openpam >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Feb 27 06:40:03 PST 2003 >Closed-Date: >Last-Modified: >Originator: William Morris >Release: FreeBSD 5.0-RELEASE-p1 i386 >Organization: William Morris Consulting >Environment: System: FreeBSD williammorris.com 5.0-RELEASE-p1 FreeBSD 5.0-RELEASE-p1 #0: Sat Feb 22 23:14:42 EST 2003 me@williammorris.com:/usr/obj/usr/src/sys/J00KIE i386 >Description: Port fails to build due to missing misc_conv in openpam /bin/sh ../libtool --mode=link cc -O -pipe -mcpu=pentiumpro -g -Wall -Wpointer-arith -Wmissing-prototypes -Wmissing-declarations -o gdmaskpass gdmaskpass.o -lintl -lpam -L/usr/local/lib cc -O -pipe -mcpu=pentiumpro -g -Wall -Wpointer-arith -Wmissing-prototypes -Wmis sing-declarations -o gdmaskpass gdmaskpass.o -lintl -lpam -L/usr/local/lib gdmaskpass.o: In function `main': /usr/ports/x11/gdm2/work/gdm-2.4.1.3/utils/gdmaskpass.c:18: undefined reference to `misc_conv' gmake[2]: *** [gdmaskpass] Error 1 gmake[2]: Leaving directory `/usr/ports/x11/gdm2/work/gdm-2.4.1.3/utils' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/x11/gdm2/work/gdm-2.4.1.3' gmake: *** [all-recursive-am] Error 2 *** Error code 2 >How-To-Repeat: cd /usr/ports/x11/gdm2; make >Fix: --- utils/gdmaskpass.c.orig Mon Nov 5 23:46:28 2001 +++ utils/gdmaskpass.c Thu Feb 27 04:15:12 2003 @@ -7,9 +7,10 @@ #include #include #include +#include static struct pam_conv conv = { - misc_conv, + openpam_ttyconv, NULL }; >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 6:50:16 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D52ED37B409 for ; Thu, 27 Feb 2003 06:50:15 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C3CB43FD7 for ; Thu, 27 Feb 2003 06:50:15 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1REoFNS017879 for ; Thu, 27 Feb 2003 06:50:15 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1REoFj3017878; Thu, 27 Feb 2003 06:50:15 -0800 (PST) Date: Thu, 27 Feb 2003 06:50:15 -0800 (PST) Message-Id: <200302271450.h1REoFj3017878@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: me@williammorris.com Subject: Re: ports/48746: fix for broken gdm2 port due to o Reply-To: me@williammorris.com Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48746; it has been noted by GNATS. From: me@williammorris.com To: freebsd-gnats-submit@FreeBSD.org, me@williammorris.com Cc: Subject: Re: ports/48746: fix for broken gdm2 port due to o Date: Thu, 27 Feb 2003 04:50:38 -0500 (EST) Please close PR same as ports/46538 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 7: 0:12 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 09A1A37B401 for ; Thu, 27 Feb 2003 07:00:09 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00C8E43FE0 for ; Thu, 27 Feb 2003 07:00:07 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RF07NS021996 for ; Thu, 27 Feb 2003 07:00:07 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RF07qx021995; Thu, 27 Feb 2003 07:00:07 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 90DAF37B401 for ; Thu, 27 Feb 2003 06:52:40 -0800 (PST) Received: from itesec.hsc.fr (itesec.hsc.fr [192.70.106.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A1B743F85 for ; Thu, 27 Feb 2003 06:52:39 -0800 (PST) (envelope-from yb@hsc.fr) Received: from taz.hsc.fr (ogoun.hsc.fr [192.70.106.75]) (using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits)) (Client CN "taz.hsc.fr", Issuer "HSC CA" (verified OK)) by itesec.hsc.fr (Postfix) with ESMTP id AFF3A20F42 for ; Thu, 27 Feb 2003 15:52:37 +0100 (CET) Received: by taz.hsc.fr (Postfix, from userid 1000) id 95A3F68D; Thu, 27 Feb 2003 15:52:30 +0100 (CET) Message-Id: <20030227145230.95A3F68D@taz.hsc.fr> Date: Thu, 27 Feb 2003 15:52:30 +0100 (CET) From: Yann Berthier Reply-To: Yann Berthier To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48747: New port: net/aguri Aggregation based traffic profiler Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48747 >Category: ports >Synopsis: New port: net/aguri Aggregation based traffic profiler >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Feb 27 07:00:07 PST 2003 >Closed-Date: >Last-Modified: >Originator: Yann Berthier >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD taz.hsc.fr 5.0-CURRENT FreeBSD 5.0-CURRENT #46: Sat Jan 25 16:25:00 CET 2003 root@taz.hsc.fr:/usr/obj/usr/src/sys/TAZ i386 >Description: New port: net/aguri >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # aguri/ # aguri/Makefile # aguri/distinfo # aguri/pkg-plist # aguri/pkg-descr # echo c - aguri/ mkdir -p aguri/ > /dev/null 2>&1 echo x - aguri/Makefile sed 's/^X//' >aguri/Makefile << 'END-of-aguri/Makefile' X# New ports collection makefile for: aguri X# Date created: 27 February 2003 X# Whom: Yann Berthier X# X# $FreeBSD$ X# X XPORTNAME= aguri XPORTVERSION= 0.5 XCATEGORIES= net XMASTER_SITES= ftp://ftp.csl.sony.co.jp/pub/kjc/ X XMAINTAINER= yb@sainte-barbe.org XCOMMENT= "An Aggregation-based Traffic Profiler" X XUSE_XLIB= yes X XMAN1= aguri.1 X Xpost-install: X X.if !defined(NOPORTDOCS) X @${MKDIR} ${DOCSDIR} X.for FILES in INSTALL README X @${INSTALL_DATA} ${WRKSRC}/${FILES} ${DOCSDIR} X.endfor X.endif X @${MKDIR} ${DATADIR} X @${INSTALL_DATA} ${WRKSRC}/scripts/README ${DATADIR} X.for SCRIPTS in agurify.pl density.pl makeplot.pl X @${INSTALL_SCRIPT} ${WRKSRC}/scripts/${SCRIPTS} \ X ${DATADIR} X.endfor X X.include END-of-aguri/Makefile echo x - aguri/distinfo sed 's/^X//' >aguri/distinfo << 'END-of-aguri/distinfo' XMD5 (aguri-0.5.tar.gz) = ae25dec143a29e92be3b314dd5af2991 END-of-aguri/distinfo echo x - aguri/pkg-plist sed 's/^X//' >aguri/pkg-plist << 'END-of-aguri/pkg-plist' Xbin/aguri X%%PORTDOCS%%%%DOCSDIR%%/INSTALL X%%PORTDOCS%%%%DOCSDIR%%/README X%%PORTDOCS%%@dirrm %%DOCSDIR%% X%%DATADIR%%/README X%%DATADIR%%/agurify.pl X%%DATADIR%%/density.pl X%%DATADIR%%/makeplot.pl X@dirrm %%DATADIR%% END-of-aguri/pkg-plist echo x - aguri/pkg-descr sed 's/^X//' >aguri/pkg-descr << 'END-of-aguri/pkg-descr' XAguri is an aggregation-based traffic profiler targeted for near real-time, Xlong-term, and wide-area traffic monitoring. Aguri adapts itself to spatial Xtraffic distribution by aggregating small volume flows into aggregates, and Xachieves temporal aggregation by creating a summary of summaries applying the Xsame algorithm to its outputs. A set of scripts are used for archiving and Xvisualizing summaries in different time scales. Aguri does not need a Xpredefined rule set and is capable of detecting an unexpected increase of Xunknown protocols or DoS attacks, which considerably simplifies the task of Xnetwork monitoring. X XAguri produces four separate profiles for source addresses, destination Xaddresses, source protocols and destination protocols. IP addresses are Xdesigned to be hierarchical and aggregatable so that it is natural to apply Xaggregation. Both IPv4 and IPv6 are supported in address profiles. Although Xprotocol numbers are not hierarchical, the same technique can be used to Xidentify port ranges. We concatenate the IP version, the protocol number and Xthe TCP/UDP port number to create a 32-bit key for a protocol profile. X XWWW: http://www.csl.sony.co.jp/person/kjc/software.html X X- Yann Xyb@sainte-barbe.org END-of-aguri/pkg-descr exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 7:30:16 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE8A437B401 for ; Thu, 27 Feb 2003 07:30:15 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51D1E43F3F for ; Thu, 27 Feb 2003 07:30:15 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RFUENS077353 for ; Thu, 27 Feb 2003 07:30:14 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RFUEF5077352; Thu, 27 Feb 2003 07:30:14 -0800 (PST) Date: Thu, 27 Feb 2003 07:30:14 -0800 (PST) Message-Id: <200302271530.h1RFUEF5077352@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: =?ISO-8859-1?Q?Ren=E9_Fischmann?= Subject: Re: ports/48709: Failed to build package for net/cvsup-without-gui Reply-To: =?ISO-8859-1?Q?Ren=E9_Fischmann?= Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48709; it has been noted by GNATS. From: =?ISO-8859-1?Q?Ren=E9_Fischmann?= To: freebsd-gnats-submit@FreeBSD.org, fischmann@liwing.de Cc: Subject: Re: ports/48709: Failed to build package for net/cvsup-without-gui Date: Thu, 27 Feb 2003 16:26:44 +0100 Sorry! it was a mistake by us. we interpreted wrong the bsd.port.mk. Have a nice day! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 7:50:17 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 794FF37B401 for ; Thu, 27 Feb 2003 07:50:14 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B18543F85 for ; Thu, 27 Feb 2003 07:50:13 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RFoCNS081638 for ; Thu, 27 Feb 2003 07:50:12 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RFoC1b081637; Thu, 27 Feb 2003 07:50:12 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B3C337B401 for ; Thu, 27 Feb 2003 07:47:51 -0800 (PST) Received: from freebsd.org.ru (sweet.etrust.ru [194.84.67.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 37AF443FAF for ; Thu, 27 Feb 2003 07:47:50 -0800 (PST) (envelope-from osa@freebsd.org.ru) Received: by freebsd.org.ru (Postfix, from userid 1000) id 3FA7981; Thu, 27 Feb 2003 18:47:48 +0300 (MSK) Message-Id: <20030227154748.3FA7981@freebsd.org.ru> Date: Thu, 27 Feb 2003 18:47:48 +0300 (MSK) From: "Sergey A.Osokin" Reply-To: "Sergey A.Osokin" To: FreeBSD-gnats-submit@FreeBSD.org Cc: greid@ukug.uk.freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/48751: [PATCH] security/vlock: unbreak build under 5.0 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48751 >Category: ports >Synopsis: [PATCH] security/vlock: unbreak build under 5.0 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Feb 27 07:50:12 PST 2003 >Closed-Date: >Last-Modified: >Originator: Sergey A. Osokin >Release: FreeBSD 4.8-PRERELEASE i386 >Organization: n/a >Environment: System: FreeBSD 4.8-PRERELEASE i386 >Description: security/vlock: unbreak build under 5.0 For more information about __FreeBSD_version please see: http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/sys/param.h.diff?r1=1.113&r2=1.114&only_with_tag=MAIN&f=h and time of Initial revision of OpenPAM: http://www.freebsd.org/cgi/cvsweb.cgi/src/contrib/openpam/INSTALL >How-To-Repeat: >Fix: Index: ports/security/vlock/files/patch-ae =================================================================== RCS file: /home/ncvs/ports/security/vlock/files/patch-ae,v retrieving revision 1.1 diff -u -r1.1 patch-ae --- ports/security/vlock/files/patch-ae 22 Oct 2000 15:36:25 -0000 1.1 +++ ports/security/vlock/files/patch-ae 27 Feb 2003 15:44:18 -0000 @@ -1,6 +1,25 @@ ---- input.c.orig Wed Jan 13 16:19:14 1999 -+++ input.c Sun Oct 22 08:22:42 2000 -@@ -291,7 +291,7 @@ +--- input.c.orig Thu Jan 14 03:19:14 1999 ++++ input.c Thu Feb 27 18:20:22 2003 +@@ -61,10 +61,18 @@ + #endif + + #include ++#if defined (__FreeBSD_version) && (__FreeBSD_version > 500030) ++#include ++#elsif + #include ++#endif + + static struct pam_conv PAM_conversation = { ++#if defined (__FreeBSD_version) && (__FreeBSD_version > 500030) ++ &openpam_ttyconv, ++#elsif + &misc_conv, ++#endif + NULL + }; + +@@ -291,7 +299,7 @@ setuid(getuid()); setgid(getgid()); >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 7:50:23 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B419A37B405 for ; Thu, 27 Feb 2003 07:50:14 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2940D43FD7 for ; Thu, 27 Feb 2003 07:50:12 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RFoBNS081625 for ; Thu, 27 Feb 2003 07:50:11 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RFoBtl081624; Thu, 27 Feb 2003 07:50:11 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 102F537B401 for ; Thu, 27 Feb 2003 07:40:47 -0800 (PST) Received: from mail.dt.e-technik.uni-dortmund.de (krusty.dt.E-Technik.Uni-Dortmund.DE [129.217.163.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00A4843FBF for ; Thu, 27 Feb 2003 07:40:45 -0800 (PST) (envelope-from matthias.andree@web.de) Received: from m2a2.dyndns.org (krusty.dt.e-technik.uni-dortmund.de [129.217.163.1]) by mail.dt.e-technik.uni-dortmund.de (Postfix) with ESMTP id 20C66A3885 for ; Thu, 27 Feb 2003 16:40:43 +0100 (CET) Received: from libertas.emma.line.org (libertas.emma.line.org [192.168.0.2]) by merlin.emma.line.org (Postfix) with ESMTP id E429F7DC59; Thu, 27 Feb 2003 16:40:41 +0100 (CET) Received: from libertas.emma.line.org (localhost [127.0.0.1]) by libertas.emma.line.org (8.12.7/8.12.7) with ESMTP id h1RFeeaf013306; Thu, 27 Feb 2003 16:40:40 +0100 (CET) (envelope-from emma@libertas.emma.line.org) Received: (from emma@localhost) by libertas.emma.line.org (8.12.7/8.12.7/Submit) id h1RFedp4013305; Thu, 27 Feb 2003 16:40:39 +0100 (CET) (envelope-from emma) Message-Id: <200302271540.h1RFedp4013305@libertas.emma.line.org> Date: Thu, 27 Feb 2003 16:40:39 +0100 (CET) From: Matthias Andree Reply-To: Matthias Andree To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48750: maintainer update port (fix pkg-*): news/leafnode 1.9.36 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48750 >Category: ports >Synopsis: maintainer update port (fix pkg-*): news/leafnode 1.9.36 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Feb 27 07:50:11 PST 2003 >Closed-Date: >Last-Modified: >Originator: Matthias Andree >Release: FreeBSD 4.8-PRERELEASE i386 >Organization: >Environment: System: FreeBSD libertas.emma.line.org 4.8-PRERELEASE FreeBSD 4.8-PRERELEASE #15: Tue Feb 25 00:45:38 CET 2003 toor@libertas.emma.line.org:/usr/src/sys/compile/LIBERTAS i386 >Description: NOTE: Supersedes PR #48670. * Update to upstream version 1.9.36, fixing download issues when filters are configured. * LOCALBASE -> PREFIX * Fix extra files after uninstall * Add "deinstall for good" instructions. * Use the more efficient quickmkdir program from pkg-install. * Move spooldir into ${PREFIX} and lockfile into ${SPOOLDIR} (compatibility hack for ports that aren't turned into packages to allow for continued use of /var/spool/news for ${SPOOLDIR} is in place) * Execute pkg-install contents only once (in POST-INSTALL phase). >How-To-Repeat: >Fix: diff -Nur /usr/ports/news/leafnode/Makefile /root/leafnode/Makefile --- /usr/ports/news/leafnode/Makefile Mon Feb 24 22:03:33 2003 +++ /root/leafnode/Makefile Thu Feb 27 16:16:26 2003 @@ -2,11 +2,11 @@ # Whom: Brian Somers # Date created: 1997-06-27 # -# $FreeBSD: ports/news/leafnode/Makefile,v 1.33 2003/02/22 15:56:02 leeym Exp $ +# $FreeBSD: ports/news/leafnode/Makefile,v 1.31 2003/02/19 01:21:08 leeym Exp $ # PORTNAME= leafnode -PORTVERSION= 1.9.35 +PORTVERSION= 1.9.36 PORTREVISION= 0 CATEGORIES= news ipv6 MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:S/$/:sourceforge/} \ @@ -24,32 +24,41 @@ LIB_DEPENDS= pcre.0:${PORTSDIR}/devel/pcre +.if exists(/var/spool/news) && !defined(PACKAGE_BUILDING) +LEAFNODE_SPOOLDIR?=/var/spool/news +.endif +LEAFNODE_SPOOLDIR?=${PREFIX}/var/spool/leafnode +PLIST_SUB= SPOOLDIR=${LEAFNODE_SPOOLDIR} + USE_BZIP2= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS= --quiet --sysconfdir=${LOCALBASE}/etc/leafnode \ - --with-lockfile=/var/spool/lock/news/leafnode.lck \ - --with-spooldir=/var/spool/news --with-ipv6 +CONFIGURE_ARGS= --quiet --prefix=${PREFIX} --sysconfdir=${PREFIX}/etc/leafnode \ + --with-lockfile=${LEAFNODE_SPOOLDIR}/leaf.node/lock.file \ + --with-spooldir=${LEAFNODE_SPOOLDIR} --with-ipv6 CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} MAKE_ARGS= MAN1= leafnode-version.1 newsq.1 MAN8= applyfilter.8 checkgroups.8 fetchnews.8 leafnode.8 texpire.8 post-install: - ${INSTALL_SCRIPT} ${WRKSRC}/setup-daemontools.sh ${LOCALBASE}/sbin/ + ${INSTALL_PROGRAM} ${WRKSRC}/quickmkdir ${PREFIX}/sbin/ + ${INSTALL_SCRIPT} ${WRKSRC}/setup-daemontools.sh ${PREFIX}/sbin/ .if !defined(NOPORTDOCS) - ${MKDIR} ${LOCALBASE}/share/doc/${PORTNAME} + ${MKDIR} ${PREFIX}/share/doc/${PORTNAME} for i in ChangeLog COPYING CREDITS FAQ.txt FAQ.pdf FAQ.html \ INSTALL NEWS README \ README-FQDN README-FQDN.html README-daemontools \ README.FIRST TODO leafnode.cron.daily ; do \ ${INSTALL_MAN} ${WRKSRC}/$$i \ - ${LOCALBASE}/share/doc/${PORTNAME} ; done - ${MKDIR} ${LOCALBASE}/share/doc/${PORTNAME}/doc_german + ${PREFIX}/share/doc/${PORTNAME} ; done + ${MKDIR} ${PREFIX}/share/doc/${PORTNAME}/doc_german for i in INSTALL_de LIESMICH-daemontools README \ README_de newsq.1 ${MAN8} ; do \ ${INSTALL_MAN} ${WRKSRC}/doc_german/$$i \ - ${LOCALBASE}/share/doc/${PORTNAME}/doc_german ; done + ${PREFIX}/share/doc/${PORTNAME}/doc_german ; done .endif ${CAT} pkg-message + PKG_PREFIX=${PREFIX} SPOOLDIR=${LEAFNODE_SPOOLDIR} \ + ${SH} pkg-install ${PORTNAME} POST-INSTALL .include diff -Nur /usr/ports/news/leafnode/distinfo /root/leafnode/distinfo --- /usr/ports/news/leafnode/distinfo Mon Feb 24 22:03:33 2003 +++ /root/leafnode/distinfo Thu Feb 27 16:17:03 2003 @@ -1 +1 @@ -MD5 (leafnode-1.9.35.rel.tar.bz2) = 0b6da897824a9c95bcc3a7fd65b4b3cb +MD5 (leafnode-1.9.36.rel.tar.bz2) = b4c8a8421292c4dc8ddc714095e79c55 diff -Nur /usr/ports/news/leafnode/pkg-install /root/leafnode/pkg-install --- /usr/ports/news/leafnode/pkg-install Fri Aug 23 17:19:12 2002 +++ /root/leafnode/pkg-install Tue Feb 25 15:44:00 2003 @@ -1,31 +1,32 @@ #! /bin/sh -SPOOLDIR=${VAR:=/var}/spool/news -LOCKFILE=$VAR/spool/lock/news/fetch.lck -LIBDIR=${PREFIX:=/usr/local}/lib/leafnode - -mkdir -p `dirname $LOCKFILE` -mkdir -p $SPOOLDIR $LIBDIR -mkdir -p $SPOOLDIR/leaf.node -mkdir -p $SPOOLDIR/message.id -mkdir -p $SPOOLDIR/interesting.groups -mkdir -p $SPOOLDIR/out.going -chown news:news `dirname $LOCKFILE` -chown news:news $SPOOLDIR $LIBDIR -chown news:news $SPOOLDIR/leaf.node -chown news:news $SPOOLDIR/message.id -chown news:news $SPOOLDIR/interesting.groups -chown news:news $SPOOLDIR/out.going -cd $SPOOLDIR/message.id -for a in 0 1 2 3 4 5 6 7 8 9 ; do - for b in 0 1 2 3 4 5 6 7 8 9 ; do - mkdir -p ${a}${b}0 ${a}${b}1 ${a}${b}2 \ - ${a}${b}3 ${a}${b}4 ${a}${b}5 \ - ${a}${b}6 ${a}${b}7 ${a}${b}8 \ - ${a}${b}9 - chown news:news ${a}${b}0 ${a}${b}1 ${a}${b}2 \ - ${a}${b}3 ${a}${b}4 ${a}${b}5 \ - ${a}${b}6 ${a}${b}7 ${a}${b}8 \ - ${a}${b}9 ; \ - done -done +case $2 in +PRE-INSTALL) + ;; +POST-INSTALL) + SPOOLDIR=${SPOOLDIR:=${PKG_PREFIX}/var/spool/leafnode} + LOCKFILE=${SPOOLDIR}/leaf.node/lock.file + + mkdir -p `dirname $LOCKFILE` + mkdir -p $SPOOLDIR + mkdir -p $SPOOLDIR/failed.postings + mkdir -p $SPOOLDIR/leaf.node + mkdir -p $SPOOLDIR/message.id + mkdir -p $SPOOLDIR/interesting.groups + mkdir -p $SPOOLDIR/out.going + mkdir -p $SPOOLDIR/temp.files + chown news:news `dirname $LOCKFILE` + chown news:news $SPOOLDIR + chown news:news $SPOOLDIR/failed.postings + chown news:news $SPOOLDIR/leaf.node + chown news:news $SPOOLDIR/message.id + chown news:news $SPOOLDIR/interesting.groups + chown news:news $SPOOLDIR/out.going + chown news:news $SPOOLDIR/temp.files + ${PKG_PREFIX}/sbin/quickmkdir + ;; +*) + echo >&2 "Unknown argument in $0 $@" + exit 1 + ;; +esac diff -Nur /usr/ports/news/leafnode/pkg-plist /root/leafnode/pkg-plist --- /usr/ports/news/leafnode/pkg-plist Thu Jan 2 13:07:07 2003 +++ /root/leafnode/pkg-plist Thu Feb 27 16:23:08 2003 @@ -14,6 +14,7 @@ sbin/checkgroups sbin/applyfilter sbin/setup-daemontools.sh +sbin/quickmkdir share/doc/leafnode/ChangeLog share/doc/leafnode/COPYING share/doc/leafnode/CREDITS @@ -41,5 +42,19 @@ share/doc/leafnode/doc_german/texpire.8 @dirrm share/doc/leafnode/doc_german @dirrm share/doc/leafnode -@unexec rmdir %D/lib/leafnode 2>/dev/null || true +@comment only remove these when empty: +@unexec rm -f %%SPOOLDIR%%/leaf.node/lock.file +@unexec rmdir %%SPOOLDIR%%/failed.postings 2>/dev/null || : +@unexec rmdir %%SPOOLDIR%%/failed.postings 2>/dev/null || : +@unexec rmdir %%SPOOLDIR%%/leaf.node 2>/dev/null || : +@unexec rmdir %%SPOOLDIR%%/message.id/* 2>/dev/null || : +@unexec rmdir %%SPOOLDIR%%/message.id 2>/dev/null || : +@unexec rmdir %%SPOOLDIR%%/interesting.groups 2>/dev/null || : +@unexec rmdir %%SPOOLDIR%%/out.going 2>/dev/null || : +@unexec rmdir %%SPOOLDIR%%/temp.files 2>/dev/null || : +@unexec rmdir %%SPOOLDIR%% 2>/dev/null || : +@unexec rmdir %%PREFIX%%/var/spool 2>/dev/null || : +@unexec rmdir %%PREFIX%%/var 2>/dev/null || : +@unexec rmdir %D/lib/leafnode 2>/dev/null || : @dirrm etc/leafnode +@unexec if test -d "%%SPOOLDIR%%" || test -d "%%PREFIX%%/etc/leafnode" ; then echo ; echo "==============================================================================" ; echo "If you want to remove leafnode for good," ; echo "type: rm -rf %%PREFIX%%/etc/leafnode %%SPOOLDIR%%" ; echo "==============================================================================" ; fi >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 8:12:21 2003 Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D3B137B401; Thu, 27 Feb 2003 08:12:20 -0800 (PST) Received: from mail.dt.e-technik.uni-dortmund.de (krusty.dt.E-Technik.Uni-Dortmund.DE [129.217.163.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id B396643FE1; Thu, 27 Feb 2003 08:12:18 -0800 (PST) (envelope-from matthias.andree@gmx.de) Received: from m2a2.dyndns.org (krusty.dt.e-technik.uni-dortmund.de [129.217.163.1]) by mail.dt.e-technik.uni-dortmund.de (Postfix) with ESMTP id BFBFEA389F; Thu, 27 Feb 2003 17:12:17 +0100 (CET) Received: by merlin.emma.line.org (Postfix, from userid 500) id 355217DC80; Thu, 27 Feb 2003 17:12:15 +0100 (CET) Date: Thu, 27 Feb 2003 17:12:15 +0100 From: Matthias Andree To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48670: maintainer update: (fixes pkg-*) news/leafnode -> 1.9.35_1 Message-ID: <20030227161215.GA28472@merlin.emma.line.org> References: <200302251509.h1PF9eEr041254@libertas.emma.line.org> <200302251510.h1PFA94x081986@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200302251510.h1PFA94x081986@freefall.freebsd.org> User-Agent: Mutt/1.5.3i Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Superseded by PR #48750. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 8:20: 8 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE56937B401 for ; Thu, 27 Feb 2003 08:20:07 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 55D5843F93 for ; Thu, 27 Feb 2003 08:20:07 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RGK7NS091845 for ; Thu, 27 Feb 2003 08:20:07 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RGK7Xe091844; Thu, 27 Feb 2003 08:20:07 -0800 (PST) Date: Thu, 27 Feb 2003 08:20:07 -0800 (PST) Message-Id: <200302271620.h1RGK7Xe091844@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Matthias Andree Subject: Re: ports/48670: maintainer update: (fixes pkg-*) news/leafnode -> 1.9.35_1 Reply-To: Matthias Andree Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48670; it has been noted by GNATS. From: Matthias Andree To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/48670: maintainer update: (fixes pkg-*) news/leafnode -> 1.9.35_1 Date: Thu, 27 Feb 2003 17:12:15 +0100 Superseded by PR #48750. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 8:58:42 2003 Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D64F137B401; Thu, 27 Feb 2003 08:58:41 -0800 (PST) Received: from freebsd.org.ru (sweet.etrust.ru [194.84.67.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id B9B6F43FCB; Thu, 27 Feb 2003 08:58:40 -0800 (PST) (envelope-from osa@freebsd.org.ru) Received: by freebsd.org.ru (Postfix, from userid 1000) id 6250794; Thu, 27 Feb 2003 19:58:39 +0300 (MSK) Date: Thu, 27 Feb 2003 19:58:39 +0300 From: "Sergey A. Osokin" To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48751: [PATCH] security/vlock: unbreak build under 5.0 Message-ID: <20030227165839.GA32915@freebsd.org.ru> References: <20030227154748.3FA7981@freebsd.org.ru> <200302271550.h1RFoCM3081631@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200302271550.h1RFoCM3081631@freefall.freebsd.org> User-Agent: Mutt/1.4i Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Thu, Feb 27, 2003 at 07:50:12AM -0800, FreeBSD-gnats-submit@FreeBSD.org wrote: > > >Category: ports > >Responsible: freebsd-ports-bugs > >Synopsis: [PATCH] security/vlock: unbreak build under 5.0 > >Arrival-Date: Thu Feb 27 07:50:12 PST 2003 Please drop this PR. Looks like a problme with pam_authenticate()... -- Rgdz, /"\ ASCII RIBBON CAMPAIGN Sergey Osokin aka oZZ, \ / AGAINST HTML MAIL http://ozz.pp.ru/ X AND NEWS / \ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 9: 0:31 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5014237B401 for ; Thu, 27 Feb 2003 09:00:30 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6029243FBF for ; Thu, 27 Feb 2003 09:00:29 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RH0SNS000514 for ; Thu, 27 Feb 2003 09:00:28 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RH0SYI000511; Thu, 27 Feb 2003 09:00:28 -0800 (PST) Date: Thu, 27 Feb 2003 09:00:28 -0800 (PST) Message-Id: <200302271700.h1RH0SYI000511@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: "Sergey A. Osokin" Subject: Re: ports/48751: [PATCH] security/vlock: unbreak build under 5.0 Reply-To: "Sergey A. Osokin" Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48751; it has been noted by GNATS. From: "Sergey A. Osokin" To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/48751: [PATCH] security/vlock: unbreak build under 5.0 Date: Thu, 27 Feb 2003 19:58:39 +0300 On Thu, Feb 27, 2003 at 07:50:12AM -0800, FreeBSD-gnats-submit@FreeBSD.org wrote: > > >Category: ports > >Responsible: freebsd-ports-bugs > >Synopsis: [PATCH] security/vlock: unbreak build under 5.0 > >Arrival-Date: Thu Feb 27 07:50:12 PST 2003 Please drop this PR. Looks like a problme with pam_authenticate()... -- Rgdz, /"\ ASCII RIBBON CAMPAIGN Sergey Osokin aka oZZ, \ / AGAINST HTML MAIL http://ozz.pp.ru/ X AND NEWS / \ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 9:10:21 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3EEB437B401 for ; Thu, 27 Feb 2003 09:10:13 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A6F543FBF for ; Thu, 27 Feb 2003 09:10:11 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RHABNS006220 for ; Thu, 27 Feb 2003 09:10:11 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RHABFP006219; Thu, 27 Feb 2003 09:10:11 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 939B437B406 for ; Thu, 27 Feb 2003 09:00:30 -0800 (PST) Received: from fuzzilicious.fuzzynerd.com (ip-60-65.academy.rpi.edu [128.113.60.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 20AA443FBD for ; Thu, 27 Feb 2003 09:00:29 -0800 (PST) (envelope-from jettea@fuzzilicious.fuzzynerd.com) Received: from fuzzilicious.fuzzynerd.com (localhost [127.0.0.1]) by fuzzilicious.fuzzynerd.com (8.12.6/8.12.6) with ESMTP id h1RH09j3006653 for ; Thu, 27 Feb 2003 12:00:09 -0500 (EST) (envelope-from jettea@fuzzilicious.fuzzynerd.com) Received: (from jettea@localhost) by fuzzilicious.fuzzynerd.com (8.12.6/8.12.6/Submit) id h1RH09tf006652; Thu, 27 Feb 2003 12:00:09 -0500 (EST) Message-Id: <200302271700.h1RH09tf006652@fuzzilicious.fuzzynerd.com> Date: Thu, 27 Feb 2003 12:00:09 -0500 (EST) From: Adam Jette Reply-To: Adam Jette To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48754: Update port: security/zebedee Port out of data Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48754 >Category: ports >Synopsis: Update port: security/zebedee Port out of data >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Feb 27 09:10:11 PST 2003 >Closed-Date: >Last-Modified: >Originator: Adam Jette >Release: FreeBSD 5.0-RELEASE i386 >Organization: nada >Environment: System: FreeBSD fuzzilicious.fuzzynerd.com 5.0-RELEASE FreeBSD 5.0-RELEASE #0: Sat Jan 25 21:10:30 EST 2003 root@fuzzilicious.ell:/usr/obj/usr/src/sys/FUZZILICIOUS i386 >Description: Program is up to 2.4.1 instead of 2.2.2 >How-To-Repeat: >Fix: --- zebedee begins here --- diff -ru zeb/Makefile /usr/ports/security/zebedee/Makefile --- zeb/Makefile Sat Feb 22 04:39:21 2003 +++ /usr/ports/security/zebedee/Makefile Thu Feb 27 11:33:33 2003 @@ -6,7 +6,7 @@ # PORTNAME= zebedee -PORTVERSION= 2.2.2 +PORTVERSION= 2.4.1 CATEGORIES= security MASTER_SITES= http://www.winton.org.uk/zebedee/ \ http://www.hewgill.com/zebedee/ @@ -22,7 +22,7 @@ USE_PERL5= yes MAKE_ENV+= PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \ - PTHREAD_LIBS=${PTHREAD_LIBS} + PTHREAD_LIBS=${PTHREAD_LIBS} \ MAN1= zebedee.1 ftpgw.tcl.1 diff -ru zeb/distinfo /usr/ports/security/zebedee/distinfo --- zeb/distinfo Wed Jul 4 17:31:26 2001 +++ /usr/ports/security/zebedee/distinfo Thu Feb 27 10:19:49 2003 @@ -1 +1 @@ -MD5 (zebedee-2.2.2.tar.gz) = 74d33041bcf49b5c49f0e44b6fa0e169 +MD5 (zebedee-2.4.1.tar.gz) = d17a556b966b7b8b1a199b2078e32780 diff -ru zeb/files/patch-aa /usr/ports/security/zebedee/files/patch-aa --- zeb/files/patch-aa Tue Dec 25 04:02:38 2001 +++ /usr/ports/security/zebedee/files/patch-aa Thu Feb 27 11:49:05 2003 @@ -1,68 +1,158 @@ ---- Makefile.orig Fri Apr 13 12:41:22 2001 -+++ Makefile Mon Dec 24 17:17:48 2001 -@@ -3,7 +3,7 @@ - # - # $Id: Makefile,v 1.2 2001/04/13 17:41:21 ndwinton Exp $ - --OS = -+OS = freebsd - - ### - ### Locations of tools, libraries and installation directories. -@@ -12,19 +12,16 @@ - - # Chose your C compiler - --CC_$(OS) = gcc -- - CC_win32 = c:/gcc-2.95.2/bin/gcc - CC_linux = gcc -pthread - CC_solaris = gcc - CC_freebsd = gcc -pthread - CC_tru64 = cc --CC = $(CC_$(OS)) - - # Optimise/debug compilation - - #OPTIM = -Wall -g --OPTIM = -O3 -+OPTIM = - - # Location of gmp include and library - # -@@ -36,19 +33,19 @@ - - # Location of Blowfish include and library - --BFINC = -I../blowfish-0.9.5a --BFLIB = ../blowfish-0.9.5a/libblowfish.a -+BFINC = -I${OPENSSLINC} -I${OPENSSLINC}/openssl -+BFLIB = ${OPENSSLLIB}/libcrypto.a - - # Location of zlib include and library - --ZINC = -I../zlib-1.1.3 --ZLIB = ../zlib-1.1.3/libz.a -+ZINC = -+ZLIB = -lz - - # Location of bzlib include and library - # Set these empty if you don't want bzib2 support - --BZINC = -I../bzip2-1.0.1 --BZLIB = ../bzip2-1.0.1/libbz2.a -+BZINC = -I${LOCALBASE}/include -+BZLIB = -L${LOCALBASE}/lib -lbz2 - - # - # Tools needed for Perl "POD"-format documentation conversion. -@@ -133,7 +130,8 @@ - #### You REALLY shouldn't have to modify anything beyond here ... - #### - --CFLAGS = $(OPTIM) $(DEFINES) -I. $(GMPINC) $(BFINC) $(ZINC) $(BZINC) -+CFLAGS ?= -O3 -+CFLAGS += ${PTHREAD_LIBS} ${PTHREAD_CFLAGS} $(OPTIM) $(DEFINES) -I. $(GMPINC) $(BFINC) $(ZINC) $(BZINC) - - LIBS = $(GMPLIB) $(BFLIB) $(ZLIB) $(BZLIB) $(OSLIBS) - +*** Makefile.orig Thu Feb 27 11:48:08 2003 +--- Makefile Thu Feb 27 11:48:13 2003 +*************** +*** 3,23 **** + # + # $Id: Makefile,v 1.13 2002/05/29 17:42:08 ndwinton Exp $ + + ZBD_VERSION = 2.4.1 + +! OS = + + ### + ### Locations of tools, libraries and installation directories. + ### You may well need to change these. + ### + + # Choose your C compiler + +- CC_$(OS) = gcc +- + CC_win32 = c:/msys/1.0/mingw/bin/gcc + CC_linux = gcc -pthread + CC_solaris = gcc + CC_freebsd = gcc -pthread + CC_tru64 = cc +--- 3,21 ---- + # + # $Id: Makefile,v 1.13 2002/05/29 17:42:08 ndwinton Exp $ + + ZBD_VERSION = 2.4.1 + +! OS = freebsd + + ### + ### Locations of tools, libraries and installation directories. + ### You may well need to change these. + ### + + # Choose your C compiler + + CC_win32 = c:/msys/1.0/mingw/bin/gcc + CC_linux = gcc -pthread + CC_solaris = gcc + CC_freebsd = gcc -pthread + CC_tru64 = cc +*************** +*** 28,38 **** + CC = $(CC_$(OS)) + + # Optimise/debug compilation + + #OPTIM = -Wall -g +! OPTIM = -O3 + + # Location of gmp include and library + # + # NOTE: These are no longer used unless you define USE_GMP_LIBRARY (which is + # undefined by default). Uncomment them as necessary. +--- 26,36 ---- + CC = $(CC_$(OS)) + + # Optimise/debug compilation + + #OPTIM = -Wall -g +! OPTIM = + + # Location of gmp include and library + # + # NOTE: These are no longer used unless you define USE_GMP_LIBRARY (which is + # undefined by default). Uncomment them as necessary. +*************** +*** 43,71 **** + # Location of Blowfish include and library + # You can use the versions from OpenSSL if you have it installed, as follows: + # BFINC = /usr/include/openssl + # BFLIB = -lcrypto + +! BFINC = -I../blowfish-0.9.5a +! BFLIB = ../blowfish-0.9.5a/libblowfish.a + + # Location of zlib include and library + +! ZINC = -I../zlib-1.1.4 +! ZLIB = ../zlib-1.1.4/libz.a + + # Location of bzlib include and library + # Set these empty if you don't want bzib2 support + +! BZINC = -I../bzip2-1.0.1 +! BZLIB = ../bzip2-1.0.1/libbz2.a + + # + # Tools needed for Perl "POD"-format documentation conversion. + # + PERL_$(OS) = perl + PERL_win32 = c:/perl/bin/perl # Avoid Cygwin port + PERL = $(PERL_$(OS)) + + BAT_win32 = .bat + + POD2HTML = $(PERL) -S pod2html$(BAT_$(OS)) +--- 41,70 ---- + # Location of Blowfish include and library + # You can use the versions from OpenSSL if you have it installed, as follows: + # BFINC = /usr/include/openssl + # BFLIB = -lcrypto + +! BFINC = -I${OPENSSLINC} -I${OPENSSLINC}/openssl +! BFLIB = ${OPENSSLLIB}/libcrypto.a + + # Location of zlib include and library + +! ZINC = +! ZLIB = -lz + + # Location of bzlib include and library + # Set these empty if you don't want bzib2 support + +! BZINC = -I${LOCALBASE}/include +! BZLIB = -L${LOCALBASE}/lib -lbz2 + + # + # Tools needed for Perl "POD"-format documentation conversion. + # + PERL_$(OS) = perl + PERL_win32 = c:/perl/bin/perl # Avoid Cygwin port ++ PERL_freebsd = perl + PERL = $(PERL_$(OS)) + + BAT_win32 = .bat + + POD2HTML = $(PERL) -S pod2html$(BAT_$(OS)) +*************** +*** 173,183 **** + + #### + #### You REALLY shouldn't have to modify anything beyond here ... + #### + +! CFLAGS = $(OPTIM) $(DEFINES) -I. $(GMPINC) $(BFINC) $(ZINC) $(BZINC) + + LIBS = $(GMPLIB) $(BFLIB) $(ZLIB) $(BZLIB) $(OSLIBS) + + OBJS = zebedee.o sha_func.o huge.o $(GETOPTOBJ) $(SERVICEOBJ) + +--- 172,183 ---- + + #### + #### You REALLY shouldn't have to modify anything beyond here ... + #### + +! CFLAGS ?= -03 +! CFLAGS += ${PTHREAD_LIBS} ${PTHREAD_CFLAGS} $(OPTIM) $(DEFINES) -I. $(GMPINC) $(BFINC) $(ZINC) $(BZINC) + + LIBS = $(GMPLIB) $(BFLIB) $(ZLIB) $(BZLIB) $(OSLIBS) + + OBJS = zebedee.o sha_func.o huge.o $(GETOPTOBJ) $(SERVICEOBJ) + Only in zeb: zeb.orig.tgz --- zebedee ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 9:11:39 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F27337B401; Thu, 27 Feb 2003 09:11:38 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11D0E43F85; Thu, 27 Feb 2003 09:11:38 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from freefall.freebsd.org (marcus@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RHBbNS008237; Thu, 27 Feb 2003 09:11:37 -0800 (PST) (envelope-from marcus@freefall.freebsd.org) Received: (from marcus@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RHBbWs008233; Thu, 27 Feb 2003 09:11:37 -0800 (PST) Date: Thu, 27 Feb 2003 09:11:37 -0800 (PST) From: Joe Marcus Clarke Message-Id: <200302271711.h1RHBbWs008233@freefall.freebsd.org> To: marcus@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org Subject: Re: ports/48746: fix for broken gdm2 port due to openpam Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: fix for broken gdm2 port due to openpam Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: marcus Responsible-Changed-When: Thu Feb 27 09:11:26 PST 2003 Responsible-Changed-Why: Over to maintainers. http://www.freebsd.org/cgi/query-pr.cgi?pr=48746 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 9:16:16 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ECAE837B401; Thu, 27 Feb 2003 09:16:15 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B87543FA3; Thu, 27 Feb 2003 09:16:15 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from freefall.freebsd.org (naddy@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RHGFNS008499; Thu, 27 Feb 2003 09:16:15 -0800 (PST) (envelope-from naddy@freefall.freebsd.org) Received: (from naddy@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RHGFUO008495; Thu, 27 Feb 2003 09:16:15 -0800 (PST) Date: Thu, 27 Feb 2003 09:16:15 -0800 (PST) From: Christian Weisgerber Message-Id: <200302271716.h1RHGFUO008495@freefall.freebsd.org> To: naddy@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jkoshy@FreeBSD.org Subject: Re: ports/48675: lang/sml-nj port build fails on 5.0 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: lang/sml-nj port build fails on 5.0 Responsible-Changed-From-To: freebsd-ports-bugs->jkoshy Responsible-Changed-By: naddy Responsible-Changed-When: Thu Feb 27 09:15:59 PST 2003 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=48675 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 9:17: 9 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6949A37B401; Thu, 27 Feb 2003 09:17:08 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E3A343FAF; Thu, 27 Feb 2003 09:17:08 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from freefall.freebsd.org (naddy@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RHH7NS008594; Thu, 27 Feb 2003 09:17:07 -0800 (PST) (envelope-from naddy@freefall.freebsd.org) Received: (from naddy@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RHH7Eg008590; Thu, 27 Feb 2003 09:17:07 -0800 (PST) Date: Thu, 27 Feb 2003 09:17:07 -0800 (PST) From: Christian Weisgerber Message-Id: <200302271717.h1RHH7Eg008590@freefall.freebsd.org> To: naddy@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, chuckr@FreeBSD.org Subject: Re: ports/48678: lang/moscow_ml port broken on 5.0 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: lang/moscow_ml port broken on 5.0 Responsible-Changed-From-To: freebsd-ports-bugs->chuckr Responsible-Changed-By: naddy Responsible-Changed-When: Thu Feb 27 09:16:51 PST 2003 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=48678 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 9:37: 9 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7668F37B405; Thu, 27 Feb 2003 09:37:08 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7E9743FBF; Thu, 27 Feb 2003 09:37:06 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from freefall.freebsd.org (naddy@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RHb6NS012961; Thu, 27 Feb 2003 09:37:06 -0800 (PST) (envelope-from naddy@freefall.freebsd.org) Received: (from naddy@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RHb65T012957; Thu, 27 Feb 2003 09:37:06 -0800 (PST) Date: Thu, 27 Feb 2003 09:37:06 -0800 (PST) From: Christian Weisgerber Message-Id: <200302271737.h1RHb65T012957@freefall.freebsd.org> To: aschweitzer@hs.uni-hamburg.de, naddy@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48701: update of dillo port Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: update of dillo port State-Changed-From-To: open->closed State-Changed-By: naddy State-Changed-When: Thu Feb 27 09:36:50 PST 2003 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48701 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 9:50: 7 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E93137B401 for ; Thu, 27 Feb 2003 09:50:06 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FC7E43FA3 for ; Thu, 27 Feb 2003 09:50:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RHo5NS015184 for ; Thu, 27 Feb 2003 09:50:05 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RHo5ii015183; Thu, 27 Feb 2003 09:50:05 -0800 (PST) Date: Thu, 27 Feb 2003 09:50:05 -0800 (PST) Message-Id: <200302271750.h1RHo5ii015183@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Thierry Thomas Subject: Re: ports/48693: www/tidy-devel: upgrading to 030225. Reply-To: Thierry Thomas Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48693; it has been noted by GNATS. From: Thierry Thomas To: Yen-Ming Lee Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/48693: www/tidy-devel: upgrading to 030225. Date: Thu, 27 Feb 2003 18:42:31 +0100 Le Jeu 27 fév 03 à 8:01:23 +0100, Yen-Ming Lee écrivait : > Oops, checksum failed for me. Strange, the tarball has been re-rolled the same day. FYI, you can find the diff against these two tarballs at . Here is the new patch: diff -urN www/tidy-devel.orig/Makefile www/tidy-devel/Makefile --- www/tidy-devel.orig/Makefile Mon Feb 24 19:07:05 2003 +++ www/tidy-devel/Makefile Tue Feb 25 18:28:22 2003 @@ -6,7 +6,7 @@ # PORTNAME?= tidy -PORTVERSION= 030220 +PORTVERSION= 030225 CATEGORIES= www MASTER_SITES= http://tidy.sourceforge.net/src/%SUBDIR%/ \ http://tidy.sourceforge.net/docs/:docs diff -urN www/tidy-devel.orig/distinfo www/tidy-devel/distinfo --- www/tidy-devel.orig/distinfo Mon Feb 24 19:07:05 2003 +++ www/tidy-devel/distinfo Thu Feb 27 15:48:43 2003 @@ -1,2 +1,2 @@ -MD5 (tidy_src_030220.tgz) = 1386d1a54e4429d4ddbb5a8bb01b5bc7 +MD5 (tidy_src_030225.tgz) = d6f38fc7b675df46180d02d0251c089e MD5 (tidy_docs_030216.tgz) = b832e6a78836bf31b3eadca3d5301106 diff -urN www/tidy-devel.orig/files/patch-build_gnuauto_src_Makefile.am www/tidy-devel/files/patch-build_gnuauto_src_Makefile.am --- www/tidy-devel.orig/files/patch-build_gnuauto_src_Makefile.am Thu Feb 20 23:13:50 2003 +++ www/tidy-devel/files/patch-build_gnuauto_src_Makefile.am Thu Jan 1 01:00:00 1970 @@ -1,11 +0,0 @@ ---- build/gnuauto/src/Makefile.am.orig Sun Feb 16 20:33:04 2003 -+++ build/gnuauto/src/Makefile.am Thu Feb 20 23:13:11 2003 -@@ -68,7 +68,7 @@ - tidylib.c - - libtidy_la_LDFLAGS = \ -- -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_LITE_AGE) \ -+ -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \ - -release $(LT_RELEASE) -no-undefined -export-dynamic - - HFILES = \ Regards, -- Th. Thomas. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 10: 7:42 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4ED2537B401; Thu, 27 Feb 2003 10:07:41 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E764243FB1; Thu, 27 Feb 2003 10:07:40 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (leeym@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RI7eNS023068; Thu, 27 Feb 2003 10:07:40 -0800 (PST) (envelope-from leeym@freefall.freebsd.org) Received: (from leeym@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RI7eHL023064; Thu, 27 Feb 2003 10:07:40 -0800 (PST) Date: Thu, 27 Feb 2003 10:07:40 -0800 (PST) From: Yen-Ming Lee Message-Id: <200302271807.h1RI7eHL023064@freefall.freebsd.org> To: thierry@pompo.net, leeym@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48693: www/tidy-devel: upgrading to 030225. Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: www/tidy-devel: upgrading to 030225. State-Changed-From-To: open->closed State-Changed-By: leeym State-Changed-When: Thu Feb 27 10:07:40 PST 2003 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48693 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 10: 9:26 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EDCC37B406; Thu, 27 Feb 2003 10:09:26 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFBE043F93; Thu, 27 Feb 2003 10:09:24 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (leeym@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RI9ONS023129; Thu, 27 Feb 2003 10:09:24 -0800 (PST) (envelope-from leeym@freefall.freebsd.org) Received: (from leeym@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RI9O0K023125; Thu, 27 Feb 2003 10:09:24 -0800 (PST) Date: Thu, 27 Feb 2003 10:09:24 -0800 (PST) From: Yen-Ming Lee Message-Id: <200302271809.h1RI9O0K023125@freefall.freebsd.org> To: matthias.andree@web.de, leeym@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48670: maintainer update: (fixes pkg-*) news/leafnode -> 1.9.35_1 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: maintainer update: (fixes pkg-*) news/leafnode -> 1.9.35_1 State-Changed-From-To: open->closed State-Changed-By: leeym State-Changed-When: Thu Feb 27 10:09:24 PST 2003 State-Changed-Why: superceded by ports/48750. http://www.freebsd.org/cgi/query-pr.cgi?pr=48670 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 10:41: 5 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1338E37B401; Thu, 27 Feb 2003 10:41:05 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E6D843F75; Thu, 27 Feb 2003 10:41:04 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from freefall.freebsd.org (naddy@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RIf4NS031481; Thu, 27 Feb 2003 10:41:04 -0800 (PST) (envelope-from naddy@freefall.freebsd.org) Received: (from naddy@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RIf4NW031476; Thu, 27 Feb 2003 10:41:04 -0800 (PST) Date: Thu, 27 Feb 2003 10:41:04 -0800 (PST) From: Christian Weisgerber Message-Id: <200302271841.h1RIf4NW031476@freefall.freebsd.org> To: matthias.andree@web.de, naddy@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48750: maintainer update port (fix pkg-*): news/leafnode 1.9.36 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: maintainer update port (fix pkg-*): news/leafnode 1.9.36 State-Changed-From-To: open->closed State-Changed-By: naddy State-Changed-When: Thu Feb 27 10:40:48 PST 2003 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48750 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 10:44: 5 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA34537B405; Thu, 27 Feb 2003 10:44:02 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4550743FB1; Thu, 27 Feb 2003 10:44:02 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from freefall.freebsd.org (naddy@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RIi2NS031882; Thu, 27 Feb 2003 10:44:02 -0800 (PST) (envelope-from naddy@freefall.freebsd.org) Received: (from naddy@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RIi2rt031878; Thu, 27 Feb 2003 10:44:02 -0800 (PST) Date: Thu, 27 Feb 2003 10:44:02 -0800 (PST) From: Christian Weisgerber Message-Id: <200302271844.h1RIi2rt031878@freefall.freebsd.org> To: naddy@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, knu@FreeBSD.org Subject: Re: ports/48745: portsclean falls in error with a file .tgz Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: portsclean falls in error with a file .tgz Responsible-Changed-From-To: freebsd-ports-bugs->knu Responsible-Changed-By: naddy Responsible-Changed-When: Thu Feb 27 10:43:49 PST 2003 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=48745 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 11:27:34 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D3A9637B406; Thu, 27 Feb 2003 11:27:33 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 372DC43FAF; Thu, 27 Feb 2003 11:27:33 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from freefall.freebsd.org (naddy@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RJRXNS044506; Thu, 27 Feb 2003 11:27:33 -0800 (PST) (envelope-from naddy@freefall.freebsd.org) Received: (from naddy@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RJRWKY044502; Thu, 27 Feb 2003 11:27:32 -0800 (PST) Date: Thu, 27 Feb 2003 11:27:32 -0800 (PST) From: Christian Weisgerber Message-Id: <200302271927.h1RJRWKY044502@freefall.freebsd.org> To: fischmann@liwing.de, naddy@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48709: Failed to build package for net/cvsup-without-gui Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Failed to build package for net/cvsup-without-gui State-Changed-From-To: open->closed State-Changed-By: naddy State-Changed-When: Thu Feb 27 11:27:11 PST 2003 State-Changed-Why: Close at submitter's request. http://www.freebsd.org/cgi/query-pr.cgi?pr=48709 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 12: 0:32 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A392537B401 for ; Thu, 27 Feb 2003 12:00:30 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C61443FB1 for ; Thu, 27 Feb 2003 12:00:30 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RK0UNS050841 for ; Thu, 27 Feb 2003 12:00:30 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RK0Ug9050840; Thu, 27 Feb 2003 12:00:30 -0800 (PST) Date: Thu, 27 Feb 2003 12:00:30 -0800 (PST) Message-Id: <200302272000.h1RK0Ug9050840@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: "Simon 'portlint' Schubert" Subject: Re: ports/48735: New Port: net/kismet Reply-To: "Simon 'portlint' Schubert" Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48735; it has been noted by GNATS. From: "Simon 'portlint' Schubert" To: Jose Rey Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/48735: New Port: net/kismet Date: Thu, 27 Feb 2003 20:52:29 +0100 --=.yUHAVptX(oPiDN Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Lately Jose Rey told: > sed 's/^X//' >kismet/pkg-plist << 'END-of-kismet/pkg-plist' [...] > Xetc/kismet.conf > Xetc/kismet_ui.conf you shouldn't install config files because user customizations will be deleted with them when the ports is removed. better install sample configs (for example .samle or into ${EXAMPLEDIR}) > Xman/man1/kismet.1 > Xman/man1/kismet_monitor.1 > Xman/man1/kismet_hopper.1 > Xman/man5/kismet.conf.5 > Xman/man5/kismet_ui.conf.5 man pages don't get listed in plist, but in ${MAN?} in the makefile see /usr/ports/bsd.port.mk cheers simon -- /"\ http://corecode.ath.cx/#donate \ / \ ASCII Ribbon Campaign / \ Against HTML Mail and News --=.yUHAVptX(oPiDN Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.0 (GNU/Linux) iD8DBQE+XmyAr5S+dk6z85oRArDEAJ4gFKXLs1XLX1I6kvljJTmXmPWo4gCdGhtK q7WpAuauMutWKQz/AGDuSBY= =TOlV -----END PGP SIGNATURE----- --=.yUHAVptX(oPiDN-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 12:10:11 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE60537B401 for ; Thu, 27 Feb 2003 12:10:07 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB43643F93 for ; Thu, 27 Feb 2003 12:10:06 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RKA6NS056575 for ; Thu, 27 Feb 2003 12:10:06 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RKA6Kb056574; Thu, 27 Feb 2003 12:10:06 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 99EE837B401 for ; Thu, 27 Feb 2003 12:09:06 -0800 (PST) Received: from alex.madd.tnmc.ca (h24-83-220-44.vc.shawcable.net [24.83.220.44]) by mx1.FreeBSD.org (Postfix) with ESMTP id C55FD43FCB for ; Thu, 27 Feb 2003 12:09:02 -0800 (PST) (envelope-from varju@alex.madd.tnmc.ca) Received: from alex.madd.tnmc.ca (localhost [127.0.0.1]) by alex.madd.tnmc.ca (8.12.7/8.12.7) with ESMTP id h1N2KZAf054172 for ; Sat, 22 Feb 2003 18:20:35 -0800 (PST) (envelope-from varju@alex.madd.tnmc.ca) Received: (from root@localhost) by alex.madd.tnmc.ca (8.12.7/8.12.7/Submit) id h1N2KZhP054171; Sat, 22 Feb 2003 18:20:35 -0800 (PST) Message-Id: <200302230220.h1N2KZhP054171@alex.madd.tnmc.ca> Date: Sat, 22 Feb 2003 18:20:35 -0800 (PST) From: Alex Varju Reply-To: Alex Varju To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48756: maintainer upgrade of jpilot 0.99.5 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48756 >Category: ports >Synopsis: maintainer upgrade of jpilot 0.99.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Feb 27 12:10:05 PST 2003 >Closed-Date: >Last-Modified: >Originator: Alex Varju >Release: FreeBSD 5.0-CURRENT i386 >Organization: WebCT >Environment: System: FreeBSD alex.madd.tnmc.ca 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Sat Feb 15 10:50:03 PST 2003 root@alex.madd.tnmc.ca:/home/freebsd/obj/home/freebsd/src.HEAD/sys/ALEX i386 >Description: This is a maintainer upgrade of ports/palm/jpilot to version 0.99.5 >How-To-Repeat: >Fix: Index: ports/palm/jpilot/Makefile =================================================================== RCS file: /home/freebsd/cvsroot/ports/palm/jpilot/Makefile,v retrieving revision 1.28 diff -u -u -r1.28 Makefile --- ports/palm/jpilot/Makefile 21 Feb 2003 13:19:55 -0000 1.28 +++ ports/palm/jpilot/Makefile 23 Feb 2003 01:49:31 -0000 @@ -7,7 +7,7 @@ # "?=" and "+=" are for including this Makefile from japanese/jpilot PORTNAME= jpilot -PORTVERSION= 0.99.4 +PORTVERSION= 0.99.5 CATEGORIES+= palm comms MASTER_SITES= http://jpilot.org/ Index: ports/palm/jpilot/distinfo =================================================================== RCS file: /home/freebsd/cvsroot/ports/palm/jpilot/distinfo,v retrieving revision 1.12 diff -u -u -r1.12 distinfo --- ports/palm/jpilot/distinfo 20 Jan 2003 02:18:17 -0000 1.12 +++ ports/palm/jpilot/distinfo 23 Feb 2003 01:50:18 -0000 @@ -1 +1 @@ -MD5 (jpilot-0.99.4.tar.gz) = e79f2c41827962bebe66abef6ce776ff +MD5 (jpilot-0.99.5.tar.gz) = 6ee51e69838c826c4ed8fd42ef12cc59 Index: ports/palm/jpilot/pkg-plist =================================================================== RCS file: /home/freebsd/cvsroot/ports/palm/jpilot/pkg-plist,v retrieving revision 1.11 diff -u -u -r1.11 pkg-plist --- ports/palm/jpilot/pkg-plist 20 Jan 2003 02:18:17 -0000 1.11 +++ ports/palm/jpilot/pkg-plist 23 Feb 2003 02:16:19 -0000 @@ -31,6 +31,7 @@ %%PORTDOCS%%share/doc/jpilot/jpilot-toplogo.jpg %%PORTDOCS%%share/doc/jpilot/manual.html %%PORTDOCS%%share/doc/jpilot/plugin.html +share/gnome/apps/Applications/jpilot.desktop share/jpilot/AddressDB.pdb share/jpilot/DatebookDB.pdb share/jpilot/ExpenseDB.pdb @@ -97,3 +98,6 @@ @unexec rmdir %D/share/locale/zh_TW/LC_MESSAGES 2>/dev/null || true @unexec rmdir %D/share/locale/zh_TW 2>/dev/null || true @unexec rmdir %D/share/locale 2>/dev/null || true +@unexec rmdir %D/share/gnome/apps/Applications 2>/dev/null || true +@unexec rmdir %D/share/gnome/apps 2>/dev/null || true +@unexec rmdir %D/share/gnome 2>/dev/null || true Index: ports/palm/jpilot/files/patch-Makefile.in =================================================================== RCS file: /home/freebsd/cvsroot/ports/palm/jpilot/files/patch-Makefile.in,v retrieving revision 1.4 diff -u -u -r1.4 patch-Makefile.in --- ports/palm/jpilot/files/patch-Makefile.in 20 Jan 2003 02:18:17 -0000 1.4 +++ ports/palm/jpilot/files/patch-Makefile.in 23 Feb 2003 01:51:40 -0000 @@ -1,11 +1,11 @@ ---- Makefile.in.orig Fri Jan 10 18:13:18 2003 -+++ Makefile.in Mon Jan 13 13:49:57 2003 -@@ -133,7 +133,7 @@ +--- Makefile.in.orig Sat Feb 22 06:41:55 2003 ++++ Makefile.in Sat Feb 22 17:51:22 2003 +@@ -134,7 +134,7 @@ install_sh = @install_sh@ plugin_support = @plugin_support@ --SUBDIRS = Expense SyncTime KeyRing docs m4 dialer intl po -+SUBDIRS = Expense SyncTime KeyRing m4 dialer intl po +-SUBDIRS = intl Expense SyncTime KeyRing docs dialer po ++SUBDIRS = intl Expense SyncTime KeyRing dialer po EXTRA_DIST = reconf autogen.sh ChangeLog docs empty icons \ - BUGS jpilot.spec jpilot-col.spec jpilot.kdelnk jpilot.rh7.spec \ + config.rpath mkinstalldirs \ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 12:10:31 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E94937B401; Thu, 27 Feb 2003 12:10:31 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C36B043F75; Thu, 27 Feb 2003 12:10:30 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from freefall.freebsd.org (naddy@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RKAUNS056831; Thu, 27 Feb 2003 12:10:30 -0800 (PST) (envelope-from naddy@freefall.freebsd.org) Received: (from naddy@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RKAT0F056818; Thu, 27 Feb 2003 12:10:29 -0800 (PST) Date: Thu, 27 Feb 2003 12:10:29 -0800 (PST) From: Christian Weisgerber Message-Id: <200302272010.h1RKAT0F056818@freefall.freebsd.org> To: sergei@kolobov.com, naddy@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48702: [MAINTAINER] Update security/libtasn1 to 0.2.1 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [MAINTAINER] Update security/libtasn1 to 0.2.1 State-Changed-From-To: open->closed State-Changed-By: naddy State-Changed-When: Thu Feb 27 12:09:58 PST 2003 State-Changed-Why: Committed with minor change in libtool handling, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48702 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 12:23:53 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 28EBE37B401; Thu, 27 Feb 2003 12:23:53 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB22D43F75; Thu, 27 Feb 2003 12:23:52 -0800 (PST) (envelope-from obraun@FreeBSD.org) Received: from freefall.freebsd.org (obraun@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RKNqNS060953; Thu, 27 Feb 2003 12:23:52 -0800 (PST) (envelope-from obraun@freefall.freebsd.org) Received: (from obraun@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RKNqWW060949; Thu, 27 Feb 2003 12:23:52 -0800 (PST) Date: Thu, 27 Feb 2003 12:23:52 -0800 (PST) From: Oliver Braun Message-Id: <200302272023.h1RKNqWW060949@freefall.freebsd.org> To: mt@primats.org.ua, obraun@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48601: [new port] mail/mailsync: Mailsync is a way of keeping a collection of mailboxes synchronized Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [new port] mail/mailsync: Mailsync is a way of keeping a collection of mailboxes synchronized State-Changed-From-To: open->closed State-Changed-By: obraun State-Changed-When: Thu Feb 27 12:23:38 PST 2003 State-Changed-Why: New port added, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48601 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 12:32:50 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9DA3A37B401; Thu, 27 Feb 2003 12:32:49 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 402DD43F3F; Thu, 27 Feb 2003 12:32:49 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from freefall.freebsd.org (naddy@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RKWnNS063036; Thu, 27 Feb 2003 12:32:49 -0800 (PST) (envelope-from naddy@freefall.freebsd.org) Received: (from naddy@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RKWn8a063032; Thu, 27 Feb 2003 12:32:49 -0800 (PST) Date: Thu, 27 Feb 2003 12:32:49 -0800 (PST) From: Christian Weisgerber Message-Id: <200302272032.h1RKWn8a063032@freefall.freebsd.org> To: sergei@kolobov.com, naddy@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48705: [MAINTAINER] Update security/opencdk to 0.4.5 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [MAINTAINER] Update security/opencdk to 0.4.5 State-Changed-From-To: open->closed State-Changed-By: naddy State-Changed-When: Thu Feb 27 12:32:23 PST 2003 State-Changed-Why: Committed (with minor change in libtool handling), thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48705 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 12:35: 1 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A44B37B401; Thu, 27 Feb 2003 12:35:00 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11DB943FDF; Thu, 27 Feb 2003 12:35:00 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from freefall.freebsd.org (naddy@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RKYxNS063094; Thu, 27 Feb 2003 12:34:59 -0800 (PST) (envelope-from naddy@freefall.freebsd.org) Received: (from naddy@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RKYx9E063090; Thu, 27 Feb 2003 12:34:59 -0800 (PST) Date: Thu, 27 Feb 2003 12:34:59 -0800 (PST) From: Christian Weisgerber Message-Id: <200302272034.h1RKYx9E063090@freefall.freebsd.org> To: naddy@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, des@FreeBSD.org Subject: Re: ports/48707: [PATCH] www/opera: Opera Cross Site Scripting vulnerability Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [PATCH] www/opera: Opera Cross Site Scripting vulnerability Responsible-Changed-From-To: freebsd-ports-bugs->des Responsible-Changed-By: naddy Responsible-Changed-When: Thu Feb 27 12:34:16 PST 2003 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=48707 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 12:40:12 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D69A637B401 for ; Thu, 27 Feb 2003 12:40:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2C5F43FCB for ; Thu, 27 Feb 2003 12:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RKe2NS063153 for ; Thu, 27 Feb 2003 12:40:02 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RKe2fx063152; Thu, 27 Feb 2003 12:40:02 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A23D637B405 for ; Thu, 27 Feb 2003 12:34:54 -0800 (PST) Received: from httpd.terions.de (static62-99-146-055.adsl.inode.at [62.99.146.55]) by mx1.FreeBSD.org (Postfix) with SMTP id D062343FBD for ; Thu, 27 Feb 2003 12:34:45 -0800 (PST) (envelope-from martin@kleinerdrache.org) Received: (qmail 49967 invoked by uid 0); 27 Feb 2003 20:34:44 -0000 Message-Id: <20030227203444.49966.qmail@httpd.terions.de> Date: 27 Feb 2003 20:34:44 -0000 From: Martin Klaffenboeck Reply-To: Martin Klaffenboeck To: FreeBSD-gnats-submit@FreeBSD.org Cc: gnome@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48757: [NEW PORT] gdeskcal Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48757 >Category: ports >Synopsis: [NEW PORT] gdeskcal >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Feb 27 12:40:02 PST 2003 >Closed-Date: >Last-Modified: >Originator: Martin Klaffenboeck >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: FreeBSD martin.kleinerdrache.org 4.7-STABLE FreeBSD 4.7-STABLE #24: Mon Feb 10 21:21:27 CET 2003 martin@martin.kleinerdrache.org:/usr/obj/usr/src/sys/MYKERNEL i386 >Description: This is the port for gdeskcal from http://www.pycage.de/software_gdeskcal.html, a python programm which uses gtk2 for a desktop calendar. Go to the website and you will see a screenshot. The pkg-plist is really ok, I created my own do-install things, I hope they are correct. Please have a look at this. Thanks, Martin >How-To-Repeat: >Fix: --- gdeskcal.sh begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # gdeskcal # gdeskcal/Makefile # gdeskcal/pkg-descr # gdeskcal/distinfo # gdeskcal/pkg-plist # echo c - gdeskcal mkdir -p gdeskcal > /dev/null 2>&1 echo x - gdeskcal/Makefile sed 's/^X//' >gdeskcal/Makefile << 'END-of-gdeskcal/Makefile' X# New ports collection makefile for: gdeskcal X# Date created: 27 February 2003 X# Whom: Martin Klaffenboeck X# X# $FreeBSD$ X# X XPORTNAME= gdeskcal XPORTVERSION= 0.30 XCATEGORIES= deskutils python gnome XMASTER_SITES= http://www.pycage.de/download/ XDISTNAME= gDeskCal-0_30 X XMAINTAINER= martin.klaffenboeck@gmx.at XCOMMENT= A calendar for the gnome2 desktop with smooth alpha-blending X XRUN_DEPENDS= ${PYTHON_SITELIBDIR}/gtk-2.0/gtk/__init__.py:${PORTSDIR}/x11-toolkits/py-gtk2 X XWRKSRC= ${WRKDIR}/gDeskCal-${PORTVERSION} X XUSE_PYTHON= yes XUSE_X_PREFIX= yes XUSE_GNOMENG= yes XUSE_GMAKE= yes XNO_BUILD= yes X XSTRIP= X Xdo-install: X ${MKDIR} ${PREFIX}/share/gnome/gdeskcal X ${CP} -vrf ${WRKSRC}/code ${WRKSRC}/gdeskcal \ X ${WRKSRC}/data ${WRKSRC}/skins \ X ${PREFIX}/share/gnome/gdeskcal X ${INSTALL_PROGRAM} ${WRKSRC}/locale/ar_AE/LC_MESSAGES/gdeskcal.mo \ X ${PREFIX}/share/locale/ar/LC_MESSAGES X ${INSTALL_PROGRAM} ${WRKSRC}/locale/cs/LC_MESSAGES/gdeskcal.mo \ X ${PREFIX}/share/locale/cs/LC_MESSAGES X ${INSTALL_PROGRAM} ${WRKSRC}/locale/de/LC_MESSAGES/gdeskcal.mo \ X ${PREFIX}/share/locale/de/LC_MESSAGES X ${INSTALL_PROGRAM} ${WRKSRC}/locale/el/LC_MESSAGES/gdeskcal.mo \ X ${PREFIX}/share/locale/el/LC_MESSAGES X ${INSTALL_PROGRAM} ${WRKSRC}/locale/es/LC_MESSAGES/gdeskcal.mo \ X ${PREFIX}/share/locale/es/LC_MESSAGES X ${INSTALL_PROGRAM} ${WRKSRC}/locale/fr/LC_MESSAGES/gdeskcal.mo \ X ${PREFIX}/share/locale/fr/LC_MESSAGES X ${INSTALL_PROGRAM} ${WRKSRC}/locale/he/LC_MESSAGES/gdeskcal.mo \ X ${PREFIX}/share/locale/he/LC_MESSAGES X ${INSTALL_PROGRAM} ${WRKSRC}/locale/hu/LC_MESSAGES/gdeskcal.mo \ X ${PREFIX}/share/locale/hu/LC_MESSAGES X ${INSTALL_PROGRAM} ${WRKSRC}/locale/it/LC_MESSAGES/gdeskcal.mo \ X ${PREFIX}/share/locale/it/LC_MESSAGES X ${INSTALL_PROGRAM} ${WRKSRC}/locale/ja/LC_MESSAGES/gdeskcal.mo \ X ${PREFIX}/share/locale/ja/LC_MESSAGES X ${INSTALL_PROGRAM} ${WRKSRC}/locale/nl/LC_MESSAGES/gdeskcal.mo \ X ${PREFIX}/share/locale/nl/LC_MESSAGES X ${INSTALL_PROGRAM} ${WRKSRC}/locale/ru/LC_MESSAGES/gdeskcal.mo \ X ${PREFIX}/share/locale/ru/LC_MESSAGES X ${INSTALL_PROGRAM} ${WRKSRC}/locale/tr/LC_MESSAGES/gdeskcal.mo \ X ${PREFIX}/share/locale/tr/LC_MESSAGES X ${INSTALL_PROGRAM} ${WRKSRC}/locale/zh_CN/LC_MESSAGES/gdeskcal.mo \ X ${PREFIX}/share/locale/zh_CN/LC_MESSAGES X ${LN} -sf ${PREFIX}/share/gnome/gdeskcal/gdeskcal ${PREFIX}/bin/gdeskcal X X.include END-of-gdeskcal/Makefile echo x - gdeskcal/pkg-descr sed 's/^X//' >gdeskcal/pkg-descr << 'END-of-gdeskcal/pkg-descr' XgDeskCal is a cute little eye-candy calendar for your desktop. XIt features transparency with smooth alpha-blending and its appearance Xcan be changed completely by using skins. X XWWW: http://www.pycage.de/software_gdeskcal.html END-of-gdeskcal/pkg-descr echo x - gdeskcal/distinfo sed 's/^X//' >gdeskcal/distinfo << 'END-of-gdeskcal/distinfo' XMD5 (gDeskCal-0_30.tar.gz) = c96e038202f891f256aaf306902f44f3 END-of-gdeskcal/distinfo echo x - gdeskcal/pkg-plist sed 's/^X//' >gdeskcal/pkg-plist << 'END-of-gdeskcal/pkg-plist' Xbin/gdeskcal Xshare/gnome/gdeskcal/code/BGWatcher.py Xshare/gnome/gdeskcal/code/Cal.py Xshare/gnome/gdeskcal/code/CalLabel.py Xshare/gnome/gdeskcal/code/CalMediator.py Xshare/gnome/gdeskcal/code/CalWindow.py Xshare/gnome/gdeskcal/code/Config.py Xshare/gnome/gdeskcal/code/ConfigFormatLoader.py Xshare/gnome/gdeskcal/code/ConfigLoader.py Xshare/gnome/gdeskcal/code/Menu.py Xshare/gnome/gdeskcal/code/Navigation.py Xshare/gnome/gdeskcal/code/Observable.py Xshare/gnome/gdeskcal/code/SkinBrowser.py Xshare/gnome/gdeskcal/code/TimeWatcher.py Xshare/gnome/gdeskcal/code/__init__.py Xshare/gnome/gdeskcal/code/cmdlineparser.py Xshare/gnome/gdeskcal/code/configvalues.py Xshare/gnome/gdeskcal/code/desktop.py Xshare/gnome/gdeskcal/code/errormessage.py Xshare/gnome/gdeskcal/code/i18n.py Xshare/gnome/gdeskcal/code/values.py Xshare/gnome/gdeskcal/data/config.xml Xshare/gnome/gdeskcal/data/format.xml Xshare/gnome/gdeskcal/gdeskcal Xshare/gnome/gdeskcal/skins/default/bg.png Xshare/gnome/gdeskcal/skins/default/bg.xcf Xshare/gnome/gdeskcal/skins/default/home.png Xshare/gnome/gdeskcal/skins/default/next.png Xshare/gnome/gdeskcal/skins/default/prev.png Xshare/gnome/gdeskcal/skins/default/skin.xml Xshare/gnome/gdeskcal/skins/default/today.png Xshare/gnome/gdeskcal/skins/big_and_simple/skin.xml Xshare/locale/ar/LC_MESSAGES/gdeskcal.mo Xshare/locale/cs/LC_MESSAGES/gdeskcal.mo Xshare/locale/de/LC_MESSAGES/gdeskcal.mo Xshare/locale/el/LC_MESSAGES/gdeskcal.mo Xshare/locale/es/LC_MESSAGES/gdeskcal.mo Xshare/locale/fr/LC_MESSAGES/gdeskcal.mo Xshare/locale/he/LC_MESSAGES/gdeskcal.mo Xshare/locale/hu/LC_MESSAGES/gdeskcal.mo Xshare/locale/it/LC_MESSAGES/gdeskcal.mo Xshare/locale/ja/LC_MESSAGES/gdeskcal.mo Xshare/locale/nl/LC_MESSAGES/gdeskcal.mo Xshare/locale/ru/LC_MESSAGES/gdeskcal.mo Xshare/locale/tr/LC_MESSAGES/gdeskcal.mo Xshare/locale/zh_CN/LC_MESSAGES/gdeskcal.mo X@dirrm share/gnome/gdeskcal/skins/default X@dirrm share/gnome/gdeskcal/skins/big_and_simple X@dirrm share/gnome/gdeskcal/skins X@dirrm share/gnome/gdeskcal/data X@dirrm share/gnome/gdeskcal/code X@dirrm share/gnome/gdeskcal END-of-gdeskcal/pkg-plist exit --- gdeskcal.sh ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 12:52:48 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF52E37B401; Thu, 27 Feb 2003 12:52:47 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7177043F85; Thu, 27 Feb 2003 12:52:47 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from freefall.freebsd.org (naddy@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RKqlNS067299; Thu, 27 Feb 2003 12:52:47 -0800 (PST) (envelope-from naddy@freefall.freebsd.org) Received: (from naddy@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RKqlhB067295; Thu, 27 Feb 2003 12:52:47 -0800 (PST) Date: Thu, 27 Feb 2003 12:52:47 -0800 (PST) From: Christian Weisgerber Message-Id: <200302272052.h1RKqlhB067295@freefall.freebsd.org> To: sergei@kolobov.com, naddy@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48706: [MAINTAINER] Update security/gnutls to 0.8.1 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [MAINTAINER] Update security/gnutls to 0.8.1 State-Changed-From-To: open->closed State-Changed-By: naddy State-Changed-When: Thu Feb 27 12:52:17 PST 2003 State-Changed-Why: Committed (with minor change in libtool handling), thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48706 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 12:55: 8 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 324CF37B401; Thu, 27 Feb 2003 12:55:08 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C987843F3F; Thu, 27 Feb 2003 12:55:07 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from freefall.freebsd.org (naddy@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RKt7NS067361; Thu, 27 Feb 2003 12:55:07 -0800 (PST) (envelope-from naddy@freefall.freebsd.org) Received: (from naddy@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RKt6cu067357; Thu, 27 Feb 2003 12:55:06 -0800 (PST) Date: Thu, 27 Feb 2003 12:55:06 -0800 (PST) From: Christian Weisgerber Message-Id: <200302272055.h1RKt6cu067357@freefall.freebsd.org> To: osa@FreeBSD.org.ru, naddy@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48751: [PATCH] security/vlock: unbreak build under 5.0 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [PATCH] security/vlock: unbreak build under 5.0 State-Changed-From-To: open->closed State-Changed-By: naddy State-Changed-When: Thu Feb 27 12:54:44 PST 2003 State-Changed-Why: Close at submitter's request. http://www.freebsd.org/cgi/query-pr.cgi?pr=48751 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 13: 3:30 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30F1537B405; Thu, 27 Feb 2003 13:03:29 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB9DC43FDD; Thu, 27 Feb 2003 13:03:28 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from freefall.freebsd.org (naddy@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RL3SNS070000; Thu, 27 Feb 2003 13:03:28 -0800 (PST) (envelope-from naddy@freefall.freebsd.org) Received: (from naddy@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RL3Rkm069996; Thu, 27 Feb 2003 13:03:27 -0800 (PST) Date: Thu, 27 Feb 2003 13:03:27 -0800 (PST) From: Christian Weisgerber Message-Id: <200302272103.h1RL3Rkm069996@freefall.freebsd.org> To: fuyuki@hadaly.org, naddy@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48688: Update port: databases/tinycdb to 0.73 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: databases/tinycdb to 0.73 State-Changed-From-To: open->closed State-Changed-By: naddy State-Changed-When: Thu Feb 27 13:03:13 PST 2003 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48688 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 13:10:57 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BB0C37B401; Thu, 27 Feb 2003 13:10:57 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD9AF43FCB; Thu, 27 Feb 2003 13:10:56 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from freefall.freebsd.org (naddy@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RLAuNS075037; Thu, 27 Feb 2003 13:10:56 -0800 (PST) (envelope-from naddy@freefall.freebsd.org) Received: (from naddy@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RLAuhL075030; Thu, 27 Feb 2003 13:10:56 -0800 (PST) Date: Thu, 27 Feb 2003 13:10:56 -0800 (PST) From: Christian Weisgerber Message-Id: <200302272110.h1RLAuhL075030@freefall.freebsd.org> To: naddy@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, naddy@FreeBSD.org Subject: Re: ports/48345: New port: x11/idesk Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port: x11/idesk Responsible-Changed-From-To: freebsd-ports-bugs->naddy Responsible-Changed-By: naddy Responsible-Changed-When: Thu Feb 27 13:10:41 PST 2003 Responsible-Changed-Why: I'll have a look. http://www.freebsd.org/cgi/query-pr.cgi?pr=48345 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 14:27:16 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7009437B405; Thu, 27 Feb 2003 14:27:15 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E558C43F3F; Thu, 27 Feb 2003 14:27:13 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from freefall.freebsd.org (naddy@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RMRDNS095291; Thu, 27 Feb 2003 14:27:13 -0800 (PST) (envelope-from naddy@freefall.freebsd.org) Received: (from naddy@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RMRDd2095287; Thu, 27 Feb 2003 14:27:13 -0800 (PST) Date: Thu, 27 Feb 2003 14:27:13 -0800 (PST) From: Christian Weisgerber Message-Id: <200302272227.h1RMRDd2095287@freefall.freebsd.org> To: ginga-freebsd@ginganet.org, naddy@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48696: maintainer update for ports/audio/afsp Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: maintainer update for ports/audio/afsp State-Changed-From-To: open->closed State-Changed-By: naddy State-Changed-When: Thu Feb 27 14:26:24 PST 2003 State-Changed-Why: Committed, thanks. I also simplified and fixed the CFLAGS handling. http://www.freebsd.org/cgi/query-pr.cgi?pr=48696 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 14:30:34 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 08C8E37B406 for ; Thu, 27 Feb 2003 14:30:30 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A301043FE3 for ; Thu, 27 Feb 2003 14:30:08 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RMU8NS095401 for ; Thu, 27 Feb 2003 14:30:08 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RMU8dC095400; Thu, 27 Feb 2003 14:30:08 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0640D37B401 for ; Thu, 27 Feb 2003 14:30:07 -0800 (PST) Received: from mired.org (ip68-97-54-220.ok.ok.cox.net [68.97.54.220]) by mx1.FreeBSD.org (Postfix) with SMTP id C033743FA3 for ; Thu, 27 Feb 2003 14:30:05 -0800 (PST) (envelope-from mwm@mired.org) Received: (qmail 59570 invoked by uid 100); 27 Feb 2003 22:30:05 -0000 Message-Id: <20030227223005.59569.qmail@mired.org> Date: 27 Feb 2003 22:30:05 -0000 From: Mike Meyer Reply-To: Mike Meyer To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48760: TMDA port is missing the contributed cgi interface. Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48760 >Category: ports >Synopsis: TMDA port is missing the contributed cgi interface. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Feb 27 14:30:08 PST 2003 >Closed-Date: >Last-Modified: >Originator: Mike Meyer >Release: FreeBSD 4.8-PRERELEASE i386 >Organization: Meyer Consulting >Environment: System: FreeBSD guru.mired.org 4.8-PRERELEASE FreeBSD 4.8-PRERELEASE #18: Mon Feb 24 12:02:57 CST 2003 mwm@guru.mired.org:/sharetmp/obj/usr/src/sys/GURU i386 >Description: The TMDA port is missing the contributed cgi interface. >How-To-Repeat: Check the port and the workdir. >Fix: Here's the patch to update the port to include those files. diff -ur tmda-orig/Makefile tmda/Makefile --- tmda-orig/Makefile Thu Feb 27 16:05:25 2003 +++ tmda/Makefile Thu Feb 27 16:28:01 2003 @@ -7,6 +7,7 @@ PORTNAME= tmda PORTVERSION= 0.70 +PORTREVISION= 2 CATEGORIES= mail python MASTER_SITES= http://tmda.net/releases/%SUBDIR%/ MASTER_SITE_SUBDIR= . old @@ -30,13 +31,11 @@ ${PYTHON_SITELIBDIR}/TMDA/pythonlib/email ${MKDIR} ${DATADIR} ${INSTALL_DATA} ${WRKSRC}/templates/*.txt ${DATADIR} - @${RM} ${WRKSRC}/bin/tmda-gui - @${RM} ${WRKSRC}/bin/tmda-manager ${INSTALL_SCRIPT} ${WRKSRC}/bin/tmda-* ${PREFIX}/bin post-install: .if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR}/contrib ${DOCSDIR}/htdocs + @${MKDIR} ${DOCSDIR}/contrib ${DOCSDIR}/htdocs .for f in CODENAMES COPYING CRYPTO ChangeLog INSTALL README THANKS UPGRADE @${INSTALL_DATA} ${WRKSRC}/$f ${DOCSDIR} .endfor @@ -45,6 +44,13 @@ @${INSTALL_DATA} ${WRKSRC}/contrib/$f ${DOCSDIR}/contrib .endfor @${INSTALL_DATA} ${WRKSRC}/htdocs/*.html ${DOCSDIR}/htdocs + @${MKDIR} ${DOCSDIR}/contrib/cgi + @${INSTALL_SCRIPT} ${WRKSRC}/contrib/cgi/*.py* ${DOCSDIR}/contrib/cgi +.for f in compile README tmda-cgi.conf tmda-cgi.c + @${INSTALL_DATA} ${WRKSRC}/contrib/cgi/$f ${DOCSDIR}/contrib/cgi +.endfor + @${MKDIR} ${DOCSDIR}/contrib/cgi/display + @${INSTALL_DATA} ${WRKSRC}/contrib/cgi/display/* ${DOCSDIR}/contrib/cgi/display @${ECHO_MSG} @${ECHO_MSG} See ${DOCSDIR}/INSTALL for configuration instructions @${ECHO_MSG} See ${DOCSDIR}/UPGRADE if upgrading from a previous release diff -ur tmda-orig/pkg-plist tmda/pkg-plist --- tmda-orig/pkg-plist Thu Feb 27 16:05:25 2003 +++ tmda/pkg-plist Thu Feb 27 16:27:16 2003 @@ -103,6 +103,54 @@ %%PORTDOCS%%share/doc/tmda/contrib/tmda.spec %%PORTDOCS%%share/doc/tmda/contrib/def2html %%PORTDOCS%%share/doc/tmda/contrib/vadduser-tmda +%%PORTDOCS%%share/doc/tmda/contrib/cgi/Authenticate.py +%%PORTDOCS%%share/doc/tmda/contrib/cgi/Authenticate.pyc +%%PORTDOCS%%share/doc/tmda/contrib/cgi/CgiUtil.py +%%PORTDOCS%%share/doc/tmda/contrib/cgi/CgiUtil.pyc +%%PORTDOCS%%share/doc/tmda/contrib/cgi/Login.py +%%PORTDOCS%%share/doc/tmda/contrib/cgi/Login.pyc +%%PORTDOCS%%share/doc/tmda/contrib/cgi/Pending.py +%%PORTDOCS%%share/doc/tmda/contrib/cgi/Pending.pyc +%%PORTDOCS%%share/doc/tmda/contrib/cgi/README +%%PORTDOCS%%share/doc/tmda/contrib/cgi/Release.py +%%PORTDOCS%%share/doc/tmda/contrib/cgi/Release.pyc +%%PORTDOCS%%share/doc/tmda/contrib/cgi/Session.py +%%PORTDOCS%%share/doc/tmda/contrib/cgi/Session.pyc +%%PORTDOCS%%share/doc/tmda/contrib/cgi/View.py +%%PORTDOCS%%share/doc/tmda/contrib/cgi/View.pyc +%%PORTDOCS%%share/doc/tmda/contrib/cgi/compile +%%PORTDOCS%%share/doc/tmda/contrib/cgi/genpass.py +%%PORTDOCS%%share/doc/tmda/contrib/cgi/genpass.pyc +%%PORTDOCS%%share/doc/tmda/contrib/cgi/paths.py +%%PORTDOCS%%share/doc/tmda/contrib/cgi/paths.pyc +%%PORTDOCS%%share/doc/tmda/contrib/cgi/tmda-cgi.c +%%PORTDOCS%%share/doc/tmda/contrib/cgi/tmda-cgi.conf +%%PORTDOCS%%share/doc/tmda/contrib/cgi/tmda-cgi.py +%%PORTDOCS%%share/doc/tmda/contrib/cgi/tmda-cgi.pyc +%%PORTDOCS%%share/doc/tmda/contrib/cgi/display/accept.gif +%%PORTDOCS%%share/doc/tmda/contrib/cgi/display/actions.gif +%%PORTDOCS%%share/doc/tmda/contrib/cgi/display/all.gif +%%PORTDOCS%%share/doc/tmda/contrib/cgi/display/allhead.gif +%%PORTDOCS%%share/doc/tmda/contrib/cgi/display/black.gif +%%PORTDOCS%%share/doc/tmda/contrib/cgi/display/down.gif +%%PORTDOCS%%share/doc/tmda/contrib/cgi/display/exe.gif +%%PORTDOCS%%share/doc/tmda/contrib/cgi/display/first.gif +%%PORTDOCS%%share/doc/tmda/contrib/cgi/display/image.gif +%%PORTDOCS%%share/doc/tmda/contrib/cgi/display/kill.gif +%%PORTDOCS%%share/doc/tmda/contrib/cgi/display/last.gif +%%PORTDOCS%%share/doc/tmda/contrib/cgi/display/movie.gif +%%PORTDOCS%%share/doc/tmda/contrib/cgi/display/next.gif +%%PORTDOCS%%share/doc/tmda/contrib/cgi/display/prev.gif +%%PORTDOCS%%share/doc/tmda/contrib/cgi/display/python.gif +%%PORTDOCS%%share/doc/tmda/contrib/cgi/display/shorthead.gif +%%PORTDOCS%%share/doc/tmda/contrib/cgi/display/smblack.gif +%%PORTDOCS%%share/doc/tmda/contrib/cgi/display/smwhite.gif +%%PORTDOCS%%share/doc/tmda/contrib/cgi/display/sound.gif +%%PORTDOCS%%share/doc/tmda/contrib/cgi/display/styles.css +%%PORTDOCS%%share/doc/tmda/contrib/cgi/display/text.gif +%%PORTDOCS%%share/doc/tmda/contrib/cgi/display/up.gif +%%PORTDOCS%%share/doc/tmda/contrib/cgi/display/white.gif +%%PORTDOCS%%share/doc/tmda/contrib/cgi/display/zip.gif %%PORTDOCS%%share/doc/tmda/htdocs/bugs.html %%PORTDOCS%%share/doc/tmda/htdocs/config-client.html %%PORTDOCS%%share/doc/tmda/htdocs/config-filter.html @@ -133,6 +181,8 @@ share/tmda/confirm_accept.txt share/tmda/confirm_request.txt @dirrm share/tmda +%%PORTDOCS%%@dirrm share/doc/tmda/contrib/cgi/display +%%PORTDOCS%%@dirrm share/doc/tmda/contrib/cgi %%PORTDOCS%%@dirrm share/doc/tmda/contrib %%PORTDOCS%%@dirrm share/doc/tmda/htdocs %%PORTDOCS%%@dirrm share/doc/tmda >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 14:40: 9 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76D1F37B401 for ; Thu, 27 Feb 2003 14:40:06 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFFCB43F75 for ; Thu, 27 Feb 2003 14:40:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1RMe4NS097537 for ; Thu, 27 Feb 2003 14:40:04 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1RMe4De097536; Thu, 27 Feb 2003 14:40:04 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6AEA937B401 for ; Thu, 27 Feb 2003 14:38:02 -0800 (PST) Received: from som-isa1asemhi2.w2k.state.me.us (hide-117.state.me.us [198.182.163.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAEFF43FBD for ; Thu, 27 Feb 2003 14:38:00 -0800 (PST) (envelope-from darren@hedgehog.bmv.state.me.us) Received: from hedgehog.bmv.state.me.us ([141.114.141.138]) by som-isa1asemhi2.w2k.state.me.us with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2655.55) id FSL6LGN3; Thu, 27 Feb 2003 17:37:59 -0500 Received: from hedgehog.bmv.state.me.us (darren@localhost [127.0.0.1]) by hedgehog.bmv.state.me.us (8.12.7/8.11.6) with ESMTP id h1RMbxCG033818 for ; Thu, 27 Feb 2003 17:37:59 -0500 (EST) (envelope-from darren@hedgehog.bmv.state.me.us) Received: (from darren@localhost) by hedgehog.bmv.state.me.us (8.12.7/8.12.3/Submit) id h1RMbwNA033817; Thu, 27 Feb 2003 17:37:59 -0500 (EST) Message-Id: <200302272237.h1RMbwNA033817@hedgehog.bmv.state.me.us> Date: Thu, 27 Feb 2003 17:37:59 -0500 (EST) From: Darren Henderson Reply-To: Darren Henderson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48761: q31 fails to compile with errors in Xft.h Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48761 >Category: ports >Synopsis: q31 fails to compile with errors in Xft.h >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Feb 27 14:40:04 PST 2003 >Closed-Date: >Last-Modified: >Originator: Darren Henderson >Release: FreeBSD 4.8-PRERELEASE i386 >Organization: >Environment: System: FreeBSD hedgehog.bmv.state.me.us 4.8-PRERELEASE FreeBSD 4.8-PRERELEASE #0: Tue Feb 25 18:11:20 EST 2003 darren@hedgehog.bmv.state.me.us:/usr/obj/usr/src/sys/HEDGEHOG i386 /kernel: CPU: Intel Pentium III (728.44-MHz 686-class CPU) XFree86-4.2.0_1,1 Xft-2.1_2 Last cvsup was 2/27/03 Last buildworld was 2/25/03 based on cvsup of the same date >Description: Attempts to install /usr/ports/x11-toolkits/q31 on its own or as part of the kde3 meta port fails with error refereneces to Xft.h (see below) >How-To-Repeat: Attempt to install the port >Fix: --- qt31.txt begins here --- ===> Building for qt-3.1.1_4 cd qmake && gmake gmake[1]: Entering directory `/usr/ports/x11-toolkits/qt31/work/qt-x11-free-3.1.1/qmake' gmake -f Makefile qmake gmake[2]: Entering directory `/usr/ports/x11-toolkits/qt31/work/qt-x11-free-3.1.1/qmake' gmake[2]: `qmake' is up to date. gmake[2]: Leaving directory `/usr/ports/x11-toolkits/qt31/work/qt-x11-free-3.1.1/qmake' gmake[1]: Leaving directory `/usr/ports/x11-toolkits/qt31/work/qt-x11-free-3.1.1/qmake' cd src/moc && gmake gmake[1]: Entering directory `/usr/ports/x11-toolkits/qt31/work/qt-x11-free-3.1.1/src/moc' gmake[1]: Nothing to be done for `first'. gmake[1]: Leaving directory `/usr/ports/x11-toolkits/qt31/work/qt-x11-free-3.1.1/src/moc' cd src && gmake gmake[1]: Entering directory `/usr/ports/x11-toolkits/qt31/work/qt-x11-free-3.1.1/src' c++ -c -pipe -fno-exceptions -I/usr/local/include -Wall -W -O -pipe -march=pentiumpro -pthread -D_THREAD_SAFE -fPIC -DQT_SHARED -DQT_NO_DEBUG -DQT_THREAD_SUPPORT -DQT_THREAD_SUPPORT -DQT_NO_NIS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DQT_NO_XINERAMA -DQT_BUILTIN_GIF_READER=1 -DQT_NO_STYLE_MAC -DQT_NO_STYLE_AQUA -DQT_NO_STYLE_INTERLACE -DQT_NO_STYLE_WINDOWSXP -DQT_NO_STYLE_COMPACT -I/usr/ports/x11-toolkits/qt31/work/qt-x11-free-3.1.1/mkspecs/freebsd-g++ -I. -I/usr/local/include/freetype2 -I/usr/local/include -I../include -I/usr/X11R6/include -I/usr/X11R6/include -I.moc/release-shared-mt/ -o .obj/release-shared-mt/qtaddons_x11.o kernel/qtaddons_x11.cpp In file included from kernel/qt_x11.h:143, from kernel/qtaddons_x11.cpp:25: /usr/X11R6/include/X11/Xft/Xft.h:52: syntax error before `;' /usr/X11R6/include/X11/Xft/Xft.h:86: syntax error before `;' /usr/X11R6/include/X11/Xft/Xft.h:93: syntax error before `;' /usr/X11R6/include/X11/Xft/Xft.h:190: syntax error before `*' /usr/X11R6/include/X11/Xft/Xft.h:295: syntax error before `*' /usr/X11R6/include/X11/Xft/Xft.h:353: syntax error before `(' /usr/X11R6/include/X11/Xft/Xft.h:392: syntax error before `*' /usr/X11R6/include/X11/Xft/Xft.h:398: syntax error before `*' /usr/X11R6/include/X11/Xft/Xft.h:407: syntax error before `,' /usr/X11R6/include/X11/Xft/Xft.h:417: syntax error before `(' /usr/X11R6/include/X11/Xft/Xft.h:460: syntax error before `*' gmake[1]: *** [.obj/release-shared-mt/qtaddons_x11.o] Error 1 gmake[1]: Leaving directory `/usr/ports/x11-toolkits/qt31/work/qt-x11-free-3.1.1/src' gmake: *** [sub-src] Error 2 *** Error code 2 Stop in /usr/ports/x11-toolkits/qt31. --- qt31.txt ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 16: 0:30 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 184B237B401 for ; Thu, 27 Feb 2003 16:00:28 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B1BD243F3F for ; Thu, 27 Feb 2003 16:00:27 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1S00RNS018705 for ; Thu, 27 Feb 2003 16:00:27 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1S00RhQ018704; Thu, 27 Feb 2003 16:00:27 -0800 (PST) Date: Thu, 27 Feb 2003 16:00:27 -0800 (PST) Message-Id: <200302280000.h1S00RhQ018704@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: "Simon 'portlint' Schubert" Subject: Re: ports/48757: [NEW PORT] gdeskcal Reply-To: "Simon 'portlint' Schubert" Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48757; it has been noted by GNATS. From: "Simon 'portlint' Schubert" To: Martin Klaffenboeck Cc: FreeBSD-gnats-submit@freebsd.org, gnome@freebsd.org Subject: Re: ports/48757: [NEW PORT] gdeskcal Date: Fri, 28 Feb 2003 00:52:25 +0100 --?0/8VC'PC(U9:=.o Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Lately Martin Klaffenboeck told: > sed 's/^X//' >gdeskcal/Makefile << 'END-of-gdeskcal/Makefile' [...] > XDISTNAME= gDeskCal-0_30 use DISTFILES= gDeskCal-${PORTVERSION:S/./_/}${EXTRACT_SUFX} ? [...] > XWRKSRC= ${WRKDIR}/gDeskCal-${PORTVERSION} if you set PORTNAME= gDeskCal this can be skipped [...] > XSTRIP= i doubt this is needed > Xdo-install: > X ${MKDIR} ${PREFIX}/share/gnome/gdeskcal > X ${CP} -vrf ${WRKSRC}/code ${WRKSRC}/gdeskcal \ > X ${WRKSRC}/data ${WRKSRC}/skins \ > X ${PREFIX}/share/gnome/gdeskcal cp considered harmfull, but i have to agree there is no other easy way at the moment. > X ${INSTALL_PROGRAM} ${WRKSRC}/locale/ar_AE/LC_MESSAGES/gdeskcal.mo \ > X ${PREFIX}/share/locale/ar/LC_MESSAGES [more omitted] > X ${INSTALL_PROGRAM} ${WRKSRC}/locale/zh_CN/LC_MESSAGES/gdeskcal.mo \ > X ${PREFIX}/share/locale/zh_CN/LC_MESSAGES you want: @cd ${WRKSRC} && ${FIND} locale -name 'gdeskcal.mo' -exec \ ${INSTALL_DATA} {} ${PREFIX}/share/{} ? at least not ${INSTALL_PROGRAM} cheers simon -- /"\ http://corecode.ath.cx/#donate \ / \ ASCII Ribbon Campaign / \ Against HTML Mail and News --?0/8VC'PC(U9:=.o Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.0 (GNU/Linux) iD8DBQE+XqTAr5S+dk6z85oRAs91AJ9sw8FhBkgT+A3nUuFP1i2kWuTyOACfZxb0 ILORbg2qscn3704IU/sgNns= =bPTF -----END PGP SIGNATURE----- --?0/8VC'PC(U9:=.o-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 16:17:18 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F2A537B401; Thu, 27 Feb 2003 16:17:17 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1DECE43FFB; Thu, 27 Feb 2003 16:17:12 -0800 (PST) (envelope-from glewis@FreeBSD.org) Received: from freefall.freebsd.org (glewis@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1S0HBNS026658; Thu, 27 Feb 2003 16:17:12 -0800 (PST) (envelope-from glewis@freefall.freebsd.org) Received: (from glewis@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1S0HBIQ026654; Thu, 27 Feb 2003 16:17:11 -0800 (PST) Date: Thu, 27 Feb 2003 16:17:11 -0800 (PST) From: Greg Lewis Message-Id: <200302280017.h1S0HBIQ026654@freefall.freebsd.org> To: glewis@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, glewis@FreeBSD.org Subject: Re: ports/48258: [NEW PORT] Meta-CVS Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [NEW PORT] Meta-CVS Responsible-Changed-From-To: freebsd-ports-bugs->glewis Responsible-Changed-By: glewis Responsible-Changed-When: Thu Feb 27 16:15:42 PST 2003 Responsible-Changed-Why: I've been playing with Meta-CVS courtesy of Johannes packages, so the least I can do in return is look at his port and commit it :). http://www.freebsd.org/cgi/query-pr.cgi?pr=48258 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 16:40:18 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ADC9037B405 for ; Thu, 27 Feb 2003 16:40:11 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E337F43FAF for ; Thu, 27 Feb 2003 16:40:09 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1S0e9NS030916 for ; Thu, 27 Feb 2003 16:40:09 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1S0e9PO030915; Thu, 27 Feb 2003 16:40:09 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A942437B401 for ; Thu, 27 Feb 2003 16:31:37 -0800 (PST) Received: from null.speednaked.com (host-228.subnet-223.amherst.edu [148.85.223.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F0A743F75 for ; Thu, 27 Feb 2003 16:31:36 -0800 (PST) (envelope-from jflemer@null.speednaked.com) Received: from null.speednaked.com (localhost [127.0.0.1]) by null.speednaked.com (8.12.7/8.12.7) with ESMTP id h1S0WIRb011831 for ; Thu, 27 Feb 2003 19:32:19 -0500 (EST) (envelope-from jflemer@null.speednaked.com) Received: (from jflemer@localhost) by null.speednaked.com (8.12.7/8.12.7/Submit) id h1S0WI3k011830; Thu, 27 Feb 2003 19:32:18 -0500 (EST) Message-Id: <200302280032.h1S0WI3k011830@null.speednaked.com> Date: Thu, 27 Feb 2003 19:32:18 -0500 (EST) From: "James E. Flemer" Reply-To: "James E. Flemer" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48763: update net/docsis to 1.8.2 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48763 >Category: ports >Synopsis: update net/docsis to 1.8.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Feb 27 16:40:09 PST 2003 >Closed-Date: >Last-Modified: >Originator: James E. Flemer >Release: FreeBSD 5.0-CURRENT i386 >Organization: n/a >Environment: System: FreeBSD null.speednaked.com 5.0-CURRENT FreeBSD 5.0-CURRENT #4: Fri Feb 14 10:07:48 EST 2003 root@:/usr/obj/usr/src/sys/NULL5 i386 >Description: Update this port to most recent version 1.8.2 >How-To-Repeat: >Fix: Apply patch below, and remove now empty file: files/patch-docsis_decode.c --- docsis-1.8.3-diff begins here --- diff -Nbru net/docsis.orig/Makefile net/docsis/Makefile --- net/docsis.orig/Makefile Fri Feb 21 08:14:39 2003 +++ net/docsis/Makefile Thu Feb 27 19:28:26 2003 @@ -6,20 +6,22 @@ # PORTNAME= docsis -PORTVERSION= 0.7.5 +PORTVERSION= 0.8.2 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} DISTNAME= ${PORTNAME}-${PORTVERSION}-RELEASE EXTRACT_SUFX= .tgz -MAINTAINER= jflemer@acm.jhu.edu +MAINTAINER= jflemer@alum.rpi.edu COMMENT= DOCSIS(tm) binary configuration file encoder/decoder -LIB_DEPENDS= snmp.4:${PORTSDIR}/net/net-snmp4 +LIB_DEPENDS= netsnmp:${PORTSDIR}/net/net-snmp USE_OPENSSL= yes USE_BISON= yes + +ALL_TARGET= docsis do-install: @${INSTALL_PROGRAM} ${WRKSRC}/docsis ${PREFIX}/bin diff -Nbru net/docsis.orig/distinfo net/docsis/distinfo --- net/docsis.orig/distinfo Thu Jul 18 01:02:56 2002 +++ net/docsis/distinfo Thu Feb 27 18:48:44 2003 @@ -1 +1 @@ -MD5 (docsis-0.7.5-RELEASE.tgz) = 9cd8250b2c7e9f764db534e5f7aaca7d +MD5 (docsis-0.8.2-RELEASE.tgz) = 595fbed678834bc9f60bc6d5bbe847d8 diff -Nbru net/docsis.orig/files/patch-Makefile net/docsis/files/patch-Makefile --- net/docsis.orig/files/patch-Makefile Thu Jul 18 01:02:57 2002 +++ net/docsis/files/patch-Makefile Thu Feb 27 19:25:36 2003 @@ -1,20 +1,24 @@ ---- Makefile.orig Wed Feb 13 14:09:52 2002 -+++ Makefile Thu Jul 18 00:11:49 2002 -@@ -1,4 +1,3 @@ + +$FreeBSD$ + +--- Makefile.orig Tue Feb 11 15:36:39 2003 ++++ Makefile Thu Feb 27 19:16:03 2003 +@@ -1,6 +1,6 @@ + # Makefile for "docsis" program. + # -CC = gcc ++#CC = gcc DEFS = -DYY_NO_UNPUT -DDEBUG # - # We assume ucd-snmp is installed in /opt/ucd-snmp-4.2. If not, replace with -@@ -7,8 +6,10 @@ + # We assume net-snmp is installed in /opt/net-snmp. If not, replace with +@@ -8,8 +8,8 @@ + # -lnetsnmp is NET-SNMP # -lcrypto is OpenSSL. # - # CFLAGS = -g -Wall -I/usr/local/include --CFLAGS = -g -Wall -I/opt/ucd-snmp-4.2/include --LIBS = -L/opt/ucd-snmp-4.2/lib -lsnmp -lcrypto -lnsl -lfl -lm -+CFLAGS += -g -Wall -I${LOCALBASE}/include -+LIBS += -L${LOCALBASE}/lib -lsnmp -lcrypto -lfl -lm -+ -+all: docsis +-CFLAGS = -g -Wall -I/opt/net-snmp/include +-LIBS = -L/opt/net-snmp/lib -lnetsnmp -lcrypto -lnsl -lfl -lm ++CFLAGS += -I${PREFIX}/include -I${OPENSSLINC} ++LIBS = -L${PREFIX}/lib -L${OPENSSLLIB} -lnetsnmp -lcrypto -lfl -lm - docsis: Makefile docsis_decode.o docsis_yy.o docsis_main.o md5.o hmac_md5.o docsis_snmp.o ethermac.h ethermac.o version.h docsis_encode.o - $(CC) $(CFLAGS) $(DEFS) -g -o docsis docsis_main.o docsis_encode.o docsis_decode.o docsis_yy.o md5.o hmac_md5.o docsis_snmp.o ethermac.o $(LIBS) + # If you installed NET-SNMP in /usr/local, uncomment the following two lines: + # CFLAGS = -g -Wall -I/usr/local/include diff -Nbru net/docsis.orig/files/patch-docsis_decode.c net/docsis/files/patch-docsis_decode.c --- net/docsis.orig/files/patch-docsis_decode.c Thu Jul 18 01:02:57 2002 +++ net/docsis/files/patch-docsis_decode.c Thu Feb 27 19:23:58 2003 @@ -1,11 +0,0 @@ ---- docsis_decode.c.orig Fri Jul 5 14:54:11 2002 -+++ docsis_decode.c Fri Jul 5 14:55:31 2002 -@@ -47,7 +47,7 @@ - memset( &helper, 0,sizeof(unsigned int)); - memcpy( &helper, tlvbuf+2, sizeof(unsigned int)); - -- printf ( "%s %u;\n", sym->sym_ident, ntohl(helper)); -+ printf ( "%s %u;\n", sym->sym_ident, (unsigned int)ntohl(helper)); - } - - void decode_ushort (unsigned char *tlvbuf, symbol_type *sym) diff -Nbru net/docsis.orig/files/patch-docsis_main.c net/docsis/files/patch-docsis_main.c --- net/docsis.orig/files/patch-docsis_main.c Wed Dec 31 19:00:00 1969 +++ net/docsis/files/patch-docsis_main.c Thu Feb 27 19:25:46 2003 @@ -0,0 +1,18 @@ + +$FreeBSD$ + +--- docsis_main.c.orig Thu Feb 13 17:21:40 2003 ++++ docsis_main.c Thu Feb 27 19:14:53 2003 +@@ -180,10 +180,10 @@ + if (! netsnmp_ds_get_boolean (NETSNMP_DS_LIBRARY_ID, NETSNMP_DS_LIB_PRINT_UCD_STYLE_OID)) { + netsnmp_ds_toggle_boolean(NETSNMP_DS_LIBRARY_ID, NETSNMP_DS_LIB_PRINT_UCD_STYLE_OID); + } */ +- ++/* + if (! netsnmp_ds_get_boolean (NETSNMP_DS_LIBRARY_ID, NETSNMP_DS_LIB_DONT_PRINT_UNITS)) { + netsnmp_ds_toggle_boolean(NETSNMP_DS_LIBRARY_ID, NETSNMP_DS_LIB_DONT_PRINT_UNITS); +- } ++ } */ + + netsnmp_ds_set_int(NETSNMP_DS_LIBRARY_ID, NETSNMP_DS_LIB_OID_OUTPUT_FORMAT, + NETSNMP_OID_OUTPUT_SUFFIX); diff -Nbru net/docsis.orig/files/patch-docsis_snmp.c net/docsis/files/patch-docsis_snmp.c --- net/docsis.orig/files/patch-docsis_snmp.c Thu Jul 18 01:02:57 2002 +++ net/docsis/files/patch-docsis_snmp.c Thu Feb 27 19:25:50 2003 @@ -1,10 +1,13 @@ ---- docsis_snmp.c.orig Fri Jul 5 14:56:11 2002 -+++ docsis_snmp.c Fri Jul 5 14:56:53 2002 -@@ -165,6 +165,7 @@ - if (snmp_set_var_objid(vp, objid, vp->name_length)) - return -1; + +$FreeBSD$ + +--- docsis_snmp.c.orig Tue Feb 11 16:36:30 2003 ++++ docsis_snmp.c Thu Feb 27 19:17:23 2003 +@@ -206,6 +206,7 @@ + static char outbuf[1024]; + char *cp; + badtype = 0; - len = PACKET_LENGTH; - switch((short)vp->type){ - case ASN_INTEGER: + memset (outbuf, 0, 1024); + + vp = (struct variable_list *) malloc (sizeof (struct variable_list)); diff -Nbru net/docsis.orig/files/patch-docsis_yy.y net/docsis/files/patch-docsis_yy.y --- net/docsis.orig/files/patch-docsis_yy.y Wed Dec 31 19:00:00 1969 +++ net/docsis/files/patch-docsis_yy.y Thu Feb 27 19:25:57 2003 @@ -0,0 +1,13 @@ + +$FreeBSD$ + +--- docsis_yy.y.orig Sun Feb 9 15:35:00 2003 ++++ docsis_yy.y Thu Feb 27 19:14:53 2003 +@@ -50,7 +50,6 @@ + %token T_ETHERMASK + %token T_LABEL_OID + %token T_IP +-%token T_MAC + %token T_MAIN + %token T_STRING + %token T_HEX_STRING diff -Nbru net/docsis.orig/files/patch-ethermac.h net/docsis/files/patch-ethermac.h --- net/docsis.orig/files/patch-ethermac.h Wed Dec 31 19:00:00 1969 +++ net/docsis/files/patch-ethermac.h Thu Feb 27 19:26:00 2003 @@ -0,0 +1,13 @@ + +$FreeBSD$ + +--- ethermac.h.orig Wed Feb 13 14:09:52 2002 ++++ ethermac.h Thu Feb 27 19:14:53 2003 +@@ -22,6 +22,7 @@ + + #include + #include ++#include + + int ether_aton ( const char *macstr, unsigned char *outbuf ) ; + char * ether_ntoa ( const unsigned char *mac); diff -Nbru net/docsis.orig/pkg-plist net/docsis/pkg-plist --- net/docsis.orig/pkg-plist Thu Jul 18 01:02:56 2002 +++ net/docsis/pkg-plist Thu Feb 27 19:20:33 2003 @@ -1,18 +1,22 @@ bin/docsis +share/examples/docsis/docsis1.0_2class_non-rfc2669.cfg +share/examples/docsis/docsis1.0_2class_rfc2669.cfg +share/examples/docsis/docsis1.0_basic.cfg +share/examples/docsis/docsis1.0_basic_bpi.cfg +share/examples/docsis/docsis1.0_basic_upgrade.cfg +share/examples/docsis/docsis1.0_example.cfg +share/examples/docsis/docsis1.0_filters2_oidnum.cfg +share/examples/docsis/docsis1.0_filters2_oidtext.cfg +share/examples/docsis/docsis1.0_filters_NmAccess.cfg +share/examples/docsis/docsis1.0_filters_oidnum.cfg +share/examples/docsis/docsis1.0_filters_oidtext.cfg +share/examples/docsis/docsis1.1_classifiers.cfg +share/examples/docsis/docsis1.1_classifiers2.cfg +share/examples/docsis/docsis1.1_simple.cfg +share/examples/docsis/docsis1.1_stress_test.cfg share/examples/docsis/docsis20.cfg share/examples/docsis/docsis20_no_snmp.cfg -share/examples/docsis/example-non-rfc2669.cfg -share/examples/docsis/example.cfg -share/examples/docsis/hoof-lab.cfg -share/examples/docsis/hoof-lab1.cfg share/examples/docsis/keyfile -share/examples/docsis/modem-b.cfg -share/examples/docsis/modem-oid.cfg -share/examples/docsis/modem-text.cfg -share/examples/docsis/modem.cfg -share/examples/docsis/modem1.cfg -share/examples/docsis/rolab-oid.cfg -share/examples/docsis/rolab-text.cfg -share/examples/docsis/snmp20.cfg +share/examples/docsis/packetcable_mta.cfg share/examples/docsis/testkey.key @dirrm share/examples/docsis --- docsis-1.8.3-diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 19:30:16 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D06D37B401 for ; Thu, 27 Feb 2003 19:30:09 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA46D43FBF for ; Thu, 27 Feb 2003 19:30:07 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1S3U7NS078088 for ; Thu, 27 Feb 2003 19:30:07 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1S3U7aN078086; Thu, 27 Feb 2003 19:30:07 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C935437B401 for ; Thu, 27 Feb 2003 19:22:10 -0800 (PST) Received: from mail.geekdude.com (adsl-63-198-177-6.dsl.snfc21.pacbell.net [63.198.177.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6743243FB1 for ; Thu, 27 Feb 2003 19:22:08 -0800 (PST) (envelope-from chein@mail.geekdude.com) Received: from wakko.geekdude.com (wakko.geekdude.com [192.168.0.2]) by mail.geekdude.com (8.12.6/8.12.6) with ESMTP id h1S3Miqh045931 for ; Thu, 27 Feb 2003 19:22:44 -0800 (PST) (envelope-from chein@mail.geekdude.com) Received: from wakko.geekdude.com (localhost [127.0.0.1]) by wakko.geekdude.com (8.12.6/8.12.6) with ESMTP id h1S3SUjL030254 for ; Thu, 27 Feb 2003 19:28:30 -0800 (PST) (envelope-from chein@wakko.geekdude.com) Received: (from root@localhost) by wakko.geekdude.com (8.12.6/8.12.6/Submit) id h1S3SUFp030253; Thu, 27 Feb 2003 19:28:30 -0800 (PST) Message-Id: <200302280328.h1S3SUFp030253@wakko.geekdude.com> Date: Thu, 27 Feb 2003 19:28:30 -0800 (PST) From: chein Reply-To: chein To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48764: new port for mpexpr Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48764 >Category: ports >Synopsis: new port for mpexpr >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Feb 27 19:30:07 PST 2003 >Closed-Date: >Last-Modified: >Originator: chein@GeekDude.com >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: FreeBSD wakko.geekdude.com 4.7-STABLE FreeBSD 4.7-STABLE #10: Tue Feb 11 20:31:24 PST 2003 root@wakko.geekdude.com:/b/src/sys/compile/WAKKO i386 >Description: New port for mpexpr >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # mpexpr # mpexpr/files # mpexpr/files/patch-aa # mpexpr/files/patch-ab # mpexpr/pkg-descr # mpexpr/distinfo # mpexpr/pkg-plist # mpexpr/Makefile # mpexpr/pkg-comment # echo c - mpexpr mkdir -p mpexpr > /dev/null 2>&1 echo c - mpexpr/files mkdir -p mpexpr/files > /dev/null 2>&1 echo x - mpexpr/files/patch-aa sed 's/^X//' >mpexpr/files/patch-aa << 'END-of-mpexpr/files/patch-aa' X*** configure.orig Fri Dec 4 16:04:23 1998 X--- configure Fri May 11 17:31:55 2001 X*************** X*** 21,26 **** X--- 21,28 ---- X # Initialize some variables set by options. X # The variables have the same names as the options, with X # dashes changed to underlines. X+ TCL_EXEC=tclsh8.3 X+ WISH_EXEC=wish8.3 X build=NONE X cache_file=./config.cache X exec_prefix=NONE X*************** X*** 704,711 **** X X # find include/tcl.h X for f in $prefix_locations ; do X! if test -r "$f/include/tcl.h"; then X! TCL_INC_DIR=$f/include X echo "$ac_t""setting TCL_INC_DIR to $TCL_INC_DIR" 1>&6 X break X fi X--- 706,713 ---- X X # find include/tcl.h X for f in $prefix_locations ; do X! if test -r "$f/include/tcl8.3/tcl.h"; then X! TCL_INC_DIR=$f/include/tcl8.3 X echo "$ac_t""setting TCL_INC_DIR to $TCL_INC_DIR" 1>&6 X break X fi X*************** X*** 713,720 **** X X # find lib/tclConfig.sh X for f in $exec_prefix_locations ; do X! if test -r "$f/lib/tclConfig.sh"; then X! TCL_LIB_DIR=$f/lib X echo "$ac_t""setting TCL_LIB_DIR to $TCL_LIB_DIR" 1>&6 X break X fi X--- 715,722 ---- X X # find lib/tclConfig.sh X for f in $exec_prefix_locations ; do X! if test -r "$f/lib/tcl8.3/tclConfig.sh"; then X! TCL_LIB_DIR=$f/lib/tcl8.3 X echo "$ac_t""setting TCL_LIB_DIR to $TCL_LIB_DIR" 1>&6 X break X fi END-of-mpexpr/files/patch-aa echo x - mpexpr/files/patch-ab sed 's/^X//' >mpexpr/files/patch-ab << 'END-of-mpexpr/files/patch-ab' X*** Makefile.in.orig Fri Dec 4 16:04:23 1998 X--- Makefile.in Thu Feb 27 18:37:45 2003 X*************** X*** 83,95 **** X #------------------------------------------------------------------------------ X # define names for Mpexpr tclsh/tcl executable X X! TCL_EXEC = tclsh X TCLX_EXEC = tcl X X #------------------------------------------------------------------------------ X # define name for Mpexpr wish/wishx executable X X! WISH_EXEC = wish X WISHX_EXEC = wishx X X #------------------------------------------------------------------------------ X--- 83,95 ---- X #------------------------------------------------------------------------------ X # define names for Mpexpr tclsh/tcl executable X X! TCL_EXEC = tclsh8.3 X TCLX_EXEC = tcl X X #------------------------------------------------------------------------------ X # define name for Mpexpr wish/wishx executable X X! WISH_EXEC = wish8.3 X WISHX_EXEC = wishx X X #------------------------------------------------------------------------------ X*************** X*** 210,226 **** X # a make clobber and try LITTLE_ENDIAN. If that fails, ask a wizard X # for help. X # X! BYTE_ORDER= X #BYTE_ORDER= BIG_ENDIAN X! #BYTE_ORDER= LITTLE_ENDIAN X X # Determine the number of bits in a long X # X # If in doubt, leave LONG_BITS empty. This makefile will run X # the longbits program to determine the length. X # X! LONG_BITS= X! #LONG_BITS= 32 X #LONG_BITS= 64 X X X--- 210,226 ---- X # a make clobber and try LITTLE_ENDIAN. If that fails, ask a wizard X # for help. X # X! #BYTE_ORDER= X #BYTE_ORDER= BIG_ENDIAN X! BYTE_ORDER= LITTLE_ENDIAN X X # Determine the number of bits in a long X # X # If in doubt, leave LONG_BITS empty. This makefile will run X # the longbits program to determine the length. X # X! #LONG_BITS= X! LONG_BITS= 32 X #LONG_BITS= 64 X X X*************** X*** 473,486 **** X #------------------------------------------------------------------------------ X # install targets X X! install: @INSTALL_TARGET@ install-man install-tools X X install-shared: $(LIB_SH_MPEXPR) X @echo installing $(LIB_SH_MPEXPR) X $(INSTALL_PROGRAM) $(LIB_SH_MPEXPR) $(LIB_DIR)/$(LIB_SH_MPEXPR) X @echo installing pkgIndex.tcl X -mkdir $(LIB_DIR)/Mpexpr$(MPEXPR_LIBVER) X! $(INSTALL_PROGRAM) pkgIndex.tcl $(LIB_DIR)/Mpexpr$(MPEXPR_LIBVER)/pkgIndex.tcl X X install-static: @PROGS@ $(LIB_MPEXPR) X @for f in $(T_EXEC) $(W_EXEC) ; do \ X--- 473,487 ---- X #------------------------------------------------------------------------------ X # install targets X X! #install: @INSTALL_TARGET@ install-man install-tools X! install: @INSTALL_TARGET@ install-man X X install-shared: $(LIB_SH_MPEXPR) X @echo installing $(LIB_SH_MPEXPR) X $(INSTALL_PROGRAM) $(LIB_SH_MPEXPR) $(LIB_DIR)/$(LIB_SH_MPEXPR) X @echo installing pkgIndex.tcl X -mkdir $(LIB_DIR)/Mpexpr$(MPEXPR_LIBVER) X! $(INSTALL_DATA) pkgIndex.tcl $(LIB_DIR)/Mpexpr$(MPEXPR_LIBVER)/pkgIndex.tcl X X install-static: @PROGS@ $(LIB_MPEXPR) X @for f in $(T_EXEC) $(W_EXEC) ; do \ END-of-mpexpr/files/patch-ab echo x - mpexpr/pkg-descr sed 's/^X//' >mpexpr/pkg-descr << 'END-of-mpexpr/pkg-descr' XMpexpr adds two new commands to Tcl, 'mpexpr' and 'mpformat'. Mpexpr works Xmuch like Tcl's native 'expr', but does all calculations using an arbitrary Xprecision math package. Mpexpr numbers can be any number of digits, with any Xdecimal precision. Final precision is controlled by a Tcl variable X'mp_precision', which can be any reasonable integer, limiting only the Xnumber of digits to the right of the decimal point. X XMpformat works much like Tcl's 'format', except it formats multiple Xprecision numbers in a variety of formats. X XMpexpr also includes most math functions provided by 'expr', as well Xas several new functions. Mpexpr also supports Tcl variables and Xnested evaluation, just like 'expr': X XWWW: http://www.neosoft.com/tcl/ftparchive/sorted/math/mpexpr-1.0 END-of-mpexpr/pkg-descr echo x - mpexpr/distinfo sed 's/^X//' >mpexpr/distinfo << 'END-of-mpexpr/distinfo' XMD5 (mpexpr-1.0.tar.gz) = 7978df5a42de32215b0d2f559cd55071 END-of-mpexpr/distinfo echo x - mpexpr/pkg-plist sed 's/^X//' >mpexpr/pkg-plist << 'END-of-mpexpr/pkg-plist' Xlib/libMpexpr10.so Xlib/Mpexpr10/pkgIndex.tcl X@dirrm lib/Mpexpr10 END-of-mpexpr/pkg-plist echo x - mpexpr/Makefile sed 's/^X//' >mpexpr/Makefile << 'END-of-mpexpr/Makefile' X# New ports collection makefile for: mpexpr X# Date created: 20 April 2001 X# Whom: Chuck Hein X# X# $FreeBSD$ X# X XPORTNAME= mpexpr XPORTVERSION= 1.0 XCATEGORIES= math XMASTER_SITES= http://www.neosoft.com/tcl/ftparchive/sorted/math/Mpexpr-1.0/1.0/ X XMAINTAINER= geekdude@pacbell.net X XLIB_DEPENDS= tcl83.1:${PORTSDIR}/lang/tcl83 X XWRKSRC= ${WRKDIR}/mpexpr-1.0/unix X XCONFIGURE_ARGS= --prefix=${PREFIX} \ X --exec-prefix=${PREFIX} X XGNU_CONFIGURE= yes X#INSTALLS_SHLIB= yes X XMANN= mpexpr.n X X.include END-of-mpexpr/Makefile echo x - mpexpr/pkg-comment sed 's/^X//' >mpexpr/pkg-comment << 'END-of-mpexpr/pkg-comment' XMultiple precision math for Tcl END-of-mpexpr/pkg-comment exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 20: 7:18 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F2BDB37B401; Thu, 27 Feb 2003 20:07:17 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 98E8A43FB1; Thu, 27 Feb 2003 20:07:17 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (leeym@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1S47HNS090599; Thu, 27 Feb 2003 20:07:17 -0800 (PST) (envelope-from leeym@freefall.freebsd.org) Received: (from leeym@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1S477pL090589; Thu, 27 Feb 2003 20:07:07 -0800 (PST) Date: Thu, 27 Feb 2003 20:07:07 -0800 (PST) From: Yen-Ming Lee Message-Id: <200302280407.h1S477pL090589@freefall.freebsd.org> To: mirapoint@vipnet.ro, leeym@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/47055: new port: net/unix2tcp Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: new port: net/unix2tcp State-Changed-From-To: open->closed State-Changed-By: leeym State-Changed-When: Thu Feb 27 20:07:06 PST 2003 State-Changed-Why: superceded by ports/47667. http://www.freebsd.org/cgi/query-pr.cgi?pr=47055 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Thu Feb 27 23: 6:11 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A656837B408; Thu, 27 Feb 2003 23:06:09 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BB5643F93; Thu, 27 Feb 2003 23:06:09 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from freefall.freebsd.org (marcus@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1S769NS039046; Thu, 27 Feb 2003 23:06:09 -0800 (PST) (envelope-from marcus@freefall.freebsd.org) Received: (from marcus@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1S7693g039042; Thu, 27 Feb 2003 23:06:09 -0800 (PST) Date: Thu, 27 Feb 2003 23:06:09 -0800 (PST) From: Joe Marcus Clarke Message-Id: <200302280706.h1S7693g039042@freefall.freebsd.org> To: marcus@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, marcus@FreeBSD.org Subject: Re: ports/48757: [NEW PORT] gdeskcal Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [NEW PORT] gdeskcal Responsible-Changed-From-To: freebsd-ports-bugs->marcus Responsible-Changed-By: marcus Responsible-Changed-When: Thu Feb 27 23:05:57 PST 2003 Responsible-Changed-Why: I'll take this. http://www.freebsd.org/cgi/query-pr.cgi?pr=48757 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 0:30:11 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1989937B401 for ; Fri, 28 Feb 2003 00:30:10 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BC3243FBF for ; Fri, 28 Feb 2003 00:30:09 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1S8U9NS059143 for ; Fri, 28 Feb 2003 00:30:09 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1S8U92r059142; Fri, 28 Feb 2003 00:30:09 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC5F937B401 for ; Fri, 28 Feb 2003 00:23:20 -0800 (PST) Received: from zaphod.euronet.nl (zaphod.euronet.nl [194.134.168.213]) by mx1.FreeBSD.org (Postfix) with ESMTP id BED7943F85 for ; Fri, 28 Feb 2003 00:23:19 -0800 (PST) (envelope-from ernst@zaphod.euronet.nl) Received: from zaphod.euronet.nl (localhost [127.0.0.1]) by zaphod.euronet.nl (8.12.6/8.12.6) with ESMTP id h1S8NU9c028326 for ; Fri, 28 Feb 2003 09:23:30 +0100 (CET) (envelope-from ernst@zaphod.euronet.nl) Received: (from ernst@localhost) by zaphod.euronet.nl (8.12.6/8.12.6/Submit) id h1S8NUDM028325; Fri, 28 Feb 2003 09:23:30 +0100 (CET) Message-Id: <200302280823.h1S8NUDM028325@zaphod.euronet.nl> Date: Fri, 28 Feb 2003 09:23:30 +0100 (CET) From: Ernst de Haan Reply-To: Ernst de Haan To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48766: XFree86 4.3.0 is released Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48766 >Category: ports >Synopsis: XFree86 4.3.0 is released >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 00:30:08 PST 2003 >Closed-Date: >Last-Modified: >Originator: Ernst de Haan >Release: FreeBSD 4.7-STABLE i386 >Organization: FreeBSD Project >Environment: System: FreeBSD zaphod.euronet.nl 4.7-STABLE FreeBSD 4.7-STABLE #12: Thu Jan 9 10:36:26 CET 2003 ernst@zaphod.euronet.nl:/usr/obj/usr/src/sys/ZAPHOD i386 >Description: XFree86 4.3.0 has been released. See: http://www.xfree86.org/4.3.0/RELNOTES2.html Please update the port. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 0:51:11 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D1A1437B401; Fri, 28 Feb 2003 00:51:10 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7661D43FD7; Fri, 28 Feb 2003 00:51:10 -0800 (PST) (envelope-from znerd@FreeBSD.org) Received: from freefall.freebsd.org (znerd@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1S8pANS064973; Fri, 28 Feb 2003 00:51:10 -0800 (PST) (envelope-from znerd@freefall.freebsd.org) Received: (from znerd@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1S8pAGg064969; Fri, 28 Feb 2003 00:51:10 -0800 (PST) Date: Fri, 28 Feb 2003 00:51:10 -0800 (PST) From: Ernst de Haan Message-Id: <200302280851.h1S8pAGg064969@freefall.freebsd.org> To: znerd@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, anholt@FreeBSD.org Subject: Re: ports/48766: XFree86 4.3.0 is released Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: XFree86 4.3.0 is released Responsible-Changed-From-To: freebsd-ports-bugs->anholt Responsible-Changed-By: znerd Responsible-Changed-When: Fri Feb 28 00:50:34 PST 2003 Responsible-Changed-Why: Over to MAINTAINER. http://www.freebsd.org/cgi/query-pr.cgi?pr=48766 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 1:18:10 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 377E637B401; Fri, 28 Feb 2003 01:18:10 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDC2943FAF; Fri, 28 Feb 2003 01:18:09 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (leeym@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1S9I9NS072533; Fri, 28 Feb 2003 01:18:09 -0800 (PST) (envelope-from leeym@freefall.freebsd.org) Received: (from leeym@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1S9I9Kr072529; Fri, 28 Feb 2003 01:18:09 -0800 (PST) Date: Fri, 28 Feb 2003 01:18:09 -0800 (PST) From: Yen-Ming Lee Message-Id: <200302280918.h1S9I9Kr072529@freefall.freebsd.org> To: mich@freebsdcluster.org, leeym@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48660: Update port: [Maintainer Update]: net/slurm Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: [Maintainer Update]: net/slurm State-Changed-From-To: open->closed State-Changed-By: leeym State-Changed-When: Fri Feb 28 01:18:08 PST 2003 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48660 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 1:20:18 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F9F037B405 for ; Fri, 28 Feb 2003 01:20:10 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 060D843FDF for ; Fri, 28 Feb 2003 01:20:09 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1S9K8NS072590 for ; Fri, 28 Feb 2003 01:20:08 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1S9K80f072589; Fri, 28 Feb 2003 01:20:08 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D66C37B401 for ; Fri, 28 Feb 2003 01:12:27 -0800 (PST) Received: from httpd.terions.de (static62-99-146-055.adsl.inode.at [62.99.146.55]) by mx1.FreeBSD.org (Postfix) with SMTP id EAA0243FBD for ; Fri, 28 Feb 2003 01:12:22 -0800 (PST) (envelope-from martin@kleinerdrache.org) Received: (qmail 33826 invoked by uid 0); 28 Feb 2003 09:12:21 -0000 Message-Id: <20030228091221.33825.qmail@httpd.terions.de> Date: 28 Feb 2003 09:12:21 -0000 From: Martin Klaffenboeck Reply-To: Martin Klaffenboeck To: FreeBSD-gnats-submit@FreeBSD.org Cc: gnome@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48768: [NEW PORT] rubrica Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48768 >Category: ports >Synopsis: [NEW PORT] rubrica >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 01:20:08 PST 2003 >Closed-Date: >Last-Modified: >Originator: Martin Klaffenboeck >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: FreeBSD martin.kleinerdrache.org 4.7-STABLE FreeBSD 4.7-STABLE #24: Mon Feb 10 21:21:27 CET 2003 martin@martin.kleinerdrache.org:/usr/obj/usr/src/sys/MYKERNEL i386 >Description: This is the port for rubrica. Should be a better than my last of gdeskcal. I'm not really sure whith all the options set in the makefile. The one thing is I don't know if the gnome things are installed right, especialy the file share/gnome/services/rubrica.desktop. Ok, thats it. Thanks for committing gdeskcal so fast. Martin >How-To-Repeat: >Fix: --- rubrica.sh begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # rubrica # rubrica/Makefile # rubrica/distinfo # rubrica/pkg-descr # rubrica/files # rubrica/files/patch-src-file.c # rubrica/pkg-plist # echo c - rubrica mkdir -p rubrica > /dev/null 2>&1 echo x - rubrica/Makefile sed 's/^X//' >rubrica/Makefile << 'END-of-rubrica/Makefile' X# New ports collection makefile for: rubrica X# Date created: 27 February 2003 X# Whom: Martin Klaffenboeck X# X# $FreeBSD$ X# X XPORTNAME= rubrica XPORTVERSION= 1.0.0cr1 XCATEGORIES= deskutils gnome XMASTER_SITES= http://digilander.libero.it/nfragale/download/rubrica/ X XMAINTAINER= martin.klaffenboeck@gmx.at XCOMMENT= An addressbook for the gnome2 desktop X XLIB_DEPENDS= gnomeui-2.200:${PORTSDIR}/x11-toolkits/libgnomeui X XUSE_BZIP2= yes XUSE_GNOMENG= yes XUSE_GNOME= gnomehack gnomeprefix gnomelibs XUSE_X_PREFIX= yes XUSE_GMAKE= yes XGNU_CONFIGURE= yes XUSE_LIBTOOL= yes XCONFIGURE_ENV= CXXFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ X LIBS="-L${LOCALBASE}/lib " X XCONFIGURE_ARGS+= --prefix=${PREFIX} XCONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL} X X.include END-of-rubrica/Makefile echo x - rubrica/distinfo sed 's/^X//' >rubrica/distinfo << 'END-of-rubrica/distinfo' XMD5 (rubrica-1.0.0cr1.tar.bz2) = 17a91fb558c850205047bd6420807abd END-of-rubrica/distinfo echo x - rubrica/pkg-descr sed 's/^X//' >rubrica/pkg-descr << 'END-of-rubrica/pkg-descr' XRubrica is an addressbook for Gnome desktop. Rubrica store personal data X(first name, last name,...), web urls and emails, telepnone numbers (home,...), Xjob data (company name, company address, assigment in company), notes X(contact is married,...) X XWWW: http://digilander.iol.it/nfragale/index.html END-of-rubrica/pkg-descr echo c - rubrica/files mkdir -p rubrica/files > /dev/null 2>&1 echo x - rubrica/files/patch-src-file.c sed 's/^X//' >rubrica/files/patch-src-file.c << 'END-of-rubrica/files/patch-src-file.c' X--- src/file.c.orig Thu Feb 27 22:04:36 2003 X+++ src/file.c Thu Feb 27 22:05:02 2003 X@@ -809,6 +809,7 @@ X rubrica_file_load_xmlfile(gchar *filename, RubricaErrorType* err) X { X Rubrica *rubrica; X+ gchar *fpath, *fname; X X if (!g_file_exists(filename)) X { X@@ -829,7 +830,6 @@ X now we need to put in memory some information X about this file and addressbook X */ X- gchar *fpath, *fname; X X fpath = g_dirname(filename); X fname = g_strdup(g_basename(filename)); END-of-rubrica/files/patch-src-file.c echo x - rubrica/pkg-plist sed 's/^X//' >rubrica/pkg-plist << 'END-of-rubrica/pkg-plist' Xbin/rubrica Xetc/gconf/schemas/rubrica.schemas Xshare/gnome/applications/rubrica.desktop Xshare/gnome/doc/rubrica/AUTHORS Xshare/gnome/doc/rubrica/COPYING Xshare/gnome/doc/rubrica/CREDITS Xshare/gnome/doc/rubrica/ChangeLog Xshare/gnome/doc/rubrica/INSTALL Xshare/gnome/doc/rubrica/NEWS Xshare/gnome/doc/rubrica/README Xshare/gnome/doc/rubrica/TODO Xshare/gnome/doc/rubrica/examples.rub Xshare/gnome/pixmaps/rubrica/about.png Xshare/gnome/pixmaps/rubrica/accounts.png Xshare/gnome/pixmaps/rubrica/add-menu.png Xshare/gnome/pixmaps/rubrica/add.png Xshare/gnome/pixmaps/rubrica/altrotel.png Xshare/gnome/pixmaps/rubrica/arrow-left.png Xshare/gnome/pixmaps/rubrica/arrow-right.png Xshare/gnome/pixmaps/rubrica/bug.png Xshare/gnome/pixmaps/rubrica/bussiness.png Xshare/gnome/pixmaps/rubrica/calabria.png Xshare/gnome/pixmaps/rubrica/casa.png Xshare/gnome/pixmaps/rubrica/cellulare.png Xshare/gnome/pixmaps/rubrica/company.png Xshare/gnome/pixmaps/rubrica/company2.png Xshare/gnome/pixmaps/rubrica/contacts.png Xshare/gnome/pixmaps/rubrica/crypto-info.png Xshare/gnome/pixmaps/rubrica/crypto.png Xshare/gnome/pixmaps/rubrica/customer.png Xshare/gnome/pixmaps/rubrica/dedicato.png Xshare/gnome/pixmaps/rubrica/del.png Xshare/gnome/pixmaps/rubrica/dictionary.png Xshare/gnome/pixmaps/rubrica/email.png Xshare/gnome/pixmaps/rubrica/emailme.png Xshare/gnome/pixmaps/rubrica/export-menu.png Xshare/gnome/pixmaps/rubrica/export.png Xshare/gnome/pixmaps/rubrica/favorites.png Xshare/gnome/pixmaps/rubrica/fax.png Xshare/gnome/pixmaps/rubrica/file-info.png Xshare/gnome/pixmaps/rubrica/file.png Xshare/gnome/pixmaps/rubrica/filesett.png Xshare/gnome/pixmaps/rubrica/folder.png Xshare/gnome/pixmaps/rubrica/football.png Xshare/gnome/pixmaps/rubrica/freebsd.png Xshare/gnome/pixmaps/rubrica/friends.png Xshare/gnome/pixmaps/rubrica/general-info.png Xshare/gnome/pixmaps/rubrica/general.png Xshare/gnome/pixmaps/rubrica/genius.png Xshare/gnome/pixmaps/rubrica/heart.png Xshare/gnome/pixmaps/rubrica/help.png Xshare/gnome/pixmaps/rubrica/hobby.png Xshare/gnome/pixmaps/rubrica/holiday-cards.png Xshare/gnome/pixmaps/rubrica/holiday.png Xshare/gnome/pixmaps/rubrica/home.png Xshare/gnome/pixmaps/rubrica/hot-contacts.png Xshare/gnome/pixmaps/rubrica/image.png Xshare/gnome/pixmaps/rubrica/import-menu.png Xshare/gnome/pixmaps/rubrica/import.png Xshare/gnome/pixmaps/rubrica/info.png Xshare/gnome/pixmaps/rubrica/internet.png Xshare/gnome/pixmaps/rubrica/keys.png Xshare/gnome/pixmaps/rubrica/ledgreen.png Xshare/gnome/pixmaps/rubrica/ledred.png Xshare/gnome/pixmaps/rubrica/load.png Xshare/gnome/pixmaps/rubrica/misc.png Xshare/gnome/pixmaps/rubrica/mod-menu.png Xshare/gnome/pixmaps/rubrica/mod.png Xshare/gnome/pixmaps/rubrica/money.png Xshare/gnome/pixmaps/rubrica/multimedia.png Xshare/gnome/pixmaps/rubrica/notes.png Xshare/gnome/pixmaps/rubrica/other.png Xshare/gnome/pixmaps/rubrica/penguin.png Xshare/gnome/pixmaps/rubrica/personal.png Xshare/gnome/pixmaps/rubrica/photo.png Xshare/gnome/pixmaps/rubrica/pj.png Xshare/gnome/pixmaps/rubrica/post-it.png Xshare/gnome/pixmaps/rubrica/puzzle.png Xshare/gnome/pixmaps/rubrica/question.png Xshare/gnome/pixmaps/rubrica/remove-menu.png Xshare/gnome/pixmaps/rubrica/remove.png Xshare/gnome/pixmaps/rubrica/role.png Xshare/gnome/pixmaps/rubrica/rub.png Xshare/gnome/pixmaps/rubrica/rubrica.jpg Xshare/gnome/pixmaps/rubrica/save.png Xshare/gnome/pixmaps/rubrica/sbug.png Xshare/gnome/pixmaps/rubrica/scalabria.png Xshare/gnome/pixmaps/rubrica/schede.png Xshare/gnome/pixmaps/rubrica/search.png Xshare/gnome/pixmaps/rubrica/strategies.png Xshare/gnome/pixmaps/rubrica/street.png Xshare/gnome/pixmaps/rubrica/telefoni.png Xshare/gnome/pixmaps/rubrica/telefono.png Xshare/gnome/pixmaps/rubrica/testa.png Xshare/gnome/pixmaps/rubrica/time.png Xshare/gnome/pixmaps/rubrica/translation-info.png Xshare/gnome/pixmaps/rubrica/translation.png Xshare/gnome/pixmaps/rubrica/view-column.png Xshare/gnome/pixmaps/rubrica/view-info.png Xshare/gnome/pixmaps/rubrica/view.png Xshare/gnome/pixmaps/rubrica/word.png Xshare/gnome/pixmaps/rubrica/work.png Xshare/gnome/rubrica/nautilus-script/rubrica2html.py Xshare/gnome/rubrica/script/rub2html.py Xshare/gnome/rubrica/script/rub2rub.py Xshare/gnome/rubrica/script/rub2txt.py Xshare/gnome/rubrica/script/rub2vcard.py Xshare/gnome/rubrica/stylesheet/rub2html.xsl Xshare/gnome/rubrica/stylesheet/rub2rub.xsl Xshare/gnome/rubrica/stylesheet/rub2txt.xsl Xshare/gnome/rubrica/stylesheet/rub2vcard.xsl Xshare/gnome/services/rubrica.desktop X@dirrm share/gnome/services X@dirrm share/gnome/rubrica/stylesheet X@dirrm share/gnome/rubrica/script X@dirrm share/gnome/rubrica/nautilus-script X@dirrm share/gnome/rubrica X@dirrm share/gnome/pixmaps/rubrica X@dirrm share/gnome/doc/rubrica END-of-rubrica/pkg-plist exit --- rubrica.sh ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 2:50:16 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F098237B401 for ; Fri, 28 Feb 2003 02:50:12 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 65C1943FBF for ; Fri, 28 Feb 2003 02:50:11 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SAoBNS093515 for ; Fri, 28 Feb 2003 02:50:11 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SAoBZq093514; Fri, 28 Feb 2003 02:50:11 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 78D8637B401 for ; Fri, 28 Feb 2003 02:45:14 -0800 (PST) Received: from backup-mx.droso.dk (backup-mx.droso.dk [62.79.38.251]) by mx1.FreeBSD.org (Postfix) with ESMTP id 61F4E43FBD for ; Fri, 28 Feb 2003 02:45:13 -0800 (PST) (envelope-from erwin@backup-mx.droso.dk) Received: by backup-mx.droso.dk (Postfix, from userid 1000) id 78A12AB34; Fri, 28 Feb 2003 11:45:10 +0100 (CET) Message-Id: <20030228104510.78A12AB34@backup-mx.droso.dk> Date: Fri, 28 Feb 2003 11:45:10 +0100 (CET) From: Erwin Lansing Reply-To: Erwin Lansing To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48769: maintainer-update devel/p5-ResourcePool to 1.0100 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48769 >Category: ports >Synopsis: maintainer-update devel/p5-ResourcePool to 1.0100 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 02:50:10 PST 2003 >Closed-Date: >Last-Modified: >Originator: Erwin Lansing >Release: FreeBSD 4.7-STABLE i386 >Organization: pil.dk >Environment: System: FreeBSD panda.droso.net 4.7-STABLE FreeBSD 4.7-STABLE #14: Sun Feb 16 11:42:13 CET 2003 root@panda.droso.net:/usr/obj/usr/src/sys/PANDA i386 >Description: Vendor update: * This release introduces a new way to use ResourcePool and LoadBalancer. It implements the Command design pattern as described in the GOF Design Patterns book. This release is a preview, the features are not yet fully implemented and might therefore not sufficient for you needs right now. >How-To-Repeat: >Fix: --- p5-ResourcePool.diff begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-ResourcePool/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- Makefile 12 Feb 2003 22:54:36 -0000 1.5 +++ Makefile 28 Feb 2003 10:42:24 -0000 @@ -7,7 +7,7 @@ # PORTNAME= ResourcePool -PORTVERSION= 1.0000 +PORTVERSION= 1.0100 CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} \ http://www.fatalmind.com/projects/ResourcePool/ @@ -25,6 +25,10 @@ MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} MAN3= ResourcePool.3 \ ResourcePool::BigPicture.3 \ + ResourcePool::Command.3 \ + ResourcePool::Command::Exception.3 \ + ResourcePool::Command::Execute.3 \ + ResourcePool::Command::NoFailoverException.3 \ ResourcePool::ExtensionGuide.3 \ ResourcePool::Factory.3 \ ResourcePool::LoadBalancer.3 \ Index: distinfo =================================================================== RCS file: /home/ncvs/ports/devel/p5-ResourcePool/distinfo,v retrieving revision 1.3 diff -u -r1.3 distinfo --- distinfo 12 Feb 2003 22:54:36 -0000 1.3 +++ distinfo 28 Feb 2003 10:42:24 -0000 @@ -1 +1 @@ -MD5 (ResourcePool-1.0000.tar.gz) = 08ca6f1889a9b7234d95033b5c9a06e9 +MD5 (ResourcePool-1.0100.tar.gz) = 5444c4a70702081a2acdba590d74ffdc Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/devel/p5-ResourcePool/pkg-plist,v retrieving revision 1.3 diff -u -r1.3 pkg-plist --- pkg-plist 12 Feb 2003 22:54:36 -0000 1.3 +++ pkg-plist 28 Feb 2003 10:42:24 -0000 @@ -1,6 +1,14 @@ lib/perl5/site_perl/%%PERL_VER%%/ResourcePool.pm lib/perl5/site_perl/%%PERL_VER%%/ResourcePool.pod lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/BigPicture.pod +lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Command.pm +lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Command/Execute.pm +lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Command/Exception.pod +lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Command/Execute.pod +lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Command/NoFailoverException.pm +lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Command/NoFailoverException.pod +lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Command/Exception.pm +lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Command.pod lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/ExtensionGuide.pod lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Factory.pm lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Factory.pod @@ -14,6 +22,7 @@ lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Singleton.pm lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Singleton.pod lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/UML.pod +@dirrm lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Command @dirrm lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/LoadBalancer @dirrm lib/perl5/site_perl/%%PERL_VER%%/ResourcePool lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/ResourcePool/.packlist --- p5-ResourcePool.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 3: 0:23 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA55B37B405 for ; Fri, 28 Feb 2003 03:00:19 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7450643FA3 for ; Fri, 28 Feb 2003 03:00:17 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SB0GNS095558 for ; Fri, 28 Feb 2003 03:00:16 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SB0Gli095555; Fri, 28 Feb 2003 03:00:16 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 235DC37B401 for ; Fri, 28 Feb 2003 02:52:15 -0800 (PST) Received: from backup-mx.droso.dk (backup-mx.droso.dk [62.79.38.251]) by mx1.FreeBSD.org (Postfix) with ESMTP id 298A343F75 for ; Fri, 28 Feb 2003 02:52:14 -0800 (PST) (envelope-from erwin@backup-mx.droso.dk) Received: by backup-mx.droso.dk (Postfix, from userid 1000) id 447A9AB34; Fri, 28 Feb 2003 11:52:10 +0100 (CET) Message-Id: <20030228105210.447A9AB34@backup-mx.droso.dk> Date: Fri, 28 Feb 2003 11:52:10 +0100 (CET) From: Erwin Lansing Reply-To: Erwin Lansing To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48770: maintainer-update databases/p5-ResourcePool-DBI to 1.0100 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48770 >Category: ports >Synopsis: maintainer-update databases/p5-ResourcePool-DBI to 1.0100 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 03:00:16 PST 2003 >Closed-Date: >Last-Modified: >Originator: Erwin Lansing >Release: FreeBSD 4.7-STABLE i386 >Organization: pil.dk >Environment: System: FreeBSD panda.droso.net 4.7-STABLE FreeBSD 4.7-STABLE #14: Sun Feb 16 11:42:13 CET 2003 root@panda.droso.net:/usr/obj/usr/src/sys/PANDA i386 >Description: Vendor update to 1.0100: * The three commands Execute, Select and SelectRow have been added. This release is a preview, the features are not yet fully implemented and might therefore not sufficient for you needs right now. >How-To-Repeat: >Fix: --- p5-ResourcePool-DBI.diff begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/databases/p5-ResourcePool-Resource-DBI/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- Makefile 12 Feb 2003 23:32:20 -0000 1.1 +++ Makefile 28 Feb 2003 10:50:37 -0000 @@ -6,7 +6,7 @@ # PORTNAME= ResourcePool-Resource-DBI -PORTVERSION= 1.0000 +PORTVERSION= 1.0100 CATEGORIES= databases perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} \ http://www.fatalmind.com/projects/ResourcePool/ @@ -23,6 +23,8 @@ PERL_CONFIGURE= yes MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} -MAN3= ResourcePool::Resource::DBI.3 ResourcePool::Factory::DBI.3 +MAN3= ResourcePool::Resource::DBI.3 ResourcePool::Factory::DBI.3 \ + ResourcePool::Command::DBI::Execute.3 ResourcePool::Command::DBI::Select.3 \ + ResourcePool::Command::DBI::SelectRow.3 .include Index: distinfo =================================================================== RCS file: /home/ncvs/ports/databases/p5-ResourcePool-Resource-DBI/distinfo,v retrieving revision 1.1 diff -u -r1.1 distinfo --- distinfo 12 Feb 2003 23:32:20 -0000 1.1 +++ distinfo 28 Feb 2003 10:50:37 -0000 @@ -1 +1 @@ -MD5 (ResourcePool-Resource-DBI-1.0000.tar.gz) = 2d597b4d31cba5d5f6add29db0c63fca +MD5 (ResourcePool-Resource-DBI-1.0100.tar.gz) = 787574355cd371bfef947dcc7c063de7 Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/databases/p5-ResourcePool-Resource-DBI/pkg-plist,v retrieving revision 1.1 diff -u -r1.1 pkg-plist --- pkg-plist 12 Feb 2003 23:32:20 -0000 1.1 +++ pkg-plist 28 Feb 2003 10:50:37 -0000 @@ -1,8 +1,16 @@ lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/ResourcePool/Resource/DBI/.packlist +lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Command/DBI/Execute.pm +lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Command/DBI/SelectRow.pod +lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Command/DBI/Select.pod +lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Command/DBI/Select.pm +lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Command/DBI/SelectRow.pm +lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Command/DBI/Execute.pod +lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Command/DBI/Common.pm lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Resource/DBI.pm lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Resource/DBI.pod lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Factory/DBI.pm lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Factory/DBI.pod +@dirrm lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Command/DBI @dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/ResourcePool/Resource/DBI @unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/ResourcePool/Resource 2>/dev/null || true @unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Resource 2>/dev/null || true --- p5-ResourcePool-DBI.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 3:10:14 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B44C37B401 for ; Fri, 28 Feb 2003 03:10:11 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B7D043FB1 for ; Fri, 28 Feb 2003 03:10:09 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SBA9NS000978 for ; Fri, 28 Feb 2003 03:10:09 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SBA9At000977; Fri, 28 Feb 2003 03:10:09 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8993037B401 for ; Fri, 28 Feb 2003 03:00:32 -0800 (PST) Received: from raktas.net (raktas.net [213.226.152.18]) by mx1.FreeBSD.org (Postfix) with SMTP id B66AE43FBF for ; Fri, 28 Feb 2003 03:00:27 -0800 (PST) (envelope-from raktas@raktas.net) Received: (qmail 6697 invoked by uid 0); 28 Feb 2003 11:00:18 -0000 Received: from raktas@raktas.net by raktas.net by uid 1002 with qmail-scanner-1.15 (f-prot: 3.11. Clear:. Processed in 0.150655 secs); 28 Feb 2003 11:00:18 -0000 Received: from unknown (HELO justasl.lan) (192.168.0.67) by raktas.net with SMTP; 28 Feb 2003 11:00:17 -0000 Message-Id: <5994981255.20030228130013@raktas.net> Date: Fri, 28 Feb 2003 13:00:13 +0200 From: Justas Gurinavicius Reply-To: Justas Gurinavicius To: FreeBSD-gnats-submit@FreeBSD.org Cc: raktas@raktas.net Subject: ports/48771: Bug in audio/shout when using with SHOUTcast Server 1.9.2 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48771 >Category: ports >Synopsis: Bug in audio/shout when using with SHOUTcast Server 1.9.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 03:10:08 PST 2003 >Closed-Date: >Last-Modified: >Originator: Justas Gurinavicius >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: >Description: Shout is streaming client for icecast and shoutcast streaming servers. It works well with SHOUTcast Server Version 1.9.2/FreeBSD4 (with -i key (Use old icy headers)),But if you try to enable title streaming (-t key) (without it clients don't see what song is playing). There are two problems why it doesn't work: 1. By default shoutcast expects source stremer connection on 8001 port, and listeners on 8000 port. (steamer port is listener_port+1). Shout streams mp3 music on port 8001 (from config file or command line), but title streaming is done on listener port through web admin interface. (http://server:port//admin.cgi?pass=password&mode=updinfo&song=Song Title) Without patch shout tries to update info on streamer, and not listener port and this doesn't work. I attached patch which reduces port number by one, which is right (listener) port number. 2. With this fix shout connects to right port, but still doesn't update song title. From shoutcast documentation I've found that now shoutcast accepts update post (see above) only with useragent Mozilla ant shout gives useragent Shout/0.8.0. Allso a link to shout source is broken. I provided own link: http://www.raktas.net/~justas/shout/shout-0.8.0.tar.gz Please add it to MASTER_SITES. >How-To-Repeat: Install SHOUTcast Server Version 1.9.2/FreeBSD4 server ant shout-0.8.0. Use port 8001 to connect for mp3 streaming, use key -i (without it shout runs in icecast mode), and -t key for title streaming. Titles will note be updated without a patch. >Fix: For broken link: http://www.raktas.net/~justas/shout/shout-0.8.0.tar.gz Attached below. --- shout.diff begins here --- --- shout-0.8.0.orig/shout.c Thu Apr 20 09:31:50 2000 +++ shout-0.8.0/shout.c Thu Feb 27 15:47:37 2003 @@ -1738,7 +1738,7 @@ void update_meta_info_on_server (char *filename, unsigned long int size) { - sock_t sockfd = sock_connect (set.servername, set.port); + sock_t sockfd = sock_connect (set.servername, set.port-1); char title[BUFSIZE]; /* copy of filename */ char *song = NULL; char *mount = NULL; @@ -1815,7 +1815,7 @@ if (sockfd != -1) { if (set.use_icy) { - sock_write (sockfd, "GET /admin.cgi?pass=%s&mode=updinfo&song=%s HTTP/1.0\nHost: %s:%d\nUser-Agent: Shout/%s\n\n", set.password, url_encode (titleptr, &song), set.servername, set.port, VERSION); + sock_write (sockfd, "GET /admin.cgi?pass=%s&mode=updinfo&song=%s HTTP/1.0\nHost: %s:%d\nUser-Agent: Mozilla(Shout/%s)\n\n", set.password, url_encode (titleptr, &song), set.servername, set.port-1, VERSION); } else { sock_write (sockfd, "GET /admin.cgi?pass=%s&mode=updinfo&mount=%s&song=%s&length=%ld HTTP/1.0\nHost: %s:%d\nUser-Agent: Shout/%s\n\n", set.password, url_encode (set.mount_name, &mount), url_encode (titleptr, &song), size, set.servername, set.port, VERSION); if (mount) --- shout.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: >System: FreeBSD somehost 4.7-STABLE FreeBSD 4.7-STABLE #0: Wed Jan 29 02:46:55 EET 2003 raktas@somehost:/usr/obj/usr/src/sys/FAILAI i386 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 3:10:17 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F60037B406 for ; Fri, 28 Feb 2003 03:10:11 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F06CE43FD7 for ; Fri, 28 Feb 2003 03:10:09 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SBA9NS000991 for ; Fri, 28 Feb 2003 03:10:09 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SBA9x5000990; Fri, 28 Feb 2003 03:10:09 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36CF937B401 for ; Fri, 28 Feb 2003 03:02:13 -0800 (PST) Received: from freebsd.org.ru (freebsd.org.ru [194.84.67.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 899F343F3F for ; Fri, 28 Feb 2003 03:02:12 -0800 (PST) (envelope-from osa@freebsd.org.ru) Received: by freebsd.org.ru (Postfix, from userid 1000) id 3BF09163; Fri, 28 Feb 2003 14:02:10 +0300 (MSK) Message-Id: <20030228110210.3BF09163@freebsd.org.ru> Date: Fri, 28 Feb 2003 14:02:10 +0300 (MSK) From: "Sergey A.Osokin" Reply-To: "Sergey A.Osokin" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48772: [PATCH] security/vlock: fix build under FreeBSD 5.0 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48772 >Category: ports >Synopsis: [PATCH] security/vlock: fix build under FreeBSD 5.0 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 03:10:09 PST 2003 >Closed-Date: >Last-Modified: >Originator: Sergey A. Osokin >Release: FreeBSD 4.8-PRERELEASE i386 >Organization: n/a >Environment: System: FreeBSD 4.8-PRERELEASE i386 >Description: security/vlock: fix build under FreeBSD 5.0 I can't find information about correct number of __FreeBSD_version, but look at http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/sys/param.h.diff?r1=1.113&r2=1.114&only_with_tag=MAIN&f=h and time of Initial revision of http://www.freebsd.org/cgi/cvsweb.cgi/src/contrib/openpam/INSTALL Special thanks for maxim@ >How-To-Repeat: under 5.0 and later $ cd ports/security/vlock && make >Fix: Index: ports/security/vlock/files/patch-ae =================================================================== RCS file: /home/ncvs/ports/security/vlock/files/patch-ae,v retrieving revision 1.1 diff -u -r1.1 patch-ae --- ports/security/vlock/files/patch-ae 22 Oct 2000 15:36:25 -0000 1.1 +++ ports/security/vlock/files/patch-ae 28 Feb 2003 10:56:58 -0000 @@ -1,6 +1,34 @@ ---- input.c.orig Wed Jan 13 16:19:14 1999 -+++ input.c Sun Oct 22 08:22:42 2000 -@@ -291,7 +291,7 @@ +--- input.c.orig Thu Jan 14 03:19:14 1999 ++++ input.c Fri Feb 28 13:48:38 2003 +@@ -60,11 +60,27 @@ + #error "Shadow and PAM don't mix!" + #endif + ++#if (__FreeBSD__ == 0) /* 1.0 did not define __FreeBSD__ */ ++#define __FreeBSD_version 199401 ++#elsif __FreeBSD__ == 1 /* 1.1 defined it to be 1 */ ++#define __FreeBSD_version 199405 ++#else /* 2.0 and higher define it to be 2 */ ++#include /* and this works */ ++#endif ++ + #include ++#if defined (__FreeBSD_version) && (__FreeBSD_version > 500030) ++#include ++#else + #include ++#endif + + static struct pam_conv PAM_conversation = { ++#if defined (__FreeBSD_version) && (__FreeBSD_version > 500030) ++ openpam_ttyconv, ++#else + &misc_conv, ++#endif + NULL + }; + +@@ -291,7 +307,7 @@ setuid(getuid()); setgid(getgid()); >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 4: 0:33 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2166737B401 for ; Fri, 28 Feb 2003 04:00:29 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7802043FE0 for ; Fri, 28 Feb 2003 04:00:27 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SC0RNS011410 for ; Fri, 28 Feb 2003 04:00:27 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SC0RH3011399; Fri, 28 Feb 2003 04:00:27 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 58FA637B401 for ; Fri, 28 Feb 2003 03:54:24 -0800 (PST) Received: from lemur.droso.net (lemur.droso.net [62.79.38.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B9CF43FAF for ; Fri, 28 Feb 2003 03:54:23 -0800 (PST) (envelope-from erwin@lemur.droso.net) Received: from lemur.droso.net (lemur.droso.net [62.79.38.253]) by lemur.droso.net (8.12.7/8.12.7) with ESMTP id h1SBsKGQ008729 for ; Fri, 28 Feb 2003 12:54:20 +0100 (CET) (envelope-from erwin@lemur.droso.net) Received: (from root@localhost) by lemur.droso.net (8.12.7/8.12.7/Submit) id h1SBsIS3008728; Fri, 28 Feb 2003 12:54:18 +0100 (CET) Message-Id: <200302281154.h1SBsIS3008728@lemur.droso.net> Date: Fri, 28 Feb 2003 12:54:18 +0100 (CET) From: Erwin Lansing Reply-To: Erwin Lansing To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48773: new port: net/p5-ResourcePool-Resource-SOAP-Lite Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48773 >Category: ports >Synopsis: new port: net/p5-ResourcePool-Resource-SOAP-Lite >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 04:00:26 PST 2003 >Closed-Date: >Last-Modified: >Originator: Erwin Lansing >Release: FreeBSD 4.7-STABLE i386 >Organization: pil.dk >Environment: System: FreeBSD lemur.droso.net 4.7-STABLE FreeBSD 4.7-STABLE #14: Sun Feb 16 11:42:13 CET 2003 root@panda.droso.net:/usr/obj/usr/src/sys/PANDA i386 >Description: A ResourcePool wrapper for SOAP::Lite >How-To-Repeat: >Fix: --- p5-ResourcePool-Resource-SOAP-Lite.sh begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-ResourcePool-Resource-SOAP-Lite/ # p5-ResourcePool-Resource-SOAP-Lite/Makefile # p5-ResourcePool-Resource-SOAP-Lite/distinfo # p5-ResourcePool-Resource-SOAP-Lite/pkg-descr # p5-ResourcePool-Resource-SOAP-Lite/pkg-plist # p5-ResourcePool-Resource-SOAP-Lite/files # p5-ResourcePool-Resource-SOAP-Lite/files/patch-Makefile.PL # echo c - p5-ResourcePool-Resource-SOAP-Lite/ mkdir -p p5-ResourcePool-Resource-SOAP-Lite/ > /dev/null 2>&1 echo x - p5-ResourcePool-Resource-SOAP-Lite/Makefile sed 's/^X//' >p5-ResourcePool-Resource-SOAP-Lite/Makefile << 'END-of-p5-ResourcePool-Resource-SOAP-Lite/Makefile' X# New ports collection makefile for: p5-ResourcePool-Resourse-SOAP-Lite X# Date created: February 28th, 2003 X# Whom: Erwin Lansing X# X# $FreeBSD$ X# X XPORTNAME= ResourcePool-Resource-SOAP-Lite XPORTVERSION= 1.0100 XCATEGORIES= net perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} \ X http://www.fatalmind.com/projects/ResourcePool/ XMASTER_SITE_SUBDIR= ../by-authors/id/M/MW/MWS XPKGNAMEPREFIX= p5- X XMAINTAINER= erwin@lansing.dk XCOMMENT= A ResourcePool wrapper for SOAP::Lite X XBUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/ResourcePool.pm:${PORTSDIR}/devel/p5-ResourcePool \ X ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/SOAP/Lite.pm:${PORTSDIR}/net/p5-SOAP-Lite XRUN_DEPENDS= ${BUILD_DEPENDS} X XPERL_CONFIGURE= yes X XMANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} XMAN3= ResourcePool::Factory::SOAP::Lite.3 \ X ResourcePool::Command::SOAP::Lite::Call.3 X X.include END-of-p5-ResourcePool-Resource-SOAP-Lite/Makefile echo x - p5-ResourcePool-Resource-SOAP-Lite/distinfo sed 's/^X//' >p5-ResourcePool-Resource-SOAP-Lite/distinfo << 'END-of-p5-ResourcePool-Resource-SOAP-Lite/distinfo' XMD5 (ResourcePool-Resource-SOAP-Lite-1.0100.tar.gz) = 2a1376b42bd8692c433d61ad3b5b0eca END-of-p5-ResourcePool-Resource-SOAP-Lite/distinfo echo x - p5-ResourcePool-Resource-SOAP-Lite/pkg-descr sed 's/^X//' >p5-ResourcePool-Resource-SOAP-Lite/pkg-descr << 'END-of-p5-ResourcePool-Resource-SOAP-Lite/pkg-descr' XThis factory can be used by ResourcePool to create XSOAP::Lite objects which use the specified proxy Xfor SOAP RPC invocations. X XWWW: http://www.fatalmind.com/projects/ResourcePool/ END-of-p5-ResourcePool-Resource-SOAP-Lite/pkg-descr echo x - p5-ResourcePool-Resource-SOAP-Lite/pkg-plist sed 's/^X//' >p5-ResourcePool-Resource-SOAP-Lite/pkg-plist << 'END-of-p5-ResourcePool-Resource-SOAP-Lite/pkg-plist' Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/ResourcePool/Resource/SOAP/Lite/.packlist Xlib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Command/SOAP/Lite/Call.pod Xlib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Command/SOAP/Lite/Call.pm Xlib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Resource/SOAP/Lite.pm Xlib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Factory/SOAP/Lite.pm Xlib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Factory/SOAP/Lite.pod X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/ResourcePool/Resource/SOAP/Lite X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/ResourcePool/Resource/SOAP X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/ResourcePool/Resource 2>/dev/null || true X@dirrm lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Command/SOAP/Lite X@dirrm lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Command/SOAP X@dirrm lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Resource/SOAP X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Resource 2>/dev/null || true X@dirrm lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Factory/SOAP X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/ResourcePool/Factory 2>/dev/null || true END-of-p5-ResourcePool-Resource-SOAP-Lite/pkg-plist echo c - p5-ResourcePool-Resource-SOAP-Lite/files mkdir -p p5-ResourcePool-Resource-SOAP-Lite/files > /dev/null 2>&1 echo x - p5-ResourcePool-Resource-SOAP-Lite/files/patch-Makefile.PL sed 's/^X//' >p5-ResourcePool-Resource-SOAP-Lite/files/patch-Makefile.PL << 'END-of-p5-ResourcePool-Resource-SOAP-Lite/files/patch-Makefile.PL' X--- Makefile.PL.orig Sat Feb 22 21:33:53 2003 X+++ Makefile.PL Fri Feb 28 12:43:54 2003 X@@ -21,11 +21,4 @@ X $opts{AUTHOR} = 'Markus Winand '; X } X X-my $onlinetests = ExtUtils::MakeMaker::prompt(' X-During "make test" phase we may run tests against a SOAP server located X-at the authors website. X- X-Do you want to perform these tests in addition to core tests?', 'yes') =~ /^\s*(y)/i; X- X-$opts{test} = {TESTS => join(' ', glob($onlinetests ? 't/*.t' : 't/[0-3]*.t'))}; X WriteMakefile(%opts); END-of-p5-ResourcePool-Resource-SOAP-Lite/files/patch-Makefile.PL exit --- p5-ResourcePool-Resource-SOAP-Lite.sh ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 4:30:22 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA7B937B401 for ; Fri, 28 Feb 2003 04:30:17 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C058E43FBF for ; Fri, 28 Feb 2003 04:30:16 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SCUGNS024306 for ; Fri, 28 Feb 2003 04:30:16 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SCUG8D024305; Fri, 28 Feb 2003 04:30:16 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 21D0337B401 for ; Fri, 28 Feb 2003 04:21:54 -0800 (PST) Received: from arthur.cs.uni-magdeburg.de (arthur.cs.uni-magdeburg.de [141.44.27.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id 50AF143FB1 for ; Fri, 28 Feb 2003 04:21:53 -0800 (PST) (envelope-from jesse@arthur.cs.uni-magdeburg.de) Received: from arthur.cs.uni-magdeburg.de (localhost [127.0.0.1]) by arthur.cs.uni-magdeburg.de (8.12.7/8.12.7) with ESMTP id h1SCLtUv056023 for ; Fri, 28 Feb 2003 13:21:55 +0100 (CET) (envelope-from jesse@arthur.cs.uni-magdeburg.de) Received: (from jesse@localhost) by arthur.cs.uni-magdeburg.de (8.12.7/8.12.7/Submit) id h1SCLsRn056022; Fri, 28 Feb 2003 13:21:54 +0100 (MET) Message-Id: <200302281221.h1SCLsRn056022@arthur.cs.uni-magdeburg.de> Date: Fri, 28 Feb 2003 13:21:54 +0100 (MET) From: Roland Jesse Reply-To: Roland Jesse To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48776: new port x11-toolkits/SoXt Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48776 >Category: ports >Synopsis: new port x11-toolkits/SoXt >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 04:30:16 PST 2003 >Closed-Date: >Last-Modified: >Originator: Roland Jesse >Release: FreeBSD 4.8-PRERELEASE i386 >Organization: Private >Environment: System: FreeBSD 4.8-PRERELEASE #11: Thu Feb 27 13:04:22 CET 2003 i386 >Description: This is a port of SoXt which is a toolkit for using Open Inventor (or Coin as a free Open Inventor implementation) in Motif applications. >How-To-Repeat: n/a >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # SoXt # SoXt/Makefile # SoXt/distinfo # SoXt/pkg-descr # SoXt/pkg-plist # echo c - SoXt mkdir -p SoXt > /dev/null 2>&1 echo x - SoXt/Makefile sed 's/^X//' >SoXt/Makefile << 'END-of-SoXt/Makefile' X# New ports collection makefile for: SoXt X# Date created: 28 February 2003 X# Whom: roland.jesse@gmx.net X# X# $FreeBSD$ X# X XPORTNAME= SoXt XPORTVERSION= 20021107 XCATEGORIES= x11-toolkits XMASTER_SITES= ftp://ftp.coin3d.org/pub/coin/src/snapshots/ X XMAINTAINER= roland.jesse@gmx.net XCOMMENT= GUI binding for using Open Inventor with Xt/Motif X XLIB_DEPENDS+= Coin.20:${PORTSDIR}/graphics/Coin X XWRKSRC= ${WRKDIR}/SoXt XUSE_MESA= yes XUSE_MOTIF= yes XUSE_X_PREFIX= yes XUSE_LIBTOOL= yes XCONFIGURE_ENV+= CXXFLAGS="-pthread" XCONFIGURE_ARGS+= --prefix=${X11BASE} --with-pthread=yes --with-coin=${X11BASE} XINSTALLS_SHLIB= yes XMAN1= soxt-config.1 XMANCOMPRESSED= yes X Xpost-install: X ${MV} ${PREFIX}/bin/${MACHINE_ARCH}-portbld-freebsd${OSREL}-soxt-config ${PREFIX}/bin/soxt-config X ${MV} ${PREFIX}/man/man1/${MACHINE_ARCH}-portbld-freebsd${OSREL}-soxt-config.1 ${PREFIX}/man/man1/soxt-config.1 X X.include END-of-SoXt/Makefile echo x - SoXt/distinfo sed 's/^X//' >SoXt/distinfo << 'END-of-SoXt/distinfo' XMD5 (SoXt-20021107.tar.gz) = 641db35b024b9f82a471b7350f66cf88 END-of-SoXt/distinfo echo x - SoXt/pkg-descr sed 's/^X//' >SoXt/pkg-descr << 'END-of-SoXt/pkg-descr' XFrom the README: X XSoXt is an open source implementation of the SGI InventorXt library, which Xis a GUI binding for using Open Inventor with Xt/Motif. While SoXt has Xbeen developed for use with Coin, it is also possible to compile it against XOpen Inventor from SGI or TGS. A goal is to eventually become 100% source Xcode compatible with the InventorXt library, which is still way off, Xespecially when it comes to creating derived classes. X XWhen using SoXt, bear in mind that SoXt is in its alpha release phase, Xso expect the worst... X XWWW: http://www.coin3d.org/ END-of-SoXt/pkg-descr echo x - SoXt/pkg-plist sed 's/^X//' >SoXt/pkg-plist << 'END-of-SoXt/pkg-plist' Xbin/soxt-config Xinclude/Inventor/Xt/devices/SoXtDevice.h Xinclude/Inventor/Xt/devices/SoXtKeyboard.h Xinclude/Inventor/Xt/devices/SoXtMouse.h Xinclude/Inventor/Xt/devices/SoXtSpaceball.h Xinclude/Inventor/Xt/devices/SoXtLinuxJoystick.h Xinclude/Inventor/Xt/widgets/SoXtPopupMenu.h Xinclude/Inventor/Xt/viewers/SoXtViewer.h Xinclude/Inventor/Xt/viewers/SoXtConstrainedViewer.h Xinclude/Inventor/Xt/viewers/SoXtFullViewer.h Xinclude/Inventor/Xt/viewers/SoXtExaminerViewer.h Xinclude/Inventor/Xt/viewers/SoXtFlyViewer.h Xinclude/Inventor/Xt/viewers/SoXtPlaneViewer.h Xinclude/Inventor/Xt/SoXtResource.h Xinclude/Inventor/Xt/SoXt.h Xinclude/Inventor/Xt/SoXtBasic.h Xinclude/Inventor/Xt/SoXtObject.h Xinclude/Inventor/Xt/SoXtCursor.h Xinclude/Inventor/Xt/SoXtComponent.h Xinclude/Inventor/Xt/SoXtGLWidget.h Xinclude/Inventor/Xt/SoXtRenderArea.h Xlib/libSoXt.so.0 Xlib/libSoXt.so Xlib/libSoXt.la Xshare/aclocal/soxt.m4 Xshare/Coin/conf/soxt-default.cfg X@dirrm include/Inventor/Xt/devices X@dirrm include/Inventor/Xt/viewers X@dirrm include/Inventor/Xt/widgets X@dirrm include/Inventor/Xt X@dirrm share/Coin/conf X@dirrm share/Coin X@dirrm share END-of-SoXt/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 4:58:34 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B102037B401; Fri, 28 Feb 2003 04:58:33 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4FCC743F85; Fri, 28 Feb 2003 04:58:33 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from freefall.freebsd.org (naddy@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SCwXNS030216; Fri, 28 Feb 2003 04:58:33 -0800 (PST) (envelope-from naddy@freefall.freebsd.org) Received: (from naddy@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SCwWnp030212; Fri, 28 Feb 2003 04:58:32 -0800 (PST) Date: Fri, 28 Feb 2003 04:58:32 -0800 (PST) From: Christian Weisgerber Message-Id: <200302281258.h1SCwWnp030212@freefall.freebsd.org> To: ck@cksoft.de, naddy@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48647: Update openldap21 to version 2.1.13 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update openldap21 to version 2.1.13 State-Changed-From-To: open->closed State-Changed-By: naddy State-Changed-When: Fri Feb 28 04:58:01 PST 2003 State-Changed-Why: Close at submitter's request. http://www.freebsd.org/cgi/query-pr.cgi?pr=48647 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 5: 0:32 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A0B137B408 for ; Fri, 28 Feb 2003 05:00:30 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14FC643F93 for ; Fri, 28 Feb 2003 05:00:28 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SD0RNS030266 for ; Fri, 28 Feb 2003 05:00:27 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SD0REN030265; Fri, 28 Feb 2003 05:00:27 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 454D337B401; Fri, 28 Feb 2003 04:54:52 -0800 (PST) Received: from atlas.informatik.rwth-aachen.de (atlas.Informatik.RWTH-Aachen.DE [137.226.194.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5D7943FDD; Fri, 28 Feb 2003 04:54:50 -0800 (PST) (envelope-from stolz@i2.informatik.rwth-aachen.de) Received: from menelaos.informatik.rwth-aachen.de (menelaos.Informatik.RWTH-Aachen.DE [137.226.194.73]) by atlas.informatik.rwth-aachen.de (8.11.3/8.11.3/SuSE Linux 8.11.1-0.5) with ESMTP id h1SCsoW05524; Fri, 28 Feb 2003 13:54:50 +0100 Received: (from stolz@localhost) by menelaos.informatik.rwth-aachen.de (8.12.6/8.12.6/Submit) id h1SCtrXt008782; Fri, 28 Feb 2003 13:55:53 +0100 (CET) (envelope-from stolz) Message-Id: <200302281255.h1SCtrXt008782@menelaos.informatik.rwth-aachen.de> Date: Fri, 28 Feb 2003 13:55:53 +0100 (CET) From: Volker Stolz Reply-To: Volker Stolz To: FreeBSD-gnats-submit@FreeBSD.org Cc: kris@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48778: [patch] Update converters/dumpasn1 to 20030222 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48778 >Category: ports >Synopsis: [patch] Update converters/dumpasn1 to 20030222 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 05:00:27 PST 2003 >Closed-Date: >Last-Modified: >Originator: Volker Stolz >Release: FreeBSD 4.7-STABLE i386 >Organization: Lehrstuhl für Informatik II >Environment: System: FreeBSD menelaos.informatik.rwth-aachen.de 4.7-STABLE FreeBSD 4.7-STABLE #2: Fri Feb 7 12:48:00 CET 2003 root@menelaos.informatik.rwth-aachen.de:/usr/src/sys/compile/MENELAOS i386 >Description: Bento noticed the update. >How-To-Repeat: >Fix: Committer: Retire pkg-comment --- dumpasn1 begins here --- --- Makefile.orig Fri Feb 28 10:52:15 2003 +++ Makefile Fri Feb 28 10:54:32 2003 @@ -6,7 +6,7 @@ # PORTNAME= dumpasn1 -PORTVERSION= 20021118 +PORTVERSION= 20030222 CATEGORIES= converters security MASTER_SITES= http://www.cs.auckland.ac.nz/~pgut001/ DISTFILES= dumpasn1.c dumpasn1.cfg @@ -14,6 +14,7 @@ EXTRACT_ONLY= MAINTAINER= kris@FreeBSD.org +COMMENT= Dumps the contents of an ASN.1 encoded file, e.g. an SSL certificate .include --- distinfo.orig Fri Feb 28 10:52:20 2003 +++ distinfo Fri Feb 28 10:53:31 2003 @@ -1,2 +1,2 @@ -MD5 (dumpasn1-20021118/dumpasn1.c) = 454763d5616b95dca5280c7651bd74ac -MD5 (dumpasn1-20021118/dumpasn1.cfg) = 1b888e4a1eb3df3eff0c0eae9da521ac +MD5 (dumpasn1-20030222/dumpasn1.c) = fb4aab1f9c5153cb50bdac031086da50 +MD5 (dumpasn1-20030222/dumpasn1.cfg) = e0469908e15de921909a844b0f6fa5f5 --- dumpasn1 ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 5: 0:39 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4700D37B409 for ; Fri, 28 Feb 2003 05:00:30 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B44C43FB1 for ; Fri, 28 Feb 2003 05:00:28 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SD0SNS030279 for ; Fri, 28 Feb 2003 05:00:28 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SD0SoR030278; Fri, 28 Feb 2003 05:00:28 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7583D37B401 for ; Fri, 28 Feb 2003 04:55:25 -0800 (PST) Received: from utopia.leeym.com (utopia.leeym.com [61.218.64.93]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BBB543FDF for ; Fri, 28 Feb 2003 04:55:24 -0800 (PST) (envelope-from leeym@utopia.leeym.com) Received: from localhost (localhost [127.0.0.1]) by utopia.leeym.com (Postfix) with ESMTP id 3407C3E9E6E for ; Fri, 28 Feb 2003 20:55:23 +0800 (CST) Received: by utopia.leeym.com (Postfix, from userid 1000) id CC71D3E9E6D; Fri, 28 Feb 2003 20:55:20 +0800 (CST) Message-Id: <20030228125520.CC71D3E9E6D@utopia.leeym.com> Date: Fri, 28 Feb 2003 20:55:20 +0800 (CST) From: Yen-Ming Lee Reply-To: Yen-Ming Lee To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48779: update port: mail/p5-Mail-SpamAssassin-snapshot Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48779 >Category: ports >Synopsis: update port: mail/p5-Mail-SpamAssassin-snapshot >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 05:00:28 PST 2003 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 5.0-RELEASE-p1 i386 >Organization: >Environment: System: FreeBSD utopia.leeym.com 5.0-RELEASE-p1 FreeBSD 5.0-RELEASE-p1 #16: Thu Feb 6 06:27:39 CST 2003 root@utopia.leeym.com:/mnt/obj/usr/src/sys/UTOPIA i386 >Description: update to p5-Mail-SpamAssassin-snapshot-2.51 - unbreak port - use SITE_PERL - depends on PodParer only if perl < 5.6 - update manpages - sort pkg-plist NOTE: please keep the version of p5-Mail-SpamAssassin[-snapshot] different, otherwise INDEX will build failed with duplicate entries. >How-To-Repeat: >Fix: --- p5-Mail-SpamAssassin-snapshot.diff begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/mail/p5-Mail-SpamAssassin-snapshot/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- Makefile 21 Feb 2003 09:18:18 -0000 1.4 +++ Makefile 28 Feb 2003 12:50:35 -0000 @@ -6,8 +6,7 @@ # PORTNAME= Mail-SpamAssassin -PORTVERSION= 2.50 -PORTREVISION= 1 +PORTVERSION= 2.51 CATEGORIES= mail perl5 MASTER_SITES= http://spamassassin.org/devel/ \ ${MASTER_SITE_PERL_CPAN} @@ -16,18 +15,21 @@ MAINTAINER= DougB@FreeBSD.org -BROKEN= "mail/p5-Mail-SpamAssassin has been updated to 2.50" - -BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Net/DNS.pm:${PORTSDIR}/net/p5-Net-DNS \ - ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/HTML/Parser.pm:${PORTSDIR}/www/p5-HTML-Parser \ - ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Mail/Internet.pm:${PORTSDIR}/mail/p5-Mail-Tools +BUILD_DEPENDS= ${SITE_PERL}/Net/DNS.pm:${PORTSDIR}/net/p5-Net-DNS \ + ${SITE_PERL}/${PERL_ARCH}/HTML/Parser.pm:${PORTSDIR}/www/p5-HTML-Parser \ + ${SITE_PERL}/Mail/Internet.pm:${PORTSDIR}/mail/p5-Mail-Tools RUN_DEPENDS= ${BUILD_DEPENDS} \ - ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/MIME/Base64.pm:${PORTSDIR}/converters/p5-MIME-Base64 \ + ${SITE_PERL}/${PERL_ARCH}/MIME/Base64.pm:${PORTSDIR}/converters/p5-MIME-Base64 \ razor-client:${PORTSDIR}/mail/razor-agents -PODPARSER= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Pod/Usage.pm:${PORTSDIR}/textproc/p5-PodParser +.include + +.if ${PERL_LEVEL} < 500600 +PODPARSER= ${SITE_PERL}/Pod/Usage.pm:${PORTSDIR}/textproc/p5-PodParser RUN_DEPENDS+= ${PODPARSER} BUILD_DEPENDS+= ${PODPARSER} +.endif + NO_LATEST_LINK= yes PERL_CONFIGURE= yes @@ -41,8 +43,7 @@ Mail::SpamAssassin::PerMsgLearner.3 \ Mail::SpamAssassin::Bayes.3 MAN1PREFIX= ${PREFIX} -MAN1= spamd.1 spamassassin.1 spamc.1 sa-learn-nonspam.1 \ - sa-learn-spam.1 sa-learn-rebuild.1 sa-forget.1 +MAN1= spamd.1 spamassassin.1 spamc.1 sa-learn.1 DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME} EXAMPLESDIR= ${PREFIX}/share/examples//${PKGNAMEPREFIX}${PORTNAME} @@ -66,4 +67,4 @@ spamd/README* sql/spamassassin.sql ${DOCSDIR} .endif -.include +.include Index: distinfo =================================================================== RCS file: /home/ncvs/ports/mail/p5-Mail-SpamAssassin-snapshot/distinfo,v retrieving revision 1.2 diff -u -r1.2 distinfo --- distinfo 30 Jan 2003 11:07:43 -0000 1.2 +++ distinfo 28 Feb 2003 12:50:35 -0000 @@ -1 +1 @@ -MD5 (Mail-SpamAssassin-2.50.tar.gz) = b20ef9f7b8a965fcd2c262917accf478 +MD5 (Mail-SpamAssassin-2.51.tar.gz) = 7241011894dc6e47dcd1fdd215508d00 Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/mail/p5-Mail-SpamAssassin-snapshot/pkg-plist,v retrieving revision 1.2 diff -u -r1.2 pkg-plist --- pkg-plist 30 Jan 2003 11:07:43 -0000 1.2 +++ pkg-plist 28 Feb 2003 12:50:35 -0000 @@ -1,63 +1,53 @@ -bin/sa-learn-nonspam -bin/spamd -bin/sa-learn-rebuild -bin/sa-forget -bin/sa-learn-spam -bin/spamc +bin/sa-learn bin/spamassassin -etc/rc.d/spamd.sh-dist +bin/spamc +bin/spamd etc/mail/spamassassin/local.cf -@dirrm etc/mail/spamassassin -@dirrm etc/mail -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Mail/SpamAssassin/.packlist -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Mail/SpamAssassin -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Mail +etc/rc.d/spamd.sh-dist lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin.pm -lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/Util.pm -lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/Locker.pm -lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/UnixLocker.pm -lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/Win32Locker.pm -lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/Conf.pm -lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/Replier.pm +lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/ArchiveIterator.pm +lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/AuditMessage.pm +lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/AutoWhitelist.pm lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/Bayes.pm +lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/BayesStore.pm +lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/CmdLearn.pm +lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/Conf.pm lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/ConfSourceSQL.pm lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/DBBasedAddrList.pm -lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/PerMsgStatus.pm -lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/Reporter.pm -lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/SHA1.pm -lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/AuditMessage.pm +lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/Dns.pm +lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/EncappedMIME.pm +lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/EncappedMessage.pm +lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/EvalTests.pm lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/HTML.pm +lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/Locales.pm +lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/Locker.pm lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/MailingList.pm -lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/ArchiveIterator.pm -lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/CmdLearn.pm -lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/PerMsgLearner.pm -lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/EncappedMIME.pm -lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/BayesStore.pm +lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/Message.pm lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/NoMailAudit.pm -lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/AutoWhitelist.pm +lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/PerMsgLearner.pm +lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/PerMsgStatus.pm lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/PersistentAddrList.pm -lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/Dns.pm lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/PhraseFreqs.pm +lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/Replier.pm +lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/Reporter.pm +lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/SHA1.pm lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/TextCat.pm -lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/EncappedMessage.pm -lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/Message.pm -lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/EvalTests.pm -lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/Locales.pm -@dirrm lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Mail 2>/dev/null || true -%%PORTDOCS%%share/doc/p5-Mail-SpamAssassin/README.sql +lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/UnixLocker.pm +lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/Util.pm +lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin/Win32Locker.pm +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Mail/SpamAssassin/.packlist %%PORTDOCS%%share/doc/p5-Mail-SpamAssassin/BUGS %%PORTDOCS%%share/doc/p5-Mail-SpamAssassin/COPYRIGHT %%PORTDOCS%%share/doc/p5-Mail-SpamAssassin/Changes %%PORTDOCS%%share/doc/p5-Mail-SpamAssassin/README +%%PORTDOCS%%share/doc/p5-Mail-SpamAssassin/README.spamd +%%PORTDOCS%%share/doc/p5-Mail-SpamAssassin/README.spamd-vpopmail +%%PORTDOCS%%share/doc/p5-Mail-SpamAssassin/README.sql %%PORTDOCS%%share/doc/p5-Mail-SpamAssassin/TRADEMARK %%PORTDOCS%%share/doc/p5-Mail-SpamAssassin/procmailrc.example %%PORTDOCS%%share/doc/p5-Mail-SpamAssassin/sample-nonspam.txt %%PORTDOCS%%share/doc/p5-Mail-SpamAssassin/sample-spam.txt -%%PORTDOCS%%share/doc/p5-Mail-SpamAssassin/README.spamd -%%PORTDOCS%%share/doc/p5-Mail-SpamAssassin/README.spamd-vpopmail %%PORTDOCS%%share/doc/p5-Mail-SpamAssassin/spamassassin.sql -@dirrm %%PORTDOCS%%share/doc/p5-Mail-SpamAssassin share/spamassassin/10_misc.cf share/spamassassin/20_anti_ratware.cf share/spamassassin/20_body_tests.cf @@ -77,11 +67,17 @@ share/spamassassin/30_text_de.cf share/spamassassin/30_text_es.cf share/spamassassin/30_text_fr.cf +share/spamassassin/30_text_it.cf share/spamassassin/30_text_pl.cf -share/spamassassin/40_spam_phrases.cf share/spamassassin/50_scores.cf share/spamassassin/60_whitelist.cf -share/spamassassin/user_prefs.template -share/spamassassin/triplets.txt share/spamassassin/languages +share/spamassassin/triplets.txt +share/spamassassin/user_prefs.template @dirrm share/spamassassin +@dirrm share/doc/p5-Mail-SpamAssassin +@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Mail/SpamAssassin +@dirrm lib/perl5/site_perl/%%PERL_VER%%/Mail/SpamAssassin +@unexec /bin/rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Mail 2> /dev/null || true +@dirrm etc/mail/spamassassin +@dirrm etc/mail --- p5-Mail-SpamAssassin-snapshot.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 5: 2:21 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 05AC237B401; Fri, 28 Feb 2003 05:02:21 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E33E43FA3; Fri, 28 Feb 2003 05:02:20 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from freefall.freebsd.org (naddy@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SD2KNS032144; Fri, 28 Feb 2003 05:02:20 -0800 (PST) (envelope-from naddy@freefall.freebsd.org) Received: (from naddy@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SD2KX6032140; Fri, 28 Feb 2003 05:02:20 -0800 (PST) Date: Fri, 28 Feb 2003 05:02:20 -0800 (PST) From: Christian Weisgerber Message-Id: <200302281302.h1SD2KX6032140@freefall.freebsd.org> To: fuyuki@hadaly.org, naddy@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48655: Update port: sysutils/rtty (distfiles survey) Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: sysutils/rtty (distfiles survey) State-Changed-From-To: open->closed State-Changed-By: naddy State-Changed-When: Fri Feb 28 05:02:06 PST 2003 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48655 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 5:20: 7 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C9BCB37B401 for ; Fri, 28 Feb 2003 05:20:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB29943FA3 for ; Fri, 28 Feb 2003 05:20:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SDK3NS037590 for ; Fri, 28 Feb 2003 05:20:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SDK33j037589; Fri, 28 Feb 2003 05:20:03 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C773637B401 for ; Fri, 28 Feb 2003 05:15:25 -0800 (PST) Received: from arthur.cs.uni-magdeburg.de (arthur.cs.uni-magdeburg.de [141.44.27.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1EA943F93 for ; Fri, 28 Feb 2003 05:15:24 -0800 (PST) (envelope-from jesse@arthur.cs.uni-magdeburg.de) Received: from arthur.cs.uni-magdeburg.de (localhost [127.0.0.1]) by arthur.cs.uni-magdeburg.de (8.12.7/8.12.7) with ESMTP id h1SDFRUv022617 for ; Fri, 28 Feb 2003 14:15:27 +0100 (CET) (envelope-from jesse@arthur.cs.uni-magdeburg.de) Received: (from jesse@localhost) by arthur.cs.uni-magdeburg.de (8.12.7/8.12.7/Submit) id h1SDFQ5Z022616; Fri, 28 Feb 2003 14:15:26 +0100 (MET) Message-Id: <200302281315.h1SDFQ5Z022616@arthur.cs.uni-magdeburg.de> Date: Fri, 28 Feb 2003 14:15:26 +0100 (MET) From: Roland Jesse Reply-To: Roland Jesse To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48780: Update devel/Coin to 1.0.4 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48780 >Category: ports >Synopsis: Update devel/Coin to 1.0.4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 05:20:03 PST 2003 >Closed-Date: >Last-Modified: >Originator: Roland Jesse >Release: FreeBSD 4.8-PRERELEASE i386 >Organization: Private >Environment: System: FreeBSD 4.8-PRERELEASE #11: Thu Feb 27 13:04:22 CET 2003 i386 >Description: Update port devel/Coin to the latest and greatest version 1.0.4. No new file is introduced to CVS by this update. >How-To-Repeat: build and install devel/Coin. >Fix: diff -ruN Coin/Makefile Coin.new/Makefile --- Coin/Makefile Tue Feb 25 08:50:56 2003 +++ Coin.new/Makefile Fri Feb 28 14:02:00 2003 @@ -6,7 +6,7 @@ # PORTNAME= Coin -PORTVERSION= 1.0.3 +PORTVERSION= 1.0.4 CATEGORIES= graphics MASTER_SITES= ftp://ftp.coin3d.org/pub/coin/src/ @@ -28,5 +28,8 @@ post-patch: @${REINPLACE_CMD} -e 's|DATA install-data-local|DATA|g' ${WRKSRC}/Makefile.in + +post-install: + ${INSTALL_DATA} ${WRKSRC}/include/Inventor/misc/SoGLImage.h ${PREFIX}/include/Inventor/misc/ .include diff -ruN Coin/distinfo Coin.new/distinfo --- Coin/distinfo Mon Nov 18 14:49:17 2002 +++ Coin.new/distinfo Fri Feb 14 14:47:13 2003 @@ -1 +1 @@ -MD5 (Coin-1.0.3.tar.gz) = 3c1ca26343ece7d80894d6dcea891f7c +MD5 (Coin-1.0.4.tar.gz) = 758234f99d13d0901e582637da888a78 diff -ruN Coin/pkg-plist Coin.new/pkg-plist --- Coin/pkg-plist Mon Nov 18 14:49:17 2002 +++ Coin.new/pkg-plist Fri Feb 28 14:02:24 2003 @@ -286,6 +286,7 @@ include/Inventor/misc/SoByteStream.h include/Inventor/misc/SoCallbackList.h include/Inventor/misc/SoChildList.h +include/Inventor/misc/SoGLImage.h include/Inventor/misc/SoNormalGenerator.h include/Inventor/misc/SoNotification.h include/Inventor/misc/SoTranReceiver.h >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 5:22:14 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1B79037B401; Fri, 28 Feb 2003 05:22:14 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B3C3743FB1; Fri, 28 Feb 2003 05:22:13 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from freefall.freebsd.org (naddy@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SDMDNS039491; Fri, 28 Feb 2003 05:22:13 -0800 (PST) (envelope-from naddy@freefall.freebsd.org) Received: (from naddy@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SDMDUE039487; Fri, 28 Feb 2003 05:22:13 -0800 (PST) Date: Fri, 28 Feb 2003 05:22:13 -0800 (PST) From: Christian Weisgerber Message-Id: <200302281322.h1SDMDUE039487@freefall.freebsd.org> To: frerich.raabe@gmx.de, naddy@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48665: Update port: devel/distcc to version 1.2.1 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: devel/distcc to version 1.2.1 State-Changed-From-To: open->closed State-Changed-By: naddy State-Changed-When: Fri Feb 28 05:21:44 PST 2003 State-Changed-Why: Committed, thanks. I also fixed the CFLAGS handling. http://www.freebsd.org/cgi/query-pr.cgi?pr=48665 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 5:39:21 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32ADD37B401; Fri, 28 Feb 2003 05:39:21 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C84CF43FBD; Fri, 28 Feb 2003 05:39:20 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from freefall.freebsd.org (naddy@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SDdKNS041755; Fri, 28 Feb 2003 05:39:20 -0800 (PST) (envelope-from naddy@freefall.freebsd.org) Received: (from naddy@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SDdIW2041751; Fri, 28 Feb 2003 05:39:18 -0800 (PST) Date: Fri, 28 Feb 2003 05:39:18 -0800 (PST) From: Christian Weisgerber Message-Id: <200302281339.h1SDdIW2041751@freefall.freebsd.org> To: simon@comsys.ntu-kpi.kiev.ua, naddy@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48668: Maintainer update port sysutils/ipa 1.3 -> 1.3.1 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Maintainer update port sysutils/ipa 1.3 -> 1.3.1 State-Changed-From-To: open->closed State-Changed-By: naddy State-Changed-When: Fri Feb 28 05:39:04 PST 2003 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48668 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 5:52:16 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D43A537B401; Fri, 28 Feb 2003 05:52:15 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7702A43F3F; Fri, 28 Feb 2003 05:52:15 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (leeym@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SDqFNS051951; Fri, 28 Feb 2003 05:52:15 -0800 (PST) (envelope-from leeym@freefall.freebsd.org) Received: (from leeym@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SDqF5V051947; Fri, 28 Feb 2003 05:52:15 -0800 (PST) Date: Fri, 28 Feb 2003 05:52:15 -0800 (PST) From: Yen-Ming Lee Message-Id: <200302281352.h1SDqF5V051947@freefall.freebsd.org> To: leeym@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dougb@FreeBSD.org Subject: Re: ports/48779: update port: mail/p5-Mail-SpamAssassin-snapshot Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: update port: mail/p5-Mail-SpamAssassin-snapshot Responsible-Changed-From-To: freebsd-ports-bugs->dougb Responsible-Changed-By: leeym Responsible-Changed-When: Fri Feb 28 05:52:14 PST 2003 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=48779 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 6: 0:34 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76E0937B401 for ; Fri, 28 Feb 2003 06:00:31 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8180743F75 for ; Fri, 28 Feb 2003 06:00:30 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SE0UNS052051 for ; Fri, 28 Feb 2003 06:00:30 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SE0U5H052050; Fri, 28 Feb 2003 06:00:30 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 81CB737B401; Fri, 28 Feb 2003 05:53:52 -0800 (PST) Received: from helo.liwing.de (helo.liwing.de [213.70.188.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70D9443FA3; Fri, 28 Feb 2003 05:53:51 -0800 (PST) (envelope-from root@helo.liwing.de) Received: from helo.liwing.de (localhost.liwing.de [127.0.0.1]) by helo.liwing.de (8.12.7/8.12.7) with ESMTP id h1SDrn3F067851; Fri, 28 Feb 2003 13:53:49 GMT (envelope-from root@helo.liwing.de) Received: (from root@localhost) by helo.liwing.de (8.12.7/8.12.7/Submit) id h1SDrmVw067850; Fri, 28 Feb 2003 13:53:48 GMT Message-Id: <200302281353.h1SDrmVw067850@helo.liwing.de> Date: Fri, 28 Feb 2003 13:53:48 GMT From: Jens Rehsack Reply-To: Jens Rehsack To: FreeBSD-gnats-submit@FreeBSD.org Cc: Jens Rehsack , petef@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48781: PATCH for www/p5-CGI-Cache for working with Perl 5.6.1 (and FreeBSD-5.0!) Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48781 >Category: ports >Synopsis: PATCH for www/p5-CGI-Cache for working with Perl 5.6.1 (and FreeBSD-5.0!) >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 06:00:29 PST 2003 >Closed-Date: >Last-Modified: >Originator: Jens Rehsack >Release: FreeBSD 4.7-STABLE i386 >Organization: LiWing IT-Services >Environment: System: FreeBSD fozzie.muppets.liwing.de 4.7-STABLE FreeBSD 4.7-STABLE #0: Sun Feb 2 21:10:03 GMT 2003 root@fozzie.muppets.liwing.de:/usr/obj/usr/src/sys/FOZZIE i386 Not machine specific, but perl 5.6.1 or higher ;-) >Description: build dependent port devel/p5-File-Spec is for perl 5.6.0 or lower. Perl 5.6.1+ have it included in the "delivery state" >How-To-Repeat: (Re-)Install www/p5-CGI-Cache while having perl 5.6.1 installed and activated (use.perl ports) >Fix: --- patch-Makefile begins here --- --- www/p5-CGI-Cache/Makefile.orig Fri Feb 28 13:32:40 2003 +++ www/p5-CGI-Cache/Makefile Fri Feb 28 13:39:19 2003 @@ -15,15 +15,21 @@ MAINTAINER= petef@FreeBSD.org BUILD_DEPENDS= ${SITE_PERL}/File/Cache.pm:${PORTSDIR}/devel/p5-File-Cache \ - ${SITE_PERL}/File/Spec/Functions.pm:${PORTSDIR}/devel/p5-File-Spec \ ${SITE_PERL}/Cache/SizeAwareFileCache.pm:${PORTSDIR}/devel/p5-Cache-Cache \ ${SITE_PERL}/${PERL_ARCH}/Storable.pm:${PORTSDIR}/devel/p5-Storable + +.include + +.if ${PERL_LEVEL} <= 500600 +BUILD_DEPENDS+= ${SITE_PERL}/File/Spec/Functions.pm:${PORTSDIR}/devel/p5-File-Spec +.endif + RUN_DEPENDS= ${BUILD_DEPENDS} -SITE_PERL= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER} +SITE_PERL?= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER} PERL_CONFIGURE= yes MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} MAN3= CGI::Cache.3 -.include +.include --- patch-Makefile ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 6: 9:27 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE03C37B401; Fri, 28 Feb 2003 06:09:26 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E52143FAF; Fri, 28 Feb 2003 06:09:26 -0800 (PST) (envelope-from roam@FreeBSD.org) Received: from freefall.freebsd.org (roam@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SE9PNS059096; Fri, 28 Feb 2003 06:09:25 -0800 (PST) (envelope-from roam@freefall.freebsd.org) Received: (from roam@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SE9PHS059092; Fri, 28 Feb 2003 06:09:25 -0800 (PST) Date: Fri, 28 Feb 2003 06:09:25 -0800 (PST) From: Peter Pentchev Message-Id: <200302281409.h1SE9PHS059092@freefall.freebsd.org> To: tadalunch@sources.redhat.com, roam@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48353: www/g-gcl, converters/libutf-8, chinese/muni: URL fix (pkg-descr) Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: www/g-gcl, converters/libutf-8, chinese/muni: URL fix (pkg-descr) State-Changed-From-To: open->closed State-Changed-By: roam State-Changed-When: Fri Feb 28 06:07:29 PST 2003 State-Changed-Why: Updates committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48353 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 6:12:38 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0768337B401; Fri, 28 Feb 2003 06:12:38 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F65643FBF; Fri, 28 Feb 2003 06:12:37 -0800 (PST) (envelope-from roam@FreeBSD.org) Received: from freefall.freebsd.org (roam@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SECbNS061001; Fri, 28 Feb 2003 06:12:37 -0800 (PST) (envelope-from roam@freefall.freebsd.org) Received: (from roam@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SECb9B060997; Fri, 28 Feb 2003 06:12:37 -0800 (PST) Date: Fri, 28 Feb 2003 06:12:37 -0800 (PST) From: Peter Pentchev Message-Id: <200302281412.h1SECb9B060997@freefall.freebsd.org> To: roland.jesse@gmx.net, roam@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48374: Compress manual page in x11-toolkits/SoQt Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Compress manual page in x11-toolkits/SoQt State-Changed-From-To: open->feedback State-Changed-By: roam State-Changed-When: Fri Feb 28 06:11:14 PST 2003 State-Changed-Why: Errr.. which port is this update for? There does not seem to be a x11-toolkits/SoQt port in the tree, nor in the Attic directories of the CVS repository. http://www.freebsd.org/cgi/query-pr.cgi?pr=48374 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 6:15:33 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 583E137B401; Fri, 28 Feb 2003 06:15:32 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDFF343F93; Fri, 28 Feb 2003 06:15:31 -0800 (PST) (envelope-from roam@FreeBSD.org) Received: from freefall.freebsd.org (roam@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SEFVNS061143; Fri, 28 Feb 2003 06:15:31 -0800 (PST) (envelope-from roam@freefall.freebsd.org) Received: (from roam@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SEFVUL061139; Fri, 28 Feb 2003 06:15:31 -0800 (PST) Date: Fri, 28 Feb 2003 06:15:31 -0800 (PST) From: Peter Pentchev Message-Id: <200302281415.h1SEFVUL061139@freefall.freebsd.org> To: roam@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, flathill@FreeBSD.org Subject: Re: ports/48376: japanese/gicq, japanese/libicq, net/gicq, net/libicq: URL fix (pkg-descr) Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: japanese/gicq, japanese/libicq, net/gicq, net/libicq: URL fix (pkg-descr) Responsible-Changed-From-To: freebsd-ports-bugs->flathill Responsible-Changed-By: roam Responsible-Changed-When: Fri Feb 28 06:15:12 PST 2003 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=48376 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 6:20:13 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 271BE37B405 for ; Fri, 28 Feb 2003 06:20:11 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA4E743F85 for ; Fri, 28 Feb 2003 06:20:10 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SEK3NS061390 for ; Fri, 28 Feb 2003 06:20:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SEK2xJ061389; Fri, 28 Feb 2003 06:20:02 -0800 (PST) Date: Fri, 28 Feb 2003 06:20:02 -0800 (PST) Message-Id: <200302281420.h1SEK2xJ061389@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: ports/48375: devel/mingw-opengl-headers: URL fix (pkg-descr) Reply-To: Peter Pentchev Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48375; it has been noted by GNATS. From: Peter Pentchev To: tadalunch@s5.xrea.com Cc: Michal Pasternak , bug-followup@FreeBSD.org Subject: Re: ports/48375: devel/mingw-opengl-headers: URL fix (pkg-descr) Date: Fri, 28 Feb 2003 16:09:38 +0200 Hi, Is Michal Pasternak , the maintainer of the devel/mingw-opengl-headers port, aware of this change request? G'luck, Peter -- Peter Pentchev roam@ringlet.net roam@sbnd.net roam@FreeBSD.org PGP key: http://people.FreeBSD.org/~roam/roam.key.asc Key fingerprint FDBA FD79 C26F 3C51 C95E DF9E ED18 B68D 1619 4553 I am the meaning of this sentence. On Mon, Feb 17, 2003 at 09:32:44PM +0900, tadalunch@s5.xrea.com wrote: > > >Number: 48375 > >Category: ports > >Synopsis: devel/mingw-opengl-headers: URL fix (pkg-descr) > >Confidential: no > >Severity: non-critical > >Priority: low > >Responsible: freebsd-ports-bugs > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: change-request > >Submitter-Id: current-users > >Arrival-Date: Mon Feb 17 04:40:01 PST 2003 > >Closed-Date: > >Last-Modified: > >Originator: MA, Dunzi > >Release: FreeBSD 4.7-STABLE i386 > >Organization: > >Environment: > >Description: > URL changed. > >How-To-Repeat: > >Fix: > diff -ur mingw-opengl-headers.orig/pkg-descr mingw-opengl-headers/pkg-descr > --- mingw-opengl-headers.orig/pkg-descr Mon Feb 17 21:28:34 2003 > +++ mingw-opengl-headers/pkg-descr Mon Feb 17 21:29:56 2003 > @@ -1,6 +1,6 @@ > Headers and DLLs for OpenGL development, missing in MinGW installation. > > Read more about MinGW + OpenGL at > -WWW: http://sites.netscape.net/ptrpck/ > +WWW: http://mywebpage.netscape.com/PtrPck/ > > -- Michal Pasternak > >Release-Note: > >Audit-Trail: > >Unformatted: > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports-bugs" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 6:26:56 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D136637B401; Fri, 28 Feb 2003 06:26:55 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 878F443FA3; Fri, 28 Feb 2003 06:26:55 -0800 (PST) (envelope-from roam@FreeBSD.org) Received: from freefall.freebsd.org (roam@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SEQtNS063362; Fri, 28 Feb 2003 06:26:55 -0800 (PST) (envelope-from roam@freefall.freebsd.org) Received: (from roam@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SEQtLD063358; Fri, 28 Feb 2003 06:26:55 -0800 (PST) Date: Fri, 28 Feb 2003 06:26:55 -0800 (PST) From: Peter Pentchev Message-Id: <200302281426.h1SEQtLD063358@freefall.freebsd.org> To: andy@gerweck.dyndns.org, roam@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, roam@FreeBSD.org Subject: Re: ports/48352: JavaCC port updated for new distfiles. Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: JavaCC port updated for new distfiles. State-Changed-From-To: open->feedback State-Changed-By: roam State-Changed-When: Fri Feb 28 06:23:56 PST 2003 State-Changed-Why: Do you know what exactly changed in the distfile? Would you happen to keep a copy of the old distfile, and if so, could you run a 'diff' or something to find out what exactly changed? The MD5 checksum mechanism is there for a reason: there have been many cases in the past years of intruders modifying distribution files to add Trojans; it would benicegood to know exactly what the changes are before bldndly updating the checksum :) Responsible-Changed-From-To: freebsd-ports-bugs->roam Responsible-Changed-By: roam Responsible-Changed-When: Fri Feb 28 06:23:56 PST 2003 Responsible-Changed-Why: I'll take care of this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=48352 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 6:30: 6 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3DEBF37B401 for ; Fri, 28 Feb 2003 06:30:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 481D343FBF for ; Fri, 28 Feb 2003 06:30:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SEU3NS067345 for ; Fri, 28 Feb 2003 06:30:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SEU3aB067344; Fri, 28 Feb 2003 06:30:03 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB59537B401 for ; Fri, 28 Feb 2003 06:26:40 -0800 (PST) Received: from mail2.itxmarket.com (fw.itxmarket.com [213.11.40.109]) by mx1.FreeBSD.org (Postfix) with ESMTP id A04D143FA3 for ; Fri, 28 Feb 2003 06:26:39 -0800 (PST) (envelope-from root@icommerce-france.com) Received: from icommerce-france.com (extranet.itxmarket.com [192.168.2.24]) by mail2.itxmarket.com (Postfix) with ESMTP id 77BD937C95 for ; Fri, 28 Feb 2003 15:26:38 +0100 (CET) Received: by icommerce-france.com (Postfix, from userid 0) id 6346C14A24; Fri, 28 Feb 2003 15:26:38 +0100 (CET) Message-Id: <20030228142638.6346C14A24@icommerce-france.com> Date: Fri, 28 Feb 2003 15:26:38 +0100 (CET) From: "Michael L.Hostbaek" Reply-To: "Michael L.Hostbaek" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48782: Update port: [Maintainer Update]: security/hackbot Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48782 >Category: ports >Synopsis: Update port: [Maintainer Update]: security/hackbot >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 06:30:02 PST 2003 >Closed-Date: >Last-Modified: >Originator: Michael L. Hostbaek >Release: FreeBSD 4.7-STABLE i386 >Organization: FreeBSDCluster.org >Environment: System: FreeBSD extranet.itxmarket.com 4.7-STABLE FreeBSD 4.7-STABLE #0: Fri Oct 11 17:00:45 CEST 2002 root@extranet.itxmarket.com:/usr/obj/usr/src/sys/EXTRANET1 i386 >Description: Update to latest release. >How-To-Repeat: >Fix: diff -u -ruN hackbot.bak/Makefile hackbot/Makefile --- hackbot.bak/Makefile Fri Feb 28 15:22:29 2003 +++ hackbot/Makefile Fri Feb 28 15:22:47 2003 @@ -6,7 +6,7 @@ # PORTNAME= hackbot -PORTVERSION= 2.19 +PORTVERSION= 2.20 CATEGORIES= security MASTER_SITES= http://ws.obit.nl/hackbot/ EXTRACT_SUFX= .tgz diff -u -ruN hackbot.bak/distinfo hackbot/distinfo --- hackbot.bak/distinfo Fri Feb 28 15:22:29 2003 +++ hackbot/distinfo Fri Feb 28 15:22:53 2003 @@ -1 +1 @@ -MD5 (hackbot-2.19.tgz) = ffccd83d5b3ade18add9acc5fcf64953 +MD5 (hackbot-2.20.tgz) = f9fecaa66aca09a249b26709867d4bc8 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 6:38: 3 2003 Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 14AAE37B401 for ; Fri, 28 Feb 2003 06:38:03 -0800 (PST) Received: from ice.ntnu.edu.tw (ice.ice.ntnu.edu.tw [140.122.77.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id E171F43FD7 for ; Fri, 28 Feb 2003 06:38:01 -0800 (PST) (envelope-from jangting@ice.ntnu.edu.tw) Received: from ice.ntnu.edu.tw (Neptune.ice.ntnu.edu.tw [140.122.76.73]) by ice.ntnu.edu.tw (8.9.3+Sun/8.9.3) with ESMTP id WAA19935 for ; Fri, 28 Feb 2003 22:40:20 +0800 (CST) Message-ID: <3E5F7487.9B03E418@ice.ntnu.edu.tw> Date: Fri, 28 Feb 2003 22:39:03 +0800 From: Charlie Root X-Mailer: Mozilla 4.8 [en] (X11; U; Linux 2.4.2 i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-ports-bugs@freebsd.org Subject: subscribe Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 6:57: 0 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CEDA937B401; Fri, 28 Feb 2003 06:56:59 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71CE043F85; Fri, 28 Feb 2003 06:56:59 -0800 (PST) (envelope-from roam@FreeBSD.org) Received: from freefall.freebsd.org (roam@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SEuxNS079469; Fri, 28 Feb 2003 06:56:59 -0800 (PST) (envelope-from roam@freefall.freebsd.org) Received: (from roam@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SEuwC8079461; Fri, 28 Feb 2003 06:56:58 -0800 (PST) Date: Fri, 28 Feb 2003 06:56:58 -0800 (PST) From: Peter Pentchev Message-Id: <200302281456.h1SEuwC8079461@freefall.freebsd.org> To: delta@lackas.net, roam@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48428: net/ddup: default system=dyndns (Update to pr ports/40966) Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: net/ddup: default system=dyndns (Update to pr ports/40966) State-Changed-From-To: open->closed State-Changed-By: roam State-Changed-When: Fri Feb 28 06:56:45 PST 2003 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48428 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 6:57:27 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A37E37B401; Fri, 28 Feb 2003 06:57:27 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B217643F75; Fri, 28 Feb 2003 06:57:26 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from freefall.freebsd.org (naddy@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SEvQNS079534; Fri, 28 Feb 2003 06:57:26 -0800 (PST) (envelope-from naddy@freefall.freebsd.org) Received: (from naddy@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SEvQYK079530; Fri, 28 Feb 2003 06:57:26 -0800 (PST) Date: Fri, 28 Feb 2003 06:57:26 -0800 (PST) From: Christian Weisgerber Message-Id: <200302281457.h1SEvQYK079530@freefall.freebsd.org> To: naddy@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kris@FreeBSD.org Subject: Re: ports/48778: [patch] Update converters/dumpasn1 to 20030222 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [patch] Update converters/dumpasn1 to 20030222 Responsible-Changed-From-To: freebsd-ports-bugs->kris Responsible-Changed-By: naddy Responsible-Changed-When: Fri Feb 28 06:57:08 PST 2003 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=48778 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 6:59:40 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 187C237B401; Fri, 28 Feb 2003 06:59:40 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB51143FBF; Fri, 28 Feb 2003 06:59:39 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from freefall.freebsd.org (naddy@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SExdNS080012; Fri, 28 Feb 2003 06:59:39 -0800 (PST) (envelope-from naddy@freefall.freebsd.org) Received: (from naddy@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SExdr0080003; Fri, 28 Feb 2003 06:59:39 -0800 (PST) Date: Fri, 28 Feb 2003 06:59:39 -0800 (PST) From: Christian Weisgerber Message-Id: <200302281459.h1SExdr0080003@freefall.freebsd.org> To: naddy@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, petef@FreeBSD.org Subject: Re: ports/48781: PATCH for www/p5-CGI-Cache for working with Perl 5.6.1 (and FreeBSD-5.0!) Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: PATCH for www/p5-CGI-Cache for working with Perl 5.6.1 (and FreeBSD-5.0!) Responsible-Changed-From-To: freebsd-ports-bugs->petef Responsible-Changed-By: naddy Responsible-Changed-When: Fri Feb 28 06:59:23 PST 2003 Responsible-Changed-Why: over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=48781 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 7:10:12 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0DAE837B42A for ; Fri, 28 Feb 2003 07:10:09 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18E1343FA3 for ; Fri, 28 Feb 2003 07:10:08 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SFA7NS087140 for ; Fri, 28 Feb 2003 07:10:07 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SFA797087139; Fri, 28 Feb 2003 07:10:07 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8BABF37B401 for ; Fri, 28 Feb 2003 07:01:17 -0800 (PST) Received: from mail2.itxmarket.com (fw.itxmarket.com [213.11.40.109]) by mx1.FreeBSD.org (Postfix) with ESMTP id D988C43FAF for ; Fri, 28 Feb 2003 07:01:16 -0800 (PST) (envelope-from root@icommerce-france.com) Received: from icommerce-france.com (extranet.itxmarket.com [192.168.2.24]) by mail2.itxmarket.com (Postfix) with ESMTP id 38C4437C83 for ; Fri, 28 Feb 2003 16:01:16 +0100 (CET) Received: by icommerce-france.com (Postfix, from userid 0) id 1D27914A24; Fri, 28 Feb 2003 16:01:16 +0100 (CET) Message-Id: <20030228150116.1D27914A24@icommerce-france.com> Date: Fri, 28 Feb 2003 16:01:16 +0100 (CET) From: "Michael L.Hostbaek" Reply-To: "Michael L.Hostbaek" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48783: Update port: [Maintainer Update]: irc/pisg Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48783 >Category: ports >Synopsis: Update port: [Maintainer Update]: irc/pisg >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 07:10:07 PST 2003 >Closed-Date: >Last-Modified: >Originator: Michael L. Hostbaek >Release: FreeBSD 4.7-STABLE i386 >Organization: FreeBSDCluster.org >Environment: System: FreeBSD extranet.itxmarket.com 4.7-STABLE FreeBSD 4.7-STABLE #0: Fri Oct 11 17:00:45 CEST 2002 root@extranet.itxmarket.com:/usr/obj/usr/src/sys/EXTRANET1 i386 >Description: Update to latest release. >How-To-Repeat: >Fix: diff -u -ruN pisg.bak/Makefile pisg/Makefile --- pisg.bak/Makefile Fri Feb 28 15:57:33 2003 +++ pisg/Makefile Fri Feb 28 15:57:46 2003 @@ -6,7 +6,7 @@ # PORTNAME= pisg -PORTVERSION= 0.46 +PORTVERSION= 0.47 CATEGORIES= irc MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff -u -ruN pisg.bak/distinfo pisg/distinfo --- pisg.bak/distinfo Fri Feb 28 15:57:33 2003 +++ pisg/distinfo Fri Feb 28 15:57:56 2003 @@ -1 +1 @@ -MD5 (pisg-0.46.tar.gz) = 2344cc27eddbdab1fd3696ec3c734ca5 +MD5 (pisg-0.47.tar.gz) = 4091a99109723935dde9e36b0e2ee3da diff -u -ruN pisg.bak/pkg-plist pisg/pkg-plist --- pisg.bak/pkg-plist Fri Feb 28 15:57:33 2003 +++ pisg/pkg-plist Fri Feb 28 15:58:59 2003 @@ -35,6 +35,7 @@ lib/perl5/site_perl/%%PERL_VER%%/Pisg/Parser/Format/blootbot.pm lib/perl5/site_perl/%%PERL_VER%%/Pisg/Parser/Format/dircproxy.pm lib/perl5/site_perl/%%PERL_VER%%/Pisg/Parser/Format/sirc.pm +lib/perl5/site_perl/%%PERL_VER%%/Pisg/Parser/Format/hydra.pm lib/perl5/site_perl/%%PERL_VER%%/Pisg/Parser/Logfile.pm share/pisg/layout/justgrey.css share/pisg/layout/darkgalaxy.css >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 7:28:23 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 00E3637B401; Fri, 28 Feb 2003 07:28:23 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A38B43F75; Fri, 28 Feb 2003 07:28:22 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from freefall.freebsd.org (naddy@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SFSMNS007646; Fri, 28 Feb 2003 07:28:22 -0800 (PST) (envelope-from naddy@freefall.freebsd.org) Received: (from naddy@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SFSMcd007637; Fri, 28 Feb 2003 07:28:22 -0800 (PST) Date: Fri, 28 Feb 2003 07:28:22 -0800 (PST) From: Christian Weisgerber Message-Id: <200302281528.h1SFSMcd007637@freefall.freebsd.org> To: mich@freebsdcluster.org, naddy@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48662: New port: www/html2hdml Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New port: www/html2hdml State-Changed-From-To: open->closed State-Changed-By: naddy State-Changed-When: Fri Feb 28 07:27:45 PST 2003 State-Changed-Why: Independently imported by knu@ http://www.freebsd.org/cgi/query-pr.cgi?pr=48662 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 7:40:14 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CFBB937B405 for ; Fri, 28 Feb 2003 07:40:09 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3E2743FCB for ; Fri, 28 Feb 2003 07:40:07 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SFe7NS038613 for ; Fri, 28 Feb 2003 07:40:07 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SFe74q038612; Fri, 28 Feb 2003 07:40:07 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F37E737B401 for ; Fri, 28 Feb 2003 07:37:19 -0800 (PST) Received: from lennier.cc.vt.edu (lennier.cc.vt.edu [198.82.162.213]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3701F43FBD for ; Fri, 28 Feb 2003 07:37:19 -0800 (PST) (envelope-from refugee@hc6525a27.dhcp.vt.edu) Received: from zidane.cc.vt.edu (IDENT:mirapoint@zidane-lb.cc.vt.edu [10.1.1.13]) by lennier.cc.vt.edu (8.11.4/8.11.4) with ESMTP id h1SFbI6504358 for ; Fri, 28 Feb 2003 10:37:18 -0500 (EST) Received: from hc6525a27.dhcp.vt.edu (hc6525a27.dhcp.vt.edu [198.82.90.39]) by zidane.cc.vt.edu (Mirapoint Messaging Server MOS 3.3.2-CR) with ESMTP id BCS17971; Fri, 28 Feb 2003 10:37:17 -0500 (EST) Received: by zZzZ.vt.edu (Postfix, from userid 1001) id BDF596B; Fri, 28 Feb 2003 10:37:15 -0500 (EST) Message-Id: <20030228153715.BDF596B@hc6525a27.dhcp.vt.edu> Date: Fri, 28 Feb 2003 10:37:15 -0500 (EST) From: Suleiman Souhlal Reply-To: Suleiman Souhlal To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48785: New port: games/dungeoncrawl Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48785 >Category: ports >Synopsis: New port: games/dungeoncrawl >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 07:40:07 PST 2003 >Closed-Date: >Last-Modified: >Originator: Suleiman Souhlal >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD hc6525a27.dhcp.vt.edu 5.0-CURRENT FreeBSD 5.0-CURRENT #1: Sat Feb 1 00:57:38 EST 2003 refugee@zZzZ:/usr/obj/usr/src/sys/ZZZZ i386 >Description: A port of dungeon crawl, an old school roguelike. >How-To-Repeat: >Fix: --- dc begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # dungeoncrawl # dungeoncrawl/Makefile # dungeoncrawl/pkg-descr # dungeoncrawl/files # dungeoncrawl/files/patch-aa # dungeoncrawl/pkg-plist # dungeoncrawl/distinfo # echo c - dungeoncrawl mkdir -p dungeoncrawl > /dev/null 2>&1 echo x - dungeoncrawl/Makefile sed 's/^X//' >dungeoncrawl/Makefile << 'END-of-dungeoncrawl/Makefile' X# New ports collection makefile for: oneko X# Date created: 5 December 1994 X# Whom: asami X# X# $FreeBSD$ X# X XPORTNAME= dungeoncrawl XPORTVERSION= 4.0.0.b24 XCATEGORIES= games XMASTER_SITES= ftp://anonymous:dposix@ftp.dungeoncrawl.org/dev/4.0.x/src/ XDISTNAME= dc${PORTVERSION:S/.//g}-src XEXTRACT_SUFX= .tbz2 X XMAINTAINER= refugee@vt.edu XCOMMENT= An old school roguelike game X XUSE_BZIP2= yes X XWRKSRC= ${WRKDIR}/${DISTNAME}/source/ X XPLIST_SUB= CRAWLDOCSDIR="${CRAWLDOCSDIR}" X XCRAWLDOCSDIR?= share/doc/${PORTNAME} X Xpost-patch: X @mv ${WRKDIR}/${DISTNAME}/source/makefile.bsd ${WRKDIR}/${DISTNAME}/source/Makefile X Xpost-install: X @${MKDIR} ${PREFIX}/${CRAWLDOCSDIR} X.if !defined(NOPORTDOCS) X ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/docs/crawl.txt ${PREFIX}/${CRAWLDOCSDIR} X.endif X X.include END-of-dungeoncrawl/Makefile echo x - dungeoncrawl/pkg-descr sed 's/^X//' >dungeoncrawl/pkg-descr << 'END-of-dungeoncrawl/pkg-descr' XLinley's Dungeon Crawl is a free and portable roguelike molded in the tradition Xof the early greats of the genre: Rogue, Hack, and Moria. XThe player guides a single character deep into a subterranean complex Xto retrieve the Orb of Zot, fending off many horrible and hideous creatures Xalong the way. Once retrieved, the player must return both character and Orb Xsafely to the surface world. Easier said than done, but fun all the same. X XWWW: http://www.dungeoncrawl.org/ X X- Suleiman Souhlal Xrefugee@vt.edu END-of-dungeoncrawl/pkg-descr echo c - dungeoncrawl/files mkdir -p dungeoncrawl/files > /dev/null 2>&1 echo x - dungeoncrawl/files/patch-aa sed 's/^X//' >dungeoncrawl/files/patch-aa << 'END-of-dungeoncrawl/files/patch-aa' X--- makefile.bsd.orig Thu Feb 27 22:39:20 2003 X+++ makefile.bsd Thu Feb 27 23:27:25 2003 X@@ -1,7 +1,7 @@ X # -*- Makefile -*- for Dungeon Crawl (linux) X X #APPNAME = crawl X-GAME = crawl X+GAME = dungeoncrawl X X # this file contains a list of the libraries. X # it will make a variable called OBJECTS that contains all the libraries X@@ -17,7 +17,7 @@ X LDFLAGS = -static -L/usr/lib X MCHMOD = 711 X # INSTALLDIR = /usr/games X-INSTALLDIR = /tmp/CRAWLTEST/testdev X+INSTALLDIR = ${PREFIX}/bin X LIB = -lncurses X X # Include for Linux END-of-dungeoncrawl/files/patch-aa echo x - dungeoncrawl/pkg-plist sed 's/^X//' >dungeoncrawl/pkg-plist << 'END-of-dungeoncrawl/pkg-plist' Xbin/dungeoncrawl X%%PORTDOCS%%%%CRAWLDOCSDIR%%/crawl.txt X%%PORTDOCS%%@dirrm %%CRAWLDOCSDIR%% END-of-dungeoncrawl/pkg-plist echo x - dungeoncrawl/distinfo sed 's/^X//' >dungeoncrawl/distinfo << 'END-of-dungeoncrawl/distinfo' XMD5 (dc400b24-src.tbz2) = 3c31b556f4751a7bd989895209cd57e8 END-of-dungeoncrawl/distinfo exit --- dc ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 8: 0:32 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EDAB137B405; Fri, 28 Feb 2003 08:00:31 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B6DA43FA3; Fri, 28 Feb 2003 08:00:31 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from freefall.freebsd.org (lioux@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SG0VNS042631; Fri, 28 Feb 2003 08:00:31 -0800 (PST) (envelope-from lioux@freefall.freebsd.org) Received: (from lioux@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SG0VU2042627; Fri, 28 Feb 2003 08:00:31 -0800 (PST) Date: Fri, 28 Feb 2003 08:00:31 -0800 (PST) From: Mario Sergio Fujikawa Ferreira Message-Id: <200302281600.h1SG0VU2042627@freefall.freebsd.org> To: lioux@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kde@FreeBSD.org Subject: Re: ports/48653: kdemultimedia build broken with libxine installed Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: kdemultimedia build broken with libxine installed Responsible-Changed-From-To: freebsd-ports-bugs->kde Responsible-Changed-By: lioux Responsible-Changed-When: Fri Feb 28 08:00:30 PST 2003 Responsible-Changed-Why: Over to maintainer(s) http://www.freebsd.org/cgi/query-pr.cgi?pr=48653 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 8: 9:39 2003 Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5724E37B406 for ; Fri, 28 Feb 2003 08:09:38 -0800 (PST) Received: from mail.gmx.net (pop.gmx.de [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id C159943FDD for ; Fri, 28 Feb 2003 08:09:36 -0800 (PST) (envelope-from roland.jesse@gmx.net) Received: (qmail 21317 invoked by uid 0); 28 Feb 2003 16:09:35 -0000 Received: from arthur.cs.uni-magdeburg.de (141.44.27.36) by mail.gmx.net (mp021-rz3) with SMTP; 28 Feb 2003 16:09:35 -0000 From: Roland Jesse To: Peter Pentchev , freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48374: Compress manual page in x11-toolkits/SoQt Date: Fri, 28 Feb 2003 17:09:34 +0100 User-Agent: KMail/1.5 References: <200302281412.h1SECb9B060997@freefall.freebsd.org> In-Reply-To: <200302281412.h1SECb9B060997@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200302281709.35206.roland.jesse@gmx.net> Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Friday 28 February 2003 15:12, Peter Pentchev wrote: > Synopsis: Compress manual page in x11-toolkits/SoQt > > State-Changed-From-To: open->feedback > State-Changed-By: roam > State-Changed-When: Fri Feb 28 06:11:14 PST 2003 > State-Changed-Why: > Errr.. which port is this update for? There does not seem to be a > x11-toolkits/SoQt port in the tree, nor in the Attic directories of the > CVS repository. Oops. This was obviously an update to PR ports/41619. I will merge them both and submit a new PR. Sorry for the noise. Roland To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 8:10:38 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D40DF37B401; Fri, 28 Feb 2003 08:10:37 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75F7343F85; Fri, 28 Feb 2003 08:10:37 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from freefall.freebsd.org (naddy@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SGAbNS048451; Fri, 28 Feb 2003 08:10:37 -0800 (PST) (envelope-from naddy@freefall.freebsd.org) Received: (from naddy@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SGAbCc048444; Fri, 28 Feb 2003 08:10:37 -0800 (PST) Date: Fri, 28 Feb 2003 08:10:37 -0800 (PST) From: Christian Weisgerber Message-Id: <200302281610.h1SGAbCc048444@freefall.freebsd.org> To: mich@freebsdcluster.org, naddy@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48782: Update port: [Maintainer Update]: security/hackbot Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: [Maintainer Update]: security/hackbot State-Changed-From-To: open->closed State-Changed-By: naddy State-Changed-When: Fri Feb 28 08:10:16 PST 2003 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48782 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 8:14:56 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D9B2E37B401; Fri, 28 Feb 2003 08:14:55 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B74243FA3; Fri, 28 Feb 2003 08:14:55 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from freefall.freebsd.org (naddy@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SGEtNS049830; Fri, 28 Feb 2003 08:14:55 -0800 (PST) (envelope-from naddy@freefall.freebsd.org) Received: (from naddy@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SGEttt049826; Fri, 28 Feb 2003 08:14:55 -0800 (PST) Date: Fri, 28 Feb 2003 08:14:55 -0800 (PST) From: Christian Weisgerber Message-Id: <200302281614.h1SGEttt049826@freefall.freebsd.org> To: naddy@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jedgar@FreeBSD.org Subject: Re: ports/48742: [Update & Fix] Port: Mysql-modules 1.2219 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [Update & Fix] Port: Mysql-modules 1.2219 Responsible-Changed-From-To: freebsd-ports-bugs->jedgar Responsible-Changed-By: naddy Responsible-Changed-When: Fri Feb 28 08:14:12 PST 2003 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=48742 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 8:50:32 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FEAF37B401 for ; Fri, 28 Feb 2003 08:50:18 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B4A643F93 for ; Fri, 28 Feb 2003 08:50:17 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SGoGNS055920 for ; Fri, 28 Feb 2003 08:50:16 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SGoGAh055919; Fri, 28 Feb 2003 08:50:16 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE17537B401; Fri, 28 Feb 2003 08:45:39 -0800 (PST) Received: from www.unsam.edu.ar (ns2.unsam.edu.ar [170.210.48.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 66AD243F85; Fri, 28 Feb 2003 08:45:32 -0800 (PST) (envelope-from fernan@pi.iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (pi.iib.unsam.edu.ar [192.168.10.11]) by www.unsam.edu.ar (8.9.3/8.9.3) with ESMTP id NAA05075; Fri, 28 Feb 2003 13:45:20 -0300 (ART) (envelope-from fernan@pi.iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (localhost.iib.unsam.edu.ar [127.0.0.1]) by pi.iib.unsam.edu.ar (8.12.6/8.12.6) with ESMTP id h1SGjTQh002407; Fri, 28 Feb 2003 13:45:29 -0300 (ART) (envelope-from fernan@pi.iib.unsam.edu.ar) Received: (from fernan@localhost) by pi.iib.unsam.edu.ar (8.12.6/8.12.6/Submit) id h1SGjLnd002406; Fri, 28 Feb 2003 13:45:21 -0300 (ART) Message-Id: <200302281645.h1SGjLnd002406@pi.iib.unsam.edu.ar> Date: Fri, 28 Feb 2003 13:45:21 -0300 (ART) From: Fernan Aguero Reply-To: Fernan Aguero To: FreeBSD-gnats-submit@FreeBSD.org Cc: wjv@FreeBSD.org, johann@egenetics.com X-Send-Pr-Version: 3.113 Subject: ports/48786: update biology/EMBOSS to the latest release Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48786 >Category: ports >Synopsis: update biology/EMBOSS to the latest release >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 08:50:13 PST 2003 >Closed-Date: >Last-Modified: >Originator: Fernan Aguero >Release: FreeBSD 4.7-STABLE i386 >Organization: IIB-UNSAM >Environment: System: FreeBSD pi.iib.unsam.edu.ar 4.7-STABLE FreeBSD 4.7-STABLE #0: Fri Jan 24 17:53:06 ART 2003 fernan@pi.iib.unsam.edu.ar:/usr/obj/usr/src/sys/PI i386 >Description: EMBOSS is currently at v2.6.0, the following recursive diff, updates the port to this version. Please note that the EMBOSS port still does not solves the problems with the Jemboss installation. Also, would any comitter take a look at PR 47303? It's been some time since I answered requests by Simon Schubert, and provided unified diffs. Is it ready for commit? What else needs to be done? >How-To-Repeat: >Fix: --- emboss.diff.gz.uu begins here --- begin 644 emboss.diff.gz.uu M'XL(`*Z07SX``\P[;7/:2-*?X5?,VL[&/BS0&Z]WW@K!Q"%K#`4D\5:EBAM) M(Z,$)$X2=GPI__>G>V8D)!EC)WL?'LJ)4:NGIZ??IV?L>*Y+E'!S1=C*"J*H M-J3?F.LMF7RN^NPNA94512GBE6:+#?E`?:(;1*MWZF;':!)=58URI5+91:3T M+O3(.V81O44THV/`&%4,>/.&*-II2R45^%\G;]Z4E4-RQ>[(.@CCB-C!J/*?ES%'#N&''+T+&7L[/>\(MFJ6%RR#F_M:05.GMT2K M&ES6>DUMU_0F45N=>JNCM#L_[X_[ M5^?`[XU3U3N"XA38>*C=@$4NP"!J-PXB?YSVD<-A]T_0W3V+!.0B\WQQ]7'> M&UV]&UQ\G"2PP=5TUKV\G,ZG[V&VS,#K_.-P-!N\D\_C/R^&_>FT>]''!7^> M_,G967^[458L`JMEYWH\^`4V5LGR2,XMN:%GR*U@48.>LJ[;WEIX:1L]'H,H6) M>>>H#"$QL,WII/>0:%KF)(>Y=+.,JS%;K9<0G4$/H]X7YX.KBQ.0U'0.BNNC,@>?MLNM,M_Q7-3#(0&B M\8*%C'@1H20)\E7/M\EQO``@)@.9>2(2^.R$;"+`CLL$&6+?O2B.CA//'4_Z M[P;78$+5WL<)5WR6X@F.\>WEQF'DX&5##F"(X!;226H*\_[5I\I9J3<>O[OL M7DS/#I3!T8_+4:][^;8[[3_4Y"1@;`LRA[7T+(*@:TU+`0=E9=J; M#,:SJ9PCR^19D6E)?8@@?,F_`'0RQ*?)\.$`@ZDPG+-2)K[M\S](`T/@9_K7 M7&"?96Q/OD$4<(TT_FE5M5HO*^^'0PARF?2J87H=]H?]+-#@P&D&IL)PLZS, M1N-1%@AHX_=_70[&6Z!1K3<-&U)8:N-/&_A+S%K)>=F+?0R$6H4*B=#UFG@^ M06$0OGB"BR6P."(X)[BFHDJ/?L"XAW11H*D\!+162756>K':*D6UE78H#J(# M!M/N;#*XSNM/10)9I9:D6BO]Z6!H%N&`7E!W22J\DE=X2:J\DE-Y22J]4M1P M*=%Q)6\.)6X0/&3,,"Q$#"K7*%@Q\ZC9/JL=`#"W/*=BJ!<*;!>^AGF*T7F$[+/ MLU_)LL]G?;2"2GX%)5P#I))EQ!XM[@UL@E;,C\G!CE&9ETDFDN.A?H'94R8$)GSV(G/R8*F8Z0[)!^$O)-JL>0;FZ?DN"+^A$?,@"N5Q%3#AYY&Q M?1#U)%C;(98V'[J?NAADC`H`MDFT.[E`^2G*G1#4"N=C:RI_0WV2K!$WX&:+`ZI'7-.5\!8 M$,6*A`%OV6!X]$-Z]8/D681.\LB+>5.EU3BMFZ32:IV:&K952(G`VG-VR^=: M4RX%X/Z.$3^X(_:"^C>,L^[Y40QR)\O`IKSC@=Q`7<";'(@+2/7#T19>[!%\6Z(PNT8.'X= M'7XY.OIR#/IRO>]?3B1A#I,E-`!A'H'FT)B"\`6H@'7X6M+<6A_P42AA(0TA M.^FF8]X;GC\@.X*1A)J84LZ1`OD,E=)>^AGY@PRI&[,P3;N8@H6X4!>IG>VQ M(&DO*>K3%H-BMAV2QE[)(NY)$JDD+M#K89;L]2!=]ZYY$H=?^"#+=WCFWV1! M31!K^TI^3U_*_=_906T3A1@/:HE5*391`ICW[>!J]/D*I'PC'BXFX^+H^7EW MUD7RV>='2./)Z&+2'6;Q).@1JO#G+*:`I(BPDFP\?"#56A8DL7-H&*$?N`$] M(>A?IKG+:*R-MW3R%L-!SUL+1_N?6`J$()D$\#MO!Z1`807RB6?Y=#A_+U:F M)"O;GQ<3EO*)).'I\&\R=?B(JR0;[56F)"UVZ`7M2!O/ZR!$L'AF`Y0#S(,[=T MN6&\+LFT[81ER)G_?]@&V?KF#`#]6=9:?7J$-Z(_48FY&>V MK@_D#Y*BU*`(*.Y<(PH[5Y9=5.\]CU!8#70G??S>D=\Q6*5HS]+\:<8S.A)< MIPU8E,;C'I.H)!;S.)A#`F9V'(3W\R-A^]MU MR?0MP2)=BL&UQ`7RW80:E'N'-:CR\$LB4X2]+NA4,I;+#^2E+8J\ZG:O\6E- MY?P(G1`4`EYTSY/XDE'_<1$JSX:(=9^5G#3BYU^.EASX`,%U6+?GL9)DABVS[\EQ4Y5=P855?? M_B@[Q>-'QXMBSW>#[,EA`LL>/R:PTA"BX92MB:$2K='1C8[1X"=/'=,!G MD#4_K]2)UNQH1D/33Q];//#Q^%YG1SGC@<4?O!5C6E8O?GO"3DC;HNU M7+5N&`W=,!N.6;<:[09U&H[*;)-2ITCDZJ/">T,9$@V+FKKE.BVS95J&9KA& MF[DMC:F&9FINHY$GP=L="N\796A0US5U1ELV<]JV:K9=W;9-MV52366NHVMY M&M@L47AO*4.BK1NJ[N@PT&J;;ILUF[9F6;I-C;JMNFV[0&+:5W@?*BL+QW6L MIFLZ;=UM-`W=L#33:JJ&2C4-B+3S%$2C1A$]JPR5NDM;&C5LUS+=NJK;#;U) M#=746X[9IFK+S%/!/@\PDI-%73,T5V>J4V\QM6$SM:GI==5JZ+;%&G5:KNS4 M:P-6LR7"6@8UVKK5;IIU0[5;JEEGNN-JK-W059L9>2*9UA17;Y924U--5:7, MT1@%19O4;;9LO=E2#6KI+6S7/6LAM*$RR['J#08K8M0RVG7(Y79;5UMU:MG% M%6%;[!$;>IVY=9NV+1N,I.YJS9;6K&N@<5A,BZJ-/(W=5M9V+-MIMANH#-=J MJ'K#M#7#:;=H&RR>%H2RT\INZDZ?PE)59K;8+J];!7FD;S!Z,A1EM ME3%#TTRPN3R5'5;FMEJ.PQH-@S6`%F6N:EN6;5J:3D$F5NMQ9,,X&]7X%ENA M-!N:\F^R42[_1H2NS9)H&M'4C@&QSL30I15CW8YAY\PFAD9TK:.J\$.T=J,M M(Y[>(!7U5.4AK^LX^01(*+8F"+5MMHZQNY)O`!22*"''@]3X`88+`=3W;@UP6,LA@$0.`K):K)WAJ,(.T M*=IIHBZ-7E9B<6'*NQ3_*IQ^_H&O$4$A]"O]7J-??;JJVKSKP&^U=#44*`1<` M>$AA!+HZ09$>WP:>YZW1-,)RA`"GY2*1:0B[@9'O[YC!^#'70Z]"NV M5JOVDRZ8PWK2OW-8_)84^CJI$[4))M4Q])UUS1X2S_@]1)'4[S-.(`9OO6!( M[PF!N<&N&QVU)9C(>H&<;;KQ.2Z$$^!6,SNZ*G%QNF8=*RO^/_>!0]GB)?C= MK^/J`GRUL@5N?"CF'`[-$=JOK&T3[0GQ;>ON M)U24(G"?YT5DFX##FZV.JCT;B;>C?U(QVRXS5THZ-RC%Z.BM#H]1,#=7RG:6 M]&)>'8AWP(@,0^+Q:#?Z_O MG'_+P(+/!S#A3L2C'[+WRL]=14/T08[@^N[V>#-NWKN^AD?>7K#G>#2".YL5 MO?M&;O`_'_^#?_O5*D#*4]NY)Y2Q?]13!K!_%-`') M/:9BM/*FLG]OFW=JW42[,!H=HYVQG_T4(XO+,CZVWX!^ONO?,0XTLMURX(U_A+',+(`2%IQ MO*9(Q_W*?.@OA^0RN.$].84?1275#A6-.GYJ1?U[O(`3$AOKJ36D/0=0^&#< MXTM^X,72$P561.X\;/UMXF`%`%OT$4(OQAH,706W_1P3F2=8(:7B(W?\:I`D MRKZO&3]6"K`?X>"9FA)[*\;');*/H'KC%P0\<5)F!ZLU,.\HX)-)&:'($R$^ M,/"!'\C%]\&&?,,3H#M<)CR]AIF=`"J_WQ`/_V7L@-O`MGN2ZP+5\*64:&;( M4LIV3U](2D!PC_)=>E"XWBT\>X$0*&-8B)T2D`#JAJ/OZJB"<,05"<+EMX+_ M8)%8`R=#;IGO,=]F(*U!#.8#I"-!-E,:"^F#*/BH!;UEHO_J("SD>,NMX.5] M+:YM#'4LY,/<,(!2&M6-!YSP^Z0JY;G+K?:)E,\B"L#44I%_5Q@J_&Q\>5H. M+*(0N!$G]LN'[;'ATUW&RP?M,&`TW8WL8J4&7-UA**G6'W?\Q%)^SF6?#0Q; M=?QT.)!IC41W7A1!'HO)\7B#>@3Q10L"8@T]%IUPG+/D\SBK85MV4E\OSB2<[)ML':_':+ML'@S`N-H392^ZP)^/E M>@1&;*-9!DLA.WDK'#2C;=M=LVQ$%$4&E5<^V"C7^EPH:_TL% M'G[[FQ!6!`.&`:QXLZ0A>2LN,I,1KG0JKPZ3Z0;=^E@>:O&854;%P/9HP?S( M@WB!'GA,K6`30Z)53UXN^[*2B`U<7#HFW@8-`V=CBSYSO)_7*Q;C?96R@@P" M<0C[BYC?AKZ[N\O>HX:`5/E%KE-N*QEN\9;:W^&8I`R7*T]R3,JD"U%)SB,X M0IW@,1L>AT*4"X,-!C:\L`'%"E\4+,0.`&OI62%%;P:A8/&+TG;(U9?_C M%&!4#(1M+F+S2`Q1%#8L_(R/QTZ>C%S(!JRH/%H"3^)B6:TB('O#>` M-%S&EK#[Y:D-FR(\O`A"$'XSSN8X>#,)&S8K%B\"AXN6RPMM&V_7!)N(EP6! MSS#KI2T:+C]LL(>>M<$4`N)CXL;+Q?CR%.H/[![AL_`<'9T&=AZGFLE]I[SC M.DR(99,7.@`*(5+DZR*>U_F2+0;6A7*X$?TD/-HL"W,1K$7H:J>@V5@.0\I^ M@(TDOIO$%A3'Q]B?#$K7PHLKM%>8'$TJ%A(Q&P$U2-LGN%"))PG`*H]E#==!0S^!&:^"6%:FJ)>4KUL61ES(0$M> MID33$=%)^]I)#:^$DR=Y08L.@2+*.LI"2.Z3(*^/%R]N^23HBS84G) M!-8;IUQX(;$\7[A7JMVR`D($-W0@V#RK"8P@+]<&V:L,=,B?T`9Y2AGER@NT M4:[D]$%^71WE2EX?Y)?4P:GLU`=)U0%^^_GSYTXA.6`:Q5!;WM&.R1YB%C)N M^3;+_^B3-*NSX0>$%PG911O; M!N[<#9;"J3E4<=``RJ.0ATV\SLB(_,,;V"A`-EU#^!+[`;RXG>Q=Y8W\4[X% MXT:&%[GYKE+L0O'/$9?+X`Z]A?FW7ACX//PG5R71&/B.)%HPO(P20ZS=K'G1 MW^&]<9[[QI?CR]$,_\X&2'=X!_7@B>T&_[.)J[>`U"7RZL2.;58JCJU#P*(S M),7!0[G8%1$4DX"[VD0Q>I6T1R11Z'KS.Y4.*$"$2M2%7"XJA6=$2&,A9$#8 M-Z-@(JZ)+I%V'-HH(,J=_36X`,I^N\4.P+%"#\,+"`D/.B*92D#Z]Q%LS)0[ M>%L\(L$)1O[2\[?))K`W.+D0$-:":7RB,:BA]'^U?7MSW#B2Y]_C3U'7UQMQ MLW*57`^_9F/W6K;D:?59LL*RNW?CYD*#(E%5M/@RR=+#$_/=#PF`KRHF,LG2 MQHQ;9.4O$Z]$`L@$P$;_:A]Z*^>3Y5H/IH*9""?FA`:?[S3QCFTHY*EZ06?7 M5T8VWUO:Z!]WN[W^D1W;KSEVNKQ:"+UI=OFW"YBQO])=7JF;WL4-(==_^1?8 MC"BC>+O[>VLM+3Q?@R;JH09J6VPE",B%LIZ=Q$T4*?HZ1JEZ-QY*5:8`)I_@ MG<00X)[(\-1E%.!$O04:I09J1O>`4M.5B%!B+D76(5D5!LYM0;:RB7"30X*> M)Q1],MM#[#>M;;W.YMU'E\W)A^OVY<.K!N_!8C2`SP`JP4=K'>'#M=+PX:!% M?+11JS8>]AP8Q5,%D[N_6Y4`4E/A]HFAD]I4MBYJ4]4,?2__)@NMG%^7&<_E MSJ]6NG<++>6@A2YB*]/[1#@RV"+O9SG?R;&9C=IN[H6!6D9B1#7Y5%-V!UF/ M5R@Q$WF!D/U8P((4I_J!BS>(U4P()Z.YTK1;G*C6K+F#*N/X$2/#?`TM3Q*Z M>&'RGF#%604M\]ZBK2&&BM:3TI`<98V"!X02RV"]6:+Y<14$7*B.#`'94<.9 MS'%]RN7W99)T2-ZW,4:GNY6^`VV5O`=>Y;(/&KH!%V_[10\XU'Y:-7IN=#2"G#Q MO>JOM!-]\'VTQ5@2+MJ:EC8%+\J7**T8/1W:LT\%'%:TOZ?K-$R*ZB63X&2RK]L\-4E- M7^O-+;,W9H>UIOK+8.VM[;-SK7*T)##95JQJ)\SF'BH9\CU;\\E6U=LEJ+[E=!6)0P<'*%LGR^K[7-I/E:[S1[ MVU!G!:I*%:L20=64;T6E8;'*>)*6-\JH;%M:=1#UDK>L1JK;9&P>@V6HIA*VXV82`A\M<"9U_R]?]*8,2'?V M8J[W]TP7C73!1H(GK'[+@EK0756[V3;^K3S?DF_,;U#?UB-2OMKJ5SD"9W7Y M\EUW7:BT\@?H>3I/8%)>S%ZJ;,U>JOXSKS*6;Y*ZU?/-=K4*9?VN;$XHQ9VT M*0?KM8RK9UU9%A="ISDRSYE2>/OX`)$J^W(;U#8K3\.@J#0U!PM1VQQ5Z=89 M8EZWJ8M5J\F*550^U)E7!B\U601#TNCF MK:&@`,M5&E!X`8KAND]64MC2;^.@5,P[[0"%AK96Y%Y`B35,AS[\I?T]62[+ MCGJ?9*KC;..B?M5%+U_S'+RXS\:.S=QVR0K;3F$AW'P-=]Z5ZNCL/(K8MM*. M_AVUAK"CUGBAWU:96*]#:_Q4QS*M8MZB"+3%V-\R!&N[L[]L`-5;D>2V#52? M7%5LM>97KW%6/S=DP*LR;\V7LG#PIAK+9E\]-27*[Y5`!3&:4[V"L2Q?H"5* M$:8;E,]Z0"]?M%J9L0[R^D&[(*LWXW.L7HV3L7HU M[M#JM5&ZRN=8O35+6'EAS4@"GB#S5-9IZ:ZP+Z5[HGJ%Y6/]HMT/YK5T-U1O M>I5:O1EW0O5:2;'N@NI%+U[K-[T2MJ]F^5^]-&EV>6]?@KKFRN6[>;/+==M4 M05F?34G5^KI^;63)KI]M"]OULGFKUO3&/L",]JBCP]97JMD^F8:@2^!G>KG_ MV^XOJB_O_**F&>W.#>ZJQB_K'7.PWK4'ZV8RE8'8,2!';?LRVN%OI!EOU>"Q MS1NIEK^$^S_MI+27E?5NVNM&XK601O)5K>S\$.[]`EZ_CB88[ZT[[*K"K%WV MJ=^6PD=I*WW128'27<1RU8+1RV4,0F^L:U`$+'0P8J"F25C!EH4:C`N4[(D` MHVQ$DN,T-=U%B=(6!P6HF09&"S(?+:B:SWD15LEVL>>@YA,9KY5-W73287!^ M0+GUVA&EXD6U0S-*SI8NK;/+49QJ5@P872U845*QMC,O'(&7V!D M@%T[#H`^OXC2M:\!HVKG`TK4W@B4NL;5U/HK,*J=D*+DTJ.!`\#%@5.++:;F M?B:QFI2!GM*AAM',!6#1Z`3874DH)L+985V'$6&Z%H28)AJ7#4:T/AR,W'#J M8)#*RX,!W.S&KD!O)K<]JEU_*,!%!.<@1K/^081L'(8H\9Z: M#QA(+B76>XR#$2-:CR-*=O1GZY/$J-I)B1"MUQ*C&CI@K]TDM6`'*PP2VT@CDYK?2L85:9>$F"%5U3HFS@U1@<)1037`IIM MZ_UUD+7_EZ*+$!5A7,0.*FXQK1,9H^)COB(5Q:-C1FT`#H500RMFK,RPB]:H MH38V^W1!XB)WS\K!^Q8XB*E:>STZR0YF*FV'N:V\\0B]Y9Y',7H)AU(=<[%, M1NCBN_3L.\C@ZD?)=[@Z5.Y/!UW[0!UTE&9"!RCUNZ/K-R(-."+&:L2$)9Q$ MIV!#=PR^!I,3:<#9"'2TLQ"(4N"('!\*(:KB;#E%1^T^$%W%4V3<>-EX#DHM M`SP8H(SXX'0U=<>)CCYL@D08T0:$,'(9(4+IN=/V-6-(&*0**F&`1P_K$#`` M.\Q^'97"`"NWZ2I6V&+%!+(P(FZUJE"7@XYKB6H-J08ZJ1;F:2BP`<&&S!Q4 M/`4=1T-HC<`:@M"1-HQF0F\85^";)N_Y$-?D]#`#\4=B8J%FFR2H(`!N=DP0#[L MRZ9@>4Q""CJQ8DM"[LAR+;\)$A(^DA"E0B0D(2$QG9>$;'$%H5M\F9.MM,S) M^E406BD\07803X0DQ,M(B*2E;$B%4!#O5I(*JF!T+7N;6QH2,<3$9&MYFR2G M,3\B#B;;+ND\I0\D)",[A9=Q:K$@F]X7CYMDM2)A/MG\"D*KM)^L24A&=G<% M822E5FEJ%1>$I&F0'@-"9DI!Z$PI4$C6Y&I*(H*<3&H5^7>P_">U9"-(W=YL MR!K:!&3/WT2TE"V=EVTDR*1NZ5:_34DI(2TEHFUT)((?9'^.1$1K3Q0\A&3_ MB9)M3B>7TR5C2"EH*?1<(]J2]E=!:&L7W=&Y833$#^F12<7TF!I+LN#QFC0J M2>S1!4\%6:I4DG632G*H3%>TE$WP,'V]H&'D;"S=D)/'-"![`UC`)!)B1@.C M)5V-`()]("2.KLN4U(^4[H%I3E?2'9E0)I8,R))>GR@4K:Z98,@I&'+H83O; MD,-)%I`&/`O)=LCH94Q&ER@7(0=$MF=.SU;R-:G$^8;.RR9E9)B>\>0AV4XY M/7G((SJAB*Z\A.Q2>4HG1,\N\I1NI90QI\QI2Y+3`W5>T,6F!^K\;O&"Q#QN M&$KS&-.@8DD.PP4]4H-_C80P[%&1D%940>C)19&0G:'(R*3N:!MPOR$-\0/M M&7B0<9+2FO$H!>TYT2#&^/I(NQD><]*N*PC=NQ0HHO--:\C%_X2+N;O9M$A810T`S,TTS.("&]$TA(]U,DO%@SO)YF>#W- M'`+Q>IKA]33#ZVF&U],,KZ<97D\SO)[PO,_Q>IKC]33'ZVGN2`NOISE>3W.\ MGN9X/IKC]81G<('7TP*OIP5>3PN\GA:.;.#UM,#K:8'7TP*OIP5>3W@N M7N+UA..R1S0MP(S[O)MV9#KB^Z)UP*MGGTLP1VU3^Z4+!C3&9%(',< M%05Q@E-A"X^#69-OBBQP0,JC4QC"7/H?;)>=U#(4M,K@!'<7(!:32(;=LF6T M#"Y/1:EW^(DO9,2CF-W$3/5YM-)&@;= M2J7I\Q\O5Y_/++^IY&T6/6+-) M9Z_10&%PSZM]+7\N[S\@$G!PW@?QV4-`5B`NX6.R3H9S7PFX[G@`_WH;'+^# MVP2NS)7)%S+>#A3S6>9*P7.0\$YD`X5J"(37)O\J*$'2#C6MQ)WQ9J MJ!BX7_J/)+N50PL#!@>V7AZ?9F+]13T<*@<^YG?F!T62G=J=G%=)NDT_PHGN M^/!L[HM_`H&7B?\DY58M"N=@!TI*LLAT%=OG/J@?#I$%50ZYNA*Q)`V@2]"U M^8;,$\@ISF/(T7N1^0<*^K0MGD+2%_F@Y,C0_Q`FHIB<2B^(1'BYC98R.[6W M@S^A_*>0=*YR],XB@Z/%]HG[2EN/)Y-B7K^<#)98' MX=_K3TUDQ^^WQ>45G,:#8I]D4CR17*W7YOF)))['Z58-5N;'D\)^+&;HH+,K M_9/^2,)_F_A2\`=SSO1IA)9-=H"BVD\V')\*\_6R`\7`_`@L]N37)`M^P!T< MX0%SI3VIAXFY3N$C)P.$Z,,OV?&)YW_8QFJNDX1W0RJJ%O.[R`X7`]<,#>8^ MA0N=_&$6UXJX@C^J,,,EP-F.D_K3.4\F2%OO(3VW6YQ>-@R19K^O4BT_L@0^ MWG*(I'(V=(@,,UD?V)]J*=OX3/]T6`/FB4B/3[;%9N@HJ06\5XOC@?U!\_]5 M%G\D]@C20!&VC56U'"CA6CV?Z0^>'5"C5W"E6[P>OBXS4K+@3A3R,PP[@[1% M2U&9`&7['>X'HT3JZ7P>=7D9IW)1[A#K2=;J"\QZ\>31^``HWF2Y4TD8O6< ML8OT6:XRU90#\3,'`]R=Y_15`D!_'<[8SV]BUQ/^+?";5*\#^9KQ,/D+#GZ^POXJ/8QM[F M-Q'^;C2P+_^.G[2_@):/=`![RS\ZC+_E&QT@HN$7'5)^LUB$E=T!['J>V)_] M`B[E,ZZ*=\G#``'[+MT#9.S[6P\4IGVM!\H`[7@"&>"K/4#*9[C84#Y%)1M) M3U$[M23(D_'8#A#7Z8H>**?MAAXHY$(9@N!C$,LO21)^"=*OYT,E785B=2&\ M+!EB5_;=X8-EJ`6S@)OB!@MH^M*'"VGZT0=*V?%Q'RH%?-"'RM!NO8%"6C[C M_C)H+_'A,IL>XL.E8=[APR6CGN'#1>]XA0\7V/((#Q"WZPT>+J+RV?83T>EJ M'2JBX68=)@)<2H,X:_?J(/;*M3J(>]>M^A1"K$OU*409=^H!;:H_/7UPPPY8 M7%7.SW=PE]'7U!?*(,+U@D/EE,M$ZQ@>**5R"@_D;SB$#Y*0/T&-=+J5^\E2 M#7RGVMC6[;5^.TB$GF@?+N;+1AGFOEVZ+0(CDT1U]D7EQM MEZJIATEIAP\&,%>A@P&\S;#!`'9;C1`R&,[=#A<,D+,3*A@BH1TF&"#!M+V: MR`]K0U#$STDR+/?`/,#VF9)KS3V@X$J#3MZ?#N3\58:#J@M<4Z?OAG!>B%MI MW`XKI\9OU=B:'P=Q#A>2CNVO8]/E)^BV4\-U*Q]S"@-[6'^[_'A%XI`L5GSQ@(6[:JC].@*&V_F6 M7@N4AGD1^R\GJW@WF31\0"APS:?9XJVOSA03^+0C`8&-[01&S=8*AB@-H\4M M:5%+MQAS8;[T=\\>["#"W7K?H>?Q[EG3-L!+X-$)D?NG$=H`_;$7-\)\T-N! M@,^J$O0W;H",E_`!/1D*C\:,&HO&9)U%8[K6+&8<)C&5\=A;!@0$ MKFJ%+V4Z4?EN='&/[FX%,A_IYC$,4@9D]U1S&Z.JQ9=NU>>4%^X$1@'Z]F<9 MK0B$NQTU9/_030U(A8B";))*O%)2\?#JQJ-[&M@3PF9H"*'!&L-(R=5E2P"N M+1KAZ)":3O5("^(4B.IP%A0O,[P+E!B7DEM,UTFI'1"=%)T0(QFGCMP:2`'0G?W`7 MZ*\YA;>=)=8@^/C2HUIK30+_`0>I>?C^4;>:OE*++1=]LXVF3D`0WSGI:OH* MMUT[JZ/$N*HD#=T9A<\IN>A9XCOI2B7N8FECA*54N`]L0@@IA/+NP@AI MSN9O@PA)Z^72*Z:8&:M1ZHV!4EV8@5(=D(>:,5!9P)"ENBP#I3H=`Z6Z#0M5 MH*`ET6^61)=9TKUE27>4)=%'ED3W6#I[QM+9*99D?UB276%)]((ET0&6QTLQ MR63GI,00\?;;%&L'*U`17C4W=C=^#4#R#0!'Q9=D%S>A/("AM`[Q^(H\(OF>2,<_`VTD"D8W(AP^\*- ME\2YC/-M?K/.DIWCF`QV^)*]S&`_XE`!27$#GPL4-8)M MW6DH>W%7U^NQX'#(KOSR(),A5O_K@^7IU3)(A0\$6OO343*]>"K_MJ(NCQP0$LKMG@-7NL MMQ^F[3-4*98B8M=?+,`BL,'^[C44+G`0W^W<=^="<[NXAMZRL;"%G`^6)5-XN/^8+;Q@ZZG&,C.1268GEWU& M6=EOV))]1B+9;RB2?E#TZ>6R5\^5O;JN[-=W98_.*_OT7MFK^\I^_5?VZ<"R M7P^6*P%?]N:"86!D7.SHE97P=>^P8.`@^;7/K( MM_MBN2S!`Q<9L;.1W+/-0RR#]6;);G=E'KBS=AG_>(SDS:T:%HK`Z[7:-Y#X.WRJ1@CA:K[8\? M\9;IH`$P;,EB@\%]P$.O118'W-G86DI/,E6PE^U?2Z4@*R865(+9B3<]6C^X";%4//H*+C]0_I9&A MW.:3/-G[*11[/]6_;"(XE9DGD]G>3SL_A+M,];O^9$1+AOVE_1[N<-2OGIH2 M@(#I[B_M]W"'0[T2`0$(+%`8""Q0&(BI4!B(J5`8B*E0&`@XD)B<+E;B49A6 M+`3'MH,7.,Z\=D2L<)9VF(6%XS!0Z5!8)3,PRQ%JK%TMB\&MLI;*0F7UXY,/WRRV@\G2WFSZ?3T='LU5OX M^\LO#!GY;66V:'##U4""Y5HH@[3F#H9JD&B'LN@$:N$DMARM2&"^%%R9Y=)@ M7ZEW@/?:Y1TQQ=ZO&M=.4^A82K^\89;&-EOGK^6NG+F]GS5QQUB>4] M6UMBU>]@KL!%\R?`L=+[).66NMCPLPPC<>#=S/R;O,BVGIXZ]U#)DM]+?#5[ MV.9BW6(W5?YZIJO\[6MFE5N9.H3E94&Z.S/I)2#R:GA3\V^FSV>JZNLU94%SU@-H,`QUPEAL+R&5=B\$&6$CX&^WTC)U+`2S<[)O5*; MA+EKHX+WE+[[N2<6ATF#&CQ2F1>PO&;6Y>91369E_-BGAT-@TTN8=AK`[+6E M!3-K,PD??:X'QX*9DJL``@-9%(_\L'"-G_.Z9X5?<'.N\.SQ*\W@.I]L7X,^E5'Y.BQ>O](ES!??(="6;- M-=VZ'"S<,\]'9T%9;S3ZCCWCA/EFPX=$B>XQ/56-K9:_"1?<<'(SP'K!5@U. M#`9V3,)@V>->!>=[Q0U+7WPN^;4#\#0,N`P;&+7Y*J#@_K)I41(.Z8G1<'5O(*-K:TCG8^P<@]3EC0/ MLM*10D,?X&,23/!MD/(K#G1F][M0.%HM_%/F3#B'F"#?PY(7>9^A/M^F,NNU M6T0?&=&W,#)3>/28:QI`\L)%@.0M?6`/=9\1'.YUZ%-_RA8UAV4:SG3X%"M^ M9RFJ49:L#87DU7"1I`EK,JJ!K/Y4WW?!*U5SLS0-5G/S&M]?TWGB9[!U=VA&AHU]!O.ZC[D9$%.1>DXLLYN$)WTD( M5\/,C,EP+RKK2F7O?A-XFW*8)>4FRV7('.X,EK>\A/-77K*-F3H)<&V&N?". M;UWARQ)_623<[<1I;C;R,J._,*MMC`:,"5G,'6CD]YR]77K'N)!=)V;O(>JE M38\B9NY-T)F]S[B6VU>9D$PKU-R(]2WMBF+N9,6>89I.RB>.#\H^7G4X:+TQ>O1=6,^HG)A=LBM5, M\,#AJ4;D/LW/P=L]/=.)?>#P5`'7Z:1ZY/#9J.=TTHB44CQEK&$Z*9]X+E+C M39].RBTJ5OO$ MY0(GK^&"ISY>O+.^O'J),YWH/ZRN#!/VZ43_ MX>#M'&4ZL0\<'B'TM*RU.N$.!#RP^\PIGQTY<]I#0->94S[[_IE3/N_>F5,^ M:]>94Y*[?>:4@N^=.:49ZC.G)+9QCI3$MLZ1DF-^>8Z4-P7A0JO#H32V?3B4 MQE>'0YE3(!ZV<6R%Q#8.AS*P]>%0&MPX'$J#V576.F7#0#<.AW+092B!@ZU/ MY'`GHUQP\[PG":_.>]+(G?.>#`9V$_K<^%7[O"<#W3COR4&'7)]+\[PGB6V= M]Z31C?.>)+AYWI,&U^<]:>S>>4\&2WW>DP0W3XTQP/6&;VVN:) M,0:V/H_"`=>[>^A57'UJ/&RUI8)_3NV2O[B7[]2_9HX/)/CU,]NIBLE\?DWTZF>S7RUIG M,FEP?42)Q+;.Y9#H]IE,$M[H-#NTYES)K1.9+'B/[KEW(I/D:&[=(<&MS2HTNGTB MD\3WRO?NB4PF`WN2U\>ZX"LB2QC5.6%+;KE"7-4S1"%!]3DT#K0\AL;#YK?:#'/!T"0\K%D5L;#UR30>G`]5W96%TZ?,>$B> M%E1GS'A@>\2,`[8GS'A0.SWC@>]KOQF?(9?RE@OG*D]U4HT'+KAR80L82Z0Y MHL:!EG%1%M:>K^)@&\>K>'![NHH'!J>%O^P!-H<(>`QZ]LU#FB-:3*R.)#.Q M$$!F0LW)*";8A)BY8!-6[H6&.#*/P1Y#8H%MJ)F+A5D4"VL#Q"PL.*B8P#(` MS(>S51^.I7`%-\[N,!D:1W>8N4DWTF/V%@UF"^Z;$;.N98'9LXOVX1D>ASD/ MP\-JYPH/"O%^'E*OJ+E0?1:&"]9'87C@.ZY"FY,M+*0]V,+#&E#6%A[=$0%K8\&<("5X<]>.B\Q]#0.NK!8H#]3*PI;7UH@C<#[F.- M[4D(%I1K8/5>2A:PVE;,1;.7`?;$`A?+EFO/*W"P9A6B[^9X#UCO"B3N,-/#Z_,O9^/3\\]G[+V>G+-$[ M6_PXB90[_+H_3K*#-1^@8(FM]J5QT,UM:3R\WI7&@II-:2QHN2>-4Q?E,$T) M-3O2F$C8D,:#5OO1`*X/CBY>SYY/7XR.7D\7]*5.6HIL.6)H=%%.D$@H?[%= M1;IXG.K2X"HHQH(W\F$TY^W\^73V2JG. M_)5ZX*A.&0#AI&?C'QSH3DB#4[551(,%-@$-5E9L/(.#A7`&"U>%*+CHTB!2 MVML*!5#@1BB`@C9"`32T"@50T&8H@,8V0@$<,+?*FO->$ML.!=!P/M2J.8FK M0@$TDJ<%+>\^!6YX]VEH8U"AP3O>?1Y#Y=UGP+GZT/+NT^""+3>KG2$DMO;P M4]"FAY_$-CS\%';'PT_#&QY^&MSP\//`#0\_R5!-.FAD[>%G8"L//P-;>O@9 MT-K#SP#7'GX.N/;PL]&EGXQD:#CM.=ARZ">Q#:<]B2V=]@Q@TVG/@[.U>=<3 MSV#8\<33'%5<@`&MG?8\,%MPWSS7T[;N."*#\][9;X.99#X5BB#@V:.]JT0!0?,'5>:(0H:VPI1D/!6B(*! M+M>>#"C;+C8B'R2T&7<@P>9"*AZT&:*@T7F/,7,O1$$RU)=1L>!E1(,"PG]Z MY+L=T:#1$1/'UHN"._14D0\2V'#0TM@ZEL'!`[]'G](T_3&3.]0RT`W,4N@YT MD2W2"$=1V"JT0T92JKM^.&A[U0\'VLN?7N]/[D876]79`OCL!ASM#9*)^N.$ MV:.!YELCVK?\:O;R^4MP+;]\F-""?4+BYII#:%]N/MO_A! MED4.-`YIU5WI:BYI85[$_LO)*MZG/"`4X?E-QZ)Z[02XB-HIB-#*G;X8V7K_ MNLG6WX<1&TX[%T2[Z5``V'R$6+KB,'+AX#4NM&YBZ31#J-9-UDUM.,8P@'6% M863K_'*1K;O+!=$A6`1@_5HH57NRNJDP!4'YP*N%$HT?"R4;SQ5.-KXJ@@[+ M*PQB=YPB9.NNPJE@0Q"J=4DA5'!"H:32[>0".'1%&7'AH,D,K?"F4PJ%--Q0 M&$8[GE"B<36YR`YF*FT]Q^VF?1<.]8>0O(O-$Z&GUY@42+6L?,#L0`W#VZ^% MP76W!%8Q:^5,00.5!P>C:N8$182,G1C-;-Q&JW:R)4$LW"4*NO!T8/7>:WY9' M`X&`4P(9IE57<@PL#2\%-LR[#83U,"!$W`+4JR^YJE*I!DQI;[9!4<:I M@%,=*=A-D-U4LQKLIC5=#MT(XV1`:';UB%"-TP$CEFX&G&X<"QC=NA*ZR7JM MB@RD:HS()U+9I"#?=-!WMAEV"RDW%B+4;TN!S=G$-V@JO*7M-D2$6&T\[*8W MMQIB"+VY$"&:[80(L=Q`B%2KW@J(TF#S'T:LMOMA`+AO#J&9"^;0EO;0%4]Y M+1Q&C=)0/CBH>!7K:^$P4K9T3O+LC6LHU;DNU7>J8:3Z$C44@1?)1ZUF=2\: M2C87H>'D$#5<]JHSA%C>;8:1H\1ELH%N;Z'`&@L@L._+078V!P!4!K=PU:<+ MXIKV`D!?DH'2<\=,O;RD#:.N<4TL[U1#J/457"A`W[F%4L&3AA#QI6=]=1!" MKZ__<0'*^WXP#+HZM??T($2X6"L(,6VR.XP18NG81,C-';8(I-XFBP#<[/5E M+TZ`8YIA;V9!B/I^%81F+U3!J6I9[:#J*U.ZR>4=*0C57(J"$1W.DYVMO`C( M;K)%J+"C%%RNCN$`MMXBE&JS+4['&[/:4-M-MOMB,:+>"=M-+/>^8E2[VQ4G MXWEVVYOJRE3,X-@+!C'M%&M\B5IMPL::66^[QMJA#$)TTU-_Z9)=!K40:I:L M\*3K72PX/487:57,"Z=GJ'8:*N[74&3P"6%D\"HY\JT#;"C-O3RU(3>4"LL. M-%]FCP-*=,S(#M;7`HP6+C-D>B`&>$CO;W-$Z.6 MUW?B=-@.YZ!F^(2ZNF$3)_OXG+6^0Q.GXUFSMV3B5'T>R4'6>Y@QNKGX$JWE=H'(=OS)%C/14?_^OP90G>6I]IGZJ"[:MMNN<2,BMUV;V23"M/CXY.;\\/?O/8W\;18_PL=DNT/M/IY\NKX_/A.=-U++2"?'5G/4N MR+;Y2S[T-0D-_%#$;'$%H5M\F9.MM,S)^E406BD\0780-<"3$"\C(9*6 MLB$50D&\6TDJJ(+1M>QM;FE(Q!`3DZVEECHYC?D1<3#9=DGG*7T@(1G9*;R, M4XL%V?2^>-PDJQ4)\\GF5Q!:I?UD34(RLKLK"".I+,F3=!.$I&F0'@E936DA M9+85A,ZV`H5D7:^"G!2TBOP[V,5!:LE&D+J]V9`UM`G(GK^):"E;.B_;2)!) MW=*M?IN24D):2D3;Z$@$/\C^'(F(U@TUG0S)_A,EVYQ.+J=+QI!2T%+HN4:T M)>VO@M#6+KJC<\-HB!_2(Y.*Z3$UEF3!XS5I,I+8HPN>"K)4J23K)I7D4*E6 MVB1D$SQ,7R]H&#D;2S?DY#$-R-X`%C")A)C1P&A)5R.`8*L5B:/K,B7U(Z5[ M8)K3E71')I2))0.RI-4BV4TY/'O*(3BBB*R\ANU2>T@G1 MLXL\I5LI9F!.K];O"`QCQN&TCS&-*A8DL-P08_4L(&) MA##L49&05E1!Z,E%D9"=H)!QDM*:\2@%[3G1(,;X M^DB[&1YSTJXK"-V[%"BB\TUKQP^YS`1GW?8#-W2?S]Z=7)^YO:M7G\\OOUQ3 MF$]POYX;=/;NXZ?KKQ?S%R[B2P=QX>)/'S':Q M[@8`RARE+%!*=^T!Y15&03,P0S,]PWG03*,$M#!H6="BO.TD7'Y5B2#%-+3N M+%R=7"`MJBDXR<$UPTF(U0$28E:`A-@-("&&`4A(YP42TCN!A'0_1<*+-9G@]S?!ZFN'U-,/K"<_['*^G.5Y/<[R>YHZT\'J: MX_4TQ^MICM?3'*^G.5Y/>`87>#TM\'I:X/6TP.MIX<@&7D\+O)X6>#TM\'I: MX/6$Y^(E7D]X_O#LX;E#,B?$C?"\FWQK]GJI'S'8YM'/$M@:^^A"P2E#F16! MS'%4%,0)3H4C5PYF3;XILL`!*8\:8`@XD)=/@NVRDUK&G5:9_-X-B,4DDF&W M;!DMPTF09-W$6&9KO/ZJ;=T@A$0D>>[&K%R5PTJ[*38NVIO7*%7O?<*(L;@5N'*49[%1^BU.TJ=OD15)FJDVGT[2,.A6 M*DV?O\`!F4NI\F`]D=M;E*9RUDDKQ-JA3"454R1-QY1($S$%,D2'\F@`KCCW MFZ"0X_L@"B7:6TS&,SF1W[?=6E+>I8"JDB$='2`-D`?]'$C8!^> M$['VUA3]C1L@XZ6(=_MX&Q.XTXC&=(5'8T:-16.RSJ(Q76L6,PZ3F,IX["T# M`@+'C7RY:W!V4/FNM=JCNUN!S$>Z>0R#E`'974BW,:I:?.E6?4YY.^Z\J0'Z MQ(*,5@3"W8X:LF_G:T!T/W6:BNA^1M#G;J,GU(0QFZB!VP%Y>'7CT3T91B3" M)FD(T4,TAI&2RR24`%P;-<+1X36=ZO$6Q"D0U:$M*%YF>!4J`QOL,A`#%1ZD=`4I$5-&S)D*3G5IS4:-S2 MC:DO$'!UP!J%5!0,)\?"B[?11$WM"$21=6J]1OC!7:"/0(:WG=G1(#BQ^!B+ M:!+X#RA(Y?0N=N;&()RY4$H%)B>4^U5`UQ2J%;"E!T2P&*:*D:XLZ1JZ5*@%,"V5)-D%,2T5(U MQ"E%_;MQ=CP`;5/_1L3HNK`&.22I`D6I3,N_+HA3>]H@I&PEB-*@$D?I4"4/ M;_\F9#]7]F,$QR(-CI-L;:-7U<_K;7`,04VXZO'X-!/K+^IALBFB7>]_'SD? MU,.9'Q1)=FIOCKQ*TFWZ$6[A@[MLGES\$PB\A(]2/8&<:W$'EZ(-E*2:\O@= M7#KRF_GU@_KA$%E0Y9"K*Q'+\!!!U](KE#H_@9SB/(8EB/3:*T]NES>?Y$ M2>!ZGV^+:_GA2%%FPW!8PJ#R)=-45_SO%EX(_F`T=3R.T;+(# M%#4O1%9LT^-340C85':@F*LL68/%GOR:9,$/N!@NO)#Q]JFD'B;F6HVT^6:@ M$#VF79DOM1Q0I,\RWX9%#A+>B:%ZH$:.K^F!(C;)O2W0[J%_JFO$Q?GG22IF'@"1CEGTR0'@B&E*Q;W)50ZC-@67WL7KX4;32,F".U'(SS`E&*0M M6HK*!"C;[W"??G\1ME8.X%2F_^PA&))]*^%CLDZ&K MC*&&ODPSJ7J=],O9?'>B)^D+MQ&ANG83SQ*GMZK.X:ORW"`%"@2MU*M MSO*)M_?%AE8=W\D,OLHP+AC>%_B"BEA+73LTC&P?-10$(@Q^J/I>,;P->?$8 MRGPCX4J6O9U5)5`MH%7*Q^]4%N[5ZOQ&9%ER?Z-6!(7J^.M@UU6_P_8AR09P M_35A0\]C**DV[&P>J_,WH>HR-^M,/L(7*WJRA?IC$OUX\@ATD>9)EC>1B-5S MQB[29[G*5%,.Q,\<#&&P/!8/0:[_,Q9JEO)-[`:*.K$@X MCWV85)VNP3_'8%&C;I9Z'*02NO@VGDYFDP4'G@OQC8531B&4K+J[S_UP00G] M?'9R>G'F$N45,"S"Z.R6]$WG?Q-WNADZNC'U7]X'"M)O[0!FP:GT"&:8;#I;R M&3XP(I^BDHVDIZB=6A+DR3C+#Q#W,?%$>!+[;;$?]"QJ@-C.X,)`.>W`PD`A MK:#"8!G-@,)P(A6%T(+TORH1(^ZT\>?=`SOZ$R3F"3^X$B:J_"I>K(!RG_1[&4 M(33VN^1AN.ZG:AT'=]#W%T"'0PZ7V0R%'"X-"X,<+AD-@1PN>B?\<;C`5NAC M@+C=L,=P$55PHK^($_].J#+YG[0_:4@][X03^@MHQP'Z\^^%109DP38MM,7` M$K2B$/U%?!3;V-O\)L+?SQ9=Z$ZPEES7H*`T>74AC;4-?Z[2`1VL-PN)A!QK4M`@*` M3Y`3$/,$N8%Z.31'7V1>7&V7JJT/EF*"<,/$M*.K`YA+;6L%)0?(J2*T`WAW M@ID#)#3CNT,RT(Z##J]&B`X/X#9MK^90P]H0]/ESD@RK.F`>8(]-O>D.<$"U MJ78[>7\ZD/-7&0ZJ+ICLG[X;PGDA;J5QVZ[ZZIE5D&%<.D`]B-,&IP?Q_B8R M:M8$'PG=0L"B_&52WWQ'LH`=5_VUV+MW8A]JO_A,XL!G'*V=6\!J<"Z_4YMD MMJK\^7$0JW5Z&([MKV-CO"=H+-MPW7$770W.P-G'\_=GE]<8U3:UJUFV<=E%\,HH<_"+'V19-#(8/_%*7"3B MK0CS9R,,4,W73$Y(F+X4A93V;$QE"$VIV!8);#S`\[PCO.1K''EQ(/3)("<= M[H7!Z?K&HRZJ_KQD%T%?A&*_,NE`F+O4'0!SD[H#8*Y1=P+T'>HXHINBRTV0 M)5P+-D+)Y1UF#L324>E:.DXF\H8V6:/!7710&)Q>JAQ:M.Z,MPR)&U+99S<, M&:+[,VE;WIL-Z?I]G#P#67NS-?S,PWC;7O-!,B#$,HS1!H&',/?EX>))G!L` M5Y\Z`6:?D1OCV(\YB)&GS^0V]0/8![&R=9M_(&:P'*WCG7:1PUSJ>:?IY:8^ ME'FW"@;+L4TQL!8&I=M0ON'LPUC+/C.$6??4`?74AX>%)4'NXEECY<24^_-( ME!MP4-<9W&V>HLL0W64`;V\>;C<9V$4&=P]\2M:;#7I43R8NGL2Y`?6G)H+)AQ0KH=<"+VDP@%VU88"NBF@N8'J]5HG&TO1V43>EF0 M%K!-.5X%ZRW<:JX)EC[1MX0@F&?C\9B2\ZC__D_CI=!?)QOGHV>C8/5Z/^.QJO1S__XX_/_.3W_?/7Y[,/Y?_[SYW^\ M__I9O?Y3^Q;!E$V"V!O]OW\;%1NX&!EE^WQV\M').AJ-Y$-0/!NM`I7^$;AY M`//O?S_>YIG.6'0+/X[&Q?__'NY,O[7__Y4R5Q M/!KELAC][:>SB\NO?_M)/?QZ<7'V63]=G%V'ZE'[]\NOKT MMY^>'97LIY\N3LXO3[Y\/O]/3:_$G5V?7RR<@O_4(5@]_&842B4RDF$NH>Q5 M*?U`A,EZ-!X701'*T4\&^I>1^GMR??U?(U$'[/*?%,P+IJ-H+,'\'-LH\M]M%&W,G14LIX)'R1%M(?%8EJ@&VL-WB.1*Z9 M1LEJ9'(Q^9NJU2N5H!*:RU!Z16>VE)21]4'^165Q"O]_I;(XAIK[TT]W/_\# M'FY^/_M\??[I\I^C\0AV-HUA3Y(_BF2\_6GTZ1+PNEHU@WYJ6SRE5MB1E+O_2YYH-DU!SRT2IV).(]43U5_Y<@W6\5+KME_C(Z+*#VNFG2B MWB8___SL:%@#O%5"CQJJK'/4>*\S!C5@/@(QRHMLZ\'W0D;EZ&BS=X0T)=J6 M1[JSC#0'/+58]/[,D7=Z>0(Y5S6?1($W4J\E,ZH()J]@*$`CJMPABH!JPE&G M)J!->N14`UQ]CA!5&(T(;3BR%D/5WW3R(O,`_YNX$Z._?CTO(4IA?BZMIK*@ M2F8FBSL1_OO/_QL,^LC8R7'>K59-JVD,W]^5,G5C_PZVL916I5D/`BT)%?WO MD"5EW%4":CBX^"<,$XB&JZQ'>A1IE\<#M?_9E$K5+?PT&KWXLQ[+%B^>3Q>C MH\7+Y[,7>C13PTDN/#NS:6#](;_0=OP'MVA`MLC'3/CC"A MV'`(!;W?0&W"D#;5@YF?U(6?0KF/_O2GG5'IS_#;GZ2W248__7'^Y=>;!O7? M__0H\Y\`\&__9JJL',+^;%Y53=6,0+$E80=$KO2T*2= M1*`-7\V?OQT=O5X\G\YL$XZJ4;-+#E"Z\EH-KWNYM93]_/[KCOSS6.E8X(\2 MO<'@?^5__LOHYW_]2;7DL2_OU$+(EUEFNDI#FYFJ8[BLAO,5PV9/S9%&TZJ\ ,I9K_?WLXEC)F``(` ` end --- emboss.diff.gz.uu ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 9:10:13 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DAE7537B401 for ; Fri, 28 Feb 2003 09:10:09 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3ACAF43FD7 for ; Fri, 28 Feb 2003 09:10:08 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SHA8NS063023 for ; Fri, 28 Feb 2003 09:10:08 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SHA84D063022; Fri, 28 Feb 2003 09:10:08 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C2B3F37B401 for ; Fri, 28 Feb 2003 09:08:55 -0800 (PST) Received: from zebu.yokohama.riken.go.jp (zebu.yokohama.riken.go.jp [134.160.84.77]) by mx1.FreeBSD.org (Postfix) with SMTP id B986343FDF for ; Fri, 28 Feb 2003 09:08:54 -0800 (PST) (envelope-from mitsuru@zebu.yokohama.riken.go.jp) Received: (qmail 86274 invoked by uid 123); 28 Feb 2003 17:09:14 -0000 Message-Id: <20030228170914.86273.qmail@zebu.yokohama.riken.go.jp> Date: 28 Feb 2003 17:09:14 -0000 From: mitsuru@riken.go.jp Reply-To: mitsuru@riken.go.jp To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48788: update ports japanese/texinfo Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48788 >Category: ports >Synopsis: update ports japanese/texinfo >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 09:10:07 PST 2003 >Closed-Date: >Last-Modified: >Originator: User & >Release: FreeBSD 5.0-RELEASE i386 >Organization: >Environment: FreeBSD 5.0-RELEASE >Description: update ports japanese/texinfo ja-texinfo-4.5 >How-To-Repeat: >Fix: diff -urN texinfo.old/Makefile texinfo/Makefile --- texinfo.old/Makefile Mon Feb 24 15:07:44 2003 +++ texinfo/Makefile Sat Mar 1 01:47:14 2003 @@ -6,7 +6,7 @@ # PORTNAME= texinfo -PORTVERSION= 4.0 +PORTVERSION= 4.5 CATEGORIES= japanese print MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -19,7 +19,7 @@ MAINTAINER= mitsuru@riken.go.jp COMMENT= Typeset Texinfo files for printing. Uses TeX -RUN_DEPENDS= ptex:${PORTSDIR}/japanese/ptex-euc +RUN_DEPENDS= ptex:${PORTSDIR}/japanese/ptex-euc GNU_CONFIGURE= yes CONFIGURE_ARGS= --program-prefix=j diff -urN texinfo.old/distinfo texinfo/distinfo --- texinfo.old/distinfo Mon Feb 24 15:07:44 2003 +++ texinfo/distinfo Mon Feb 24 15:08:38 2003 @@ -1,2 +1,2 @@ -MD5 (texinfo-4.0.tar.gz) = 070493baeb2c277c34575b0df4e2baf1 -MD5 (texinfo-4.0-j.diff.gz) = acefde3a4793ba7c776f929c3a4524dd +MD5 (texinfo-4.5.tar.gz) = 8a5d6b54bc2ff5ec51c696a4e89d93b2 +MD5 (texinfo-4.5-j.diff.gz) = 303bf7fe264881da010b8e5ad8002563 diff -urN texinfo.old/files/patch-aa texinfo/files/patch-aa --- texinfo.old/files/patch-aa Mon Feb 24 15:07:44 2003 +++ texinfo/files/patch-aa Thu Jan 1 09:00:00 1970 @@ -1,11 +0,0 @@ ---- info/Makefile.in.dist Mon Aug 16 13:44:59 1999 -+++ info/Makefile.in Mon Aug 16 13:51:35 1999 -@@ -98,7 +98,7 @@ - # we need to override it, so include them ourselves. - INCLUDES = -I. -I$(top_srcdir)/lib -I../intl -I.. -I$(srcdir) - DEFS = -DINFODIR=\"$(infodir)\" -DLOCALEDIR=\"$(localedir)\" @DEFS@ --LDADD = ../lib/libtxi.a @TERMLIBS@ @INTLLIBS@ -+LDADD = ../lib/libtxi.a -ltermcap @INTLLIBS@ - - EXTRA_DIST = README pcterm.c - diff -urN texinfo.old/pkg-plist texinfo/pkg-plist --- texinfo.old/pkg-plist Mon Feb 24 15:07:44 2003 +++ texinfo/pkg-plist Sat Mar 1 01:41:21 2003 @@ -1,4 +1,5 @@ bin/jinfo +bin/jinfokey bin/jmakeinfo bin/jinstall-info bin/jtexindex @@ -21,18 +22,32 @@ info/texinfo-11 info/texinfo-12 info/texinfo-13 +info/texinfo-14 +info/texinfo-15 info/info-stnd.info info/info-stnd.info-1 info/info-stnd.info-2 +info/info-stnd.info-3 @exec install-info %D/info/info.info %D/info/dir @exec install-info %D/info/texinfo %D/info/dir @exec install-info %D/info/info-stnd.info %D/info/dir +lib/charset.alias +share/texinfo/texinfo.dtd +share/texinfo/texinfo.xsl share/texmf/tex/generic/dvips/epsf.tex share/texmf/tex/texinfo/texinfo.tex share/texmf/tex/texinfo/txi-cs.tex share/texmf/tex/texinfo/txi-de.tex share/texmf/tex/texinfo/txi-no.tex share/texmf/tex/texinfo/txi-ja.tex +share/texmf/tex/texinfo/txi-en.tex +share/texmf/tex/texinfo/txi-es.tex +share/texmf/tex/texinfo/txi-fr.tex +share/texmf/tex/texinfo/txi-it.tex +share/texmf/tex/texinfo/txi-nl.tex +share/texmf/tex/texinfo/txi-pt.tex +share/texmf/tex/texinfo/txi-tr.tex +share/texmf/pdftex/plain/misc/pdfcolor.tex share/locale/de/LC_MESSAGES/texinfo.mo share/locale/fr/LC_MESSAGES/texinfo.mo share/locale/nl/LC_MESSAGES/texinfo.mo @@ -41,6 +56,15 @@ share/locale/de_AT/LC_MESSAGES/texinfo.mo share/locale/eo/LC_MESSAGES/texinfo.mo share/locale/ru/LC_MESSAGES/texinfo.mo +share/locale/da/LC_MESSAGES/texinfo.mo +share/locale/locale.alias +share/locale/he/LC_MESSAGES/texinfo.mo +share/locale/hr/LC_MESSAGES/texinfo.mo +share/locale/ja/LC_MESSAGES/texinfo.mo +share/locale/sv/LC_MESSAGES/texinfo.mo +share/locale/tr/LC_MESSAGES/texinfo.mo +share/locale/zh_CN/LC_MESSAGES/texinfo.mo +share/locale/zh_TW/LC_MESSAGES/texinfo.mo @unexec rmdir %D/share/locale/*/LC_MESSAGES 2>/dev/null || true @unexec rmdir %D/share/locale/* 2>/dev/null || true @unexec rmdir %D/share/locale 2>/dev/null || true >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 9:10:15 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0336137B405 for ; Fri, 28 Feb 2003 09:10:10 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8399A43FCB for ; Fri, 28 Feb 2003 09:10:07 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SHA7NS063010 for ; Fri, 28 Feb 2003 09:10:07 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SHA7kD063009; Fri, 28 Feb 2003 09:10:07 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B274637B401 for ; Fri, 28 Feb 2003 09:05:04 -0800 (PST) Received: from smtp.comcast.net (smtp.comcast.net [24.153.64.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0078B43FCB for ; Fri, 28 Feb 2003 09:05:02 -0800 (PST) (envelope-from trish@femme.sapphite.org) Received: from femme.sapphite.org (pcp02268182pcs.longhl01.md.comcast.net [68.50.99.190]) by mtaout06.icomcast.net (iPlanet Messaging Server 5.2 HotFix 1.09 (built Jan 7 2003)) with ESMTP id <0HB1004003GDWJ@mtaout06.icomcast.net> for FreeBSD-gnats-submit@freebsd.org; Fri, 28 Feb 2003 12:05:01 -0500 (EST) Received: from femme.sapphite.org (trish@localhost [127.0.0.1]) by femme.sapphite.org (8.12.6/8.12.6) with ESMTP id h1SH4tNu051311; Fri, 28 Feb 2003 12:04:55 -0500 Received: (from trish@localhost) by femme.sapphite.org (8.12.6/8.12.6/Submit) id h1SH4s0r051310; Fri, 28 Feb 2003 12:04:54 -0500 (EST) Message-Id: <200302281704.h1SH4s0r051310@femme.sapphite.org> Date: Fri, 28 Feb 2003 12:04:54 -0500 (EST) From: Trish Lynch Reply-To: Trish Lynch To: FreeBSD-gnats-submit@FreeBSD.org Cc: trish@bsdunix.net X-Send-Pr-Version: 3.113 Subject: ports/48787: Ecartis port has security hole in LSG/2 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48787 >Category: ports >Synopsis: Ecartis port has security hole in LSG/2 >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 09:10:06 PST 2003 >Closed-Date: >Last-Modified: >Originator: Trish Lynch >Release: FreeBSD 5.0-RELEASE i386 >Organization: Ecartis core team >Environment: System: FreeBSD femme.sapphite.org 5.0-RELEASE FreeBSD 5.0-RELEASE #28: Sat Jan 18 07:40:42 EST 2003 root@femme.sapphite.org:/admins/obj/admins/src/sys/FEMME i386 >Description: Ecartis LSG/2 Web management interface allowed any user to change another's password via careful manipulation of HTML code and POST >How-To-Repeat: >Fix: Please update the port with the patch @ http://bsdunix.net/ports/ecartis-port-snap20030227.patch >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 9:25:37 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F06D737B401; Fri, 28 Feb 2003 09:25:36 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 949F143FAF; Fri, 28 Feb 2003 09:25:36 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from freefall.freebsd.org (nork@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SHPaNS067247; Fri, 28 Feb 2003 09:25:36 -0800 (PST) (envelope-from nork@freefall.freebsd.org) Received: (from nork@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SHPaEI067243; Fri, 28 Feb 2003 09:25:36 -0800 (PST) Date: Fri, 28 Feb 2003 09:25:36 -0800 (PST) From: Norikatsu Shigemura Message-Id: <200302281725.h1SHPaEI067243@freefall.freebsd.org> To: mitsuru@riken.go.jp, nork@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48788: update ports japanese/texinfo Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: update ports japanese/texinfo State-Changed-From-To: open->closed State-Changed-By: nork State-Changed-When: Fri Feb 28 09:25:22 PST 2003 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48788 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 10: 0:58 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E24437B405 for ; Fri, 28 Feb 2003 10:00:26 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B3F6343FDD for ; Fri, 28 Feb 2003 10:00:22 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SI0MNS073447 for ; Fri, 28 Feb 2003 10:00:22 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SI0MF7073446; Fri, 28 Feb 2003 10:00:22 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7307C37B401 for ; Fri, 28 Feb 2003 09:56:26 -0800 (PST) Received: from kurush.osdn.org.ua (external.osdn.org.ua [212.40.34.156]) by mx1.FreeBSD.org (Postfix) with ESMTP id C51FF43FA3 for ; Fri, 28 Feb 2003 09:39:58 -0800 (PST) (envelope-from never@kurush.osdn.org.ua) Received: from kurush.osdn.org.ua (never@localhost [127.0.0.1]) by kurush.osdn.org.ua (8.12.6/8.12.6) with ESMTP id h1SEGkM9081671 for ; Fri, 28 Feb 2003 16:16:46 +0200 (EET) (envelope-from never@kurush.osdn.org.ua) Received: (from never@localhost) by kurush.osdn.org.ua (8.12.6/8.12.6/Submit) id h1SEGkL3081670; Fri, 28 Feb 2003 16:16:46 +0200 (EET) Message-Id: <200302281416.h1SEGkL3081670@kurush.osdn.org.ua> Date: Fri, 28 Feb 2003 16:16:46 +0200 (EET) From: Alexandr Kovalenko Reply-To: Alexandr Kovalenko To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48789: [PATCH] editors/openoffice: make OO.o support uk_UA.KOI8-U locale correctly Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48789 >Category: ports >Synopsis: [PATCH] editors/openoffice: make OO.o support uk_UA.KOI8-U locale correctly >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 10:00:21 PST 2003 >Closed-Date: >Last-Modified: >Originator: Alexandr Kovalenko >Release: FreeBSD 4.7-RELEASE-p4 i386 >Organization: WNet ISP, Kiev, Ukraine, http://wnet.ua/ >Environment: System: FreeBSD kurush.osdn.org.ua 4.7-RELEASE-p4 FreeBSD 4.7-RELEASE-p4 #0: Wed Feb 5 19:25:23 EET 2003 root@kurush.osdn.org.ua:/usr/obj/usr/src/sys/kurush i386 >Description: - Add/fix support for uk_UA.KOI8-U locale for FreeBSD >How-To-Repeat: N/A >Fix: diff -ruN openoffice.orig/Makefile openoffice/Makefile --- openoffice.orig/Makefile Mon Feb 24 15:27:50 2003 +++ openoffice/Makefile Fri Feb 28 14:12:30 2003 @@ -7,6 +7,7 @@ PORTNAME= openoffice PORTVERSION= 1.0.2 +PORTREVISION= 1 CATEGORIES+= editors MASTER_SITES+= http://ny1.mirror.openoffice.org/%SUBDIR%/ \ http://ftp.gwdg.de/pub/misc/openoffice/%SUBDIR%/ \ diff -ruN openoffice.orig/files/patch-dtrans+source+X11+X11_selection.cxx openoffice/files/patch-dtrans+source+X11+X11_selection.cxx --- openoffice.orig/files/patch-dtrans+source+X11+X11_selection.cxx Wed Jul 31 10:29:23 2002 +++ openoffice/files/patch-dtrans+source+X11+X11_selection.cxx Fri Feb 28 13:28:00 2003 @@ -9,3 +9,11 @@ #include #else #include +@@ -175,6 +175,7 @@ + { 0, "text/plain;charset=ksc5601.1992-0", "KSC5601.1992-0", 8 }, + // eastern european encodings + { 0, "text/plain;charset=koi8-r", "KOI8-R", 8 }, ++ { 0, "text/plain;charset=koi8-u", "KOI8-U", 8 }, + // String (== iso8859-1) + { XA_STRING, "text/plain;charset=string", "STRING", 8 }, + // special for compound text diff -ruN openoffice.orig/files/patch-i18npool+source+localedata+localedata.cxx openoffice/files/patch-i18npool+source+localedata+localedata.cxx --- openoffice.orig/files/patch-i18npool+source+localedata+localedata.cxx Thu Jan 1 00:00:00 1970 +++ openoffice/files/patch-i18npool+source+localedata+localedata.cxx Fri Feb 28 13:18:07 2003 @@ -0,0 +1,11 @@ +diff -ruN ../i18npool/source/localedata/localedata.cxx ../i18npool/source/localedata/localedata.cxx +--- ../i18npool/source/localedata/localedata.cxx Mon Feb 24 17:47:22 2003 ++++ ../i18npool/source/localedata/localedata.cxx Tue Feb 25 16:41:58 2003 +@@ -150,6 +150,7 @@ + { "pt_BR", lcl_ASCII }, + { "pt_PT", lcl_ASCII }, + { "ru_RU", lcl_ASCII }, ++ { "uk_UA", lcl_ASCII }, + { "sv_FI", lcl_ASCII }, + { "tr_TR", lcl_ASCII }, + { "th_TH", lcl_ASCII }, // PlaDao convenience entry diff -ruN openoffice.orig/files/patch-i18npool+source+localedata_ascii+makefile.mk openoffice/files/patch-i18npool+source+localedata_ascii+makefile.mk --- openoffice.orig/files/patch-i18npool+source+localedata_ascii+makefile.mk Thu Jan 1 00:00:00 1970 +++ openoffice/files/patch-i18npool+source+localedata_ascii+makefile.mk Fri Feb 28 13:18:07 2003 @@ -0,0 +1,19 @@ +diff -ruN ../i18npool/source/localedata_ascii/makefile.mk ../i18npool/source/localedata_ascii/makefile.mk +--- ../i18npool/source/localedata_ascii/makefile.mk Sun Nov 17 23:27:32 2002 ++++ ../i18npool/source/localedata_ascii/makefile.mk Tue Feb 25 16:43:21 2003 +@@ -138,6 +138,7 @@ + $(MISC)$/localedata_pt_BR.cxx \ + $(MISC)$/localedata_pt_PT.cxx \ + $(MISC)$/localedata_ru_RU.cxx \ ++ $(MISC)$/localedata_uk_UA.cxx \ + $(MISC)$/localedata_sv_FI.cxx \ + $(MISC)$/localedata_tr_TR.cxx \ + $(MISC)$/localedata_nb_NO.cxx \ +@@ -208,6 +209,7 @@ + $(SLO)$/localedata_pt_BR.obj \ + $(SLO)$/localedata_pt_PT.obj \ + $(SLO)$/localedata_ru_RU.obj \ ++ $(SLO)$/localedata_uk_UA.obj \ + $(SLO)$/localedata_sv_FI.obj \ + $(SLO)$/localedata_tr_TR.obj \ + $(SLO)$/localedata_nb_NO.obj \ diff -ruN openoffice.orig/files/patch-i18npool+source+localedata_ascii+uk_UA.xml openoffice/files/patch-i18npool+source+localedata_ascii+uk_UA.xml --- openoffice.orig/files/patch-i18npool+source+localedata_ascii+uk_UA.xml Thu Jan 1 00:00:00 1970 +++ openoffice/files/patch-i18npool+source+localedata_ascii+uk_UA.xml Fri Feb 28 13:18:07 2003 @@ -0,0 +1,455 @@ +diff -ruN ../i18npool/source/localedata_ascii/uk_UA.xml ../i18npool/source/localedata_ascii/uk_UA.xml +--- ../i18npool/source/localedata_ascii/uk_UA.xml Thu Jan 1 00:00:00 1970 ++++ ../i18npool/source/localedata_ascii/uk_UA.xml Fri Feb 28 13:04:01 2003 +@@ -0,0 +1,451 @@ ++ ++ ++ ++ ++ ++uk ++Ukrainian ++ ++ ++UA ++Ukraine ++ ++ ++generic ++ ++ ++ ++ ++ ++. ++ ++, ++: ++, ++; ++ ++ ++ ++ Ñ€. ++ ++ ++‘ ++’ ++“ ++†++ ++AM ++PM ++Metric ++ ++ ++ ++M/D/YY ++ ++ ++ ++NN DD/MMM YY ++ ++ ++ ++MM/YY ++ ++ ++ ++MMM DD ++ ++ ++ ++MMMM ++ ++ ++ ++QQ YY ++ ++ ++ ++MM/DD/YYYY ++ ++ ++ ++MM/DD/YY ++ ++ ++ ++NNNNMMMM DD, YYYY ++ ++ ++ ++MMM D, YY ++ ++ ++ ++MMM D, YYYY ++ ++ ++ ++MMMM D, YYYY ++ ++ ++ ++NN, MMM D, YY ++ ++ ++ ++NN, MMMM D, YYYY ++ ++ ++ ++NNNNMMMM D, YYYY ++DIN 5008 (EN 28601) ++ ++ ++D. MMM. YYYY ++DIN 5008 (EN 28601) ++ ++ ++D. MMMM YYYY ++DIN 5008 (EN 28601) ++ ++ ++MM-DD ++DIN 5008 (EN 28601) ++ ++ ++YY-MM-DD ++DIN 5008 (EN 28601) ++ ++ ++YYYY-MM-DD ++ ++ ++ ++WW ++ ++ ++ ++HH:MM ++ ++ ++ ++HH:MM:SS ++ ++ ++ ++HH:MM AM/PM ++ ++ ++ ++HH:MM:SS AM/PM ++ ++ ++ ++[HH]:MM:SS ++ ++ ++ ++MM:SS,00 ++ ++ ++ ++[HH]:MM:SS,00 ++ ++ ++ ++MM/DD/YY HH:MM ++ ++ ++ ++MM/DD/YYYY HH:MM:SS ++ ++ ++ ++Standard ++ ++ ++ ++0 ++ ++ ++ ++0,00 ++ ++ ++ ++# ##0 ++ ++ ++ ++# ##0,00 ++ ++ ++ ++# ###,00 ++ ++ ++ ++[$грн.-419]# ##0;-[$грн.-419]# ##0 ++ ++ ++ ++[$грн.-419]# ##0,00;-[$грн.-419]# ##0,00 ++ ++ ++ ++ [$грн.-419]# ##0;[RED]-[$грн.-419]# ##0 ++ ++ ++ ++[$грн.-419]# ##0,00;[RED]-[$грн.-419]# ##0,00 ++ ++ ++ ++# ##0,00 CCC ++ ++ ++ ++[$грн.-419]# ##0,--;[RED]-[$грн.-419]# ##0,-- ++ ++ ++ ++0% ++ ++ ++ ++0,00% ++ ++ ++ ++0,00E+000 ++ ++ ++ ++0,00E+00 ++ ++ ++ ++ ++ ++ ++IGNORE_CASE ++ ++ ++ ++ ++IGNORE_CASE ++ ++ ++ ++ ++ ++ ++sun ++Ðд ++Ð½ÐµÐ´Ñ–Ð»Ñ ++ ++ ++mon ++Пн ++понеділок ++ ++ ++tue ++Ð’Ñ‚ ++вівторок ++ ++ ++wed ++Ср ++Ñереда ++ ++ ++thu ++Чт ++четвер ++ ++ ++fri ++Пт ++п'ÑÑ‚Ð½Ð¸Ñ†Ñ ++ ++ ++sat ++Сб ++Ñубота ++ ++ ++ ++ ++jan ++Ñіч ++Січень ++ ++ ++feb ++лют ++Лютий ++ ++ ++mar ++бер ++Березень ++ ++ ++apr ++квт ++Квітень ++ ++ ++may ++трв ++Травень ++ ++ ++jun ++чер ++Червень ++ ++ ++jul ++лип ++Липень ++ ++ ++aug ++Ñер ++Серпень ++ ++ ++sep ++вер ++ВереÑень ++ ++ ++oct ++жов ++Жовтень ++ ++ ++nov ++Ð»Ð¸Ñ ++ЛиÑтопад ++ ++ ++dec ++гру ++Грудень ++ ++ ++ ++ ++bc ++до н.е. ++до н.е. ++ ++ ++ad ++н.е. ++н.е. ++ ++ ++ ++sun ++ ++1 ++ ++ ++ ++ ++грн. ++грн. ++UAH ++Hrivnya ++2 ++ ++ ++ ++ ++ ++ ++ ++ ++ ++true ++false ++1st quarter ++2nd quarter ++3rd quarter ++4th quarter ++above ++below ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ diff -ruN openoffice.orig/files/patch-sal+inc+rtl+textenc.h openoffice/files/patch-sal+inc+rtl+textenc.h --- openoffice.orig/files/patch-sal+inc+rtl+textenc.h Thu Jan 1 00:00:00 1970 +++ openoffice/files/patch-sal+inc+rtl+textenc.h Fri Feb 28 13:18:07 2003 @@ -0,0 +1,22 @@ +diff -ruN ../sal/inc/rtl/textenc.h ../sal/inc/rtl/textenc.h +--- ../sal/inc/rtl/textenc.h Mon Feb 24 17:46:26 2003 ++++ ../sal/inc/rtl/textenc.h Tue Feb 25 16:45:00 2003 +@@ -173,8 +173,9 @@ + #define RTL_TEXTENCODING_MS_1361 (RTL_TEXTENC_CAST( 84 )) + #define RTL_TEXTENCODING_GB_18030 (RTL_TEXTENC_CAST( 85 )) + #define RTL_TEXTENCODING_BIG5_HKSCS (RTL_TEXTENC_CAST( 86 )) ++#define RTL_TEXTENCODING_KOI8_U (RTL_TEXTENC_CAST( 87 )) + +-#define RTL_TEXTENCODING_STD_COUNT (RTL_TEXTENC_CAST( 87 )) ++#define RTL_TEXTENCODING_STD_COUNT (RTL_TEXTENC_CAST( 88 )) + + #define RTL_TEXTENCODING_USER_START (RTL_TEXTENC_CAST( 0x8000 )) + #define RTL_TEXTENCODING_USER_END (RTL_TEXTENC_CAST( 0xEFFF )) +@@ -223,6 +224,7 @@ + Cyrillic (DOS/OS2-866/Russian) RTL_TEXTENCODING_IBM_866 + Cyrillic (ISO-8859-5) RTL_TEXTENCODING_ISO_8859_5 + Cyrillic (KOI8-R) RTL_TEXTENCODING_KOI8_R ++Cyrillic (KOI8-U) RTL_TEXTENCODING_KOI8_U + Cyrillic (Windows-1251) RTL_TEXTENCODING_MS_1251 + + Greek (Apple Macintosh) RTL_TEXTENCODING_APPLE_GREEK diff -ruN openoffice.orig/files/patch-sal+osl+unx+nlsupport.c openoffice/files/patch-sal+osl+unx+nlsupport.c --- openoffice.orig/files/patch-sal+osl+unx+nlsupport.c Tue Sep 3 11:12:25 2002 +++ openoffice/files/patch-sal+osl+unx+nlsupport.c Fri Feb 28 13:55:23 2003 @@ -1,5 +1,5 @@ ---- ../sal/osl/unx/nlsupport.c.orig Tue May 21 15:22:11 2002 -+++ ../sal/osl/unx/nlsupport.c Tue Sep 3 12:58:48 2002 +--- ../sal/osl/unx/nlsupport.c Wed Jul 17 11:32:06 2002 ++++ ../sal/osl/unx/nlsupport.c Fri Feb 28 13:52:09 2003 @@ -63,7 +63,7 @@ #include #include @@ -109,8 +109,8 @@ + { "ISO8859-5", RTL_TEXTENCODING_ISO_8859_5 }, /* Cyrillic */ + { "ISO8859-7", RTL_TEXTENCODING_ISO_8859_7 }, /* Greek */ + { "ISO8859-9", RTL_TEXTENCODING_ISO_8859_9 }, /* Turkish */ -+ { "KOI-U", RTL_TEXTENCODING_DONTKNOW }, /* Not supported at the moment */ + { "KOI8-R", RTL_TEXTENCODING_KOI8_R }, /* KOI8 */ ++ { "KOI8-U", RTL_TEXTENCODING_KOI8_U }, /* KOI8-U */ + { "SJIS", RTL_TEXTENCODING_SHIFT_JIS }, /* Japan */ + { "US-ASCII", RTL_TEXTENCODING_ASCII_US }, /* US-ASCII */ + { "UTF-8", RTL_TEXTENCODING_UTF8 } /* ISO-10646/UTF-8 */ @@ -137,8 +137,8 @@ + { "ISO8859-5", RTL_TEXTENCODING_ISO_8859_5 }, /* Cyrillic */ + { "ISO8859-7", RTL_TEXTENCODING_ISO_8859_7 }, /* Greek */ + { "ISO8859-9", RTL_TEXTENCODING_ISO_8859_9 }, /* Turkish */ -+ { "KOI-U", RTL_TEXTENCODING_DONTKNOW }, /* Not supported at the moment */ + { "KOI8-R", RTL_TEXTENCODING_KOI8_R }, /* KOI8 */ ++ { "KOI8-U", RTL_TEXTENCODING_KOI8_U }, /* KOI8-U */ + { "SJIS", RTL_TEXTENCODING_SHIFT_JIS }, /* Japan */ + { "US-ASCII", RTL_TEXTENCODING_ASCII_US }, /* US-ASCII */ + { "UTF-8", RTL_TEXTENCODING_UTF8 } /* ISO-10646/UTF-8 */ @@ -166,7 +166,15 @@ /* * This implementation of osl_getTextEncodingFromLocale maps -@@ -887,6 +945,6 @@ +@@ -684,6 +742,7 @@ + { "iso8859-8", RTL_TEXTENCODING_ISO_8859_8 }, + { "iso8859-9", RTL_TEXTENCODING_ISO_8859_9 }, + { "koi8-r", RTL_TEXTENCODING_KOI8_R }, ++ { "koi8-u", RTL_TEXTENCODING_KOI8_U }, + { "pck", RTL_TEXTENCODING_MS_932 }, + #if (0) + { "sun_eu_greek", RTL_TEXTENCODING_DONTKNOW }, +@@ -887,6 +946,6 @@ return 0; } diff -ruN openoffice.orig/files/patch-sal+textenc+tcvtest1.tab openoffice/files/patch-sal+textenc+tcvtest1.tab --- openoffice.orig/files/patch-sal+textenc+tcvtest1.tab Thu Jan 1 00:00:00 1970 +++ openoffice/files/patch-sal+textenc+tcvtest1.tab Fri Feb 28 13:18:07 2003 @@ -0,0 +1,174 @@ +diff -ruN ../sal/textenc/tcvtest1.tab ../sal/textenc/tcvtest1.tab +--- ../sal/textenc/tcvtest1.tab Fri Oct 12 13:44:53 2001 ++++ ../sal/textenc/tcvtest1.tab Tue Feb 25 16:47:50 2003 +@@ -4328,3 +4328,170 @@ + "koi8-r", + RTL_TEXTENCODING_INFO_ASCII | RTL_TEXTENCODING_INFO_MIME }; + /* SCRIPT_CYRILLIC, pc code page 866 (855?), mac encoding 7 */ ++ ++/* ======================================================================= */ ++ ++/* KOI8_U */ ++/* Standard Charset for Ukrainian Cyrillic */ ++/* 1-Byte, 0x00-0x7F ASCII ohne Ausnahme */ ++/* Convert-Tables: typed per hand */ ++/* Last-Changes from us: */ ++ ++#define KOI8UUNI_START 0x80 ++#define KOI8UUNI_END 0xFF ++static sal_uInt16 const aImplKOI8UToUniTab[KOI8UUNI_END - KOI8UUNI_START + 1] = ++{ ++/* 0 1 2 3 4 5 6 7 */ ++/* 8 9 A B C D E F */ ++ 0x2500, 0x2502, 0x250C, 0x2510, 0x2514, 0x2518, 0x251C, 0x2524, /* 0x80 */ ++ 0x252C, 0x2534, 0x253C, 0x2580, 0x2584, 0x2588, 0x258C, 0x2590, /* 0x80 */ ++ 0x2591, 0x2592, 0x2593, 0x2320, 0x25A0, 0x2219, 0x221A, 0x2248, /* 0x90 */ ++ 0x2264, 0x2265, 0x00A0, 0x2321, 0x00B0, 0x00B2, 0x00B7, 0x00F7, /* 0x90 */ ++ 0x2550, 0x2551, 0x2552, 0x0451, 0x0454, 0x2554, 0x0456, 0x0457, /* 0xA0 */ ++ 0x2557, 0x2558, 0x2559, 0x255A, 0x255B, 0x0491, 0x255D, 0x255E, /* 0xA0 */ ++ 0x255F, 0x2560, 0x2561, 0x0401, 0x0404, 0x2563, 0x0406, 0x0407, /* 0xB0 */ ++ 0x2566, 0x2567, 0x2568, 0x2569, 0x256A, 0x0490, 0x256C, 0x00A9, /* 0xB0 */ ++ 0x044E, 0x0430, 0x0431, 0x0446, 0x0434, 0x0435, 0x0444, 0x0433, /* 0xC0 */ ++ 0x0445, 0x0438, 0x0439, 0x043A, 0x043B, 0x043C, 0x043D, 0x043E, /* 0xC0 */ ++ 0x043F, 0x044F, 0x0440, 0x0441, 0x0442, 0x0443, 0x0436, 0x0432, /* 0xD0 */ ++ 0x044C, 0x044B, 0x0437, 0x0448, 0x044D, 0x0449, 0x0447, 0x044A, /* 0xD0 */ ++ 0x042E, 0x0410, 0x0411, 0x0426, 0x0414, 0x0415, 0x0424, 0x0413, /* 0xE0 */ ++ 0x0425, 0x0418, 0x0419, 0x041A, 0x041B, 0x041C, 0x041D, 0x041E, /* 0xE0 */ ++ 0x041F, 0x042F, 0x0420, 0x0421, 0x0422, 0x0423, 0x0416, 0x0412, /* 0xF0 */ ++ 0x042C, 0x042B, 0x0417, 0x0428, 0x042D, 0x0429, 0x0427, 0x042A /* 0xF0 */ ++}; ++ ++/* ----------------------------------------------------------------------- */ ++ ++#define KOI8UCHAR_START 0x0410 ++#define KOI8UCHAR_END 0x044F ++static sal_uChar const aImplKOI8UToCharTab[KOI8UCHAR_END - KOI8UCHAR_START + 1] = ++{ ++/* 0 1 2 3 4 5 6 7 */ ++/* 8 9 A B C D E F */ ++ 0xE1, 0xE2, 0xF7, 0xE7, 0xE4, 0xE5, 0xF6, 0xFA, /* 0x0410 */ ++ 0xE9, 0xEA, 0xEB, 0xEC, 0xED, 0xEE, 0xEF, 0xF0, /* 0x0410 */ ++ 0xF2, 0xF3, 0xF4, 0xF5, 0xE6, 0xE8, 0xE3, 0xFE, /* 0x0420 */ ++ 0xFB, 0xFD, 0xFF, 0xF9, 0xF8, 0xFC, 0xE0, 0xF1, /* 0x0420 */ ++ 0xC1, 0xC2, 0xD7, 0xC7, 0xC4, 0xC5, 0xD6, 0xDA, /* 0x0430 */ ++ 0xC9, 0xCA, 0xCB, 0xCC, 0xCD, 0xCE, 0xCF, 0xD0, /* 0x0430 */ ++ 0xD2, 0xD3, 0xD4, 0xD5, 0xC6, 0xC8, 0xC3, 0xDE, /* 0x0440 */ ++ 0xDB, 0xDD, 0xDF, 0xD9, 0xD8, 0xDC, 0xC0, 0xD1 /* 0x0440 */ ++}; ++ ++/* ----------------------------------------------------------------------- */ ++ ++#define KOI8UTOCHARTABEX_COUNT 72 ++static ImplUniCharTabData const aImplKOI8UToCharTabEx[KOI8UTOCHARTABEX_COUNT] = ++{ ++ { 0x00A0, 0x9A }, ++ { 0x00A9, 0xBF }, ++ { 0x00B0, 0x9C }, ++ { 0x00B2, 0x9D }, ++ { 0x00B7, 0x9E }, ++ { 0x00F7, 0x9F }, ++ { 0x0401, 0xB3 }, ++ { 0x0404, 0xB4 }, ++ { 0x0406, 0xB6 }, ++ { 0x0407, 0xB7 }, ++ { 0x0451, 0xA3 }, ++ { 0x0454, 0xA4 }, ++ { 0x0456, 0xA6 }, ++ { 0x0457, 0xA7 }, ++ { 0x0490, 0xBD }, ++ { 0x0491, 0xAD }, ++ { 0x2219, 0x95 }, ++ { 0x221A, 0x96 }, ++ { 0x2248, 0x97 }, ++ { 0x2264, 0x98 }, ++ { 0x2265, 0x99 }, ++ { 0x2320, 0x93 }, ++ { 0x2321, 0x9B }, ++ { 0x2500, 0x80 }, ++ { 0x2502, 0x81 }, ++ { 0x250C, 0x82 }, ++ { 0x2510, 0x83 }, ++ { 0x2514, 0x84 }, ++ { 0x2518, 0x85 }, ++ { 0x251C, 0x86 }, ++ { 0x2524, 0x87 }, ++ { 0x252C, 0x88 }, ++ { 0x2534, 0x89 }, ++ { 0x253C, 0x8A }, ++ { 0x2550, 0xA0 }, ++ { 0x2551, 0xA1 }, ++ { 0x2552, 0xA2 }, ++ { 0x2553, 0xA4 }, ++ { 0x2554, 0xA5 }, ++ { 0x2555, 0xA6 }, ++ { 0x2556, 0xA7 }, ++ { 0x2557, 0xA8 }, ++ { 0x2558, 0xA9 }, ++ { 0x2559, 0xAA }, ++ { 0x255A, 0xAB }, ++ { 0x255B, 0xAC }, ++ { 0x255C, 0xAD }, ++ { 0x255D, 0xAE }, ++ { 0x255E, 0xAF }, ++ { 0x255F, 0xB0 }, ++ { 0x2560, 0xB1 }, ++ { 0x2561, 0xB2 }, ++ { 0x2562, 0xB4 }, ++ { 0x2563, 0xB5 }, ++ { 0x2564, 0xB6 }, ++ { 0x2565, 0xB7 }, ++ { 0x2566, 0xB8 }, ++ { 0x2567, 0xB9 }, ++ { 0x2568, 0xBA }, ++ { 0x2569, 0xBB }, ++ { 0x256A, 0xBC }, ++ { 0x256B, 0xBD }, ++ { 0x256C, 0xBE }, ++ { 0x2580, 0x8B }, ++ { 0x2584, 0x8C }, ++ { 0x2588, 0x8D }, ++ { 0x258C, 0x8E }, ++ { 0x2590, 0x8F }, ++ { 0x2591, 0x90 }, ++ { 0x2592, 0x91 }, ++ { 0x2593, 0x92 }, ++ { 0x25A0, 0x94 } ++}; ++ ++/* ----------------------------------------------------------------------- */ ++ ++static ImplByteConvertData const aImplKOI8UByteCvtData = ++{ ++ aImplKOI8UToUniTab, ++ NULL, ++ KOI8UUNI_START, KOI8UUNI_END, ++ NOTABUNI_START, NOTABUNI_END, ++ aImplKOI8UToCharTab, ++ NULL, ++ aImplKOI8UToCharTabEx, ++ KOI8UCHAR_START, KOI8UCHAR_END, ++ NOTABCHAR_START, NOTABCHAR_END, ++ KOI8UTOCHARTABEX_COUNT ++}; ++ ++/* ----------------------------------------------------------------------- */ ++ ++static ImplTextEncodingData const aImplKOI8UTextEncodingData ++ = { { &aImplKOI8UByteCvtData, ++ ImplCharToUnicode, ++ ImplUnicodeToChar, ++ NULL, ++ NULL, ++ NULL, ++ NULL, ++ NULL, ++ NULL }, ++ RTL_TEXTENCODING_KOI8_U, ++ 1, ++ 1, ++ 1, ++ 204, ++ "koi8-u", ++ "koi8-u", ++ RTL_TEXTENCODING_INFO_ASCII | RTL_TEXTENCODING_INFO_MIME }; ++ /* SCRIPT_CYRILLIC, pc code page 866 (855?), mac encoding 7 */ diff -ruN openoffice.orig/files/patch-sal+textenc+tencinfo.c openoffice/files/patch-sal+textenc+tencinfo.c --- openoffice.orig/files/patch-sal+textenc+tencinfo.c Wed Jul 31 09:54:50 2002 +++ openoffice/files/patch-sal+textenc+tencinfo.c Fri Feb 28 13:34:15 2003 @@ -1,5 +1,13 @@ --- ../sal/textenc/tencinfo.c.orig Wed Jul 31 11:44:35 2002 +++ ../sal/textenc/tencinfo.c Wed Jul 31 11:45:47 2002 +@@ -532,6 +532,7 @@ + static ImplStrCharsetDef const aUnixCharsetKOI8Tab[] = + { + { "r", RTL_TEXTENCODING_KOI8_R }, ++ { "u", RTL_TEXTENCODING_KOI8_U }, + { NULL, RTL_TEXTENCODING_DONTKNOW } + }; + @@ -695,6 +695,10 @@ /* characters. The function search for the first equal string in */ /* the table. In this table are only the most used mime types. */ @@ -11,3 +19,19 @@ static ImplStrCharsetDef const aVIPMimeCharsetTab[] = { { "usascii", RTL_TEXTENCODING_ASCII_US }, +@@ -741,6 +742,7 @@ + { "windows1256", RTL_TEXTENCODING_MS_1256 }, + { "windows1257", RTL_TEXTENCODING_MS_1257 }, + { "windows1258", RTL_TEXTENCODING_MS_1258 }, ++ { "koi8u", RTL_TEXTENCODING_KOI8_U }, + { NULL, RTL_TEXTENCODING_DONTKNOW } + }; + +@@ -815,6 +817,7 @@ + { "iso10646us", RTL_TEXTENCODING_ASCII_US }, + { "iso646irv", RTL_TEXTENCODING_ASCII_US }, + { "cskoi8r", RTL_TEXTENCODING_KOI8_R }, ++ { "cskoi8u", RTL_TEXTENCODING_KOI8_U }, + { "ibm437", RTL_TEXTENCODING_IBM_437 }, + { "cp437", RTL_TEXTENCODING_IBM_437 }, + { "437", RTL_TEXTENCODING_IBM_437 }, diff -ruN openoffice.orig/files/patch-sal+textenc+textenc.c openoffice/files/patch-sal+textenc+textenc.c --- openoffice.orig/files/patch-sal+textenc+textenc.c Thu Jan 1 00:00:00 1970 +++ openoffice/files/patch-sal+textenc+textenc.c Fri Feb 28 13:18:07 2003 @@ -0,0 +1,13 @@ +diff -ruN ../sal/textenc/textenc.c ../sal/textenc/textenc.c +--- ../sal/textenc/textenc.c Mon Feb 24 17:46:29 2003 ++++ ../sal/textenc/textenc.c Tue Feb 25 16:51:28 2003 +@@ -254,7 +254,8 @@ + &aImplJISX0212TextEncodingData, /* JIS_X_0212 */ + &aImplMS1361TextEncodingData, /* MS_1361 */ + &aImplGb18030TextEncodingData, /* GB_18030 */ +- &aImplBig5HkscsTextEncodingData }; /* BIG5_HKSCS */ ++ &aImplBig5HkscsTextEncodingData, /* BIG5_HKSCS */ ++ &aImplKOI8UTextEncodingData }; /* KOI8_U */ + OSL_ENSURE(nEncoding >= RTL_TEXTENCODING_DONTKNOW + && nEncoding <= RTL_TEXTENCODING_UNICODE, + "specification violation"); diff -ruN openoffice.orig/files/patch-solenv+inc+postset.mk openoffice/files/patch-solenv+inc+postset.mk --- openoffice.orig/files/patch-solenv+inc+postset.mk Thu Jan 1 00:00:00 1970 +++ openoffice/files/patch-solenv+inc+postset.mk Fri Feb 28 13:18:07 2003 @@ -0,0 +1,23 @@ +diff -ruN ../solenv/inc/postset.mk ../solenv/inc/postset.mk +--- ../solenv/inc/postset.mk Tue Jan 7 17:22:04 2003 ++++ ../solenv/inc/postset.mk Tue Feb 25 16:52:34 2003 +@@ -220,6 +220,19 @@ + RCLANGFLAGS_07+= -d RUSS + iso_07=ru + ++.IF "$(RES_UKRA)"!="" || "$(give_me_all_languages)"!="" ++alllangext+=38 ++ukra$(LANG_GUI)*=$(default$(LANG_GUI)) ++cmd_ukra:=ukra 38 -lgUKRAINIAN $(IBM_PC_852) $(ukra$(LANG_GUI)) ++lang_38=ukra ++longlang_38=ukrainian ++langext_38=38 ++rsclang_38=-lgUKRAINIAN $(IBM_PC_852) ++rescharset_38=$(ukra$(LANG_GUI)) ++RCLANGFLAGS_38+= -d UKRA ++iso_38=uk ++.ENDIF ++ + .IF "$(RES_POL)"!="" || "$(give_me_all_languages)"!="" + alllangext+=48 + .ENDIF diff -ruN openoffice.orig/files/patch-svx+source+dialog+txenctab.src openoffice/files/patch-svx+source+dialog+txenctab.src --- openoffice.orig/files/patch-svx+source+dialog+txenctab.src Thu Jan 1 00:00:00 1970 +++ openoffice/files/patch-svx+source+dialog+txenctab.src Fri Feb 28 13:18:07 2003 @@ -0,0 +1,45 @@ +diff -ruN ../svx/source/dialog/txenctab.src ../svx/source/dialog/txenctab.src +--- ../svx/source/dialog/txenctab.src Thu Oct 31 23:18:23 2002 ++++ ../svx/source/dialog/txenctab.src Tue Feb 25 16:57:06 2003 +@@ -147,6 +147,7 @@ + < "Japanisch (ISO-2022-JP)" ; RTL_TEXTENCODING_ISO_2022_JP ; > ; + < "Chinesisch vereinfacht (ISO-2022-CN)" ; RTL_TEXTENCODING_ISO_2022_CN ; > ; + < "Kyrillisch (KOI8-R)" ; RTL_TEXTENCODING_KOI8_R ; > ; ++ < "Kyrillisch (KOI8-U)" ; RTL_TEXTENCODING_KOI8_U ; > ; + < "Unicode (UTF-7)" ; RTL_TEXTENCODING_UTF7 ; > ; + < "Unicode (UTF-8)" ; RTL_TEXTENCODING_UTF8 ; > ; + < "Osteuropa (ISO-8859-10)" ; RTL_TEXTENCODING_ISO_8859_10 ; > ; +@@ -235,6 +236,7 @@ + < "Japanese (ISO-2022-JP)" ; RTL_TEXTENCODING_ISO_2022_JP ; > ; + < "Chinese Simplified (ISO-2022-CN)" ; RTL_TEXTENCODING_ISO_2022_CN ; > ; + < "Cyrillic (KOI8-R)" ; RTL_TEXTENCODING_KOI8_R ; > ; ++ < "Cyrillic (KOI8-U)" ; RTL_TEXTENCODING_KOI8_U ; > ; + < "Unicode (UTF-7)" ; RTL_TEXTENCODING_UTF7 ; > ; + < "Unicode (UTF-8)" ; RTL_TEXTENCODING_UTF8 ; > ; + < "Central European (ISO-8859-10)" ; RTL_TEXTENCODING_ISO_8859_10 ; > ; +@@ -308,6 +310,7 @@ + < "Japanisch (ISO-2022-JP)" ; RTL_TEXTENCODING_ISO_2022_JP ; > ; + < "Chinesisch vereinfacht (ISO-2022-CN)" ; RTL_TEXTENCODING_ISO_2022_CN ; > ; + < "Kyrillisch (KOI8-R)" ; RTL_TEXTENCODING_KOI8_R ; > ; ++ < "Kyrillisch (KOI8-U)" ; RTL_TEXTENCODING_KOI8_U ; > ; + < "Unicode (UTF-7)" ; RTL_TEXTENCODING_UTF7 ; > ; + < "Unicode (UTF-8)" ; RTL_TEXTENCODING_UTF8 ; > ; + < "Osteuropa (ISO-8859-10)" ; RTL_TEXTENCODING_ISO_8859_10 ; > ; +@@ -378,6 +381,7 @@ + < "Japanese (ISO-2022-JP)" ; RTL_TEXTENCODING_ISO_2022_JP ; > ; + < "Chinese simplified (ISO-2022-CN)" ; RTL_TEXTENCODING_ISO_2022_CN ; > ; + < "Cyrillic (KOI8-R)" ; RTL_TEXTENCODING_KOI8_R ; > ; ++ < "Cyrillic (KOI8-U)" ; RTL_TEXTENCODING_KOI8_U ; > ; + < "Unicode (UTF-7)" ; RTL_TEXTENCODING_UTF7 ; > ; + < "Unicode (UTF-8)" ; RTL_TEXTENCODING_UTF8 ; > ; + < "Eastern Europe (ISO-8859-10)" ; RTL_TEXTENCODING_ISO_8859_10 ; > ; +@@ -512,7 +516,8 @@ + < "Êèòàéñêèé òðàäèöèîííûé (BIG5)" ; RTL_TEXTENCODING_GBK ; > ; + < "ßïîíñêèé (EUC-JP)" ; RTL_TEXTENCODING_BIG5 ; > ; + < "Êèòàéñêèé óïðîùåííûé (EUC-CN)" ; RTL_TEXTENCODING_EUC_JP ; > ; +- < "Êèðèëëè÷åñêèé (KOI8-R)" ; RTL_TEXTENCODING_EUC_CN ; > ; ++ < "Êèðèëëè÷åñêèé (KOI8-R)" ; RTL_TEXTENCODING_KOI8_R ; > ; ++ < "Êèðèëëè÷åñêèé (KOI8-U)" ; RTL_TEXTENCODING_KOI8_U ; > ; + < "Þíèêîä (UTF-7)" ; RTL_TEXTENCODING_EUC_TW ; > ; + < "Þíèêîä (UTF-8)" ; RTL_TEXTENCODING_ISO_2022_JP ; > ; + < "Âîñòî÷íîåâðîïåéñêèé (ISO-8859-10)" ; RTL_TEXTENCODING_ISO_2022_CN ; > ; diff -ruN openoffice.orig/files/patch-sw+source+filter+basflt+fltini.cxx openoffice/files/patch-sw+source+filter+basflt+fltini.cxx --- openoffice.orig/files/patch-sw+source+filter+basflt+fltini.cxx Thu Jan 1 00:00:00 1970 +++ openoffice/files/patch-sw+source+filter+basflt+fltini.cxx Fri Feb 28 13:18:07 2003 @@ -0,0 +1,23 @@ +diff -ruN ../sw/source/filter/basflt/fltini.cxx ../sw/source/filter/basflt/fltini.cxx +--- ../sw/source/filter/basflt/fltini.cxx Mon Feb 24 17:46:43 2003 ++++ ../sw/source/filter/basflt/fltini.cxx Tue Feb 25 16:59:03 2003 +@@ -1007,7 +1007,8 @@ + sToken081[] = "JIS_X_212", + sToken082[] = "MS_1361", + sToken083[] = "GB_18030", +- sToken084[] = "UNICODE_2" ++ sToken084[] = "KOI8_U", ++ sToken085[] = "UNICODE_2" + ; + struct _Dummy_MAP + { +@@ -1099,7 +1100,8 @@ + RTL_TEXTENCODING_JIS_X_0212, sToken081, + RTL_TEXTENCODING_MS_1361, sToken082, + RTL_TEXTENCODING_GB_18030, sToken083, +- RTL_TEXTENCODING_UCS2, sToken084 ++ RTL_TEXTENCODING_KOI8_U, sToken084, ++ RTL_TEXTENCODING_UCS2, sToken085 + }; + + BOOL bFnd = FALSE; diff -ruN openoffice.orig/files/patch-sysui+tools+lngconv+lngconv.cxx openoffice/files/patch-sysui+tools+lngconv+lngconv.cxx --- openoffice.orig/files/patch-sysui+tools+lngconv+lngconv.cxx Sun Jul 21 23:11:40 2002 +++ openoffice/files/patch-sysui+tools+lngconv+lngconv.cxx Fri Feb 28 13:35:00 2003 @@ -9,3 +9,11 @@ #include #include #endif +@@ -143,6 +143,7 @@ + { "iso8859-8", RTL_TEXTENCODING_ISO_8859_8 }, + { "iso8859-9", RTL_TEXTENCODING_ISO_8859_9 }, + { "koi8-r", RTL_TEXTENCODING_KOI8_R }, ++ { "koi8-u", RTL_TEXTENCODING_KOI8_U }, + { "pck", RTL_TEXTENCODING_MS_932 }, + #if (0) + { "sun_eu_greek", RTL_TEXTENCODING_DONTKNOW }, diff -ruN openoffice.orig/files/patch-sysui+unix+office+cde+locales.tab openoffice/files/patch-sysui+unix+office+cde+locales.tab --- openoffice.orig/files/patch-sysui+unix+office+cde+locales.tab Thu Jan 1 00:00:00 1970 +++ openoffice/files/patch-sysui+unix+office+cde+locales.tab Fri Feb 28 13:18:07 2003 @@ -0,0 +1,11 @@ +diff -ruN ../sysui/unix/office/cde/locales.tab ../sysui/unix/office/cde/locales.tab +--- ../sysui/unix/office/cde/locales.tab Tue Nov 20 19:26:28 2001 ++++ ../sysui/unix/office/cde/locales.tab Tue Feb 25 17:04:36 2003 +@@ -7,6 +7,7 @@ + locales+=$(assign locale_34 = es es.UTF-8) + locales+=$(assign locale_35 = fi fi.UTF-8) + locales+=$(assign locale_37 = ca) ++locales+=$(assign locale_38 = uk uk_UA.KOI8-U) + locales+=$(assign locale_39 = it it.UTF-8) + locales+=$(assign locale_45 = da da.UTF-8) + locales+=$(assign locale_46 = sv sv.UTF-8) diff -ruN openoffice.orig/files/patch-tools+source+inet+inetmime.cxx openoffice/files/patch-tools+source+inet+inetmime.cxx --- openoffice.orig/files/patch-tools+source+inet+inetmime.cxx Thu Jan 1 00:00:00 1970 +++ openoffice/files/patch-tools+source+inet+inetmime.cxx Fri Feb 28 13:18:07 2003 @@ -0,0 +1,55 @@ +diff -ruN ../tools/source/inet/inetmime.cxx ../tools/source/inet/inetmime.cxx +--- ../tools/source/inet/inetmime.cxx Mon Feb 24 17:46:55 2003 ++++ ../tools/source/inet/inetmime.cxx Tue Feb 25 17:08:22 2003 +@@ -1633,7 +1633,8 @@ + "ISO-8859-10", // RTL_TEXTENCODING_ISO_8859_10, RFC 2047 + "ISO-8859-13", // RTL_TEXTENCODING_ISO_8859_13, RFC 2047 + "EUC-KR", // RTL_TEXTENCODING_EUC_KR +- "ISO-2022-KR" }; // RTL_TEXTENCODING_ISO_2022_KR ++ "ISO-2022-KR", // RTL_TEXTENCODING_ISO_2022_KR ++ "KOI8-U" }; // RTL_TEXTENCODING_KOI8_U + DBG_ASSERT(aMap[eEncoding], + "INetMIME::getCharsetName(): Unsupported encoding"); + return aMap[eEncoding]; +@@ -1841,7 +1842,8 @@ + { "ISO-10646-UCS-4", RTL_TEXTENCODING_UCS4 }, + { "CSUCS4", RTL_TEXTENCODING_UCS4 }, + { "ISO-10646-UCS-2", RTL_TEXTENCODING_UCS2 }, +- { "CSUNICODE", RTL_TEXTENCODING_UCS2 } }; ++ { "CSUNICODE", RTL_TEXTENCODING_UCS2 }, ++ { "KOI8-U", RTL_TEXTENCODING_KOI8_U } }; + + //============================================================================ + template< typename T > +@@ -2012,6 +2014,18 @@ + // + // version 1.0 of 18 August 1999 + ++ static const sal_uInt32 aKOI8URanges[] ++ = { 0, 0x7F, 0xA0, 0xA0, 0xA9, 0xA9, 0xB0, 0xB0, 0xB2, 0xB2, ++ 0xB7, 0xB7, 0xF7, 0xF7, 0x401, 0x401, 0x410, 0x44F, 0x451, 0x451, ++ 0x2219, 0x221A, 0x2248, 0x2248, 0x2264, 0x2265, 0x2320, 0x2321, ++ 0x2500, 0x2500, 0x2502, 0x2502, 0x250C, 0x250C, 0x2510, 0x2510, ++ 0x2514, 0x2514, 0x2518, 0x2518, 0x251C, 0x251C, 0x2524, 0x2524, ++ 0x252C, 0x252C, 0x2534, 0x2534, 0x253C, 0x253C, 0x2550, 0x256C, ++ 0x2580, 0x2580, 0x2584, 0x2584, 0x2588, 0x2588, 0x258C, 0x258C, ++ 0x2590, 0x2593, 0x25A0, 0x25A0, sal_uInt32(-1) }; ++ // ++ // version 1.0 of 18 August 1999 ++ + static const sal_uInt32 aWindows1252Ranges[] + = { 0, 0x7F, 0xA0, 0xFF, 0x152, 0x153, 0x160, 0x161, 0x178, 0x178, + 0x17D, 0x17E, 0x192, 0x192, 0x2C6, 0x2C6, 0x2DC, 0x2DC, +@@ -2133,6 +2147,12 @@ + pList->prepend(Charset(RTL_TEXTENCODING_ISO_8859_5, + aISO88595Ranges)); + pList->prepend(Charset(RTL_TEXTENCODING_KOI8_R, aKOI8RRanges)); ++ break; ++ ++ case RTL_TEXTENCODING_KOI8_U: ++ pList->prepend(Charset(RTL_TEXTENCODING_ISO_8859_5, ++ aISO88595Ranges)); ++ pList->prepend(Charset(RTL_TEXTENCODING_KOI8_U, aKOI8URanges)); + break; + + default: //@@@ more cases are missing! diff -ruN openoffice.orig/files/patch-tools+source+rc+resmgr.cxx openoffice/files/patch-tools+source+rc+resmgr.cxx --- openoffice.orig/files/patch-tools+source+rc+resmgr.cxx Thu Jan 1 00:00:00 1970 +++ openoffice/files/patch-tools+source+rc+resmgr.cxx Fri Feb 28 13:18:07 2003 @@ -0,0 +1,20 @@ +diff -ruN ../tools/source/rc/resmgr.cxx ../tools/source/rc/resmgr.cxx +--- ../tools/source/rc/resmgr.cxx Mon Feb 24 17:46:55 2003 ++++ ../tools/source/rc/resmgr.cxx Tue Feb 25 17:09:39 2003 +@@ -1189,6 +1189,8 @@ + return "36"; + case LANGUAGE_RUSSIAN: + return "07"; ++ case LANGUAGE_UKRAINIAN: ++ return "38"; + case LANGUAGE_SLOVAK: + return "04"; + case LANGUAGE_GREEK: +@@ -1339,6 +1341,7 @@ + LANGUAGE_HUNGARIAN, + LANGUAGE_CZECH, + LANGUAGE_RUSSIAN, ++ LANGUAGE_UKRAINIAN, + LANGUAGE_ARABIC, + LANGUAGE_GREEK, + LANGUAGE_KOREAN, diff -ruN openoffice.orig/files/patch-transex3+inc+export.hxx openoffice/files/patch-transex3+inc+export.hxx --- openoffice.orig/files/patch-transex3+inc+export.hxx Thu Jan 1 00:00:00 1970 +++ openoffice/files/patch-transex3+inc+export.hxx Fri Feb 28 13:18:07 2003 @@ -0,0 +1,30 @@ +diff -ruN ../transex3/inc/export.hxx ../transex3/inc/export.hxx +--- ../transex3/inc/export.hxx Fri May 24 15:26:18 2002 ++++ ../transex3/inc/export.hxx Tue Feb 25 17:13:09 2003 +@@ -187,18 +187,22 @@ + #define CATALAN_ISO "ca" + #define CATALAN_INDEX 28 + ++#define UKRAINIAN 38 ++#define UKRAINIAN_ISO "uk" ++#define UKRAINIAN_INDEX 29 ++ + #define THAI 66 + #define THAI_ISO "th" +-#define THAI_INDEX 29 ++#define THAI_INDEX 30 + + // special language for l10n framework + #define EXTERN 99 +-#define EXTERN_INDEX 30 ++#define EXTERN_INDEX 31 + +-#define LANGUAGES 31 ++#define LANGUAGES 32 + + #define LANGUAGE_ALLOWED( n ) (( n != 0xFFFF ) && ( Export::LanguageAllowed( Export::LangId[ n ] )) && \ +- (( Export::LangId[ n ] == 01 ) || ( Export::LangId[ n ] == 03 ) || ( Export::LangId[ n ] == 07 ) || \ ++ (( Export::LangId[ n ] == 01 ) || ( Export::LangId[ n ] == 03 ) || ( Export::LangId[ n ] == 07 ) || ( Export::LangId[ n ] == 38 ) || \ + ( Export::LangId[ n ] == 30 ) || ( Export::LangId[ n ] == 31 ) || ( Export::LangId[ n ] == 33 ) || \ + ( Export::LangId[ n ] == 34 ) || ( Export::LangId[ n ] == 35 ) || ( Export::LangId[ n ] == 37 ) || \ + ( Export::LangId[ n ] == 39 ) || ( Export::LangId[ n ] == 45 ) || ( Export::LangId[ n ] == 46 ) || \ diff -ruN openoffice.orig/files/patch-transex3+source+export.cxx openoffice/files/patch-transex3+source+export.cxx --- openoffice.orig/files/patch-transex3+source+export.cxx Thu Jan 1 00:00:00 1970 +++ openoffice/files/patch-transex3+source+export.cxx Fri Feb 28 13:18:07 2003 @@ -0,0 +1,12 @@ +diff -ruN ../transex3/source/export.cxx ../transex3/source/export.cxx +--- ../transex3/source/export.cxx Mon Feb 24 17:45:55 2003 ++++ ../transex3/source/export.cxx Tue Feb 25 17:14:06 2003 +@@ -1205,6 +1205,8 @@ + return PORTUGUESE_INDEX; + else if ( sLang == "RUSSIAN" ) + return RUSSIAN_INDEX; ++ else if ( sLang == "UKRAINIAN" ) ++ return UKRAINIAN_INDEX; + else if ( sLang == "GREEK" ) + return GREEK_INDEX; + else if ( sLang == "DUTCH" ) diff -ruN openoffice.orig/files/patch-transex3+source+export2.cxx openoffice/files/patch-transex3+source+export2.cxx --- openoffice.orig/files/patch-transex3+source+export2.cxx Thu Jan 1 00:00:00 1970 +++ openoffice/files/patch-transex3+source+export2.cxx Fri Feb 28 13:18:07 2003 @@ -0,0 +1,44 @@ +diff -ruN ../transex3/source/export2.cxx ../transex3/source/export2.cxx +--- ../transex3/source/export2.cxx Mon Feb 24 17:45:55 2003 ++++ ../transex3/source/export2.cxx Tue Feb 25 17:19:19 2003 +@@ -144,6 +144,7 @@ + ARABIC, + HEBREW, + CATALAN, ++ UKRAINIAN, + THAI, + EXTERN + }; +@@ -192,6 +193,7 @@ + case ARABIC: return RTL_TEXTENCODING_MS_1256; + case HEBREW: return RTL_TEXTENCODING_MS_1255; + case CATALAN: return RTL_TEXTENCODING_MS_1252; ++ case UKRAINIAN: return RTL_TEXTENCODING_MS_1251; + case THAI: return RTL_TEXTENCODING_UTF8; + case EXTERN: return RTL_TEXTENCODING_UTF8; + } +@@ -214,6 +216,8 @@ + return PORTUGUESE; + else if ( sLang == ByteString( RUSSIAN_ISO ).ToUpperAscii()) + return RUSSIAN; ++ else if ( sLang == ByteString( UKRAINIAN_ISO ).ToUpperAscii()) ++ return UKRAINIAN; + else if ( sLang == ByteString( GREEK_ISO ).ToUpperAscii()) + return GREEK; + else if ( sLang == ByteString( DUTCH_ISO ).ToUpperAscii()) +@@ -279,6 +283,7 @@ + case ENGLISH_US_INDEX: return ENGLISH_US_ISO; + case PORTUGUESE_INDEX: return PORTUGUESE_ISO; + case RUSSIAN_INDEX: return RUSSIAN_ISO; ++ case UKRAINIAN_INDEX: return UKRAINIAN_ISO; + case GREEK_INDEX: return GREEK_ISO; + case DUTCH_INDEX: return DUTCH_ISO; + case FRENCH_INDEX: return FRENCH_ISO; +@@ -429,6 +434,7 @@ + "arabic", + "hebrew", + "catalan", ++ "ukrainian", + "thai", + "extern" + }; diff -ruN openoffice.orig/files/patch-transex3+source+gsiconv.cxx openoffice/files/patch-transex3+source+gsiconv.cxx --- openoffice.orig/files/patch-transex3+source+gsiconv.cxx Thu Jan 1 00:00:00 1970 +++ openoffice/files/patch-transex3+source+gsiconv.cxx Fri Feb 28 13:18:07 2003 @@ -0,0 +1,11 @@ +diff -ruN ../transex3/source/gsiconv.cxx ../transex3/source/gsiconv.cxx +--- ../transex3/source/gsiconv.cxx Mon Feb 24 17:45:55 2003 ++++ ../transex3/source/gsiconv.cxx Tue Feb 25 17:20:08 2003 +@@ -210,6 +210,7 @@ + fprintf( stdout, " 34 => SPANISH\n" ); + fprintf( stdout, " 35 => FINNISH\n" ); + fprintf( stdout, " 36 => HUNGARIAN\n" ); ++ fprintf( stdout, " 38 => UKRAINIAN\n" ); + fprintf( stdout, " 39 => ITALIAN\n" ); + fprintf( stdout, " 42 => CZECH\n" ); + fprintf( stdout, " 44 => ENGLISH (UK)\n" ); diff -ruN openoffice.orig/files/patch-transex3+source+merge.cxx openoffice/files/patch-transex3+source+merge.cxx --- openoffice.orig/files/patch-transex3+source+merge.cxx Thu Jan 1 00:00:00 1970 +++ openoffice/files/patch-transex3+source+merge.cxx Fri Feb 28 13:18:07 2003 @@ -0,0 +1,11 @@ +diff -ruN ../transex3/source/merge.cxx ../transex3/source/merge.cxx +--- ../transex3/source/merge.cxx Mon Feb 24 17:45:55 2003 ++++ ../transex3/source/merge.cxx Tue Feb 25 17:20:43 2003 +@@ -388,6 +388,7 @@ + case ENGLISH_US: return ENGLISH_US_INDEX; + case PORTUGUESE: return PORTUGUESE_INDEX; + case RUSSIAN: return RUSSIAN_INDEX; ++ case UKRAINIAN: return UKRAINIAN_INDEX; + case GREEK: return GREEK_INDEX; + case DUTCH: return DUTCH_INDEX; + case FRENCH: return FRENCH_INDEX; diff -ruN openoffice.orig/files/patch-vcl+unx+source+gdi+salcvt.cxx openoffice/files/patch-vcl+unx+source+gdi+salcvt.cxx --- openoffice.orig/files/patch-vcl+unx+source+gdi+salcvt.cxx Thu Jan 1 00:00:00 1970 +++ openoffice/files/patch-vcl+unx+source+gdi+salcvt.cxx Fri Feb 28 13:18:07 2003 @@ -0,0 +1,21 @@ +diff -ruN ../vcl/unx/source/gdi/salcvt.cxx ../vcl/unx/source/gdi/salcvt.cxx +--- ../vcl/unx/source/gdi/salcvt.cxx Mon Feb 24 17:46:21 2003 ++++ ../vcl/unx/source/gdi/salcvt.cxx Tue Feb 25 17:21:50 2003 +@@ -261,6 +261,17 @@ + || ( nChar >= 0x2500 && nChar <= 0x25a0 ); + break; + ++ case RTL_TEXTENCODING_KOI8_U: ++ bMatch = ( nChar >= 0x0020 && nChar <= 0x007e ) ++ || ( nChar >= 0x00a0 && nChar <= 0x00b7 ) ++ || ( nChar == 0x00f7 ) ++ || ( nChar >= 0x0401 && nChar <= 0x0491 ) ++ || ( nChar >= 0x2219 && nChar <= 0x221a ) ++ || ( nChar >= 0x2248 && nChar <= 0x2265 ) ++ || ( nChar >= 0x2320 && nChar <= 0x2321 ) ++ || ( nChar >= 0x2500 && nChar <= 0x25a0 ); ++ break; ++ + case RTL_TEXTENCODING_UNICODE: + bMatch = True; + break; diff -ruN openoffice.orig/files/patch-vcl+unx+source+gdi+xlfd_extd.cxx openoffice/files/patch-vcl+unx+source+gdi+xlfd_extd.cxx --- openoffice.orig/files/patch-vcl+unx+source+gdi+xlfd_extd.cxx Thu Jan 1 00:00:00 1970 +++ openoffice/files/patch-vcl+unx+source+gdi+xlfd_extd.cxx Fri Feb 28 13:18:07 2003 @@ -0,0 +1,11 @@ +diff -ruN ../vcl/unx/source/gdi/xlfd_extd.cxx ../vcl/unx/source/gdi/xlfd_extd.cxx +--- ../vcl/unx/source/gdi/xlfd_extd.cxx Mon Feb 24 17:46:21 2003 ++++ ../vcl/unx/source/gdi/xlfd_extd.cxx Tue Feb 25 17:22:26 2003 +@@ -205,6 +205,7 @@ + case RTL_TEXTENCODING_ISO_8859_15: + case RTL_TEXTENCODING_MS_1251: + case RTL_TEXTENCODING_KOI8_R: ++ case RTL_TEXTENCODING_KOI8_U: + case RTL_TEXTENCODING_JIS_X_0201: + if ( nLargestRange < 0x0080 ) + { >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 11:16:47 2003 Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 25B5A37B406; Fri, 28 Feb 2003 11:15:59 -0800 (PST) Received: from goliath.siemens.de (goliath.siemens.de [192.35.17.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id E902A43FA3; Fri, 28 Feb 2003 11:15:49 -0800 (PST) (envelope-from udo.schweigert@siemens.com) Received: from mail1.siemens.de (mail1.siemens.de [139.23.33.14]) by goliath.siemens.de (8.11.6/8.11.6) with ESMTP id h1SJFlD03157; Fri, 28 Feb 2003 20:15:48 +0100 (MET) Received: from mars.cert.siemens.de (ust.mchp.siemens.de [139.23.201.17]) by mail1.siemens.de (8.11.6/8.11.6) with ESMTP id h1SJFlG29186; Fri, 28 Feb 2003 20:15:47 +0100 (MET) Received: from alaska.cert.siemens.de (alaska.cert.siemens.de [139.23.202.134]) by mars.cert.siemens.de (8.12.7/8.12.7/$SiemensCERT: mail/cert.mc,v 1.42 2003/02/21 12:06:56 ust Exp $) with ESMTP id h1SJFk70077306; Fri, 28 Feb 2003 20:15:47 +0100 (CET) Received: from alaska.cert.siemens.de (alaska.cert.siemens.de [127.0.0.1]) by alaska.cert.siemens.de (8.12.7/8.12.7/$Ust: hosts/alaska/mail/config.mc,v 1.15 2002/12/31 15:32:17 ust Exp $) with ESMTP id h1SJFkCX004161; Fri, 28 Feb 2003 20:15:46 +0100 (CET) (envelope-from ust@alaska.cert.siemens.de) Received: (from ust@localhost) by alaska.cert.siemens.de (8.12.7/8.12.7/$Ust: hosts/alaska/mail/submit.mc,v 1.4 2002/12/31 15:32:17 ust Exp $) id h1SJFkC1063725; Fri, 28 Feb 2003 20:15:46 +0100 (CET) (envelope-from ust) Date: Fri, 28 Feb 2003 20:15:46 +0100 From: Udo Schweigert To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Udo Schweigert Subject: Re: ports/48671: maintainer-update of security/nessus-*-devel Message-ID: <20030228191546.GA3492@alaska.cert.siemens.de> Mail-Followup-To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, Udo Schweigert References: <200302251520.h1PFKdGx089410@alaska.cert.siemens.de> <200302251530.h1PFUB8B004526@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200302251530.h1PFUB8B004526@freefall.freebsd.org> X-Operating-System: FreeBSD 4.8-PRERELEASE User-Agent: Mutt/1.5.3i Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Here is a new update which instead should be used: - Update to 2.0.1 - Fix the certificate making. Best regards -- Udo Schweigert, Siemens AG | Voice : +49 89 636 42170 CT IC CERT, Siemens CERT | Fax : +49 89 636 41166 D-81730 Muenchen / Germany | email : udo.schweigert@siemens.com diff -ru /usr/ports/security/nessus-devel/Makefile nessus-devel/Makefile --- /usr/ports/security/nessus-devel/Makefile Fri Feb 21 14:26:47 2003 +++ nessus-devel/Makefile Fri Feb 28 19:51:57 2003 @@ -4,20 +4,20 @@ # PORTNAME= nessus-devel -PORTVERSION= 1.3.4 +PORTVERSION= 2.0.1 CATEGORIES= security -MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.gwdg.de/pub/linux/misc/nessus/unstable/nessus-${PORTVERSION}/src/ \ - http://ftp.gwdg.de/pub/linux/misc/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://sunsite.cnlab-switch.ch/mirror/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.chg.ru/pub/security/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.sekure.net/pub/nessus/unstable/nessus-${PORTVERSION}/src/ +MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ + http://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ + ftp://sunsite.cnlab-switch.ch/mirror/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.chg.ru/pub/security/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.sekure.net/pub/nessus/nessus-${PORTVERSION}/src/ DISTNAME= nessus-core-${PORTVERSION} MAINTAINER= udo.schweigert@siemens.com COMMENT= A security scanner: looks for vulnerabilities in a given network -LIB_DEPENDS= nasl.4:${PORTSDIR}/security/nessus-libnasl-devel +LIB_DEPENDS= nasl.2:${PORTSDIR}/security/nessus-libnasl-devel DIST_SUBDIR= nessus WRKSRC= ${WRKDIR}/nessus-core @@ -42,10 +42,12 @@ MAN8= nessusd.8 nessus-adduser.8 nessus-mkcert.8 nessus-rmuser.8 post-install: -.if ! defined(BATCH) .if ! exists(${PREFIX}/etc/nessus/var/CA/serverkey.pem) - ${PREFIX}/sbin/nessus-mkcert -.endif +.if ! defined(BATCH) + ${PREFIX}/sbin/nessus-mkcert +.else + ${PREFIX}/sbin/nessus-mkcert -q .endif +.endif .include diff -ru /usr/ports/security/nessus-devel/distinfo nessus-devel/distinfo --- /usr/ports/security/nessus-devel/distinfo Fri Feb 14 19:53:54 2003 +++ nessus-devel/distinfo Fri Feb 28 19:48:58 2003 @@ -1 +1 @@ -MD5 (nessus/nessus-core-1.3.4.tar.gz) = 07dee8809755fbc9c1bb0c4b157b034e +MD5 (nessus/nessus-core-2.0.1.tar.gz) = c27dfa326c6ed86ee7d0e9daf3be6577 diff -ru /usr/ports/security/nessus-libnasl-devel/Makefile nessus-libnasl-devel/Makefile --- /usr/ports/security/nessus-libnasl-devel/Makefile Fri Feb 21 14:26:47 2003 +++ nessus-libnasl-devel/Makefile Fri Feb 28 19:47:05 2003 @@ -4,20 +4,20 @@ # PORTNAME= nessus-libnasl-devel -PORTVERSION= 1.3.4 +PORTVERSION= 2.0.1 CATEGORIES= security -MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.gwdg.de/pub/linux/misc/nessus/unstable/nessus-${PORTVERSION}/src/ \ - http://ftp.gwdg.de/pub/linux/misc/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://sunsite.cnlab-switch.ch/mirror/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.chg.ru/pub/security/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.sekure.net/pub/nessus/unstable/nessus-${PORTVERSION}/src/ +MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ + http://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ + ftp://sunsite.cnlab-switch.ch/mirror/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.chg.ru/pub/security/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.sekure.net/pub/nessus/nessus-${PORTVERSION}/src/ DISTNAME= libnasl-${PORTVERSION} MAINTAINER= udo.schweigert@siemens.com COMMENT= Nessus Attack Scripting Language -LIB_DEPENDS= nessus.4:${PORTSDIR}/security/nessus-libraries-devel +LIB_DEPENDS= nessus.2:${PORTSDIR}/security/nessus-libraries-devel DIST_SUBDIR= nessus WRKSRC= ${WRKDIR}/libnasl diff -ru /usr/ports/security/nessus-libnasl-devel/distinfo nessus-libnasl-devel/distinfo --- /usr/ports/security/nessus-libnasl-devel/distinfo Fri Feb 14 19:53:54 2003 +++ nessus-libnasl-devel/distinfo Fri Feb 28 19:47:14 2003 @@ -1 +1 @@ -MD5 (nessus/libnasl-1.3.4.tar.gz) = 138ed54b5c76b44c194c4d62e0dbe635 +MD5 (nessus/libnasl-2.0.1.tar.gz) = 69c731d308728bad9de55b568c2e92dd diff -ru /usr/ports/security/nessus-libnasl-devel/pkg-plist nessus-libnasl-devel/pkg-plist --- /usr/ports/security/nessus-libnasl-devel/pkg-plist Thu Jan 9 15:18:19 2003 +++ nessus-libnasl-devel/pkg-plist Tue Feb 25 08:16:05 2003 @@ -4,4 +4,4 @@ lib/libnasl.a lib/libnasl.la lib/libnasl.so -lib/libnasl.so.4 +lib/libnasl.so.2 diff -ru /usr/ports/security/nessus-libraries-devel/Makefile nessus-libraries-devel/Makefile --- /usr/ports/security/nessus-libraries-devel/Makefile Fri Feb 21 14:26:47 2003 +++ nessus-libraries-devel/Makefile Fri Feb 28 19:44:42 2003 @@ -4,14 +4,14 @@ # PORTNAME= nessus-libraries-devel -PORTVERSION= 1.3.4 +PORTVERSION= 2.0.1 CATEGORIES= security -MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.gwdg.de/pub/linux/misc/nessus/unstable/nessus-${PORTVERSION}/src/ \ - http://ftp.gwdg.de/pub/linux/misc/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://sunsite.cnlab-switch.ch/mirror/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.chg.ru/pub/security/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.sekure.net/pub/nessus/unstable/nessus-${PORTVERSION}/src/ +MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ + http://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ + ftp://sunsite.cnlab-switch.ch/mirror/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.chg.ru/pub/security/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.sekure.net/pub/nessus/nessus-${PORTVERSION}/src/ DISTNAME= nessus-libraries-${PORTVERSION} MAINTAINER= udo.schweigert@siemens.com diff -ru /usr/ports/security/nessus-libraries-devel/distinfo nessus-libraries-devel/distinfo --- /usr/ports/security/nessus-libraries-devel/distinfo Fri Feb 14 19:53:55 2003 +++ nessus-libraries-devel/distinfo Fri Feb 28 19:45:07 2003 @@ -1 +1 @@ -MD5 (nessus/nessus-libraries-1.3.4.tar.gz) = eaaa1395b748ceca3090b00bf2fc35d7 +MD5 (nessus/nessus-libraries-2.0.1.tar.gz) = 5468f15c4c2c84b47a3f72a20996eeca diff -ru /usr/ports/security/nessus-libraries-devel/pkg-plist nessus-libraries-devel/pkg-plist --- /usr/ports/security/nessus-libraries-devel/pkg-plist Thu Jan 9 15:18:20 2003 +++ nessus-libraries-devel/pkg-plist Tue Feb 25 08:11:44 2003 @@ -9,15 +9,15 @@ lib/libhosts_gatherer.a lib/libhosts_gatherer.la lib/libhosts_gatherer.so -lib/libhosts_gatherer.so.4 +lib/libhosts_gatherer.so.2 lib/libnessus.a lib/libnessus.la lib/libnessus.so -lib/libnessus.so.4 +lib/libnessus.so.2 lib/libpcap-nessus.a lib/libpcap-nessus.la lib/libpcap-nessus.so -lib/libpcap-nessus.so.4 +lib/libpcap-nessus.so.2 sbin/uninstall-nessus @dirrm include/nessus/net @dirrm include/nessus diff -ru /usr/ports/security/nessus-plugins-devel/Makefile nessus-plugins-devel/Makefile --- /usr/ports/security/nessus-plugins-devel/Makefile Fri Feb 21 14:26:47 2003 +++ nessus-plugins-devel/Makefile Fri Feb 28 19:54:01 2003 @@ -4,14 +4,14 @@ # PORTNAME= nessus-plugins-devel -PORTVERSION= 1.3.4 +PORTVERSION= 2.0.1 CATEGORIES= security -MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.gwdg.de/pub/linux/misc/nessus/unstable/nessus-${PORTVERSION}/src/ \ - http://ftp.gwdg.de/pub/linux/misc/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://sunsite.cnlab-switch.ch/mirror/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.chg.ru/pub/security/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.sekure.net/pub/nessus/unstable/nessus-${PORTVERSION}/src/ +MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ + http://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ + ftp://sunsite.cnlab-switch.ch/mirror/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.chg.ru/pub/security/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.sekure.net/pub/nessus/nessus-${PORTVERSION}/src/ DISTNAME= nessus-plugins-${PORTVERSION} MAINTAINER= udo.schweigert@siemens.com diff -ru /usr/ports/security/nessus-plugins-devel/distinfo nessus-plugins-devel/distinfo --- /usr/ports/security/nessus-plugins-devel/distinfo Fri Feb 14 19:53:55 2003 +++ nessus-plugins-devel/distinfo Fri Feb 28 19:54:18 2003 @@ -1 +1 @@ -MD5 (nessus/nessus-plugins-1.3.4.tar.gz) = 0540bb7ca9f66a92d3576bedfd449a84 +MD5 (nessus/nessus-plugins-2.0.1.tar.gz) = e9c1be9b4937381910047ecdd88eb0da diff -ru /usr/ports/security/nessus-plugins-devel/pkg-plist nessus-plugins-devel/pkg-plist --- /usr/ports/security/nessus-plugins-devel/pkg-plist Fri Feb 14 19:53:55 2003 +++ nessus-plugins-devel/pkg-plist Fri Feb 28 20:04:06 2003 @@ -1,6 +1,4 @@ bin/nessus-build -etc/nessus/accounts.txt -etc/nessus/queso.conf lib/nessus/plugins/3com_hub.nes lib/nessus/plugins/3com_switches.nasl lib/nessus/plugins/4553.nasl @@ -24,6 +22,7 @@ lib/nessus/plugins/CSCdw67458.nasl lib/nessus/plugins/CSCdy03429.nasl lib/nessus/plugins/ColdFusion.nasl +lib/nessus/plugins/CuteNews_code_injection.nasl lib/nessus/plugins/DDI_AirConnect_Default_Password.nasl lib/nessus/plugins/DDI_Cabletron_Web_View.nasl lib/nessus/plugins/DDI_Compaq_Mgmt_Proxy.nasl @@ -57,6 +56,7 @@ lib/nessus/plugins/ExAir_dos_advsearch.nasl lib/nessus/plugins/ExAir_dos_query.nasl lib/nessus/plugins/ExAir_dos_search.nasl +lib/nessus/plugins/GOsa_code_injection.nasl lib/nessus/plugins/GuildFTPD097.nasl lib/nessus/plugins/IIS_frontpage_DOS.nasl lib/nessus/plugins/Jserv_css.nasl @@ -82,7 +82,33 @@ lib/nessus/plugins/Xerver_DoS.nasl lib/nessus/plugins/a1stats.nasl lib/nessus/plugins/acc.nasl -lib/nessus/plugins/accounts.nes +lib/nessus/plugins/account_4Dgifts.nasl +lib/nessus/plugins/account_EZsetup.nasl +lib/nessus/plugins/account_OutOfBox.nasl +lib/nessus/plugins/account_StoogR.nasl +lib/nessus/plugins/account_backdoor.nasl +lib/nessus/plugins/account_date.nasl +lib/nessus/plugins/account_demos.nasl +lib/nessus/plugins/account_friday.nasl +lib/nessus/plugins/account_gamez_lrkr0x.nasl +lib/nessus/plugins/account_glftpd.nasl +lib/nessus/plugins/account_guest.nasl +lib/nessus/plugins/account_guest_guest.nasl +lib/nessus/plugins/account_hax0r.nasl +lib/nessus/plugins/account_jack.nasl +lib/nessus/plugins/account_jill.nasl +lib/nessus/plugins/account_lp.nasl +lib/nessus/plugins/account_rewt_satori.nasl +lib/nessus/plugins/account_root.nasl +lib/nessus/plugins/account_root_root.nasl +lib/nessus/plugins/account_root_rootkit1.nasl +lib/nessus/plugins/account_root_rootkit1bis.nasl +lib/nessus/plugins/account_root_rootkit2.nasl +lib/nessus/plugins/account_sync.nasl +lib/nessus/plugins/account_system_manager.nasl +lib/nessus/plugins/account_toor.nasl +lib/nessus/plugins/account_tutor.nasl +lib/nessus/plugins/account_wank_wank.nasl lib/nessus/plugins/achievo_code_injection.nasl lib/nessus/plugins/activestate_perl.nasl lib/nessus/plugins/admentor_login_flaw.nasl @@ -111,6 +137,7 @@ lib/nessus/plugins/analogx_dos.nasl lib/nessus/plugins/analogx_traversal.nasl lib/nessus/plugins/annex_dos.nasl +lib/nessus/plugins/anti_nessus.nasl lib/nessus/plugins/aolserver_default_password.nasl lib/nessus/plugins/apache_1_3_27.nasl lib/nessus/plugins/apache_Tomcat_DOS_Device_XSS.nasl @@ -201,6 +228,7 @@ lib/nessus/plugins/cfinger_search.nasl lib/nessus/plugins/cfinger_version.nasl lib/nessus/plugins/cgibin_browsable.nasl +lib/nessus/plugins/cgibin_in_kb.nasl lib/nessus/plugins/cgicso_command_execution.nasl lib/nessus/plugins/cgicso_cross_site_scripting.nasl lib/nessus/plugins/cgiforum.nasl @@ -227,6 +255,7 @@ lib/nessus/plugins/cisco_voip_dos.nasl lib/nessus/plugins/citrix.nasl lib/nessus/plugins/citrix_find.nasl +lib/nessus/plugins/clarkconnectd.nasl lib/nessus/plugins/cmail_overflow.nasl lib/nessus/plugins/cobalt_cube_webmail_dir_trav.nasl lib/nessus/plugins/cobalt_overflow_cgi.nasl @@ -258,6 +287,7 @@ lib/nessus/plugins/dcforum.nasl lib/nessus/plugins/dcshop_information_disclosure.nasl lib/nessus/plugins/deep_throat.nasl +lib/nessus/plugins/default_account.inc lib/nessus/plugins/delegate_overflow.nasl lib/nessus/plugins/deltaups_detect.nasl lib/nessus/plugins/dhcp.nasl @@ -265,6 +295,7 @@ lib/nessus/plugins/directoryphp.nasl lib/nessus/plugins/directorypro.nasl lib/nessus/plugins/dmail_overflow.nasl +lib/nessus/plugins/dns_server.nasl lib/nessus/plugins/dns_xfer.nasl lib/nessus/plugins/doc_browsable.nasl lib/nessus/plugins/doc_package_browseable.nasl @@ -385,6 +416,7 @@ lib/nessus/plugins/http-rpc-epmap.nasl lib/nessus/plugins/http_func.inc lib/nessus/plugins/http_ids_evasion.nasl +lib/nessus/plugins/http_keepalive.inc lib/nessus/plugins/http_login.nasl lib/nessus/plugins/http_methods.nasl lib/nessus/plugins/http_trace.nasl @@ -465,6 +497,7 @@ lib/nessus/plugins/interchange_detect.nasl lib/nessus/plugins/interscan_dos.nasl lib/nessus/plugins/interscan_vw_cgi.nasl +lib/nessus/plugins/invision_power_board.nasl lib/nessus/plugins/iplanet_chunked_encoding.nasl lib/nessus/plugins/iplanet_dir_serv.nasl lib/nessus/plugins/iplanet_perf.nasl @@ -472,7 +505,9 @@ lib/nessus/plugins/iplanet_traversal.nasl lib/nessus/plugins/ipop2d.nasl lib/nessus/plugins/ipop2d_readfiles.nasl +lib/nessus/plugins/ipswitch_IMail_version.nasl lib/nessus/plugins/ircd.nasl +lib/nessus/plugins/ismail_overflow.nasl lib/nessus/plugins/ithousemail_bof.nasl lib/nessus/plugins/iws_shtml.nasl lib/nessus/plugins/jigsaw_msdos_dev_DoS.nasl @@ -603,6 +638,7 @@ lib/nessus/plugins/nimda.nasl lib/nessus/plugins/nis_server.nasl lib/nessus/plugins/nisd_overflow.nasl +lib/nessus/plugins/nmap_osfingerprint.nes lib/nessus/plugins/nmap_tcp_connect.nes lib/nessus/plugins/nmap_wrapper.nes lib/nessus/plugins/nntp_info.nasl @@ -625,6 +661,7 @@ lib/nessus/plugins/ntp_open.nasl lib/nessus/plugins/ntp_overflow.nasl lib/nessus/plugins/nullhttpd_content_length.nasl +lib/nessus/plugins/nx_web_content_file_include.nasl lib/nessus/plugins/oas_overflow.nasl lib/nessus/plugins/objectserver.nes lib/nessus/plugins/officescan_disclosure.nasl @@ -639,6 +676,7 @@ lib/nessus/plugins/openssh_uselogin.nasl lib/nessus/plugins/openssh_uselogin_environment.nasl lib/nessus/plugins/openssl_overflow_generic_test.nasl +lib/nessus/plugins/openssl_password_interception.nasl lib/nessus/plugins/oracle9iAS_slashdot_DoS.nasl lib/nessus/plugins/oracle9iAS_too_long_url.nasl lib/nessus/plugins/oracle9i_XSQLServlet_XSQLConfig.nasl @@ -694,6 +732,7 @@ lib/nessus/plugins/phpMyExplorer.nasl lib/nessus/plugins/phpPgAdmin_file_reading.nasl lib/nessus/plugins/php_4_2_x_malformed_POST.nasl +lib/nessus/plugins/php_4_3_0.nasl lib/nessus/plugins/php_apache_win32_default.nasl lib/nessus/plugins/php_file_upload.nasl lib/nessus/plugins/php_imap_overflow.nasl @@ -701,6 +740,7 @@ lib/nessus/plugins/php_nuke_admin_cp.nasl lib/nessus/plugins/php_nuke_bb_smilies_passwd.nasl lib/nessus/plugins/php_nuke_galleryaddon.nasl +lib/nessus/plugins/php_nuke_installed.nasl lib/nessus/plugins/php_nuke_opendir.nasl lib/nessus/plugins/php_nuke_sql_debug.nasl lib/nessus/plugins/php_overflow.nasl @@ -714,6 +754,7 @@ lib/nessus/plugins/pimp.nasl lib/nessus/plugins/ping_asp.nasl lib/nessus/plugins/ping_host.nasl +lib/nessus/plugins/pingpong.inc lib/nessus/plugins/piranha.nasl lib/nessus/plugins/platinum_ftp.nasl lib/nessus/plugins/plusmail.nasl @@ -747,8 +788,8 @@ lib/nessus/plugins/qpopper_euidl.nasl lib/nessus/plugins/qpopper_list.nasl lib/nessus/plugins/quake3_dos.nasl -lib/nessus/plugins/queso.nes lib/nessus/plugins/quickstore.nasl +lib/nessus/plugins/quicktime_admin.nasl lib/nessus/plugins/quote.nasl lib/nessus/plugins/radmin_detect.nasl lib/nessus/plugins/ramcrash.nasl @@ -849,6 +890,7 @@ lib/nessus/plugins/sendmail_debug.nasl lib/nessus/plugins/sendmail_debug_leak.nasl lib/nessus/plugins/sendmail_decode.nasl +lib/nessus/plugins/sendmail_dns_map_txt_overflow.nasl lib/nessus/plugins/sendmail_expn.nasl lib/nessus/plugins/sendmail_ident.nasl lib/nessus/plugins/sendmail_local_overflow.nasl @@ -999,6 +1041,7 @@ lib/nessus/plugins/smtp_program.nasl lib/nessus/plugins/smtp_relay.nasl lib/nessus/plugins/smtp_settings.nasl +lib/nessus/plugins/smtp_too_long_line.nasl lib/nessus/plugins/smtpserver_detect.nasl lib/nessus/plugins/snapstream_dir_trav.nasl lib/nessus/plugins/snmpXdmid.nasl @@ -1097,6 +1140,7 @@ lib/nessus/plugins/upload_cgi.nasl lib/nessus/plugins/uploader_exe.nasl lib/nessus/plugins/upnp_xp.nasl +lib/nessus/plugins/usermin_session_id.nasl lib/nessus/plugins/ustorekeeper.nasl lib/nessus/plugins/uw_imap_overflow.nasl lib/nessus/plugins/uw_imap_overflow_two.nasl @@ -1131,6 +1175,7 @@ lib/nessus/plugins/weblogic_dotdotdos.nasl lib/nessus/plugins/weblogic_percent.nasl lib/nessus/plugins/webmin.nasl +lib/nessus/plugins/webmin_session_id.nasl lib/nessus/plugins/webmirror.nasl lib/nessus/plugins/webplus.nasl lib/nessus/plugins/webplus_version.nasl @@ -1151,6 +1196,7 @@ lib/nessus/plugins/wftp_dos.nasl lib/nessus/plugins/whisker_wrapper.nes lib/nessus/plugins/whois_raw.nasl +lib/nessus/plugins/wihphoto_file_read.nasl lib/nessus/plugins/win_trinoo.nasl lib/nessus/plugins/windmail.nasl lib/nessus/plugins/windows_terminal_services.nasl @@ -1173,12 +1219,14 @@ lib/nessus/plugins/wu_ftpd_site_exec.nasl lib/nessus/plugins/wu_ftpd_site_newer.nasl lib/nessus/plugins/www_infinite_request_DoS.nasl +lib/nessus/plugins/www_server_name.nasl lib/nessus/plugins/www_too_long_auth.nasl lib/nessus/plugins/www_too_long_cookie.nasl lib/nessus/plugins/www_too_long_header.nasl lib/nessus/plugins/www_too_long_header10.nasl lib/nessus/plugins/www_too_long_header11.nasl lib/nessus/plugins/www_too_long_method.nasl +lib/nessus/plugins/www_too_long_options.nasl lib/nessus/plugins/www_too_long_post.nasl lib/nessus/plugins/www_too_long_url.nasl lib/nessus/plugins/www_too_long_useragent.nasl @@ -1204,6 +1252,7 @@ lib/nessus/plugins/zope.nasl lib/nessus/plugins/zope_dos.nasl lib/nessus/plugins/zope_img_updating.nasl +lib/nessus/plugins/zope_path_disclosure.nasl lib/nessus/plugins/zope_zclass.nasl lib/nessus/plugins/zyxel_pwd.nasl lib/nessus/plugins_factory/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 11:20:28 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F39AB37B406 for ; Fri, 28 Feb 2003 11:20:16 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 091C243FB1 for ; Fri, 28 Feb 2003 11:20:14 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SJKDNS096123 for ; Fri, 28 Feb 2003 11:20:13 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SJKDF7096120; Fri, 28 Feb 2003 11:20:13 -0800 (PST) Date: Fri, 28 Feb 2003 11:20:13 -0800 (PST) Message-Id: <200302281920.h1SJKDF7096120@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Udo Schweigert Subject: Re: ports/48671: maintainer-update of security/nessus-*-devel Reply-To: Udo Schweigert Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48671; it has been noted by GNATS. From: Udo Schweigert To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Udo Schweigert Subject: Re: ports/48671: maintainer-update of security/nessus-*-devel Date: Fri, 28 Feb 2003 20:15:46 +0100 Here is a new update which instead should be used: - Update to 2.0.1 - Fix the certificate making. Best regards -- Udo Schweigert, Siemens AG | Voice : +49 89 636 42170 CT IC CERT, Siemens CERT | Fax : +49 89 636 41166 D-81730 Muenchen / Germany | email : udo.schweigert@siemens.com diff -ru /usr/ports/security/nessus-devel/Makefile nessus-devel/Makefile --- /usr/ports/security/nessus-devel/Makefile Fri Feb 21 14:26:47 2003 +++ nessus-devel/Makefile Fri Feb 28 19:51:57 2003 @@ -4,20 +4,20 @@ # PORTNAME= nessus-devel -PORTVERSION= 1.3.4 +PORTVERSION= 2.0.1 CATEGORIES= security -MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.gwdg.de/pub/linux/misc/nessus/unstable/nessus-${PORTVERSION}/src/ \ - http://ftp.gwdg.de/pub/linux/misc/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://sunsite.cnlab-switch.ch/mirror/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.chg.ru/pub/security/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.sekure.net/pub/nessus/unstable/nessus-${PORTVERSION}/src/ +MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ + http://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ + ftp://sunsite.cnlab-switch.ch/mirror/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.chg.ru/pub/security/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.sekure.net/pub/nessus/nessus-${PORTVERSION}/src/ DISTNAME= nessus-core-${PORTVERSION} MAINTAINER= udo.schweigert@siemens.com COMMENT= A security scanner: looks for vulnerabilities in a given network -LIB_DEPENDS= nasl.4:${PORTSDIR}/security/nessus-libnasl-devel +LIB_DEPENDS= nasl.2:${PORTSDIR}/security/nessus-libnasl-devel DIST_SUBDIR= nessus WRKSRC= ${WRKDIR}/nessus-core @@ -42,10 +42,12 @@ MAN8= nessusd.8 nessus-adduser.8 nessus-mkcert.8 nessus-rmuser.8 post-install: -.if ! defined(BATCH) .if ! exists(${PREFIX}/etc/nessus/var/CA/serverkey.pem) - ${PREFIX}/sbin/nessus-mkcert -.endif +.if ! defined(BATCH) + ${PREFIX}/sbin/nessus-mkcert +.else + ${PREFIX}/sbin/nessus-mkcert -q .endif +.endif .include diff -ru /usr/ports/security/nessus-devel/distinfo nessus-devel/distinfo --- /usr/ports/security/nessus-devel/distinfo Fri Feb 14 19:53:54 2003 +++ nessus-devel/distinfo Fri Feb 28 19:48:58 2003 @@ -1 +1 @@ -MD5 (nessus/nessus-core-1.3.4.tar.gz) = 07dee8809755fbc9c1bb0c4b157b034e +MD5 (nessus/nessus-core-2.0.1.tar.gz) = c27dfa326c6ed86ee7d0e9daf3be6577 diff -ru /usr/ports/security/nessus-libnasl-devel/Makefile nessus-libnasl-devel/Makefile --- /usr/ports/security/nessus-libnasl-devel/Makefile Fri Feb 21 14:26:47 2003 +++ nessus-libnasl-devel/Makefile Fri Feb 28 19:47:05 2003 @@ -4,20 +4,20 @@ # PORTNAME= nessus-libnasl-devel -PORTVERSION= 1.3.4 +PORTVERSION= 2.0.1 CATEGORIES= security -MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.gwdg.de/pub/linux/misc/nessus/unstable/nessus-${PORTVERSION}/src/ \ - http://ftp.gwdg.de/pub/linux/misc/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://sunsite.cnlab-switch.ch/mirror/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.chg.ru/pub/security/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.sekure.net/pub/nessus/unstable/nessus-${PORTVERSION}/src/ +MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ + http://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ + ftp://sunsite.cnlab-switch.ch/mirror/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.chg.ru/pub/security/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.sekure.net/pub/nessus/nessus-${PORTVERSION}/src/ DISTNAME= libnasl-${PORTVERSION} MAINTAINER= udo.schweigert@siemens.com COMMENT= Nessus Attack Scripting Language -LIB_DEPENDS= nessus.4:${PORTSDIR}/security/nessus-libraries-devel +LIB_DEPENDS= nessus.2:${PORTSDIR}/security/nessus-libraries-devel DIST_SUBDIR= nessus WRKSRC= ${WRKDIR}/libnasl diff -ru /usr/ports/security/nessus-libnasl-devel/distinfo nessus-libnasl-devel/distinfo --- /usr/ports/security/nessus-libnasl-devel/distinfo Fri Feb 14 19:53:54 2003 +++ nessus-libnasl-devel/distinfo Fri Feb 28 19:47:14 2003 @@ -1 +1 @@ -MD5 (nessus/libnasl-1.3.4.tar.gz) = 138ed54b5c76b44c194c4d62e0dbe635 +MD5 (nessus/libnasl-2.0.1.tar.gz) = 69c731d308728bad9de55b568c2e92dd diff -ru /usr/ports/security/nessus-libnasl-devel/pkg-plist nessus-libnasl-devel/pkg-plist --- /usr/ports/security/nessus-libnasl-devel/pkg-plist Thu Jan 9 15:18:19 2003 +++ nessus-libnasl-devel/pkg-plist Tue Feb 25 08:16:05 2003 @@ -4,4 +4,4 @@ lib/libnasl.a lib/libnasl.la lib/libnasl.so -lib/libnasl.so.4 +lib/libnasl.so.2 diff -ru /usr/ports/security/nessus-libraries-devel/Makefile nessus-libraries-devel/Makefile --- /usr/ports/security/nessus-libraries-devel/Makefile Fri Feb 21 14:26:47 2003 +++ nessus-libraries-devel/Makefile Fri Feb 28 19:44:42 2003 @@ -4,14 +4,14 @@ # PORTNAME= nessus-libraries-devel -PORTVERSION= 1.3.4 +PORTVERSION= 2.0.1 CATEGORIES= security -MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.gwdg.de/pub/linux/misc/nessus/unstable/nessus-${PORTVERSION}/src/ \ - http://ftp.gwdg.de/pub/linux/misc/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://sunsite.cnlab-switch.ch/mirror/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.chg.ru/pub/security/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.sekure.net/pub/nessus/unstable/nessus-${PORTVERSION}/src/ +MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ + http://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ + ftp://sunsite.cnlab-switch.ch/mirror/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.chg.ru/pub/security/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.sekure.net/pub/nessus/nessus-${PORTVERSION}/src/ DISTNAME= nessus-libraries-${PORTVERSION} MAINTAINER= udo.schweigert@siemens.com diff -ru /usr/ports/security/nessus-libraries-devel/distinfo nessus-libraries-devel/distinfo --- /usr/ports/security/nessus-libraries-devel/distinfo Fri Feb 14 19:53:55 2003 +++ nessus-libraries-devel/distinfo Fri Feb 28 19:45:07 2003 @@ -1 +1 @@ -MD5 (nessus/nessus-libraries-1.3.4.tar.gz) = eaaa1395b748ceca3090b00bf2fc35d7 +MD5 (nessus/nessus-libraries-2.0.1.tar.gz) = 5468f15c4c2c84b47a3f72a20996eeca diff -ru /usr/ports/security/nessus-libraries-devel/pkg-plist nessus-libraries-devel/pkg-plist --- /usr/ports/security/nessus-libraries-devel/pkg-plist Thu Jan 9 15:18:20 2003 +++ nessus-libraries-devel/pkg-plist Tue Feb 25 08:11:44 2003 @@ -9,15 +9,15 @@ lib/libhosts_gatherer.a lib/libhosts_gatherer.la lib/libhosts_gatherer.so -lib/libhosts_gatherer.so.4 +lib/libhosts_gatherer.so.2 lib/libnessus.a lib/libnessus.la lib/libnessus.so -lib/libnessus.so.4 +lib/libnessus.so.2 lib/libpcap-nessus.a lib/libpcap-nessus.la lib/libpcap-nessus.so -lib/libpcap-nessus.so.4 +lib/libpcap-nessus.so.2 sbin/uninstall-nessus @dirrm include/nessus/net @dirrm include/nessus diff -ru /usr/ports/security/nessus-plugins-devel/Makefile nessus-plugins-devel/Makefile --- /usr/ports/security/nessus-plugins-devel/Makefile Fri Feb 21 14:26:47 2003 +++ nessus-plugins-devel/Makefile Fri Feb 28 19:54:01 2003 @@ -4,14 +4,14 @@ # PORTNAME= nessus-plugins-devel -PORTVERSION= 1.3.4 +PORTVERSION= 2.0.1 CATEGORIES= security -MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.gwdg.de/pub/linux/misc/nessus/unstable/nessus-${PORTVERSION}/src/ \ - http://ftp.gwdg.de/pub/linux/misc/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://sunsite.cnlab-switch.ch/mirror/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.chg.ru/pub/security/nessus/unstable/nessus-${PORTVERSION}/src/ \ - ftp://ftp.sekure.net/pub/nessus/unstable/nessus-${PORTVERSION}/src/ +MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ + http://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ + ftp://sunsite.cnlab-switch.ch/mirror/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.chg.ru/pub/security/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.sekure.net/pub/nessus/nessus-${PORTVERSION}/src/ DISTNAME= nessus-plugins-${PORTVERSION} MAINTAINER= udo.schweigert@siemens.com diff -ru /usr/ports/security/nessus-plugins-devel/distinfo nessus-plugins-devel/distinfo --- /usr/ports/security/nessus-plugins-devel/distinfo Fri Feb 14 19:53:55 2003 +++ nessus-plugins-devel/distinfo Fri Feb 28 19:54:18 2003 @@ -1 +1 @@ -MD5 (nessus/nessus-plugins-1.3.4.tar.gz) = 0540bb7ca9f66a92d3576bedfd449a84 +MD5 (nessus/nessus-plugins-2.0.1.tar.gz) = e9c1be9b4937381910047ecdd88eb0da diff -ru /usr/ports/security/nessus-plugins-devel/pkg-plist nessus-plugins-devel/pkg-plist --- /usr/ports/security/nessus-plugins-devel/pkg-plist Fri Feb 14 19:53:55 2003 +++ nessus-plugins-devel/pkg-plist Fri Feb 28 20:04:06 2003 @@ -1,6 +1,4 @@ bin/nessus-build -etc/nessus/accounts.txt -etc/nessus/queso.conf lib/nessus/plugins/3com_hub.nes lib/nessus/plugins/3com_switches.nasl lib/nessus/plugins/4553.nasl @@ -24,6 +22,7 @@ lib/nessus/plugins/CSCdw67458.nasl lib/nessus/plugins/CSCdy03429.nasl lib/nessus/plugins/ColdFusion.nasl +lib/nessus/plugins/CuteNews_code_injection.nasl lib/nessus/plugins/DDI_AirConnect_Default_Password.nasl lib/nessus/plugins/DDI_Cabletron_Web_View.nasl lib/nessus/plugins/DDI_Compaq_Mgmt_Proxy.nasl @@ -57,6 +56,7 @@ lib/nessus/plugins/ExAir_dos_advsearch.nasl lib/nessus/plugins/ExAir_dos_query.nasl lib/nessus/plugins/ExAir_dos_search.nasl +lib/nessus/plugins/GOsa_code_injection.nasl lib/nessus/plugins/GuildFTPD097.nasl lib/nessus/plugins/IIS_frontpage_DOS.nasl lib/nessus/plugins/Jserv_css.nasl @@ -82,7 +82,33 @@ lib/nessus/plugins/Xerver_DoS.nasl lib/nessus/plugins/a1stats.nasl lib/nessus/plugins/acc.nasl -lib/nessus/plugins/accounts.nes +lib/nessus/plugins/account_4Dgifts.nasl +lib/nessus/plugins/account_EZsetup.nasl +lib/nessus/plugins/account_OutOfBox.nasl +lib/nessus/plugins/account_StoogR.nasl +lib/nessus/plugins/account_backdoor.nasl +lib/nessus/plugins/account_date.nasl +lib/nessus/plugins/account_demos.nasl +lib/nessus/plugins/account_friday.nasl +lib/nessus/plugins/account_gamez_lrkr0x.nasl +lib/nessus/plugins/account_glftpd.nasl +lib/nessus/plugins/account_guest.nasl +lib/nessus/plugins/account_guest_guest.nasl +lib/nessus/plugins/account_hax0r.nasl +lib/nessus/plugins/account_jack.nasl +lib/nessus/plugins/account_jill.nasl +lib/nessus/plugins/account_lp.nasl +lib/nessus/plugins/account_rewt_satori.nasl +lib/nessus/plugins/account_root.nasl +lib/nessus/plugins/account_root_root.nasl +lib/nessus/plugins/account_root_rootkit1.nasl +lib/nessus/plugins/account_root_rootkit1bis.nasl +lib/nessus/plugins/account_root_rootkit2.nasl +lib/nessus/plugins/account_sync.nasl +lib/nessus/plugins/account_system_manager.nasl +lib/nessus/plugins/account_toor.nasl +lib/nessus/plugins/account_tutor.nasl +lib/nessus/plugins/account_wank_wank.nasl lib/nessus/plugins/achievo_code_injection.nasl lib/nessus/plugins/activestate_perl.nasl lib/nessus/plugins/admentor_login_flaw.nasl @@ -111,6 +137,7 @@ lib/nessus/plugins/analogx_dos.nasl lib/nessus/plugins/analogx_traversal.nasl lib/nessus/plugins/annex_dos.nasl +lib/nessus/plugins/anti_nessus.nasl lib/nessus/plugins/aolserver_default_password.nasl lib/nessus/plugins/apache_1_3_27.nasl lib/nessus/plugins/apache_Tomcat_DOS_Device_XSS.nasl @@ -201,6 +228,7 @@ lib/nessus/plugins/cfinger_search.nasl lib/nessus/plugins/cfinger_version.nasl lib/nessus/plugins/cgibin_browsable.nasl +lib/nessus/plugins/cgibin_in_kb.nasl lib/nessus/plugins/cgicso_command_execution.nasl lib/nessus/plugins/cgicso_cross_site_scripting.nasl lib/nessus/plugins/cgiforum.nasl @@ -227,6 +255,7 @@ lib/nessus/plugins/cisco_voip_dos.nasl lib/nessus/plugins/citrix.nasl lib/nessus/plugins/citrix_find.nasl +lib/nessus/plugins/clarkconnectd.nasl lib/nessus/plugins/cmail_overflow.nasl lib/nessus/plugins/cobalt_cube_webmail_dir_trav.nasl lib/nessus/plugins/cobalt_overflow_cgi.nasl @@ -258,6 +287,7 @@ lib/nessus/plugins/dcforum.nasl lib/nessus/plugins/dcshop_information_disclosure.nasl lib/nessus/plugins/deep_throat.nasl +lib/nessus/plugins/default_account.inc lib/nessus/plugins/delegate_overflow.nasl lib/nessus/plugins/deltaups_detect.nasl lib/nessus/plugins/dhcp.nasl @@ -265,6 +295,7 @@ lib/nessus/plugins/directoryphp.nasl lib/nessus/plugins/directorypro.nasl lib/nessus/plugins/dmail_overflow.nasl +lib/nessus/plugins/dns_server.nasl lib/nessus/plugins/dns_xfer.nasl lib/nessus/plugins/doc_browsable.nasl lib/nessus/plugins/doc_package_browseable.nasl @@ -385,6 +416,7 @@ lib/nessus/plugins/http-rpc-epmap.nasl lib/nessus/plugins/http_func.inc lib/nessus/plugins/http_ids_evasion.nasl +lib/nessus/plugins/http_keepalive.inc lib/nessus/plugins/http_login.nasl lib/nessus/plugins/http_methods.nasl lib/nessus/plugins/http_trace.nasl @@ -465,6 +497,7 @@ lib/nessus/plugins/interchange_detect.nasl lib/nessus/plugins/interscan_dos.nasl lib/nessus/plugins/interscan_vw_cgi.nasl +lib/nessus/plugins/invision_power_board.nasl lib/nessus/plugins/iplanet_chunked_encoding.nasl lib/nessus/plugins/iplanet_dir_serv.nasl lib/nessus/plugins/iplanet_perf.nasl @@ -472,7 +505,9 @@ lib/nessus/plugins/iplanet_traversal.nasl lib/nessus/plugins/ipop2d.nasl lib/nessus/plugins/ipop2d_readfiles.nasl +lib/nessus/plugins/ipswitch_IMail_version.nasl lib/nessus/plugins/ircd.nasl +lib/nessus/plugins/ismail_overflow.nasl lib/nessus/plugins/ithousemail_bof.nasl lib/nessus/plugins/iws_shtml.nasl lib/nessus/plugins/jigsaw_msdos_dev_DoS.nasl @@ -603,6 +638,7 @@ lib/nessus/plugins/nimda.nasl lib/nessus/plugins/nis_server.nasl lib/nessus/plugins/nisd_overflow.nasl +lib/nessus/plugins/nmap_osfingerprint.nes lib/nessus/plugins/nmap_tcp_connect.nes lib/nessus/plugins/nmap_wrapper.nes lib/nessus/plugins/nntp_info.nasl @@ -625,6 +661,7 @@ lib/nessus/plugins/ntp_open.nasl lib/nessus/plugins/ntp_overflow.nasl lib/nessus/plugins/nullhttpd_content_length.nasl +lib/nessus/plugins/nx_web_content_file_include.nasl lib/nessus/plugins/oas_overflow.nasl lib/nessus/plugins/objectserver.nes lib/nessus/plugins/officescan_disclosure.nasl @@ -639,6 +676,7 @@ lib/nessus/plugins/openssh_uselogin.nasl lib/nessus/plugins/openssh_uselogin_environment.nasl lib/nessus/plugins/openssl_overflow_generic_test.nasl +lib/nessus/plugins/openssl_password_interception.nasl lib/nessus/plugins/oracle9iAS_slashdot_DoS.nasl lib/nessus/plugins/oracle9iAS_too_long_url.nasl lib/nessus/plugins/oracle9i_XSQLServlet_XSQLConfig.nasl @@ -694,6 +732,7 @@ lib/nessus/plugins/phpMyExplorer.nasl lib/nessus/plugins/phpPgAdmin_file_reading.nasl lib/nessus/plugins/php_4_2_x_malformed_POST.nasl +lib/nessus/plugins/php_4_3_0.nasl lib/nessus/plugins/php_apache_win32_default.nasl lib/nessus/plugins/php_file_upload.nasl lib/nessus/plugins/php_imap_overflow.nasl @@ -701,6 +740,7 @@ lib/nessus/plugins/php_nuke_admin_cp.nasl lib/nessus/plugins/php_nuke_bb_smilies_passwd.nasl lib/nessus/plugins/php_nuke_galleryaddon.nasl +lib/nessus/plugins/php_nuke_installed.nasl lib/nessus/plugins/php_nuke_opendir.nasl lib/nessus/plugins/php_nuke_sql_debug.nasl lib/nessus/plugins/php_overflow.nasl @@ -714,6 +754,7 @@ lib/nessus/plugins/pimp.nasl lib/nessus/plugins/ping_asp.nasl lib/nessus/plugins/ping_host.nasl +lib/nessus/plugins/pingpong.inc lib/nessus/plugins/piranha.nasl lib/nessus/plugins/platinum_ftp.nasl lib/nessus/plugins/plusmail.nasl @@ -747,8 +788,8 @@ lib/nessus/plugins/qpopper_euidl.nasl lib/nessus/plugins/qpopper_list.nasl lib/nessus/plugins/quake3_dos.nasl -lib/nessus/plugins/queso.nes lib/nessus/plugins/quickstore.nasl +lib/nessus/plugins/quicktime_admin.nasl lib/nessus/plugins/quote.nasl lib/nessus/plugins/radmin_detect.nasl lib/nessus/plugins/ramcrash.nasl @@ -849,6 +890,7 @@ lib/nessus/plugins/sendmail_debug.nasl lib/nessus/plugins/sendmail_debug_leak.nasl lib/nessus/plugins/sendmail_decode.nasl +lib/nessus/plugins/sendmail_dns_map_txt_overflow.nasl lib/nessus/plugins/sendmail_expn.nasl lib/nessus/plugins/sendmail_ident.nasl lib/nessus/plugins/sendmail_local_overflow.nasl @@ -999,6 +1041,7 @@ lib/nessus/plugins/smtp_program.nasl lib/nessus/plugins/smtp_relay.nasl lib/nessus/plugins/smtp_settings.nasl +lib/nessus/plugins/smtp_too_long_line.nasl lib/nessus/plugins/smtpserver_detect.nasl lib/nessus/plugins/snapstream_dir_trav.nasl lib/nessus/plugins/snmpXdmid.nasl @@ -1097,6 +1140,7 @@ lib/nessus/plugins/upload_cgi.nasl lib/nessus/plugins/uploader_exe.nasl lib/nessus/plugins/upnp_xp.nasl +lib/nessus/plugins/usermin_session_id.nasl lib/nessus/plugins/ustorekeeper.nasl lib/nessus/plugins/uw_imap_overflow.nasl lib/nessus/plugins/uw_imap_overflow_two.nasl @@ -1131,6 +1175,7 @@ lib/nessus/plugins/weblogic_dotdotdos.nasl lib/nessus/plugins/weblogic_percent.nasl lib/nessus/plugins/webmin.nasl +lib/nessus/plugins/webmin_session_id.nasl lib/nessus/plugins/webmirror.nasl lib/nessus/plugins/webplus.nasl lib/nessus/plugins/webplus_version.nasl @@ -1151,6 +1196,7 @@ lib/nessus/plugins/wftp_dos.nasl lib/nessus/plugins/whisker_wrapper.nes lib/nessus/plugins/whois_raw.nasl +lib/nessus/plugins/wihphoto_file_read.nasl lib/nessus/plugins/win_trinoo.nasl lib/nessus/plugins/windmail.nasl lib/nessus/plugins/windows_terminal_services.nasl @@ -1173,12 +1219,14 @@ lib/nessus/plugins/wu_ftpd_site_exec.nasl lib/nessus/plugins/wu_ftpd_site_newer.nasl lib/nessus/plugins/www_infinite_request_DoS.nasl +lib/nessus/plugins/www_server_name.nasl lib/nessus/plugins/www_too_long_auth.nasl lib/nessus/plugins/www_too_long_cookie.nasl lib/nessus/plugins/www_too_long_header.nasl lib/nessus/plugins/www_too_long_header10.nasl lib/nessus/plugins/www_too_long_header11.nasl lib/nessus/plugins/www_too_long_method.nasl +lib/nessus/plugins/www_too_long_options.nasl lib/nessus/plugins/www_too_long_post.nasl lib/nessus/plugins/www_too_long_url.nasl lib/nessus/plugins/www_too_long_useragent.nasl @@ -1204,6 +1252,7 @@ lib/nessus/plugins/zope.nasl lib/nessus/plugins/zope_dos.nasl lib/nessus/plugins/zope_img_updating.nasl +lib/nessus/plugins/zope_path_disclosure.nasl lib/nessus/plugins/zope_zclass.nasl lib/nessus/plugins/zyxel_pwd.nasl lib/nessus/plugins_factory/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 11:30:19 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2CFA537B401 for ; Fri, 28 Feb 2003 11:30:15 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 899D043FCB for ; Fri, 28 Feb 2003 11:30:13 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SJUDNS098051 for ; Fri, 28 Feb 2003 11:30:13 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SJUDZ4098050; Fri, 28 Feb 2003 11:30:13 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C87837B401 for ; Fri, 28 Feb 2003 11:22:42 -0800 (PST) Received: from meitner.wh.uni-dortmund.de (meitner.wh.Uni-Dortmund.DE [129.217.129.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13D9F43FCB for ; Fri, 28 Feb 2003 11:22:38 -0800 (PST) (envelope-from michaelnottebrock@gmx.net) Received: from lofi.dyndns.org ([10.3.12.105]) by meitner.wh.uni-dortmund.de (8.10.2/8.10.2/SuSE Linux 8.10.0-0.3) with ESMTP id h1SJMXc24676; Fri, 28 Feb 2003 20:22:35 +0100 Received: from kiste.my.domain (kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.6/8.12.6) with ESMTP id h1SJMWwD088647 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Fri, 28 Feb 2003 20:22:33 +0100 (CET) (envelope-from michaelnottebrock@gmx.net) Message-Id: <200302282022.32577.michaelnottebrock@gmx.net> Date: Fri, 28 Feb 2003 20:22:31 +0100 From: Michael Nottebrock To: FreeBSD-gnats-submit@FreeBSD.org Cc: pav@oook.cz Subject: ports/48791: Maintainter update: sysutils/cdbakeoven Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48791 >Category: ports >Synopsis: Maintainter update: sysutils/cdbakeoven >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 11:30:12 PST 2003 >Closed-Date: >Last-Modified: >Originator: Michael Nottebrock >Release: FreeBSD 5.0-RELEASE-p3 i386 >Organization: >Environment: System: FreeBSD lofi.dyndns.org 5.0-RELEASE-p3 FreeBSD 5.0-RELEASE-p3 #0: Mon Feb 24 17:51:21 CET 2003 lofi@lofi.dyndns.org:/usr/obj/usr/src/sys/LOFI i386 >Description: Changes: - Get rid of the bogus pkg-message already (noticed by: many) - Depend on kdelibs instead of kdebase (submitted by: Pav Lucistnik ) - Add a patch submitted by: Joris Vandalon - Bump PORTREVISION >How-To-Repeat: >Fix: diff -urN cdbakeoven.orig/Makefile cdbakeoven/Makefile --- cdbakeoven.orig/Makefile Fri Feb 28 20:10:29 2003 +++ cdbakeoven/Makefile Fri Feb 28 20:11:34 2003 @@ -7,7 +7,7 @@ PORTNAME= cdbakeoven PORTVERSION= 1.8.9 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils kde MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -21,7 +21,7 @@ ogg123:${PORTSDIR}/audio/vorbis-tools USE_BZIP2= yes -USE_KDEBASE_VER=3 +USE_KDELIBS_VER=3 USE_REINPLACE= yes GNU_CONFIGURE= yes USE_GMAKE= yes @@ -30,8 +30,5 @@ post-patch: @${REINPLACE_CMD} -e 's|-O2||' \ ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} - -post-install: - @${CAT} ${PKGMESSAGE} .include diff -urN cdbakeoven.orig/files/patch-cdbakeoven::dialogs::CdboDialogActionFactory.cpp cdbakeoven/files/patch-cdbakeoven::dialogs::CdboDialogActionFactory.cpp --- cdbakeoven.orig/files/patch-cdbakeoven::dialogs::CdboDialogActionFactory.cpp Thu Jan 1 01:00:00 1970 +++ cdbakeoven/files/patch-cdbakeoven::dialogs::CdboDialogActionFactory.cpp Tue Jan 21 11:17:00 2003 @@ -0,0 +1,43 @@ +--- cdbakeoven/dialogs/CdboDialogActionFactory.cpp Tue Jan 21 11:11:55 2003 ++++ cdbakeoven/dialogs/CdboDialogActionFactory.cpp.orig Tue Jan 21 11:11:58 2003 +@@ -385,9 +385,12 @@ + user->status(i18n("Reading CDROM...")); + *out += ".iso"; + cdboProc = new KProcess(); +- *cdboProc << "dd"; +- *cdboProc << "if=" + in; +- *cdboProc << "of=" + *out + ""; ++ *cdboProc << "readcd"; ++ *cdboProc << "dev=" + user->getScsiDevice(); ++ *cdboProc << "-q"; ++ *cdboProc << "retries=32"; ++ *cdboProc << "-s"; ++ *cdboProc << "f=" + *out; + } + //--------------------------------------------------------------------------------------------- + void CdboDialogActionFactory::initBurnProcess(QString image, bool audio ){ +@@ -517,6 +520,7 @@ + strBuff.prepend("'" + tmpLbl->text()); + strBuff.append("'"); + *cdboShellProc << strBuff;*/ ++ image.replace(QRegExp("'"),""); + + if(image == "-") + *cdboShellProc << " - "; +@@ -1132,7 +1136,7 @@ + KRun::shellQuote( file ); + KRun::shellQuote(outName); + if(mType.find("x-mp3") != -1){ +- *cdboShellProc << "mpg123 -v -s " + file + " > " + outName; ++ *cdboShellProc << "mpg123 -v -w " + outName + " " + file; + tmpList->append(outName); + tracksList->append(outName); + return true; +@@ -1519,6 +1523,7 @@ + void CdboDialogActionFactory::removeOneFile(QString fileName){ + if(!fileName) return; + ++ fileName.replace(QRegExp("'"),""); + if(!QFile::remove(fileName)) + user->output(CdboDialogBase::ErrorMessage, i18n("Failed to remove ") + fileName + "!"); + } diff -urN cdbakeoven.orig/pkg-message cdbakeoven/pkg-message --- cdbakeoven.orig/pkg-message Fri Feb 28 20:10:29 2003 +++ cdbakeoven/pkg-message Thu Jan 1 01:00:00 1970 @@ -1,4 +0,0 @@ -******************************************************************************* -PLEASE NOTE: This port will go away with the release of KDE 3.1, which will - include cdbakeoven. -******************************************************************************* >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 12:17:54 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A79C037B401; Fri, 28 Feb 2003 12:17:53 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 47A8D43F93; Fri, 28 Feb 2003 12:17:53 -0800 (PST) (envelope-from roberto@FreeBSD.org) Received: from freefall.freebsd.org (roberto@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SKHrNS011432; Fri, 28 Feb 2003 12:17:53 -0800 (PST) (envelope-from roberto@freefall.freebsd.org) Received: (from roberto@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SKHrhQ011428; Fri, 28 Feb 2003 12:17:53 -0800 (PST) Date: Fri, 28 Feb 2003 12:17:53 -0800 (PST) From: Ollivier Robert Message-Id: <200302282017.h1SKHrhQ011428@freefall.freebsd.org> To: roberto@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mbr@FreeBSD.org Subject: Re: ports/48789: [PATCH] editors/openoffice: make OO.o support uk_UA.KOI8-U locale correctly Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [PATCH] editors/openoffice: make OO.o support uk_UA.KOI8-U locale correctly Responsible-Changed-From-To: freebsd-ports-bugs->mbr Responsible-Changed-By: roberto Responsible-Changed-When: Fri Feb 28 12:17:00 PST 2003 Responsible-Changed-Why: OO matters are for mbr. http://www.freebsd.org/cgi/query-pr.cgi?pr=48789 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 12:56:51 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C7DC37B401; Fri, 28 Feb 2003 12:56:50 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCB7143FBD; Fri, 28 Feb 2003 12:56:49 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SKunNS019578; Fri, 28 Feb 2003 12:56:49 -0800 (PST) (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SKunvw019574; Fri, 28 Feb 2003 12:56:49 -0800 (PST) Date: Fri, 28 Feb 2003 12:56:49 -0800 (PST) From: Tilman Linneweh Message-Id: <200302282056.h1SKunvw019574@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kuriyama@FreeBSD.org Subject: Re: ports/48502: make net/net-snmp work under -CURRENT Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: make net/net-snmp work under -CURRENT Responsible-Changed-From-To: freebsd-ports-bugs->kuriyama Responsible-Changed-By: arved Responsible-Changed-When: Fri Feb 28 12:56:14 PST 2003 Responsible-Changed-Why: Over to Maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=48502 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 12:57:54 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76C3437B406; Fri, 28 Feb 2003 12:57:53 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1700043F75; Fri, 28 Feb 2003 12:57:53 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SKvqNS019634; Fri, 28 Feb 2003 12:57:52 -0800 (PST) (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SKvqe9019630; Fri, 28 Feb 2003 12:57:52 -0800 (PST) Date: Fri, 28 Feb 2003 12:57:52 -0800 (PST) From: Tilman Linneweh Message-Id: <200302282057.h1SKvqe9019630@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, znerd@FreeBSD.org Subject: Re: ports/48737: java/jdk13-doc - 5572 files missing from the installed file lists Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: java/jdk13-doc - 5572 files missing from the installed file lists Responsible-Changed-From-To: freebsd-ports-bugs->znerd Responsible-Changed-By: arved Responsible-Changed-When: Fri Feb 28 12:57:24 PST 2003 Responsible-Changed-Why: Over to Maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=48737 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 12:59:14 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA98E37B401; Fri, 28 Feb 2003 12:59:13 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C83143F85; Fri, 28 Feb 2003 12:59:13 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SKxDNS019685; Fri, 28 Feb 2003 12:59:13 -0800 (PST) (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SKxDlZ019681; Fri, 28 Feb 2003 12:59:13 -0800 (PST) Date: Fri, 28 Feb 2003 12:59:13 -0800 (PST) From: Tilman Linneweh Message-Id: <200302282059.h1SKxDlZ019681@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kde@FreeBSD.org Subject: Re: ports/48681: `x11/kdebase3' could not be build on recent -CURRENT Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: `x11/kdebase3' could not be build on recent -CURRENT Responsible-Changed-From-To: freebsd-ports-bugs->kde Responsible-Changed-By: arved Responsible-Changed-When: Fri Feb 28 12:58:09 PST 2003 Responsible-Changed-Why: A patch is already circulating around. Over to Maintainers. http://www.freebsd.org/cgi/query-pr.cgi?pr=48681 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 13: 0:33 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E653237B401 for ; Fri, 28 Feb 2003 13:00:29 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CD2643F93 for ; Fri, 28 Feb 2003 13:00:29 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SL0TNS019742 for ; Fri, 28 Feb 2003 13:00:29 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SL0TlL019741; Fri, 28 Feb 2003 13:00:29 -0800 (PST) Date: Fri, 28 Feb 2003 13:00:29 -0800 (PST) Message-Id: <200302282100.h1SL0TlL019741@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: "Simon 'portlint' Schubert" Subject: Re: ports/48776: new port x11-toolkits/SoXt Reply-To: "Simon 'portlint' Schubert" Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48776; it has been noted by GNATS. From: "Simon 'portlint' Schubert" To: Roland Jesse Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/48776: new port x11-toolkits/SoXt Date: Fri, 28 Feb 2003 21:59:29 +0100 --+V(g=.mcHE)94Jno Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Lately Roland Jesse told: > sed 's/^X//' >SoXt/Makefile << 'END-of-SoXt/Makefile' > X# New ports collection makefile for: SoXt > X# Date created: 28 February 2003 > X# Whom: roland.jesse@gmx.net > X# > X# $FreeBSD$ > X# > X > XPORTNAME= SoXt use lowercase? see porter's handbook > XPORTVERSION= 20021107 > XCATEGORIES= x11-toolkits > XMASTER_SITES= ftp://ftp.coin3d.org/pub/coin/src/snapshots/ > X > XMAINTAINER= roland.jesse@gmx.net > XCOMMENT= GUI binding for using Open Inventor with Xt/Motif > X > XLIB_DEPENDS+= Coin.20:${PORTSDIR}/graphics/Coin += is not good if this should be used as dependency for other ports. better use just = > XWRKSRC= ${WRKDIR}/SoXt > XUSE_MESA= yes > XUSE_MOTIF= yes > XUSE_X_PREFIX= yes > XUSE_LIBTOOL= yes > XCONFIGURE_ENV+= CXXFLAGS="-pthread" ${PTHREAD_CFLAGS} and/or ${PTHREAD_LIBS} are you sure about CXXFLAGS? -pthread looks more like LIBS > XCONFIGURE_ARGS+= --prefix=${X11BASE} --with-pthread=yes --with-coin=${X11BASE} you want: CONFIGURE_ARGS= --with-pthread-yes --with-coin=${X11BASE} > XINSTALLS_SHLIB= yes > XMAN1= soxt-config.1 > XMANCOMPRESSED= yes looking below i guess you either want "maybe" or "no", certainly not "yes" > Xpost-install: > X ${MV} ${PREFIX}/bin/${MACHINE_ARCH}-portbld-freebsd${OSREL}-soxt-config ${PREFIX}/bin/soxt-config > X ${MV} ${PREFIX}/man/man1/${MACHINE_ARCH}-portbld-freebsd${OSREL}-soxt-config.1 ${PREFIX}/man/man1/soxt-config.1 to prevent this, use: CONFIGURE_TARGET= --target=${MACHINE_ARCH}-portbld-freebsd${OSREL} > sed 's/^X//' >SoXt/pkg-descr << 'END-of-SoXt/pkg-descr' > XFrom the README: > X doubt this is needed. porters copy from README most of the time :D [...] > sed 's/^X//' >SoXt/pkg-plist << 'END-of-SoXt/pkg-plist' [...] > Xlib/libSoXt.la try and remove creation of this .la file, maybe by patching ${WRKSRC}/configure (of course except this is needed) [...] > X@dirrm share/Coin/conf > X@dirrm share/Coin > X@dirrm share no. this is removed by the coin port cheers simon -- /"\ http://corecode.ath.cx/#donate \ / \ ASCII Ribbon Campaign / \ Against HTML Mail and News --+V(g=.mcHE)94Jno Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.0 (GNU/Linux) iD8DBQE+X822r5S+dk6z85oRAhmTAJ4xsDLQKwBGKm4L87sMrnlyGVcDxACfbVIS vBOU/fLNCyDw0ZoRUVBea9U= =0z2h -----END PGP SIGNATURE----- --+V(g=.mcHE)94Jno-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 13: 2:27 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F1CF37B401; Fri, 28 Feb 2003 13:02:26 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1EDE643FB1; Fri, 28 Feb 2003 13:02:26 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SL2QNS021617; Fri, 28 Feb 2003 13:02:26 -0800 (PST) (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SL2Pt8021613; Fri, 28 Feb 2003 13:02:25 -0800 (PST) Date: Fri, 28 Feb 2003 13:02:25 -0800 (PST) From: Tilman Linneweh Message-Id: <200302282102.h1SL2Pt8021613@freefall.freebsd.org> To: ler@lerctr.org, billf@freebsd.org, ler@lerctr.org, arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48689: net/ethereal port dies (OpenSSL 0.9.7?) Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: net/ethereal port dies (OpenSSL 0.9.7?) State-Changed-From-To: open->closed State-Changed-By: arved State-Changed-When: Fri Feb 28 13:01:53 PST 2003 State-Changed-Why: Submitter confirms, problem is fixed. http://www.freebsd.org/cgi/query-pr.cgi?pr=48689 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 13: 5:47 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5695037B401; Fri, 28 Feb 2003 13:05:46 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE77D43FA3; Fri, 28 Feb 2003 13:05:45 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SL5jNS024932; Fri, 28 Feb 2003 13:05:45 -0800 (PST) (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SL5jvO024928; Fri, 28 Feb 2003 13:05:45 -0800 (PST) Date: Fri, 28 Feb 2003 13:05:45 -0800 (PST) From: Tilman Linneweh Message-Id: <200302282105.h1SL5jvO024928@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, alane@FreeBSD.org Subject: Re: ports/48343: Several issues with the www/zope port Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Several issues with the www/zope port Responsible-Changed-From-To: freebsd-ports-bugs->alane Responsible-Changed-By: arved Responsible-Changed-When: Fri Feb 28 13:05:18 PST 2003 Responsible-Changed-Why: Over to Maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=48343 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 13: 8:43 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F78C37B401; Fri, 28 Feb 2003 13:08:42 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 206EA43F3F; Fri, 28 Feb 2003 13:08:42 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SL8gNS025032; Fri, 28 Feb 2003 13:08:42 -0800 (PST) (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SL8fNU025028; Fri, 28 Feb 2003 13:08:41 -0800 (PST) Date: Fri, 28 Feb 2003 13:08:41 -0800 (PST) From: Tilman Linneweh Message-Id: <200302282108.h1SL8fNU025028@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wjv@FreeBSD.org Subject: Re: ports/48786: update biology/EMBOSS to the latest release Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: update biology/EMBOSS to the latest release Responsible-Changed-From-To: freebsd-ports-bugs->wjv Responsible-Changed-By: arved Responsible-Changed-When: Fri Feb 28 13:08:06 PST 2003 Responsible-Changed-Why: Over to Maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=48786 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 13:11:20 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1209337B401; Fri, 28 Feb 2003 13:11:20 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A932443F75; Fri, 28 Feb 2003 13:11:19 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SLBJNS026941; Fri, 28 Feb 2003 13:11:19 -0800 (PST) (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SLBJ3U026937; Fri, 28 Feb 2003 13:11:19 -0800 (PST) Date: Fri, 28 Feb 2003 13:11:19 -0800 (PST) From: Tilman Linneweh Message-Id: <200302282111.h1SLBJ3U026937@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kde@FreeBSD.org Subject: Re: ports/48761: q31 fails to compile with errors in Xft.h Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: q31 fails to compile with errors in Xft.h Responsible-Changed-From-To: freebsd-ports-bugs->kde Responsible-Changed-By: arved Responsible-Changed-When: Fri Feb 28 13:10:41 PST 2003 Responsible-Changed-Why: Over to Maintainers http://www.freebsd.org/cgi/query-pr.cgi?pr=48761 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 13:13:53 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B43E37B401; Fri, 28 Feb 2003 13:13:51 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DCC1F43FAF; Fri, 28 Feb 2003 13:13:50 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SLDoNS027964; Fri, 28 Feb 2003 13:13:50 -0800 (PST) (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SLDoW3027960; Fri, 28 Feb 2003 13:13:50 -0800 (PST) Date: Fri, 28 Feb 2003 13:13:50 -0800 (PST) From: Tilman Linneweh Message-Id: <200302282113.h1SLDoW3027960@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org Subject: Re: ports/48646: check-already-installed port by origin Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: check-already-installed port by origin Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: arved Responsible-Changed-When: Fri Feb 28 13:13:27 PST 2003 Responsible-Changed-Why: Over to Maintainers http://www.freebsd.org/cgi/query-pr.cgi?pr=48646 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 13:18: 5 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC04637B401; Fri, 28 Feb 2003 13:18:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E92CC43FAF; Fri, 28 Feb 2003 13:18:02 -0800 (PST) (envelope-from obraun@FreeBSD.org) Received: from freefall.freebsd.org (obraun@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SLI2NS028228; Fri, 28 Feb 2003 13:18:02 -0800 (PST) (envelope-from obraun@freefall.freebsd.org) Received: (from obraun@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SLI2kx028224; Fri, 28 Feb 2003 13:18:02 -0800 (PST) Date: Fri, 28 Feb 2003 13:18:02 -0800 (PST) From: Oliver Braun Message-Id: <200302282118.h1SLI2kx028224@freefall.freebsd.org> To: trish@bsdunix.net, obraun@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48787: Ecartis port has security hole in LSG/2 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Ecartis port has security hole in LSG/2 State-Changed-From-To: open->closed State-Changed-By: obraun State-Changed-When: Fri Feb 28 13:17:47 PST 2003 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48787 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 14: 0:49 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C5C837B401 for ; Fri, 28 Feb 2003 14:00:39 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07ED643FBD for ; Fri, 28 Feb 2003 14:00:28 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SM0SNS036392 for ; Fri, 28 Feb 2003 14:00:28 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SM0SYj036391; Fri, 28 Feb 2003 14:00:28 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5856A37B401 for ; Fri, 28 Feb 2003 13:59:51 -0800 (PST) Received: from hp.ulstu.ru (hp.ulstu.ru [62.76.34.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id C62D843F85 for ; Fri, 28 Feb 2003 13:59:37 -0800 (PST) (envelope-from zaa@ulstu.ru) Received: by hp.ulstu.ru (Postfix, from userid 3909) id EDFC32B; Sat, 1 Mar 2003 00:59:30 +0300 (MSK) Message-Id: <20030228215930.EDFC32B@hp.ulstu.ru> Date: Sat, 1 Mar 2003 00:59:30 +0300 (MSK) From: zhuravlev alexander Reply-To: zhuravlev alexander To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48794: [Maintainer update] Port: security/drweb-postfix Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48794 >Category: ports >Synopsis: [Maintainer update] Port: security/drweb-postfix >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 14:00:28 PST 2003 >Closed-Date: >Last-Modified: >Originator: zhuravlev alexander >Release: FreeBSD 4.8-PRERELEASE i386 >Organization: Ulyanovsk State Technical University, NOC >Environment: System: FreeBSD hp.ulstu.ru 4.8-PRERELEASE FreeBSD 4.8-PRERELEASE #2: Fri Feb 28 12:57:56 MSK 2003 root@hp.ulstu.ru:/usr/obj/usr/src/sys/HP i386 >Description: Update of security/drweb-postfix port to 4.29.10a version. >How-To-Repeat: >Fix: Apply that patch. --- drweb-postfix.patch begins here --- diff -urN drweb-postfix.old/Makefile drweb-postfix/Makefile --- drweb-postfix.old/Makefile Sat Feb 22 13:33:17 2003 +++ drweb-postfix/Makefile Sat Mar 1 00:33:37 2003 @@ -6,10 +6,10 @@ # PORTNAME= drweb_postfix -PORTVERSION= 4.29 +PORTVERSION= 4.29.10a CATEGORIES= security mail MASTER_SITES= ftp://ftp.drweb.ru/pub/unix/ -DISTNAME= drweb-clients-${PORTVERSION}-sources +DISTNAME= drweb-clients-4.29.10-A-sources MAINTAINER= zaa@ulstu.ru COMMENT= Postfix message filter for virus processing through DrWeb daemon @@ -21,12 +21,13 @@ INST_PREFIX= ${PREFIX}/${PORTNAME} DOC_DIR= ${PREFIX}/share/doc/drweb-postfix -LANGS=en-ru en-es -CONFS=drweb_postfix users -TMPLS=error-admin error-sender mailbomb-admin mailbomb-sender skip-sender \ +LANGS=en-ru +CONFS=drweb_postfix users viruses addresses +TMPLS=archive-admin archive-sender error-admin error-sender skip-sender \ virus-admin virus-rcpts virus-sender -DOCS=readme notify.rus.txt users_list.rus.txt conf_file.rus.txt notify.txt \ - users_list.txt conf_file.txt readme.rus +DOCS=addresses_list.rus.txt addresses_list.txt conf_file.rus.txt \ + conf_file.txt notify.rus.txt notify.txt readme readme.rus \ + users_list.rus.txt users_list.txt viruses_list.rus.txt viruses_list.txt post-patch: cd ${WRKSRC} && \ @@ -39,6 +40,7 @@ post-configure: cd ${WRKSRC} && { \ + ${ECHO_CMD} ${PORTVERSION}; \ ${ECHO_CMD} n; \ ${ECHO_CMD} n; \ ${ECHO_CMD} n; \ @@ -46,7 +48,6 @@ ${ECHO_CMD} n; \ ${ECHO_CMD} n; \ ${ECHO_CMD} y; \ - ${ECHO_CMD} n; \ ${ECHO_CMD} ${CFLAGS} ; \ ${ECHO_CMD} y; \ } | ./configure diff -urN drweb-postfix.old/distinfo drweb-postfix/distinfo --- drweb-postfix.old/distinfo Thu Jan 16 08:07:07 2003 +++ drweb-postfix/distinfo Fri Feb 28 23:52:39 2003 @@ -1 +1 @@ -MD5 (drweb-clients-4.29-sources.tar.gz) = 5ce100d96dd3a43df4fb49b2a8891457 +MD5 (drweb-clients-4.29.10-A-sources.tar.gz) = c31e8383182e918e59d4ced8716cee4d diff -urN drweb-postfix.old/files/patch-aa drweb-postfix/files/patch-aa --- drweb-postfix.old/files/patch-aa Thu Jan 16 08:07:07 2003 +++ drweb-postfix/files/patch-aa Sat Mar 1 00:18:34 2003 @@ -1,11 +1,11 @@ ---- dw_options.c.bak Thu Aug 22 18:35:50 2002 -+++ dw_options.c Sat Aug 24 19:19:13 2002 -@@ -92,7 +92,7 @@ - +--- dw_options.c.orig Fri Feb 14 16:52:50 2003 ++++ dw_options.c Sat Mar 1 00:18:04 2003 +@@ -113,7 +113,7 @@ #if defined(__UNIX_DW) #if !defined(EMX_DW) + #if defined(FreeBSD_DW) -#define OS_SPEC_CONFNAME "/usr/local/drweb/"CONF_FNAME +#define OS_SPEC_CONFNAME "%PREFIX%/etc/drweb/"CONF_FNAME - #else /* EMX */ - #define OS_SPEC_CONFNAME "./"CONF_FNAME - #endif /* EMX */ + #else /* FreeBSD */ + #define OS_SPEC_CONFNAME "/opt/drweb/"CONF_FNAME + #endif /* FreeBSD */ diff -urN drweb-postfix.old/files/patch-ab drweb-postfix/files/patch-ab --- drweb-postfix.old/files/patch-ab Thu Jan 16 08:07:07 2003 +++ drweb-postfix/files/patch-ab Sat Mar 1 00:46:55 2003 @@ -1,9 +1,9 @@ ---- etc/drweb_postfix.conf.orig Wed Dec 4 16:17:33 2002 -+++ etc/drweb_postfix.conf Wed Dec 4 16:56:36 2002 -@@ -14,14 +14,14 @@ - # Address = inet:3000@localhost +--- etc/drweb_postfix.conf.orig Sat Mar 1 00:19:10 2003 ++++ etc/drweb_postfix.conf Sat Mar 1 00:28:41 2003 +@@ -17,14 +17,14 @@ # Address = local:/usr/local/drweb/run/drwebd.skt # Address = pid:/usr/local/drweb/run/drwebd.pid + # Address = pid:/var/drweb/run/drwebd.pid, inet:3000@backup_server.example.com -Address = inet:3000@localhost +Address = local:%PREFIX%/drweb/run/drwebd.sock @@ -17,7 +17,7 @@ ######################## # Scan options section # -@@ -58,10 +58,10 @@ +@@ -69,10 +69,10 @@ DenyOnOne = yes # List with rules for users or domains to block scanning @@ -30,16 +30,24 @@ # Permissions for created spool files SpoolFilesMode = 0600 -@@ -144,16 +144,16 @@ +@@ -176,22 +176,22 @@ ProcessingErrors = reject # Admin mail address (may be unix-local address) --AdminMail = av-admin@example.com +-AdminMail = av-master@example.com +AdminMail = postmaster # Filter address, that be used in From: --FilterMail = DrWeb-DAEMON@example.com -+FilterMail = DrWeb-DAEMON@%HOSTNAME% +-FilterMail = DrWEB-DAEMON@example.com ++FilterMail = DrWEB-DAEMON@%HOSTNAME% + + # List of unnotificable viruses +-UnnotificableVirusesList = /etc/drweb/viruses.conf ++UnnotificableVirusesList = %PREFIX%/etc/drweb/viruses.conf + + # List of unnotificable addresses +-UnnotificableAddressesList = /etc/drweb/addresses.conf ++UnnotificableAddressesList = %PREFIX%/etc/drweb/addresses.conf # Quarantine directory. # The infected files could be moved in that dir @@ -50,44 +58,45 @@ # Permissions for quarantined files QuarantineFilesMode = 0660 -@@ -168,32 +168,32 @@ +@@ -206,9 +206,9 @@ RcptsNotify = yes # Files with notification templates -AdminTemplate = /etc/drweb/templates/en-ru/postfix/virus-admin.msg --SenderTemplate = /etc/drweb/templates/en-ru/postfix/virus-sender.msg -RcptsTemplate = /etc/drweb/templates/en-ru/postfix/virus-rcpts.msg +-SenderTemplate = /etc/drweb/templates/en-ru/postfix/virus-sender.msg +AdminTemplate = %PREFIX%/etc/drweb/templates/en-ru/postfix/virus-admin.msg -+SenderTemplate = %PREFIX%/etc/drweb/templates/en-ru/postfix/virus-sender.msg +RcptsTemplate = %PREFIX%/etc/drweb/templates/en-ru/postfix/virus-rcpts.msg ++SenderTemplate = %PREFIX%/etc/drweb/templates/en-ru/postfix/virus-sender.msg [SkipNotifications] - AdminNotify = no SenderNotify = yes +@@ -216,23 +216,23 @@ RcptsNotify = no AdminTemplate = + RcptsTemplate = -SenderTemplate = /etc/drweb/templates/en-ru/postfix/skip-sender.msg +SenderTemplate = %PREFIX%/etc/drweb/templates/en-ru/postfix/skip-sender.msg - RcptsTemplate = - [MailbombNotifications] - AdminNotify = yes + [ArchiveRestrictionNotifications] SenderNotify = yes + AdminNotify = yes RcptsNotify = no --AdminTemplate = /etc/drweb/templates/en-ru/postfix/mailbomb-admin.msg --SenderTemplate = /etc/drweb/templates/en-ru/postfix/mailbomb-sender.msg -+AdminTemplate = %PREFIX%/etc/drweb/templates/en-ru/postfix/mailbomb-admin.msg -+SenderTemplate = %PREFIX%/etc/drweb/templates/en-ru/postfix/mailbomb-sender.msg +-AdminTemplate = /etc/drweb/templates/en-ru/postfix/archive-admin.msg ++AdminTemplate = %PREFIX%/etc/drweb/templates/en-ru/postfix/archive-admin.msg RcptsTemplate = +-SenderTemplate = /etc/drweb/templates/en-ru/postfix/archive-sender.msg ++SenderTemplate = %PREFIX%/etc/drweb/templates/en-ru/postfix/archive-sender.msg [ErrorNotifications] - AdminNotify = yes SenderNotify = yes + AdminNotify = yes RcptsNotify = no -AdminTemplate = /etc/drweb/templates/en-ru/postfix/error-admin.msg --SenderTemplate = /etc/drweb/templates/en-ru/postfix/error-sender.msg +AdminTemplate = %PREFIX%/etc/drweb/templates/en-ru/postfix/error-admin.msg -+SenderTemplate = %PREFIX%/etc/drweb/templates/en-ru/postfix/error-sender.msg RcptsTemplate = +-SenderTemplate = /etc/drweb/templates/en-ru/postfix/error-sender.msg ++SenderTemplate = %PREFIX%/etc/drweb/templates/en-ru/postfix/error-sender.msg ################### + # Logging section # diff -urN drweb-postfix.old/pkg-descr drweb-postfix/pkg-descr --- drweb-postfix.old/pkg-descr Thu Jan 16 08:07:07 2003 +++ drweb-postfix/pkg-descr Fri Feb 28 23:22:45 2003 @@ -1,8 +1,6 @@ Postfix message filter for virus processing through DrWeb daemon WWW: http://www.drweb.ru/unix/ - --- -zhuravlev alexander - u l s t u n o c - zaa @ ulstu . ru + + -- zhuravlev alexander + (zaa@ulstu.ru) diff -urN drweb-postfix.old/pkg-plist drweb-postfix/pkg-plist --- drweb-postfix.old/pkg-plist Thu Jan 16 08:07:07 2003 +++ drweb-postfix/pkg-plist Fri Feb 28 23:16:29 2003 @@ -1,19 +1,22 @@ @comment $FreeBSD: ports/security/drweb-postfix/pkg-plist,v 1.1 2003/01/16 05:07:07 edwin Exp $ +@unexec if [ -f %D/etc/drweb/addresses.conf ] && cmp -s %D/etc/drweb/addresses.conf %D/etc/drweb/addresses.conf-dist; then rm -f %D/etc/drweb/addresses.conf; fi +etc/drweb/addresses.conf-dist +@exec [ -f %B/addresses.conf ] || cp %B/%f %B/addresses.conf @unexec if [ -f %D/etc/drweb/drweb_postfix.conf ] && cmp -s %D/etc/drweb/drweb_postfix.conf %D/etc/drweb/drweb_postfix.conf-dist; then rm -f %D/etc/drweb/drweb_postfix.conf; fi etc/drweb/drweb_postfix.conf-dist @exec [ -f %B/drweb_postfix.conf ] || cp %B/%f %B/drweb_postfix.conf +@unexec if [ -f %D/etc/drweb/templates/en-ru/postfix/archive-admin.msg ] && cmp -s %D/etc/drweb/templates/en-ru/postfix/archive-admin.msg %D/etc/drweb/templates/en-ru/postfix/archive-admin.msg-dist; then rm -f %D/etc/drweb/templates/en-ru/postfix/archive-admin.msg; fi +etc/drweb/templates/en-ru/postfix/archive-admin.msg-dist +@exec [ -f %B/archive-admin.msg ] || cp %B/%f %B/archive-admin.msg +@unexec if [ -f %D/etc/drweb/templates/en-ru/postfix/archive-sender.msg ] && cmp -s %D/etc/drweb/templates/en-ru/postfix/archive-sender.msg %D/etc/drweb/templates/en-ru/postfix/archive-sender.msg-dist; then rm -f %D/etc/drweb/templates/en-ru/postfix/archive-sender.msg; fi +etc/drweb/templates/en-ru/postfix/archive-sender.msg-dist +@exec [ -f %B/archive-sender.msg ] || cp %B/%f %B/archive-sender.msg @unexec if [ -f %D/etc/drweb/templates/en-ru/postfix/error-admin.msg ] && cmp -s %D/etc/drweb/templates/en-ru/postfix/error-admin.msg %D/etc/drweb/templates/en-ru/postfix/error-admin.msg-dist; then rm -f %D/etc/drweb/templates/en-ru/postfix/error-admin.msg; fi etc/drweb/templates/en-ru/postfix/error-admin.msg-dist @exec [ -f %B/error-admin.msg ] || cp %B/%f %B/error-admin.msg @unexec if [ -f %D/etc/drweb/templates/en-ru/postfix/error-sender.msg ] && cmp -s %D/etc/drweb/templates/en-ru/postfix/error-sender.msg %D/etc/drweb/templates/en-ru/postfix/error-sender.msg-dist; then rm -f %D/etc/drweb/templates/en-ru/postfix/error-sender.msg; fi etc/drweb/templates/en-ru/postfix/error-sender.msg-dist @exec [ -f %B/error-sender.msg ] || cp %B/%f %B/error-sender.msg -@unexec if [ -f %D/etc/drweb/templates/en-ru/postfix/mailbomb-admin.msg ] && cmp -s %D/etc/drweb/templates/en-ru/postfix/mailbomb-admin.msg %D/etc/drweb/templates/en-ru/postfix/mailbomb-admin.msg-dist; then rm -f %D/etc/drweb/templates/en-ru/postfix/mailbomb-admin.msg; fi -etc/drweb/templates/en-ru/postfix/mailbomb-admin.msg-dist -@exec [ -f %B/mailbomb-admin.msg ] || cp %B/%f %B/mailbomb-admin.msg -@unexec if [ -f %D/etc/drweb/templates/en-ru/postfix/mailbomb-sender.msg ] && cmp -s %D/etc/drweb/templates/en-ru/postfix/mailbomb-sender.msg %D/etc/drweb/templates/en-ru/postfix/mailbomb-sender.msg-dist; then rm -f %D/etc/drweb/templates/en-ru/postfix/mailbomb-sender.msg; fi -etc/drweb/templates/en-ru/postfix/mailbomb-sender.msg-dist -@exec [ -f %B/mailbomb-sender.msg ] || cp %B/%f %B/mailbomb-sender.msg @unexec if [ -f %D/etc/drweb/templates/en-ru/postfix/skip-sender.msg ] && cmp -s %D/etc/drweb/templates/en-ru/postfix/skip-sender.msg %D/etc/drweb/templates/en-ru/postfix/skip-sender.msg-dist; then rm -f %D/etc/drweb/templates/en-ru/postfix/skip-sender.msg; fi etc/drweb/templates/en-ru/postfix/skip-sender.msg-dist @exec [ -f %B/skip-sender.msg ] || cp %B/%f %B/skip-sender.msg @@ -26,46 +29,27 @@ @unexec if [ -f %D/etc/drweb/templates/en-ru/postfix/virus-sender.msg ] && cmp -s %D/etc/drweb/templates/en-ru/postfix/virus-sender.msg %D/etc/drweb/templates/en-ru/postfix/virus-sender.msg-dist; then rm -f %D/etc/drweb/templates/en-ru/postfix/virus-sender.msg; fi etc/drweb/templates/en-ru/postfix/virus-sender.msg-dist @exec [ -f %B/virus-sender.msg ] || cp %B/%f %B/virus-sender.msg -@unexec if [ -f %D/etc/drweb/templates/en-es/postfix/error-admin.msg ] && cmp -s %D/etc/drweb/templates/en-es/postfix/error-admin.msg %D/etc/drweb/templates/en-es/postfix/error-admin.msg-dist; then rm -f %D/etc/drweb/templates/en-es/postfix/error-admin.msg; fi -etc/drweb/templates/en-es/postfix/error-admin.msg-dist -@exec [ -f %B/error-admin.msg ] || cp %B/%f %B/error-admin.msg -@unexec if [ -f %D/etc/drweb/templates/en-es/postfix/error-sender.msg ] && cmp -s %D/etc/drweb/templates/en-es/postfix/error-sender.msg %D/etc/drweb/templates/en-es/postfix/error-sender.msg-dist; then rm -f %D/etc/drweb/templates/en-es/postfix/error-sender.msg; fi -etc/drweb/templates/en-es/postfix/error-sender.msg-dist -@exec [ -f %B/error-sender.msg ] || cp %B/%f %B/error-sender.msg -@unexec if [ -f %D/etc/drweb/templates/en-es/postfix/mailbomb-admin.msg ] && cmp -s %D/etc/drweb/templates/en-es/postfix/mailbomb-admin.msg %D/etc/drweb/templates/en-es/postfix/mailbomb-admin.msg-dist; then rm -f %D/etc/drweb/templates/en-es/postfix/mailbomb-admin.msg; fi -etc/drweb/templates/en-es/postfix/mailbomb-admin.msg-dist -@exec [ -f %B/mailbomb-admin.msg ] || cp %B/%f %B/mailbomb-admin.msg -@unexec if [ -f %D/etc/drweb/templates/en-es/postfix/mailbomb-sender.msg ] && cmp -s %D/etc/drweb/templates/en-es/postfix/mailbomb-sender.msg %D/etc/drweb/templates/en-es/postfix/mailbomb-sender.msg-dist; then rm -f %D/etc/drweb/templates/en-es/postfix/mailbomb-sender.msg; fi -etc/drweb/templates/en-es/postfix/mailbomb-sender.msg-dist -@exec [ -f %B/mailbomb-sender.msg ] || cp %B/%f %B/mailbomb-sender.msg -@unexec if [ -f %D/etc/drweb/templates/en-es/postfix/skip-sender.msg ] && cmp -s %D/etc/drweb/templates/en-es/postfix/skip-sender.msg %D/etc/drweb/templates/en-es/postfix/skip-sender.msg-dist; then rm -f %D/etc/drweb/templates/en-es/postfix/skip-sender.msg; fi -etc/drweb/templates/en-es/postfix/skip-sender.msg-dist -@exec [ -f %B/skip-sender.msg ] || cp %B/%f %B/skip-sender.msg -@unexec if [ -f %D/etc/drweb/templates/en-es/postfix/virus-admin.msg ] && cmp -s %D/etc/drweb/templates/en-es/postfix/virus-admin.msg %D/etc/drweb/templates/en-es/postfix/virus-admin.msg-dist; then rm -f %D/etc/drweb/templates/en-es/postfix/virus-admin.msg; fi -etc/drweb/templates/en-es/postfix/virus-admin.msg-dist -@exec [ -f %B/virus-admin.msg ] || cp %B/%f %B/virus-admin.msg -@unexec if [ -f %D/etc/drweb/templates/en-es/postfix/virus-rcpts.msg ] && cmp -s %D/etc/drweb/templates/en-es/postfix/virus-rcpts.msg %D/etc/drweb/templates/en-es/postfix/virus-rcpts.msg-dist; then rm -f %D/etc/drweb/templates/en-es/postfix/virus-rcpts.msg; fi -etc/drweb/templates/en-es/postfix/virus-rcpts.msg-dist -@exec [ -f %B/virus-rcpts.msg ] || cp %B/%f %B/virus-rcpts.msg -@unexec if [ -f %D/etc/drweb/templates/en-es/postfix/virus-sender.msg ] && cmp -s %D/etc/drweb/templates/en-es/postfix/virus-sender.msg %D/etc/drweb/templates/en-es/postfix/virus-sender.msg-dist; then rm -f %D/etc/drweb/templates/en-es/postfix/virus-sender.msg; fi -etc/drweb/templates/en-es/postfix/virus-sender.msg-dist -@exec [ -f %B/virus-sender.msg ] || cp %B/%f %B/virus-sender.msg @unexec if [ -f %D/etc/drweb/users.conf ] && cmp -s %D/etc/drweb/users.conf %D/etc/drweb/users.conf-dist; then rm -f %D/etc/drweb/users.conf; fi etc/drweb/users.conf-dist @exec [ -f %B/users.conf ] || cp %B/%f %B/users.conf +@unexec if [ -f %D/etc/drweb/viruses.conf ] && cmp -s %D/etc/drweb/viruses.conf %D/etc/drweb/viruses.conf-dist; then rm -f %D/etc/drweb/viruses.conf; fi +etc/drweb/viruses.conf-dist +@exec [ -f %B/viruses.conf ] || cp %B/%f %B/viruses.conf sbin/drweb-postfix sbin/drwebdc -share/doc/drweb-postfix/readme -share/doc/drweb-postfix/notify.rus.txt -share/doc/drweb-postfix/users_list.rus.txt +share/doc/drweb-postfix/addresses_list.rus.txt +share/doc/drweb-postfix/addresses_list.txt share/doc/drweb-postfix/conf_file.rus.txt -share/doc/drweb-postfix/notify.txt -share/doc/drweb-postfix/users_list.txt share/doc/drweb-postfix/conf_file.txt +share/doc/drweb-postfix/notify.rus.txt +share/doc/drweb-postfix/notify.txt +share/doc/drweb-postfix/readme share/doc/drweb-postfix/readme.rus +share/doc/drweb-postfix/users_list.rus.txt +share/doc/drweb-postfix/users_list.txt +share/doc/drweb-postfix/viruses_list.rus.txt +share/doc/drweb-postfix/viruses_list.txt @dirrm share/doc/drweb-postfix -@dirrm etc/drweb/templates/en-es/postfix -@dirrm etc/drweb/templates/en-es @dirrm etc/drweb/templates/en-ru/postfix @dirrm etc/drweb/templates/en-ru @dirrm etc/drweb/templates diff -urN drweb-postfix.old/pkg-plist1 drweb-postfix/pkg-plist1 --- drweb-postfix.old/pkg-plist1 Thu Jan 1 03:00:00 1970 +++ drweb-postfix/pkg-plist1 Fri Feb 28 19:47:09 2003 @@ -0,0 +1,61 @@ +@comment $FreeBSD: ports/security/drweb-sendmail/pkg-plist,v 1.13 2003/02/18 04:45:26 ache Exp $ +@unexec if [ -f %D/etc/drweb/addresses.conf ] && cmp -s %D/etc/drweb/addresses.conf %D/etc/drweb/addresses.conf-dist; then rm -f %D/etc/drweb/addresses.conf; fi +etc/drweb/addresses.conf-dist +@exec [ -f %B/addresses.conf ] || cp %B/%f %B/addresses.conf +@unexec if [ -f %D/etc/drweb/drweb_smf.conf ] && cmp -s %D/etc/drweb/drweb_smf.conf %D/etc/drweb/drweb_smf.conf-dist; then rm -f %D/etc/drweb/drweb_smf.conf; fi +etc/drweb/drweb_smf.conf-dist +@exec [ -f %B/drweb_smf.conf ] || cp %B/%f %B/drweb_smf.conf +@unexec if [ -f %D/etc/drweb/templates/en-ru/sendmail/error-admin.msg ] && cmp -s %D/etc/drweb/templates/en-ru/sendmail/error-admin.msg %D/etc/drweb/templates/en-ru/sendmail/error-admin.msg-dist; then rm -f %D/etc/drweb/templates/en-ru/sendmail/error-admin.msg; fi +etc/drweb/templates/en-ru/sendmail/error-admin.msg-dist +@exec [ -f %B/error-admin.msg ] || cp %B/%f %B/error-admin.msg +@unexec if [ -f %D/etc/drweb/templates/en-ru/sendmail/error-sender.msg ] && cmp -s %D/etc/drweb/templates/en-ru/sendmail/error-sender.msg %D/etc/drweb/templates/en-ru/sendmail/error-sender.msg-dist; then rm -f %D/etc/drweb/templates/en-ru/sendmail/error-sender.msg; fi +etc/drweb/templates/en-ru/sendmail/error-sender.msg-dist +@exec [ -f %B/error-sender.msg ] || cp %B/%f %B/error-sender.msg +@unexec if [ -f %D/etc/drweb/templates/en-ru/sendmail/archive-admin.msg ] && cmp -s %D/etc/drweb/templates/en-ru/sendmail/archive-admin.msg %D/etc/drweb/templates/en-ru/sendmail/archive-admin.msg-dist; then rm -f %D/etc/drweb/templates/en-ru/sendmail/archive-admin.msg; fi +etc/drweb/templates/en-ru/sendmail/archive-admin.msg-dist +@exec [ -f %B/archive-admin.msg ] || cp %B/%f %B/archive-admin.msg +@unexec if [ -f %D/etc/drweb/templates/en-ru/sendmail/archive-sender.msg ] && cmp -s %D/etc/drweb/templates/en-ru/sendmail/archive-sender.msg %D/etc/drweb/templates/en-ru/sendmail/archive-sender.msg-dist; then rm -f %D/etc/drweb/templates/en-ru/sendmail/archive-sender.msg; fi +etc/drweb/templates/en-ru/sendmail/archive-sender.msg-dist +@exec [ -f %B/archive-sender.msg ] || cp %B/%f %B/archive-sender.msg +@unexec if [ -f %D/etc/drweb/templates/en-ru/sendmail/skip-sender.msg ] && cmp -s %D/etc/drweb/templates/en-ru/sendmail/skip-sender.msg %D/etc/drweb/templates/en-ru/sendmail/skip-sender.msg-dist; then rm -f %D/etc/drweb/templates/en-ru/sendmail/skip-sender.msg; fi +etc/drweb/templates/en-ru/sendmail/skip-sender.msg-dist +@exec [ -f %B/skip-sender.msg ] || cp %B/%f %B/skip-sender.msg +@unexec if [ -f %D/etc/drweb/templates/en-ru/sendmail/virus-admin.msg ] && cmp -s %D/etc/drweb/templates/en-ru/sendmail/virus-admin.msg %D/etc/drweb/templates/en-ru/sendmail/virus-admin.msg-dist; then rm -f %D/etc/drweb/templates/en-ru/sendmail/virus-admin.msg; fi +etc/drweb/templates/en-ru/sendmail/virus-admin.msg-dist +@exec [ -f %B/virus-admin.msg ] || cp %B/%f %B/virus-admin.msg +@unexec if [ -f %D/etc/drweb/templates/en-ru/sendmail/virus-rcpts.msg ] && cmp -s %D/etc/drweb/templates/en-ru/sendmail/virus-rcpts.msg %D/etc/drweb/templates/en-ru/sendmail/virus-rcpts.msg-dist; then rm -f %D/etc/drweb/templates/en-ru/sendmail/virus-rcpts.msg; fi +etc/drweb/templates/en-ru/sendmail/virus-rcpts.msg-dist +@exec [ -f %B/virus-rcpts.msg ] || cp %B/%f %B/virus-rcpts.msg +@unexec if [ -f %D/etc/drweb/templates/en-ru/sendmail/virus-sender.msg ] && cmp -s %D/etc/drweb/templates/en-ru/sendmail/virus-sender.msg %D/etc/drweb/templates/en-ru/sendmail/virus-sender.msg-dist; then rm -f %D/etc/drweb/templates/en-ru/sendmail/virus-sender.msg; fi +etc/drweb/templates/en-ru/sendmail/virus-sender.msg-dist +@exec [ -f %B/virus-sender.msg ] || cp %B/%f %B/virus-sender.msg +@unexec if [ -f %D/etc/drweb/users.conf ] && cmp -s %D/etc/drweb/users.conf %D/etc/drweb/users.conf-dist; then rm -f %D/etc/drweb/users.conf; fi +etc/drweb/users.conf-dist +@exec [ -f %B/users.conf ] || cp %B/%f %B/users.conf +@unexec if [ -f %D/etc/drweb/viruses.conf ] && cmp -s %D/etc/drweb/viruses.conf %D/etc/drweb/viruses.conf-dist; then rm -f %D/etc/drweb/viruses.conf; fi +etc/drweb/viruses.conf-dist +@exec [ -f %B/viruses.conf ] || cp %B/%f %B/viruses.conf +@unexec if [ -f %D/etc/rc.d/drweb-sendmail.sh ] && cmp -s %D/etc/rc.d/drweb-sendmail.sh %D/etc/rc.d/drweb-sendmail.sh-dist; then rm -f %D/etc/rc.d/drweb-sendmail.sh; fi +etc/rc.d/drweb-sendmail.sh-dist +@exec if [ ! -f %D/etc/rc.d/drweb-sendmail.sh ] ; then cp -p %D/%F %B/drweb-sendmail.sh; chmod 555 %B/drweb-sendmail.sh; fi +sbin/drweb-smf +sbin/drwebdc +share/doc/drweb-sendmail/addresses_list.rus.txt +share/doc/drweb-sendmail/addresses_list.txt +share/doc/drweb-sendmail/conf_file.rus.txt +share/doc/drweb-sendmail/conf_file.txt +share/doc/drweb-sendmail/notify.rus.txt +share/doc/drweb-sendmail/notify.txt +share/doc/drweb-sendmail/readme +share/doc/drweb-sendmail/readme.rus +share/doc/drweb-sendmail/sendmail.cf.addon +share/doc/drweb-sendmail/sendmail.mc.addon +share/doc/drweb-sendmail/users_list.rus.txt +share/doc/drweb-sendmail/users_list.txt +share/doc/drweb-sendmail/viruses_list.rus.txt +share/doc/drweb-sendmail/viruses_list.txt +@dirrm etc/drweb/templates/en-ru/sendmail +@dirrm etc/drweb/templates/en-ru +@dirrm etc/drweb/templates +@dirrm etc/drweb +@dirrm share/doc/drweb-sendmail --- drweb-postfix.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 15:10: 5 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 34BBE37B401 for ; Fri, 28 Feb 2003 15:10:02 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1460F43FBD for ; Fri, 28 Feb 2003 15:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SNA0NS056842 for ; Fri, 28 Feb 2003 15:10:00 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SNA08E056841; Fri, 28 Feb 2003 15:10:00 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ACCC237B401 for ; Fri, 28 Feb 2003 15:04:06 -0800 (PST) Received: from lambda.foldr.org (lambda.foldr.org [198.78.66.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id F0D5643FA3 for ; Fri, 28 Feb 2003 15:04:05 -0800 (PST) (envelope-from vs@foldr.org) Received: from theater.foldr.org (root@pD9509C85.dip.t-dialin.net [217.80.156.133]) by lambda.foldr.org (8.12.3/8.11.6) with ESMTP id h1SN3r3c087362 (using TLSv1/SSLv3 with cipher EDH-RSA-DES-CBC3-SHA (168 bits) verified OK) for ; Sat, 1 Mar 2003 00:04:04 +0100 (CET) (envelope-from vs@foldr.org) Received: from monster.theater.foldr.org (vs@monster.ipv6.foldr.org [IPv6:3ffe:b80:2de:3:2e0:29ff:fe98:abca]) by theater.foldr.org (8.12.5/8.12.5) with ESMTP id h1SN3r7w028007 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=OK) for ; Sat, 1 Mar 2003 00:04:00 +0100 (CET) (envelope-from vs@monster.theater.foldr.org) Received: (from vs@localhost) by monster.theater.foldr.org (8.12.6/8.12.6/Submit) id h1SN2eZF076039; Sat, 1 Mar 2003 00:02:40 +0100 (CET) (envelope-from vs) Message-Id: <200302282302.h1SN2eZF076039@monster.theater.foldr.org> Date: Sat, 1 Mar 2003 00:02:40 +0100 (CET) From: Volker Stolz Reply-To: Volker Stolz To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48795: [patch] Unbreak textproc/unroff (bento) Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48795 >Category: ports >Synopsis: [patch] Unbreak textproc/unroff (bento) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 15:10:00 PST 2003 >Closed-Date: >Last-Modified: >Originator: Volker Stolz >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD monster.theater.foldr.org 5.0-CURRENT FreeBSD 5.0-CURRENT #1: Sun Nov 24 14:40:01 CET 2002 root@monster.theater.foldr.org:/usr/obj/usr/src/sys/MONSTER i386 >Description: - fix breakage noticed by bento - de-pkg-comment while here - CFLAG-police - condense makefile, obsolete scripts - honour NOPORTDOCS >How-To-Repeat: >Fix: Committer: - drop scripts directory - remove pkg-comment --- unroff begins here --- diff -urN unroff.orig/Makefile unroff/Makefile --- unroff.orig/Makefile Mon Feb 5 17:35:18 2001 +++ unroff/Makefile Fri Feb 28 23:44:31 2003 @@ -14,6 +14,7 @@ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${PATCH1} ${PATCH2} MAINTAINER= wosch@freebsd.org +COMMENT= A programmable troff translator with backend for HTML RUN_DEPENDS= elk:${PORTSDIR}/lang/elk BUILD_DEPENDS= elk:${PORTSDIR}/lang/elk @@ -26,9 +27,10 @@ PATCH1= me-misc-patch PATCH2= misc-patch-2 +BUILD_WRKSRC= ${WRKSRC}/src + MAN1= unroff.1 unroff-html.1 unroff-html-man.1 \ unroff-html-me.1 unroff-html-ms.1 -MANCOMPRESSED= yes pre-patch: @${ECHO_MSG} "===> Applying distribution patches for ${PKGNAME}" @@ -41,5 +43,16 @@ ${ECHO_MSG} "===> Applying distribution patch ${PATCH2}" ; \ fi; \ ${PATCH} ${PATCH_DIST_ARGS} -p1 < ${PATCH2}) + +do-install: + @${MKDIR} ${DATADIR}/misc + ${INSTALL_PROGRAM} ${WRKSRC}/src/unroff ${PREFIX}/bin/unroff + ${CP} -R ${WRKSRC}/scm ${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/doc/tmac.hyper ${WRKSRC}/misc/sample.unroff ${DATADIR}/misc + ${INSTALL_MAN} ${WRKSRC}/doc/*.1 ${PREFIX}/man/man1 +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/manual.ms ${DOCSDIR} +.endif .include diff -urN unroff.orig/files/patch-a unroff/files/patch-a --- unroff.orig/files/patch-a Wed Apr 10 08:38:58 1996 +++ unroff/files/patch-a Fri Feb 28 23:44:01 2003 @@ -22,7 +22,7 @@ ### You need a C compiler that compiles ANSI C code. ! #CC = gcc -! #CFLAGS = -Wall -pedantic -O +! CFLAGS += -DBSD ### If you need additional linker flags add them here. ! LDFLAGS = -s diff -urN unroff.orig/pkg-plist unroff/pkg-plist --- unroff.orig/pkg-plist Tue May 30 22:15:05 2000 +++ unroff/pkg-plist Fri Feb 28 23:44:01 2003 @@ -1,5 +1,4 @@ bin/unroff -share/unroff/doc/manual.ms share/unroff/misc/sample.unroff share/unroff/misc/tmac.hyper share/unroff/scm/troff.scm @@ -14,7 +13,8 @@ share/unroff/scm/html/ms.scm.orig share/unroff/scm/misc/hyper.scm share/unroff/scm/misc/hyper.scm.orig -@dirrm share/unroff/doc +%%PORTDOCS%%share/doc/unroff/manual.ms +%%PORTDOCS%%@dirrm share/doc/unroff @dirrm share/unroff/misc @dirrm share/unroff/scm/html @dirrm share/unroff/scm/misc --- unroff ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 15:20:18 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A697437B401 for ; Fri, 28 Feb 2003 15:20:15 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C0FB43F75 for ; Fri, 28 Feb 2003 15:20:14 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SNKENS059539 for ; Fri, 28 Feb 2003 15:20:14 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SNKEOF059538; Fri, 28 Feb 2003 15:20:14 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 72C2337B401 for ; Fri, 28 Feb 2003 15:17:51 -0800 (PST) Received: from lambda.foldr.org (lambda.foldr.org [198.78.66.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7EB543FB1 for ; Fri, 28 Feb 2003 15:17:50 -0800 (PST) (envelope-from vs@foldr.org) Received: from theater.foldr.org (root@pD9509C85.dip.t-dialin.net [217.80.156.133]) by lambda.foldr.org (8.12.3/8.11.6) with ESMTP id h1SNHi3c096759 (using TLSv1/SSLv3 with cipher EDH-RSA-DES-CBC3-SHA (168 bits) verified OK) for ; Sat, 1 Mar 2003 00:17:49 +0100 (CET) (envelope-from vs@foldr.org) Received: from monster.theater.foldr.org (vs@monster.ipv6.foldr.org [IPv6:3ffe:b80:2de:3:2e0:29ff:fe98:abca]) by theater.foldr.org (8.12.5/8.12.5) with ESMTP id h1SNHv7w028169 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=OK) for ; Sat, 1 Mar 2003 00:17:59 +0100 (CET) (envelope-from vs@monster.theater.foldr.org) Received: (from vs@localhost) by monster.theater.foldr.org (8.12.6/8.12.6/Submit) id h1SNHbJu076504; Sat, 1 Mar 2003 00:17:37 +0100 (CET) (envelope-from vs) Message-Id: <200302282317.h1SNHbJu076504@monster.theater.foldr.org> Date: Sat, 1 Mar 2003 00:17:37 +0100 (CET) From: Volker Stolz Reply-To: Volker Stolz To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48796: [patch] wmmount always needs gnugetopt (bento) Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48796 >Category: ports >Synopsis: [patch] wmmount always needs gnugetopt (bento) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 15:20:14 PST 2003 >Closed-Date: >Last-Modified: >Originator: Volker Stolz >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD monster.theater.foldr.org 5.0-CURRENT FreeBSD 5.0-CURRENT #1: Sun Nov 24 14:40:01 CET 2002 root@monster.theater.foldr.org:/usr/obj/usr/src/sys/MONSTER i386 >Description: bento noticed that the built-in getopt.h in 5.x doesn't suffice. Partially revert ports/47761. Tested on: -STABLE,-CURRENT >How-To-Repeat: >Fix: diff -urN wmmount.orig/Makefile wmmount/Makefile --- wmmount.orig/Makefile Tue Feb 25 19:52:26 2003 +++ wmmount/Makefile Sat Mar 1 00:10:36 2003 @@ -20,11 +20,9 @@ USE_REINPLACE= yes MAKE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" -.if !exists(/usr/include/getopt.h) LIB_DEPENDS+= gnugetopt.1:${PORTSDIR}/devel/libgnugetopt CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -lgnugetopt -.endif post-patch: .for file in system.wmmount.eg system.wmmount.sh >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 15:40:17 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D015F37B401 for ; Fri, 28 Feb 2003 15:40:15 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18D0143F93 for ; Fri, 28 Feb 2003 15:40:12 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SNeBNS066769 for ; Fri, 28 Feb 2003 15:40:11 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SNeBmr066768; Fri, 28 Feb 2003 15:40:11 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 749E237B401 for ; Fri, 28 Feb 2003 15:40:09 -0800 (PST) Received: from lautre.net (estelle.lautre.net [80.67.164.8]) by mx1.FreeBSD.org (Postfix) with SMTP id 28DD943FBD for ; Fri, 28 Feb 2003 15:40:07 -0800 (PST) (envelope-from thierry@pompo.net) Received: (qmail 1317 invoked by alias); 28 Feb 2003 23:40:01 -0000 Received: from unknown (HELO graf.pompo.net) (62.147.48.63) by estelle.lautre.net with SMTP; 28 Feb 2003 23:40:01 -0000 Received: by graf.pompo.net (Postfix, from userid 1001) id D716376BC; Sat, 1 Mar 2003 00:31:19 +0100 (CET) Message-Id: <20030228233119.D716376BC@graf.pompo.net> Date: Sat, 1 Mar 2003 00:31:19 +0100 (CET) From: Thierry Thomas Reply-To: Thierry Thomas To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48797: sysutils/pear-File: upgrading to 1.0.3. Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48797 >Category: ports >Synopsis: sysutils/pear-File: upgrading to 1.0.3. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 15:40:11 PST 2003 >Closed-Date: >Last-Modified: >Originator: Thierry Thomas >Release: FreeBSD 4.8-PRERELEASE i386 >Organization: Kabbale Eros >Environment: System: FreeBSD graf.pompo.net 4.8-PRERELEASE FreeBSD 4.8-PRERELEASE #0: Fri Feb 28 22:45:45 CET 2003 root@graf.pompo.net:/usr/obj/mntsrc/src/sys/GRAF020727 i386 >Description: Upgrading sysutils/pear-File to the latest version. >How-To-Repeat: N/A. >Fix: Please apply this patch: diff -urN sysutils/pear-File.orig/Makefile sysutils/pear-File/Makefile --- sysutils/pear-File.orig/Makefile Tue Feb 25 22:38:07 2003 +++ sysutils/pear-File/Makefile Sat Mar 1 00:03:00 2003 @@ -6,8 +6,7 @@ # PORTNAME= File -PORTVERSION= 1.0.2 -PORTREVISION= 1 +PORTVERSION= 1.0.3 CATEGORIES= sysutils www MASTER_SITES= http://pear.php.net/get/ PKGNAMEPREFIX= pear- diff -urN sysutils/pear-File.orig/distinfo sysutils/pear-File/distinfo --- sysutils/pear-File.orig/distinfo Thu Oct 24 23:51:53 2002 +++ sysutils/pear-File/distinfo Fri Feb 28 14:27:22 2003 @@ -1 +1 @@ -MD5 (PEAR/File-1.0.2.tgz) = 4ce1d2880cafcbf4a84e4adc2374a30b +MD5 (PEAR/File-1.0.3.tgz) = 13b14cd0b226408bd09948f175bec677 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 15:40:20 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F27CF37B405 for ; Fri, 28 Feb 2003 15:40:15 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FA3C43FBD for ; Fri, 28 Feb 2003 15:40:12 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SNeCNS066782 for ; Fri, 28 Feb 2003 15:40:12 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SNeCDE066781; Fri, 28 Feb 2003 15:40:12 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A276437B401 for ; Fri, 28 Feb 2003 15:40:09 -0800 (PST) Received: from lautre.net (estelle.lautre.net [80.67.164.8]) by mx1.FreeBSD.org (Postfix) with SMTP id 6358C43F75 for ; Fri, 28 Feb 2003 15:40:05 -0800 (PST) (envelope-from thierry@pompo.net) Received: (qmail 1316 invoked by alias); 28 Feb 2003 23:40:01 -0000 Received: from unknown (HELO graf.pompo.net) (62.147.48.63) by estelle.lautre.net with SMTP; 28 Feb 2003 23:40:01 -0000 Received: by graf.pompo.net (Postfix, from userid 1001) id 74A4676C3; Sat, 1 Mar 2003 00:36:32 +0100 (CET) Message-Id: <20030228233632.74A4676C3@graf.pompo.net> Date: Sat, 1 Mar 2003 00:36:32 +0100 (CET) From: Thierry Thomas Reply-To: Thierry Thomas To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48798: sysutils/pear-Log: upgrading to 1.6.0. Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48798 >Category: ports >Synopsis: sysutils/pear-Log: upgrading to 1.6.0. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 15:40:12 PST 2003 >Closed-Date: >Last-Modified: >Originator: Thierry Thomas >Release: FreeBSD 4.8-PRERELEASE i386 >Organization: Kabbale Eros >Environment: System: FreeBSD graf.pompo.net 4.8-PRERELEASE FreeBSD 4.8-PRERELEASE #0: Fri Feb 28 22:45:45 CET 2003 root@graf.pompo.net:/usr/obj/mntsrc/src/sys/GRAF020727 i386 >Description: Upgrading sysutils/pear-Log to the latest version. >How-To-Repeat: N/A. >Fix: Please apply the following patch: diff -urN sysutils/pear-Log.orig/Makefile sysutils/pear-Log/Makefile --- sysutils/pear-Log.orig/Makefile Tue Feb 25 22:38:07 2003 +++ sysutils/pear-Log/Makefile Fri Feb 28 15:37:40 2003 @@ -6,8 +6,7 @@ # PORTNAME= Log -PORTVERSION= 1.5.3 -PORTREVISION= 1 +PORTVERSION= 1.6.0 CATEGORIES= sysutils www MASTER_SITES= http://pear.php.net/get/ PKGNAMEPREFIX= pear- @@ -18,6 +17,7 @@ COMMENT= PEAR logging utilities BUILD_DEPENDS= ${PEARDIR}/PEAR.php.dist:${PORTSDIR}/devel/pear-PEAR +# ${PEARDIR}/DB.php:${PORTSDIR}/databases/pear-DB RUN_DEPENDS= ${BUILD_DEPENDS} NO_BUILD= yes diff -urN sysutils/pear-Log.orig/distinfo sysutils/pear-Log/distinfo --- sysutils/pear-Log.orig/distinfo Thu Jan 30 14:42:33 2003 +++ sysutils/pear-Log/distinfo Fri Feb 28 15:07:44 2003 @@ -1 +1 @@ -MD5 (PEAR/Log-1.5.3.tgz) = 60c6d26e9bbb79d2b28bd886d5ed66c0 +MD5 (PEAR/Log-1.6.0.tgz) = 6cc1d4d17560ac1bff90736ea82ea044 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 15:40:22 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EB3237B406 for ; Fri, 28 Feb 2003 15:40:16 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D744B43FD7 for ; Fri, 28 Feb 2003 15:40:12 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SNeCNS066795 for ; Fri, 28 Feb 2003 15:40:12 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SNeCmp066794; Fri, 28 Feb 2003 15:40:12 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A305737B405 for ; Fri, 28 Feb 2003 15:40:09 -0800 (PST) Received: from lautre.net (estelle.lautre.net [80.67.164.8]) by mx1.FreeBSD.org (Postfix) with SMTP id 9B7A643F93 for ; Fri, 28 Feb 2003 15:40:05 -0800 (PST) (envelope-from thierry@pompo.net) Received: (qmail 1315 invoked by alias); 28 Feb 2003 23:40:01 -0000 Received: from unknown (HELO graf.pompo.net) (62.147.48.63) by estelle.lautre.net with SMTP; 28 Feb 2003 23:40:01 -0000 Received: by graf.pompo.net (Postfix, from userid 1001) id 148F976C4; Sat, 1 Mar 2003 00:39:23 +0100 (CET) Message-Id: <20030228233923.148F976C4@graf.pompo.net> Date: Sat, 1 Mar 2003 00:39:23 +0100 (CET) From: Thierry Thomas Reply-To: Thierry Thomas To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48799: net/Net_SMTP: upgrading to 1.1.2. Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48799 >Category: ports >Synopsis: net/Net_SMTP: upgrading to 1.1.2. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 15:40:12 PST 2003 >Closed-Date: >Last-Modified: >Originator: Thierry Thomas >Release: FreeBSD 4.8-PRERELEASE i386 >Organization: Kabbale Eros >Environment: System: FreeBSD graf.pompo.net 4.8-PRERELEASE FreeBSD 4.8-PRERELEASE #0: Fri Feb 28 22:45:45 CET 2003 root@graf.pompo.net:/usr/obj/mntsrc/src/sys/GRAF020727 i386 >Description: Upgrading net/Net_SMTP to the latest version + remove pkg-comment. >How-To-Repeat: N/A. >Fix: Please apply the following patch: diff -urN net/pear-Net_SMTP.orig/Makefile net/pear-Net_SMTP/Makefile --- net/pear-Net_SMTP.orig/Makefile Thu Feb 27 10:52:24 2003 +++ net/pear-Net_SMTP/Makefile Sat Mar 1 00:13:53 2003 @@ -6,7 +6,7 @@ # PORTNAME= Net_SMTP -PORTVERSION= 1.1.1 +PORTVERSION= 1.1.2 CATEGORIES= net mail www MASTER_SITES= http://pear.php.net/get/ PKGNAMEPREFIX= pear- @@ -17,6 +17,7 @@ COMMENT= PEAR class that provides an implementation of the SMTP protocol BUILD_DEPENDS= ${PEARDIR}/SASL.php:${PORTSDIR}/security/pear-Auth_SASL +# ${PEARDIR}/Net/Socket.php:${PORTSDIR}/net/pear-Net_Socket RUN_DEPENDS= ${BUILD_DEPENDS} NO_BUILD= yes diff -urN net/pear-Net_SMTP.orig/distinfo net/pear-Net_SMTP/distinfo --- net/pear-Net_SMTP.orig/distinfo Thu Feb 27 10:52:24 2003 +++ net/pear-Net_SMTP/distinfo Fri Feb 28 21:26:53 2003 @@ -1 +1 @@ -MD5 (PEAR/Net_SMTP-1.1.1.tgz) = 918b7419f1b1f374ce46313f1fac928d +MD5 (PEAR/Net_SMTP-1.1.2.tgz) = af7f864596ed36cc17023991aeb96c69 diff -urN net/pear-Net_SMTP.orig/pkg-comment net/pear-Net_SMTP/pkg-comment --- net/pear-Net_SMTP.orig/pkg-comment Thu Feb 27 10:52:24 2003 +++ net/pear-Net_SMTP/pkg-comment Thu Jan 1 01:00:00 1970 @@ -1 +0,0 @@ -PEAR class that provides an implementation of the SMTP protocol >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 15:40:26 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 27F2D37B407 for ; Fri, 28 Feb 2003 15:40:16 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0AE6343FE3 for ; Fri, 28 Feb 2003 15:40:13 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1SNeCNS066809 for ; Fri, 28 Feb 2003 15:40:12 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1SNeC10066808; Fri, 28 Feb 2003 15:40:12 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C6D3537B401 for ; Fri, 28 Feb 2003 15:40:09 -0800 (PST) Received: from lautre.net (estelle.lautre.net [80.67.164.8]) by mx1.FreeBSD.org (Postfix) with SMTP id D946043FB1 for ; Fri, 28 Feb 2003 15:40:06 -0800 (PST) (envelope-from thierry@pompo.net) Received: (qmail 1318 invoked by alias); 28 Feb 2003 23:40:01 -0000 Received: from unknown (HELO graf.pompo.net) (62.147.48.63) by estelle.lautre.net with SMTP; 28 Feb 2003 23:40:01 -0000 Received: by graf.pompo.net (Postfix, from userid 1001) id 2609476C0; Sat, 1 Mar 2003 00:33:47 +0100 (CET) Message-Id: <20030228233347.2609476C0@graf.pompo.net> Date: Sat, 1 Mar 2003 00:33:47 +0100 (CET) From: Thierry Thomas Reply-To: Thierry Thomas To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48800: security/pear-Auth: upgrading to 1.2.0. Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48800 >Category: ports >Synopsis: security/pear-Auth: upgrading to 1.2.0. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 15:40:12 PST 2003 >Closed-Date: >Last-Modified: >Originator: Thierry Thomas >Release: FreeBSD 4.8-PRERELEASE i386 >Organization: Kabbale Eros >Environment: System: FreeBSD graf.pompo.net 4.8-PRERELEASE FreeBSD 4.8-PRERELEASE #0: Fri Feb 28 22:45:45 CET 2003 root@graf.pompo.net:/usr/obj/mntsrc/src/sys/GRAF020727 i386 >Description: Upgrading security/pear-Auth to the latest release. >How-To-Repeat: N/A. >Fix: Please apply this patch: diff -urN security/pear-Auth.orig/Makefile security/pear-Auth/Makefile --- security/pear-Auth.orig/Makefile Tue Feb 25 22:37:58 2003 +++ security/pear-Auth/Makefile Fri Feb 28 14:52:40 2003 @@ -6,7 +6,7 @@ # PORTNAME= Auth -PORTVERSION= 1.1.1 +PORTVERSION= 1.2.0 CATEGORIES= security www MASTER_SITES= http://pear.php.net/get/ PKGNAMEPREFIX= pear- @@ -40,7 +40,7 @@ @${CP} -Rp ${WRKSRC}/${FILE} ${PEARDIR} @${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PEARDIR}/${FILE} .endfor - @${CHMOD} a-x ${PEARDIR}/Container/LDAP.php + @${CHMOD} -R a-x ${PEARDIR}/Container/*.php post-install: # Register a new package diff -urN security/pear-Auth.orig/distinfo security/pear-Auth/distinfo --- security/pear-Auth.orig/distinfo Sun Feb 2 22:35:51 2003 +++ security/pear-Auth/distinfo Fri Feb 28 14:45:51 2003 @@ -1 +1 @@ -MD5 (PEAR/Auth-1.1.1.tgz) = 26e8eeb0299506a4058535de1ca03dd2 +MD5 (PEAR/Auth-1.2.0.tgz) = aadd95475e7ecd22a2f17143027ee0c1 diff -urN security/pear-Auth.orig/pkg-descr security/pear-Auth/pkg-descr --- security/pear-Auth.orig/pkg-descr Sun Feb 2 23:34:13 2003 +++ security/pear-Auth/pkg-descr Fri Feb 28 14:56:09 2003 @@ -6,6 +6,11 @@ * All databases supported by the PEAR database layer * Plaintext files -* LDAP servers. +* LDAP servers +* POP3 servers +* IMAP servers +* vpopmail accounts +* RADIUS +* SOAP. WWW: http://pear.php.net/manual/en/packages.auth.auth.php diff -urN security/pear-Auth.orig/pkg-plist security/pear-Auth/pkg-plist --- security/pear-Auth.orig/pkg-plist Sun Feb 2 23:49:34 2003 +++ security/pear-Auth/pkg-plist Fri Feb 28 14:51:43 2003 @@ -2,5 +2,10 @@ %%PEARDIR%%/Container.php %%PEARDIR%%/Container/DB.php %%PEARDIR%%/Container/File.php +%%PEARDIR%%/Container/IMAP.php %%PEARDIR%%/Container/LDAP.php +%%PEARDIR%%/Container/POP3.php +%%PEARDIR%%/Container/RADIUS.php +%%PEARDIR%%/Container/SOAP.php +%%PEARDIR%%/Container/vpopmail.php @dirrm %%PEARDIR%%/Container >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 16:31:35 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4483E37B405; Fri, 28 Feb 2003 16:31:34 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69C1F43FAF; Fri, 28 Feb 2003 16:31:33 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from freefall.freebsd.org (naddy@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h210VXNS081999; Fri, 28 Feb 2003 16:31:33 -0800 (PST) (envelope-from naddy@freefall.freebsd.org) Received: (from naddy@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h210VXdJ081995; Fri, 28 Feb 2003 16:31:33 -0800 (PST) Date: Fri, 28 Feb 2003 16:31:33 -0800 (PST) From: Christian Weisgerber Message-Id: <200303010031.h210VXdJ081995@freefall.freebsd.org> To: mich@freebsdcluster.org, naddy@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48783: Update port: [Maintainer Update]: irc/pisg Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: [Maintainer Update]: irc/pisg State-Changed-From-To: open->closed State-Changed-By: naddy State-Changed-When: Fri Feb 28 16:31:18 PST 2003 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48783 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 16:38:13 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D625437B401; Fri, 28 Feb 2003 16:38:12 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7931F43F75; Fri, 28 Feb 2003 16:38:12 -0800 (PST) (envelope-from ceri@FreeBSD.org) Received: from freefall.freebsd.org (ceri@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h210cCNS082379; Fri, 28 Feb 2003 16:38:12 -0800 (PST) (envelope-from ceri@freefall.freebsd.org) Received: (from ceri@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h210cCfD082375; Fri, 28 Feb 2003 16:38:12 -0800 (PST) Date: Fri, 28 Feb 2003 16:38:12 -0800 (PST) From: Ceri Davies Message-Id: <200303010038.h210cCfD082375@freefall.freebsd.org> To: ceri@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48718: [update orphan ports] : security/cfv Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [update orphan ports] : security/cfv Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: ceri Responsible-Changed-When: Fri Feb 28 16:36:43 PST 2003 Responsible-Changed-Why: Reassign misfiled PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=48718 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 16:38:55 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8668A37B401; Fri, 28 Feb 2003 16:38:54 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2897943FCB; Fri, 28 Feb 2003 16:38:54 -0800 (PST) (envelope-from ceri@FreeBSD.org) Received: from freefall.freebsd.org (ceri@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h210csNS082429; Fri, 28 Feb 2003 16:38:54 -0800 (PST) (envelope-from ceri@freefall.freebsd.org) Received: (from ceri@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h210cs5X082425; Fri, 28 Feb 2003 16:38:54 -0800 (PST) Date: Fri, 28 Feb 2003 16:38:54 -0800 (PST) From: Ceri Davies Message-Id: <200303010038.h210cs5X082425@freefall.freebsd.org> To: ceri@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48719: [update orphan ports] : news/ija Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [update orphan ports] : news/ija Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: ceri Responsible-Changed-When: Fri Feb 28 16:38:32 PST 2003 Responsible-Changed-Why: Reassign misfiled PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=48719 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 16:39: 8 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8ECE437B401; Fri, 28 Feb 2003 16:39:07 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3030443F75; Fri, 28 Feb 2003 16:39:07 -0800 (PST) (envelope-from ceri@FreeBSD.org) Received: from freefall.freebsd.org (ceri@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h210d7NS082474; Fri, 28 Feb 2003 16:39:07 -0800 (PST) (envelope-from ceri@freefall.freebsd.org) Received: (from ceri@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h210d7h6082470; Fri, 28 Feb 2003 16:39:07 -0800 (PST) Date: Fri, 28 Feb 2003 16:39:07 -0800 (PST) From: Ceri Davies Message-Id: <200303010039.h210d7h6082470@freefall.freebsd.org> To: ceri@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48720: [update orphan ports] : sysutils/logtool Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [update orphan ports] : sysutils/logtool Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: ceri Responsible-Changed-When: Fri Feb 28 16:38:55 PST 2003 Responsible-Changed-Why: Reassign misfiled PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=48720 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 16:39:21 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5DEBE37B401; Fri, 28 Feb 2003 16:39:20 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F369843FBF; Fri, 28 Feb 2003 16:39:19 -0800 (PST) (envelope-from ceri@FreeBSD.org) Received: from freefall.freebsd.org (ceri@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h210dJNS082519; Fri, 28 Feb 2003 16:39:19 -0800 (PST) (envelope-from ceri@freefall.freebsd.org) Received: (from ceri@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h210dJAs082515; Fri, 28 Feb 2003 16:39:19 -0800 (PST) Date: Fri, 28 Feb 2003 16:39:19 -0800 (PST) From: Ceri Davies Message-Id: <200303010039.h210dJAs082515@freefall.freebsd.org> To: ceri@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48721: [update orphan ports] : archivers/makeself Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [update orphan ports] : archivers/makeself Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: ceri Responsible-Changed-When: Fri Feb 28 16:39:09 PST 2003 Responsible-Changed-Why: Reassign misfiled PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=48721 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 16:39:32 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0195B37B401; Fri, 28 Feb 2003 16:39:32 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9915643FBF; Fri, 28 Feb 2003 16:39:31 -0800 (PST) (envelope-from ceri@FreeBSD.org) Received: from freefall.freebsd.org (ceri@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h210dVNS082564; Fri, 28 Feb 2003 16:39:31 -0800 (PST) (envelope-from ceri@freefall.freebsd.org) Received: (from ceri@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h210dV9K082560; Fri, 28 Feb 2003 16:39:31 -0800 (PST) Date: Fri, 28 Feb 2003 16:39:31 -0800 (PST) From: Ceri Davies Message-Id: <200303010039.h210dV9K082560@freefall.freebsd.org> To: ceri@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48722: [update orphan ports] : net/netdude Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [update orphan ports] : net/netdude Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: ceri Responsible-Changed-When: Fri Feb 28 16:39:21 PST 2003 Responsible-Changed-Why: Reassign misfiled PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=48722 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 16:39:46 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 47FFD37B401; Fri, 28 Feb 2003 16:39:45 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DFCC943FA3; Fri, 28 Feb 2003 16:39:44 -0800 (PST) (envelope-from ceri@FreeBSD.org) Received: from freefall.freebsd.org (ceri@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h210diNS082610; Fri, 28 Feb 2003 16:39:44 -0800 (PST) (envelope-from ceri@freefall.freebsd.org) Received: (from ceri@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h210di06082606; Fri, 28 Feb 2003 16:39:44 -0800 (PST) Date: Fri, 28 Feb 2003 16:39:44 -0800 (PST) From: Ceri Davies Message-Id: <200303010039.h210di06082606@freefall.freebsd.org> To: ceri@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48723: [update orphan ports] : news/pyne Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [update orphan ports] : news/pyne Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: ceri Responsible-Changed-When: Fri Feb 28 16:39:33 PST 2003 Responsible-Changed-Why: Reassign misfiled PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=48723 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 16:39:55 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7975737B401; Fri, 28 Feb 2003 16:39:54 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C88C43F3F; Fri, 28 Feb 2003 16:39:54 -0800 (PST) (envelope-from ceri@FreeBSD.org) Received: from freefall.freebsd.org (ceri@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h210dsNS082655; Fri, 28 Feb 2003 16:39:54 -0800 (PST) (envelope-from ceri@freefall.freebsd.org) Received: (from ceri@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h210drPW082651; Fri, 28 Feb 2003 16:39:53 -0800 (PST) Date: Fri, 28 Feb 2003 16:39:53 -0800 (PST) From: Ceri Davies Message-Id: <200303010039.h210drPW082651@freefall.freebsd.org> To: ceri@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48724: [update orphan ports] : textproc/raptor Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [update orphan ports] : textproc/raptor Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: ceri Responsible-Changed-When: Fri Feb 28 16:39:46 PST 2003 Responsible-Changed-Why: Reassign misfiled PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=48724 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 17:22:22 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A01037B401; Fri, 28 Feb 2003 17:22:21 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3980943F75; Fri, 28 Feb 2003 17:22:21 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from freefall.freebsd.org (marcus@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h211MLNS095926; Fri, 28 Feb 2003 17:22:21 -0800 (PST) (envelope-from marcus@freefall.freebsd.org) Received: (from marcus@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h211MLCB095922; Fri, 28 Feb 2003 17:22:21 -0800 (PST) Date: Fri, 28 Feb 2003 17:22:21 -0800 (PST) From: Joe Marcus Clarke Message-Id: <200303010122.h211MLCB095922@freefall.freebsd.org> To: marcus@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, marcus@FreeBSD.org Subject: Re: ports/48768: [NEW PORT] rubrica Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [NEW PORT] rubrica Responsible-Changed-From-To: freebsd-ports-bugs->marcus Responsible-Changed-By: marcus Responsible-Changed-When: Fri Feb 28 17:22:09 PST 2003 Responsible-Changed-Why: I'll take this. http://www.freebsd.org/cgi/query-pr.cgi?pr=48768 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 17:30:22 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9ADB337B401 for ; Fri, 28 Feb 2003 17:30:16 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB55E43FAF for ; Fri, 28 Feb 2003 17:30:15 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h211UFNS096008 for ; Fri, 28 Feb 2003 17:30:15 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h211UFmN096007; Fri, 28 Feb 2003 17:30:15 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F0EAA37B405 for ; Fri, 28 Feb 2003 17:20:03 -0800 (PST) Received: from httpd.terions.de (static62-99-146-055.adsl.inode.at [62.99.146.55]) by mx1.FreeBSD.org (Postfix) with SMTP id C974843FBF for ; Fri, 28 Feb 2003 17:20:00 -0800 (PST) (envelope-from martin@kleinerdrache.org) Received: (qmail 433 invoked by uid 0); 1 Mar 2003 01:19:59 -0000 Message-Id: <20030301011959.432.qmail@httpd.terions.de> Date: 1 Mar 2003 01:19:59 -0000 From: Martin Klaffenboeck Reply-To: Martin Klaffenboeck To: FreeBSD-gnats-submit@FreeBSD.org Cc: gnome@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48801: New Port: gnotime Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48801 >Category: ports >Synopsis: New Port: gnotime >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 17:30:15 PST 2003 >Closed-Date: >Last-Modified: >Originator: Martin Klaffenboeck >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: FreeBSD martin.kleinerdrache.org 4.7-STABLE FreeBSD 4.7-STABLE #24: Mon Feb 10 21:21:27 CET 2003 martin@martin.kleinerdrache.org:/usr/obj/usr/src/sys/MYKERNEL i386 >Description: I was wondering that I could not find a port for this programm. So I created this one: I'm not sure with the MAN1 variable in the Makefile. When adding the port with pkg_add, the make deinstall thing makes troubles. I don't know why. This does not happen if I install the port via make install. Martin >How-To-Repeat: >Fix: --- gnotime.sh begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # gnotime # gnotime/Makefile # gnotime/distinfo # gnotime/pkg-descr # gnotime/pkg-plist # echo c - gnotime mkdir -p gnotime > /dev/null 2>&1 echo x - gnotime/Makefile sed 's/^X//' >gnotime/Makefile << 'END-of-gnotime/Makefile' X# New ports collection makefile for: gnotime X# Date created: 1 March 2003 X# Whom: Martin Klaffenboeck X# X# $FreeBSD$ X# X XPORTNAME= gnotime XPORTVERSION= 2.1.5 XCATEGORIES= deskutils gnome XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= gttr X XMAINTAINER= martin.klaffenboeck@gmx.at XCOMMENT= GnoTime is a time tracker for gnome2 X XLIB_DEPENDS= gnomeui-2.200:${PORTSDIR}/x11-toolkits/libgnomeui \ X gtkhtml-2.0:${PORTSDIR}/www/libgtkhtml \ X guile.10:${PORTSDIR}/lang/guile X XUSE_GNOMENG= yes XUSE_GNOME= gnomehack gnomeprefix gnomelibs XUSE_X_PREFIX= yes XUSE_GMAKE= yes XGNU_CONFIGURE= yes XUSE_LIBTOOL= yes XCONFIGURE_ENV= CXXFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ X LIBS="-L${LOCALBASE}/lib -lgnuregex -lcompat" X XCONFIGURE_ARGS+= --prefix=${PREFIX} XCONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL} X XMAN1= gnotime.1 X X.include END-of-gnotime/Makefile echo x - gnotime/distinfo sed 's/^X//' >gnotime/distinfo << 'END-of-gnotime/distinfo' XMD5 (gnotime-2.1.5.tar.gz) = 19af95928d9092137915ba24448aeef7 END-of-gnotime/distinfo echo x - gnotime/pkg-descr sed 's/^X//' >gnotime/pkg-descr << 'END-of-gnotime/pkg-descr' XTime (formerly GTT, the Gnome Time Tracker) is a desktop utility for Xtracking the amount of time spent on projects, and generating Xconfigurable invoices based on that time. X XWWW: http://gttr.sourceforge.net/ END-of-gnotime/pkg-descr echo x - gnotime/pkg-plist sed 's/^X//' >gnotime/pkg-plist << 'END-of-gnotime/pkg-plist' Xbin/gnotime Xshare/gnome/apps/Applications/gnotime.desktop Xshare/gnome/gnotime/ghtml/C/bigtable.ghtml Xshare/gnome/gnotime/ghtml/C/gtt.scm Xshare/gnome/gnotime/ghtml/C/invoice.ghtml Xshare/gnome/gnotime/ghtml/C/journal.ghtml Xshare/gnome/gnotime/ghtml/C/noproject.ghtml Xshare/gnome/gnotime/ghtml/C/primer.ghtml Xshare/gnome/gnotime/ghtml/C/tab-delim.ghtml Xshare/gnome/gnotime/ghtml/C/todo-export.ghtml Xshare/gnome/gnotime/ghtml/C/todo.ghtml Xshare/gnome/gnotime/glade/idle.glade Xshare/gnome/gnotime/glade/interval_edit.glade Xshare/gnome/gnotime/glade/interval_popup.glade Xshare/gnome/gnotime/glade/journal.glade Xshare/gnome/gnotime/glade/not-implemented.glade Xshare/gnome/gnotime/glade/notes.glade Xshare/gnome/gnotime/glade/plugin.glade Xshare/gnome/gnotime/glade/prefs.glade Xshare/gnome/gnotime/glade/project_properties.glade Xshare/gnome/gnotime/glade/task_popup.glade Xshare/gnome/gnotime/glade/task_properties.glade Xshare/gnome/help/gnotime/C/figures/gtt_mainwin.png Xshare/gnome/help/gnotime/C/figures/gtt_prefswin.png Xshare/gnome/help/gnotime/C/gnotime.sgml Xshare/gnome/help/gnotime/C/index.html Xshare/gnome/help/gnotime/C/topic.dat Xshare/gnome/help/gnotime/C/x312.html Xshare/gnome/help/gnotime/C/x467.html Xshare/gnome/help/gnotime/C/x495.html Xshare/gnome/help/gnotime/C/x505.html Xshare/gnome/help/gnotime/C/x530.html Xshare/gnome/help/gnotime/C/x79.html Xshare/gnome/help/gnotime/es/figures/gtt_mainwin.png Xshare/gnome/help/gnotime/es/figures/gtt_prefswin.png Xshare/gnome/help/gnotime/es/gnotime.sgml Xshare/gnome/help/gnotime/es/index.html Xshare/gnome/help/gnotime/es/topic.dat Xshare/gnome/help/gnotime/es/x266.html Xshare/gnome/help/gnotime/es/x35.html Xshare/gnome/help/gnotime/es/x422.html Xshare/gnome/help/gnotime/es/x448.html Xshare/gnome/help/gnotime/es/x465.html Xshare/gnome/help/gnotime/es/x487.html Xshare/gnome/help/gnotime/eu/figures/gtt_mainwin.png Xshare/gnome/help/gnotime/eu/figures/gtt_prefswin.png Xshare/gnome/help/gnotime/eu/gnotime.sgml Xshare/gnome/help/gnotime/eu/index.html Xshare/gnome/help/gnotime/eu/topic.dat Xshare/gnome/help/gnotime/eu/x266.html Xshare/gnome/help/gnotime/eu/x35.html Xshare/gnome/help/gnotime/eu/x422.html Xshare/gnome/help/gnotime/eu/x448.html Xshare/gnome/help/gnotime/eu/x465.html Xshare/gnome/help/gnotime/eu/x484.html Xshare/gnome/help/gtt/de/index.html Xshare/gnome/help/gtt/de/topic.dat X@dirrm share/gnome/help/gtt/de X@dirrm share/gnome/help/gtt X@dirrm share/gnome/help/gnotime/eu/stylesheet-images X@dirrm share/gnome/help/gnotime/eu/figures X@dirrm share/gnome/help/gnotime/eu X@dirrm share/gnome/help/gnotime/es/stylesheet-images X@dirrm share/gnome/help/gnotime/es/figures X@dirrm share/gnome/help/gnotime/es X@dirrm share/gnome/help/gnotime/C/stylesheet-images X@dirrm share/gnome/help/gnotime/C/figures X@dirrm share/gnome/help/gnotime/C X@dirrm share/gnome/help/gnotime X@dirrm share/gnome/gnotime/glade X@dirrm share/gnome/gnotime/ghtml/C X@dirrm share/gnome/gnotime/ghtml X@dirrm share/gnome/gnotime END-of-gnotime/pkg-plist exit --- gnotime.sh ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 17:30:55 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01CFA37B401; Fri, 28 Feb 2003 17:30:54 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 944FF43FB1; Fri, 28 Feb 2003 17:30:54 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from freefall.freebsd.org (naddy@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h211UsNS097424; Fri, 28 Feb 2003 17:30:54 -0800 (PST) (envelope-from naddy@freefall.freebsd.org) Received: (from naddy@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h211Usnl097418; Fri, 28 Feb 2003 17:30:54 -0800 (PST) Date: Fri, 28 Feb 2003 17:30:54 -0800 (PST) From: Christian Weisgerber Message-Id: <200303010130.h211Usnl097418@freefall.freebsd.org> To: naddy@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wosch@FreeBSD.org Subject: Re: ports/48795: [patch] Unbreak textproc/unroff (bento) Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [patch] Unbreak textproc/unroff (bento) Responsible-Changed-From-To: freebsd-ports-bugs->wosch Responsible-Changed-By: naddy Responsible-Changed-When: Fri Feb 28 17:30:30 PST 2003 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=48795 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 17:31:56 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A090337B401; Fri, 28 Feb 2003 17:31:55 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F3AF43F3F; Fri, 28 Feb 2003 17:31:55 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from freefall.freebsd.org (marcus@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h211VtNS097914; Fri, 28 Feb 2003 17:31:55 -0800 (PST) (envelope-from marcus@freefall.freebsd.org) Received: (from marcus@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h211Vt76097910; Fri, 28 Feb 2003 17:31:55 -0800 (PST) Date: Fri, 28 Feb 2003 17:31:55 -0800 (PST) From: Joe Marcus Clarke Message-Id: <200303010131.h211Vt76097910@freefall.freebsd.org> To: marcus@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, marcus@FreeBSD.org Subject: Re: ports/48801: New Port: gnotime Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New Port: gnotime Responsible-Changed-From-To: freebsd-ports-bugs->marcus Responsible-Changed-By: marcus Responsible-Changed-When: Fri Feb 28 17:31:44 PST 2003 Responsible-Changed-Why: I'll take this. http://www.freebsd.org/cgi/query-pr.cgi?pr=48801 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 17:33: 9 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 73A3C37B401; Fri, 28 Feb 2003 17:33:08 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C59E743F75; Fri, 28 Feb 2003 17:33:07 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (leeym@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h211X7NS097962; Fri, 28 Feb 2003 17:33:07 -0800 (PST) (envelope-from leeym@freefall.freebsd.org) Received: (from leeym@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h211X5Cp097958; Fri, 28 Feb 2003 17:33:05 -0800 (PST) Date: Fri, 28 Feb 2003 17:33:05 -0800 (PST) From: Yen-Ming Lee Message-Id: <200303010133.h211X5Cp097958@freefall.freebsd.org> To: lars@thegler.dk, leeym@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/46723: Update www/p5-CGI-SpeedyCGI to 2.21 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update www/p5-CGI-SpeedyCGI to 2.21 State-Changed-From-To: open->closed State-Changed-By: leeym State-Changed-When: Fri Feb 28 17:33:04 PST 2003 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=46723 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 22:58:33 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C3DBE37B401; Fri, 28 Feb 2003 22:58:32 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63A9643FE5; Fri, 28 Feb 2003 22:58:32 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (leeym@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h216wWNS077054; Fri, 28 Feb 2003 22:58:32 -0800 (PST) (envelope-from leeym@freefall.freebsd.org) Received: (from leeym@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h216wVDn077050; Fri, 28 Feb 2003 22:58:31 -0800 (PST) Date: Fri, 28 Feb 2003 22:58:31 -0800 (PST) From: Yen-Ming Lee Message-Id: <200303010658.h216wVDn077050@freefall.freebsd.org> To: erwin@lansing.dk, leeym@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48769: maintainer-update devel/p5-ResourcePool to 1.0100 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: maintainer-update devel/p5-ResourcePool to 1.0100 State-Changed-From-To: open->closed State-Changed-By: leeym State-Changed-When: Fri Feb 28 22:58:31 PST 2003 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48769 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 23: 2:55 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5FDD737B401; Fri, 28 Feb 2003 23:02:54 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DBC7B43FDD; Fri, 28 Feb 2003 23:02:53 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (leeym@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2172rNS078945; Fri, 28 Feb 2003 23:02:53 -0800 (PST) (envelope-from leeym@freefall.freebsd.org) Received: (from leeym@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2172rvg078941; Fri, 28 Feb 2003 23:02:53 -0800 (PST) Date: Fri, 28 Feb 2003 23:02:53 -0800 (PST) From: Yen-Ming Lee Message-Id: <200303010702.h2172rvg078941@freefall.freebsd.org> To: erwin@lansing.dk, leeym@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48770: maintainer-update databases/p5-ResourcePool-DBI to 1.0100 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: maintainer-update databases/p5-ResourcePool-DBI to 1.0100 State-Changed-From-To: open->closed State-Changed-By: leeym State-Changed-When: Fri Feb 28 23:02:53 PST 2003 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48770 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Fri Feb 28 23:51: 7 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD64037B406; Fri, 28 Feb 2003 23:51:06 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F74143F75; Fri, 28 Feb 2003 23:51:06 -0800 (PST) (envelope-from obraun@FreeBSD.org) Received: from freefall.freebsd.org (obraun@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h217p6NS092625; Fri, 28 Feb 2003 23:51:06 -0800 (PST) (envelope-from obraun@freefall.freebsd.org) Received: (from obraun@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h217p6Zj092621; Fri, 28 Feb 2003 23:51:06 -0800 (PST) Date: Fri, 28 Feb 2003 23:51:06 -0800 (PST) From: Oliver Braun Message-Id: <200303010751.h217p6Zj092621@freefall.freebsd.org> To: udo.schweigert@siemens.com, obraun@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48671: maintainer-update of security/nessus-*-devel Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: maintainer-update of security/nessus-*-devel State-Changed-From-To: open->closed State-Changed-By: obraun State-Changed-When: Fri Feb 28 23:49:48 PST 2003 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48671 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sat Mar 1 0:27:31 2003 Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C935337B401; Sat, 1 Mar 2003 00:27:30 -0800 (PST) Received: from wwweasel.geeksrus.net (house.linuxinstruct.com [198.31.26.195]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5B2A43FDD; Sat, 1 Mar 2003 00:27:29 -0800 (PST) (envelope-from alane@wwweasel.geeksrus.net) Received: from wwweasel.geeksrus.net (localhost [127.0.0.1]) by wwweasel.geeksrus.net (8.12.7/8.12.6) with ESMTP id h218R8gs028614; Sat, 1 Mar 2003 01:27:09 -0700 (MST) (envelope-from alane@wwweasel.geeksrus.net) Received: (from alane@localhost) by wwweasel.geeksrus.net (8.12.7/8.12.6/Submit) id h218R8bo028542; Sat, 1 Mar 2003 01:27:08 -0700 (MST) (envelope-from alane) Date: Sat, 1 Mar 2003 01:27:08 -0700 From: AlanE To: Tilman Linneweh Cc: freebsd-ports-bugs@FreeBSD.org, kde@FreeBSD.org Subject: Re: [kde-freebsd] Re: ports/48761: q31 fails to compile with errors in Xft.h Message-ID: <20030301082708.GA8058@wwweasel.geeksrus.net> Reply-To: alane@geeksrus.net Mail-Followup-To: Tilman Linneweh , freebsd-ports-bugs@FreeBSD.org, kde@FreeBSD.org References: <200302282111.h1SLBJ3U026937@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200302282111.h1SLBJ3U026937@freefall.freebsd.org> User-Agent: Mutt/1.4i X-message-flag: Every program expands until it can send mail. Except Exchange Server. Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Fri, Feb 28, 2003 at 01:11:19PM -0800, Tilman Linneweh wrote: >Synopsis: q31 fails to compile with errors in Xft.h > >Responsible-Changed-From-To: freebsd-ports-bugs->kde >Responsible-Changed-By: arved >Responsible-Changed-When: Fri Feb 28 13:10:41 PST 2003 >Responsible-Changed-Why: >Over to Maintainers > >http://www.freebsd.org/cgi/query-pr.cgi?pr=48761 >_______________________________________________ >kde-freebsd mailing list >kde-freebsd@lists.csociety.org >http://lists.csociety.org/listinfo/kde-freebsd Are your ports up to date. Builds fine here, last I built it. Maybe wca borked it. 8-) -- AlanE (Alan Eldridge) Unix/C(++) IT Pro for 20 yrs, likes fixing weird distributed systems bugs. KDE, KDE-FreeBSD Teams (http://www.kde.org, http://freebsd.kde.org/) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sat Mar 1 0:47:46 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B36237B40F; Sat, 1 Mar 2003 00:47:45 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C8CB43F3F; Sat, 1 Mar 2003 00:47:45 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (leeym@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h218ljNS005789; Sat, 1 Mar 2003 00:47:45 -0800 (PST) (envelope-from leeym@freefall.freebsd.org) Received: (from leeym@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h218liF4005785; Sat, 1 Mar 2003 00:47:44 -0800 (PST) Date: Sat, 1 Mar 2003 00:47:44 -0800 (PST) From: Yen-Ming Lee Message-Id: <200303010847.h218liF4005785@freefall.freebsd.org> To: nick@netdot.net, leeym@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/48725: Update port: astro/roadmap 0.6 -> 0.13 + port improvements Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Update port: astro/roadmap 0.6 -> 0.13 + port improvements State-Changed-From-To: open->closed State-Changed-By: leeym State-Changed-When: Sat Mar 1 00:47:44 PST 2003 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=48725 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sat Mar 1 1:30:12 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B141337B401 for ; Sat, 1 Mar 2003 01:30:10 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D34E943FAF for ; Sat, 1 Mar 2003 01:30:08 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h219U8NS016912 for ; Sat, 1 Mar 2003 01:30:08 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h219U8Xw016911; Sat, 1 Mar 2003 01:30:08 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E738137B401; Sat, 1 Mar 2003 01:25:06 -0800 (PST) Received: from ftp.translate.ru (ftp.translate.ru [195.131.4.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5A7443FBD; Sat, 1 Mar 2003 01:25:05 -0800 (PST) (envelope-from lev@ftp.translate.ru) Received: from ftp.translate.ru (localhost [127.0.0.1]) by ftp.translate.ru (8.12.6/8.12.6) with ESMTP id h219RtG1068597; Sat, 1 Mar 2003 12:27:55 +0300 (MSK) (envelope-from lev@ftp.translate.ru) Received: (from lev@localhost) by ftp.translate.ru (8.12.6/8.12.6/Submit) id h219Ro8e068596; Sat, 1 Mar 2003 12:27:50 +0300 (MSK) (envelope-from lev) Message-Id: <200303010927.h219Ro8e068596@ftp.translate.ru> Date: Sat, 1 Mar 2003 12:27:50 +0300 (MSK) From: "Lev A. Serebryakov" Reply-To: "Lev A. Serebryakov" To: FreeBSD-gnats-submit@FreeBSD.org, kde@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48803: KDE 3.1 (kxkb) break XKB configuration and didn't allow to switch layouts with keyboard Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48803 >Category: ports >Synopsis: KDE 3.1 (kxkb) break XKB configuration and didn't allow to switch layouts with keyboard >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Mar 01 01:30:07 PST 2003 >Closed-Date: >Last-Modified: >Originator: Lev A. Serebryakov >Release: FreeBSD 4.6-STABLE i386 >Organization: >Environment: System: FreeBSD freebsd.sereb.net 4.6-STABLE FreeBSD 4.6-STABLE #0: Thu Aug 8 20:06:13 MSD 2002 root@freebsd.sereb.net:/usr/obj/usr/src/sys/LEVMAIL i386 Ports collection: 1 Mar 2003 >Description: I have XFree86 server, configured for two XKB layouts: English and Russian. Switch (gtoup change) combination is Ctrl+Shift. When I run something simple (pure xterm, without any KDE, for example) it works greap: I could switch layouts with Ctrl+Shift and type Russian letters. I have kxkb configured for two layouts (US English & Russian) too, group change combination is "Ctrl+Shift" too. But when I run kxkb keyboard switching didn't work any more: I could switch layouts with mouse (clicking on indicator works), but could not change them with keyboard. More on this, when I shutdown KDE and start xterm (without resetiing server) keyboard swithing didn't work too. I could proveide xev's log files, where could be seen, that without KDE here is KeyPress/ISO_Prev_Group event, and with KDE there are no such event. Ctrl+Alt+K works, but it is VERY uncomfortable. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sat Mar 1 1:30:14 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF0A637B405 for ; Sat, 1 Mar 2003 01:30:10 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B6EE43FBF for ; Sat, 1 Mar 2003 01:30:09 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h219U9NS016926 for ; Sat, 1 Mar 2003 01:30:09 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h219U9kA016925; Sat, 1 Mar 2003 01:30:09 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5930137B401 for ; Sat, 1 Mar 2003 01:28:02 -0800 (PST) Received: from mx.road.omskelecom.ru (ts.road.omskelecom.ru [195.162.36.87]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2027B43FE0 for ; Sat, 1 Mar 2003 01:27:59 -0800 (PST) (envelope-from sergey@road.omskelecom.ru) Received: from ugai.uvd-omsk.su (ugai.uvd-omsk.su [94.1.0.103]) by mx.road.omskelecom.ru (Postfix) with ESMTP id 549512112A for ; Sat, 1 Mar 2003 15:27:55 +0600 (OMST) Received: (from sergey@localhost) by ugai.uvd-omsk.su (8.11.6/8.11.6) with AVCHECK id h219Ra272165 for FreeBSD-gnats-submit@freebsd.org; Sat, 1 Mar 2003 15:27:36 +0600 (OMST) (envelope-from sergey) Received: (from sergey@localhost) by ugai.uvd-omsk.su (8.11.6/8.11.6) id h219RZL72157; Sat, 1 Mar 2003 15:27:35 +0600 (OMST) (envelope-from sergey) Message-Id: <200303010927.h219RZL72157@ugai.uvd-omsk.su> Date: Sat, 1 Mar 2003 15:27:35 +0600 (OMST) From: sergey akifiev Reply-To: sergey akifiev To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48804: failed to build Mutt-1.4 from ports Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48804 >Category: ports >Synopsis: failed to build Mutt-1.4 from ports >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Mar 01 01:30:08 PST 2003 >Closed-Date: >Last-Modified: >Originator: sergey akifiev >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD ugai.uvd-omsk.su 4.4-STABLE FreeBSD 4.4-STABLE #0: Thu Sep 27 15:16:01 OMSST 2001 root@sergey.gibdd.uvd-omsk.su:/usr/obj/usr/src/sys/KERNEL-UGAI i386 >Description: In attempt of building mutt i've got: Making all in imap cc -I/usr/local/include -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../intl -I../intl -Wall -O -pipe -c auth.c In file included from ../mutt.h:51, from auth.c:23: ../charset.h:39: syntax error before `ICONV_CONST' *** Error code 1 Stop in /var/tmp/usr/ports/mail/mutt/work/mutt-1.4/imap. *** Error code 1 Stop in /var/tmp/usr/ports/mail/mutt/work/mutt-1.4. *** Error code 1 Stop in /var/tmp/usr/ports/mail/mutt/work/mutt-1.4. *** Error code 1 Stop in /usr/ports/mail/mutt. ** Command failed: make ** Fix the problem and try again. ** The following packages were not installed or upgraded (*:skipped / !:failed) ! mail/mutt (unknown build error) >How-To-Repeat: `sudo portinstall mutt' does the thing >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sat Mar 1 1:40:10 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61FF337B401 for ; Sat, 1 Mar 2003 01:40:08 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A15443F75 for ; Sat, 1 Mar 2003 01:40:07 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h219e7NS018840 for ; Sat, 1 Mar 2003 01:40:07 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h219e76J018839; Sat, 1 Mar 2003 01:40:07 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 759DF37B401 for ; Sat, 1 Mar 2003 01:32:13 -0800 (PST) Received: from ftp.translate.ru (ftp.translate.ru [195.131.4.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68BC143F93 for ; Sat, 1 Mar 2003 01:32:12 -0800 (PST) (envelope-from lev@ftp.translate.ru) Received: from ftp.translate.ru (localhost [127.0.0.1]) by ftp.translate.ru (8.12.6/8.12.6) with ESMTP id h219Z2G1068723 for ; Sat, 1 Mar 2003 12:35:02 +0300 (MSK) (envelope-from lev@ftp.translate.ru) Received: (from lev@localhost) by ftp.translate.ru (8.12.6/8.12.6/Submit) id h219YvGp068722; Sat, 1 Mar 2003 12:34:57 +0300 (MSK) (envelope-from lev) Message-Id: <200303010934.h219YvGp068722@ftp.translate.ru> Date: Sat, 1 Mar 2003 12:34:57 +0300 (MSK) From: "Lev A. Serebryakov" Reply-To: "Lev A. Serebryakov" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48805: `Segmentation fault' for games/nethack34-qt Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48805 >Category: ports >Synopsis: `Segmentation fault' for games/nethack34-qt >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Mar 01 01:40:07 PST 2003 >Closed-Date: >Last-Modified: >Originator: Lev A. Serebryakov >Release: FreeBSD 4.6-STABLE i386 >Organization: >Environment: System: FreeBSD freebsd.sereb.net 4.6-STABLE FreeBSD 4.6-STABLE #0: Thu Aug 8 20:06:13 MSD 2002 root@freebsd.sereb.net:/usr/obj/usr/src/sys/LEVMAIL i386 Ports collection: 1 Mar 2002 >Description: Fresh-installed nethack34-qt could not be run: %nethack Segmentation fault % No core file is generated (nethack have SGID bit set). No connects to X server... >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sat Mar 1 2: 0:15 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6B0537B401 for ; Sat, 1 Mar 2003 02:00:13 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5EC0B43FBD for ; Sat, 1 Mar 2003 02:00:13 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h21A0DNS022738 for ; Sat, 1 Mar 2003 02:00:13 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h21A0DRL022737; Sat, 1 Mar 2003 02:00:13 -0800 (PST) Date: Sat, 1 Mar 2003 02:00:13 -0800 (PST) Message-Id: <200303011000.h21A0DRL022737@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Udo Schweigert Subject: Re: ports/48804: failed to build Mutt-1.4 from ports Reply-To: Udo Schweigert Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48804; it has been noted by GNATS. From: Udo Schweigert To: sergey akifiev Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/48804: failed to build Mutt-1.4 from ports Date: Sat, 1 Mar 2003 10:53:00 +0100 On Sat, Mar 01, 2003 at 15:27:35 +0600, sergey akifiev wrote: > System: FreeBSD ugai.uvd-omsk.su 4.4-STABLE FreeBSD 4.4-STABLE #0: Thu Sep 27 15:16:01 OMSST 2001 root@sergey.gibdd.uvd-omsk.su:/usr/obj/usr/src/sys/KERNEL-UGAI i386 This seems to be a rather old -stable system. > In attempt of building mutt i've got: > Making all in imap > cc -I/usr/local/include -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../intl -I../intl -Wall -O -pipe -c auth.c > In file included from ../mutt.h:51, > from auth.c:23: > ../charset.h:39: syntax error before `ICONV_CONST' > *** Error code 1 > I tested here again with a recent ports-tree on 4.6.2-RELEASE (the oldest system I have available) and this wasn't reproduceable. Best regards -- Udo Schweigert, Siemens AG | Voice : +49 89 636 42170 CT IC CERT, Siemens CERT | Fax : +49 89 636 41166 D-81730 Muenchen / Germany | email : udo.schweigert@siemens.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sat Mar 1 3:20:15 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 20B6B37B401 for ; Sat, 1 Mar 2003 03:20:13 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3949443FE3 for ; Sat, 1 Mar 2003 03:20:12 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h21BKCNS045054 for ; Sat, 1 Mar 2003 03:20:12 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h21BKCkR045053; Sat, 1 Mar 2003 03:20:12 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE63E37B401 for ; Sat, 1 Mar 2003 03:15:13 -0800 (PST) Received: from kiwi.isdnet.net (xbeaudouin.isdnet.net [62.4.2.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id 286CC43FB1 for ; Sat, 1 Mar 2003 03:15:13 -0800 (PST) (envelope-from root@xbeaudouin.isdnet.net) Received: by kiwi.isdnet.net (Postfix, from userid 0) id 594F91B7E6; Sat, 1 Mar 2003 12:14:32 +0100 (CET) Message-Id: <20030301111432.594F91B7E6@kiwi.isdnet.net> Date: Sat, 1 Mar 2003 12:14:32 +0100 (CET) From: Xavier Beaudouin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48806: maintainer-update www/caudium10 fix dependency with textproc/sablotron Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48806 >Category: ports >Synopsis: maintainer-update www/caudium10 fix dependency with textproc/sablotron >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Mar 01 03:20:10 PST 2003 >Closed-Date: >Last-Modified: >Originator: Xavier Beaudouin >Release: FreeBSD 4.7-RELEASE-p3 i386 >Organization: The Caudium Group >Environment: System: FreeBSD kiwi.isdnet.net 4.7-RELEASE-p3 FreeBSD 4.7-RELEASE-p3 #0: Mon Jan 13 15:59:54 CET 2003 root@kiwi.isdnet.net:/usr/src/sys/compile/KIWI i386 >Description: Sablotron has *again* changed it lib number. So I have to update the dependency. >How-To-Repeat: >Fix: diff -u --new-file --recursive caudium10.old/Makefile caudium10/Makefile --- caudium10.old/Makefile Sat Mar 1 12:09:09 2003 +++ caudium10/Makefile Sat Mar 1 12:10:08 2003 @@ -7,6 +7,7 @@ PORTNAME= caudium10 PORTVERSION= 1.0.52 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= ftp://ftp.oav.net/caudium/source/ \ ftp://ftp.caudium.net/caudium/source/ @@ -16,7 +17,7 @@ COMMENT= A free webserver which is based on the Roxen Challenger 1.3 code base BUILD_DEPENDS= pike:${PORTSDIR}/lang/pike70/ -LIB_DEPENDS= sablot.69:${PORTSDIR}/textproc/sablotron/ +LIB_DEPENDS= sablot.70:${PORTSDIR}/textproc/sablotron/ WRKSRC= ${WRKDIR}/${DISTNAME}/ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sat Mar 1 4:23: 1 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9BEE137B401; Sat, 1 Mar 2003 04:23:00 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4109B43FBD; Sat, 1 Mar 2003 04:23:00 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from freefall.freebsd.org (leeym@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h21CN0NS065869; Sat, 1 Mar 2003 04:23:00 -0800 (PST) (envelope-from leeym@freefall.freebsd.org) Received: (from leeym@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h21CMxIw065865; Sat, 1 Mar 2003 04:22:59 -0800 (PST) Date: Sat, 1 Mar 2003 04:22:59 -0800 (PST) From: Yen-Ming Lee Message-Id: <200303011222.h21CMxIw065865@freefall.freebsd.org> To: corecode@corecode.ath.cx, leeym@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/47655: unPERLify ports/chinese Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: unPERLify ports/chinese State-Changed-From-To: open->closed State-Changed-By: leeym State-Changed-When: Sat Mar 1 04:22:58 PST 2003 State-Changed-Why: fixed by ports/48254 http://www.freebsd.org/cgi/query-pr.cgi?pr=47655 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sat Mar 1 5:20:14 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0201837B401 for ; Sat, 1 Mar 2003 05:20:09 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 957C543FBF for ; Sat, 1 Mar 2003 05:20:07 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h21DK7NS085130 for ; Sat, 1 Mar 2003 05:20:07 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h21DK70u085129; Sat, 1 Mar 2003 05:20:07 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC0DC37B401 for ; Sat, 1 Mar 2003 05:17:40 -0800 (PST) Received: from vaio.alexdupre.com (212-41-211-209.adsl.galactica.it [212.41.211.209]) by mx1.FreeBSD.org (Postfix) with ESMTP id ACDD943F93 for ; Sat, 1 Mar 2003 05:17:38 -0800 (PST) (envelope-from alex@vaio.alexdupre.com) Received: from vaio.alexdupre.com (localhost [127.0.0.1]) by vaio.alexdupre.com (8.12.7/8.12.7) with ESMTP id h21DHSnV017761 for ; Sat, 1 Mar 2003 14:17:28 +0100 (CET) (envelope-from alex@vaio.alexdupre.com) Received: (from alex@localhost) by vaio.alexdupre.com (8.12.7/8.12.7/Submit) id h21DHRBu017760; Sat, 1 Mar 2003 14:17:27 +0100 (CET) Message-Id: <200303011317.h21DHRBu017760@vaio.alexdupre.com> Date: Sat, 1 Mar 2003 14:17:27 +0100 (CET) From: Alex Dupre Reply-To: Alex Dupre To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48807: [New Port] Turck MMCache 2.3.6 (An opcode cache for PHP) Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48807 >Category: ports >Synopsis: [New Port] Turck MMCache 2.3.6 (An opcode cache for PHP) >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Mar 01 05:20:06 PST 2003 >Closed-Date: >Last-Modified: >Originator: Alex Dupre >Release: FreeBSD 4.8-ALEXDUPRE i386 >Organization: >Environment: System: FreeBSD vaio.alexdupre.com 4.8-ALEXDUPRE FreeBSD 4.8-ALEXDUPRE #0: Sat Feb 22 15:23:34 CET 2003 root@vaio.alexdupre.com:/usr/obj/usr/src/sys/VAIO i386 >Description: Turck MMCache is a opcode cache for PHP. It increases performance of PHP scripts by caching them in compiled state, so that the overhead of compiling is almost completely eliminated. Also it uses some optimizations for speed up of PHP scripts execution. Turck MMCache typically reduces server load and increases the speed of your PHP code by 1-10 times. WWW: http://www.turcksoft.com/en/e_mmc.htm - Alex Dupre sysadmin@alexdupre.com >How-To-Repeat: >Fix: --- mmcache.sh begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # turck-mmcache # turck-mmcache/Makefile # turck-mmcache/distinfo # turck-mmcache/pkg-descr # turck-mmcache/pkg-message # turck-mmcache/pkg-plist # echo c - turck-mmcache mkdir -p turck-mmcache > /dev/null 2>&1 echo x - turck-mmcache/Makefile sed 's/^X//' >turck-mmcache/Makefile << 'END-of-turck-mmcache/Makefile' X# New ports collection makefile for: turck-mmcache X# Date created: Sat Mar 1 13:55:55 CET 2003 X# Whom: Alex Dupre X# X# $FreeBSD$ X# X XPORTNAME= turck-mmcache XPORTVERSION= 2.3.6 XCATEGORIES= www XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= ${PORTNAME} X XMAINTAINER= sysadmin@alexdupre.com XCOMMENT= An opcode cache for PHP X XBUILD_DEPENDS= phpize:${PORTSDIR}/www/mod_php4 XLIB_DEPENDS= mm.12:${PORTSDIR}/devel/mm XRUN_DEPENDS= ${LOCALBASE}/sbin/httpd:${APACHE_PORT} \ X ${LOCALBASE}/bin/php:${PORTSDIR}/www/mod_php4 X XUSE_LIBTOOL= yes XWANT_AUTOMAKE_VER= 15 XWANT_AUTOCONF_VER= 253 X XCONFIGURE_ARGS= --enable-mmcache=shared \ X --with-php-config=${PREFIX}/bin/php-config X XEXT_DIR= 20020429 XPLIST_SUB= EXT_DIR=${EXT_DIR} X XPKGMESSAGE= ${WRKDIR}/pkg-message X X.include X X.if defined(WITH_APACHE2) || exists(${LOCALBASE}/include/apache2/apr.h) XAPACHE_PORT?= ${PORTSDIR}/www/apache2 X.else XAPACHE_PORT?= ${PORTSDIR}/www/apache13 X.endif X Xpost-extract: X @${ECHO_MSG} "===> PHPizing for ${DISTNAME}" X @cd ${WRKSRC} && ${LOCALBASE}/bin/phpize X Xpost-build: X @${SED} "s|%%LOCALBASE%%|${LOCALBASE}|g;s|%%PREFIX%%|${PREFIX}|g;s|%%EXT_DIR%%|${EXT_DIR}|g" \ X ${.CURDIR}/pkg-message > ${PKGMESSAGE} X Xdo-install: X @${MKDIR} ${PREFIX}/lib/php/${EXT_DIR} X @${INSTALL_DATA} ${WRKSRC}/modules/mmcache.so \ X ${PREFIX}/lib/php/${EXT_DIR} X.if !defined(NOPORTDOCS) X @${MKDIR} ${DOCSDIR} X @${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} X.endif X Xpost-install: X @${CAT} ${PKGMESSAGE} X X.include END-of-turck-mmcache/Makefile echo x - turck-mmcache/distinfo sed 's/^X//' >turck-mmcache/distinfo << 'END-of-turck-mmcache/distinfo' XMD5 (turck-mmcache-2.3.6.tar.gz) = 74aa07afd6661db8c3b226c660fdd00e END-of-turck-mmcache/distinfo echo x - turck-mmcache/pkg-descr sed 's/^X//' >turck-mmcache/pkg-descr << 'END-of-turck-mmcache/pkg-descr' XTurck MMCache is a opcode cache for PHP. It increases Xperformance of PHP scripts by caching them in compiled state, Xso that the overhead of compiling is almost completely eliminated. XAlso it uses some optimizations for speed up of PHP scripts execution. XTurck MMCache typically reduces server load and increases Xthe speed of your PHP code by 1-10 times. X XWWW: http://www.turcksoft.com/en/e_mmc.htm X X- Alex Dupre Xsysadmin@alexdupre.com END-of-turck-mmcache/pkg-descr echo x - turck-mmcache/pkg-message sed 's/^X//' >turck-mmcache/pkg-message << 'END-of-turck-mmcache/pkg-message' X***************************************************************************** X XYou have installed the turck-mmcache package. X XEdit %%LOCALBASE%%/etc/php.ini and add: X X[mmcache] Xzend_extension="%%PREFIX%%/lib/php/%%EXT_DIR%%/mmcache.so" Xmmcache.shm_size="16" Xmmcache.enable="1" Xmmcache.optimizer="1" Xmmcache.check_mtime="1" Xmmcache.debug="0" Xmmcache.filter="*.php" X X***************************************************************************** END-of-turck-mmcache/pkg-message echo x - turck-mmcache/pkg-plist sed 's/^X//' >turck-mmcache/pkg-plist << 'END-of-turck-mmcache/pkg-plist' Xlib/php/%%EXT_DIR%%/mmcache.so X%%PORTDOCS%%share/doc/turck-mmcache/README X@unexec rmdir %D/lib/php/%%EXT_DIR%% 2> /dev/null || true X%%PORTDOCS%%@dirrm share/doc/turck-mmcache END-of-turck-mmcache/pkg-plist exit --- mmcache.sh ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sat Mar 1 5:53:14 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7292837B401; Sat, 1 Mar 2003 05:53:13 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1297743F3F; Sat, 1 Mar 2003 05:53:13 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h21DrCNS099280; Sat, 1 Mar 2003 05:53:12 -0800 (PST) (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h21DrCXo099276; Sat, 1 Mar 2003 05:53:12 -0800 (PST) Date: Sat, 1 Mar 2003 05:53:12 -0800 (PST) From: Tilman Linneweh Message-Id: <200303011353.h21DrCXo099276@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kde@FreeBSD.org Subject: Re: ports/48803: KDE 3.1 (kxkb) break XKB configuration and didn't allow to switch layouts with keyboard Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: KDE 3.1 (kxkb) break XKB configuration and didn't allow to switch layouts with keyboard Responsible-Changed-From-To: freebsd-ports-bugs->kde Responsible-Changed-By: arved Responsible-Changed-When: Sat Mar 1 05:52:50 PST 2003 Responsible-Changed-Why: Over to Maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=48803 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sat Mar 1 5:55:56 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C5AA537B401; Sat, 1 Mar 2003 05:55:55 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6963E43FA3; Sat, 1 Mar 2003 05:55:55 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h21DttNS099355; Sat, 1 Mar 2003 05:55:55 -0800 (PST) (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h21DtsES099351; Sat, 1 Mar 2003 05:55:54 -0800 (PST) Date: Sat, 1 Mar 2003 05:55:54 -0800 (PST) From: Tilman Linneweh Message-Id: <200303011355.h21DtsES099351@freefall.freebsd.org> To: kanou@mil.allnet.ne.jp, arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/47344: ImageMagick fails to compile Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: ImageMagick fails to compile State-Changed-From-To: open->feedback State-Changed-By: arved State-Changed-When: Sat Mar 1 05:54:54 PST 2003 State-Changed-Why: I think this has been fixed since the port got updated to 5.5.5, right? http://www.freebsd.org/cgi/query-pr.cgi?pr=47344 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sat Mar 1 6:30:17 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E6E1737B401 for ; Sat, 1 Mar 2003 06:30:07 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B596F43FAF for ; Sat, 1 Mar 2003 06:30:06 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h21EU6NS014496 for ; Sat, 1 Mar 2003 06:30:06 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h21EU6FZ014495; Sat, 1 Mar 2003 06:30:06 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C24DC37B401 for ; Sat, 1 Mar 2003 06:24:43 -0800 (PST) Received: from cauchy.math.missouri.edu (cauchy.math.missouri.edu [128.206.49.166]) by mx1.FreeBSD.org (Postfix) with ESMTP id A76B743F93 for ; Sat, 1 Mar 2003 06:24:42 -0800 (PST) (envelope-from stephen@cauchy.math.missouri.edu) Received: from cauchy.math.missouri.edu (stephen@localhost [127.0.0.1]) by cauchy.math.missouri.edu (8.12.7/8.12.7) with ESMTP id h21EOGk8049289 for ; Sat, 1 Mar 2003 08:24:16 -0600 (CST) (envelope-from stephen@cauchy.math.missouri.edu) Received: (from stephen@localhost) by cauchy.math.missouri.edu (8.12.7/8.12.7/Submit) id h21EOGYO049288; Sat, 1 Mar 2003 08:24:16 -0600 (CST) (envelope-from stephen) Message-Id: <200303011424.h21EOGYO049288@cauchy.math.missouri.edu> Date: Sat, 1 Mar 2003 08:24:16 -0600 (CST) From: Stephen Montgomery-Smith Reply-To: Stephen Montgomery-Smith To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/48810: teTeX updated to version 2.0.2 Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48810 >Category: ports >Synopsis: teTeX updated to version 2.0.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Mar 01 06:30:05 PST 2003 >Closed-Date: >Last-Modified: >Originator: Stephen Montgomery-Smith >Release: FreeBSD 4.8-PRERELEASE i386 >Organization: >Environment: System: FreeBSD cauchy 4.8-PRERELEASE FreeBSD 4.8-PRERELEASE #0: Mon Feb 24 11:30:23 CST 2003 stephen@cauchy:/usr/obj/usr/src/sys/cauchy i386 >Description: teTeX has upgraded to version 2.0.2. >How-To-Repeat: >Fix: As well as updating the ports, this change also adds a switch to make it easier for the user to configure teTeX for US letter paper. diff -ur teTeX-orig/Makefile teTeX/Makefile --- teTeX-orig/Makefile Fri Feb 28 18:08:23 2003 +++ teTeX/Makefile Fri Feb 28 19:03:42 2003 @@ -6,7 +6,7 @@ # PORTNAME= teTeX -PORTVERSION= 2.0.1 +PORTVERSION= 2.0.2 CATEGORIES= print MASTER_SITES= ftp://sunsite.informatik.rwth-aachen.de/pub/comp/tex/teTeX/2.0/distrib/ \ ${MASTER_SITE_TEX_CTAN} @@ -26,7 +26,7 @@ PLIST_SUB+= X11BITS="@comment " .endif DIST_SUBDIR= teTeX -WRKSRC= ${WRKDIR}/tetex-src-2.0.1 +WRKSRC= ${WRKDIR}/tetex-src-2.0.2 EXTRACT_ONLY= ${TETEX_SRC} USE_GMAKE= yes GNU_CONFIGURE= yes @@ -46,7 +46,8 @@ dvicopy.1 dvilj.1 dvips.1 dvired.1 dvitype.1 einitex.1 \ elatex.1 eplain.1 etex.1 fontexport.1 fontimport.1 \ gftodvi.1 gftopk.1 gftype.1 gsftopk.1 inimf.1 inimpost.1 \ - iniomega.1 initex.1 kpsestat.1 kpsewhich.1 lambda.1 latex.1 \ + iniomega.1 initex.1 kpsepath.1 kpsestat.1 kpsewhich.1 \ + kpsexpand.1 lambda.1 latex.1 \ mag.1 makeindex.1 makempx.1 mf.1 mft.1 mktexlsr.1 mktexmf.1 \ mktexpk.1 mktextfm.1 mpost.1 mpto.1 newer.1 omega.1 patgen.1 \ pdfinitex.1 pdflatex.1 pdftex.1 pfb2pfa.1 pk2bm.1 \ @@ -67,12 +68,20 @@ MAN1+= t1mapper.1 xdvi.1 xdvizilla.1 .endif -TETEX_SRC= tetex-src-2.0.1.tar.gz -TETEX_TEXMF= tetex-texmf-2.0.1.tar.gz +TETEX_SRC= tetex-src-2.0.2.tar.gz +TETEX_TEXMF= tetex-texmf-2.0.2.tar.gz LIBPNG_PREFIX?= ${LOCALBASE} LIBWWW_PREFIX?= ${LOCALBASE} TEXMF_TREE= ${PREFIX}/share/texmf +pre-everything:: +.if !defined(USE_LETTER_PAPER) + @${ECHO_MSG} "********************************************************" + @${ECHO_MSG} "Define USE_LETTER_PAPER if you want teTeX configured" + @${ECHO_MSG} "for letter paper instead of the default A4," + @${ECHO_MSG} "********************************************************" +.endif + pre-configure: @${ECHO_MSG} @${ECHO_MSG} "It will be ok if configure will complain about a missing texmf tree!" @@ -92,6 +101,14 @@ ${PREFIX}/bin/texconfig font ro > /dev/null 2>&1 @${SETENV} TEXMFMAIN=${TEXMF_TREE} \ ${PREFIX}/bin/texconfig font options appendonlydir varfonts +.if defined(USE_LETTER_PAPER) + @${SETENV} TEXMFMAIN=${TEXMF_TREE} \ + ${PREFIX}/bin/texconfig dvips paper letter + @${SETENV} TEXMFMAIN=${TEXMF_TREE} \ + ${PREFIX}/bin/texconfig dvipdfm paper letter + @${SETENV} TEXMFMAIN=${TEXMF_TREE} \ + ${PREFIX}/bin/texconfig xdvi us +.endif @${ECHO_MSG} @${ECHO_MSG} "You may want to run texconfig to configure teTeX for your" @${ECHO_MSG} "local environment. You will find teTeX's local documentation" diff -ur teTeX-orig/distinfo teTeX/distinfo --- teTeX-orig/distinfo Fri Feb 28 18:08:23 2003 +++ teTeX/distinfo Sat Mar 1 08:07:30 2003 @@ -1,2 +1,2 @@ -MD5 (teTeX/tetex-src-2.0.1.tar.gz) = 7291500481ca3f129026b91b1b6fa52e -MD5 (teTeX/tetex-texmf-2.0.1.tar.gz) = 6fe5d77a3f4fe491eda9d4c74654bd0f +MD5 (teTeX/tetex-src-2.0.2.tar.gz) = a16f6bba227d55e79aeee46fbbd82d28 +MD5 (teTeX/tetex-texmf-2.0.2.tar.gz) = d3bdb96f9077e43b2115d3cc471743b3 diff -ur teTeX-orig/pkg-plist teTeX/pkg-plist --- teTeX-orig/pkg-plist Fri Feb 28 18:08:23 2003 +++ teTeX/pkg-plist Fri Feb 28 19:18:55 2003 @@ -239,6 +239,9 @@ share/texmf/bibtex/bst/germbib/gerapali.bst share/texmf/bibtex/bst/germbib/gerplain.bst share/texmf/bibtex/bst/germbib/gerunsrt.bst +share/texmf/bibtex/bst/jurabib/jurabib.bst +share/texmf/bibtex/bst/jurabib/jureco.bst +share/texmf/bibtex/bst/jurabib/jurunsrt.bst share/texmf/bibtex/bst/misc/acm.bst share/texmf/bibtex/bst/natbib/abbrvnat.bst share/texmf/bibtex/bst/natbib/plainnat.bst @@ -802,6 +805,7 @@ share/texmf/doc/help/Catalogue/entries/bitstrea.html share/texmf/doc/help/Catalogue/entries/bizcard.html share/texmf/doc/help/Catalogue/entries/blackboard.html +share/texmf/doc/help/Catalogue/entries/blackletter1.html share/texmf/doc/help/Catalogue/entries/blkarray.html share/texmf/doc/help/Catalogue/entries/blkcntrl.html share/texmf/doc/help/Catalogue/entries/block.html @@ -923,6 +927,7 @@ share/texmf/doc/help/Catalogue/entries/context.html share/texmf/doc/help/Catalogue/entries/contour.html share/texmf/doc/help/Catalogue/entries/cooking.html +share/texmf/doc/help/Catalogue/entries/corelfonts.html share/texmf/doc/help/Catalogue/entries/corelpak.html share/texmf/doc/help/Catalogue/entries/count1to.html share/texmf/doc/help/Catalogue/entries/covfonts.html @@ -1088,6 +1093,7 @@ share/texmf/doc/help/Catalogue/entries/euxm.html share/texmf/doc/help/Catalogue/entries/everysel.html share/texmf/doc/help/Catalogue/entries/everyshi.html +share/texmf/doc/help/Catalogue/entries/evweek.html share/texmf/doc/help/Catalogue/entries/exam.html share/texmf/doc/help/Catalogue/entries/examdesign.html share/texmf/doc/help/Catalogue/entries/exams.html @@ -1118,6 +1124,7 @@ share/texmf/doc/help/Catalogue/entries/feynmf.html share/texmf/doc/help/Catalogue/entries/fig2sty.html share/texmf/doc/help/Catalogue/entries/figcaps.html +share/texmf/doc/help/Catalogue/entries/figfrag.html share/texmf/doc/help/Catalogue/entries/fihyph.html share/texmf/doc/help/Catalogue/entries/filecontents.html share/texmf/doc/help/Catalogue/entries/filehdr.html @@ -1400,6 +1407,7 @@ share/texmf/doc/help/Catalogue/entries/lshort-russian.html share/texmf/doc/help/Catalogue/entries/lshort-slovak.html share/texmf/doc/help/Catalogue/entries/lshort-spanish.html +share/texmf/doc/help/Catalogue/entries/lshort-ukr.html share/texmf/doc/help/Catalogue/entries/ltablex.html share/texmf/doc/help/Catalogue/entries/ltnews.html share/texmf/doc/help/Catalogue/entries/ltoh.html @@ -1767,6 +1775,7 @@ share/texmf/doc/help/Catalogue/entries/scalefnt.html share/texmf/doc/help/Catalogue/entries/schedule.html share/texmf/doc/help/Catalogue/entries/scientificviewer.html +share/texmf/doc/help/Catalogue/entries/sciwordconv.html share/texmf/doc/help/Catalogue/entries/script.html share/texmf/doc/help/Catalogue/entries/scrnger.html share/texmf/doc/help/Catalogue/entries/secdot.html @@ -2632,8 +2641,6 @@ share/texmf/doc/latex/floatflt/floatflt.dvi share/texmf/doc/latex/footmisc/README share/texmf/doc/latex/footmisc/footmisc.dvi -share/texmf/doc/latex/g-brief/beispiel.tex -share/texmf/doc/latex/g-brief/g-brief.dvi share/texmf/doc/latex/general/a.ps share/texmf/doc/latex/general/guide.dvi share/texmf/doc/latex/general/guide.ps @@ -2661,6 +2668,12 @@ share/texmf/doc/latex/images/redball.gif share/texmf/doc/latex/jknappen/mathbbol.rme share/texmf/doc/latex/jknappen/mathrsfs.rme +share/texmf/doc/latex/jurabib/jb-bibtex-ref.html +share/texmf/doc/latex/jurabib/jb-com-ref.html +share/texmf/doc/latex/jurabib/jb-opt-ref.html +share/texmf/doc/latex/jurabib/jbendoc.dvi +share/texmf/doc/latex/jurabib/jbgerdoc.dvi +share/texmf/doc/latex/jurabib/jurabib-faq.dvi share/texmf/doc/latex/koma-script/INSTALL.TXT share/texmf/doc/latex/koma-script/INSTALLD.TXT share/texmf/doc/latex/koma-script/LEGAL.TXT @@ -2928,6 +2941,8 @@ share/texmf/doc/latex/lettrine/00README share/texmf/doc/latex/lettrine/demo.pdf share/texmf/doc/latex/lettrine/lettrine.dvi +share/texmf/doc/latex/listings/README +share/texmf/doc/latex/listings/listings.dvi share/texmf/doc/latex/mathtime/0readme share/texmf/doc/latex/mathtime/mathtime.dvi share/texmf/doc/latex/mdwtools/COPYING @@ -2999,12 +3014,12 @@ share/texmf/doc/latex/pb-diagram/pb-manual.aux share/texmf/doc/latex/pb-diagram/pb-manual.dvi share/texmf/doc/latex/pb-diagram/pb-manual.tex -share/texmf/doc/latex/pdfpages/README share/texmf/doc/latex/pdfpages/dummy-l.pdf share/texmf/doc/latex/pdfpages/dummy.pdf share/texmf/doc/latex/pdfpages/pdf-ex.tex share/texmf/doc/latex/pdfpages/pdf-hyp.tex share/texmf/doc/latex/pdfpages/pdfpages.dvi +share/texmf/doc/latex/pdfpages/readme share/texmf/doc/latex/platex/00readme share/texmf/doc/latex/platex/conowego.txt share/texmf/doc/latex/platex/czytaj.txt @@ -3114,6 +3129,8 @@ share/texmf/doc/latex/styles/mathcomp.dvi share/texmf/doc/latex/styles/mflogo.dvi share/texmf/doc/latex/styles/moreverb.dvi +share/texmf/doc/latex/styles/mparhack.dvi +share/texmf/doc/latex/styles/multiple-span.txt share/texmf/doc/latex/styles/paralist.dvi share/texmf/doc/latex/styles/picinpar.dvi share/texmf/doc/latex/styles/picins.txt @@ -3250,7 +3267,6 @@ share/texmf/doc/polish/context/cont-pl.html share/texmf/doc/polish/index.html share/texmf/doc/polish/mex/00readme -share/texmf/doc/polish/mex/mex.htm share/texmf/doc/polish/mex/mex.html share/texmf/doc/polish/mex/mexinfo.eng share/texmf/doc/polish/mex/mexinfo.pol @@ -3276,8 +3292,8 @@ share/texmf/doc/tetex/eurotex98-te.pdf share/texmf/doc/tetex/teTeX-FAQ share/texmf/doc/texdoctk/README -share/texmf/dvipdfm/README.config -share/texmf/dvipdfm/config +share/texmf/dvipdfm/config/README.config +share/texmf/dvipdfm/config/config share/texmf/dvips/antp/antp.enc share/texmf/dvips/antp/antp.map share/texmf/dvips/antp/config.antp @@ -10174,6 +10190,7 @@ share/texmf/tex/generic/hyphen/plhyph.tex share/texmf/tex/generic/hyphen/pt8hyph.tex share/texmf/tex/generic/hyphen/rohyphen.tex +share/texmf/tex/generic/hyphen/sihyph23.tex share/texmf/tex/generic/hyphen/skhyph.tex share/texmf/tex/generic/hyphen/skhyph2e.tex share/texmf/tex/generic/hyphen/sphyph.tex @@ -10805,8 +10822,6 @@ share/texmf/tex/latex/fp/fp.sty share/texmf/tex/latex/fp/fp.tex share/texmf/tex/latex/fp/lfp.sty -share/texmf/tex/latex/g-brief/g-brief.cls -share/texmf/tex/latex/g-brief/g-brief.sty share/texmf/tex/latex/graphics/color.sty share/texmf/tex/latex/graphics/dvipdf.def share/texmf/tex/latex/graphics/dvipdfm.def @@ -10863,6 +10878,16 @@ share/texmf/tex/latex/jknappen/mathrsfs.sty share/texmf/tex/latex/jknappen/ubbold.fd share/texmf/tex/latex/jknappen/ursfs.fd +share/texmf/tex/latex/jurabib/dejbbib.ldf +share/texmf/tex/latex/jurabib/dujbbib.ldf +share/texmf/tex/latex/jurabib/enjbbib.ldf +share/texmf/tex/latex/jurabib/frjbbib.ldf +share/texmf/tex/latex/jurabib/itjbbib.ldf +share/texmf/tex/latex/jurabib/jblong.cfg +share/texmf/tex/latex/jurabib/jurabib.cfg +share/texmf/tex/latex/jurabib/jurabib.sty +share/texmf/tex/latex/jurabib/nojbbib.ldf +share/texmf/tex/latex/jurabib/spjbbib.ldf share/texmf/tex/latex/koma-script/DIN.lco share/texmf/tex/latex/koma-script/DINmtext.lco share/texmf/tex/latex/koma-script/KOMAold.lco @@ -10885,6 +10910,13 @@ share/texmf/tex/latex/koma-script/typearea.sty share/texmf/tex/latex/labels/labels.sty share/texmf/tex/latex/labels/olabels.sty +share/texmf/tex/latex/listings/listings.cfg +share/texmf/tex/latex/listings/lstdoc.sty +share/texmf/tex/latex/listings/lstlang1.sty +share/texmf/tex/latex/listings/lstlang2.sty +share/texmf/tex/latex/listings/lstlang3.sty +share/texmf/tex/latex/listings/lstmisc.sty +share/texmf/tex/latex/listings/lstpatch.sty share/texmf/tex/latex/lucida/ly1hlce.fd share/texmf/tex/latex/lucida/ly1hlcf.fd share/texmf/tex/latex/lucida/ly1hlcn.fd @@ -11081,6 +11113,7 @@ share/texmf/tex/latex/misc/marvosym.sty share/texmf/tex/latex/misc/mathcomp.sty share/texmf/tex/latex/misc/moreverb.sty +share/texmf/tex/latex/misc/mparhack.sty share/texmf/tex/latex/misc/mt11p.sty share/texmf/tex/latex/misc/multibox.sty share/texmf/tex/latex/misc/multind.sty @@ -11745,12 +11778,13 @@ @dirrm share/texmf/tex/latex/mathpple @dirrm share/texmf/tex/latex/lucidabr @dirrm share/texmf/tex/latex/lucida +@dirrm share/texmf/tex/latex/listings @dirrm share/texmf/tex/latex/labels @dirrm share/texmf/tex/latex/koma-script +@dirrm share/texmf/tex/latex/jurabib @dirrm share/texmf/tex/latex/jknappen @dirrm share/texmf/tex/latex/hyperref @dirrm share/texmf/tex/latex/graphics -@dirrm share/texmf/tex/latex/g-brief @dirrm share/texmf/tex/latex/fp @dirrm share/texmf/tex/latex/fancyvrb @dirrm share/texmf/tex/latex/fancyheadings @@ -12232,6 +12266,7 @@ @dirrm share/texmf/dvips/antt @dirrm share/texmf/dvips/antp @dirrm share/texmf/dvips +@dirrm share/texmf/dvipdfm/config @dirrm share/texmf/dvipdfm @dirrm share/texmf/doc/texdoctk @dirrm share/texmf/doc/tetex @@ -12290,17 +12325,18 @@ @dirrm share/texmf/doc/latex/mfnfss @dirrm share/texmf/doc/latex/mdwtools @dirrm share/texmf/doc/latex/mathtime +@dirrm share/texmf/doc/latex/listings @dirrm share/texmf/doc/latex/lettrine @dirrm share/texmf/doc/latex/leftidx @dirrm share/texmf/doc/latex/latex2e-html @dirrm share/texmf/doc/latex/koma-script +@dirrm share/texmf/doc/latex/jurabib @dirrm share/texmf/doc/latex/jknappen @dirrm share/texmf/doc/latex/images @dirrm share/texmf/doc/latex/hyperref @dirrm share/texmf/doc/latex/graphics @dirrm share/texmf/doc/latex/geometry @dirrm share/texmf/doc/latex/general -@dirrm share/texmf/doc/latex/g-brief @dirrm share/texmf/doc/latex/footmisc @dirrm share/texmf/doc/latex/floatflt @dirrm share/texmf/doc/latex/fancyvrb @@ -12408,6 +12444,7 @@ @dirrm share/texmf/bibtex/bst/plbib @dirrm share/texmf/bibtex/bst/natbib @dirrm share/texmf/bibtex/bst/misc +@dirrm share/texmf/bibtex/bst/jurabib @dirrm share/texmf/bibtex/bst/germbib @dirrm share/texmf/bibtex/bst/base @dirrm share/texmf/bibtex/bst/ams >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sat Mar 1 6:40: 8 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E75FC37B401 for ; Sat, 1 Mar 2003 06:40:07 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 753EA43FDF for ; Sat, 1 Mar 2003 06:40:07 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h21Ee7NS016429 for ; Sat, 1 Mar 2003 06:40:07 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h21Ee7tW016428; Sat, 1 Mar 2003 06:40:07 -0800 (PST) Date: Sat, 1 Mar 2003 06:40:07 -0800 (PST) Message-Id: <200303011440.h21Ee7tW016428@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Stephen Montgomery-Smith Subject: Re: ports/48488: teTeX is by default for A4 paper Reply-To: Stephen Montgomery-Smith Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48488; it has been noted by GNATS. From: Stephen Montgomery-Smith To: freebsd-gnats-submit@FreeBSD.org, stephen@math.missouri.edu Cc: Subject: Re: ports/48488: teTeX is by default for A4 paper Date: Sat, 01 Mar 2003 08:32:47 -0600 Please close this PR. It is supersceded by ports/48810. -- Stephen Montgomery-Smith stephen@math.missouri.edu http://www.math.missouri.edu/~stephen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message From owner-freebsd-ports-bugs Sat Mar 1 7:10:13 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6589037B401 for ; Sat, 1 Mar 2003 07:10:12 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE89A43F3F for ; Sat, 1 Mar 2003 07:10:11 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h21FABNS054797 for ; Sat, 1 Mar 2003 07:10:11 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h21FABV7054795; Sat, 1 Mar 2003 07:10:11 -0800 (PST) Date: Sat, 1 Mar 2003 07:10:11 -