From owner-freebsd-ports Sun Nov 5 1:38: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6C0E037B4CF; Sun, 5 Nov 2000 01:38:06 -0800 (PST) Received: (from sanpei@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA52592; Sun, 5 Nov 2000 01:38:06 -0800 (PST) (envelope-from sanpei@FreeBSD.org) Date: Sun, 5 Nov 2000 01:38:06 -0800 (PST) From: Message-Id: <200011050938.BAA52592@freefall.freebsd.org> To: phj@cn.freebsd.org, sanpei@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/19232: port name changed and being updated Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: port name changed and being updated State-Changed-From-To: open->closed State-Changed-By: sanpei State-Changed-When: Sun Nov 5 01:37:39 PST 2000 State-Changed-Why: This PR was duplicated by ports/18867. http://www.freebsd.org/cgi/query-pr.cgi?pr=19232 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 2:10: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1788137B4D7 for ; Sun, 5 Nov 2000 02:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA56356; Sun, 5 Nov 2000 02:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from mgate03.so-net.ne.jp (mgate03.so-net.ne.jp [210.139.254.150]) by hub.freebsd.org (Postfix) with ESMTP id 0E70837B4C5 for ; Sun, 5 Nov 2000 02:08:24 -0800 (PST) Received: from mail.ba2.so-net.ne.jp (mail.ba2.so-net.ne.jp [210.139.254.21]) by mgate03.so-net.ne.jp (8.8.8+3.0Wbeta9/3.6W00101717) with ESMTP id TAA25198 for ; Sun, 5 Nov 2000 19:08:22 +0900 (JST) Received: from ba2.so-net.ne.jp (pee4aac.tokynt01.ap.so-net.ne.jp [202.238.74.172]) by mail.ba2.so-net.ne.jp (8.8.8/3.7W99081617) with ESMTP id TAA03273 for ; Sun, 5 Nov 2000 19:08:21 +0900 (JST) Received: (from sanewo@localhost) by ba2.so-net.ne.jp (8.11.1/8.11.1) id eA5A7oV19205; Sun, 5 Nov 2000 19:07:50 +0900 (JST) (envelope-from sanewo) Message-Id: <200011051007.eA5A7oV19205@ba2.so-net.ne.jp> Date: Sun, 5 Nov 2000 19:07:50 +0900 (JST) From: sanewo@ba2.so-net.ne.jp Reply-To: sanewo@ba2.so-net.ne.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22615: fix for xdm to cope with PAM Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22615 >Category: ports >Synopsis: fix for xdm to cope with PAM >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Nov 05 02:10:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Takanori Saneto >Release: FreeBSD 4.2-BETA i386 >Organization: an individual >Environment: x11/XFree86-4, x11/XFree86-4-client ports as of today. >Description: 1. Although XFree86-4.0.1's xdm supports pam authentication, it is not enabled for FreeBSD platform. 2. Moreover, pam support in XFree86 has a bug which prevents pam_ssh from supporting session management (automatic ssh-agent invocation). NOTE: This patch is already sent to xpert@XFree86.org (couple weeks ago), but is not incorporated to the source yet. >How-To-Repeat: Try following pam.conf setting work before/after applying the patch. >Fix: Put this patch in /usr/ports/x11/XFree86-4/files and rebuild the ports. Patch to Imakefile fixes the problem 1. Patches to other files fixes problem 2. NOTE: You need to fix openssh (see PR bin/22614) to make it work. (ports version of openssh seems to be fixed already) Index: programs/xdm/Imakefile =================================================================== RCS file: /sd1/cvsup-xfree86/cvs/xc/programs/xdm/Imakefile,v retrieving revision 3.36 diff -u -r3.36 Imakefile --- programs/xdm/Imakefile 2000/06/17 00:27:34 3.36 +++ programs/xdm/Imakefile 2000/10/07 11:06:01 @@ -68,16 +68,16 @@ XPM_DEFINES = -DXPM +#if HasPam +PAM_LIBRARIES = -lpam DlLibrary +PAM_DEFINES = -DUSE_PAM +#endif + #if SystemV4 || HasShadowPasswd #if !LinuxShadowSuite PWD_DEFINES = -DUSESHADOW #else PWD_DEFINES = -DUSESHADOW -DSHADOWSUITE -#endif - -#if HasPam -PAM_LIBRARIES = -lpam DlLibrary -PAM_DEFINES = -DUSE_PAM #endif #if !defined(i386IscArchitecture) && !defined(i386ScoArchitecture) && !defined(LinuxArchitecture) && !defined(NTOArchitecture) && !defined(SGIArchitecture) Index: programs/xdm/dm.h =================================================================== RCS file: /sd1/cvsup-xfree86/cvs/xc/programs/xdm/dm.h,v retrieving revision 3.19 diff -u -r3.19 dm.h --- programs/xdm/dm.h 2000/06/14 00:16:14 3.19 +++ programs/xdm/dm.h 2000/10/08 10:10:36 @@ -417,7 +417,7 @@ /* in session.c */ #ifdef USE_PAM -extern pam_handle_t *thepamh(void); +extern pam_handle_t **thepamh(void); #endif extern char **defaultEnv (void); extern char **systemEnv (struct display *d, char *user, char *home); Index: programs/xdm/greet.h =================================================================== RCS file: /sd1/cvsup-xfree86/cvs/xc/programs/xdm/greet.h,v retrieving revision 1.5 diff -u -r1.5 greet.h --- programs/xdm/greet.h 2000/05/31 07:15:11 1.5 +++ programs/xdm/greet.h 2000/10/08 10:08:23 @@ -82,7 +82,7 @@ #endif char *(*_crypt)(CRYPT_ARGS); #ifdef USE_PAM - pam_handle_t *(*_thepamh)(void); + pam_handle_t **(*_thepamh)(void); #endif }; @@ -178,7 +178,7 @@ #endif extern char *(*__xdm_crypt)(CRYPT_ARGS); #ifdef USE_PAM -extern pam_handle_t *(*__xdm_thepamh)(void); +extern pam_handle_t **(*__xdm_thepamh)(void); #endif /* Index: programs/xdm/session.c =================================================================== RCS file: /sd1/cvsup-xfree86/cvs/xc/programs/xdm/session.c,v retrieving revision 3.23 diff -u -r3.23 session.c --- programs/xdm/session.c 2000/06/17 00:27:34 3.23 +++ programs/xdm/session.c 2000/10/08 10:09:49 @@ -97,10 +97,10 @@ extern char *crypt(CRYPT_ARGS); #endif #ifdef USE_PAM -pam_handle_t *thepamh() +pam_handle_t **thepamh() { static pam_handle_t *pamh = NULL; - return pamh; + return &pamh; } #endif @@ -468,7 +468,7 @@ if (removeAuth) { #ifdef USE_PAM - pam_handle_t *pamh = thepamh(); + pam_handle_t **pamh = thepamh(); #endif setgid (verify.gid); setuid (verify.uid); @@ -498,11 +498,11 @@ } #endif /* K5AUTH */ #ifdef USE_PAM - if (pamh) { + if (pamh && *pamh) { /* shutdown PAM session */ - pam_close_session(pamh, 0); - pam_end(pamh, PAM_SUCCESS); - pamh = NULL; + pam_close_session(*pamh, 0); + pam_end(*pamh, PAM_SUCCESS); + *pamh = NULL; } #endif } @@ -525,7 +525,7 @@ struct passwd* pwd; #endif #ifdef USE_PAM - pam_handle_t *pamh = thepamh(); + pam_handle_t **pamh = thepamh(); #endif if (verify->argv) { @@ -540,7 +540,7 @@ Debug ("\n"); } #ifdef USE_PAM - if (pamh) pam_open_session(pamh, 0); + if (pamh && *pamh) pam_open_session(*pamh, 0); #endif switch (pid = fork ()) { case 0: @@ -554,9 +554,9 @@ #ifdef USE_PAM /* pass in environment variables set by libpam and modules it called */ - if (pamh) { + if (pamh && *pamh) { long i; - char **pam_env = pam_getenvlist(pamh); + char **pam_env = pam_getenvlist(*pamh); for(i = 0; pam_env && pam_env[i]; i++) { verify->userEnviron = putEnv(pam_env[i], verify->userEnviron); } Index: programs/xdm/greeter/greet.c =================================================================== RCS file: /sd1/cvsup-xfree86/cvs/xc/programs/xdm/greeter/greet.c,v retrieving revision 3.7 diff -u -r3.7 greet.c --- programs/xdm/greeter/greet.c 2000/06/14 00:16:16 3.7 +++ programs/xdm/greeter/greet.c 2000/10/08 10:08:09 @@ -83,7 +83,7 @@ #endif char *(*__xdm_crypt)(CRYPT_ARGS) = NULL; #ifdef USE_PAM -pam_handle_t *(*__xdm_thepamh)(void) = NULL; +pam_handle_t **(*__xdm_thepamh)(void) = NULL; #endif #endif Index: programs/xdm/greeter/verify.c =================================================================== RCS file: /sd1/cvsup-xfree86/cvs/xc/programs/xdm/greeter/verify.c,v retrieving revision 3.9 diff -u -r3.9 verify.c --- programs/xdm/greeter/verify.c 2000/06/14 00:16:16 3.9 +++ programs/xdm/greeter/verify.c 2000/10/08 10:10:28 @@ -163,7 +163,7 @@ { struct passwd *p; #ifdef USE_PAM - pam_handle_t *pamh = thepamh(); + pam_handle_t **pamh = thepamh(); #else #ifdef USESHADOW struct spwd *sp; @@ -312,19 +312,19 @@ #else /* USE_PAM */ #define PAM_BAIL \ - if (pam_error != PAM_SUCCESS) { pam_end(pamh, 0); return 0; } + if (pam_error != PAM_SUCCESS) { pam_end(*pamh, 0); return 0; } PAM_password = greet->password; - pam_error = pam_start("xdm", p->pw_name, &PAM_conversation, &pamh); + pam_error = pam_start("xdm", p->pw_name, &PAM_conversation, pamh); PAM_BAIL; - pam_error = pam_set_item(pamh, PAM_TTY, d->name); + pam_error = pam_set_item(*pamh, PAM_TTY, d->name); PAM_BAIL; - pam_error = pam_authenticate(pamh, 0); + pam_error = pam_authenticate(*pamh, 0); PAM_BAIL; - pam_error = pam_acct_mgmt(pamh, 0); + pam_error = pam_acct_mgmt(*pamh, 0); /* really should do password changing, but it doesn't fit well */ PAM_BAIL; - pam_error = pam_setcred(pamh, 0); + pam_error = pam_setcred(*pamh, 0); PAM_BAIL; #undef PAM_BAIL #endif /* USE_PAM */ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 2:20: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2F08837B4D7 for ; Sun, 5 Nov 2000 02:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA57218; Sun, 5 Nov 2000 02:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from bifrost.lyngbol.dk (port28.cvx1-arc.ppp.cybercity.dk [212.242.190.29]) by hub.freebsd.org (Postfix) with ESMTP id DE3B537B479 for ; Sun, 5 Nov 2000 02:19:31 -0800 (PST) Received: (from root@localhost) by bifrost.lyngbol.dk (8.11.0/8.11.0) id eA5AJnR52545; Sun, 5 Nov 2000 11:19:49 +0100 (CET) (envelope-from lyngbol) Message-Id: <200011051019.eA5AJnR52545@bifrost.lyngbol.dk> Date: Sun, 5 Nov 2000 11:19:49 +0100 (CET) From: lyngbol@candid.dk To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22616: new port of GQmpeg devel Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22616 >Category: ports >Synopsis: new port of GQmpeg (devel version) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Nov 05 02:20:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Michael Lyngbøl >Release: FreeBSD 4.1.1-STABLE i386 >Organization: >Environment: FreeBSD 4.1.1-STABLE i386 >Description: New port of the devel version of GQmpeg. Improvements include: - better shuffle algorithm (yes!) - man page - supports i18n (cs, de, fr, ja, pt included) - many (small) improvements Con: - default skin is just plain ugly >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: # # gqmpeg-devel # gqmpeg-devel/distinfo # gqmpeg-devel/pkg-descr # gqmpeg-devel/Makefile # gqmpeg-devel/pkg-plist # gqmpeg-devel/pkg-comment # echo c - gqmpeg-devel mkdir -p gqmpeg-devel > /dev/null 2>&1 echo x - gqmpeg-devel/distinfo sed 's/^X//' >gqmpeg-devel/distinfo << 'END-of-gqmpeg-devel/distinfo' XMD5 (gqmpeg-0.7.3.tar.gz) = 23b7a900e13d80f5a42ff5a65c5fc2ee END-of-gqmpeg-devel/distinfo echo x - gqmpeg-devel/pkg-descr sed 's/^X//' >gqmpeg-devel/pkg-descr << 'END-of-gqmpeg-devel/pkg-descr' XA really nice GTK-based front-end to mpg123. XHas skin support and much more. X XThis is the devel version. X XWWW: http://www.netpedia.net/hosting/gqview/mpeg-index.html X X- Michael Xlyngbol@candid.dk END-of-gqmpeg-devel/pkg-descr echo x - gqmpeg-devel/Makefile sed 's/^X//' >gqmpeg-devel/Makefile << 'END-of-gqmpeg-devel/Makefile' X# New ports collection makefile for: gqmpeg-devel X# Date Created: 4 Nov 2000 X# Whom: Michael Lyngbøl X# X# $FreeBSD$ X# X XPORTNAME= gqmpeg XPORTVERSION= 0.7.3 XCATEGORIES= audio XMASTER_SITES= http://www.netpedia.net/hosting/gqview/packages/ \ X http://www.geocities.com/SiliconValley/Haven/5235/packages/ XPKGNAMESUFFIX= -devel X XMAINTAINER= lyngbol@candid.dk X XBUILD_DEPENDS= gdk-pixbuf-config:${PORTSDIR}/graphics/gdk-pixbuf XRUN_DEPENDS= mpg123:${PORTSDIR}/audio/mpg123 X XGNU_CONFIGURE= yes XUSE_X_PREFIX= yes XUSE_IMLIB= yes XUSE_GTK= yes X XMAN1= gqmpeg.1 X X.include END-of-gqmpeg-devel/Makefile echo x - gqmpeg-devel/pkg-plist sed 's/^X//' >gqmpeg-devel/pkg-plist << 'END-of-gqmpeg-devel/pkg-plist' Xbin/gqmpeg Xbin/gqmpeg-shoutcast-plugin.sh Xshare/gnome/gnome/apps/Multimedia/gqmpeg.desktop Xshare/gnome/pixmaps/gqmpeg.png Xshare/locale/cs/LC_MESSAGES/gqmpeg.mo Xshare/locale/de/LC_MESSAGES/gqmpeg.mo Xshare/locale/fr/LC_MESSAGES/gqmpeg.mo Xshare/locale/ja/LC_MESSAGES/gqmpeg.mo Xshare/locale/pt_BR/LC_MESSAGES/gqmpeg.mo X@dirrm share/gqmpeg/skins X@dirrm share/gqmpeg END-of-gqmpeg-devel/pkg-plist echo x - gqmpeg-devel/pkg-comment sed 's/^X//' >gqmpeg-devel/pkg-comment << 'END-of-gqmpeg-devel/pkg-comment' XOne really nice GTK-based mpg123 frontend (devel version) END-of-gqmpeg-devel/pkg-comment exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 2:50: 4 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4383B37B479 for ; Sun, 5 Nov 2000 02:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA60001; Sun, 5 Nov 2000 02:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Sun, 5 Nov 2000 02:50:02 -0800 (PST) Message-Id: <200011051050.CAA60001@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: =?iso-8859-1?Q?Michael_Lyngb=F8l?= Subject: Re: ports/22616: new port of GQmpeg (devel version) Reply-To: =?iso-8859-1?Q?Michael_Lyngb=F8l?= Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/22616; it has been noted by GNATS. From: =?iso-8859-1?Q?Michael_Lyngb=F8l?= To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/22616: new port of GQmpeg (devel version) Date: Sun, 5 Nov 2000 11:46:17 +0100 'imlib' is not required: --- Makefile.orig Sun Nov 5 11:43:14 2000 +++ Makefile Sun Nov 5 11:43:19 2000 @@ -19,7 +19,6 @@ GNU_CONFIGURE= yes USE_X_PREFIX= yes -USE_IMLIB= yes USE_GTK= yes MAN1= gqmpeg.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 5: 0:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C077037B4C5 for ; Sun, 5 Nov 2000 05:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA76516; Sun, 5 Nov 2000 05:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from net2.dinoex.sub.org (net2.dinoex.de [212.184.201.182]) by hub.freebsd.org (Postfix) with ESMTP id 4D4D137B4CF for ; Sun, 5 Nov 2000 04:53:46 -0800 (PST) Received: from home.dinoex.sub.org (home.dinoex.sub.de [62.157.91.196]) by net2.dinoex.sub.org (8.11.1/8.11.1) with ESMTP id eA5CqEw07690 for ; Sun, 5 Nov 2000 13:52:14 +0100 (CET) (envelope-from dm@home.dinoex.sub.org) Received: (from dm@localhost) by home.dinoex.sub.org (8.11.1/8.11.1) id eA5CpJo40772; Sun, 5 Nov 2000 13:51:19 +0100 (CET) (envelope-from dm) Message-Id: <200011051251.eA5CpJo40772@home.dinoex.sub.org> Date: Sun, 5 Nov 2000 13:51:19 +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.2 Subject: ports/22619: Fix mail/sendmail (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22619 >Category: ports >Synopsis: Fix mail/sendmail (by maintainer) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Nov 05 05:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Dirk Meyer >Release: FreeBSD 3.4-STABLE i386 >Organization: privat >Environment: FreeBSD 2.2.8-RELEASE i386 FreeBSD 3.4-STABLE i386 FreeBSD 4.1.1-STABLE i386 >Description: Small improvements for remote build. The empty config directory is now removed. Use of macro APPENDDEF to allow local addition to confCCOPTS ( e.G. milter and other FFR options ) PORTREVISION is not increased. >How-To-Repeat: >Fix: apply the small patches. diff sendmail/Makefile sendmail-8.11.1/Makefile --- sendmail/Makefile Thu Oct 26 09:29:34 2000 +++ sendmail-8.11.1/Makefile Thu Oct 26 17:51:02 2000 @@ -18,7 +18,7 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} PLIST= ${WRKDIR}/.PLIST.more -.if exists(/etc/mail/mailer.conf) +.if exists(${DESTDIR}/etc/mail/mailer.conf) pre-configure: ${SED} -e "s=%%PREFIX%%=${PREFIX}=" \ ${FILESDIR}/site.config.m4 >${WRKSRC}/devtools/Site/site.config.m4 @@ -46,6 +46,7 @@ ${AWK} '{print "share/sendmail/" $$1}' >>${PLIST} cd ${WRKSRC} && find -d cf -type d | \ ${AWK} '{print "@dirrm share/sendmail/" $$1}' >>${PLIST} + ${ECHO} "@dirrm share/sendmail" >>${PLIST} .endif # We want mail.local and rmail for our system. diff sendmail/files/site.config.m4 sendmail-8.11.1/files/site.config.m4 --- sendmail/files/site.config.m4 Sat Oct 14 06:51:41 2000 +++ sendmail-8.11.1/files/site.config.m4 Thu Oct 26 17:36:17 2000 @@ -4,4 +4,5 @@ define(`confMBINDIR',`%%PREFIX%%/sbin') define(`confSBINDIR',`%%PREFIX%%/sbin') define(`confUBINDIR',`%%PREFIX%%/bin') -define(`confCCOPTS',`-DCMDDIR="\"%%PREFIX%%/libexec/sm.bin\"" -DPATH="\"/bin:/usr/bin\""') +APPENDDEF(`confCCOPTS', `-DCMDDIR="\"%%PREFIX%%/libexec/sm.bin\""') +APPENDDEF(`confCCOPTS', `-DPATH="\"/bin:/usr/bin\""') --- sendmail/files/site.config.m4.pre4 Sat Oct 14 06:51:41 2000 +++ sendmail-8.11.1/files/site.config.m4.pre4 Thu Oct 26 17:36:21 2000 @@ -1 +1,2 @@ -define(`confCCOPTS',`-DCMDDIR="\"%%PREFIX%%/libexec/sm.bin\"" -DPATH="\"/bin:/usr/bin\""') +APPENDDEF(`confCCOPTS', `-DCMDDIR="\"%%PREFIX%%/libexec/sm.bin\""') +APPENDDEF(`confCCOPTS', `-DPATH="\"/bin:/usr/bin\""') >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 5:40: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DED2437B4E5 for ; Sun, 5 Nov 2000 05:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA82993; Sun, 5 Nov 2000 05:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from net2.dinoex.sub.org (net2.dinoex.de [212.184.201.182]) by hub.freebsd.org (Postfix) with ESMTP id ABE6437B4CF for ; Sun, 5 Nov 2000 05:38:07 -0800 (PST) Received: from home.dinoex.sub.org (home.dinoex.sub.de [62.157.91.196]) by net2.dinoex.sub.org (8.11.1/8.11.1) with ESMTP id eA5DbGw09530 for ; Sun, 5 Nov 2000 14:37:16 +0100 (CET) (envelope-from dm@home.dinoex.sub.org) Received: (from dm@localhost) by home.dinoex.sub.org (8.11.1/8.11.1) id eA5Db9p57012; Sun, 5 Nov 2000 14:37:09 +0100 (CET) (envelope-from dm) Message-Id: <200011051337.eA5Db9p57012@home.dinoex.sub.org> Date: Sun, 5 Nov 2000 14:37:09 +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.2 Subject: ports/22620: fix security/gnupg-rsa (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22620 >Category: ports >Synopsis: fix security/gnupg-rsa (by maintainer) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Nov 05 05:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Dirk Meyer >Release: FreeBSD 4.1.1-STABLE i386 >Organization: privat >Environment: USA_RESIDENT to YES >Description: - extra spaces and newlines removed - RESTRICTED now more specifc - PLIST generated on the fly - PKGMESSAGE to inform the users >How-To-Repeat: remove of package give a warning. >Fix: apply the patch diff gnupg-rsa/Makefile gnupg-rsa/Makefile --- gnupg-rsa/Makefile Wed Oct 4 20:39:51 2000 +++ gnupg-rsa/Makefile Sun Nov 5 14:35:05 2000 @@ -1,5 +1,5 @@ # New ports collection makefile for: gnupg-rsa -# Date created: 10 May, 2000 +# Date created: 10 May, 2000 # Whom: dirk.meyer@dinoex.sub.org # # $FreeBSD: ports/security/gnupg-rsa/Makefile,v 1.5 2000/10/02 14:23:03 kevlo Exp $ @@ -7,18 +7,21 @@ PORTNAME= gnupg-rsa PORTVERSION= 1.0.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security MASTER_SITES= ftp://ftp.gnupg.org/pub/gcrypt/contrib/ MAINTAINER= dirk.meyer@dinoex.sub.org -RESTRICTED= "Crypto; export-controlled" RUN_DEPENDS= ${LOCALBASE}/bin/gpg:${PORTSDIR}/security/gnupg + +RESTRICTED= "IDEA is Patented in the USA and many european countries" + NO_WRKSUBDIR= yes DIST_SUBDIR= ${PORTNAME} CFLAGS+= -O2 -shared -fPIC -DIS_MODULE CFLAGS+= -Wall -Wcast-align -Wshadow -Wstrict-prototypes +PLIST= ${WRKDIR}/.PLIST.more .if !defined(USA_RESIDENT) || ${USA_RESIDENT} != YES && ${USA_RESIDENT} != NO pre-fetch: @@ -41,6 +44,9 @@ .include +pre-extract: + @${SED} s!%%PREFIX%%!${PREFIX}!g ${PKGMESSAGE} + do-extract: @${RM} -rf ${WRKDIR} @${MKDIR} ${WRKDIR} @@ -57,6 +63,7 @@ do-build: .for i in ${CONTRIB} ${CC} ${CFLAGS} -o ${WRKSRC}/${i} ${WRKSRC}/${i}.c + ${ECHO} "lib/gnupg/${i}" >>${PLIST} .endfor do-install: diff gnupg-rsa/pkg-message gnupg-rsa/pkg-message --- gnupg-rsa/pkg-message Thu Jan 1 01:00:00 1970 +++ gnupg-rsa/pkg-message Sun Nov 5 14:26:48 2000 @@ -0,0 +1,12 @@ + +--------------------------------------------------- + +RSA: rsa is now included in gnupg >= 1.0.3 + still included for demonstration. + +IDEA: + Patented in the USA and many european countries + thought to be OK to use for any non-commercial use. + +--------------------------------------------------- + diff gnupg-rsa/pkg-plist gnupg-rsa/pkg-plist --- gnupg-rsa/pkg-plist Fri May 12 10:19:03 2000 +++ gnupg-rsa/pkg-plist Thu Jan 1 01:00:00 1970 @@ -1,2 +0,0 @@ -lib/gnupg/rsa -lib/gnupg/idea >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 6: 0: 4 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 40F5737B4C5 for ; Sun, 5 Nov 2000 06:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA84981; Sun, 5 Nov 2000 06:00:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Sun, 5 Nov 2000 06:00:03 -0800 (PST) Message-Id: <200011051400.GAA84981@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Akinori MUSHA" Subject: Re: ports/22620: fix security/gnupg-rsa (by maintainer) Reply-To: "Akinori MUSHA" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/22620; it has been noted by GNATS. From: "Akinori MUSHA" To: dirk.meyer@dinoex.sub.org Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/22620: fix security/gnupg-rsa (by maintainer) Date: Sun, 05 Nov 2000 22:55:08 +0900 At Sun, 5 Nov 2000 14:37:09 +0100 (CET), dirk.meyer@dinoex.sub.org wrote: > +RSA: rsa is now included in gnupg >= 1.0.3 > + still included for demonstration. > + > +IDEA: > + Patented in the USA and many european countries > + thought to be OK to use for any non-commercial use. Why not rename this port to gnupg-idea? -- / /__ __ / ) ) ) ) / and.or.jp / ruby-lang.org Akinori -Aki- MUSHA aka / (_ / ( (__( @ idaemons.org / FreeBSD.org "We're only at home when we're on the run, on the wing, on the fly" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 7: 0:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A8E2337B4CF for ; Sun, 5 Nov 2000 07:00:08 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA91911; Sun, 5 Nov 2000 07:00:08 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Sun, 5 Nov 2000 07:00:08 -0800 (PST) Message-Id: <200011051500.HAA91911@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: dirk.meyer@dinoex.sub.org (Dirk Meyer) Subject: Re: ports/22620: fix security/gnupg-rsa (by maintainer) Reply-To: dirk.meyer@dinoex.sub.org (Dirk Meyer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/22620; it has been noted by GNATS. From: dirk.meyer@dinoex.sub.org (Dirk Meyer) To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: Re: ports/22620: fix security/gnupg-rsa (by maintainer) Date: Sun, 05 Nov 2000 15:51:18 +0100 Akinori MUSHA wrote:, > > +RSA: rsa is now included in gnupg >= 1.0.3 > > + still included for demonstration. > > + > > +IDEA: > > + Patented in the USA and many european countries > > + thought to be OK to use for any non-commercial use. > > Why not rename this port to gnupg-idea? sound fine, if someone like to do the CVS-move. kind regards Dirk - Dirk Meyer, Im Grund 4, 34317 Habichtswald, Germany To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 7:46:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5925B37B4C5; Sun, 5 Nov 2000 07:46:09 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA97972; Sun, 5 Nov 2000 07:46:09 -0800 (PST) (envelope-from knu@FreeBSD.org) Date: Sun, 5 Nov 2000 07:46:09 -0800 (PST) From: Message-Id: <200011051546.HAA97972@freefall.freebsd.org> To: knu@FreeBSD.org, freebsd-ports@FreeBSD.org, knu@FreeBSD.org Subject: Re: ports/22620: fix security/gnupg-rsa (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: fix security/gnupg-rsa (by maintainer) Responsible-Changed-From-To: freebsd-ports->knu Responsible-Changed-By: knu Responsible-Changed-When: Mon Nov 6 00:45:45 JST 2000 Responsible-Changed-Why: I'll take this. http://www.freebsd.org/cgi/query-pr.cgi?pr=22620 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 10:19:59 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1D8A537B4CF; Sun, 5 Nov 2000 10:19:57 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA16202; Sun, 5 Nov 2000 10:19:57 -0800 (PST) (envelope-from dougb@FreeBSD.org) Date: Sun, 5 Nov 2000 10:19:57 -0800 (PST) From: Message-Id: <200011051819.KAA16202@freefall.freebsd.org> To: roman@xpert.com, dougb@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22609: The port needs g++ 2.95.2 + update version Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: The port needs g++ 2.95.2 + update version State-Changed-From-To: open->closed State-Changed-By: dougb State-Changed-When: Sun Nov 5 10:19:33 PST 2000 State-Changed-Why: Change committed, thanks. :) http://www.freebsd.org/cgi/query-pr.cgi?pr=22609 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 10:21:50 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B808A37B479; Sun, 5 Nov 2000 10:21:48 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA16688; Sun, 5 Nov 2000 10:21:48 -0800 (PST) (envelope-from dougb@FreeBSD.org) Date: Sun, 5 Nov 2000 10:21:48 -0800 (PST) From: Message-Id: <200011051821.KAA16688@freefall.freebsd.org> To: jeremy@external.org, dougb@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22514: New Port: audio/libmusicbrainz Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New Port: audio/libmusicbrainz State-Changed-From-To: open->closed State-Changed-By: dougb State-Changed-When: Sun Nov 5 10:20:25 PST 2000 State-Changed-Why: For better or worse, there is already a musicbrainz port. Please don't let that discourage you from future efforts. http://www.freebsd.org/cgi/query-pr.cgi?pr=22514 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 10:26:53 2000 Delivered-To: freebsd-ports@freebsd.org Received: from tel.netraam.com (tel.netraam.com [24.132.60.123]) by hub.freebsd.org (Postfix) with ESMTP id 0A9E637B4C5; Sun, 5 Nov 2000 10:26:45 -0800 (PST) Received: from maarten (helo=localhost) by tel.netraam.com with local-esmtp (Exim 3.16 #1) id 13sUUz-000N7T-00; Sun, 05 Nov 2000 19:26:33 +0100 Date: Sun, 5 Nov 2000 19:26:33 +0100 (CET) From: Maarten de Vries To: asami@FreeBSD.org Cc: ports@freebsd.org Subject: ScrollZ Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I thought you might be interested to know that the version of ScrollZ in the FreeBSD ports (ports/irc/scrollz), is quite outdated. The ports still carry version 1.8i6, while version 1.8j6 has been released this summer and is greatly improved. It's available from . With best regards, Maarten -- maarten@netraam.com | www.netraam.com http://tel.netraam.com/files/netiquette.html faster than the sun rose To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 10:43:55 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1457C37B479; Sun, 5 Nov 2000 10:43:54 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA32393; Sun, 5 Nov 2000 10:43:54 -0800 (PST) (envelope-from dougb@FreeBSD.org) Date: Sun, 5 Nov 2000 10:43:54 -0800 (PST) From: Message-Id: <200011051843.KAA32393@freefall.freebsd.org> To: dr@astorit.com, dougb@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22587: xtermset port failed to build because of non-fetchable distfile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: xtermset port failed to build because of non-fetchable distfile State-Changed-From-To: open->closed State-Changed-By: dougb State-Changed-When: Sun Nov 5 10:43:12 PST 2000 State-Changed-Why: Your change was committed, but next time submit your changes as a diff to the existing port. Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22587 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 10:46:46 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BCD7037B4C5; Sun, 5 Nov 2000 10:46:44 -0800 (PST) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA32715; Sun, 5 Nov 2000 10:46:44 -0800 (PST) (envelope-from billf@FreeBSD.org) Date: Sun, 5 Nov 2000 10:46:44 -0800 (PST) From: Message-Id: <200011051846.KAA32715@freefall.freebsd.org> To: opentrax@email.com, billf@FreeBSD.org, jseger@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: misc/22621: tcl.h and tk.h not in the right places. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: tcl.h and tk.h not in the right places. State-Changed-From-To: analyzed->closed State-Changed-By: billf State-Changed-When: Sun Nov 5 10:44:09 PST 2000 State-Changed-Why: The reasons for using nonstandard installations of tcl libraries is, as you mentioned, to avoid namespace collision. Discussions regarding this appear in the ports mailing list archive. Perhaps you could submit a port that installs the expected headers with small headers that just "#error ..." with a detailed message and the tcl/tk ports could depend on that port to at least help our users out. Responsible-Changed-From-To: jseger->freebsd-ports Responsible-Changed-By: billf Responsible-Changed-When: Sun Nov 5 10:44:09 PST 2000 Responsible-Changed-Why: common ports issue http://www.freebsd.org/cgi/query-pr.cgi?pr=22621 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 10:48:25 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 042CD37B4C5; Sun, 5 Nov 2000 10:48:24 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA32926; Sun, 5 Nov 2000 10:48:24 -0800 (PST) (envelope-from dougb@FreeBSD.org) Date: Sun, 5 Nov 2000 10:48:24 -0800 (PST) From: Message-Id: <200011051848.KAA32926@freefall.freebsd.org> To: dr@astorit.com, dougb@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22586: tirc port failed to build because of non-fetchable distfile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: tirc port failed to build because of non-fetchable distfile State-Changed-From-To: open->closed State-Changed-By: dougb State-Changed-When: Sun Nov 5 10:48:07 PST 2000 State-Changed-Why: Update committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22586 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 10:53:29 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AB32937B479; Sun, 5 Nov 2000 10:53:28 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA33365; Sun, 5 Nov 2000 10:53:28 -0800 (PST) (envelope-from dougb@FreeBSD.org) Date: Sun, 5 Nov 2000 10:53:28 -0800 (PST) From: Message-Id: <200011051853.KAA33365@freefall.freebsd.org> To: roam@orbitel.bg, dougb@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22503: unbreak net/p5-Net-Whois, approved by MAINTAINER Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: unbreak net/p5-Net-Whois, approved by MAINTAINER State-Changed-From-To: open->closed State-Changed-By: dougb State-Changed-When: Sun Nov 5 10:52:26 PST 2000 State-Changed-Why: Fix committed, thanks. :) http://www.freebsd.org/cgi/query-pr.cgi?pr=22503 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 11:10: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D74FB37B479 for ; Sun, 5 Nov 2000 11:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA37543; Sun, 5 Nov 2000 11:10:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Sun, 5 Nov 2000 11:10:03 -0800 (PST) Message-Id: <200011051910.LAA37543@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Will Andrews Subject: Re: ports/22616: new port of GQmpeg devel Reply-To: Will Andrews Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/22616; it has been noted by GNATS. From: Will Andrews To: lyngbol@candid.dk Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/22616: new port of GQmpeg devel Date: Sun, 5 Nov 2000 14:06:20 -0500 On Sun, Nov 05, 2000 at 11:19:49AM +0100, lyngbol@candid.dk wrote: > >Synopsis: new port of GQmpeg (devel version) Is there any decent reason why we can't just merge this into the current version of gqmpeg we have in the tree? I've always been mistrustful of what other developers call ``development'' until I see for myself. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 11:11: 4 2000 Delivered-To: freebsd-ports@freebsd.org Received: from herbelot.dyndns.org (s014.dhcp212-24.cybercable.fr [212.198.24.14]) by hub.freebsd.org (Postfix) with ESMTP id E59A637B479; Sun, 5 Nov 2000 11:10:53 -0800 (PST) Received: from portable.herbelot.nom (portable.herbelot.nom [192.168.1.4]) by herbelot.dyndns.org (8.9.3/8.9.3) with SMTP id UAA35903; Sun, 5 Nov 2000 20:10:47 +0100 (CET) (envelope-from tfh9@netcourrier.com) From: Thierry Herbelot Date: Sun, 5 Nov 2000 20:10:47 +0100 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="iso-8859-1" To: ports@freebsd.org Cc: stable@freebsd.org Subject: KDE2 and some 4.2-Beta remarks MIME-Version: 1.0 Message-Id: <00110520104702.82258@portable.herbelot.nom> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, first, let me congratulate all involved in 4.2, which seems to be a great release. furthermore, KDE2 is just a great X environment (with seemingly working apps) then, some rants before the release gets cut : - the linux emulation can't read files names longer than 8+3 in a FAT partition (msdos slice). I shouldn't care, but the latest Netscrap is only available as a Linux executable, so I can't read a HTML file in the "my documents" directory of the DOS file (the latest Konqueror with the GIF library compiled-in could be a good replacement for Netscrap, anyway) - the latest XFree86-4 port does not install a setuid Wrapper or Server, so startx does not what it is supposed to do - the sound for my does not work as it should (maybe a problem in setting the replay frequency - I can't log out of KDE2 : the logout choice in the "K" menu only gives an error message kicker : panelService : :SlotService(-422) kicker : can't find service with slotId -422 Cheers TfH To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 11:11: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 07B9037B4C5 for ; Sun, 5 Nov 2000 11:11:02 -0800 (PST) Received: by puck.firepipe.net (Postfix, from userid 1000) id 9979419DD; Sun, 5 Nov 2000 14:11:01 -0500 (EST) Date: Sun, 5 Nov 2000 14:11:01 -0500 From: Will Andrews To: Maarten de Vries Cc: ports@FreeBSD.org Subject: Re: ScrollZ Message-ID: <20001105141101.A70986@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Maarten de Vries , ports@FreeBSD.org References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from maarten@netraam.com on Sun, Nov 05, 2000 at 07:26:33PM +0100 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Nov 05, 2000 at 07:26:33PM +0100, Maarten de Vries wrote: > I thought you might be interested to know that the version of ScrollZ in > the FreeBSD ports (ports/irc/scrollz), is quite outdated. _I_ would be, since I'm the maintainer for this port. > The ports still carry version 1.8i6, while version 1.8j6 has been released > this summer and is greatly improved. It's available from > . The ScrollZ people do their releases very infrequently and so I only check their page about once every four months. Additionally, their mirroring is very piss-poor. They don't bother to tell _me_ they released a new version so I can put it on the webpage, and have told me in my face that they couldn't really care less. *shrug* But I'll update the port now. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 11:12:50 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 8F8B237B479; Sun, 5 Nov 2000 11:12:47 -0800 (PST) Received: by puck.firepipe.net (Postfix, from userid 1000) id 2946719DD; Sun, 5 Nov 2000 14:12:47 -0500 (EST) Date: Sun, 5 Nov 2000 14:12:47 -0500 From: Will Andrews To: Thierry Herbelot Cc: ports@FreeBSD.ORG, stable@FreeBSD.ORG Subject: Re: KDE2 and some 4.2-Beta remarks Message-ID: <20001105141247.B70986@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Thierry Herbelot , ports@FreeBSD.ORG, stable@FreeBSD.ORG References: <00110520104702.82258@portable.herbelot.nom> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <00110520104702.82258@portable.herbelot.nom>; from tfh9@netcourrier.com on Sun, Nov 05, 2000 at 08:10:47PM +0100 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Nov 05, 2000 at 08:10:47PM +0100, Thierry Herbelot wrote: > - I can't log out of KDE2 : the logout choice in the "K" menu only gives an > error message > kicker : panelService : :SlotService(-422) > kicker : can't find service with slotId -422 Lots of people have reported this problem, including myself. But I have no idea why it happens, and haven't (yet) investigated further. Sorry. Thanks, -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 11:48:24 2000 Delivered-To: freebsd-ports@freebsd.org Received: from prydn.tacni.net (207-55-167-46.dhc.net [207.55.167.46]) by hub.freebsd.org (Postfix) with SMTP id 455E637B4C5 for ; Sun, 5 Nov 2000 11:48:16 -0800 (PST) Received: (qmail 59958 invoked by uid 1001); 5 Nov 2000 19:47:59 -0000 Date: Sun, 5 Nov 2000 13:47:58 -0600 From: Erich Zigler To: freebsd-ports@freebsd.org Subject: itcl/itk Question Message-ID: <20001105134757.A59033@superhero.org> Mail-Followup-To: Erich Zigler , freebsd-ports@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Eric-Conspiracy: There is no conspiracy. X-Shane: Hi Shane! Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Could someone possibly tell me why in /usr/ports/lang/itcl only itcl is built and the rest of the library is left alone? -- Erich Zigler Chief Technology Officer Death is God's way of telling you not to be suck a wise guy. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 11:52: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from peitho.fxp.org (peitho.fxp.org [209.26.95.40]) by hub.freebsd.org (Postfix) with ESMTP id 36E5137B479 for ; Sun, 5 Nov 2000 11:52:03 -0800 (PST) Received: by peitho.fxp.org (Postfix, from userid 1501) id F39F31360E; Sun, 5 Nov 2000 14:51:58 -0500 (EST) Date: Sun, 5 Nov 2000 14:51:58 -0500 From: Chris Faulhaber To: Erich Zigler Cc: freebsd-ports@freebsd.org Subject: Re: itcl/itk Question Message-ID: <20001105145158.A82868@peitho.fxp.org> Mail-Followup-To: Chris Faulhaber , Erich Zigler , freebsd-ports@freebsd.org References: <20001105134757.A59033@superhero.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001105134757.A59033@superhero.org>; from erichz@superhero.org on Sun, Nov 05, 2000 at 01:47:58PM -0600 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Nov 05, 2000 at 01:47:58PM -0600, Erich Zigler wrote: > Could someone possibly tell me why in /usr/ports/lang/itcl only itcl is > built and the rest of the library is left alone? > According to the port's Makefile and pkg-plist, libitcl30.so.1 is installed. If not, you might want to contact the Maintainer. -- Chris D. Faulhaber - jedgar@fxp.org - jedgar@FreeBSD.org -------------------------------------------------------- FreeBSD: The Power To Serve - http://www.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 12:45:18 2000 Delivered-To: freebsd-ports@freebsd.org Received: from web9403.mail.yahoo.com (web9403.mail.yahoo.com [216.136.129.109]) by hub.freebsd.org (Postfix) with SMTP id 22F3337B4CF for ; Sun, 5 Nov 2000 12:45:16 -0800 (PST) Message-ID: <20001105204516.93861.qmail@web9403.mail.yahoo.com> Received: from [203.99.66.4] by web9403.mail.yahoo.com; Sun, 05 Nov 2000 12:45:16 PST Date: Sun, 5 Nov 2000 12:45:16 -0800 (PST) From: Jonathan Chen Subject: PHP, Sybase and FreeTDS To: freebsd-ports@freebsd.org, midom@dammit.lt, dirk@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, Recently tried compiling PHP4 with Sybase support, and discovered that this just did not work. After some hunting around, I traced it down to the databases/freetds compilation option which has: --with-tdsver=7.0 According to the freetds docs, tdsver=4.2 works with M$ SQL Server and Sybase (version < 10); tdsver=5.0 works only with Sybase; tdsver=7.0 only works with M$SQL Server. I tweaked the build option to tdsver=5.0, and PHP functions as expected. Would it be possible to request a change to freetds build so that the port builds 3 versions of the freetds library with the tds-protocol as the suffix (eg libtds4.2, libtds5.0, libtds7.0). The installed include files are common for all the 3 versions of the protocol. This way the PHP port would check for libct5.0 & libtds5.0 during its build. Cheers, Jonathan Chen __________________________________________________ Do You Yahoo!? Thousands of Stores. Millions of Products. All in one Place. http://shopping.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 13: 2:28 2000 Delivered-To: freebsd-ports@freebsd.org Received: from tigerdyr.candid.dk (tigerdyr.candid.dk [193.162.142.120]) by hub.freebsd.org (Postfix) with ESMTP id A8CCB37B4C5 for ; Sun, 5 Nov 2000 13:02:26 -0800 (PST) Received: by tigerdyr.candid.dk (Postfix, from userid 1001) id D5E01988A; Sun, 5 Nov 2000 22:02:25 +0100 (CET) Date: Sun, 5 Nov 2000 22:02:25 +0100 From: =?iso-8859-1?Q?Michael_Lyngb=F8l?= To: Will Andrews Cc: FreeBSD-ports@FreeBSD.ORG Subject: Re: ports/22616: new port of GQmpeg devel Message-ID: <20001105220225.A98322@tigerdyr.candid.dk> References: <200011051019.eA5AJnR52545@bifrost.lyngbol.dk> <20001105140620.C51062@puck.firepipe.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001105140620.C51062@puck.firepipe.net>; from will@physics.purdue.edu on Sun, Nov 05, 2000 at 02:06:20PM -0500 X-Operating-System: FreeBSD/i386 4.1.1-STABLE Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Nov 05, 2000 at 02:06:20PM -0500, Will Andrews wrote: > > >Synopsis: new port of GQmpeg (devel version) > > Is there any decent reason why we can't just merge this into the current > version of gqmpeg we have in the tree? I've always been mistrustful of > what other developers call ``development'' until I see for myself. Not for me. I'd be more than happy to see this as an update of the existing port. I just made it a new port because I don't know opinions about having a 'stable' port updated with a 'devel' version?! /Michael To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 13:59:31 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mailgw1.netvision.net.il (mailgw1.netvision.net.il [194.90.1.14]) by hub.freebsd.org (Postfix) with ESMTP id 4152137B4C5 for ; Sun, 5 Nov 2000 13:59:28 -0800 (PST) Received: from alchemy.oven.org (ras8-p119.hfa.netvision.net.il [62.0.151.119]) by mailgw1.netvision.net.il (8.9.3/8.9.3) with ESMTP id XAA12797 for ; Sun, 5 Nov 2000 23:59:25 +0200 (IST) Received: (from mapc@localhost) by alchemy.oven.org (8.11.1/8.11.1) id eA5Lx5I06056 for freebsd-ports@freebsd.org; Sun, 5 Nov 2000 23:59:05 +0200 (IST) (envelope-from mapc) Date: Sun, 5 Nov 2000 23:59:05 +0200 From: Roman Shterenzon To: freebsd-ports@freebsd.org Subject: [patch] mbone/speak_freely Message-ID: <20001105235905.A6047@alchemy.oven.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, Could someone who uses it test this patch and comment on it? Does anyone use it with ISA SB16 on FreeBSD RELENG_4 ? --Roman Shterenzon, UNIX System Administrator and Consultant [ Xpert UNIX Systems Ltd., Herzlia, Israel. Tel: +972-9-9522361 ] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 14: 1: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mailgw1.netvision.net.il (mailgw1.netvision.net.il [194.90.1.14]) by hub.freebsd.org (Postfix) with ESMTP id E958137B4C5 for ; Sun, 5 Nov 2000 14:01:04 -0800 (PST) Received: from alchemy.oven.org (ras8-p119.hfa.netvision.net.il [62.0.151.119]) by mailgw1.netvision.net.il (8.9.3/8.9.3) with ESMTP id AAA13063 for ; Mon, 6 Nov 2000 00:01:02 +0200 (IST) Received: (from mapc@localhost) by alchemy.oven.org (8.11.1/8.11.1) id eA5M0iG06085 for freebsd-ports@freebsd.org; Mon, 6 Nov 2000 00:00:44 +0200 (IST) (envelope-from mapc) Date: Mon, 6 Nov 2000 00:00:44 +0200 From: Roman Shterenzon To: freebsd-ports@freebsd.org Subject: [patch] mbone/speak_freely..oops..forgot the patch Message-ID: <20001106000044.A6070@alchemy.oven.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="EeQfGwPcQSOJBaQU" Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --EeQfGwPcQSOJBaQU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Here's the patch --Roman Shterenzon, UNIX System Administrator and Consultant [ Xpert UNIX Systems Ltd., Herzlia, Israel. Tel: +972-9-9522361 ] --EeQfGwPcQSOJBaQU Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="speak_freely.diff" diff -ur /usr/ports/mbone/speak_freely/Makefile speak_freely/Makefile --- /usr/ports/mbone/speak_freely/Makefile Fri Jun 2 02:42:51 2000 +++ speak_freely/Makefile Sun Nov 5 23:51:23 2000 @@ -6,7 +6,7 @@ # PORTNAME= speak_freely -PORTVERSION= 7.1 +PORTVERSION= 7.2 CATEGORIES= mbone audio security MASTER_SITES= http://www.fourmilab.ch/speakfree/unix/ @@ -20,6 +20,14 @@ SFLIB= ${PREFIX}/lib/speak_freely MAN1= ${UTILS:S/$/.1/} ${DEMNS:S/$/.1/} ${DDEMNS:S/$/.1/} +.include + +CFLAGS+=-DAUDIO_BLOCKING + +.if ${OSVERSION} < 400012 +CFLAGS+=-DHALF_DUPLEX +.endif + MAKE_ENV="OPTFLAGS=${CFLAGS}" do-install: @@ -44,4 +52,4 @@ $(INSTALL_MAN) $$p.1 ${PREFIX}/man/man1; \ done; -.include +.include diff -ur /usr/ports/mbone/speak_freely/distinfo speak_freely/distinfo --- /usr/ports/mbone/speak_freely/distinfo Sat Jan 1 00:40:26 2000 +++ speak_freely/distinfo Fri Oct 6 02:25:35 2000 @@ -1 +1 @@ -MD5 (speak_freely-7.1.tar.gz) = f06e4115c7139f7e30ea57064b324558 +MD5 (speak_freely-7.2.tar.gz) = 1fe80725e252270ea4170ebc20e2a059 diff -ur /usr/ports/mbone/speak_freely/files/patch-aa speak_freely/files/patch-aa --- /usr/ports/mbone/speak_freely/files/patch-aa Fri Jan 14 20:36:35 2000 +++ speak_freely/files/patch-aa Fri Oct 6 02:23:14 2000 @@ -28,7 +28,7 @@ # CCFLAGS line. -#CCFLAGS = -DM_LITTLE_ENDIAN -#LFLAGS = -lcurses -ltermcap -lcompat -lm -+CCFLAGS = -DM_LITTLE_ENDIAN -DHALF_DUPLEX ++CCFLAGS = -DM_LITTLE_ENDIAN +LFLAGS = -lcurses -ltermcap -lcompat -lm # Hewlett-Packard @@ -47,7 +47,7 @@ sfspeaker: $(SPKROBJS) adpcmlib.o libblowfish.o lpclib.o lpc10lib.o gsmlib.o deslib.o md5lib.o idealib.o libdes.o xdsub.o - $(CC) $(SPKROBJS) adpcm/adpcm-u.o blowfish/libblowfish.a des/des.a md5/md5.o idea/idea.a lpc10/liblpc10.a gsm/lib/libgsm.a lpc/lpc.o xdsub.o libdes/libdes.a $(LFLAGS) -o sfspeaker -+ $(CC) $(SPKROBJS) adpcm/adpcm-u.o blowfish/libblowfish.a des/des.a -lmd idea/idea.a lpc10/liblpc10.a -L/usr/local/lib -lgsm lpc/lpc.o xdsub.o libdes/libdes.a $(LFLAGS) -o sfspeaker ++ $(CC) $(SPKROBJS) adpcm/adpcm-u.o blowfish/libblowfish.a des/des.a -lmd idea/idea.a lpc10/liblpc10.a -L$(PREFIX)/lib -lgsm lpc/lpc.o xdsub.o libdes/libdes.a $(LFLAGS) -o sfspeaker MIKEOBJS = mike.o codecs.o deskey.o g711.o rate.o rtpacket.o soundbyte.o ulaw.o usleep.o vatpkt.o xdsub.o audio_hp.o audio_sgi.o --EeQfGwPcQSOJBaQU-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 16:27: 0 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ringworld.oblivion.bg (ringworld.nanolink.com [195.24.48.13]) by hub.freebsd.org (Postfix) with SMTP id 4748437B4CF for ; Sun, 5 Nov 2000 16:26:58 -0800 (PST) Received: (qmail 35860 invoked by uid 1000); 6 Nov 2000 00:26:43 -0000 Date: Mon, 6 Nov 2000 02:26:43 +0200 From: Peter Pentchev To: ports@freebsd.org Subject: author of games/xemeraldia? Message-ID: <20001106022643.A35128@ringworld.oblivion.bg> Mail-Followup-To: ports@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Is games/xemeraldia still being actively developed? I've been thinking about a few additions, like a multiple-entry high-score file. Neither the Makefile, nor pkg-descr, nor any of the comments in the code give an URL or an e-mail address; and I did not understand much of the SJIS README and changelog :) G'luck, Peter -- This sentence contains exactly threee erors. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 16:40: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A19E137B4D7 for ; Sun, 5 Nov 2000 16:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA74882; Sun, 5 Nov 2000 16:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id CE0FA37B6B7; Sun, 5 Nov 2000 16:37:12 -0800 (PST) Message-Id: <20001106003712.CE0FA37B6B7@hub.freebsd.org> Date: Sun, 5 Nov 2000 16:37:12 -0800 (PST) From: takashi@ueda.info.waseda.ac.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/22628: port x11-wm/amaterus/distinfo is old Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22628 >Category: ports >Synopsis: port x11-wm/amaterus/distinfo is old >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Nov 05 16:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Nishimura Takashi >Release: 3.5-RELEASE >Organization: Ueda lab., Waseda Univ. >Environment: FreeBSD gardian.folon.ueda.info.waseda.ac.jp 3.5-RELEASE FreeBSD 3.5-RELEASE #0: Mon Jul 10 17:37:27 JST 2000 takashi@bougon.folon.ueda.info.waseda.ac.jp:/usr/src/sys/compile/FOLONII-DUAL i386 >Description: Makefile of port x11-wm/amaterus is version 0.33.2, but its distinfo is for version 0.32.9, which is 2 months old. This cause the port not to build. >How-To-Repeat: # cd /usr/ports/x11-wm/amaterus/; make >Fix: >Release-Note: >Audit-Trail: >Unformatted: >> amaterus-0.33.2.tar.gz is not in /a/feta/local3/ports/x11-wm/amaterus/distinfo. >> Either /a/feta/local3/ports/x11-wm/amaterus/distinfo is out of date, or >> amaterus-0.33.2.tar.gz is spelled incorrectly. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 16:40: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 213C237B479 for ; Sun, 5 Nov 2000 16:40:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA74890; Sun, 5 Nov 2000 16:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Sun, 5 Nov 2000 16:40:03 -0800 (PST) Message-Id: <200011060040.QAA74890@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Jeremy Norris Subject: Re: ports/22336: New port: scrot-0.1 Reply-To: Jeremy Norris Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/22336; it has been noted by GNATS. From: Jeremy Norris To: FreeBSD-gnats-submit@FreeBSD.org Cc: ishmael27@home.com Subject: Re: ports/22336: New port: scrot-0.1 Date: Sun, 5 Nov 2000 18:40:24 -0600 Here is a new shar of the port, now updated to version 0.4 # 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: # # scrot # scrot/files # scrot/files/patch-aa # scrot/files/patch-ab # scrot/Makefile # scrot/pkg-comment # scrot/pkg-descr # scrot/pkg-plist # scrot/distinfo # echo c - scrot mkdir -p scrot > /dev/null 2>&1 echo c - scrot/files mkdir -p scrot/files > /dev/null 2>&1 echo x - scrot/files/patch-aa sed 's/^X//' >scrot/files/patch-aa << 'END-of-scrot/files/patch-aa' X--- Makefile.in.orig Thu Oct 26 10:25:54 2000 X+++ Makefile.in Thu Oct 26 23:55:44 2000 X@@ -76,7 +76,7 @@ X man_MANS = scrot.1 X X docs_DATA = README AUTHORS ChangeLog TODO X-docsdir = $(prefix)/doc/scrot X+docsdir = $(datadir)/doc/scrot X X EXTRA_DIST = scrot.spec scrot.1 $(docs_DATA) X END-of-scrot/files/patch-aa echo x - scrot/files/patch-ab sed 's/^X//' >scrot/files/patch-ab << 'END-of-scrot/files/patch-ab' X--- src/Makefile.in.orig Sat Oct 28 19:44:50 2000 X+++ src/Makefile.in Sun Oct 29 17:22:38 2000 X@@ -70,7 +70,7 @@ X MAINTAINERCLEANFILES = Makefile.in X X LDFLAGS = -L/usr/X11R6/lib X-INCLUDES = -g -O3 -Wall -I/usr/X11R6/include $(X_CFLAGS) -I$(prefix)/include -I$(includedir) -I. -DPREFIX=\""$(prefix)"\" @IMLIB_CFLAGS@ X+INCLUDES = -Wall -I/usr/X11R6/include $(X_CFLAGS) -I$(prefix)/include -I$(includedir) -I. -DPREFIX=\""$(prefix)"\" @IMLIB_CFLAGS@ X X LIBOBJS = @LIBOBJS@ X END-of-scrot/files/patch-ab echo x - scrot/Makefile sed 's/^X//' >scrot/Makefile << 'END-of-scrot/Makefile' X# New ports collection makefile for: scrot X# Date created: 27 Oct 2000 X# Whom: Jeremy Norris X# X# $FreeBSD$ X# X XPORTNAME= scrot XPORTVERSION= 0.4 XCATEGORIES= graphics XMASTER_SITES= http://www.linuxbrit.co.uk/downloads/ X XMAINTAINER= ishmael27@home.com X XLIB_DEPENDS= Imlib2.1:${PORTSDIR}/graphics/imlib2 X XGNU_CONFIGURE= yes XUSE_X_PREFIX= yes X XMAN1= scrot.1 X X.include END-of-scrot/Makefile echo x - scrot/pkg-comment sed 's/^X//' >scrot/pkg-comment << 'END-of-scrot/pkg-comment' XA screen capture utility that utilizes Imlib2 END-of-scrot/pkg-comment echo x - scrot/pkg-descr sed 's/^X//' >scrot/pkg-descr << 'END-of-scrot/pkg-descr' XA screen capture utility that utilizes Imlib2. X XWWW: http://www.linuxbrit.co.uk/scrot/ END-of-scrot/pkg-descr echo x - scrot/pkg-plist sed 's/^X//' >scrot/pkg-plist << 'END-of-scrot/pkg-plist' Xbin/scrot Xshare/doc/scrot/AUTHORS Xshare/doc/scrot/ChangeLog Xshare/doc/scrot/README Xshare/doc/scrot/TODO X@dirrm share/doc/scrot END-of-scrot/pkg-plist echo x - scrot/distinfo sed 's/^X//' >scrot/distinfo << 'END-of-scrot/distinfo' XMD5 (scrot-0.4.tar.gz) = a50cb44e190902f28f54e013a2dc16be END-of-scrot/distinfo exit To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 16:50: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E344037B4D7 for ; Sun, 5 Nov 2000 16:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA75774; Sun, 5 Nov 2000 16:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from babylon.merseine.nu (c418236-a.clmba1.mo.home.com [24.12.203.134]) by hub.freebsd.org (Postfix) with ESMTP id C3F0B37B4D7 for ; Sun, 5 Nov 2000 16:46:00 -0800 (PST) Received: (from ishmael@localhost) by babylon.merseine.nu (8.11.1/8.11.1) id eA60kuR01676; Sun, 5 Nov 2000 18:46:56 -0600 (CST) (envelope-from ishmael) Message-Id: <200011060046.eA60kuR01676@babylon.merseine.nu> Date: Sun, 5 Nov 2000 18:46:56 -0600 (CST) From: ishmael27@home.com Reply-To: ishmael27@home.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22629: Changes and maintance of graphics/imlib2-tmp Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22629 >Category: ports >Synopsis: Changes and maintance of graphics/imlib2-tmp >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Nov 05 16:50:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jeremy Norris >Release: FreeBSD 4.1.1-STABLE i386 >Organization: >Environment: FreeBSD babylon.merseine.nu 4.1.1-STABLE i386 >Description: This update changes MASTER_SITES to more readily available MASTER_SITE_SOURCEFORGE, adds patch-aa, which cleans up the imlib2-config script installed. Also, I'm assuing MAINTAINER-ship of this port (which I originally created/submitted). >How-To-Repeat: >Fix: diff -urN ../cvs/imlib2-tmp/Makefile ./Makefile --- ../cvs/imlib2-tmp/Makefile Fri Nov 3 02:18:07 2000 +++ ./Makefile Sun Nov 5 18:19:16 2000 @@ -1,17 +1,17 @@ # New ports collection makefile for: imlib2 # Date created: 16 Oct 2000 -# Whom: >Jeremy Norris +# Whom: Jeremy Norris # # $FreeBSD: ports/graphics/imlib2-tmp/Makefile,v 1.70 2000/11/03 08:18:07 nakai Exp $ # PORTNAME= imlib2 PORTVERSION= 1.0.0 CATEGORIES= graphics -MASTER_SITES= ftp://ftp.enlightenment.org/pub/enlightenment/e17/libs/ \ - http://www.us.rasterman.com/files/ +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= enlightenment -MAINTAINER= ports@FreeBSD.ORG +MAINTAINER= ishmael27@home.com LIB_DEPENDS= png.4:${PORTSDIR}/graphics/png \ tiff.4:${PORTSDIR}/graphics/tiff \ @@ -32,8 +32,16 @@ CONFIGURE_ARGS= --enable-mmx .endif +post-configure: + @${PERL} -pi -e 's|\@localbase\@|${LOCALBASE}|g' ${WRKSRC}/imlib2-config + post-install: - strip ${PREFIX}/lib/libImlib2.so.1 - strip ${PREFIX}/lib/loaders/filter/* - strip ${PREFIX}/lib/loaders/image/* + @strip ${PREFIX}/lib/libImlib2.so.1 +.for i in bump_map colormod testfilter + @strip ${PREFIX}/lib/loaders/filter/${i}.so +.endfor +.for i in argb bmp db gif jpeg png pnm tga tiff xpm + @strip ${PREFIX}/lib/loaders/image/${i}.so +.endfor + .include diff -urN ../cvs/imlib2-tmp/files/patch-aa ./files/patch-aa --- ../cvs/imlib2-tmp/files/patch-aa Wed Dec 31 18:00:00 1969 +++ ./files/patch-aa Sun Oct 29 21:38:22 2000 @@ -0,0 +1,11 @@ +--- imlib2-config.in.orig Tue Aug 22 16:38:40 2000 ++++ imlib2-config.in Sun Oct 29 21:38:09 2000 +@@ -45,7 +45,7 @@ + echo $includes @x_cflags@ + ;; + --libs) +- libdirs=-L@libdir@ ++ libdirs="-L@libdir@ -L@localbase@/lib" + echo $libdirs -lImlib2 -lttf -lm @dlopen_libs@ @x_ldflags@ @x_libs@ + ;; + *) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 16:59:45 2000 Delivered-To: freebsd-ports@freebsd.org Received: from area51.slashnet.org (area51.slashnet.org [208.222.214.95]) by hub.freebsd.org (Postfix) with ESMTP id 3067937B4CF; Sun, 5 Nov 2000 16:59:43 -0800 (PST) Received: from edgemaster.zombie.org (edgemaster.creighton.edu [147.134.107.69]) by area51.slashnet.org (Postfix) with ESMTP id 18C8B14D436; Sun, 5 Nov 2000 19:59:29 -0500 (EST) Received: by edgemaster.zombie.org (Postfix, from userid 1001) id 662B798F2; Sun, 5 Nov 2000 18:59:21 -0600 (CST) Date: Sun, 5 Nov 2000 18:59:21 -0600 From: Sean Kelly To: ache@FreeBSD.org Cc: gsutter@zer0.org, freebsd-ports@freebsd.org Subject: Re: ports/22444: screen segfault Message-ID: <20001105185921.A57472@edgemaster.zombie.org> References: <20001031182149.AF25798A4@edgemaster.zombie.org> <20001031140837.B8380@klapaucius.zer0.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001031140837.B8380@klapaucius.zer0.org>; from gsutter@zer0.org on Tue, Oct 31, 2000 at 02:08:37PM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Oct 31, 2000 at 02:08:37PM -0800, Gregory Sutter wrote: > On 2000-10-31 12:21 -0600, smkelly@zombie.org wrote: > > > > >Number: 22444 > > >Category: ports > > >Synopsis: The 'screen' port has reproducable segfaults > > > > screen-3.9.8_3 > > > > FreeBSD edgemaster.zombie.org 4.1.1-STABLE FreeBSD 4.1.1-STABLE #0: Tue Oct 24 0 > > 0:37:00 CDT 2000 smkelly@edgemaster.zombie.org:/usr/obj/usr/src/sys/EDGEMAST > > ER i386 > > > > >Description: > > > > Under reproducable (though not well understood) and some unknonw conditions > > screen will crash with signal 11. > > > > >How-To-Repeat: > > > > If I start the mutt MUA from within screen, screen will always segfault when > > I open my mail folders. I assume it has something to do with the appearance > > of my screen at the time, but I am not sure. I have also seen screen crash > > due to the EPIC IRC client. The actual condition it crashes under is unknown > > to me. > > I have reason to believe that this is a problem with screen and the > new ncurses that was imported to -STABLE. However, since none of my > computers have a -STABLE from after the ncurses import, I cannot test > my assertion. I would consider 'screen' to be one of the most basic applications of my working environment. Having it be broken is very difficult to work around. Is there any plan to fix the port or ncruses, or am I going to be forced to build a static screen on an older FreeBSD system? -- Sean Kelly or PGP KeyID: 4AC781C7 http://www.sean-kelly.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 17: 0: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 60DD337B4D7 for ; Sun, 5 Nov 2000 17:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA76726; Sun, 5 Nov 2000 17:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from babylon.merseine.nu (c418236-a.clmba1.mo.home.com [24.12.203.134]) by hub.freebsd.org (Postfix) with ESMTP id EB77837B4C5 for ; Sun, 5 Nov 2000 16:50:55 -0800 (PST) Received: (from ishmael@localhost) by babylon.merseine.nu (8.11.1/8.11.1) id eA60ppk01813; Sun, 5 Nov 2000 18:51:51 -0600 (CST) (envelope-from ishmael) Message-Id: <200011060051.eA60ppk01813@babylon.merseine.nu> Date: Sun, 5 Nov 2000 18:51:51 -0600 (CST) From: ishmael27@home.com Reply-To: ishmael27@home.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22630: Minor change to graphics/evas + assume maintance Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22630 >Category: ports >Synopsis: Minor change to graphics/evas + assume maintance >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Nov 05 17:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jeremy Norris >Release: FreeBSD 4.1.1-STABLE i386 >Organization: >Environment: FreeBSD babylon.merseine.nu 4.1.1-STABLE i386 >Description: This patch makes the minor change of quieting the output of the post-install target and changes the MASTER_SITES to MASTER_SITE_SOURCEFORGE. Also assume MAINTAINER-ship of this port (which I originally created/submitted). >How-To-Repeat: >Fix: diff -urN ../cvs/evas/Makefile ./Makefile --- ../cvs/evas/Makefile Fri Nov 3 06:24:18 2000 +++ ./Makefile Sun Nov 5 18:23:51 2000 @@ -2,15 +2,16 @@ # Date created: 24 Oct 2000 # Whom: Jeremy Norris # # $FreeBSD: ports/graphics/evas/Makefile,v 1.1 2000/11/03 12:24:18 nakai Exp $ # PORTNAME= evas PORTVERSION= 0.0.1 CATEGORIES= graphics -MASTER_SITES= http://download.sourceforge.net/enlightenment/ +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= enlightenment -MAINTAINER= ports@FreeBSD.ORG +MAINTAINER= ishmael27@home.com LIB_DEPENDS= Imlib2.1:${PORTSDIR}/graphics/imlib2-tmp @@ -23,6 +24,6 @@ LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib" post-install: - strip ${PREFIX}/lib/libevas.so.0 + @strip ${PREFIX}/lib/libevas.so.0 .include >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 17: 0:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 78EA737B4F9 for ; Sun, 5 Nov 2000 17:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA76735; Sun, 5 Nov 2000 17:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from babylon.merseine.nu (c418236-a.clmba1.mo.home.com [24.12.203.134]) by hub.freebsd.org (Postfix) with ESMTP id 61B6E37B479 for ; Sun, 5 Nov 2000 16:54:30 -0800 (PST) Received: (from ishmael@localhost) by babylon.merseine.nu (8.11.1/8.11.1) id eA60tQN01934; Sun, 5 Nov 2000 18:55:26 -0600 (CST) (envelope-from ishmael) Message-Id: <200011060055.eA60tQN01934@babylon.merseine.nu> Date: Sun, 5 Nov 2000 18:55:26 -0600 (CST) From: ishmael27@home.com Reply-To: ishmael27@home.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22631: Assume maintance of graphics/feh Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22631 >Category: ports >Synopsis: Assume maintance of graphics/feh >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Nov 05 17:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jeremy Norris >Release: FreeBSD 4.1.1-STABLE i386 >Organization: >Environment: FreeBSD babylon.merseine.nu 4.1.1-STABLE i386 >Description: Assume MAINTAINER-ship of graphics/feh (which I originally created/submitted). >How-To-Repeat: >Fix: diff -urN ../cvs/feh/Makefile ./Makefile --- ../cvs/feh/Makefile Fri Nov 3 02:21:35 2000 +++ ./Makefile Sat Nov 4 16:48:48 2000 @@ -10,7 +10,7 @@ CATEGORIES= graphics MASTER_SITES= http://www.linuxbrit.co.uk/downloads/ -MAINTAINER= ports@FreeBSD.ORG +MAINTAINER= ishmael27@home.com LIB_DEPENDS= Imlib2.1:${PORTSDIR}/graphics/imlib2-tmp >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 17:10: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2B4FA37B479 for ; Sun, 5 Nov 2000 17:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA79208; Sun, 5 Nov 2000 17:10:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Sun, 5 Nov 2000 17:10:03 -0800 (PST) Message-Id: <200011060110.RAA79208@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Jeremy Norris Subject: Re: ports/22629: Changes and maintance of graphics/imlib2-tmp Reply-To: Jeremy Norris Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/22629; it has been noted by GNATS. From: Jeremy Norris To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/22629: Changes and maintance of graphics/imlib2-tmp Date: Sun, 5 Nov 2000 19:00:58 -0600 Forgot to bump PORTREVISION. Here's a revised patch. diff -urN ../cvs/imlib2-tmp/Makefile ./Makefile --- ../cvs/imlib2-tmp/Makefile Fri Nov 3 02:18:07 2000 +++ ./Makefile Sun Nov 5 18:19:16 2000 @@ -1,17 +1,18 @@ # New ports collection makefile for: imlib2 # Date created: 16 Oct 2000 -# Whom: >Jeremy Norris +# Whom: Jeremy Norris # # $FreeBSD: ports/graphics/imlib2-tmp/Makefile,v 1.70 2000/11/03 08:18:07 nakai Exp $ # PORTNAME= imlib2 PORTVERSION= 1.0.0 +PORTREVISION= 1 CATEGORIES= graphics -MASTER_SITES= ftp://ftp.enlightenment.org/pub/enlightenment/e17/libs/ \ - http://www.us.rasterman.com/files/ +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= enlightenment -MAINTAINER= ports@FreeBSD.ORG +MAINTAINER= ishmael27@home.com LIB_DEPENDS= png.4:${PORTSDIR}/graphics/png \ tiff.4:${PORTSDIR}/graphics/tiff \ @@ -32,8 +32,16 @@ CONFIGURE_ARGS= --enable-mmx .endif +post-configure: + @${PERL} -pi -e 's|\@localbase\@|${LOCALBASE}|g' ${WRKSRC}/imlib2-config + post-install: - strip ${PREFIX}/lib/libImlib2.so.1 - strip ${PREFIX}/lib/loaders/filter/* - strip ${PREFIX}/lib/loaders/image/* + @strip ${PREFIX}/lib/libImlib2.so.1 +.for i in bump_map colormod testfilter + @strip ${PREFIX}/lib/loaders/filter/${i}.so +.endfor +.for i in argb bmp db gif jpeg png pnm tga tiff xpm + @strip ${PREFIX}/lib/loaders/image/${i}.so +.endfor + .include diff -urN ../cvs/imlib2-tmp/files/patch-aa ./files/patch-aa --- ../cvs/imlib2-tmp/files/patch-aa Wed Dec 31 18:00:00 1969 +++ ./files/patch-aa Sun Oct 29 21:38:22 2000 @@ -0,0 +1,11 @@ +--- imlib2-config.in.orig Tue Aug 22 16:38:40 2000 ++++ imlib2-config.in Sun Oct 29 21:38:09 2000 +@@ -45,7 +45,7 @@ + echo $includes @x_cflags@ + ;; + --libs) +- libdirs=-L@libdir@ ++ libdirs="-L@libdir@ -L@localbase@/lib" + echo $libdirs -lImlib2 -lttf -lm @dlopen_libs@ @x_ldflags@ @x_libs@ + ;; + *) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 17:10: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 94DCF37B4CF for ; Sun, 5 Nov 2000 17:10:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA79214; Sun, 5 Nov 2000 17:10:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Sun, 5 Nov 2000 17:10:04 -0800 (PST) Message-Id: <200011060110.RAA79214@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Jeremy Norris Subject: Re: ports/22334: New port: geist-0.0.3 Reply-To: Jeremy Norris Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/22334; it has been noted by GNATS. From: Jeremy Norris To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/22334: New port: geist-0.0.3 Date: Sun, 5 Nov 2000 19:07:23 -0600 Patch assuming MAINTAINER-ship: --- Makefile.orig Sun Nov 5 19:07:02 2000 +++ Makefile Sun Nov 5 19:06:43 2000 @@ -10,9 +10,9 @@ CATEGORIES= graphics MASTER_SITES= http://www.linuxbrit.co.uk/downloads/ -MAINTAINER= ports@FreeBSD.ORG +MAINTAINER= ishmael27@home.com -LIB_DEPENDS= Imlib2.1:${PORTSDIR}/graphics/imlib2 \ +LIB_DEPENDS= Imlib2.1:${PORTSDIR}/graphics/imlib2-tmp \ xml.5:${PORTSDIR}/textproc/libxml2 GNU_CONFIGURE= yes To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 18: 0: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3053B37B4C5 for ; Sun, 5 Nov 2000 18:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA84405; Sun, 5 Nov 2000 18:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from lafontaine.cybercable.fr (lafontaine.cybercable.fr [212.198.0.202]) by hub.freebsd.org (Postfix) with SMTP id 3667037B4C5 for ; Sun, 5 Nov 2000 17:59:16 -0800 (PST) Received: (qmail 2740928 invoked from network); 6 Nov 2000 01:59:14 -0000 Received: from s011.dhcp212-229.cybercable.fr (HELO gits.dyndns.org) ([212.198.229.11]) (envelope-sender ) by lafontaine.cybercable.fr (qmail-ldap-1.03) with SMTP for ; 6 Nov 2000 01:59:14 -0000 Received: (from root@localhost) by gits.dyndns.org (8.11.0/8.11.0) id eA61xEN18551; Mon, 6 Nov 2000 02:59:14 +0100 (CET) (envelope-from root) Message-Id: <200011060159.eA61xEN18551@gits.dyndns.org> Date: Mon, 6 Nov 2000 02:59:14 +0100 (CET) From: Cyrille Lefevre Reply-To: clefevre@citeweb.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22632: New port: textproc/gsed - 3.02 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22632 >Category: ports >Synopsis: New port: textproc/gsed - 3.02 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Nov 05 18:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Cyrille Lefevre >Release: FreeBSD 4.1-STABLE i386 >Organization: ACME >Environment: FreeBSD gits 4.1-STABLE FreeBSD 4.1-STABLE #3: Sat Sep 23 10:20:30 CEST 2000 root@gits:/disk2/4.0-stable/src/sys/compile/CUSTOM i386 >Description: The Free Software Foundation's "sed" stream editor. >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: # # gsed # gsed/pkg-comment # gsed/Makefile # gsed/pkg-plist # gsed/distinfo # gsed/pkg-descr # echo c - gsed mkdir -p gsed > /dev/null 2>&1 echo x - gsed/pkg-comment sed 's/^X//' >gsed/pkg-comment << 'END-of-gsed/pkg-comment' XThe GNU stream editor END-of-gsed/pkg-comment echo x - gsed/Makefile sed 's/^X//' >gsed/Makefile << 'END-of-gsed/Makefile' X# New ports collection makefile for: sed X# Date created: 12 October 2000 X# Whom: Cyrille Lefevre X# X# $FreeBSD$ X# X XPORTNAME= sed XPORTVERSION= 3.02 XCATEGORIES= textproc XMASTER_SITES= ${MASTER_SITE_GNU} XMASTER_SITE_SUBDIR= sed X XMAINTAINER= ports@freebsd.org X XY2K= http://www.gnu.org/software/year2000.html X XGNU_CONFIGURE= yes X X# sed's configure seems to be buggy ! X# CONFIGURE_ARGS= --program-prefix=g X XMAN1= gsed.1 X Xpost-configure: X @${PERL} -pi.fbsd -e 's/s,x,x,/s,^,g,/' \ X ${WRKSRC}/Makefile \ X ${WRKSRC}/doc/Makefile \ X ${WRKSRC}/lib/Makefile \ X ${WRKSRC}/sed/Makefile X Xpost-install: share-examples X @install-info ${PREFIX}/info/sed.info ${PREFIX}/info/dir X Xshare-examples: X @${MKDIR} ${PREFIX}/share/examples/gsed X @${INSTALL_DATA} ${WRKSRC}/dc.sed ${PREFIX}/share/examples/gsed X X.include END-of-gsed/Makefile echo x - gsed/pkg-plist sed 's/^X//' >gsed/pkg-plist << 'END-of-gsed/pkg-plist' Xbin/gsed Xshare/examples/gsed/dc.sed X@unexec install-info --delete %D/info/sed.info %D/info/dir Xinfo/sed.info X@exec install-info %D/info/sed.info %D/info/dir END-of-gsed/pkg-plist echo x - gsed/distinfo sed 's/^X//' >gsed/distinfo << 'END-of-gsed/distinfo' XMD5 (sed-3.02.tar.gz) = 74db866f052b47fa8ec1c2b8f967bc69 END-of-gsed/distinfo echo x - gsed/pkg-descr sed 's/^X//' >gsed/pkg-descr << 'END-of-gsed/pkg-descr' XThe Free Software Foundation's "sed" stream editor. X XThis utility exist in the FreeBSD base collection, but the GNU Xversions have added functionality that is sometimes useful. X XNote that this port will install this utility with a `g' prefix, Xeg., gsed, but the texinfo documentation will refer to these Xutilities without the `g' prefix. X XWWW: http://www.gnu.org/software/sed/sed.html END-of-gsed/pkg-descr exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 19:25:20 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BF4B837B4C5; Sun, 5 Nov 2000 19:25:18 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA97420; Sun, 5 Nov 2000 19:25:18 -0800 (PST) (envelope-from dougb@FreeBSD.org) Date: Sun, 5 Nov 2000 19:25:18 -0800 (PST) From: Message-Id: <200011060325.TAA97420@freefall.freebsd.org> To: dougb@FreeBSD.org, freebsd-ports@FreeBSD.org, nakai@FreeBSD.org Subject: Re: ports/22628: port x11-wm/amaterus/distinfo is old Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: port x11-wm/amaterus/distinfo is old Responsible-Changed-From-To: freebsd-ports->nakai Responsible-Changed-By: dougb Responsible-Changed-When: Sun Nov 5 19:24:46 PST 2000 Responsible-Changed-Why: nakai is maintainer of the amaterus port http://www.freebsd.org/cgi/query-pr.cgi?pr=22628 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 5 23:48: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7308B37B4D7; Sun, 5 Nov 2000 23:48:05 -0800 (PST) Received: (from keith@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA32960; Sun, 5 Nov 2000 23:48:05 -0800 (PST) (envelope-from keith@FreeBSD.org) Date: Sun, 5 Nov 2000 23:48:05 -0800 (PST) From: Message-Id: <200011060748.XAA32960@freefall.freebsd.org> To: keith@freebsd.sinica.edu.tw, keith@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22340: New port: mmix, a RISC computer designed by D.E. Knuth Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: mmix, a RISC computer designed by D.E. Knuth State-Changed-From-To: open->closed State-Changed-By: keith State-Changed-When: Sun Nov 5 23:47:14 PST 2000 State-Changed-Why: Committed, thanks to Knuth. :-) http://www.freebsd.org/cgi/query-pr.cgi?pr=22340 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 0:17:31 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EE9A837B4D7; Mon, 6 Nov 2000 00:17:29 -0800 (PST) Received: (from dirk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA38536; Mon, 6 Nov 2000 00:17:29 -0800 (PST) (envelope-from dirk@FreeBSD.org) Date: Mon, 6 Nov 2000 00:17:29 -0800 (PST) From: Message-Id: <200011060817.AAA38536@freefall.freebsd.org> To: dirk@FreeBSD.org, sheldonh@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22288: mod_perl dependancy missing from p5-HTML-Mason Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: mod_perl dependancy missing from p5-HTML-Mason Responsible-Changed-From-To: sheldonh->freebsd-ports Responsible-Changed-By: dirk Responsible-Changed-When: Mon Nov 6 00:16:02 PST 2000 Responsible-Changed-Why: Sheldon maintains mod_perl port not p5-HTML-Mason. And it's p5-HTML-Mason having a problem. Sorry... http://www.freebsd.org/cgi/query-pr.cgi?pr=22288 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 1:30: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 79C4237B4E5 for ; Mon, 6 Nov 2000 01:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA48527; Mon, 6 Nov 2000 01:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from fling.sanbi.ac.za (fling.sanbi.ac.za [196.38.142.119]) by hub.freebsd.org (Postfix) with ESMTP id C9F8437B4CF for ; Mon, 6 Nov 2000 01:25:15 -0800 (PST) Received: from johann by fling.sanbi.ac.za with local (Exim 3.13 #4) id 13siWQ-000Dk3-00 for FreeBSD-gnats-submit@freebsd.org; Mon, 06 Nov 2000 11:24:58 +0200 Message-Id: Date: Mon, 06 Nov 2000 11:24:58 +0200 From: johann@egenetics.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22636: Port fix: devel/fnorb (maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22636 >Category: ports >Synopsis: Port fix: devel/fnorb (maintainer) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Nov 06 01:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Johann Visagie >Release: FreeBSD 3.5-STABLE i386 >Organization: Electric Genetics >Environment: >Description: - Added patch to enable Fnorb to work with Python 2.0 (and which doesn't break Fnorb with Python 1.5.2) - Submitted by: Mike Meyer (mwm@mired.org) - Caveat: There may be further Python 2.0 incompatibilities in Fnorb. The next release of Fnorb should be 2.0-compatible. - File added: files/patch-aa >How-To-Repeat: >Fix: diff -ruN fnorb.bak/Makefile fnorb/Makefile --- fnorb.bak/Makefile Mon Nov 6 11:20:47 2000 +++ fnorb/Makefile Mon Nov 6 11:20:33 2000 @@ -7,7 +7,7 @@ PORTNAME= fnorb PORTVERSION= 1.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel python MASTER_SITES= http://www.fnorb.org/download/ \ ftp://ftp.dstc.edu.au/DSTC/fnorb/ diff -ruN fnorb.bak/files/patch-aa fnorb/files/patch-aa --- fnorb.bak/files/patch-aa Thu Jan 1 02:00:00 1970 +++ fnorb/files/patch-aa Mon Nov 6 11:16:29 2000 @@ -0,0 +1,20 @@ +Allow the port to work with Python 2.0. This should be fixed in the next +release of Fnorb. (Caveat: There may be more broken calls to +socket.connect.) + +Thanks to Mike Meyer for submitting this. + +-- Johann + + +--- ../orb/IIOPConnection.py.orig Mon Apr 3 16:08:34 2000 ++++ ../orb/IIOPConnection.py Mon Nov 6 11:12:49 2000 +@@ -88,7 +88,7 @@ + # Create a socket and connect to the remote object. + try: + self.__socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) +- self.__socket.connect(host, port) ++ self.__socket.connect((host, port)) + + # Set the socket by default to NON-blocking mode. + self.__socket.setblocking(0) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 2: 2:55 2000 Delivered-To: freebsd-ports@freebsd.org Received: from smtp6.mindspring.com (smtp6.mindspring.com [207.69.200.110]) by hub.freebsd.org (Postfix) with ESMTP id 621F537B4F9; Mon, 6 Nov 2000 02:02:42 -0800 (PST) Received: from silvia.hip.berkeley.edu (sji-ca7-217.ix.netcom.com [209.109.235.217]) by smtp6.mindspring.com (8.9.3/8.8.5) with ESMTP id FAA09192; Mon, 6 Nov 2000 05:02:32 -0500 (EST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.1/8.11.0) id eA6A0v761861; Mon, 6 Nov 2000 02:00:57 -0800 (PST) (envelope-from asami@cs.berkeley.edu) Date: Mon, 6 Nov 2000 02:00:57 -0800 (PST) Message-Id: <200011061000.eA6A0v761861@silvia.hip.berkeley.edu> X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: ports@FreeBSD.ORG Cc: kuehn@rz.tu-clausthal.de, keith@FreeBSD.ORG In-reply-to: <200010260933.e9Q9XVc22042@silvia.hip.berkeley.edu> (asami@FreeBSD.ORG) From: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) References: <200010241003.e9OA3Dx04425@silvia.hip.berkeley.edu> <200010260933.e9Q9XVc22042@silvia.hip.berkeley.edu> User-Agent: SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) Emacs/20.7 (i386--freebsd) MULE/4.0 (=?ISO-2022-JP?B?GyRCMlYxYxsoQg==?=) Subject: Re: open-motif default? (2/2) MIME-Version: 1.0 (split by SEMI 1.13.7 - "Awazu") Content-Type: message/partial; id="Mon_Nov__6_01:59:58_2000@silvia.hip.berkeley.edu"; number=2; total=2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --- ./tmp/kp/Makefile 2000/04/14 08:46:06 1.14 +++ ./tmp/kp/Makefile 2000/10/26 09:18:18 @@ -1,18 +1,20 @@ # New ports collection makefile for: kp -# Date created: 8 May 1995 +# Version required: foo +# Date created: foo # Whom: asami # # $FreeBSD: ports/misc/kp/Makefile,v 1.14 2000/04/14 08:46:06 asami Exp $ # -PORTNAME= kp -PORTVERSION= 1.00 +DISTNAME= kp-1.00 CATEGORIES= misc MASTER_SITES= ftp://stampede.cs.berkeley.edu/pub/kp/ MAINTAINER= asami@FreeBSD.org -REQUIRES_MOTIF= yes +LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg + +USE_MOTIF= yes USE_IMAKE= yes MAN1= kp.1 Index: ./www/Mosaic/Makefile =================================================================== RCS file: /usr/cvs/ports/www/Mosaic/Makefile,v retrieving revision 1.27 diff -u -r1.27 Makefile --- ./www/Mosaic/Makefile 2000/08/03 09:26:44 1.27 +++ ./www/Mosaic/Makefile 2000/10/26 09:18:03 @@ -16,7 +16,7 @@ LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \ png.4:${PORTSDIR}/graphics/png -REQUIRES_MOTIF= yes +USE_MOTIF= yes WRKSRC= ${WRKDIR}/Mosaic-src ALL_TARGET= bsdi USE_X_PREFIX= yes Index: ./www/amaya/Makefile =================================================================== RCS file: /usr/cvs/ports/www/amaya/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- ./www/amaya/Makefile 2000/07/13 22:49:00 1.13 +++ ./www/amaya/Makefile 2000/10/26 09:18:07 @@ -15,7 +15,7 @@ MAINTAINER= croyle@gelemna.org -REQUIRES_MOTIF= yes +USE_MOTIF= yes USE_XLIB= yes USE_GMAKE= yes DIST_SUBDIR= amaya Index: ./www/ashe/Makefile =================================================================== RCS file: /usr/cvs/ports/www/ashe/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- ./www/ashe/Makefile 2000/04/10 00:04:28 1.10 +++ ./www/ashe/Makefile 2000/10/26 09:18:04 @@ -18,7 +18,7 @@ MAN1= xhtml.1 MANCOMPRESSED= yes -REQUIRES_MOTIF= yes +USE_MOTIF= yes NO_WRKSUBDIR= yes USE_X_PREFIX= yes Index: ./x11-fonts/xmbdfed/Makefile =================================================================== RCS file: /usr/cvs/ports/x11-fonts/xmbdfed/Makefile,v retrieving revision 1.19 diff -u -r1.19 Makefile --- ./x11-fonts/xmbdfed/Makefile 2000/08/03 09:27:27 1.19 +++ ./x11-fonts/xmbdfed/Makefile 2000/10/26 09:18:13 @@ -14,7 +14,7 @@ USE_X_PREFIX= yes USE_FREETYPE= yes -REQUIRES_MOTIF= yes +USE_MOTIF= yes MAN1= xmbdfed.1 Index: ./x11-toolkits/FWF/Makefile =================================================================== RCS file: /usr/cvs/ports/x11-toolkits/FWF/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- ./x11-toolkits/FWF/Makefile 2000/08/13 13:10:36 1.23 +++ ./x11-toolkits/FWF/Makefile 2000/10/26 09:18:32 @@ -17,7 +17,7 @@ BROKEN= ../../lib/libfwf.a: cannot read symbols .endif -REQUIRES_MOTIF= yes +USE_MOTIF= yes USE_IMAKE= yes USE_XPM= yes WRKSRC= ${WRKDIR}/FWF Index: ./x11-toolkits/xbae/Makefile =================================================================== RCS file: /usr/cvs/ports/x11-toolkits/xbae/Makefile,v retrieving revision 1.15 diff -u -r1.15 Makefile --- ./x11-toolkits/xbae/Makefile 2000/06/16 21:52:28 1.15 +++ ./x11-toolkits/xbae/Makefile 2000/10/26 09:18:37 @@ -17,7 +17,7 @@ MAINTAINER= Lars.Koeller@Uni-Bielefeld.de -REQUIRES_MOTIF= yes +USE_MOTIF= yes USE_IMAKE= yes INSTALLS_SHLIB= yes Index: ./x11-toolkits/xg/Makefile =================================================================== RCS file: /usr/cvs/ports/x11-toolkits/xg/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- ./x11-toolkits/xg/Makefile 2000/04/10 01:11:20 1.4 +++ ./x11-toolkits/xg/Makefile 2000/10/26 09:18:39 @@ -14,7 +14,7 @@ MAINTAINER= ports@FreeBSD.org -REQUIRES_MOTIF= yes +USE_MOTIF= yes USE_X_PREFIX= yes MAKEFILE= makefile WRKSRC= ${WRKDIR}/Xg-1.0 Index: ./x11-toolkits/xmhtml/Makefile =================================================================== RCS file: /usr/cvs/ports/x11-toolkits/xmhtml/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- ./x11-toolkits/xmhtml/Makefile 2000/07/04 07:13:33 1.9 +++ ./x11-toolkits/xmhtml/Makefile 2000/10/26 09:18:41 @@ -20,7 +20,7 @@ LIB_DEPENDS= png.4:${PORTSDIR}/graphics/png \ jpeg.9:${PORTSDIR}/graphics/jpeg -REQUIRES_MOTIF= yes +USE_MOTIF= yes USE_IMAKE= yes XMKMF= PORTOBJFORMAT=${PORTOBJFORMAT} xmkmf -a Index: ./x11/libhelp/Makefile =================================================================== RCS file: /usr/cvs/ports/x11/libhelp/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- ./x11/libhelp/Makefile 2000/04/13 19:09:49 1.5 +++ ./x11/libhelp/Makefile 2000/10/26 09:15:53 @@ -12,7 +12,7 @@ MAINTAINER= Lars.Koeller@Uni-Bielefeld.de -REQUIRES_MOTIF= YES +USE_MOTIF= YES USE_IMAKE= YES NO_INSTALL_MANPAGES= YES Index: ./x11/xlupe/Makefile =================================================================== RCS file: /usr/cvs/ports/x11/xlupe/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- ./x11/xlupe/Makefile 2000/08/03 09:28:52 1.4 +++ ./x11/xlupe/Makefile 2000/10/26 09:15:47 @@ -14,10 +14,7 @@ USE_IMAKE= yes USE_XPM= yes -REQUIRES_MOTIF= no - -# you can build it with a motif interface as well! -# REQUIRES_MOTIF= no +USE_MOTIF= yes #post-install: # strip ${PREFIX}/bin/xlupe === To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 2: 3:12 2000 Delivered-To: freebsd-ports@freebsd.org Received: from tisch.mail.mindspring.net (tisch.mail.mindspring.net [207.69.200.157]) by hub.freebsd.org (Postfix) with ESMTP id D031A37B4CF; Mon, 6 Nov 2000 02:02:36 -0800 (PST) Received: from silvia.hip.berkeley.edu (sji-ca7-217.ix.netcom.com [209.109.235.217]) by tisch.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id FAA19913; Mon, 6 Nov 2000 05:02:21 -0500 (EST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.1/8.11.0) id eA6A0m061847; Mon, 6 Nov 2000 02:00:48 -0800 (PST) (envelope-from asami@cs.berkeley.edu) Date: Mon, 6 Nov 2000 02:00:48 -0800 (PST) Message-Id: <200011061000.eA6A0m061847@silvia.hip.berkeley.edu> X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: ports@FreeBSD.ORG Cc: kuehn@rz.tu-clausthal.de, keith@FreeBSD.ORG In-reply-to: <200010260933.e9Q9XVc22042@silvia.hip.berkeley.edu> (asami@FreeBSD.ORG) From: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) References: <200010241003.e9OA3Dx04425@silvia.hip.berkeley.edu> <200010260933.e9Q9XVc22042@silvia.hip.berkeley.edu> User-Agent: SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) Emacs/20.7 (i386--freebsd) MULE/4.0 (=?ISO-2022-JP?B?GyRCMlYxYxsoQg==?=) Subject: Re: open-motif default? (1/2) MIME-Version: 1.0 (split by SEMI 1.13.7 - "Awazu") Content-Type: message/partial; id="Mon_Nov__6_01:59:58_2000@silvia.hip.berkeley.edu"; number=1; total=2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org To: ports@FreeBSD.ORG CC: kuehn@rz.tu-clausthal.de, keith@freebsd.org In-reply-to: <200010260933.e9Q9XVc22042@silvia.hip.berkeley.edu> (asami@FreeBSD.ORG) Subject: Re: open-motif default? From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) References: <200010241003.e9OA3Dx04425@silvia.hip.berkeley.edu> <200010260933.e9Q9XVc22042@silvia.hip.berkeley.edu> User-Agent: SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) Emacs/20.7 (i386--freebsd) MULE/4.0 (=?ISO-2022-JP?B?GyRCMlYxYxsoQg==?=) MIME-Version: 1.0 (generated by SEMI 1.13.7 - "Awazu") Content-Type: text/plain; charset=US-ASCII * Date: Thu, 26 Oct 2000 02:33:31 -0700 (PDT) * From: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) * * Well, seems like nobody is against the idea, so here's a patch for * review. Basically it gets rid of all the Motif stuff except for * USE_MOTIF (renamed from REQUIRES_MOTIF) and MOTIFLIB. * * As for the Makefile diffs, only editors/vim[56], graphics/plotutils * and x11/xlupe were non-trivial. * * vim and plotutils are .ifdef'ing off HAVE_MOTIF. I'm pretty sure you * can just take off the .ifdef in plotutils, since that's the only * condition it has. vim is more problematic, since there are many cases * in that Makefile. Someone (David? Ade?) needs to figure out what to * do with it, since you can't expect users to set HAVE_MOTIF anymore. * * I can't for my life of myself figure out what xlupe was trying to do. * REQUIRES_MOTIF is an on/off variable so setting it to "no" clearly * didn't have the desired effect. (On top of that, it had a commented * out redefinition to "no"!) Anyway, since open-motif is available, * just changing it to USE_MOTIF should be fine. * * By the way, chinese/stardict was setting PREFIX=${X11BASE} and * USE_XLIB. It should have been USE_X_PREFIX, otherwise the wrong mtree * file will be used. * * What should we do with x11-toolkits/lesstif? I don't mind having it * around if people want it, but we should have it emit some highlighted * notes about the availability of open-motif. Ok, 4.2R is out (at least as far as ports are concerned) so here's an updated diff. I plan to commit it soon if nobody objects. In particular, cad/mars will use open-motif unless NO_X11 is defined (i.e., if you want X, you'll get Motif). Also, ftp/moxftp will give you the Motif version unless you define WANT_ATHENA_VERSION (I invented that). Looking at all the Makefiles that have something that matches "_MOTIF", I found that xemacs (including language-specific ones) have messages like this: === pre-configure: .if defined(HAVE_MOTIF) @${ECHO_MSG} "" @${ECHO_MSG} "If your MOTIF library is actually lesstif, you might occasionally" @${ECHO_MSG} "experience locked-up frames." @${ECHO_MSG} "In this case, set the environment variable MOTIF_STATIC and recompile, " @${ECHO_MSG} "which will force the use of athena widgets for dialogs." .endif === This can probably taken away but the bigger issue is, where is the Motif dependency defined? I don't see any REQUIRES_MOTIF in there. If it's the configure script automatically finding Motif, then we should probably add USE_MOTIF to all of them (or turn the checking off). In addition, chinese/xemacs has the following: === .if defined(REAL_MOTIF) CONFIGURE_ARGS+= --with-menubars=lucid --with-xim=motif .else CONFIGURE_ARGS+= --with-menubars=lucid --with-xim=xlib .endif === This should also be fixed one way or the other. This is from games/imaze: === # # Sound support currently only exists for the XView version (apperently # broken for the pcm driver; worked for voxware). The not yet released # version 1.4 will add sound support for the Motif version too. # XView is the default. If you want the Motif version, define FORCE_MOTIF=yes. # .if !(defined(HAVE_MOTIF) && defined(FORCE_MOTIF) && ${FORCE_MOTIF} == "yes") \ || defined(PACKAGE_BUILDING) LIB_DEPENDS= xview.3:${PORTSDIR}/x11-toolkits/xview .endif === I'd normally change it this way === .if defined(FORCE_MOTIF) && ${FORCE_MOTIF} == "yes") USE_MOTIF= yes .else LIB_DEPENDS= xview.3:${PORTSDIR}/x11-toolkits/xview .endif === except xview has been broken on XFree86-4 as long as I can tell. http://bento.FreeBSD.org/errorlogs/errorlogs/e.4.20001027/xview-3.2.1.log Satoshi === Index: Mk/bsd.port.mk =================================================================== RCS file: /usr/cvs/ports/Mk/bsd.port.mk,v retrieving revision 1.357 diff -u -r1.357 bsd.port.mk --- Mk/bsd.port.mk 2000/11/03 10:26:32 1.357 +++ Mk/bsd.port.mk 2000/11/06 08:48:44 @@ -169,6 +169,7 @@ # Implies USE_NEWGCC. # USE_QT2 - Says that the port uses version 2 of the qt toolkit. # Implies USE_NEWGCC. +# USE_MOTIF - Says that the port uses the Motif toolkit. Implies USE_XPM. # # Dependency checking. Use these if your port requires another port # not in the list above. @@ -245,20 +246,6 @@ # PKGDIR - A direction containing any package creation files. # (default: ${MASTERDIR}/pkg) # -# Motif support: -# -# REQUIRES_MOTIF - Set this in your port if it requires Motif. It will be -# built only if HAVE_MOTIF is set. -# HAVE_MOTIF - If set, means system has Motif. Typically set in -# /etc/make.conf. -# MOTIF_STATIC - If set, link libXm statically; otherwise, link it -# dynamically. Typically set in /etc/make.conf. -# MOTIFLIB - Set automatically to appropriate value depending on -# ${MOTIF_STATIC}. Substitute references to -lXm with -# patches to make your port conform to our standards. -# MOTIF_ONLY - If set, build Motif ports only. (Not much use except for -# building packages.) -# # Variables that serve as convenient "aliases" for your *-install targets. # Use these like: "${INSTALL_PROGRAM} ${WRKSRC}/prog ${PREFIX}/bin". # @@ -815,15 +802,9 @@ RUN_DEPENDS+= ${LINUXBASE}/etc/redhat-release:${PORTSDIR}/emulators/linux_base .endif -.if defined(REQUIRES_MOTIF) +.if defined(USE_MOTIF) USE_XPM= yes -.if defined(MOTIF_OPEN) LIB_DEPENDS+= Xm.2:${PORTSDIR}/x11-toolkits/open-motif -.else -.if defined(PARALLEL_PACKAGE_BUILD) -BUILD_DEPENDS+= ${X11BASE}/lib/libXm.a:${PORTSDIR}/x11-toolkits/Motif-dummy -.endif -.endif .endif .if defined(USE_FREETYPE) @@ -841,7 +822,7 @@ LIB_DEPENDS+= GL.14:${PORTSDIR}/graphics/Mesa3 .endif XAWVER= 6 -PKG_IGNORE_DEPENDS?= '(XFree86-3\.3\.6_4|Motif-2\.1\.10)' +PKG_IGNORE_DEPENDS?= '(XFree86-3\.3\.6_4)' .else .if defined(USE_IMAKE) BUILD_DEPENDS+= imake:${PORTSDIR}/devel/imake-4 @@ -853,7 +834,7 @@ LIB_DEPENDS+= GLU.1:${PORTSDIR}/graphics/Mesa3 .endif XAWVER= 7 -PKG_IGNORE_DEPENDS?= 'Motif-2\.1\.10' +PKG_IGNORE_DEPENDS?= '()' .endif PLIST_SUB+= XAWVER=${XAWVER} @@ -1088,14 +1069,7 @@ # where pkg_add records its dirty deeds. PKG_DBDIR?= /var/db/pkg -# shared/dynamic motif libs -.if defined(HAVE_MOTIF) -.if defined(MOTIF_STATIC) && !defined(MOTIF_OPEN) -MOTIFLIB?= ${X11BASE}/lib/libXm.a -L${X11BASE}/lib -lXp -.else MOTIFLIB?= -L${X11BASE}/lib -lXm -lXp -.endif -.endif ALL_TARGET?= all INSTALL_TARGET?= install @@ -1385,9 +1359,6 @@ # overnight, then come back in the morning and do _only_ the # interactive ones that required your intervention. # -# Don't attempt to build ports that require Motif if you don't -# have Motif. -# # Ignore ports that can't be resold if building for a CDROM. # # Don't build a port if it's restricted and we don't want to get @@ -1455,10 +1426,6 @@ IGNORE= "is an interactive port" .elif (!defined(IS_INTERACTIVE) && defined(INTERACTIVE)) IGNORE= "is not an interactive port" -.elif (defined(REQUIRES_MOTIF) && !defined(HAVE_MOTIF)) -IGNORE= "requires Motif. LessTif is an LGPL implementation of the Motif API. A port is available in ports/x11-toolkits/lesstif. Please see /etc/make.conf" -.elif (defined(MOTIF_ONLY) && !defined(REQUIRES_MOTIF)) -IGNORE= "does not require Motif" .elif (defined(NO_CDROM) && defined(FOR_CDROM)) IGNORE= "may not be placed on a CDROM: ${NO_CDROM}" .elif (defined(RESTRICTED) && defined(NO_RESTRICTED)) Index: ./astro/xephem/Makefile =================================================================== RCS file: /usr/cvs/ports/astro/xephem/Makefile,v retrieving revision 1.21 diff -u -r1.21 Makefile --- ./astro/xephem/Makefile 2000/10/28 14:55:37 1.21 +++ ./astro/xephem/Makefile 2000/10/30 09:56:08 @@ -16,7 +16,7 @@ WRKSRC= ${WRKDIR}/${DISTNAME}/GUI/xephem -REQUIRES_MOTIF= yes +USE_MOTIF= yes USE_XPM= yes USE_IMAKE= yes MAN1= xephem.1 Index: ./audio/timidity++-emacs/Makefile =================================================================== RCS file: /usr/cvs/ports/audio/timidity++-emacs/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- ./audio/timidity++-emacs/Makefile 2000/10/19 14:46:52 1.13 +++ ./audio/timidity++-emacs/Makefile 2000/10/26 09:14:43 @@ -47,7 +47,7 @@ CONFIGURE_ENV= SHLD="gcc -shared" .elif ${INTERFACE} == "motif" LINK= xmmidi -REQUIRES_MOTIF= yes +USE_MOTIF= yes CONFIGURE_ENV= MOTIFLIB="${MOTIFLIB}" .elif ${INTERFACE} == "slang" .if defined(JAPANESE) Index: ./audio/xmcd/Makefile =================================================================== RCS file: /usr/cvs/ports/audio/xmcd/Makefile,v retrieving revision 1.26 diff -u -r1.26 Makefile --- ./audio/xmcd/Makefile 2000/04/08 21:24:53 1.26 +++ ./audio/xmcd/Makefile 2000/10/26 09:14:32 @@ -12,7 +12,7 @@ MAINTAINER= eischen@vigrid.com -REQUIRES_MOTIF= yes +USE_MOTIF= yes USE_IMAKE= yes PLIST_SUB+= RELEASE=${OSREL:R} ARCH=${ARCH} Index: ./audio/xmmix/Makefile =================================================================== RCS file: /usr/cvs/ports/audio/xmmix/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- ./audio/xmmix/Makefile 2000/04/23 22:59:15 1.10 +++ ./audio/xmmix/Makefile 2000/10/26 09:14:36 @@ -14,7 +14,7 @@ MAINTAINER= ports@FreeBSD.org USE_IMAKE= yes -REQUIRES_MOTIF= yes +USE_MOTIF= yes MAN1= xmmix.1 Index: ./audio/xmradio/Makefile =================================================================== RCS file: /usr/cvs/ports/audio/xmradio/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- ./audio/xmradio/Makefile 2000/11/01 13:33:25 1.10 +++ ./audio/xmradio/Makefile 2000/11/03 10:25:35 @@ -18,7 +18,7 @@ USE_IMAKE= yes USE_XPM= yes -REQUIRES_MOTIF= yes +USE_MOTIF= yes #post-install: # strip ${PREFIX}/bin/xmradio Index: ./biology/ncbi-toolkit/Makefile =================================================================== RCS file: /usr/cvs/ports/biology/ncbi-toolkit/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- ./biology/ncbi-toolkit/Makefile 2000/11/03 13:23:15 1.3 +++ ./biology/ncbi-toolkit/Makefile 2000/11/06 09:20:21 @@ -14,7 +14,7 @@ MAINTAINER= tony.maher@ebioinformatics.com -REQUIRES_MOTIF= yes +USE_MOTIF= yes # # In the files directory we have: Index: ./cad/electric/Makefile =================================================================== RCS file: /usr/cvs/ports/cad/electric/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- ./cad/electric/Makefile 2000/10/07 21:32:51 1.3 +++ ./cad/electric/Makefile 2000/10/26 09:14:45 @@ -14,7 +14,7 @@ MAINTAINER= lioux@FreeBSD.org USE_XLIB= yes -REQUIRES_MOTIF= yes +USE_MOTIF= yes EXTRA_PATCHES= ${WRKDIR}/patch-prefix GNU_CONFIGURE= yes USE_GMAKE= yes Index: ./cad/mars/Makefile =================================================================== RCS file: /usr/cvs/ports/cad/mars/Makefile,v retrieving revision 1.17 diff -u -r1.17 Makefile --- ./cad/mars/Makefile 2000/04/17 00:17:10 1.17 +++ ./cad/mars/Makefile 2000/11/06 09:21:16 @@ -19,13 +19,11 @@ NO_WRKSUBDIR= yes EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} -.if defined(HAVE_MOTIF) && !defined(PACKAGE_BUILDING) -MAKEFILE= Makefile.XMotif -.elif defined(WITHOUT_X11) +.if defined(WITHOUT_X11) MAKEFILE= Makefile.NoX .else -USE_XLIB= yes -MAKEFILE= Makefile.SimpleX +USE_MOTIF= yes +MAKEFILE= Makefile.XMotif .endif ALL_TARGET= depend mars MAN1= mars.1 Index: ./chinese/stardict/Makefile =================================================================== RCS file: /usr/cvs/ports/chinese/stardict/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- ./chinese/stardict/Makefile 2000/09/19 14:55:34 1.6 +++ ./chinese/stardict/Makefile 2000/10/26 09:17:32 @@ -15,13 +15,11 @@ MAINTAINER= phj@cn.FreeBSD.org -REQUIRES_MOTIF= yes +USE_MOTIF= yes GNU_CONFIGURE= yes -USE_GMAKE = yes -USE_XLIB= yes - -PREFIX= ${X11BASE} +USE_GMAKE= yes +USE_X_PREFIX= yes port-install: strip $(PREFIX)/bin/${PORTNAME} Index: ./databases/xmbase-grok/Makefile =================================================================== RCS file: /usr/cvs/ports/databases/xmbase-grok/Makefile,v retrieving revision 1.12 diff -u -r1.12 Makefile --- ./databases/xmbase-grok/Makefile 2000/04/29 21:14:35 1.12 +++ ./databases/xmbase-grok/Makefile 2000/10/26 09:14:47 @@ -14,7 +14,7 @@ MAINTAINER= ports@FreeBSD.org -REQUIRES_MOTIF= yes +USE_MOTIF= yes USE_IMAKE= yes GLOK_DATADIR= ${PREFIX}/lib/X11/xmbase-grok Index: ./deskutils/plan/Makefile =================================================================== RCS file: /usr/cvs/ports/deskutils/plan/Makefile,v retrieving revision 1.20 diff -u -r1.20 Makefile --- ./deskutils/plan/Makefile 2000/04/14 17:10:34 1.20 +++ ./deskutils/plan/Makefile 2000/10/26 09:18:20 @@ -15,7 +15,7 @@ MAINTAINER= deischen@iworks.InterWorks.org -REQUIRES_MOTIF= yes +USE_MOTIF= yes WRKSRC= ${WRKDIR}/plan-1.8.2/src ALL_TARGET= freebsd MAN1= netplan.1 plan.1 Index: ./deskutils/xinvest/Makefile =================================================================== RCS file: /usr/cvs/ports/deskutils/xinvest/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- ./deskutils/xinvest/Makefile 2000/08/03 09:22:53 1.7 +++ ./deskutils/xinvest/Makefile 2000/10/26 09:18:24 @@ -14,7 +14,7 @@ MAINTAINER= ports@FreeBSD.org -REQUIRES_MOTIF= yes +USE_MOTIF= yes USE_IMAKE= yes USE_XPM= yes NO_INSTALL_MANPAGES= yes Index: ./deskutils/xmaddressbook/Makefile =================================================================== RCS file: /usr/cvs/ports/deskutils/xmaddressbook/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- ./deskutils/xmaddressbook/Makefile 2000/04/08 22:04:00 1.7 +++ ./deskutils/xmaddressbook/Makefile 2000/10/26 09:18:26 @@ -14,7 +14,7 @@ MAINTAINER= shanee@augusta.de -REQUIRES_MOTIF= yes +USE_MOTIF= yes USE_IMAKE= yes WRKSRC= ${WRKDIR}/xmaddressbook MAN1= xmaddressbook.1 Index: ./deskutils/xmdiary/Makefile =================================================================== RCS file: /usr/cvs/ports/deskutils/xmdiary/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- ./deskutils/xmdiary/Makefile 2000/04/08 22:04:03 1.8 +++ ./deskutils/xmdiary/Makefile 2000/10/26 09:18:28 @@ -16,7 +16,7 @@ NO_CDROM= "Don't sell for profit" EXTRACT_ONLY= ${DISTNAME}.tar.gz -REQUIRES_MOTIF= yes +USE_MOTIF= yes USE_IMAKE= yes MAN1= xdaclunix.1 xdalarm.1 xdcustom.1 xddump.1 xdiary.1 xdinitdb.1 \ xdlight.1 xdnotify.1 xdprformat.1 xdremind.1 xdremove.1 \ Index: ./deskutils/xopps/Makefile =================================================================== RCS file: /usr/cvs/ports/deskutils/xopps/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- ./deskutils/xopps/Makefile 2000/04/08 22:04:05 1.11 +++ ./deskutils/xopps/Makefile 2000/10/26 09:18:30 @@ -16,7 +16,7 @@ ALL_TARGET= USE_X_PREFIX= yes -REQUIRES_MOTIF= yes +USE_MOTIF= yes MAKE_ENV= 'MACH=${OPSYS}' MAN1= xopps.1 Index: ./devel/ddd/Makefile =================================================================== RCS file: /usr/cvs/ports/devel/ddd/Makefile,v retrieving revision 1.33 diff -u -r1.33 Makefile --- ./devel/ddd/Makefile 2000/09/25 19:48:22 1.33 +++ ./devel/ddd/Makefile 2000/10/26 09:14:48 @@ -21,7 +21,7 @@ --with-readline-libraries=/usr/lib USE_GMAKE= yes USE_XPM= yes -REQUIRES_MOTIF= yes +USE_MOTIF= yes MAN1= ddd.1 Index: ./devel/yacl/Makefile =================================================================== RCS file: /usr/cvs/ports/devel/yacl/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- ./devel/yacl/Makefile 2000/04/14 18:40:15 1.8 +++ ./devel/yacl/Makefile 2000/10/26 09:14:50 @@ -20,7 +20,7 @@ MAKEFILE= gnuc.mak ALL_TARGET= yacl -REQUIRES_MOTIF= true +USE_MOTIF= true post-build: @(cd ${WRKSRC}/apps/bmpview; ${MAKE} ${MAKE_ENV} -f gnuc.mak) Index: ./editors/asedit/Makefile =================================================================== RCS file: /usr/cvs/ports/editors/asedit/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- ./editors/asedit/Makefile 2000/04/14 00:25:17 1.8 +++ ./editors/asedit/Makefile 2000/10/26 09:14:52 @@ -15,7 +15,7 @@ MAINTAINER= shanee@augusta.de -REQUIRES_MOTIF= yes +USE_MOTIF= yes USE_IMAKE= yes XMKMF= xmkmf Index: ./editors/nedit/Makefile =================================================================== RCS file: /usr/cvs/ports/editors/nedit/Makefile,v retrieving revision 1.21 diff -u -r1.21 Makefile --- ./editors/nedit/Makefile 2000/08/03 09:22:59 1.21 +++ ./editors/nedit/Makefile 2000/10/26 09:14:54 @@ -14,7 +14,7 @@ MAINTAINER= deischen@freebsd.org -REQUIRES_MOTIF= yes +USE_MOTIF= yes USE_X_PREFIX= yes USE_XPM= yes EXTRACT_ONLY= nedit-5.1.1-src.tar.gz Index: ./editors/thoteditor/Makefile =================================================================== RCS file: /usr/cvs/ports/editors/thoteditor/Makefile,v retrieving revision 1.18 diff -u -r1.18 Makefile --- ./editors/thoteditor/Makefile 2000/04/14 00:25:44 1.18 +++ ./editors/thoteditor/Makefile 2000/10/26 09:15:03 @@ -20,9 +20,8 @@ MAINTAINER= chuckr@FreeBSD.org THOT_SUBDIR= Target -REQUIRES_MOTIF= yes +USE_MOTIF= yes WRKSRC= $(WRKDIR)/Thot/$(THOT_SUBDIR) -REQUIRES_MOTIF= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-thot --enable-plugin --without-insure --without-amaya --disable-java --disable-intr --disable-jit --disable-math --disable-ilu USE_GMAKE= yes Index: ./editors/vim5/Makefile =================================================================== RCS file: /usr/cvs/ports/editors/vim5/Makefile,v retrieving revision 1.87 diff -u -r1.87 Makefile --- ./editors/vim5/Makefile 2000/11/03 13:05:20 1.87 +++ ./editors/vim5/Makefile 2000/11/04 14:12:17 @@ -56,7 +56,7 @@ USE_GTK= yes MAKE_ARGS+= CONF_OPT_GUI="--enable-gui=gtk --with-gtk-prefix=${X11BASE} --enable-multibyte --enable-fontset --enable-multibyte --enable-xim" .elif defined(HAVE_MOTIF) -REQUIRES_MOTIF= yes +USE_MOTIF= yes MAKE_ARGS+= CONF_OPT_GUI="--enable-gui=motif --with-motif-lib=\"${MOTIFLIB}\" --enable-multibyte --enable-fontset --enable-multibyte --enable-xim" MOTIFHOME=${X11BASE} .else MAKE_ARGS+= CONF_OPT_GUI="--enable-gui=athena --enable-multibyte --enable-fontset --enable-multibyte --enable-xim" Index: ./editors/vim6/Makefile =================================================================== RCS file: /usr/cvs/ports/editors/vim6/Makefile,v retrieving revision 1.91 diff -u -r1.91 Makefile --- ./editors/vim6/Makefile 2000/10/30 13:37:59 1.91 +++ ./editors/vim6/Makefile 2000/11/01 13:15:20 @@ -57,7 +57,7 @@ USE_GTK= yes MAKE_ARGS+= CONF_OPT_GUI="--enable-gui=gtk --with-gtk-prefix=${X11BASE} --enable-multibyte --enable-fontset --enable-multibyte --enable-xim" .elif defined(HAVE_MOTIF) -REQUIRES_MOTIF= yes +USE_MOTIF= yes MAKE_ARGS+= CONF_OPT_GUI="--enable-gui=motif --with-motif-lib=\"${MOTIFLIB}\" --enable-multibyte --enable-fontset --enable-multibyte --enable-xim" MOTIFHOME=${X11BASE} .else MAKE_ARGS+= CONF_OPT_GUI="--enable-gui=athena --enable-multibyte --enable-fontset --enable-multibyte --enable-xim" Index: ./ftp/llnlxdir/Makefile =================================================================== RCS file: /usr/cvs/ports/ftp/llnlxdir/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- ./ftp/llnlxdir/Makefile 2000/06/07 18:00:05 1.10 +++ ./ftp/llnlxdir/Makefile 2000/10/26 09:18:43 @@ -17,7 +17,7 @@ MAN1= xdir.1 WRKSRC= ${WRKDIR}/llnlxdir2_1_2/sources -REQUIRES_MOTIF= yes +USE_MOTIF= yes USE_IMAKE= yes .include Index: ./ftp/llnlxftp/Makefile =================================================================== RCS file: /usr/cvs/ports/ftp/llnlxftp/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- ./ftp/llnlxftp/Makefile 2000/06/07 18:02:02 1.8 +++ ./ftp/llnlxftp/Makefile 2000/10/26 09:18:45 @@ -15,7 +15,7 @@ MAINTAINER= dima@FreeBSD.org WRKSRC= ${WRKDIR}/llnlxftp2.1/sources -REQUIRES_MOTIF= yes +USE_MOTIF= yes USE_IMAKE= yes .include Index: ./ftp/moxftp/Makefile =================================================================== RCS file: /usr/cvs/ports/ftp/moxftp/Makefile,v retrieving revision 1.27 diff -u -r1.27 Makefile --- ./ftp/moxftp/Makefile 2000/04/12 05:31:16 1.27 +++ ./ftp/moxftp/Makefile 2000/11/06 09:24:14 @@ -15,20 +15,14 @@ MAINTAINER= ports@FreeBSD.org -REQUIRES_MOTIF= yes GNU_CONFIGURE= yes USE_X_PREFIX= yes MAN1= ${PROGRAM_NAME}.1 PLIST_SUB= PROGRAM_NAME=${PROGRAM_NAME} RESOURCE_NAME=${RESOURCE_NAME} STRIP= -# CONFIGURE_ARGS set to : -# motif - for motif version, (not tested!!!) -# athena - for athena version, -# athena3d - for athena 3 d version, (you should have installed Xaw3d!!!) -# openlook - for open look version - (not tested!!!) -# If you use athena3d uncomment LIB_DEPENDS !!! -.if defined(HAVE_MOTIF) +.if !defined(WANT_ATHENA_VERSION) +USE_MOTIF= yes CONFIGURE_ARGS= motif PROGRAM_NAME=mftp RESOURCE_NAME=Mftp Index: ./games/CaribbeanStud/Makefile =================================================================== RCS file: /usr/cvs/ports/games/CaribbeanStud/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- ./games/CaribbeanStud/Makefile 2000/07/14 09:51:12 1.6 +++ ./games/CaribbeanStud/Makefile 2000/10/26 09:17:58 @@ -15,7 +15,7 @@ MAINTAINER= ports@FreeBSD.org MAKEFILE= Xmakefile -REQUIRES_MOTIF= yes +USE_MOTIF= yes USE_X_PREFIX= yes CFLAGS= -pedantic Index: ./games/xabacus/Makefile =================================================================== RCS file: /usr/cvs/ports/games/xabacus/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- ./games/xabacus/Makefile 2000/04/14 12:26:53 1.7 +++ ./games/xabacus/Makefile 2000/10/26 09:17:55 @@ -15,7 +15,7 @@ MAINTAINER= ports@FreeBSD.org WRKSRC= ${WRKDIR}/xabacus -REQUIRES_MOTIF= yes +USE_MOTIF= yes USE_X_PREFIX= yes GNU_CONFIGURE= yes Index: ./games/xblackjack/Makefile =================================================================== RCS file: /usr/cvs/ports/games/xblackjack/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- ./games/xblackjack/Makefile 2000/04/23 22:59:23 1.11 +++ ./games/xblackjack/Makefile 2000/10/26 09:17:40 @@ -14,7 +14,7 @@ MAINTAINER= ports@FreeBSD.org -REQUIRES_MOTIF= yes +USE_MOTIF= yes USE_IMAKE= yes MAN1= xblackjack.1 Index: ./games/xminehunter/Makefile =================================================================== RCS file: /usr/cvs/ports/games/xminehunter/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- ./games/xminehunter/Makefile 2000/08/03 09:24:09 1.13 +++ ./games/xminehunter/Makefile 2000/10/26 09:17:44 @@ -16,7 +16,7 @@ USE_X_PREFIX= yes USE_XPM= yes WRKSRC= ${WRKDIR}/xminehunter -REQUIRES_MOTIF= yes +USE_MOTIF= yes ALL_TARGET= xminehunter .include Index: ./games/znibbles/Makefile =================================================================== RCS file: /usr/cvs/ports/games/znibbles/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- ./games/znibbles/Makefile 2000/10/05 06:36:16 1.6 +++ ./games/znibbles/Makefile 2000/10/26 09:18:00 @@ -12,7 +12,7 @@ MAINTAINER= yinjieh@csie.nctu.edu.tw -REQUIRES_MOTIF= yes +USE_MOTIF= yes USE_GTK= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --without-motif \ Index: ./graphics/geomview/Makefile =================================================================== RCS file: /usr/cvs/ports/graphics/geomview/Makefile,v retrieving revision 1.24 diff -u -r1.24 Makefile --- ./graphics/geomview/Makefile 2000/08/15 20:57:43 1.24 +++ ./graphics/geomview/Makefile 2000/10/26 09:15:55 @@ -18,7 +18,7 @@ tk82.1:${PORTSDIR}/x11-toolkits/tk82 WRKSRC= ${WRKDIR}/Geomview -REQUIRES_MOTIF= yes +USE_MOTIF= yes USE_X_PREFIX= yes USE_MESA= yes Index: ./graphics/mpeg2play/Makefile =================================================================== RCS file: /usr/cvs/ports/graphics/mpeg2play/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- ./graphics/mpeg2play/Makefile 2000/04/14 10:46:42 1.7 +++ ./graphics/mpeg2play/Makefile 2000/10/26 09:15:58 @@ -13,7 +13,7 @@ MAINTAINER= charnier@lirmm.fr USE_IMAKE= yes -REQUIRES_MOTIF= yes +USE_MOTIF= yes ALL_TARGET= mpeg2play do-install: Index: ./graphics/opendx/Makefile =================================================================== RCS file: /usr/cvs/ports/graphics/opendx/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- ./graphics/opendx/Makefile 2000/08/03 09:24:49 1.8 +++ ./graphics/opendx/Makefile 2000/10/26 09:16:29 @@ -17,7 +17,7 @@ USE_XLIB= yes USE_MESA= yes -REQUIRES_MOTIF= yes +USE_MOTIF= yes USE_NEWGCC= yes GNU_CONFIGURE= yes CONFIGURE_ENV= CFLAGS="${CFLAGS} -Dfreebsd -I${PREFIX}/include" \ Index: ./graphics/plotutils/Makefile =================================================================== RCS file: /usr/cvs/ports/graphics/plotutils/Makefile,v retrieving revision 1.16 diff -u -r1.16 Makefile --- ./graphics/plotutils/Makefile 2000/08/21 10:07:32 1.16 +++ ./graphics/plotutils/Makefile 2000/11/06 09:25:33 @@ -20,11 +20,8 @@ CONFIGURE_ARGS= --enable-libplotter --enable-libxmi MAN1= ode.1 plot.1 spline.1 tek2plot.1 -.ifdef HAVE_MOTIF +USE_MOTIF= yes CONFIGURE_ARGS+= --with-motif CONFIGURE_ENV= MOTIFLIB="${MOTIFLIB}" -# to ensure dependency info is generated properly -REQUIRES_MOTIF= yes -.endif .include Index: ./graphics/xmfract/Makefile =================================================================== RCS file: /usr/cvs/ports/graphics/xmfract/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- ./graphics/xmfract/Makefile 2000/04/23 22:59:38 1.8 +++ ./graphics/xmfract/Makefile 2000/10/26 09:16:00 @@ -14,7 +14,7 @@ MAINTAINER= ports@FreeBSD.org -REQUIRES_MOTIF= yes +USE_MOTIF= yes USE_X_PREFIX= yes GNU_CONFIGURE= yes Index: ./mail/ml/Makefile =================================================================== RCS file: /usr/cvs/ports/mail/ml/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- ./mail/ml/Makefile 2000/04/13 20:00:09 1.5 +++ ./mail/ml/Makefile 2000/10/26 09:16:31 @@ -14,7 +14,7 @@ WRKSRC= ${WRKDIR}/${DISTNAME}/src USE_IMAKE= yes -REQUIRES_MOTIF= yes +USE_MOTIF= yes NO_INSTALL_MANPAGES= yes pre-configure: Index: ./math/grace/Makefile =================================================================== RCS file: /usr/cvs/ports/math/grace/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- ./math/grace/Makefile 2000/08/03 09:25:37 1.13 +++ ./math/grace/Makefile 2000/10/26 09:16:36 @@ -36,7 +36,7 @@ USE_X_PREFIX= YES USE_XPM= yes USE_GMAKE= YES -REQUIRES_MOTIF= YES +USE_MOTIF= YES HAS_CONFIGURE= YES CONFIGURE_ARGS= -prefix=${X11BASE} \ --enable-extra-incpath=${X11BASE}/include/X11:${LOCALBASE}/include:${LOCALBASE}/include/gd \ Index: ./math/ngraph/Makefile =================================================================== RCS file: /usr/cvs/ports/math/ngraph/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- ./math/ngraph/Makefile 2000/10/25 04:16:41 1.7 +++ ./math/ngraph/Makefile 2000/10/26 09:16:38 @@ -14,7 +14,7 @@ MAINTAINER= sanpei@FreeBSD.org -REQUIRES_MOTIF= yes +USE_MOTIF= yes USE_GMAKE= yes .include Index: ./math/xmgr/Makefile =================================================================== RCS file: /usr/cvs/ports/math/xmgr/Makefile,v retrieving revision 1.20 diff -u -r1.20 Makefile --- ./math/xmgr/Makefile 2000/04/14 07:20:55 1.20 +++ ./math/xmgr/Makefile 2000/10/26 09:16:33 @@ -20,7 +20,7 @@ LIB_DEPENDS= Xbae.7:${PORTSDIR}/x11-toolkits/xbae USE_X_PREFIX= YES -REQUIRES_MOTIF= YES +USE_MOTIF= YES HAS_CONFIGURE= YES CONFIGURE_ARGS= -prefix=${X11BASE} \ --enable-extra-incpath=${X11BASE}/include/X11:${LOCALBASE}/include \ Index: ./misc/kp/Makefile =================================================================== RCS file: /usr/cvs/ports/misc/kp/Makefile,v retrieving revision 1.17 diff -u -r1.17 Makefile --- ./misc/kp/Makefile 2000/11/02 11:26:52 1.17 +++ ./misc/kp/Makefile 2000/11/03 10:48:11 @@ -13,7 +13,7 @@ MAINTAINER= asami@FreeBSD.org -REQUIRES_MOTIF= yes +USE_MOTIF= yes USE_IMAKE= yes MAN1= kp.1 Index: ./misc/xquote/Makefile =================================================================== RCS file: /usr/cvs/ports/misc/xquote/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- ./misc/xquote/Makefile 2000/08/03 09:25:51 1.6 +++ ./misc/xquote/Makefile 2000/11/06 09:26:00 @@ -13,8 +13,7 @@ MAINTAINER= mph@freebsd.org -REQUIRES_MOTIF= yes - +USE_MOTIF= yes USE_IMAKE= yes USE_XPM= yes NO_INSTALL_MANPAGES= yes Index: ./misc/xtar/Makefile =================================================================== RCS file: /usr/cvs/ports/misc/xtar/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- ./misc/xtar/Makefile 2000/04/14 08:47:19 1.6 +++ ./misc/xtar/Makefile 2000/10/26 09:14:24 @@ -13,7 +13,7 @@ MAINTAINER= shanee@augusta.de -REQUIRES_MOTIF= yes +USE_MOTIF= yes USE_IMAKE= yes MAN1= xtar.1 Index: ./net/tcpillust/Makefile =================================================================== RCS file: /usr/cvs/ports/net/tcpillust/Makefile,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 Makefile --- ./net/tcpillust/Makefile 2000/07/29 06:26:00 1.1.1.1 +++ ./net/tcpillust/Makefile 2000/10/26 09:16:41 @@ -18,7 +18,7 @@ USE_IMAKE= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= -REQUIRES_MOTIF= yes +USE_MOTIF= yes MAN1= tcpillust.1 Index: ./print/mgv/Makefile =================================================================== RCS file: /usr/cvs/ports/print/mgv/Makefile,v retrieving revision 1.18 diff -u -r1.18 Makefile --- ./print/mgv/Makefile 2000/10/08 10:22:44 1.18 +++ ./print/mgv/Makefile 2000/10/26 09:17:36 @@ -14,7 +14,7 @@ USE_X_PREFIX= yes USE_XPM= yes -REQUIRES_MOTIF= yes +USE_MOTIF= yes GNU_CONFIGURE= yes CONFIGURE_ENV= X11BASE=${X11BASE} CONFIGURE_ARGS= --enable-optimize \ Index: ./print/xmbibtex/Makefile =================================================================== RCS file: /usr/cvs/ports/print/xmbibtex/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- ./print/xmbibtex/Makefile 2000/04/09 17:50:51 1.10 +++ ./print/xmbibtex/Makefile 2000/10/26 09:17:34 @@ -13,7 +13,7 @@ MAINTAINER= ports@FreeBSD.org -REQUIRES_MOTIF= yes +USE_MOTIF= yes WRKSRC= ${WRKDIR}/${DISTNAME}/src USE_IMAKE= yes NO_INSTALL_MANPAGES= yes Index: ./textproc/mgdiff/Makefile =================================================================== RCS file: /usr/cvs/ports/textproc/mgdiff/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- ./textproc/mgdiff/Makefile 2000/10/08 10:23:03 1.8 +++ ./textproc/mgdiff/Makefile 2000/10/26 09:18:16 @@ -14,7 +14,7 @@ MAINTAINER= andreas@marvin.robin.de -REQUIRES_MOTIF= yes +USE_MOTIF= yes USE_IMAKE= yes MAN1= mgdiff.1 Index: ./tmp/kp/Makefile =================================================================== RCS file: /usr/cvs/ports/misc/kp/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 2:43:18 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blount.mail.mindspring.net (blount.mail.mindspring.net [207.69.200.226]) by hub.freebsd.org (Postfix) with ESMTP id 36D4637B4CF for ; Mon, 6 Nov 2000 02:43:16 -0800 (PST) Received: from silvia.hip.berkeley.edu (sji-ca7-217.ix.netcom.com [209.109.235.217]) by blount.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id FAA05794 for ; Mon, 6 Nov 2000 05:43:03 -0500 (EST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.1/8.11.0) id eA6AfWR62037; Mon, 6 Nov 2000 02:41:32 -0800 (PST) (envelope-from asami@cs.berkeley.edu) X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: ports@FreeBSD.ORG Subject: Re: open-motif default? (1/2) References: <200010241003.e9OA3Dx04425@silvia.hip.berkeley.edu> <200010260933.e9Q9XVc22042@silvia.hip.berkeley.edu> <200011061000.eA6A0m061847@silvia.hip.berkeley.edu> From: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) MIME-Version: 1.0 (generated by SEMI 1.13.7 - "Awazu") Content-Type: text/plain; charset=US-ASCII Date: 06 Nov 2000 02:40:44 -0800 In-Reply-To: <200011061000.eA6A0m061847@silvia.hip.berkeley.edu> (Satoshi - Ports Wraith - Asami's message of "Mon, 6 Nov 2000 02:00:48 -0800 (PST)") Message-ID: Lines: 7 User-Agent: T-gnus/6.14.5 (based on Gnus v5.8.7) (revision 06) SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) Emacs/20.7 (i386--freebsd) MULE/4.0 =?ISO-2022-JP?B?KBskQjJWMWMbKEIp?= Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * Content-Type: message/partial; id="Mon_Nov__6_01:59:58_2000@silvia.hip.berkeley.edu"; number=1; total=2 Oops, sorry about that. I started using t-gnus and this was the first long message I tried to send. I set message-send-mail-partially-limit to nil so this won't happen again. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 2:44:54 2000 Delivered-To: freebsd-ports@freebsd.org Received: from c0mailgw03.prontomail.com (unknown [216.163.180.10]) by hub.freebsd.org (Postfix) with ESMTP id 9850637B479 for ; Mon, 6 Nov 2000 02:44:52 -0800 (PST) Received: from mail69.prontomail.com (209.185.149.169) by c0mailgw03.prontomail.com (NPlex 5.1.050) id 3A030EE500061C0D; Mon, 6 Nov 2000 02:44:48 -0800 Received: from c0web06 (216.163.180.10) by mail69.prontomail.com (NPlex 2.0.108); 6 Nov 2000 02:44:48 -0800 From: "KATO Tsuguru" Message-Id: <78CD56BF073B4D1178140005B83782F4@tkato.prontomail.ne.jp> Date: Mon, 6 Nov 2000 19:44:48 +0900 X-Priority: Normal Content-Type: text/plain; charset=ISO-2022-JP To: Peter Pentchev Subject: Re: author of games/xemeraldia? Cc: ports@FreeBSD.org X-Mailer: Web Based Pronto Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org According to README.sjis included in source archive, tommy@huie.hokudai.ac.jp is author's mail address. I don't know this address is still valid, though. -- KATO Tsuguru / tkato@prontomail.ne.jp Sent by Japanese ProntoMail To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 2:49:38 2000 Delivered-To: freebsd-ports@freebsd.org Received: from gate.cpmet.ufpel.tche.br (gate.cpmet.ufpel.tche.br [200.248.148.33]) by hub.freebsd.org (Postfix) with ESMTP id 0F80037B4CF for ; Mon, 6 Nov 2000 02:49:34 -0800 (PST) Received: from localhost (casantos@localhost) by gate.cpmet.ufpel.tche.br (8.9.3/8.9.3) with ESMTP id KAA13461 for ; Mon, 6 Nov 2000 10:53:11 GMT (envelope-from casantos@cpmet.ufpel.tche.br) X-Authentication-Warning: gate.cpmet.ufpel.tche.br: casantos owned process doing -bs Date: Mon, 6 Nov 2000 10:53:10 +0000 (GMT) From: Carlos A M dos Santos To: ports@FreeBSD.ORG Subject: Re: open-motif default? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, 6 Nov 2000, the fast fingers of Satoshi - Ports Wraith - Asami wrote: > In addition, chinese/xemacs has the following: > > === > .if defined(REAL_MOTIF) > CONFIGURE_ARGS+= --with-menubars=lucid --with-xim=motif > .else > CONFIGURE_ARGS+= --with-menubars=lucid --with-xim=xlib > .endif > === XIM support in LessTif was a little bit rusty some time ago. I don't know what is the current state, but using Motif you will not need such test. -- Carlos A. M. dos Santos Federal University of Pelotas Meteorological Research Center Av. Ildefonso Simoes Lopes 2791 Pelotas, RS, Brasil, CEP 96060-290 WWW: http://www.cpmet.ufpel.tche.br RENPAC (X.25): 153231641 Phone: +55 53 277-6767 FAX: +55 53 277-6722 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 3:10: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 124C337B4D7 for ; Mon, 6 Nov 2000 03:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA64236; Mon, 6 Nov 2000 03:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from ws130.nomadiclab.com (ws130.nomadiclab.com [195.165.196.130]) by hub.freebsd.org (Postfix) with ESMTP id 60C8037B4CF for ; Mon, 6 Nov 2000 03:07:30 -0800 (PST) Received: from ws140.nomadiclab.com (ws140.nomadiclab.com [195.165.196.140]) by ws130.nomadiclab.com (Postfix) with ESMTP id 0FF7072501 for ; Mon, 6 Nov 2000 13:07:28 +0200 (EET) Received: (from martti@localhost) by ws140.nomadiclab.com (8.11.1/8.9.3) id eA6B7Rg01548; Mon, 6 Nov 2000 13:07:27 +0200 (EET) (envelope-from martti@nomadiclab.com) Message-Id: <200011061107.eA6B7Rg01548@ws140.nomadiclab.com> Date: Mon, 6 Nov 2000 13:07:27 +0200 (EET) From: martti.kuparinen@piuha.net Reply-To: martti.kuparinen@piuha.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22637: [PATCH] squid 2.3 fix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22637 >Category: ports >Synopsis: [PATCH] squid 2.3 fix >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Nov 06 03:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Martti Kuparinen >Release: FreeBSD 4.2-BETA i386 >Organization: >Environment: >Description: This patch changes the version number to include also the patch level. Without this modification it's hard to use pkg_version to determine if the squid installation needs to be updated... Maybe something similar should be applied to the squid22 package as well. >How-To-Repeat: >Fix: --- Makefile.orig Mon Nov 6 12:56:26 2000 +++ Makefile Mon Nov 6 12:56:50 2000 @@ -6,7 +6,7 @@ # PORTNAME= squid -PORTVERSION= 2.3 +PORTVERSION= 2.3.4 CATEGORIES= www MASTER_SITES= \ ftp://squid.nlanr.net/pub/squid-2/STABLE/ \ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 3:48:17 2000 Delivered-To: freebsd-ports@freebsd.org Received: from bsdvm.jtjang.idv.tw (121.c74.ethome.net.tw [210.58.74.121]) by hub.freebsd.org (Postfix) with ESMTP id 35F4237B4C5 for ; Mon, 6 Nov 2000 03:48:13 -0800 (PST) Received: (from keith@localhost) by bsdvm.jtjang.idv.tw (8.11.1/8.9.3) id eA6BlLv41231 for ports@FreeBSD.ORG; Mon, 6 Nov 2000 19:47:21 +0800 (CST) (envelope-from keith) Date: Mon, 6 Nov 2000 19:47:21 +0800 From: Jing-Tang Keith Jang To: ports@FreeBSD.ORG Subject: Re: open-motif default? Message-ID: <20001106194721.A41150@bsdvm.jtjang.idv.tw> Reply-To: keith@freebsd.sinica.edu.tw Mail-Followup-To: ports@FreeBSD.ORG References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from casantos@cpmet.ufpel.tche.br on Mon, Nov 06, 2000 at 10:53:10AM +0000 X-Operating-System: FreeBSD bsdvm.jtjang.idv.tw 4.2-BETA FreeBSD 4.2-BETA Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thanks for the message, because I can't read PW's previous mail. :-) I'll change it to xlib, since it'll be easier to debug, for XIM projects like xcin in Taiwan. On 11/06/00, Carlos A M dos Santos wrote: > On Mon, 6 Nov 2000, the fast fingers of Satoshi - Ports Wraith - Asami > wrote: > > > In addition, chinese/xemacs has the following: > > > > === > > .if defined(REAL_MOTIF) > > CONFIGURE_ARGS+= --with-menubars=lucid --with-xim=motif > > .else > > CONFIGURE_ARGS+= --with-menubars=lucid --with-xim=xlib > > .endif > > === > > XIM support in LessTif was a little bit rusty some time ago. I don't > know what is the current state, but using Motif you will not need such > test. -- Keep it simple and stupid. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 4:15:17 2000 Delivered-To: freebsd-ports@freebsd.org Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.130.111.12]) by hub.freebsd.org (Postfix) with ESMTP id 668AE37B479; Mon, 6 Nov 2000 04:15:07 -0800 (PST) Received: from [128.130.111.77] (taygeta [128.130.111.77]) by vexpert.dbai.tuwien.ac.at (8.9.3/8.9.3) with ESMTP id NAA16527; Mon, 6 Nov 2000 13:14:55 +0100 (MET) Date: Mon, 6 Nov 2000 13:14:56 +0100 (CET) From: Gerald Pfeifer To: , Subject: Wine port: How to obtain MAC address? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org For the Wine port I'd need to obtain the MAC address of an ethernet interface, alas it seems that this is not easily possible the way it is done in Linux/Solaris? For Linux, the code in Wine looks as follows: strcpy(ifInfo.ifr_name, ifName); if (ioctl(sock, SIOCGIFHWADDR, &ifInfo) < 0) { ERR ("Error obtaining MAC Address!\n"); close(sock); return (-1); } else { /* FIXME: Is it correct to assume size of 6? */ memcpy(IntInfo->if_physaddr, ifInfo.ifr_hwaddr.sa_data, 6); IntInfo->if_physaddrlen=6; } For FreeBSD I tried the following program, which doesn't really do what I want. If I use SIOCSIFPHYADDR, I get errno=22, and SIOCGIFADDR leads to a crash later on. Any hints? (Most probably I'm tried completely stupid things, but unfortunately, that part of the system is not really documented apart from the include files, so I had to take a guess&check approach. :-( ) -------- cut -------- #include #include #include #include #include #include main() { struct ifreq ifInfo; int sock; int status; if ( (sock = socket (AF_INET, SOCK_DGRAM, 0)) < 0 ) { printf("Error creating socket!\n"); return -1; } memset(&ifInfo,0,sizeof ifInfo); strcpy(ifInfo.ifr_name,"fxp0"); if ( (status = ioctl(sock,/*SIOCSIFPHYADDR*/SIOCGIFADDR,&ifInfo)) < 0) { printf("Error %d obtaining MAC Address!\n",errno); close(sock); return -1; } else { char *p=ifInfo.ifr_data; unsigned u; printf("Pointer=%ld\nMAC Address=",(long int)p); fflush(stdout); for(u=0; u < 6; u++) printf("%d:",(int)*p); } } -------- cut -------- Gerald -- Gerald "Jerry" pfeifer@dbai.tuwien.ac.at http://www.dbai.tuwien.ac.at/~pfeifer/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 4:21: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from volyn.dppl.com (cc167606-a.union1.nj.home.com [24.3.170.57]) by hub.freebsd.org (Postfix) with ESMTP id 7FEC637B479 for ; Mon, 6 Nov 2000 04:21:04 -0800 (PST) Received: from dppl.com (localhost [127.0.0.1]) by volyn.dppl.com (8.11.1/8.9.3) with ESMTP id eA6CKvx06996; Mon, 6 Nov 2000 07:20:57 -0500 (EST) (envelope-from yds@dppl.com) Message-ID: <3A06A229.E4AEBC45@dppl.com> Date: Mon, 06 Nov 2000 07:20:57 -0500 From: Yarema X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: "David W. Chapman Jr." , ports@FreeBSD.org Subject: Re: mail/postfix-current Makefile References: <20001105070310.06FF2DB08@toast.dppl.com> <048b01c04740$b4b1bcc0$931576d8@inethouston.net> <3A05CFE4.BD2CFA4E@dppl.com> <04c901c04773$1e556d20$931576d8@inethouston.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "David W. Chapman Jr." wrote: > > are you sure none of the additional configs get installed? I cannot verify > for the man pages, but my sasl configs do get installed. I'll get on this, > but I don't think it can be committed until the code freeze isn't in effect > anymore. I'm only sure of the WITH_PCRE case. However it makes sense. If you assign to a variable with a += and later assign to the same variable with an = operator the former value will be clobbered. Even if that's not the case it's best to put things in the order that is easier to follow while reading. For me at least switching the order fixes things. It's rather simple to verify. Do a build WITH_PCRE. The etc/postfix/sample-pcre.cf etc/postfix/sample-pcre_table are accounted for in work/.PLIST.mktmp yet don't get installed. pcre_table.5 man page does not get installed either and is not accounted for since the MAN5 variable is both used to install the man page and automatically add the man pages to work/.PLIST.mktmp so they can be deinstalled later. That's why I deleted the man pages from PLIST in my original patch. After installing do: % pkg_delete postfix-20001030_1 pkg_delete: file `/usr/local/etc/postfix/sample-pcre.cf' doesn't really exist pkg_delete: file `/usr/local/etc/postfix/sample-pcre_table' doesn't really exist pkg_delete: unable to completely remove directory '/usr/local/etc/postfix' pkg_delete: couldn't entirely delete package (perhaps the packing list is incorrectly specified?) Without doing a make clean delete the following files from the work subdirectory: .PLIST.mktmp .PLIST.setuid .PLIST.startup .install_done Apply my last patch and do a make -DWITH_PCRE reinstall. This time sample-pcre.cf, sample-pcre_table and pcre_table.5 are actually installed and the man page gets accounted for in work/.PLIST.mktmp. Uninstall still gives you the warning about /usr/local/etc/postfix/ not being empty: # pkg_delete postfix-20001030_1 pkg_delete: unable to completely remove directory '/usr/local/etc/postfix' pkg_delete: couldn't entirely delete package (perhaps the packing list is incorrectly specified?) That's because the "@unexec if cmp -s ..." lines in PLIST don't work for some reason. That is a different issue and I'm not worried about it at the moment. If you care to tackle that one, go ahead. I suspect it's broken in all ports using that idiom. Or maybe I'll see why it's not working once I actually get some sleep. :) For now my patch fixes what I claim it does. -- Yarema To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 5:15:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0380937B479; Mon, 6 Nov 2000 05:15:10 -0800 (PST) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA82865; Mon, 6 Nov 2000 05:15:09 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Date: Mon, 6 Nov 2000 05:15:09 -0800 (PST) From: Message-Id: <200011061315.FAA82865@freefall.freebsd.org> To: jason@mastaler.com, jedgar@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22604: bad download locations Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: bad download locations State-Changed-From-To: open->closed State-Changed-By: jedgar State-Changed-When: Mon Nov 6 05:14:39 PST 2000 State-Changed-Why: Duplicate of ports/22607 (which contains a patch) http://www.freebsd.org/cgi/query-pr.cgi?pr=22604 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 5:18: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 98AC337B479; Mon, 6 Nov 2000 05:18:06 -0800 (PST) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA83281; Mon, 6 Nov 2000 05:18:06 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Date: Mon, 6 Nov 2000 05:18:06 -0800 (PST) From: Message-Id: <200011061318.FAA83281@freefall.freebsd.org> To: jedgar@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22638: typo in ports/misc/seisedesktop/pkg-comment Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: typo in ports/misc/seisedesktop/pkg-comment Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: jedgar Responsible-Changed-When: Mon Nov 6 05:17:51 PST 2000 Responsible-Changed-Why: Misfiled PR http://www.freebsd.org/cgi/query-pr.cgi?pr=22638 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 5:36:58 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 6AACD37B4CF; Mon, 6 Nov 2000 05:36:57 -0800 (PST) Received: by puck.firepipe.net (Postfix, from userid 1000) id 9206B18E0; Mon, 6 Nov 2000 08:36:44 -0500 (EST) Date: Mon, 6 Nov 2000 08:36:44 -0500 From: Will Andrews To: Gerald Pfeifer Cc: ports@FreeBSD.org, emulators@FreeBSD.org Subject: Re: Wine port: How to obtain MAC address? Message-ID: <20001106083644.J565@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Gerald Pfeifer , ports@FreeBSD.org, emulators@FreeBSD.org References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from pfeifer@dbai.tuwien.ac.at on Mon, Nov 06, 2000 at 01:14:56PM +0100 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Nov 06, 2000 at 01:14:56PM +0100, Gerald Pfeifer wrote: > For the Wine port I'd need to obtain the MAC address of an ethernet > interface, alas it seems that this is not easily possible the way it > is done in Linux/Solaris? Well, you could always look at the base system for examples. For example, I'm sure that what you're looking for can be found in src/sbin/ifconfig. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 6:11:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4EF5C37B479; Mon, 6 Nov 2000 06:11:09 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA90769; Mon, 6 Nov 2000 06:11:09 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Date: Mon, 6 Nov 2000 06:11:09 -0800 (PST) From: Message-Id: <200011061411.GAA90769@freefall.freebsd.org> To: ishmael27@home.com, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22630: Minor change to graphics/evas + assume maintance Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Minor change to graphics/evas + assume maintance State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Mon Nov 6 06:10:55 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22630 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 6:13:18 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D56D037B479; Mon, 6 Nov 2000 06:13:16 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA91145; Mon, 6 Nov 2000 06:13:16 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Date: Mon, 6 Nov 2000 06:13:16 -0800 (PST) From: Message-Id: <200011061413.GAA91145@freefall.freebsd.org> To: ishmael27@home.com, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22631: Assume maintance of graphics/feh Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Assume maintance of graphics/feh State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Mon Nov 6 06:12:57 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22631 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 6:40:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5490C37B4D7 for ; Mon, 6 Nov 2000 06:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA94389; Mon, 6 Nov 2000 06:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from mail.rdc1.md.home.com (ha1.rdc1.md.home.com [24.2.2.66]) by hub.freebsd.org (Postfix) with ESMTP id 3485F37B4C5 for ; Mon, 6 Nov 2000 06:31:16 -0800 (PST) Received: from cc158233-a.catv1.md.home.com ([24.3.25.17]) by mail.rdc1.md.home.com (InterMail vM.4.01.03.00 201-229-121) with ESMTP id <20001106143115.CHDQ10139.mail.rdc1.md.home.com@cc158233-a.catv1.md.home.com>; Mon, 6 Nov 2000 06:31:15 -0800 Received: (from sjr@localhost) by cc158233-a.catv1.md.home.com (8.11.0/8.11.0) id eA6EUxo57396; Mon, 6 Nov 2000 09:30:59 -0500 (EST) (envelope-from sjr) Message-Id: <200011061430.eA6EUxo57396@cc158233-a.catv1.md.home.com> Date: Mon, 6 Nov 2000 09:30:59 -0500 (EST) From: sjr@home.net Reply-To: sjr@home.net To: FreeBSD-gnats-submit@freebsd.org, kbyanc@posi.net X-Send-Pr-Version: 3.2 Subject: ports/22639: Update of NQC port to 2.2.r2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22639 >Category: ports >Synopsis: Update of NQC port to 2.2.r2 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Nov 06 06:40:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Stephen J. Roznowski >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: >Description: This updates the NQC port to the latest released version. >How-To-Repeat: >Fix: diff -ur /usr/ports/lang/nqc/Makefile /tmp/nqc/Makefile --- /usr/ports/lang/nqc/Makefile Sat Apr 29 19:48:56 2000 +++ /tmp/nqc/Makefile Mon Nov 6 09:07:17 2000 @@ -6,7 +6,7 @@ # PORTNAME= nqc -PORTVERSION= 2.1.r2 +PORTVERSION= 2.2.r2 CATEGORIES= lang MASTER_SITES= http://www.enteract.com/~dbaum/nqc/release/ diff -ur /usr/ports/lang/nqc/distinfo /tmp/nqc/distinfo --- /usr/ports/lang/nqc/distinfo Sat Apr 29 19:49:03 2000 +++ /tmp/nqc/distinfo Mon Nov 6 09:07:21 2000 @@ -1 +1 @@ -MD5 (nqc-2.1.r2.tar.gz) = b11d57fa6630f0589246a9ceea5b6322 +MD5 (nqc-2.2.r2.tar.gz) = d315a4c36227923f2c010ab8e38df083 diff -ur /usr/ports/lang/nqc/files/patch-aa /tmp/nqc/files/patch-aa --- /usr/ports/lang/nqc/files/patch-aa Sat Apr 29 19:49:03 2000 +++ /tmp/nqc/files/patch-aa Mon Nov 6 09:09:51 2000 @@ -1,6 +1,6 @@ ---- Makefile.orig Sat Mar 25 17:16:58 2000 -+++ Makefile Sat Apr 29 13:06:05 2000 -@@ -27,14 +27,14 @@ +--- Makefile.orig Sun Oct 22 14:26:06 2000 ++++ Makefile Mon Nov 6 09:08:47 2000 +@@ -28,14 +28,14 @@ # # Pick your C++ compiler. # @@ -18,16 +18,16 @@ # # Define the FLEX processor -@@ -46,7 +46,7 @@ +@@ -47,7 +47,7 @@ # Use this to define the default device driver name # for serial port connections. # -DEFAULT_SERIAL_NAME = "/dev/ttyS0" +DEFAULT_SERIAL_NAME = "/dev/cuaa0" - - # other commands -@@ -58,7 +58,7 @@ + # installation information + BINDIR=/usr/local/bin +@@ -64,7 +64,7 @@ IFLAGS=-Iplatform -Ircxlib -Inqc -Icompiler WFLAGS=-Wall -Wstrict-prototypes -Wmissing-prototypes @@ -36,3 +36,12 @@ OBJ = $(NQCOBJ) $(COBJ) $(RCXOBJ) $(POBJ) +@@ -106,7 +106,7 @@ + $(MKDIR) bin + + bin/nqc : compiler/parse.cpp $(OBJ) +- $(LD) -o $@ $(OBJ) ++ $(LD) -o $@ $(OBJ) -lstdc++ + + bin/mkdata : mkdata/mkdata.cpp nqc/SRecord.cpp + $(LD) -o bin/mkdata -Inqc/ -Iplatform/ mkdata/mkdata.cpp nqc/SRecord.cpp >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 6:49:41 2000 Delivered-To: freebsd-ports@freebsd.org Received: from roadblock.missi.ncsc.mil (roadblock.missi.ncsc.mil [144.51.50.70]) by hub.freebsd.org (Postfix) with ESMTP id B683037B479 for ; Mon, 6 Nov 2000 06:49:39 -0800 (PST) Received: from roadblock.missi.ncsc.mil (root@localhost) by roadblock.missi.ncsc.mil with ESMTP id JAA25256; Mon, 6 Nov 2000 09:27:49 -0500 (EST) Message-Id: <200011061427.JAA25245@roadblock.missi.ncsc.mil> Date: Mon, 06 Nov 2000 09:50:33 -0500 From: Rip Toren X-Mailer: Mozilla 4.75 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: dirk.meyer@dinoex.sub.org Cc: ports@FreeBSD.org Subject: FreeBSD Port: sendmail-8.11.1 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Is there any obvious reason that Sendmail-8.11.1 would not build under FBSD 2.2.8 ? Rip Toren To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 7: 2:15 2000 Delivered-To: freebsd-ports@freebsd.org Received: from nevermind.kiev.ua (unknown [212.109.53.33]) by hub.freebsd.org (Postfix) with ESMTP id 2B1BD37B4C5 for ; Mon, 6 Nov 2000 07:02:11 -0800 (PST) Received: (from never@localhost) by nevermind.kiev.ua (8.11.1/8.9.3) id eA6F28t41287 for freebsd-ports@freebsd.org; Mon, 6 Nov 2000 17:02:08 +0200 (EET) (envelope-from never) Date: Mon, 6 Nov 2000 17:02:08 +0200 From: Nevermind To: freebsd-ports@freebsd.org Subject: ports/mail/icqmail building problems Message-ID: <20001106170207.E2057@nevermind.kiev.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello! Does anyone encourted problems with building icqmail port? I'm running FreeBSD 4.2-BETA, guile-1.4, trying to build icqmail-1.2 from ports. -- Alexandr P. Kovalenko http://nevermind.kiev.ua/ NEVE-RIPE To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 7:40: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 855E537B4D7 for ; Mon, 6 Nov 2000 07:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA03660; Mon, 6 Nov 2000 07:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from mail.rdc1.md.home.com (ha1.rdc1.md.home.com [24.2.2.66]) by hub.freebsd.org (Postfix) with ESMTP id 0B6B137B4C5 for ; Mon, 6 Nov 2000 07:31:40 -0800 (PST) Received: from cc158233-a.catv1.md.home.com ([24.3.25.17]) by mail.rdc1.md.home.com (InterMail vM.4.01.03.00 201-229-121) with ESMTP id <20001106153139.EVYU10139.mail.rdc1.md.home.com@cc158233-a.catv1.md.home.com> for ; Mon, 6 Nov 2000 07:31:39 -0800 Received: (from sjr@localhost) by cc158233-a.catv1.md.home.com (8.11.0/8.11.0) id eA6FVdH85717; Mon, 6 Nov 2000 10:31:39 -0500 (EST) (envelope-from sjr) Message-Id: <200011061531.eA6FVdH85717@cc158233-a.catv1.md.home.com> Date: Mon, 6 Nov 2000 10:31:39 -0500 (EST) From: sjr@home.net Reply-To: sjr@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22641: Update for tkrat2 port to rc7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22641 >Category: ports >Synopsis: Update for tkrat2 port to rc7 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Nov 06 07:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Stephen J. Roznowski >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: >Description: This brings this port up to the current (pre-)release. >How-To-Repeat: >Fix: diff -ur /usr/ports/mail/tkrat2/Makefile /tmp/tkrat2/Makefile --- /usr/ports/mail/tkrat2/Makefile Tue Sep 5 02:56:48 2000 +++ /tmp/tkrat2/Makefile Mon Nov 6 10:05:54 2000 @@ -6,11 +6,11 @@ # PORTNAME= tkrat -PORTVERSION= 2.0.rc6 +PORTVERSION= 2.0.rc7 CATEGORIES= mail tk82 MASTER_SITES= ftp://ftp.md.chalmers.se/pub/tkrat/ \ ftp://ftp.sunet.se/pub/unix/mail/tkrat/ -DISTNAME= ${PORTNAME}-2.0rc6 +DISTNAME= ${PORTNAME}-2.0rc7 MAINTAINER= ports@FreeBSD.org diff -ur /usr/ports/mail/tkrat2/distinfo /tmp/tkrat2/distinfo --- /usr/ports/mail/tkrat2/distinfo Mon Sep 4 21:28:41 2000 +++ /tmp/tkrat2/distinfo Mon Nov 6 10:14:24 2000 @@ -1 +1 @@ -MD5 (tkrat-2.0rc6.tar.gz) = a14c3233c02deaa0da8ffe8459d53158 +MD5 (tkrat-2.0rc7.tar.gz) = f9762cb2db36a356fb9aa75df3a604ea diff -ur /usr/ports/mail/tkrat2/files/patch-aa /tmp/tkrat2/files/patch-aa --- /usr/ports/mail/tkrat2/files/patch-aa Mon Sep 4 21:28:42 2000 +++ /tmp/tkrat2/files/patch-aa Mon Nov 6 10:25:42 2000 @@ -1,6 +1,6 @@ ---- configure.orig Wed Aug 23 02:20:34 2000 -+++ configure Sat Sep 2 18:50:13 2000 -@@ -2034,7 +2034,7 @@ +--- configure.orig Sun Oct 29 03:53:39 2000 ++++ configure Mon Nov 6 10:25:01 2000 +@@ -1953,7 +1953,7 @@ for i in $tcl_dirs ; do tcl_include_dirs="$tcl_include_dirs $i/include" done >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 10: 9:12 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 17CAC37B4CF; Mon, 6 Nov 2000 10:09:11 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA32305; Mon, 6 Nov 2000 10:09:11 -0800 (PST) (envelope-from dougb@FreeBSD.org) Date: Mon, 6 Nov 2000 10:09:11 -0800 (PST) From: Message-Id: <200011061809.KAA32305@freefall.freebsd.org> To: dougb@FreeBSD.org, freebsd-ports@FreeBSD.org, peter@FreeBSD.org Subject: Re: ports/22637: [PATCH] squid 2.3 fix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] squid 2.3 fix Responsible-Changed-From-To: freebsd-ports->peter Responsible-Changed-By: dougb Responsible-Changed-When: Mon Nov 6 10:08:27 PST 2000 Responsible-Changed-Why: squid is peter's port http://www.freebsd.org/cgi/query-pr.cgi?pr=22637 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 10:26:58 2000 Delivered-To: freebsd-ports@freebsd.org Received: from net2.dinoex.sub.org (net2.dinoex.de [212.184.201.182]) by hub.freebsd.org (Postfix) with ESMTP id 67D8437B4C5 for ; Mon, 6 Nov 2000 10:26:54 -0800 (PST) Received: from gate.dinoex.sub.org (dinoex@localhost) by net2.dinoex.sub.org (8.11.1/8.11.1) with BSMTP id eA6IP5m27228 for ; Mon, 6 Nov 2000 19:25:05 +0100 (CET) (envelope-from dirk.meyer@dinoex.sub.org) X-MDaemon-Deliver-To: To: freebsd-ports@FreeBSD.ORG Message-ID: From: dirk.meyer@dinoex.sub.org (Dirk Meyer) Organization: privat Subject: Re: FreeBSD Port: sendmail-8.11.1 Date: Mon, 06 Nov 2000 19:19:25 +0100 X-Mailer: Dinoex 1.76 References: <200011061427.JAA25245@roadblock.missi.ncsc.mil> X-Gateway: ZCONNECT gate.dinoex.sub.org [UNIX/Connect 0.90] X-Accept-Language: de,en X-PGP-Fingerprint: 44 16 EC 0A D3 3A 4F 28 8A 8A 47 93 F1 CF 2F 12 X-Noad: Please don't send me ad's by mail. I'm bored by this type of mail. X-Copyright: (C) Copyright 1999 by Dirk Meyer -- All rights reserved. X-Note: sending SPAM is a violation of both german and US law and will at least trigger a complaint at your provider's postmaster. X-PGP-Key-Avail: mailto:pgp-public-keys@keys.de.pgp.net Subject:GET 0x331CDA5D X-ZC-VIA: 20001106000000W+1@dinoex.sub.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Rip Toren wrote, > Is there any obvious reason that Sendmail-8.11.1 would not > build under FBSD 2.2.8 ? I use this port on two FreeBSD 2.2.8 machines. This shall work fine for you too. You need the port-tree with new layout in /usr/ports/Mk FreeBSD 2.2.8-RELEASE #0: Sat Aug 28 14:13:00 CEST 1999 $ sendmail -d -v Version 8.11.1 Compiled with: MAP_REGEX LOG MATCHGECOS MIME7TO8 MIME8TO7 NAMED_BIND NETINET NETUNIX NEWDB NIS QUEUE SCANF SMTP USERDB XDEBUG TSL support seems possible, I am currently working on it. kind regards Dirk - Dirk Meyer, Im Grund 4, 34317 Habichtswald, Germany To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 11: 0:32 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A302037B4CF for ; Mon, 6 Nov 2000 11:00:18 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA38460 for freebsd-ports@freebsd.org; Mon, 6 Nov 2000 11:00:17 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 6 Nov 2000 11:00:17 -0800 (PST) Message-Id: <200011061900.LAA38460@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD ports list Subject: Current unassigned ports problem reports Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The report has been examined by a team member and evaluated. f - feedback The problem has been solved, and the originator has been given a patch or a fix has been committed. The PR remains in this state pending a response from the originator. s - suspended The problem is not being worked on. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested. Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2000/07/13] ports/19888 ports qpopper3 dumps core for APOP authetificat o [2000/10/14] ports/21993 ports Port graphics/sane build fails with the n 2 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2000/08/04] ports/20401 ports lang/erlang skips the build of crypto.app o [2000/08/12] ports/20564 ports [PATCH] nethack-gtk md5 correction, typo o [2000/08/13] ports/20581 ports current cdrecord port fails to install o [2000/08/17] ports/20679 ports Port of Tcpview-1.0 o [2000/08/17] ports/20680 ports ports that don't have man pages with NO_I o [2000/08/18] ports/20705 ports xwave port fails to build o [2000/08/24] ports/20819 ports XFMail 1.4.0 dumps core w/signal 6 when c o [2000/09/04] ports/21055 ports popper3 dumps core o [2000/09/07] ports/21095 ports MASTER_SITES_GNU are semi-broken [PATCH] o [2000/09/08] ports/21116 ports vmware2 does not compile on -current f [2000/09/08] ports/21126 ports httpd warnings regarding attempts to free o [2000/09/16] ports/21306 ports New ports: GB2JIS, a tool to convert GB t o [2000/09/16] ports/21319 ports ports submission - wmx10 o [2000/09/18] ports/21355 ports evg port fails to run - syntax error in a o [2000/09/18] ports/21360 ports kaffe port's PLIST file is inaccurate o [2000/09/18] ports/21386 ports compile fails on -current o [2000/09/20] ports/21417 ports ports/news/trn/pkg/PLIST misses bin/inews o [2000/09/21] ports/21448 ports msql2d.sh doesn't start the daemon o [2000/09/25] ports/21548 ports libcoro.a (ports) should use MAP_STACK wh o [2000/09/29] ports/21656 ports PGP6 port based on pgp-6.5.8 o [2000/10/05] ports/21774 ports upgrading Boehm's Garbage Collector port o [2000/10/06] ports/21780 ports audio/vorbis should not depend on xmms! o [2000/10/08] ports/21838 ports Updated port devel/sip o [2000/10/08] ports/21839 ports Updated port x11-toolkits/py-qt o [2000/10/13] ports/21951 ports ports/databases/db3: cannot configure o [2000/10/16] ports/22035 ports configure problem o [2000/10/16] ports/22036 ports StarOffice 5.2 CDROM install still fails o [2000/10/16] ports/22037 ports Missing shared xpm lib prevents windowmak o [2000/10/20] ports/22148 ports Can't make chipmunk port o [2000/10/20] ports/22172 ports freetds port does not work to access MS-S o [2000/10/21] ports/22194 ports Update Makefile for misc/heyu o [2000/10/22] ports/22227 ports boehm-gc don't work correctly in leak det o [2000/10/23] ports/22239 ports Image-Magic ports make error o [2000/10/26] ports/22311 ports upgrade of www/cadaver to the latest 1.15 o [2000/10/26] ports/22323 ports audio/lame can't fetch its source code o [2000/10/26] ports/22328 ports new port -- print/ttf2pt1 o [2000/10/27] ports/22368 ports new port x11-fonts/koi8u-monaco; new cate o [2000/10/30] ports/22421 ports New port: Enhydra 3.1 beta 1 o [2000/10/30] ports/22423 ports Update port: graphics/ImageMagick to 5.2. o [2000/10/30] ports/22425 ports new port: geminifonts -- fonts for koi8-u o [2000/10/30] ports/22436 ports port upgrade: chinese/pine4 from 4.21 to o [2000/11/02] ports/22553 ports Update port: graphics/graphviz to 1.7 o [2000/11/04] ports/22607 ports New MASTER_SITES for audio/cdrdao 43 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1999/12/14] ports/15477 ports wwwstat-2.01 port is not Y2K compliant: 1 f [2000/03/10] ports/17309 ports ports/audio/cdd doesn't support .wav outp o [2000/03/19] ports/17489 ports Zephyr port is broken with Kerberos enabl f [2000/05/02] ports/18356 ports /usr/ports/net/pipsecd build fails f [2000/05/15] ports/18582 ports joe can't read @7 termcap capability and a [2000/05/17] ports/18633 ports New port pyncurses-0.3 o [2000/06/11] ports/19212 ports New port py-amk-crypto-0.13 o [2000/06/12] ports/19227 ports Installation problem: apache13-ssl port o [2000/06/13] misc/19246 ports Poor error message when fetching files wi o [2000/06/20] ports/19403 ports portsifying of the glide3 source for dri o [2000/06/29] ports/19591 ports ssh2 port ignores 'ignorenologin' from lo f [2000/07/02] ports/19659 ports erlang port: proposal for updating the mn f [2000/07/11] ports/19854 ports [PATCH] inclusion of full mozart-oz docum f [2000/07/25] ports/20170 ports [PATCH] fvwm2-beta update o [2000/08/01] ports/20344 ports [PATCH] Port for QDraw-0.7.tar.gz o [2000/08/02] ports/20359 ports New port: Apache-mod_perl_guide o [2000/08/07] ports/20464 ports Port update of grace to 5.1.1 (included u o [2000/08/08] ports/20491 ports AbiWord-0.7.10 fails to compile on FreeBS o [2000/08/13] ports/20587 ports Update port: upsd-2.0.1.6 o [2000/08/13] ports/20588 ports New port: upsd100-2.0.1.6(sysutils/upsd10 o [2000/08/14] ports/20601 ports DESTDIR and /etc/shells o [2000/08/14] ports/20610 ports New port of cgoban2 o [2000/08/16] ports/20644 ports Installation of port DAP requires compat3 o [2000/08/16] ports/20662 ports New port of viewkit f [2000/08/16] ports/20665 ports [PATCH] Update PORTVERSION for JadeTeX po f [2000/08/17] ports/20693 ports Two patches for fxtv o [2000/08/19] ports/20722 ports New port: x11-fonts/jmk-x11-fonts f [2000/08/20] ports/20737 ports audio/cdrdao test for pccts has a LOCALBA f [2000/08/21] ports/20760 ports unfetchable mail for a resource which is o [2000/08/22] ports/20793 ports (socket-server) of clisp does not create o [2000/08/30] ports/20941 ports Port Update: *-rtems-gdb o [2000/08/31] ports/20964 ports New port: databases/hypersonicsql o [2000/08/31] ports/20975 ports update math/grace f [2000/09/02] ports/20997 ports [PATCH] Man page, install enhancements fo f [2000/09/02] ports/20998 ports [PATCH] Enhancements for Xfstt port f [2000/09/02] ports/21003 ports New Port, modification of tcopy a [2000/09/04] ports/21021 ports graphics/quickpics bogus colorspace error o [2000/09/15] ports/21291 ports New port: Free EcmaScript Interpreter (fe o [2000/09/15] ports/21293 ports An emacs major mode for editing SGML and f [2000/09/16] ports/21313 ports vmwarIPv6 and vmware2 panic: Fatal trap 1 f [2000/09/18] ports/21346 ports ports/biology/platon o [2000/09/18] ports/21356 ports New port: mbone/rat30 (rat-3.0.35), the s o [2000/09/18] ports/21389 ports g2c libraries and compatibility for DJGPP o [2000/09/19] ports/21401 ports Update port sysutils/wmtop to 0.83 with f o [2000/09/20] ports/21413 ports New port: net/zebra-server o [2000/09/20] ports/21422 ports msql install fails looking for startup sc o [2000/09/20] ports/21435 ports New port Jakarta Ant (A Java based build o [2000/09/20] ports/21441 ports FIX: devel/pcre to install a working pgre f [2000/09/21] ports/21455 ports update graphics/giram to 0.1.7 o [2000/09/22] ports/21477 ports New port: xmms-crossfade o [2000/09/23] ports/21504 ports New port: korean/tin o [2000/09/23] ports/21513 ports stunnel port should be compiled using non o [2000/09/24] ports/21515 ports pine4 complains about wrong permissions o o [2000/09/24] ports/21516 ports New FreeBSD port for Fuzz o [2000/09/24] ports/21517 ports start|stop script for upsd (/usr/local/et o [2000/09/24] ports/21520 ports Configure the synaptics touchpad. o [2000/09/24] ports/21532 ports No formal mechanism in place for discussi o [2000/09/24] ports/21533 ports A homebrewer's recipe calculator o [2000/09/25] ports/21541 ports Replacement for pr 21538 o [2000/09/25] ports/21545 ports emulators/vmware broken... o [2000/09/26] ports/21558 ports Skill fails to ID os and fails build o [2000/09/26] ports/21584 ports mpd whines if kernel has option NETGRAPH o [2000/09/27] ports/21594 ports New port: command line SMTP agent o [2000/09/27] ports/21598 ports port of wm x10 controller o [2000/09/27] ports/21602 ports misc/sls port lost distfile (by maintaine o [2000/09/27] ports/21604 ports new port: java/jad o [2000/09/30] ports/21664 ports port of gmail gnome email-client o [2000/10/01] ports/21681 ports the startup elisp file of PSGML port has o [2000/10/02] ports/21705 ports CSCOPE writes incorrect offset into index o [2000/10/02] ports/21720 ports Update port to use ADNS. o [2000/10/04] ports/21755 ports update editors/nano to 0.9.19 o [2000/10/04] ports/21759 ports New port: py-BisonGen-0.5.0 o [2000/10/04] ports/21760 ports New port: py-4Suite-0.9.0 o [2000/10/06] ports/21785 ports Update of audio/linux-realplayer o [2000/10/07] ports/21815 ports lftp port has missing dependency o [2000/10/07] ports/21825 ports slib-2c7 fails to compile in the ports co o [2000/10/07] ports/21828 ports New port: larswm, Tiling Window Manager f f [2000/10/09] ports/21875 ports Update german/webalizer (by maintainer) o [2000/10/09] ports/21878 ports Make fvwm2-beta GNOME-compliant o [2000/10/10] ports/21902 ports New port: textproc/dico - 1.1 o [2000/10/10] ports/21905 ports ports/net/bpft suggests 'pseudo-device bp o [2000/10/11] ports/21917 ports rblsmtpd needs a patch to work with relay o [2000/10/11] ports/21919 ports port update of grace to verion 5.1.2 o [2000/10/12] ports/21941 ports MPI programs compiled with NAG F95 die wi o [2000/10/12] ports/21942 ports Update nethack3 port to 3.3.1 o [2000/10/13] ports/21953 ports New port: astro/SETISupport o [2000/10/13] ports/21957 ports [PATCH] optionally do not open TCP port i o [2000/10/14] ports/21985 ports port update o [2000/10/15] ports/22001 ports Update: deskutils/plan to 1.8.4 o [2000/10/16] ports/22019 ports Ports collection update to TiK o [2000/10/16] ports/22020 ports apache13-modssl dies on alloc.c o [2000/10/16] ports/22027 ports New port: ccdoc v0.7a o [2000/10/16] ports/22039 ports /usr/ports/devel/commoncpp only builds as o [2000/10/17] ports/22047 ports New port: lang/t3x-680 o [2000/10/17] ports/22048 ports New port: devel/TIDE o [2000/10/18] ports/22085 ports new port: misc/histring o [2000/10/18] ports/22104 ports Port of software to pull data from the re o [2000/10/19] ports/22107 ports New port: japanese/emacs20-emcws o [2000/10/19] ports/22108 ports New port: feh-0.9.9 o [2000/10/19] ports/22109 ports New port: gtk+licq-0.39.1 o [2000/10/19] ports/22110 ports New port: e16keyedit-0.2 o [2000/10/19] ports/22113 ports New port: e16menuedit-0.1 o [2000/10/19] ports/22121 ports stunnel leaves zombie childes when launch o [2000/10/19] ports/22127 ports New port: A image viewer with thumbnail-b o [2000/10/20] ports/22164 ports Update port: mail/xmail o [2000/10/20] ports/22173 ports New Port: net/fidelio o [2000/10/21] ports/22203 ports new port: deskutils/loserjabber o [2000/10/21] ports/22205 ports /ports/misc/moviedb core dumps when Title f [2000/10/23] ports/22260 ports Update for tkgate port o [2000/10/25] ports/22288 ports mod_perl dependancy missing from p5-HTML- o [2000/10/25] ports/22295 ports lua 4.0 beta port o [2000/10/25] ports/22296 ports New port: cannadic - Dictionary of Canna o [2000/10/25] ports/22298 ports Move devel/p5-IniConf to devel/p5-Config- o [2000/10/25] ports/22303 ports New port: urlendec. Contains urlencode an o [2000/10/26] ports/22317 ports update devel/ftnchek port o [2000/10/26] ports/22318 ports Update port: graphics/tgif-nls to 4.1.39 o [2000/10/26] ports/22326 ports update of the mail/minimalist o [2000/10/26] ports/22330 ports New port: evas-0.0.1 o [2000/10/26] ports/22334 ports New port: geist-0.0.3 o [2000/10/26] ports/22336 ports New port: scrot-0.1 o [2000/10/27] ports/22346 ports Incorrect plist for ports/net/nocol o [2000/10/27] ports/22349 ports new port: rotate o [2000/10/27] ports/22353 ports Gabber coring upon startup f [2000/10/28] ports/22379 ports New port: libudbc f [2000/10/28] ports/22381 ports New port: misc/mango o [2000/10/29] ports/22393 ports New port: Ipe-5.0: Interactive Picture Ed o [2000/10/30] ports/22431 ports New Port: o [2000/11/01] ports/22477 ports patchset for "X manpage" errors with XFre o [2000/11/01] ports/22492 ports Fix: mail/imap-uw o [2000/11/01] ports/22493 ports Fails to build if GMAKE not set to full p o [2000/11/01] ports/22495 ports [UPDATE] ports/net/ppxp to use Tcl8.3 an o [2000/11/02] ports/22542 ports New port: devel/py-mxProxy o [2000/11/02] ports/22546 ports Update port: games/pentix o [2000/11/02] ports/22558 ports new port -- net/tcpreplay o [2000/11/02] ports/22560 ports New port: WebStone SSL o [2000/11/02] ports/22563 ports Fix: net/isc-dhcp2 -update master_site an o [2000/11/03] ports/22571 ports install fails o [2000/11/03] ports/22576 ports New port: audio/xmms-crossfade o [2000/11/03] ports/22584 ports Port fix: audio/id3lib o [2000/11/03] ports/22585 ports New port: qsubst-1.0 o [2000/11/03] ports/22591 ports Update port: audio/timidity++ o [2000/11/03] ports/22592 ports Update port: audio/timidity++-emacs o [2000/11/04] ports/22603 ports vorbis-tools depends on libgnugetopt o [2000/11/04] ports/22605 ports xmcd port depends on mailx port o [2000/11/04] ports/22608 ports The port needs g++ 2.95.2 o [2000/11/04] ports/22610 ports missing automake dep in libao, libogg, li o [2000/11/04] ports/22611 ports New port: audio/gdrdao o [2000/11/04] ports/22613 ports FIX: mail/postfix-current Makefile o [2000/11/05] ports/22615 ports fix for xdm to cope with PAM o [2000/11/05] ports/22616 ports new port of GQmpeg (devel version) o [2000/11/05] ports/22619 ports Fix mail/sendmail (by maintainer) o [2000/11/05] ports/22629 ports Changes and maintance of graphics/imlib2- o [2000/11/05] ports/22632 ports New port: textproc/gsed - 3.02 o [2000/11/06] ports/22636 ports Port fix: devel/fnorb (maintainer) o [2000/11/06] ports/22638 ports typo in ports/misc/seisedesktop/pkg-comme o [2000/11/06] ports/22639 ports Update of NQC port to 2.2.r2 o [2000/11/06] ports/22641 ports Update for tkrat2 port to rc7 157 problems total. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 11: 4:15 2000 Delivered-To: freebsd-ports@freebsd.org Received: from seven.watermarkgroup.com (seven.watermarkgroup.com [207.202.73.98]) by hub.freebsd.org (Postfix) with ESMTP id 3DE3237B4CF; Mon, 6 Nov 2000 11:04:09 -0800 (PST) Received: (from luoqi@localhost) by seven.watermarkgroup.com (8.9.3/8.9.3) id OAA09537; Mon, 6 Nov 2000 14:04:08 -0500 (EST) (envelope-from luoqi) Date: Mon, 6 Nov 2000 14:04:08 -0500 (EST) From: Luoqi Chen Message-Id: <200011061904.OAA09537@seven.watermarkgroup.com> To: emulation@FreeBSD.ORG, pfeifer@dbai.tuwien.ac.at, ports@FreeBSD.ORG Subject: Re: Wine port: How to obtain MAC address? In-Reply-To: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > For the Wine port I'd need to obtain the MAC address of an ethernet > interface, alas it seems that this is not easily possible the way it > is done in Linux/Solaris? > > For Linux, the code in Wine looks as follows: > > strcpy(ifInfo.ifr_name, ifName); > if (ioctl(sock, SIOCGIFHWADDR, &ifInfo) < 0) > { > ERR ("Error obtaining MAC Address!\n"); > close(sock); > return (-1); > } > else > { > /* FIXME: Is it correct to assume size of 6? */ > memcpy(IntInfo->if_physaddr, ifInfo.ifr_hwaddr.sa_data, 6); > IntInfo->if_physaddrlen=6; > } > > For FreeBSD I tried the following program, which doesn't really do what > I want. If I use SIOCSIFPHYADDR, I get errno=22, and SIOCGIFADDR leads > to a crash later on. > > Any hints? (Most probably I'm tried completely stupid things, but > unfortunately, that part of the system is not really documented apart > from the include files, so I had to take a guess&check approach. :-( ) > There's no easy way (that I know of) to get the mac address in FreeBSD. (time for a SIOCGIFLLADDR?) You may look at how ifconfig does it, but I think the following method is a little bit easier: #include #include #include #include #include #include #include main() { struct ifconf ifc; struct ifreq *ifr; struct sockaddr_dl *sdl; char buf[4096], *p; int s; s = socket(AF_INET, SOCK_DGRAM, 0); if (s < 0) err(-1, "socket"); ifc.ifc_len = sizeof buf; ifc.ifc_buf = buf; if (ioctl(s, SIOCGIFCONF, &ifc) < 0) err(-1, "ioctl"); close(s); for (p = buf; p < buf + ifc.ifc_len; ) { ifr = (struct ifreq *)p; if (ifr->ifr_addr.sa_family == AF_LINK) { sdl = (struct sockaddr_dl *)&ifr->ifr_addr; if (sdl->sdl_type == IFT_ETHER) { unsigned char *ea = LLADDR(sdl); printf("%s\t%x:%x:%x:%x:%x:%x\n", ifr->ifr_name, ea[0], ea[1], ea[2], ea[3], ea[4], ea[5]); } } p += _SIZEOF_ADDR_IFREQ(*ifr); } } -lq To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 12: 0:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 332CE37B4F9 for ; Mon, 6 Nov 2000 12:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA49181; Mon, 6 Nov 2000 12:00:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from mail.umtss.co.uk (www.silverwraith.com [212.25.240.44]) by hub.freebsd.org (Postfix) with SMTP id 0350E37B4CF for ; Mon, 6 Nov 2000 11:58:09 -0800 (PST) Received: (qmail 75089 invoked by uid 0); 6 Nov 2000 19:58:09 -0000 Message-Id: <20001106195809.75088.qmail@mail.umtss.co.uk> Date: 6 Nov 2000 19:58:09 -0000 From: av@silverwraith.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22646: SAINT doesn't install correctly Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22646 >Category: ports >Synopsis: SAINT doesn't install correctly >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Nov 06 12:00:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: Charlie & >Release: FreeBSD 4.1-RELEASE i386 >Organization: >Environment: Latest version of the ports collection collected from cvsup.uk.freebsd.org on 5/11/2000 >Description: When you make install in /usr/ports/security/saint , the /usr/ports/security/saint/work/config directory isn't copied to /usr/local/saint . As a result SAINT refuses to start. >How-To-Repeat: cd to /usr/ports/security/saint and make install >Fix: unknown (basically, /usr/ports/security/saint/work/config needs to be copied) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 13: 1: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from servidorcorreo.edunet.es (servidorcorreo.edunet.es [195.76.146.6]) by hub.freebsd.org (Postfix) with ESMTP id 4F58037B4C5 for ; Mon, 6 Nov 2000 13:01:03 -0800 (PST) Received: from airtel.net ([62.36.167.128]) by servidorcorreo.edunet.es (Netscape Messaging Server 4.15) with ESMTP id G3MF6600.MEL for ; Mon, 6 Nov 2000 21:49:18 +0100 Message-ID: <3A071C33.AFE6CE69@airtel.net> Date: Mon, 06 Nov 2000 22:01:39 +0100 From: Sumelco X-Mailer: Mozilla 4.7 [en] (WinNT; I) X-Accept-Language: en MIME-Version: 1.0 To: ports@FreeBSD.org, ports@freebsd.org Subject: Installation process Content-Type: multipart/alternative; boundary="------------BE4BA7586F4028E86731D0DF" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --------------BE4BA7586F4028E86731D0DF Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi, We are trying to install gmake port from your web but we have the following question: We download the gmake source code, that is gmake-3.79_1.tgz. But there is also a file called, gmake.tar ( What you call the Skeleton: File, MakeFile, Patches....) If we download both of them they have different paths and therefore when we unzip them they will be separated in different directories: gmake-3.79_1.tgz creates the directory "make-3.79.1" gmake.tar creates the directory /pub/FreeBSD/branches/-current/ports/devel/gettext What do we need for the installation? Both or only the source code. If we need both, and we put make install in the make-3.79.1 directory, does it realized where the skeleton is and mix it in the compilation process? Yes or no. Please help us in this installation process. Many thanks. --------------BE4BA7586F4028E86731D0DF Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit Hi,
We are trying to install gmake port from your web but we have the following question:

We download the gmake source code, that is gmake-3.79_1.tgz. But there is also a file called, gmake.tar ( What you call the Skeleton: File, MakeFile, Patches....)

If we download both of them they have different paths and therefore when we unzip them they will be separated in different directories:

gmake-3.79_1.tgz creates the directory "make-3.79.1"
gmake.tar creates the directory /pub/FreeBSD/branches/-current/ports/devel/gettext

What do we need for the installation? Both or only the source code.
If we need both, and we put make install in the make-3.79.1 directory, does it realized where the skeleton is and mix it in the compilation process? Yes or no.

Please help us in this installation process.

Many thanks.
 
  --------------BE4BA7586F4028E86731D0DF-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 13: 6: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from wormhole.bluestar.net (wormhole.bluestar.net [208.53.1.61]) by hub.freebsd.org (Postfix) with ESMTP id 1429A37B4D7 for ; Mon, 6 Nov 2000 13:06:06 -0800 (PST) Received: from planetwe.com (admin.planetwe.com [64.182.69.146]) by wormhole.bluestar.net (8.10.1/8.10.1) with ESMTP id eA6L62l05100; Mon, 6 Nov 2000 15:06:02 -0600 (CST) Message-ID: <3A071D3A.6AFA8FA5@planetwe.com> Date: Mon, 06 Nov 2000 15:06:02 -0600 From: Drew Sanford X-Mailer: Mozilla 4.72 [en] (X11; I; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Sumelco Cc: ports@FreeBSD.ORG Subject: Re: Installation process References: <3A071C33.AFE6CE69@airtel.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Have you tried cd /usr/ports/devel/gmake and type make install yet, or did that fail for some reason and are trying to work around it? If this failed, please send the errors to the list so that someone can help you. Sumelco wrote: > > Hi, > We are trying to install gmake port from your web but we have the > following question: > > We download the gmake source code, that is gmake-3.79_1.tgz. But there > is also a file called, gmake.tar ( What you call the Skeleton: File, > MakeFile, Patches....) > > If we download both of them they have different paths and therefore > when we unzip them they will be separated in different directories: > > gmake-3.79_1.tgz creates the directory "make-3.79.1" > gmake.tar creates the directory > /pub/FreeBSD/branches/-current/ports/devel/gettext > > What do we need for the installation? Both or only the source code. > If we need both, and we put make install in the make-3.79.1 directory, > does it realized where the skeleton is and mix it in the compilation > process? Yes or no. > > Please help us in this installation process. > > Many thanks. > > -- Drew Sanford Systems Administrator Planetwe.com Email: drew@planetwe.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 13:10: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CF74437B479 for ; Mon, 6 Nov 2000 13:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA60778; Mon, 6 Nov 2000 13:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from chg.ru (netserv1.chg.ru [193.233.46.3]) by hub.freebsd.org (Postfix) with ESMTP id 26FC037B4CF for ; Mon, 6 Nov 2000 13:02:26 -0800 (PST) Received: (from dima@localhost) by chg.ru (8.9.3/8.9.3) id AAA62558; Tue, 7 Nov 2000 00:02:20 +0300 (MSK) (envelope-from dima) Message-Id: <200011062102.AAA62558@chg.ru> Date: Tue, 7 Nov 2000 00:02:20 +0300 (MSK) From: "Dmitry S. Sivachenko" Reply-To: dima@Chg.RU To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22649: Update port: www/calamaris Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22649 >Category: ports >Synopsis: Update port: www/calamaris >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Nov 06 13:10:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Dmitry S. Sivachenko >Release: FreeBSD 3.3-RELEASE i386 >Organization: >Environment: >Description: >How-To-Repeat: >Fix: diff -Nur calamaris.old/Makefile calamaris/Makefile --- calamaris.old/Makefile Sat Oct 14 19:30:24 2000 +++ calamaris/Makefile Mon Nov 6 22:57:07 2000 @@ -6,7 +6,7 @@ # PORTNAME= calamaris -PORTVERSION= 2.39 +PORTVERSION= 2.40 CATEGORIES= www textproc MASTER_SITES= http://cord.de/tools/squid/calamaris/ \ ftp://ftp.gpad.ac.ru/pub/FreeBSD/distfiles/ diff -Nur calamaris.old/distinfo calamaris/distinfo --- calamaris.old/distinfo Sat Oct 14 00:33:11 2000 +++ calamaris/distinfo Mon Nov 6 22:57:10 2000 @@ -1 +1 @@ -MD5 (calamaris-2.39.tar.gz) = 4397ecb20c4dbbedc30e4fd58e80c499 +MD5 (calamaris-2.40.tar.gz) = 9392c0c71c8c26c2daa17ce1f90cff36 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 14:10:43 2000 Delivered-To: freebsd-ports@freebsd.org Received: from polka.cgit.com (polka.cgit.com [4.21.133.10]) by hub.freebsd.org (Postfix) with ESMTP id 54B6F37B479 for ; Mon, 6 Nov 2000 14:10:37 -0800 (PST) Received: from cgit.com (unverified [4.21.133.231]) by polka.cgit.com (Rockliffe SMTPRA 4.2.0) with ESMTP id for ; Mon, 6 Nov 2000 18:21:20 -0400 Message-ID: <3A072B75.30500E9D@cgit.com> Date: Mon, 06 Nov 2000 18:06:45 -0400 From: Georges Chenard Reply-To: gc@mail.dotcom.fr X-Mailer: Mozilla 4.72 [en] (X11; I; Linux 2.2.12 i386) X-Accept-Language: fr, pt-BR, en MIME-Version: 1.0 To: ports Subject: make readmes Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello ! I'have just cvsuped the ports collection. Impossible to do a make readmes (or a make clean). It stops with the following message : Error: bad value for PYTHON_VERSION: python1.6. Use one of python1.5 or python2.0 (default). What to do ? Please excuse me if it is not the right place to ask. -- Georges Chenard "Dans un univers de cyclistes, seuls les sophistes freinent. Les autres se graissent la patte." Mandryka To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 14:10:51 2000 Delivered-To: freebsd-ports@freebsd.org Received: from polka.cgit.com (polka.cgit.com [4.21.133.10]) by hub.freebsd.org (Postfix) with ESMTP id F0FDD37B4D7 for ; Mon, 6 Nov 2000 14:10:40 -0800 (PST) Received: from cgit.com (unverified [4.21.133.231]) by polka.cgit.com (Rockliffe SMTPRA 4.2.0) with ESMTP id for ; Mon, 6 Nov 2000 18:21:14 -0400 Message-ID: <3A0729D5.8FA51655@cgit.com> Date: Mon, 06 Nov 2000 17:59:49 -0400 From: Georges Chenard Reply-To: gc@mail.dotcom.fr X-Mailer: Mozilla 4.72 [en] (X11; I; Linux 2.2.12 i386) X-Accept-Language: fr, pt-BR, en MIME-Version: 1.0 To: ports Subject: JX-1.5.3 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi ! Trying to install systemg, I have the following result : ===> Extracting for systemg-1.0.1 >> Checksum OK for SystemG_source-1.0.1.tar.gz. ===> systemg-1.0.1 depends on file: /nonexistent - not found ===> Verifying configure for /nonexistent in /usr/ports/x11-toolkits/jx ===> Extracting for JX-1.5.3_1 >> Checksum OK for JX_source-1.5.3.tar.gz. ===> JX-1.5.3_1 depends on executable: autoconf - found ===> JX-1.5.3_1 depends on executable: gmake - found ===> JX-1.5.3_1 depends on executable: bison - found ===> JX-1.5.3_1 depends on shared library: png.4 - found ===> JX-1.5.3_1 depends on shared library: Xpm.4 - found ===> JX-1.5.3_1 depends on shared library: X11.6 - found ===> Patching for JX-1.5.3_1 ===> Applying FreeBSD patches for JX-1.5.3_1 2 out of 4 hunks failed--saving rejects to FreeBSD-2.x_g++.in.rej *** Error code 2 Solution ? Thanks. -- Georges Chenard "Dans un univers de cyclistes, seuls les sophistes freinent. Les autres se graissent la patte." Mandryka To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 15:12:39 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mailman.sprintlabs.com (mx.sprintlabs.com [208.30.174.2]) by hub.freebsd.org (Postfix) with ESMTP id 1A6B837B479 for ; Mon, 6 Nov 2000 15:12:36 -0800 (PST) Received: from sprintlabs.com (ip199-2-53-135.sprintlabs.com [199.2.53.135]) by mailman.sprintlabs.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2652.78) id 47VNGSDG; Mon, 6 Nov 2000 15:12:28 -0800 Message-ID: <3A073BED.FA6DA2D2@sprintlabs.com> Date: Mon, 06 Nov 2000 15:17:01 -0800 From: Steve Davidson Reply-To: sdn@sprintlabs.com X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 4.1.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: mb@imp.ch Cc: ports@FreeBSD.org Subject: FreeBSD Port: staroffice-5.2 Content-Type: multipart/alternative; boundary="------------4301A4E24439A7CB8F8A4464" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --------------4301A4E24439A7CB8F8A4464 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit I cannot get this port to install staroffice of my FreeBSD-4.1.1-RELEASE. Here is the output: % make NO_CHECKSUM=yes ===> Extracting for staroffice-5.2 ===> staroffice-5.2 depends on: /usr/ports/emulators/linux_base ===> Verifying install for /usr/ports/emulators/linux_base ===> Installing for linux_base-6.1 setup-2.0.5-1.noarch.rpm filesystem-1.3.5-1.noarch.rpm basesystem-6.0-4.noarch.rpm ldconfig-1.9.5-15.i386.rpm [...] binutils-2.9.1.0.23-6.i386.rpm gd-1.3-5.i386.rpm gdbm-1.8.0-2.i386.rpm glib-1.2.5-1.i386.rpm package glib-1.2.6-2 (which is newer) is already installed error: /usr/ports/distfiles/rpm/glib-1.2.5-1.i386.rpm cannot be installed *** Error code 1 Notice I have a *NEWER* package. What do I do? If it matters: % sum so-5_2-ga-bin-linux-en.bin 16762 65536 so-5_2-ga-bin-linux-en.bin % wc so-5_2-ga-bin-linux-en.bin 247643 1466549 67108864 so-5_2-ga-bin-linux-en.bin --------------4301A4E24439A7CB8F8A4464 Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit I cannot get this port to install staroffice  of my FreeBSD-4.1.1-RELEASE.
Here is the output:
 

% make NO_CHECKSUM=yes
===>  Extracting for staroffice-5.2
===>   staroffice-5.2 depends on: /usr/ports/emulators/linux_base
===>    Verifying install for /usr/ports/emulators/linux_base
===>  Installing for linux_base-6.1
setup-2.0.5-1.noarch.rpm
filesystem-1.3.5-1.noarch.rpm
basesystem-6.0-4.noarch.rpm
ldconfig-1.9.5-15.i386.rpm
[...]
binutils-2.9.1.0.23-6.i386.rpm
gd-1.3-5.i386.rpm
gdbm-1.8.0-2.i386.rpm
glib-1.2.5-1.i386.rpm
package glib-1.2.6-2 (which is newer) is already installed
error: /usr/ports/distfiles/rpm/glib-1.2.5-1.i386.rpm cannot be installed
*** Error code 1
 

Notice I have a *NEWER* package.  What do I do?

If it matters:
% sum so-5_2-ga-bin-linux-en.bin
16762 65536 so-5_2-ga-bin-linux-en.bin
% wc so-5_2-ga-bin-linux-en.bin
  247643 1466549 67108864 so-5_2-ga-bin-linux-en.bin
  --------------4301A4E24439A7CB8F8A4464-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 15:30:14 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4990837B4CF for ; Mon, 6 Nov 2000 15:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA79118; Mon, 6 Nov 2000 15:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 31D5737B4CF; Mon, 6 Nov 2000 15:29:19 -0800 (PST) Message-Id: <20001106232919.31D5737B4CF@hub.freebsd.org> Date: Mon, 6 Nov 2000 15:29:19 -0800 (PST) From: mheffner@vt.edu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/22653: [PATCH] devel/amulet doesn't compile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22653 >Category: ports >Synopsis: [PATCH] devel/amulet doesn't compile >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Nov 06 15:30:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Mike Heffner >Release: 5-current >Organization: >Environment: FreeBSD 5.0-CURRENT #0: Thu Nov 2 18:21:33 EST 2000 i386 >Description: The port devel/amulet does not compile in many places. Patches were originally sent to the maintainer, but the address bounces. >How-To-Repeat: Try building the devel/amulet port. >Fix: apply patches: (also available from: http://my.ispchannel.com/~mheffner/patches/amulet.tar.gz) diff -X /tmp/xclude -ur /home/spock/stuff/amulet/include/amulet/gemM.h /usr/ports/devel/amulet/work/amulet/include/amulet/gemM.h --- /home/spock/stuff/amulet/include/amulet/gemM.h Tue Jun 10 17:01:40 1997 +++ /usr/ports/devel/amulet/work/amulet/include/amulet/gemM.h Mon Nov 6 02:35:48 2000 @@ -524,7 +524,7 @@ Am_Point_Array_Data (int size); ~Am_Point_Array_Data (); - operator== (Am_Point_Array_Data&) + bool operator== (Am_Point_Array_Data&) { return false; } protected: @@ -584,7 +584,7 @@ Am_Time_Data(Am_Time_Data* other) { time.tv_usec = other->time.tv_usec; time.tv_sec = other->time.tv_sec; } timeval time; - operator== (Am_Time_Data& other) + bool operator== (Am_Time_Data& other) { return time.tv_usec == other.time.tv_usec && time.tv_sec == other.time.tv_sec; } void Print (ostream& out) const; diff -X /tmp/xclude -ur /home/spock/stuff/amulet/include/amulet/gemX.h /usr/ports/devel/amulet/work/amulet/include/amulet/gemX.h --- /home/spock/stuff/amulet/include/amulet/gemX.h Tue Jun 24 13:30:31 1997 +++ /usr/ports/devel/amulet/work/amulet/include/amulet/gemX.h Mon Nov 6 02:24:17 2000 @@ -576,7 +576,7 @@ ~Am_Font_Data (); - operator== (Am_Font_Data&) + bool operator== (Am_Font_Data&) { return false; } void Add_Font (Display*, XFontStruct*); @@ -656,7 +656,7 @@ bool Get_Cursor (Display*, Cursor&); // I think I need this for a wrapper class - operator== (Am_Cursor_Data&) + bool operator== (Am_Cursor_Data&) { return false; } Display* main_display; @@ -724,7 +724,7 @@ ~Am_Image_Array_Data (); - operator== (Am_Image_Array_Data&) + bool operator== (Am_Image_Array_Data&) { return false; } Pixmap Get_X_Pixmap (const Am_Drawonable_Impl* draw); @@ -823,7 +823,7 @@ Am_Style_Data (); ~Am_Style_Data (); - operator== (Am_Style_Data&) + bool operator== (Am_Style_Data&) { return false; } void Add_Color_Index (Display*, XColor); @@ -883,7 +883,7 @@ Am_Point_Array_Data (int size); ~Am_Point_Array_Data (); - operator== (Am_Point_Array_Data&) + bool operator== (Am_Point_Array_Data&) { return false; } protected: diff -X /tmp/xclude -ur /home/spock/stuff/amulet/include/amulet/object_advanced.h /usr/ports/devel/amulet/work/amulet/include/amulet/object_advanced.h --- /home/spock/stuff/amulet/include/amulet/object_advanced.h Sun Dec 15 12:15:48 1996 +++ /usr/ports/devel/amulet/work/amulet/include/amulet/object_advanced.h Mon Nov 6 01:43:35 2000 @@ -252,9 +252,9 @@ Am_Slot (Am_Slot_Data* in_data) { data = in_data; } - operator== (const Am_Slot& test) const + bool operator== (const Am_Slot& test) const { return data == test.data; } - operator!= (const Am_Slot& test) const + bool operator!= (const Am_Slot& test) const { return data != test.data; } operator Am_Slot_Data* () const { return data; } diff -X /tmp/xclude -ur /home/spock/stuff/amulet/include/amulet/rich_text.h /usr/ports/devel/amulet/work/amulet/include/amulet/rich_text.h --- /home/spock/stuff/amulet/include/amulet/rich_text.h Wed May 7 14:02:24 1997 +++ /usr/ports/devel/amulet/work/amulet/include/amulet/rich_text.h Mon Nov 6 01:37:37 2000 @@ -169,7 +169,7 @@ inline Am_Text_Fragment* Get_Fragment_At( const Am_Text_Index inIndex ) const; - inline Move_Cursor( Am_Cursor& inCursor, Am_Cursor_Move inMove ) const; + // inline Move_Cursor( Am_Cursor& inCursor, Am_Cursor_Move inMove ) const; }; /****************************************************************************** @@ -770,8 +770,8 @@ * Am_Text_Fragment */ -const kFragStrSize = 1024; -const kMinFragBreak = kFragStrSize / 2; +const unsigned int kFragStrSize = 1024; +const unsigned int kMinFragBreak = kFragStrSize / 2; class Am_Text_Fragment { diff -X /tmp/xclude -ur /home/spock/stuff/amulet/include/amulet/widgets_advanced.h /usr/ports/devel/amulet/work/amulet/include/amulet/widgets_advanced.h --- /home/spock/stuff/amulet/include/amulet/widgets_advanced.h Mon Jul 21 09:49:07 1997 +++ /usr/ports/devel/amulet/work/amulet/include/amulet/widgets_advanced.h Mon Nov 6 01:44:16 2000 @@ -51,7 +51,7 @@ } Computed_Colors_Record_Data (const Am_Style& foreground); Computed_Colors_Record_Data (Computed_Colors_Record_Data*); - operator== (Computed_Colors_Record_Data&) + bool operator== (Computed_Colors_Record_Data&) { return false; } // destructor virtual ~Computed_Colors_Record_Data (); Only in /usr/ports/devel/amulet/work/amulet/lib: libamulet-release.a Only in /usr/ports/devel/amulet/work/amulet/lib: libamulet-release.so Only in /usr/ports/devel/amulet/work/amulet/lib: libamulet-release.so.3 Only in /usr/ports/devel/amulet/work/amulet/lib: libamulet.so Only in /usr/ports/devel/amulet/work/amulet/lib: libamulet.so.3 diff -X /tmp/xclude -ur /home/spock/stuff/amulet/src/anim/testanimators.cc /usr/ports/devel/amulet/work/amulet/src/anim/testanimators.cc --- /home/spock/stuff/amulet/src/anim/testanimators.cc Mon May 5 13:25:23 1997 +++ /usr/ports/devel/amulet/work/amulet/src/anim/testanimators.cc Mon Nov 6 13:19:43 2000 @@ -278,7 +278,7 @@ else if (c == 'r') Mover.Set (Am_VISIBLE, !(bool)Mover.Get(Am_VISIBLE)); else if (c == 'i') { - static debugging = false; + static bool debugging = false; if (!debugging) Am_Set_Inter_Trace(Am_INTER_TRACE_ALL); else Am_Set_Inter_Trace(Am_INTER_TRACE_NONE); debugging = !debugging; diff -X /tmp/xclude -ur /home/spock/stuff/amulet/src/debug/inspector.cc /usr/ports/devel/amulet/work/amulet/src/debug/inspector.cc --- /home/spock/stuff/amulet/src/debug/inspector.cc Mon Jul 21 05:50:20 1997 +++ /usr/ports/devel/amulet/work/amulet/src/debug/inspector.cc Mon Nov 6 03:02:04 2000 @@ -3311,7 +3311,7 @@ Am_Set_Reason reason) { #ifdef DEBUG - static flag = 0; + static int flag = 0; if (flag) return; // prevent recursive call. // We have a single global variable controlling refresh of all inspector // windows. Without this, we'd still need to do a list traverse below, diff -X /tmp/xclude -ur /home/spock/stuff/amulet/src/gem/gemW_cursor.h /usr/ports/devel/amulet/work/amulet/src/gem/gemW_cursor.h --- /home/spock/stuff/amulet/src/gem/gemW_cursor.h Wed Oct 9 19:58:10 1996 +++ /usr/ports/devel/amulet/work/amulet/src/gem/gemW_cursor.h Mon Nov 6 02:36:46 2000 @@ -15,7 +15,7 @@ Am_Cursor_Data (Am_Image_Array image, Am_Image_Array mask); virtual ~Am_Cursor_Data (); - operator== (Am_Cursor_Data&) + bool operator== (Am_Cursor_Data&) { return false; } public: diff -X /tmp/xclude -ur /home/spock/stuff/amulet/src/gem/gemW_image.h /usr/ports/devel/amulet/work/amulet/src/gem/gemW_image.h --- /home/spock/stuff/amulet/src/gem/gemW_image.h Tue Jan 28 12:20:49 1997 +++ /usr/ports/devel/amulet/work/amulet/src/gem/gemW_image.h Mon Nov 6 02:37:05 2000 @@ -28,7 +28,7 @@ Am_Image_Array_Data (Am_Image_Array_Data* proto, int width, int height); virtual ~Am_Image_Array_Data(); - operator== (Am_Image_Array_Data&) + bool operator== (Am_Image_Array_Data&) { return false; } public: diff -X /tmp/xclude -ur /home/spock/stuff/amulet/src/gem/gemW_points.h /usr/ports/devel/amulet/work/amulet/src/gem/gemW_points.h --- /home/spock/stuff/amulet/src/gem/gemW_points.h Tue Dec 17 13:36:36 1996 +++ /usr/ports/devel/amulet/work/amulet/src/gem/gemW_points.h Mon Nov 6 02:37:21 2000 @@ -30,7 +30,7 @@ Am_Point_Array_Data (int size); ~Am_Point_Array_Data (); - operator== (Am_Point_Array_Data&) + bool operator== (Am_Point_Array_Data&) { return false; } protected: diff -X /tmp/xclude -ur /home/spock/stuff/amulet/src/gem/gemW_styles.h /usr/ports/devel/amulet/work/amulet/src/gem/gemW_styles.h --- /home/spock/stuff/amulet/src/gem/gemW_styles.h Tue May 20 05:25:51 1997 +++ /usr/ports/devel/amulet/work/amulet/src/gem/gemW_styles.h Mon Nov 6 02:37:45 2000 @@ -35,7 +35,7 @@ virtual ~Am_Style_Data (); - operator== (Am_Style_Data&) + bool operator== (Am_Style_Data&) { return false; } virtual const char *Get_Color_Name (); diff -X /tmp/xclude -ur /home/spock/stuff/amulet/src/gem/gemW_text.h /usr/ports/devel/amulet/work/amulet/src/gem/gemW_text.h --- /home/spock/stuff/amulet/src/gem/gemW_text.h Mon Jan 13 05:59:01 1997 +++ /usr/ports/devel/amulet/work/amulet/src/gem/gemW_text.h Mon Nov 6 02:38:13 2000 @@ -20,7 +20,7 @@ ~Am_Font_Data (); public: - operator== (Am_Font_Data&) + bool operator== (Am_Font_Data&) { return false; } HFONT WinFont (HDC hdc); diff -X /tmp/xclude -ur /home/spock/stuff/amulet/src/gem/gemW_time.h /usr/ports/devel/amulet/work/amulet/src/gem/gemW_time.h --- /home/spock/stuff/amulet/src/gem/gemW_time.h Mon Jan 13 05:59:03 1997 +++ /usr/ports/devel/amulet/work/amulet/src/gem/gemW_time.h Mon Nov 6 02:39:22 2000 @@ -17,7 +17,7 @@ Am_Time_Data(Am_Time_Data* other) { time = other->time; } unsigned long time; - operator== (Am_Time_Data& other) + bool operator== (Am_Time_Data& other) { return time == other.time; } }; diff -X /tmp/xclude -ur /home/spock/stuff/amulet/src/gem/gemX_draw.cc /usr/ports/devel/amulet/work/amulet/src/gem/gemX_draw.cc --- /home/spock/stuff/amulet/src/gem/gemX_draw.cc Tue Aug 5 09:11:19 1997 +++ /usr/ports/devel/amulet/work/amulet/src/gem/gemX_draw.cc Mon Nov 6 02:48:26 2000 @@ -892,7 +892,7 @@ // if we have a match, do no work. if (XAllocColor(screen->display, screen->colormap, &c)) return; - static flag = 0; + static int flag = 0; if (!flag) { cerr << "** No color cells left; using closest match.\n"; flag = 1; diff -X /tmp/xclude -ur /home/spock/stuff/amulet/src/gem/gemX_time.h /usr/ports/devel/amulet/work/amulet/src/gem/gemX_time.h --- /home/spock/stuff/amulet/src/gem/gemX_time.h Mon Jan 13 05:59:09 1997 +++ /usr/ports/devel/amulet/work/amulet/src/gem/gemX_time.h Mon Nov 6 02:33:11 2000 @@ -19,7 +19,7 @@ Am_Time_Data(Am_Time_Data* other) { time.tv_usec = other->time.tv_usec; time.tv_sec = other->time.tv_sec; } timeval time; - operator== (Am_Time_Data& other) + bool operator== (Am_Time_Data& other) { return time.tv_usec == other.time.tv_usec && time.tv_sec == other.time.tv_sec; } }; diff -X /tmp/xclude -ur /home/spock/stuff/amulet/src/gem/gem_points.cc /usr/ports/devel/amulet/work/amulet/src/gem/gem_points.cc --- /home/spock/stuff/amulet/src/gem/gem_points.cc Fri Feb 21 07:12:54 1997 +++ /usr/ports/devel/amulet/work/amulet/src/gem/gem_points.cc Mon Nov 6 02:16:39 2000 @@ -41,7 +41,7 @@ Am_Point_List_Data (int *ar, int size); Am_Point_List_Data (float *ar, int size); ~Am_Point_List_Data (); - operator== (const Am_Point_List_Data&) const + bool operator== (const Am_Point_List_Data&) const { return false; } void Add (float x, float y, Am_Add_Position position); void Insert (float x, float y, Am_Point_Item* current, diff -X /tmp/xclude -ur /home/spock/stuff/amulet/src/gesture/gest_classifier.cc /usr/ports/devel/amulet/work/amulet/src/gesture/gest_classifier.cc --- /home/spock/stuff/amulet/src/gesture/gest_classifier.cc Mon Jan 13 05:59:17 1997 +++ /usr/ports/devel/amulet/work/amulet/src/gesture/gest_classifier.cc Mon Nov 6 01:58:39 2000 @@ -351,7 +351,7 @@ static double MahalanobisDistance(register Vector v, register Vector u, register Matrix sigma) { - register i; + register int i; static Vector space; double result; diff -X /tmp/xclude -ur /home/spock/stuff/amulet/src/gesture/gest_impl.h /usr/ports/devel/amulet/work/amulet/src/gesture/gest_impl.h --- /home/spock/stuff/amulet/src/gesture/gest_impl.h Mon Jan 13 05:59:19 1997 +++ /usr/ports/devel/amulet/work/amulet/src/gesture/gest_impl.h Mon Nov 6 01:54:08 2000 @@ -78,7 +78,7 @@ ~Am_Feature_Vector_Data (); - operator== (Am_Feature_Vector_Data&) + bool operator== (Am_Feature_Vector_Data&) { return false; } void Add_Point (int x, int y); @@ -139,7 +139,7 @@ ~Am_Gesture_Classifier_Data (); - operator== (Am_Gesture_Classifier_Data&) + bool operator== (Am_Gesture_Classifier_Data&) { return false; } Am_String Classify (Am_Feature_Vector fv, double *nap = 0, double *dist = 0); @@ -182,7 +182,7 @@ ~Am_Gesture_Trainer_Data (); - operator== (Am_Gesture_Trainer_Data&) + bool operator== (Am_Gesture_Trainer_Data&) { return false; } struct Gesture_Class { diff -X /tmp/xclude -ur /home/spock/stuff/amulet/src/gesture/gest_matrix.cc /usr/ports/devel/amulet/work/amulet/src/gesture/gest_matrix.cc --- /home/spock/stuff/amulet/src/gesture/gest_matrix.cc Sun Dec 15 12:18:01 1996 +++ /usr/ports/devel/amulet/work/amulet/src/gesture/gest_matrix.cc Mon Nov 6 02:11:01 2000 @@ -159,14 +159,14 @@ void ZeroVector(Vector v) { - register i; + register int i; for(i = 0; i < NROWS(v); i++) v[i] = 0.0; } void ZeroMatrix(Matrix m) { - register i, j; + register int i, j; for(i = 0; i < NROWS(m); i++) for(j = 0; j < NCOLS(m); j++) m[i][j] = 0.0; @@ -175,7 +175,7 @@ void FillMatrix(Matrix m, double fill) { - register i, j; + register int i, j; for(i = 0; i < NROWS(m); i++) for(j = 0; j < NCOLS(m); j++) m[i][j] = fill; @@ -197,7 +197,7 @@ void MatrixMultiply(register Matrix m1, register Matrix m2, register Matrix prod) { - register i, j, k; + register int i, j, k; double sum; if(NCOLS(m1) != NROWS(m2)) @@ -279,7 +279,7 @@ double QuadraticForm(register Vector v, register Matrix m) { - register i, j, n; + register int i, j, n; double result = 0; n = NROWS(v); @@ -327,7 +327,7 @@ double InvertMatrix(Matrix ym, Matrix rm) { - register i, j, k; + register int i, j, k; double det, biga, recip_biga, hold; int l[PERMBUFSIZE], m[PERMBUFSIZE]; register int n; @@ -519,7 +519,7 @@ Matrix SliceMatrix(Matrix m, unsigned rowmask, unsigned colmask) { - register i, ri, j, rj; + register int i, ri, j, rj; Matrix r; @@ -540,7 +540,7 @@ DeSliceMatrix(Matrix m, double fill, unsigned rowmask, unsigned colmask, Matrix r) { - register i, ri, j, rj; + register int i, ri, j, rj; FillMatrix(r, fill); diff -X /tmp/xclude -ur /home/spock/stuff/amulet/src/inter/inter_move_grow.cc /usr/ports/devel/amulet/work/amulet/src/inter/inter_move_grow.cc --- /home/spock/stuff/amulet/src/inter/inter_move_grow.cc Thu Mar 13 15:05:14 1997 +++ /usr/ports/devel/amulet/work/amulet/src/inter/inter_move_grow.cc Mon Nov 6 01:47:33 2000 @@ -48,7 +48,7 @@ void Print (ostream& out) const; // to print out the contents Am_Inter_Location_Data (Am_Inter_Location_Data* proto); //required by wrapper - operator== (Am_Inter_Location_Data& test_data) //required by wrapper + bool operator== (Am_Inter_Location_Data& test_data) //required by wrapper { return (ref_obj == test_data.ref_obj) && (as_line == test_data.as_line) && diff -X /tmp/xclude -ur /home/spock/stuff/amulet/src/object/impl.h /usr/ports/devel/amulet/work/amulet/src/object/impl.h --- /home/spock/stuff/amulet/src/object/impl.h Thu Apr 10 09:32:34 1997 +++ /usr/ports/devel/amulet/work/amulet/src/object/impl.h Mon Nov 6 02:40:10 2000 @@ -259,7 +259,7 @@ Am_Object_Data (const char* schema_name, Am_Object_Data* in_prototype); ~Am_Object_Data (); - operator== (Am_Object_Data&) + bool operator== (Am_Object_Data&) { return false; } Am_Object_Data* create_object (const char* new_name); diff -X /tmp/xclude -ur /home/spock/stuff/amulet/src/object/testobject.cc /usr/ports/devel/amulet/work/amulet/src/object/testobject.cc --- /home/spock/stuff/amulet/src/object/testobject.cc Wed Jul 2 12:45:20 1997 +++ /usr/ports/devel/amulet/work/amulet/src/object/testobject.cc Mon Nov 6 02:40:40 2000 @@ -610,7 +610,7 @@ { store = in_store; } int Get () { return store; } - operator== (Am_Foo_Data& test_value) + bool operator== (Am_Foo_Data& test_value) { return test_value.store == store; } private: int store; diff -X /tmp/xclude -ur /home/spock/stuff/amulet/src/opal/text_fns.cc /usr/ports/devel/amulet/work/amulet/src/opal/text_fns.cc --- /home/spock/stuff/amulet/src/opal/text_fns.cc Tue Mar 4 19:06:09 1997 +++ /usr/ports/devel/amulet/work/amulet/src/opal/text_fns.cc Mon Nov 6 01:45:45 2000 @@ -714,7 +714,7 @@ #endif void Remove (Am_Input_Char ic); Am_Text_Edit_Operation* Translate (Am_Input_Char ic) const; - operator== (Am_Edit_Translation_Table_Data& test_value) const + bool operator== (Am_Edit_Translation_Table_Data& test_value) const { return this == &test_value; } protected: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 16:20: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1608437B4D7 for ; Mon, 6 Nov 2000 16:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA86752; Mon, 6 Nov 2000 16:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id CEECE37B479; Mon, 6 Nov 2000 16:19:29 -0800 (PST) Message-Id: <20001107001929.CEECE37B479@hub.freebsd.org> Date: Mon, 6 Nov 2000 16:19:29 -0800 (PST) From: taguchi@tohoku.iij.ad.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/22654: [FIX] japanese/tcl76 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22654 >Category: ports >Synopsis: [FIX] japanese/tcl76 >Confidential: no >Severity: critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Nov 06 16:20:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Taguchi, Takeshi >Release: FreeBSD-4.1.1-STABLE >Organization: IIJ >Environment: >Description: japanese/tcl76, old japanized tcl interp, was broken. >How-To-Repeat: # cd ${PORTSDIR}/japanese/tcl76 # make .... you will get error! >Fix: Now, FreeBSD-4-STABLE, Posix error codes ENOTSUP and EOPNOTSUP have same value. See /usr/include/sys/errno.h: #define ENOTSUP EOPNOTSUP BUT in tcl76, #ifdef ENOTSUP case ENOTSUP: hogehoge... #endif ... #ifdef EOPNOTSUPP case EOPNOTSUP: gehogeho... #endif This will make error(diplicated case eror). Apply following patch. Thanks. BEGIN>---88--- diff -urN tcl76.old/Makefile tcl76/Makefile --- tcl76.old/Makefile Tue Nov 7 09:17:09 2000 +++ tcl76/Makefile Tue Nov 7 09:16:03 2000 @@ -7,6 +7,7 @@ PORTNAME= tcl PORTVERSION= 7.6 +PORTREVISION= 1 CATEGORIES= japanese lang MASTER_SITES= ftp://ftp.scriptics.com/pub/tcl/tcl7_6/ DISTNAME= ${PORTNAME}${PORTVERSION}p2 diff -urN tcl76.old/files/patch-ae tcl76/files/patch-ae --- tcl76.old/files/patch-ae Thu Jan 1 09:00:00 1970 +++ tcl76/files/patch-ae Tue Nov 7 09:12:13 2000 @@ -0,0 +1,20 @@ +--- ../generic/tclPosixStr.c~ Fri Oct 11 05:58:40 1996 ++++ ../generic/tclPosixStr.c Tue Nov 7 09:11:13 2000 +@@ -336,7 +336,7 @@ + #ifdef ENXIO + case ENXIO: return "ENXIO"; + #endif +-#ifdef EOPNOTSUPP ++#if defined(EOPNOTSUPP) && (EOPNOTSUPP != ENOTSUP) + case EOPNOTSUPP: return "EOPNOTSUPP"; + #endif + #ifdef EPERM +@@ -783,7 +783,7 @@ + #ifdef ENXIO + case ENXIO: return "no such device or address"; + #endif +-#ifdef EOPNOTSUPP ++#if defined(EOPNOTSUPP) && (EOPNOTSUPP != ENOTSUP) + case EOPNOTSUPP: return "operation not supported on socket"; + #endif + #ifdef EPERM END>---88--- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 16:33:46 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.hiwaay.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (Postfix) with ESMTP id DBB9137B4CF for ; Mon, 6 Nov 2000 16:33:42 -0800 (PST) Received: from bonsai.knology.net (user-24-214-88-8.knology.net [24.214.88.8]) by mail.hiwaay.net (8.11.0/8.11.0) with ESMTP id eA70Xb719884; Mon, 6 Nov 2000 18:33:40 -0600 (CST) Received: (from steve@localhost) by bonsai.knology.net (8.11.0/8.9.3) id eA70XXM56333; Mon, 6 Nov 2000 18:33:33 -0600 (CST) (envelope-from steve) Date: Mon, 6 Nov 2000 18:33:28 -0600 From: Steve Price To: gc@mail.dotcom.fr Cc: ports Subject: Re: JX-1.5.3 Message-ID: <20001106183328.C51478@bonsai.knology.net> References: <3A0729D5.8FA51655@cgit.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="ibTvN161/egqYuK8" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A0729D5.8FA51655@cgit.com>; from gc@cgit.com on Mon, Nov 06, 2000 at 05:59:49PM -0400 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --ibTvN161/egqYuK8 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Mon, Nov 06, 2000 at 05:59:49PM -0400, Georges Chenard wrote: # Hi ! # # Trying to install systemg, I have the following result : # # ===> Extracting for systemg-1.0.1 # >> Checksum OK for SystemG_source-1.0.1.tar.gz. # ===> systemg-1.0.1 depends on file: /nonexistent - not found # ===> Verifying configure for /nonexistent in # /usr/ports/x11-toolkits/jx # ===> Extracting for JX-1.5.3_1 # >> Checksum OK for JX_source-1.5.3.tar.gz. # ===> JX-1.5.3_1 depends on executable: autoconf - found # ===> JX-1.5.3_1 depends on executable: gmake - found # ===> JX-1.5.3_1 depends on executable: bison - found # ===> JX-1.5.3_1 depends on shared library: png.4 - found # ===> JX-1.5.3_1 depends on shared library: Xpm.4 - found # ===> JX-1.5.3_1 depends on shared library: X11.6 - found # ===> Patching for JX-1.5.3_1 # ===> Applying FreeBSD patches for JX-1.5.3_1 # 2 out of 4 hunks failed--saving rejects to FreeBSD-2.x_g++.in.rej # *** Error code 2 # # Solution ? Looks like someone was pulling a repo-magic trick and it has gone awry. Replace patch-aa with the attached one and make sure you have a post-patch-aa (both in the jx/files directory). -steve --ibTvN161/egqYuK8 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=patch-aa --- programs/makemake/Make.header.orig Tue Sep 21 16:33:40 1999 +++ programs/makemake/Make.header Tue May 30 11:07:18 2000 @@ -95,7 +95,7 @@ # .PHONY : jxinstall -jxinstall: makemake +jxinstall_not: makemake @strip makemake @mv makemake ${JX_INSTALL_ROOT}/ @chmod a+x ${SCRIPT_FILES} --ibTvN161/egqYuK8-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 16:38:54 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.rdc1.va.home.com (ha1.rdc1.va.home.com [24.2.32.66]) by hub.freebsd.org (Postfix) with ESMTP id DEEC737B4C5 for ; Mon, 6 Nov 2000 16:38:52 -0800 (PST) Received: from home.com ([24.8.90.47]) by mail.rdc1.va.home.com (InterMail vM.4.01.03.00 201-229-121) with ESMTP id <20001107003852.VYHW12834.mail.rdc1.va.home.com@home.com> for ; Mon, 6 Nov 2000 16:38:52 -0800 Message-ID: <3A075257.63126E71@home.com> Date: Mon, 06 Nov 2000 18:52:39 -0600 From: Stan Garvin X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 4.1.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: ports@FreeBSD.org Cc: ports@FreeBSD.org Subject: FreeBSD Port: aalib-1.2 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This port seems to be broken. I get a stop error compiling The Gimp or installing the port by itself. Any thoughts. Regards, Stan Garvin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 16:40: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9CD6637B4C5 for ; Mon, 6 Nov 2000 16:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA89031; Mon, 6 Nov 2000 16:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Mon, 6 Nov 2000 16:40:02 -0800 (PST) Message-Id: <200011070040.QAA89031@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Theo van Klaveren Subject: Re: ports/21780: audio/vorbis should not depend on xmms! Reply-To: Theo van Klaveren Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21780; it has been noted by GNATS. From: Theo van Klaveren To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: ports/21780: audio/vorbis should not depend on xmms! Date: Tue, 7 Nov 2000 01:32:50 +0100 This has been fixed by the latest vorbis snapshot and should be closed. -- Theo van Klaveren http://home.student.utwente.nl/t.vanklaveren To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 16:47:42 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D135337B4D7; Mon, 6 Nov 2000 16:47:40 -0800 (PST) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA89874; Mon, 6 Nov 2000 16:47:40 -0800 (PST) (envelope-from steve@FreeBSD.org) Date: Mon, 6 Nov 2000 16:47:40 -0800 (PST) From: Message-Id: <200011070047.QAA89874@freefall.freebsd.org> To: wigren@home.se, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21780: audio/vorbis should not depend on xmms! Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: audio/vorbis should not depend on xmms! State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Mon Nov 6 16:44:27 PST 2000 State-Changed-Why: You'll want to use the new port, audio/vorbis-tools, instead. It only contains the CLI tools that you want. http://www.freebsd.org/cgi/query-pr.cgi?pr=21780 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 17:37:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6ADA937B657; Mon, 6 Nov 2000 17:36:49 -0800 (PST) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA97385; Mon, 6 Nov 2000 17:36:49 -0800 (PST) (envelope-from steve@FreeBSD.org) Date: Mon, 6 Nov 2000 17:36:49 -0800 (PST) From: Message-Id: <200011070136.RAA97385@freefall.freebsd.org> To: dima@Chg.RU, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22649: Update port: www/calamaris Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: www/calamaris State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Mon Nov 6 17:36:36 PST 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=22649 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 18:40:38 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C0F7F37B4CF; Mon, 6 Nov 2000 18:40:37 -0800 (PST) Received: (from jeh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA06472; Mon, 6 Nov 2000 18:40:37 -0800 (PST) (envelope-from jeh@FreeBSD.org) Date: Mon, 6 Nov 2000 18:40:37 -0800 (PST) From: Message-Id: <200011070240.SAA06472@freefall.freebsd.org> To: lebel@lebel.org, jeh@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22607: New MASTER_SITES for audio/cdrdao Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New MASTER_SITES for audio/cdrdao State-Changed-From-To: open->closed State-Changed-By: jeh State-Changed-When: Mon Nov 6 18:40:22 PST 2000 State-Changed-Why: Committed. Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22607 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 18:50: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2291E37B4C5 for ; Mon, 6 Nov 2000 18:50:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA07668; Mon, 6 Nov 2000 18:50:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 1E11D37B4D7; Mon, 6 Nov 2000 18:40:33 -0800 (PST) Message-Id: <20001107024033.1E11D37B4D7@hub.freebsd.org> Date: Mon, 6 Nov 2000 18:40:33 -0800 (PST) From: wolman@cs.washington.edu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/22655: [patch] update of the AbiWord port to version 0.7.11 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22655 >Category: ports >Synopsis: [patch] update of the AbiWord port to version 0.7.11 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Nov 06 18:50:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Alec Wolman >Release: n/a >Organization: UW, CSE Department >Environment: n/a >Description: I have update the AbiWord port from version 0.7.10 to version 0.7.11. Version 0.7.11 has the unfortunate property that it crashes on startup when used with Xfree86 4.x, but it works fine with the 3.3 series of Xfree86 releases. The patch can be downloaded from http://www.cs.washington.edu/homes/wolman/patches/abiword-2.patch >How-To-Repeat: n/a >Fix: n/a >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 19: 0: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7951637B4D7 for ; Mon, 6 Nov 2000 19:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA08957; Mon, 6 Nov 2000 19:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from gilmore.nas.nasa.gov (gilmore.nas.nasa.gov [129.99.32.17]) by hub.freebsd.org (Postfix) with ESMTP id 48CF437B4C5 for ; Mon, 6 Nov 2000 18:59:12 -0800 (PST) Received: (from tweten@localhost) by gilmore.nas.nasa.gov (8.11.1/8.11.1) id eA72x2H06921; Mon, 6 Nov 2000 18:59:02 -0800 (PST) (envelope-from tweten) Message-Id: <200011070259.eA72x2H06921@gilmore.nas.nasa.gov> Date: Mon, 6 Nov 2000 18:59:02 -0800 (PST) From: Dave Tweten Reply-To: tweten@nas.nasa.gov To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22656: port update to correct mail/exmh2 support of security/pgp5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22656 >Category: ports >Synopsis: port update to correct mail/exmh2 support of security/pgp5 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Nov 06 19:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Dave Tweten >Release: FreeBSD 4.1.1-STABLE i386 >Organization: NAS Systems Division, NASA Ames Research Center >Environment: FreeBSD 4.1.1-STABLE (GILMORE) #0: Mon Oct 16 17:20:49 PDT 2000 Cvsup of kernel, utilities, and ports completed Oct 14 02:36 Exmh 2.2 PGP 5.0i Tk 8.2.3 Tcl 8.2.3 >Description: One problem from my previous PR, ports/21437 remains: "Exmh will not use pgpv to check a Multipart/MIME Clear signature. Since the call to pgpv is in batch mode, there is nobody to ask if the user would like to overwrite /dev/null. (!)" >How-To-Repeat: Send yourself a message with any kind of clear signature. Attempt to read it. Exmh will refuse with an error message mentioning "+force". >Fix: The fix required hasn't changed from ports/21437 either: "Make batch mode PGP 5.0i calls use the "+force" option, thereby eliminating the dubious need to request confirmation for overwriting /dev/null." The patch to do that follows: --- lib/pgpPgp5.tcl.orig Wed Apr 19 09:54:14 2000 +++ lib/pgpPgp5.tcl Mon Nov 6 17:53:46 2000 @@ -88,7 +88,7 @@ ############# # Exec_Batch # Batchmode flags -set pgp(pgp5,flags_batch) {+armorlines=0 +batchmode=on +verbose=0} +set pgp(pgp5,flags_batch) {+armorlines=0 +batchmode=on +force +verbose=0} # proc Pgp_pgp5_PassFdSet {} { global env >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 20:40: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9463437B4E5 for ; Mon, 6 Nov 2000 20:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA23545; Mon, 6 Nov 2000 20:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from home.bsdclub.org (home.bsdclub.org [202.227.26.94]) by hub.freebsd.org (Postfix) with ESMTP id 8CF7E37B479 for ; Mon, 6 Nov 2000 20:32:57 -0800 (PST) Received: from galient.yf.bsdclub.org (localhost.bsdclub.org [127.0.0.1]) by home.bsdclub.org (8.9.3/3.7W) with ESMTP id NAA33010 for ; Tue, 7 Nov 2000 13:32:55 +0900 (JST) Received: (from futatuki@localhost) by galient.yf.bsdclub.org (8.9.3/8.9.3) id NAA01183; Tue, 7 Nov 2000 13:32:45 +0900 (JST) (envelope-from futatuki) Message-Id: <200011070432.NAA01183@galient.yf.bsdclub.org> Date: Tue, 7 Nov 2000 13:32:45 +0900 (JST) From: futatuki@debug.gr.jp Reply-To: futatuki@debug.gr.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22657: Change maintainer: audio/cdrdao Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22657 >Category: ports >Synopsis: Change the maintainer >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Nov 06 20:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Yasuhito FUTATSUKI >Release: FreeBSD 3.3-RELEASE i386 >Organization: DEBUG, a BSD users group >Environment: FreeBSD 4-stable/FreeBSD 5-current >Description: Change request for the maintainer.(Submitted by old maintainer) >How-To-Repeat: None. >Fix: Apply the patch below. BEGIN --- cut here --- cut here --- cut here --- cut here --- --- Makefile.orig Tue Nov 7 13:23:42 2000 +++ Makefile Tue Nov 7 13:25:00 2000 @@ -11,7 +11,7 @@ MASTER_SITES= ftp://cdrdao.sourceforge.net/pub/cdrdao/ EXTRACT_SUFX= .src.tar.gz -MAINTAINER= futatuki@debug.gr.jp +MAINTAINER= lebel@lebel.org BUILD_DEPENDS= antlr:${PORTSDIR}/devel/pccts\ dlg:${PORTSDIR}/devel/pccts END --- cut here --- cut here --- cut here --- cut here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 20:56:43 2000 Delivered-To: freebsd-ports@freebsd.org Received: from fu-manchu.transbay.net (ip53043.transbay.net [209.133.53.43]) by hub.freebsd.org (Postfix) with ESMTP id 0944937B4CF for ; Mon, 6 Nov 2000 20:56:41 -0800 (PST) Received: (from root@localhost) by fu-manchu.transbay.net (8.11.0/8.11.0) id eA74uq125467 for ports@freebsd.org; Mon, 6 Nov 2000 20:56:52 -0800 (PST) (envelope-from root) Date: Mon, 6 Nov 2000 20:56:52 -0800 (PST) From: Charlie Root Message-Id: <200011070456.eA74uq125467@fu-manchu.transbay.net> To: ports@freebsd.org Subject: error in afterstep install Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org It died. Do 'make' again, get this: ===> Configuring for afterstep-1.0 mv -f Makefile Makefile.bak imake -DUseInstalled -I/usr/X11R6/lib/X11/config make Makefiles making Makefiles in lib... mv -f Makefile Makefile.bak making Makefiles in afterstep... mv -f Makefile Makefile.bak making Makefiles in modules/Audio... mv -f Makefile Makefile.bak making Makefiles in modules/Auto... mv -f Makefile Makefile.bak making Makefiles in modules/Wharf... mv -f Makefile Makefile.bak making Makefiles in modules/Banner... mv -f Makefile Makefile.bak making Makefiles in modules/Pager... mv -f Makefile Makefile.bak making Makefiles in modules/asclock... mv -f Makefile Makefile.bak making Makefiles in modules/Animate... mv -f Makefile Makefile.bak make includes including in ./lib... including in ./afterstep... including in ./modules/Audio... including in ./modules/Auto... including in ./modules/Wharf... including in ./modules/Banner... including in ./modules/Pager... including in ./modules/asclock... including in ./modules/Animate... make depend make: don't know how to make depend. Stop *** Error code 2 Stop in /usr/ports/x11-wm/afterstep. *** Error code 1 Stop in /usr/ports/x11-wm/afterstep. *** Error code 1 Stop in /usr/ports/x11-wm/afterstep. *** Error code 1 Stop in /usr/ports/x11-wm/afterstep. *** Error code 1 Stop in /usr/ports/x11-wm/afterstep. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 22:30: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3F60737B4CF for ; Mon, 6 Nov 2000 22:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA42059; Mon, 6 Nov 2000 22:30:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from hobbits.int.talentq.com (unknown [203.117.75.247]) by hub.freebsd.org (Postfix) with ESMTP id AE1B637B4D7 for ; Mon, 6 Nov 2000 22:24:56 -0800 (PST) Received: by hobbits.int.talentq.com (Postfix, from userid 0) id 4E4BFB1; Tue, 7 Nov 2000 14:24:48 +0800 (SGT) Message-Id: <20001107062448.4E4BFB1@hobbits.int.talentq.com> Date: Tue, 7 Nov 2000 14:24:48 +0800 (SGT) From: root@talentq.com Reply-To: root@talentq.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22659: pkg_version does not work for ports that add -gtk suffix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22659 >Category: ports >Synopsis: pkg_version does not work for ports that add -gtk suffix >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Nov 06 22:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Calvin NG >Release: FreeBSD 4.2-BETA i386 >Organization: >Environment: >Description: Recently, some of the the ports that define 'USE_GTK' adds the '-gtk' suffix to the package name/port name. This breaks the pkg_version utility as it cannot fine the portname/package in the INDEX file. >How-To-Repeat: >Fix: A simple workaround will be to strip the -gtk suffix when doing comparison. A suggested (unified) patch that works on my machine is as follows: --- pkg_version-411 Thu Nov 2 13:23:14 2000 +++ pkg_version Tue Nov 7 14:14:36 2000 @@ -341,6 +341,9 @@ $packageNameVer = $packageString; $packageName = $currentPackages{$packageString}{'name'}; +### strip -gtk suffix + $packageName =~ s/-gtk$//; + $currentVersion = $currentPackages{$packageString}{'fullversion'}; if (defined $currentPackages{$packageString}{'portversion'}) { @@ -408,7 +411,7 @@ else { next if $ShowCommandsFlag; $versionCode = "?"; - $Comment = "unknown in index"; + $Comment = "$packageName unknown in index"; } # Having figured out what to print, now determine, based on the >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 22:57:46 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0ACE537B479; Mon, 6 Nov 2000 22:57:45 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA44656; Mon, 6 Nov 2000 22:57:45 -0800 (PST) (envelope-from dougb@FreeBSD.org) Date: Mon, 6 Nov 2000 22:57:45 -0800 (PST) From: Message-Id: <200011070657.WAA44656@freefall.freebsd.org> To: futatuki@debug.gr.jp, dougb@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22657: Change the maintainer Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Change the maintainer State-Changed-From-To: open->closed State-Changed-By: dougb State-Changed-When: Mon Nov 6 22:56:46 PST 2000 State-Changed-Why: Your request has been handled, I'm assuming that the new victim volunteered for this responsibility? :) http://www.freebsd.org/cgi/query-pr.cgi?pr=22657 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 6 23:10: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EB23537B479 for ; Mon, 6 Nov 2000 23:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA47437; Mon, 6 Nov 2000 23:10:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Mon, 6 Nov 2000 23:10:03 -0800 (PST) Message-Id: <200011070710.XAA47437@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Hobbits Subject: Re: ports/22659: pkg_version does not work for ports that add -gtk suffix Reply-To: Hobbits Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/22659; it has been noted by GNATS. From: Hobbits To: freebsd-gnats-submit@FreeBSD.org, root@talentq.com Cc: Subject: Re: ports/22659: pkg_version does not work for ports that add -gtk suffix Date: Tue, 07 Nov 2000 15:05:34 +0800 Greetings, found a minor problem with the previous fix, because some ports actually contains -gtk in their name. This is slightly better, it only strips -gtk if the not found in INDEX. --- pkg_version-411 Thu Nov 2 13:23:14 2000 +++ pkg_version Tue Nov 7 14:55:20 2000 @@ -341,6 +341,15 @@ $packageNameVer = $packageString; $packageName = $currentPackages{$packageString}{'name'}; + if (!defined $indexPackages{$packageName}{'fullversion'}) + { + $packageGTK = $packageName; $packageGTK =~ s/-gtk$//; + if (defined $indexPackages{$packageGTK}{'fullversion'}) + { + $packageName = $packageGTK; + } + } + $currentVersion = $currentPackages{$packageString}{'fullversion'}; if (defined $currentPackages{$packageString}{'portversion'}) { To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 7 3:46:51 2000 Delivered-To: freebsd-ports@freebsd.org Received: from nevermind.kiev.ua (unknown [212.109.53.33]) by hub.freebsd.org (Postfix) with ESMTP id 0745237B479 for ; Tue, 7 Nov 2000 03:46:38 -0800 (PST) Received: (from never@localhost) by nevermind.kiev.ua (8.11.1/8.9.3) id eA7BkLl22179 for freebsd-ports@freebsd.org; Tue, 7 Nov 2000 13:46:21 +0200 (EET) (envelope-from never) Date: Tue, 7 Nov 2000 13:46:21 +0200 From: Nevermind To: freebsd-ports@freebsd.org Subject: make clean on security/pam_krb5 fails Message-ID: <20001107134620.A643@nevermind.kiev.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello! Just noticed while make clean'ining in /usr/ports: ===> security/pam_krb5 "Makefile", line 50: "No version of Kerberos is installed." *** Error code 1 -- Alexandr P. Kovalenko http://nevermind.kiev.ua/ NEVE-RIPE To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 7 3:57:40 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ringworld.oblivion.bg (pool153-tch-1.Sofia.0rbitel.net [212.95.170.153]) by hub.freebsd.org (Postfix) with SMTP id 8B97B37B4CF for ; Tue, 7 Nov 2000 03:57:37 -0800 (PST) Received: (qmail 3427 invoked by uid 1000); 7 Nov 2000 11:57:29 -0000 Date: Tue, 7 Nov 2000 13:57:29 +0200 From: Peter Pentchev To: Nevermind Cc: freebsd-ports@freebsd.org Subject: Re: make clean on security/pam_krb5 fails Message-ID: <20001107135728.A3256@ringworld.oblivion.bg> Mail-Followup-To: Nevermind , freebsd-ports@freebsd.org References: <20001107134620.A643@nevermind.kiev.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001107134620.A643@nevermind.kiev.ua>; from never@nevermind.kiev.ua on Tue, Nov 07, 2000 at 01:46:21PM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Nov 07, 2000 at 01:46:21PM +0200, Nevermind wrote: > Hello! > > Just noticed while make clean'ining in /usr/ports: > > ===> security/pam_krb5 > "Makefile", line 50: "No version of Kerberos is installed." > *** Error code 1 This was fixed by the Ports Wraith 4 hours ago, in revision 1.2 of the Makefile. Re-cvsup and try again :) G'luck, Peter -- I've heard that this sentence is a rumor. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 7 4:42:40 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by hub.freebsd.org (Postfix) with ESMTP id 242AB37B4CF for ; Tue, 7 Nov 2000 04:42:36 -0800 (PST) Received: from levais.imp.ch (levais.imp.ch [157.161.4.66]) by mail.imp.ch (8.9.3/8.9.3b) with ESMTP id NAA95258; Tue, 7 Nov 2000 13:42:26 +0100 (CET) Date: Tue, 7 Nov 2000 13:44:12 +0100 (CET) From: Martin Blapp To: Steve Davidson Cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: staroffice-5.2 In-Reply-To: <3A073BED.FA6DA2D2@sprintlabs.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, These bugs are fixed. Please update your ports tree. Martin Martin Blapp, mb@imp.ch ------------------------------------------------ Improware AG, UNIX solution and service provider Zurlindenstrasse 29, 4133 Pratteln, Switzerland Phone: +41 79 370 26 05, Fax: +41 61 826 93 01 ------------------------------------------------ On Mon, 6 Nov 2000, Steve Davidson wrote: > I cannot get this port to install staroffice of my > FreeBSD-4.1.1-RELEASE. > Here is the output: > > > % make NO_CHECKSUM=yes > ===> Extracting for staroffice-5.2 > ===> staroffice-5.2 depends on: /usr/ports/emulators/linux_base > ===> Verifying install for /usr/ports/emulators/linux_base > ===> Installing for linux_base-6.1 > setup-2.0.5-1.noarch.rpm > filesystem-1.3.5-1.noarch.rpm > basesystem-6.0-4.noarch.rpm > ldconfig-1.9.5-15.i386.rpm > [...] > binutils-2.9.1.0.23-6.i386.rpm > gd-1.3-5.i386.rpm > gdbm-1.8.0-2.i386.rpm > glib-1.2.5-1.i386.rpm > package glib-1.2.6-2 (which is newer) is already installed > error: /usr/ports/distfiles/rpm/glib-1.2.5-1.i386.rpm cannot be > installed > *** Error code 1 > > > Notice I have a *NEWER* package. What do I do? > > If it matters: > % sum so-5_2-ga-bin-linux-en.bin > 16762 65536 so-5_2-ga-bin-linux-en.bin > % wc so-5_2-ga-bin-linux-en.bin > 247643 1466549 67108864 so-5_2-ga-bin-linux-en.bin > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 7 6:33:18 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C774037B4C5; Tue, 7 Nov 2000 06:33:16 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA12324; Tue, 7 Nov 2000 06:33:16 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Date: Tue, 7 Nov 2000 06:33:16 -0800 (PST) From: Message-Id: <200011071433.GAA12324@freefall.freebsd.org> To: ishmael27@home.com, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22629: Changes and maintance of graphics/imlib2-tmp Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Changes and maintance of graphics/imlib2-tmp State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Tue Nov 7 06:33:02 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22629 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 7 6:53:59 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 22F0137B479; Tue, 7 Nov 2000 06:53:58 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA15385; Tue, 7 Nov 2000 06:53:58 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Date: Tue, 7 Nov 2000 06:53:58 -0800 (PST) From: Message-Id: <200011071453.GAA15385@freefall.freebsd.org> To: one@netlab.is.tsukuba.ac.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22318: Update port: graphics/tgif-nls to 4.1.39 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/tgif-nls to 4.1.39 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Tue Nov 7 06:53:38 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22318 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 7 7: 4:48 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 759A537B4C5; Tue, 7 Nov 2000 07:04:46 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA16819; Tue, 7 Nov 2000 07:04:46 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Date: Tue, 7 Nov 2000 07:04:46 -0800 (PST) From: Message-Id: <200011071504.HAA16819@freefall.freebsd.org> To: kargl@troutmask.apl.washington.edu, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22317: update devel/ftnchek port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update devel/ftnchek port State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Tue Nov 7 07:04:29 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22317 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 7 8: 0:14 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D5D3337B4D7 for ; Tue, 7 Nov 2000 08:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA26429; Tue, 7 Nov 2000 08:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from ringworld.oblivion.bg (pool153-tch-1.Sofia.0rbitel.net [212.95.170.153]) by hub.freebsd.org (Postfix) with SMTP id 2F65937B4F9 for ; Tue, 7 Nov 2000 07:57:29 -0800 (PST) Received: (qmail 13819 invoked by uid 1000); 7 Nov 2000 15:57:21 -0000 Message-Id: <20001107155721.13818.qmail@ringworld.oblivion.bg> Date: 7 Nov 2000 15:57:21 -0000 From: Peter Pentchev Reply-To: Peter Pentchev To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22662: new port: x11/xvkbd Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22662 >Category: ports >Synopsis: new port: x11/xvkbd >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Nov 07 08:00:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: Peter Pentchev >Release: FreeBSD 4.2-BETA i386 >Organization: Orbitel JSCo. >Environment: current ports tree >Description: xvkbd is a virtual keyboard for X, somewhat similar to the Windows Character Map. WWW: http://member.nifty.ne.jp/tsato/xvkbd/ Author: Tom Sato >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: # # xvkbd # xvkbd/files # xvkbd/files/patch-aa # xvkbd/Makefile # xvkbd/distinfo # xvkbd/pkg-comment # xvkbd/pkg-descr # xvkbd/pkg-plist # echo c - xvkbd mkdir -p xvkbd > /dev/null 2>&1 echo c - xvkbd/files mkdir -p xvkbd/files > /dev/null 2>&1 echo x - xvkbd/files/patch-aa sed 's/^X//' >xvkbd/files/patch-aa << 'END-of-xvkbd/files/patch-aa' X--- Imakefile 2000/11/03 15:43:33 1.1.1.1 X+++ Imakefile 2000/11/07 15:40:10 1.2 X@@ -3,7 +3,7 @@ X #endif X X XCOMM Remove the next line if you want genuine Xaw instead of Xaw3d X-#define XAW3D X+XCOMM define XAW3D X X SRCS = xvkbd.c findwidget.c X OBJS = xvkbd.o findwidget.o X@@ -15,7 +15,7 @@ X XAWLIB = -lXaw3d X #endif X X-ComplexProgramTarget(xvkbd) X+ComplexProgramTargetNoMan(xvkbd) X X InstallAppDefaults(XVkbd) X InstallAppDefaults(XVkbd-common) END-of-xvkbd/files/patch-aa echo x - xvkbd/Makefile sed 's/^X//' >xvkbd/Makefile << 'END-of-xvkbd/Makefile' X# New ports collection makefile for: xvkbd X# Date created: 7 November 2000 X# Whom: roam@orbitel.bg X# X# $FreeBSD$ X# X XPORTNAME= xvkbd XPORTVERSION= 1.0 XCATEGORIES= x11 XMASTER_SITES= http://member.nifty.ne.jp/tsato/xvkbd/ X XMAINTAINER= roam@orbitel.bg X X.ifdef WITH_XAW3D XBUILD_DEPENDS= ${X11BASE}/lib/libXaw3d.a:${PORTSDIR}/x11-toolkits/Xaw3d X.endif X XUSE_IMAKE= yes X Xpre-fetch: X @${ECHO} "Define WITH_XAW3D for Xaw3d support." X X.ifdef WITH_XAW3D Xpost-patch: X ${PERL} -pi.fbsd -e 's/XCOMM define XAW3D/#define XAW3D/' ${WRKSRC}/Imakefile X.endif X X.include END-of-xvkbd/Makefile echo x - xvkbd/distinfo sed 's/^X//' >xvkbd/distinfo << 'END-of-xvkbd/distinfo' XMD5 (xvkbd-1.0.tar.gz) = 3c2db168146d456e736194cf83d209cc END-of-xvkbd/distinfo echo x - xvkbd/pkg-comment sed 's/^X//' >xvkbd/pkg-comment << 'END-of-xvkbd/pkg-comment' XA virtual keyboard for X applications END-of-xvkbd/pkg-comment echo x - xvkbd/pkg-descr sed 's/^X//' >xvkbd/pkg-descr << 'END-of-xvkbd/pkg-descr' XFrom the xvkbd README: X X"xvkbd is a virtual (graphical) keyboard program for X Window System which X provides facility to enter characters onto other clients (softwares) by X clicking on a keyboard displayed on the screen. This may be used for systems X without a hardware keyboard such as kiosk terminals or handheld devices. X This program also has facility to send characters specified as the command X line option to another client." X XWWW: http://member.nifty.ne.jp/tsato/xvkbd/ XAuthor: Tom Sato END-of-xvkbd/pkg-descr echo x - xvkbd/pkg-plist sed 's/^X//' >xvkbd/pkg-plist << 'END-of-xvkbd/pkg-plist' Xbin/xvkbd Xlib/X11/app-defaults/XVkbd-common Xlib/X11/app-defaults/XVkbd-german Xlib/X11/app-defaults/XVkbd-latin1 Xlib/X11/app-defaults/XVkbd-small END-of-xvkbd/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 7 8:20: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2D63737B4C5 for ; Tue, 7 Nov 2000 08:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA30923; Tue, 7 Nov 2000 08:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from mharnois.workgroup.net (c1030098-a.wtrlo1.ia.home.com [24.11.39.39]) by hub.freebsd.org (Postfix) with ESMTP id 0ECA337B479 for ; Tue, 7 Nov 2000 08:12:57 -0800 (PST) Received: (from mdharnois@localhost) by mharnois.workgroup.net (8.11.1/8.11.1) id eA7GD1T27206; Tue, 7 Nov 2000 10:13:01 -0600 (CST) (envelope-from mdharnois) Message-Id: <200011071613.eA7GD1T27206@mharnois.workgroup.net> Date: Tue, 7 Nov 2000 10:13:01 -0600 (CST) From: mdharnois@home.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/22663: vmware2-2.0.3.799 fails in patch Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22663 >Category: ports >Synopsis: vmware2-2.0.3.799 fails in patch >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Nov 07 08:20:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Michael Harnois >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD mharnois.workgroup.net 5.0-CURRENT FreeBSD 5.0-CURRENT #35: Mon Nov 6 08:17:23 CST 2000 mdharnois@mharnois.workgroup.net:/usr/src/sys/compile/MYKERNEL i386 >Description: /usr/bin/patch -d /usr/ports/emulators/vmware2/work/vmware-distrib --forward --quiet -E -p0 < /usr/ports/emulators/vmware2/work/vmnet-freebsd.diff 5 out of 6 hunks failed--saving rejects to vmnet-only/userif.c.rej >How-To-Repeat: make >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 7 10: 0:17 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C226937B69A for ; Tue, 7 Nov 2000 10:00:13 -0800 (PST) Received: (from fenner@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA46141 for ports@freebsd.org; Tue, 7 Nov 2000 10:00:13 -0800 (PST) (envelope-from fenner@FreeBSD.org) Date: Tue, 7 Nov 2000 10:00:13 -0800 (PST) From: Message-Id: <200011071800.KAA46141@freefall.freebsd.org> To: ports@freebsd.org Subject: Unfetchable distfiles reminder Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Dear porters, This is just a reminder to please periodically check the list of unfetchable distfiles at http://people.freebsd.org/~fenner/portsurvey/ . In particular, the list of ports with no MAINTAINER with distfile problems is http://people.freebsd.org/~fenner/portsurvey/ports@freebsd.org.html Since no one is responsible for these ports, the problem won't get fixed unless someone on this list takes the initiative. In addition, the list of all ports with any unfetchable distfile is http://people.freebsd.org/~fenner/portsurvey/bad.html if you don't mind coordinating your fixes with the port MAINTAINER. Thanks for your help! Bill "distfiles" Fenner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 7 11: 4: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from homer.softweyr.com (mail.dobox.com [208.187.122.44]) by hub.freebsd.org (Postfix) with ESMTP id 223BE37B4C5 for ; Tue, 7 Nov 2000 11:04:04 -0800 (PST) Received: from [127.0.0.1] (helo=softweyr.com ident=Fools trust ident!) by homer.softweyr.com with esmtp (Exim 3.16 #1) id 13tE2y-0000Kz-00; Tue, 07 Nov 2000 12:04:40 -0700 Message-ID: <3A085248.407F4173@softweyr.com> Date: Tue, 07 Nov 2000 12:04:40 -0700 From: Wes Peters Organization: Softweyr LLC X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Sean Lutner , freebsd-ports@freebsd.org Subject: Re: StarOffice 5.2 port for FreeBSD. References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Sean Lutner wrote: > > Hi Wes.. > If you really want to use ports, feel free to do so, but you can > download the Star Office linux bin and install that with no problems. > > Only thing you will need to do is ln -s /bin/test /usr/bin/test. Nope, doesn't work, I still get: BUG IN DYNAMIC LINKER ld.so: dynamic-link.h: 57: elft_get_dynamic_info: Assertion `! "bad dynamic tag"' failed! *** Error code 127 Does anyone have an actual information on this problem? I can't even tell if it is the FreeBSD or Linux dynamic linker... -- "Where am I, and what am I doing in this handbasket?" Wes Peters Softweyr LLC wes@softweyr.com http://softweyr.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 7 11:20:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 81CEF37B4F9 for ; Tue, 7 Nov 2000 11:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA65320; Tue, 7 Nov 2000 11:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from latex.smisknet.se (unknown [62.65.4.194]) by hub.freebsd.org (Postfix) with SMTP id D719737B479 for ; Tue, 7 Nov 2000 11:12:57 -0800 (PST) Received: (qmail 71928 invoked by uid 1001); 7 Nov 2000 19:16:44 -0000 Message-Id: <20001107191644.71927.qmail@latex.smisknet.se> Date: 7 Nov 2000 19:16:44 -0000 From: goranrunfeldt@home.se Reply-To: goranrunfeldt@home.se To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22665: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22665 >Category: ports >Synopsis: >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Nov 07 11:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Göran Runfeldt >Release: FreeBSD 4.2-BETA i386 >Organization: >Environment: >Description: # 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: # # . # ./Makefile # ./distinfo # ./files # ./files/patch-aa # ./files/patch-ab # ./files/patch-ac # ./pkg-comment # ./pkg-descr # ./pkg-plist # echo c - . mkdir -p . > /dev/null 2>&1 echo x - ./Makefile sed 's/^X//' >./Makefile << 'END-of-./Makefile' X# New ports collection makefile for: xevil X# Date created: 7 November 2000 X# Whom: Göran Runfeldt X# X# $FreeBSD$ X# X XPORTNAME= xevil XPORTVERSION= 2.02 XCATEGORIES= games XMASTER_SITES= ftp://ftp.xevil.com/stable/ XDISTNAME= xevilsrc${PORTVERSION} X XMAINTAINER= goranrunfeldt@home.se X XUSE_X_PREFIX= yes XUSE_ZIP= yes XUSE_XPM= yes XALL_TARGET= freebsd X Xpre-extract: X @${MKDIR} ${WRKDIR}/${DISTNAME} X Xdo-extract: X @unzip -aqo ${DISTDIR}/${DISTFILES} -d ${WRKDIR}/${DISTNAME} X Xpost-extract: X @${MV} -f ${WRKDIR}/${DISTNAME}/makefile ${WRKDIR}/${DISTNAME}/Makefile X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/x11/FREEBSD/xevil ${PREFIX}/bin/xevil2 X.if !defined(NOPORTDOCS) X ${MKDIR} ${PREFIX}/share/doc/xevil/instructions X ${INSTALL_DATA} ${WRKSRC}/readme.txt ${PREFIX}/share/doc/xevil X ${INSTALL_DATA} ${WRKSRC}/instructions/* \ X ${PREFIX}/share/doc/xevil/instructions X.endif X X.include END-of-./Makefile echo x - ./distinfo sed 's/^X//' >./distinfo << 'END-of-./distinfo' XMD5 (xevilsrc2.02.zip) = e1890f77144367e2e8bbf3609458b784 END-of-./distinfo 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--- config.bak Wed Jan 19 14:19:04 2000 X+++ config.mk Tue Nov 7 18:51:18 2000 X@@ -34,7 +34,7 @@ X # You can add -DNDEBUG to speed up a release build by removing the assert() X # calls. But, on a really obscure Linux machine, this caused Xlib to blow up X # internally, so you do so at your own risk. X-DEBUG_OPT = -O #-DNDEBUG X+DEBUG_OPT = -DNDEBUG X X LINK_OPT = X X@@ -83,7 +83,9 @@ X #### Attempt to guesss the host architecture using the HOSTYPE and hostype X # variables. Then call self with the architecture name. X default: X- @if [ $${HOSTTYPE-bob} != bob ] ; then \ X+ @if [ $${OPSYS-bob} != bob ]; then \ X+ archit=$$OPSYS ; \ X+ elif [ $${HOSTTYPE-bob} != bob ] ; then \ X archit=$$HOSTTYPE ; \ X elif [ $${hosttype-bob} != bob ] ; then \ X archit=$$hosttype ; \ X@@ -162,7 +164,8 @@ X # XEvil is all screwed up. X freebsd: X @$(MAKE) CC="c++" \ X-CFLAGS="-DUSE_RANDOM -DPROTECTED_IS_PUBLIC -DMSEC_PER_CLOCK=8 -DUNAME_USR_BIN" \ X+CFLAGS="-DUSE_RANDOM -DXEVIL_KEYSET=UIlinux -DUSE_UINT_NET_LENGTH \ X+-DUNAME_USR_BIN ${CFLAGS}" \ X INCL_DIRS="-I/usr/X11R6/include" LIBS_DIRS="-L/usr/X11R6/lib" \ X OBJ_DIR=$(DEPTH)/x11/FREEBSD PCKG_NAME="freebsd" \ X LIBS="-lXpm -lX11 -lm" $(TARGETS) END-of-./files/patch-aa echo x - ./files/patch-ab sed 's/^X//' >./files/patch-ab << 'END-of-./files/patch-ab' X--- x11/ui.bak Wed Jan 19 12:54:14 2000 X+++ x11/ui.cpp Tue Nov 7 15:49:27 2000 X@@ -1322,7 +1322,7 @@ X X // Get font. Use user-specified font if given. X // regular size font. X- char *theFont = fontName ? fontName : DEFAULT_FONT_NAME; X+ const char *theFont = fontName ? fontName : DEFAULT_FONT_NAME; X xvars.font[xvars.dpyMax] = X XLoadQueryFont(xvars.dpy[xvars.dpyMax],theFont); X if (!xvars.font[xvars.dpyMax]) { END-of-./files/patch-ab echo x - ./files/patch-ac sed 's/^X//' >./files/patch-ac << 'END-of-./files/patch-ac' X--- cmn/intel.bak Wed Jan 19 12:54:34 2000 X+++ cmn/intel.cpp Tue Nov 7 15:45:28 2000 X@@ -1606,7 +1606,7 @@ X Boolean Machine::weapon_current_is_drop_liftable(PhysicalP p) { X // This is a HACK, we should really make Lifter override X // get_weapon_current(), etc. X- char *dummy; X+ const char *dummy; X ClassId classId = p->get_weapon_string(dummy); X if (classId == A_DropLiftable) { X return True; END-of-./files/patch-ac echo x - ./pkg-comment sed 's/^X//' >./pkg-comment << 'END-of-./pkg-comment' XA fast-action, networked, anti-social, kill-everything game END-of-./pkg-comment echo x - ./pkg-descr sed 's/^X//' >./pkg-descr << 'END-of-./pkg-descr' XXEvil is a side-view, single or network-multiplayer, fast-action, Xkill-everything, game for Windows and UNIX. X XYou have sinned in life. Now, you die and go to Hell. XEvil is the Xcontest that determines your fate in Hell for all eternity. At the Xend of a game, you receive one of many possible rankings. A poor Xplayer, for example, may spend the rest of time as "Satan's Earwax XRemover", while a good one might achieve a prestigious title such as X"VP of Hell Marketing" or even "Lead Software Engineer of Hell". X XThe XEvil 2.X Instruction Manual is located in X/usr/X11R6/share/doc/xevil/instructions X XWWW: http://www.xevil.com END-of-./pkg-descr echo x - ./pkg-plist sed 's/^X//' >./pkg-plist << 'END-of-./pkg-plist' Xbin/xevil2 Xshare/doc/xevil/instructions/UNIXSetControls.gif Xshare/doc/xevil/instructions/UNIXShowControls.gif Xshare/doc/xevil/instructions/UNIXmenu.gif Xshare/doc/xevil/instructions/instructions.html Xshare/doc/xevil/instructions/keysdlg.gif Xshare/doc/xevil/instructions/optionsdlg.gif Xshare/doc/xevil/readme.txt X@dirrm share/doc/xevil/instructions X@dirrm share/doc/xevil END-of-./pkg-plist exit >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 7 11:50: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3826937B4CF for ; Tue, 7 Nov 2000 11:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA68775; Tue, 7 Nov 2000 11:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from talri.sapros.com (rularan.sapros.com [204.182.55.17]) by hub.freebsd.org (Postfix) with ESMTP id 1884537B479 for ; Tue, 7 Nov 2000 11:43:59 -0800 (PST) Received: (from peterh@localhost) by talri.sapros.com (8.11.0/8.9.3) id eA7JhuB01228; Tue, 7 Nov 2000 11:43:56 -0800 (PST) (envelope-from peterh) Message-Id: <200011071943.eA7JhuB01228@talri.sapros.com> Date: Tue, 7 Nov 2000 11:43:56 -0800 (PST) From: Peter Haight Reply-To: peterh@sapros.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22666: Update port: net/fugu Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22666 >Category: ports >Synopsis: Update port: net/fugu >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Nov 07 11:50:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Peter Haight >Release: FreeBSD 4.1.1-STABLE i386 >Organization: >Environment: >Description: Fugu web site has moved. Here's a patch to update pkg-descr. >How-To-Repeat: >Fix: diff -u fugu/pkg-descr fugu.new/pkg-descr --- fugu/pkg-descr Fri Oct 27 17:54:55 2000 +++ fugu.new/pkg-descr Tue Nov 7 11:41:12 2000 @@ -4,6 +4,6 @@ the next and previous puff in a thread; searching for the next puff by this author; clickable URLs; and thumbnail pictures depicting puff senders. -WWW: http://www.gale.org/fugu +WWW: http://fugu.gale.org/ peterh@sapros.com >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 7 11:59:26 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by hub.freebsd.org (Postfix) with ESMTP id 8CE6F37B4C5 for ; Tue, 7 Nov 2000 11:59:23 -0800 (PST) Received: from levais.imp.ch (levais.imp.ch [157.161.4.66]) by mail.imp.ch (8.9.3/8.9.3b) with ESMTP id UAA08697; Tue, 7 Nov 2000 20:59:05 +0100 (CET) Date: Tue, 7 Nov 2000 21:00:52 +0100 (CET) From: Martin Blapp To: Wes Peters Cc: ports@freebsd.org Subject: Re: StarOffice 5.2 port for FreeBSD. In-Reply-To: <3A084CD7.D8023C33@softweyr.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, It seems that one miror of SO has a broken file on it. The Staroffice file has not changed, get it from elsewhere and the md5 checksum will be correct. Martin Martin Blapp, mb@imp.ch ------------------------------------------------ Improware AG, UNIX solution and service provider Zurlindenstrasse 29, 4133 Pratteln, Switzerland Phone: +41 79 370 26 05, Fax: +41 61 826 93 01 ------------------------------------------------ On Tue, 7 Nov 2000, Wes Peters wrote: > Maarten van Schie wrote: > > > > When I installed SO it didn't spitt out any complaints about the checksum. > > > > Did you install the Linux Emulator from /usr/ports/emulators/linux_base ? > > You need it since the SO port uses the Linux version. > > Yes, and linux-netscape and wordperfect both install and run without any > problems. > > -- > "Where am I, and what am I doing in this handbasket?" > > Wes Peters Softweyr LLC > wes@softweyr.com http://softweyr.com/ > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 7 12:50: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AD49D37B4D7 for ; Tue, 7 Nov 2000 12:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA78300; Tue, 7 Nov 2000 12:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from 214.norrgarden.se (214.norrgarden.se [195.100.133.214]) by hub.freebsd.org (Postfix) with ESMTP id 6964C37B479 for ; Tue, 7 Nov 2000 12:49:47 -0800 (PST) Received: (from root@localhost) by 214.norrgarden.se (8.11.1/8.11.0) id eA7Knf622182; Tue, 7 Nov 2000 21:49:41 +0100 (CET) (envelope-from cj) Message-Id: <200011072049.eA7Knf622182@214.norrgarden.se> Date: Tue, 7 Nov 2000 21:49:41 +0100 (CET) From: cj@vallcom.net Reply-To: cj@vallcom.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22669: update port: security/saint Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22669 >Category: ports >Synopsis: update port: security/saint >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Nov 07 12:50:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Carl Johan Madestrand >Release: FreeBSD 4.1.1-STABLE i386 >Organization: >Environment: >Description: In answer to PR 22646. Seems I messed some stuff up here, fix Makefile and plist. Thanks for noticing. >How-To-Repeat: >Fix: diff -urN /usr/ports/security/saint/Makefile saint/Makefile --- /usr/ports/security/saint/Makefile Sat Nov 4 19:25:51 2000 +++ saint/Makefile Tue Nov 7 19:51:42 2000 @@ -25,7 +25,7 @@ pre-install: ${MKDIR} ${PREFIX}/saint - ${TAR} --directory ${WRKSRC} -cf - . --exclude src --exclude Makefile --exclude Makefile.in --exclude old --exclude config --exclude config.cache --exclude config.log --exclude config.status --exclude configure --exclude configure.in --exclude install-sh --exclude saint.1 | \ + ${TAR} --directory ${WRKSRC} -cf - . --exclude src --exclude Makefile --exclude Makefile.in --exclude old --exclude config.cache --exclude config.log --exclude config.status --exclude configure --exclude configure.in --exclude install-sh --exclude saint.1 | \ ${TAR} --directory ${PREFIX}/saint -xf - .if !defined(NOPORTDOCS) do-install: diff -urN /usr/ports/security/saint/pkg-plist saint/pkg-plist --- /usr/ports/security/saint/pkg-plist Sat Nov 4 19:25:52 2000 +++ saint/pkg-plist Tue Nov 7 21:37:26 2000 @@ -73,6 +73,22 @@ saint/bin/yp-chk saint/bin/fping saint/bin/smurf.saint +saint/config/SNMP_communities.pl +saint/config/passwd +saint/config/paths.pl +saint/config/paths.pl.old +saint/config/paths.sh.old +saint/config/paths.sh +saint/config/saint.cf +saint/config/services +saint/config/version.pl +saint/config/saintwriter/detail.cf +saint/config/saintwriter/full.cf +saint/config/saintwriter/linked_tech.cf +saint/config/saintwriter/long_exec.cf +saint/config/saintwriter/saintwriter.cf +saint/config/saintwriter/short_exec.cf +saint/config/saintwriter/tech.cf saint/perl/passwd.pl saint/html/auth/saint_auth_action.pl saint/html/auth/saint_auth_form.pl @@ -363,6 +379,8 @@ saint/reconfig @dirrm saint/READMEs @dirrm saint/bin +@dirrm saint/config/saintwriter +@dirrm saint/config @dirrm saint/html/auth @dirrm saint/html/admin @dirrm saint/html/data >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 7 14:12:15 2000 Delivered-To: freebsd-ports@freebsd.org Received: from wormhole.szlaga.net (cc825688-a.mcmb1.mi.home.com [24.5.61.124]) by hub.freebsd.org (Postfix) with ESMTP id 65A0C37B479 for ; Tue, 7 Nov 2000 14:12:13 -0800 (PST) Received: from localhost (mszlaga@localhost) by wormhole.szlaga.net (8.9.3/8.9.3) with ESMTP id RAA79554 for ; Tue, 7 Nov 2000 17:11:16 -0500 (EST) (envelope-from mszlaga@wormhole.szlaga.net) Date: Tue, 7 Nov 2000 17:11:16 -0500 (EST) From: Mark Daniel Szlaga To: freebsd-ports@freebsd.org Subject: Assistance with porting Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Greetings, I have been slowly attempting to port a program named Hercules to FreeBSD. My problem is the difference between Linux and FreeBSD's mtio.h and pthread implimentation. I'm wondering if there are any good references that I should read to assist in this porting. I have reading the porting handbook on the FreeBSD website which has helped me with creating the entry for the ports tree, but not much help with the actual port itself. The source code for mtio.h in both OS's has helped me figure out what is lacking or different between the OS's but I'm having a little trouble groking the actual kernel level code. Any help in terms of readme's or even textbooks is welcomed, I'm just trying to get this to make sense to me... and I'm not sure if I'm biting off more than I can chew. Thanks a bunch! Mark Mark Szlaga mszlaga@szlaga.net http://www.szlaga.net/~mszlaga/ /dev/hdb5 - 0.5Gb of spinning metal, all alone in the night... - unknown - alt.sysadmin.recovery /dev/hdb5 - our last best hope for free space... - Chip Salzenberg - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 7 14:12:34 2000 Delivered-To: freebsd-ports@freebsd.org Received: from epsilon.lucida.qc.ca (epsilon.lucida.qc.ca [216.95.146.6]) by hub.freebsd.org (Postfix) with SMTP id 6A47B37B4C5 for ; Tue, 7 Nov 2000 14:12:22 -0800 (PST) Received: (qmail 87429 invoked by uid 1000); 7 Nov 2000 22:12:21 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 7 Nov 2000 22:12:21 -0000 Date: Tue, 7 Nov 2000 17:12:19 -0500 (EST) From: Matt Heckaman X-Sender: matt@epsilon.lucida.qc.ca To: FreeBSD-PORTS Subject: Some advice. (On topic :P) Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Rating: localhost 1.6.2 0/1000/N Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, I put together the www/linux-flashplugin port back in Feburary before netscape started including it into their linux (and other?) navigator distributions. This started around 4.74 or maybe 4.75, I don't quite remember which yet. My question is, now that it is included with[as a part of] netscape, should the port be removed as redundant? Or rather, should it be left in for those who either have not upgraded netscape versions, or for those who wish not to upgrade? It's my first time dealing with a port that's been made redundant by a software release like this, and all around, I haven't made & submitted a lot of ports before (3 maybe) so I'm unsure as to the process of this. Thanks again for any advice. Regards, Matt Heckaman * Matt Heckaman - mailto:matt@lucida.qc.ca http://www.lucida.qc.ca/ * * GPG fingerprint - A9BC F3A8 278E 22F2 9BDA BFCF 74C3 2D31 C035 5390 * -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: http://www.lucida.qc.ca/pgp iD8DBQE6CH5EdMMtMcA1U5ARAqwnAKCVQ4mMkJ2E18SxA3IE4LMGRZozdwCeMCZu eEXEfaQQ6iLN8fvlU1HrUiM= =7MUa -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 7 14:46:14 2000 Delivered-To: freebsd-ports@freebsd.org Received: from peitho.fxp.org (peitho.fxp.org [209.26.95.40]) by hub.freebsd.org (Postfix) with ESMTP id 3778A37B479 for ; Tue, 7 Nov 2000 14:46:11 -0800 (PST) Received: by peitho.fxp.org (Postfix, from userid 1501) id 868EB1360E; Tue, 7 Nov 2000 17:46:13 -0500 (EST) Date: Tue, 7 Nov 2000 17:46:13 -0500 From: Chris Faulhaber To: Mark Daniel Szlaga Cc: freebsd-ports@freebsd.org Subject: Re: Assistance with porting Message-ID: <20001107174613.A65062@peitho.fxp.org> Mail-Followup-To: Chris Faulhaber , Mark Daniel Szlaga , freebsd-ports@freebsd.org References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from mszlaga@wormhole.szlaga.net on Tue, Nov 07, 2000 at 05:11:16PM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Nov 07, 2000 at 05:11:16PM -0500, Mark Daniel Szlaga wrote: > Greetings, > I have been slowly attempting to port a program named Hercules to FreeBSD. > My problem is the difference between Linux and FreeBSD's mtio.h and pthread > implimentation. I'm wondering if there are any good references that I should > read to assist in this porting. I have reading the porting handbook on the > FreeBSD website which has helped me with creating the entry for the ports > tree, but not much help with the actual port itself. > The source code for mtio.h in both OS's has helped me figure out what is > lacking or different between the OS's but I'm having a little trouble groking > the actual kernel level code. > Any help in terms of readme's or even textbooks is welcomed, I'm just trying > to get this to make sense to me... and I'm not sure if I'm biting off more than > I can chew. > The best reference will the the header files (along with their respective sources. Actually, I thought I had a port of that a while back...lemme see if I still have it. -- Chris D. Faulhaber - jedgar@fxp.org - jedgar@FreeBSD.org -------------------------------------------------------- FreeBSD: The Power To Serve - http://www.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 7 14:59:16 2000 Delivered-To: freebsd-ports@freebsd.org Received: from imediasolutions.net (ns1.imediasolutions.net [64.6.64.109]) by hub.freebsd.org (Postfix) with ESMTP id C348F37B4C5; Tue, 7 Nov 2000 14:59:11 -0800 (PST) Received: from zk69xs1q8pg (dsp62.dsp.uiowa.edu [128.255.242.128]) by imediasolutions.net (8.9.3/8.9.3) with ESMTP id QAA35014; Tue, 7 Nov 2000 16:58:46 -0600 (CST) Message-Id: <4.2.2.20001107165426.01411328@mail.vpr.uiowa.edu> X-Sender: manjoine@imediasolutions.net X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.2 Date: Tue, 07 Nov 2000 16:58:56 -0600 To: kuriyama@FreeBSD.org From: Chris Manjoine Subject: FreeBSD Port: cocoon-1.7.4 Cc: ports@FreeBSD.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I am having serious problems installing JServ to get Cocoon to run on 4.1.1 stable can you help This is the error I get when building your port of cocoon 1.74 I also suggest upgrading to 1.8 Cocoon Build System ------------------- Building with classpath ./lib/ant.jar:/usr/local/jdk1.1.8/lib/tools.jar:./lib/xerces_1_0_3.jar:./lib /xalan_1_0_1.jar:./lib/fop_0_12_1.jar:./lib/servlet_2_2.jar:/usr/local/jdk1. 1.8/lib/classes.zip Starting Ant... /usr/libexec/ld-elf.so.1: Shared object "libxpg4.so.2" not found ---------------------------------------------------------------------------- ------------------------------------------------- this is the error on the port install of Ports/www/Apache-JServe configure:3593: checking Java platform configure:3621: checking for false configure:3659: checking java configure:3729: checking javac configure:3799: checking javadoc configure:3869: checking jar configure:3938: checking JSDK (end of "config.log") *** Error code 1 Stop in /usr/ports/www/apache-jserv. *** Error code 1 Stop in /usr/ports/www/apach =~=~=~=~=~=~=~=~=~=~=~=~=~=~= Christopher A. Manjoine Senior Technologist Independent Media Solutions Voice: 319-335-3019 FAX: 1-877-353-8008 ext 795 Home: 319-358-6539 Email: chris@imediasolutions.net ICQ#: 10536894 =~=~=~=~=~=~=~=~=~=~=~=~=~=~= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 7 15: 0: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 84FDF37B4C5 for ; Tue, 7 Nov 2000 15:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA98142; Tue, 7 Nov 2000 15:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from privatecube.privatelabs.com (unknown [63.114.185.254]) by hub.freebsd.org (Postfix) with ESMTP id 6C06A37B4C5 for ; Tue, 7 Nov 2000 14:50:54 -0800 (PST) Received: from monsta.privatelabs.com (monsta.plten [10.0.0.6]) by privatecube.privatelabs.com (8.9.3/8.9.2) with ESMTP id SAA27234; Tue, 7 Nov 2000 18:10:14 -0500 Received: (from root@localhost) by monsta.privatelabs.com (8.11.0/8.11.0) id eA7MolI55153; Tue, 7 Nov 2000 17:50:47 -0500 (EST) (envelope-from mi) Message-Id: <200011072250.eA7MolI55153@monsta.privatelabs.com> Date: Tue, 7 Nov 2000 17:50:47 -0500 (EST) From: root@monsta.privatelabs.com Reply-To: mi@aldan.algebra.com To: FreeBSD-gnats-submit@freebsd.org Cc: pkern@utcc.utoronto.ca X-Send-Pr-Version: 3.2 Subject: ports/22671: new port: security/sst -- yet another SSL wrapper Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22671 >Category: ports >Synopsis: new port: security/sst -- yet another SSL wrapper >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Nov 07 15:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Mikhail Teterin >Release: FreeBSD 4.1.1-STABLE i386 >Organization: Virtual Estates, Inc. >Environment: >Description: The nice thing about this one, is that it can be used entirely as a pipe. In fact, for network usage, it spawns off netcat. There is a patch for Amanda out there (by the same author), which makes it easy to tell amanda to encrypt the backups using SSL as they are sent from the clients to the server. That patch uses sst... >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: # # sst # sst/distinfo # sst/pkg-comment # sst/pkg-descr # sst/files # sst/files/Makefile # sst/Makefile # sst/pkg-plist # echo c - sst mkdir -p sst > /dev/null 2>&1 echo x - sst/distinfo sed 's/^X//' >sst/distinfo << 'END-of-sst/distinfo' XMD5 (sst.tar.gz) = cb1a2290ab0554381c778d147bab4dd7 END-of-sst/distinfo echo x - sst/pkg-comment sed 's/^X//' >sst/pkg-comment << 'END-of-sst/pkg-comment' XA simple SSL tunneling tool (uses netcat) END-of-sst/pkg-comment echo x - sst/pkg-descr sed 's/^X//' >sst/pkg-descr << 'END-of-sst/pkg-descr' XSst can be used to connect to SSL-encrypted network ser- Xvices or it can be used as an SSL front-end to network Xservers. Sst can be used interactively, or in an inetd Xsetting, or it can be embedded inside other programs (eg. XAmanda). X X XOne of the main goals of sst is to be as basic as possible Xso in most non-embedded cases sst uses netcat to setup the Xnetworking I/O. Sst uses a socketpair(2) pipe to stay in Xcontact with its netcat child process. In this way sst Xonly has to concern itself with file descriptors. X XIn the embedded mode sst expects the parent program to set Xup the networking I/O and to provide the appropriate file Xdescriptors. In embedded client mode ("-c"), clear data Xis read from (or written to) stdin (fildes 0) and SSL- Xencrypted data is read from (or written to) stdout (fildes X1). In embedded server mode ("-s"), SSL-encrypted data is Xread from (or written to) stdin and clear data read from X(or written to) stdout. X XWWW: http://utcc.utoronto.ca/~pkern/stuff/sst/ END-of-sst/pkg-descr echo c - sst/files mkdir -p sst/files > /dev/null 2>&1 echo x - sst/files/Makefile sed 's/^X//' >sst/files/Makefile << 'END-of-sst/files/Makefile' XPROG=sst X XBINDIR=${PREFIX}/sbin XMANDIR=${PREFIX}/man/man X XCFLAGS+= -DCONFDIR='"${OPENSSLDIR}"' -DCERTF='"certs/sst.pem"' \ X -DNETCAT='"${PREFIX}/bin/nc"' -I${OPENSSLINC} X XLDADD+= -L${OPENSSLLIB} -lssl -lcrypto X X.include END-of-sst/files/Makefile echo x - sst/Makefile sed 's/^X//' >sst/Makefile << 'END-of-sst/Makefile' X# New ports collection makefile for: sst X# Date created: Nov 7, 2000 X# Whom: Mikhail Teterin X# X# $FreeBSD$ X# X XPORTNAME= sst XPORTVERSION= 1.0 XCATEGORIES= security XMASTER_SITES= http://utcc.utoronto.ca/~pkern/stuff/sst/ XDISTNAME= ${PORTNAME} X XMAINTAINER= mi@aldan.algebra.com X XRUN_DEPENDS= nc:${PORTSDIR}/net/netcat X XUSE_OPENSSL= YES XMAN1= sst.1 XMANCOMPRESSED= maybe X XMAKEFILE= ${FILESDIR}/Makefile X X.include END-of-sst/Makefile echo x - sst/pkg-plist sed 's/^X//' >sst/pkg-plist << 'END-of-sst/pkg-plist' Xsbin/sst END-of-sst/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 7 16:20:54 2000 Delivered-To: freebsd-ports@freebsd.org Received: from femail6.sdc1.sfba.home.com (femail6.sdc1.sfba.home.com [24.0.95.86]) by hub.freebsd.org (Postfix) with ESMTP id AA50737B479; Tue, 7 Nov 2000 16:20:52 -0800 (PST) Received: from cc92687a ([24.5.63.190]) by femail6.sdc1.sfba.home.com (InterMail vM.4.01.03.00 201-229-121) with SMTP id <20001108002052.YRHR2410.femail6.sdc1.sfba.home.com@cc92687a>; Tue, 7 Nov 2000 16:20:52 -0800 Message-ID: <000601c04919$bbf52870$be3f0518@cc92687a> From: "Cyb3rp4t" To: Cc: Subject: FreeBSD Port: licq-0.85 Date: Tue, 7 Nov 2000 19:20:43 -0500 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0003_01C048EF.D2BA4420" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_0003_01C048EF.D2BA4420 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable hey green, new licq 1.0 is out at www.licq.com and i see its still not = ported to freebsd... is a port already in development or is there some = way to make it work in freebsd?? ------=_NextPart_000_0003_01C048EF.D2BA4420 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable

hey green, new licq 1.0 is out at www.licq.com and i see its still not = ported to=20 freebsd... is a port already in development or is there some way to make = it work=20 in freebsd??
------=_NextPart_000_0003_01C048EF.D2BA4420-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 7 16:28: 2 2000 Delivered-To: freebsd-ports@freebsd.org Received: from panix.ecof.org.br (panixgw.ecof.org.br [200.18.101.129]) by hub.freebsd.org (Postfix) with ESMTP id 393B637B4F9; Tue, 7 Nov 2000 16:27:42 -0800 (PST) Received: from panix.ecof.org.br (panix.ecof.org.br [200.18.101.161]) by panix.ecof.org.br (8.11.1/8.11.1) with ESMTP id eA80RDD60202; Tue, 7 Nov 2000 22:27:24 -0200 (BRST) (envelope-from pan@panix.ecof.org.br) Message-ID: <3A089DE1.EC662629@panix.ecof.org.br> Date: Tue, 07 Nov 2000 22:27:13 -0200 From: "Carlos F. A. Paniago" X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 4.2-BETA i386) X-Accept-Language: en MIME-Version: 1.0 To: will@FreeBSD.org Cc: ports@FreeBSD.org Subject: FreeBSD Port: kde2-2.0 Content-Type: multipart/alternative; boundary="------------94B8108C8161596DF921CD14" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --------------94B8108C8161596DF921CD14 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Please try to help-me. I'm using FreeBSD panix.ecof.org.br 4.2-BETA FreeBSD 4.2-BETA #0: Fri Nov 3 12:20:24 BRST 2000 root@panix.ecof.org.br:/usr/src/sys/compile/PANIX i386 and X11 R6 Version 4.0.1 name of display: :0.0 vendor string: The XFree86 Project, Inc vendor release number: 4001 And I compiled the KDE 2.0 (first alone, secondly using the ports stuff) and my kpresenter still is dumping core. with the following dr. Konqui stuff: (no debugging symbols found)...(no debugging symbols found)... (no debugging symbols found)...(no debugging symbols found)... (no debugging symbols found)...(no debugging symbols found)... (no debugging symbols found)...(no debugging symbols found)... (no debugging symbols found)...(no debugging symbols found)... (no debugging symbols found)...0x290614f8 in wait4 () from /usr/lib/libc.so.4 #0 0x290614f8 in wait4 () from /usr/lib/libc.so.4 #1 0x29052dcb in waitpid () from /usr/lib/libc.so.4 #2 0x2875028c in KCrash::defaultCrashHandler () from /usr/local/lib/libkdecore.so.4 #3 0xbfbfffac in ?? () #4 0x289b578b in read_xpm_image_or_array () from /usr/X11R6/lib/libqt2.so #5 0x289a39a4 in QImage::QImage () from /usr/X11R6/lib/libqt2.so #6 0x28a3acb6 in QPixmap::QPixmap () from /usr/X11R6/lib/libqt2.so #7 0x280d5a7d in KPresenterView::setupScrollbars () from /usr/local/lib/libkpresenterpart.so #8 0x280c9634 in KPresenterView::createGUI () from /usr/local/lib/libkpresenterpart.so #9 0x280c18af in KPresenterView::KPresenterView () from /usr/local/lib/libkpresenterpart.so #10 0x280ff80f in KPresenterDoc::createViewInstance () from /usr/local/lib/libkpresenterpart.so #11 0x2825012e in KoDocument::createView () from /usr/local/lib/libkofficecore.so.1 #12 0x28260224 in KoMainWindow::setRootDocument () from /usr/local/lib/libkofficecore.so.1 #13 0x282655ed in KoApplication::start () from /usr/local/lib/libkofficecore.so.1 #14 0x28064d06 in main () from /usr/local/lib/kpresenter.so #15 0x804869d in _start () Have you seen this before? Do you know how to fix this? could an old instalation of someting? If possible please try to help-me. Thanks in advance: Paniago -- Nome: Carlos Fernando Assis Paniago Email: pan@panix.ecof.org.br e pan@cnpm.embrapa.br Web: http://www.panix.ecof.org.br/ e http://www.cnpm.embrapa.br/ -- --------------94B8108C8161596DF921CD14 Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit Please try to help-me. I'm using
FreeBSD panix.ecof.org.br 4.2-BETA FreeBSD 4.2-BETA #0: Fri Nov  3 12:20:24 BRST 2000     root@panix.ecof.org.br:/usr/src/sys/compile/PANIX  i386
and X11 R6 Version 4.0.1
    name of display:    :0.0
    vendor string:    The XFree86 Project, Inc
    vendor release number:    4001
And I compiled the KDE  2.0 (first alone, secondly using the ports stuff) and my kpresenter still is dumping
core. with the following dr. Konqui stuff:
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...0x290614f8 in wait4 () from /usr/lib/libc.so.4
#0  0x290614f8 in wait4 () from /usr/lib/libc.so.4
#1  0x29052dcb in waitpid () from /usr/lib/libc.so.4
#2  0x2875028c in KCrash::defaultCrashHandler ()
   from /usr/local/lib/libkdecore.so.4
#3  0xbfbfffac in ?? ()
#4  0x289b578b in read_xpm_image_or_array () from /usr/X11R6/lib/libqt2.so
#5  0x289a39a4 in QImage::QImage () from /usr/X11R6/lib/libqt2.so
#6  0x28a3acb6 in QPixmap::QPixmap () from /usr/X11R6/lib/libqt2.so
#7  0x280d5a7d in KPresenterView::setupScrollbars ()
   from /usr/local/lib/libkpresenterpart.so
#8  0x280c9634 in KPresenterView::createGUI ()
   from /usr/local/lib/libkpresenterpart.so
#9  0x280c18af in KPresenterView::KPresenterView ()
   from /usr/local/lib/libkpresenterpart.so
#10 0x280ff80f in KPresenterDoc::createViewInstance ()
   from /usr/local/lib/libkpresenterpart.so
#11 0x2825012e in KoDocument::createView ()
   from /usr/local/lib/libkofficecore.so.1
#12 0x28260224 in KoMainWindow::setRootDocument ()
   from /usr/local/lib/libkofficecore.so.1
#13 0x282655ed in KoApplication::start ()
   from /usr/local/lib/libkofficecore.so.1
#14 0x28064d06 in main () from /usr/local/lib/kpresenter.so
#15 0x804869d in _start ()
Have you seen this before? Do you know how to fix this? could an old instalation of someting?
If possible please try to help-me.

Thanks in advance:

        Paniago

-- 
Nome:  Carlos Fernando Assis Paniago
Email: pan@panix.ecof.org.br            e       pan@cnpm.embrapa.br
Web:   http://www.panix.ecof.org.br/    e       http://www.cnpm.embrapa.br/ 
--
  --------------94B8108C8161596DF921CD14-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 7 16:40: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 15C4837B4C5 for ; Tue, 7 Nov 2000 16:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA15053; Tue, 7 Nov 2000 16:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from peorth.iteration.net (peorth.iteration.net [208.190.180.178]) by hub.freebsd.org (Postfix) with ESMTP id 1588037B479 for ; Tue, 7 Nov 2000 16:38:20 -0800 (PST) Received: by peorth.iteration.net (Postfix, from userid 1001) id 212B85730D; Tue, 7 Nov 2000 18:38:24 -0600 (CST) Message-Id: <20001108003824.212B85730D@peorth.iteration.net> Date: Tue, 7 Nov 2000 18:38:24 -0600 (CST) From: keichii@iteration.net Reply-To: keichii@peorth.iteration.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22673: New port: chinese/auto-tw-l10n Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22673 >Category: ports >Synopsis: new port: chinese/auto-tw-l10n >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Nov 07 16:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Michael C. Wu >Release: 5.0-CURRENT >Organization: iteration.net >Environment: Tested on PRE_SMPNG, 4.1-BETA, and HEAD Also tested by: keith@freebsd.org, kevlo@freebsd.org >Description: This port follows the proposed automatic L10N for ports discussed at the BSDCon2000 I18N meeting. User only needs to install the port to gain a fully localized Traditional Chinese system. >How-To-Repeat: Please commit. >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: # # auto-tw-l10n # auto-tw-l10n/pkg-plist # auto-tw-l10n/pkg-descr # auto-tw-l10n/pkg-comment # auto-tw-l10n/Makefile # auto-tw-l10n/distinfo # echo c - auto-tw-l10n mkdir -p auto-tw-l10n > /dev/null 2>&1 echo x - auto-tw-l10n/pkg-plist sed 's/^X//' >auto-tw-l10n/pkg-plist << 'END-of-auto-tw-l10n/pkg-plist' X@comment this plist intentionally left empty END-of-auto-tw-l10n/pkg-plist echo x - auto-tw-l10n/pkg-descr sed 's/^X//' >auto-tw-l10n/pkg-descr << 'END-of-auto-tw-l10n/pkg-descr' XTraditional Chinese (BIG-5 encoding) zh_TW.Big5 automatic localization XInstall this port and you will have a Traditional Chinese FreeBSD system END-of-auto-tw-l10n/pkg-descr echo x - auto-tw-l10n/pkg-comment sed 's/^X//' >auto-tw-l10n/pkg-comment << 'END-of-auto-tw-l10n/pkg-comment' XThe automatic localization port for Traditional Chinese zh_TW.Big5 locale END-of-auto-tw-l10n/pkg-comment echo x - auto-tw-l10n/Makefile sed 's/^X//' >auto-tw-l10n/Makefile << 'END-of-auto-tw-l10n/Makefile' XPORTNAME= auto-l10n XPORTVERSION= 1.0 X XCATEGORIES= chinese X XMASTER_SITES= ftp://ftp.iteration.net/pub/patch_chinese/ X XDISTNAME= zh-tw-skel XEXTRACT_SUFX= .tgz X XMAINTAINER= keichii@iteration.net X XLIB_DEPENDS= # XRUN_DEPENDS= ${X11BASE}/lib/aout/zh-XFree86-aoutlibs-3.3.6:${.CURDIR}/../XFree86-aoutlibs \ X cle_base:${PORTSDIR}/chinese/cle_base \ X big5fs:${PORTSDIR}/chinese/big5fs \ X kcfonts:${PORTSDIR}/chinese/kcfonts \ X arphicttf:${PORTSDIR}/chinese/arphicttf \ X moefonts-cid:${PORTSDIR}/chinese/moefonts-cid \ X moettf:{$PORTSDIR}/chinese/moettf \ X autoconvert:${PORTSDIR}/chinese/autoconvert \ X bg5ps:${PORTSDIR}/chinese/bg5ps \ X acroread-chtfont:${PORTSDIR}/chinese/acroread-chtfont \ X big5con:${PORTSDIR}/chinese/big5con \ X libtabe:${PORTSDIR}/chinese/libtabe \ X linux-gtk:${PORTSDIR}/chinese/linux-gtk \ X mutt:{$PORTSDIR}/chinese/mutt \ X netscape47-communicator:{$PORTSDIR}/chinese/netscape47-communicator \ X nvi-big5:{$PORTSDIR}/chinese/nvi-big5 \ X pine4:{$PORTSDIR}/chinese/pine4 \ X pyDict:{$PORTSDIR}/chinese/pyDict \ X rxvt-big5:{$PORTSDIR}/chinese/rxvt-big5 \ X aterm:${PORTSDIR}/chinese/aterm \ X telnet:{$PORTSDIR}/chinese/telnet \ X tin:{$PORTSDIR}/chinese/tin \ X tintin++:{$PORTSDIR}/chinese/tintin++ \ X ve:{$PORTSDIR}/chinese/ve \ X xcin25:{$PORTSDIR}/chinese/xcin25 \ X xemacs21:{$PORTSDIR}/chinese/xemacs21 \ X xmms:{$PORTSDIR}/chinese/xmms \ X X XNO_BUILD= yes X Xdo-install: # empty X Xpost-install: X X @${ECHO} "*************************************************************" X @${ECHO} "* English Instructions: *" X @${ECHO} "* After your install, you should type the following command *" X @${ECHO} "* as the normal user. *" X @${ECHO} "* WARNING: You should back up your configuration dotfiles *" X @${ECHO} "* WARNING: BEFORE you type the following. *" X @${ECHO} "* cd /usr/ports/chinese/auto-tw-l10n && make install-user *" X @${ECHO} "*************************************************************" X @${ECHO} "* €€€å€j€­œX»¡©ú¡G(English users ignore following *" X @${ECHO} "* Šb±zŠwžË§¹²Š«á¡AœÐ¥H±z¥­±`ªºšÏ¥ÎªÌshell¥Ž€U­±³oŠæ«ü¥O *" X @${ECHO} "* ª`·N¡GœÐ±N±zªºšÏ¥ÎªÌ¥Ø¿ýŠU³]©wÀÉ¥ý³Æ¥÷ *" X @${ECHO} "* cd /usr/ports/chinese/auto-tw-l10n && make install-user *" X @${ECHO} "*************************************************************" X Xinstall-user: X X#Temporary hack before adduser is modified X# For future adduser X# adduser -l10n -v $HOME X X /bin/cp ${.CURDIR}/work/zh_TW.Big5/* ${HOME}/ X X @${ECHO} "*************************************************************" X @${ECHO} "* English Instructions: *" X @${ECHO} "* Merge your backed up old dotfiles with the new ones. *" X @${ECHO} "*************************************************************" X @${ECHO} "* €€€å€j€­œX»¡©ú¡G(English users ignore following *" X @${ECHO} "* œÐ€ñ¹ï±zªºÂ³]©wžò·s³]©w *" X @${ECHO} "*************************************************************" X X X.include X END-of-auto-tw-l10n/Makefile echo x - auto-tw-l10n/distinfo sed 's/^X//' >auto-tw-l10n/distinfo << 'END-of-auto-tw-l10n/distinfo' XMD5 (zh-tw-skel.tgz) = ebbec39888e5381f029dcb99e61f55a5 END-of-auto-tw-l10n/distinfo exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 7 17: 0: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E746C37B4C5 for ; Tue, 7 Nov 2000 17:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA17329; Tue, 7 Nov 2000 17:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from pebkac.owp.csus.edu (pebkac.owp.csus.edu [130.86.232.245]) by hub.freebsd.org (Postfix) with ESMTP id 5C1AE37B4CF for ; Tue, 7 Nov 2000 16:56:47 -0800 (PST) Received: (from scottj@localhost) by pebkac.owp.csus.edu (8.9.3/8.9.3) id QAA48240; Tue, 7 Nov 2000 16:56:46 -0800 (PST) (envelope-from scottj) Message-Id: <200011080056.QAA48240@pebkac.owp.csus.edu> Date: Tue, 7 Nov 2000 16:56:46 -0800 (PST) From: joseph@randomnetworks.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22674: distfile location change, security/swatch Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22674 >Category: ports >Synopsis: distfile location change, security/swatch >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Nov 07 17:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Joseph Scott >Release: >Organization: >Environment: N/A >Description: According to : http://people.freebsd.org/~fenner/portsurvey/ports@freebsd.org.html The port security/swatch has a distfile that is not downloadable. The directory for this distfile has changed, see the patch below. This patch also removes a MASTER_SITE that doesn't carry the OLD directory. This port really should be updated to swatch 3.x, perhaps I'll take a crack at it. >How-To-Repeat: cd /usr/ports/security/swatch && make fetch; >Fix: diff -ruN security/swatch/Makefile.orig security/swatch/Makefile --- security/swatch/Makefile.orig Tue Nov 7 16:54:33 2000 +++ security/swatch/Makefile Tue Nov 7 16:54:47 2000 @@ -8,8 +8,7 @@ PORTNAME= swatch PORTVERSION= 2.2 CATEGORIES= security sysutils -MASTER_SITES= ftp://ftp.stanford.edu/general/security-tools/swatch/ \ - ftp://ftp.cert.dfn.de/pub/tools/audit/swatch/ +MASTER_SITES= ftp://ftp.stanford.edu/general/security-tools/swatch/OLD/ MAINTAINER= ports@FreeBSD.org >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 7 17: 4: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from tisch.mail.mindspring.net (tisch.mail.mindspring.net [207.69.200.157]) by hub.freebsd.org (Postfix) with ESMTP id 7A14F37B479 for ; Tue, 7 Nov 2000 17:04:01 -0800 (PST) Received: from silvia.hip.berkeley.edu (sji-ca7-217.ix.netcom.com [209.109.235.217]) by tisch.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id UAA20443 for ; Tue, 7 Nov 2000 20:03:58 -0500 (EST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.1/8.11.0) id eA813km74820; Tue, 7 Nov 2000 17:03:47 -0800 (PST) (envelope-from asami@cs.berkeley.edu) X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: ports@FreeBSD.org Subject: Re: cvs commit: ports/Mk bsd.port.mk ports/astro/xephem Makefile ports/audio/timidity++-emacs Makefile ports/audio/xmcd Makefile ports/audio/xmmix Makefile ports/audio/xmradio Makefile ports/biology/ncbi-toolkit Makefile ports/cad/electric Makefile ... References: <200011072328.PAA05294@freefall.freebsd.org> From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) MIME-Version: 1.0 (generated by SEMI 1.13.7 - "Awazu") Content-Type: text/plain; charset=US-ASCII Date: 07 Nov 2000 17:03:42 -0800 In-Reply-To: <200011072328.PAA05294@freefall.freebsd.org> (Satoshi Asami's message of "Tue, 7 Nov 2000 15:28:21 -0800 (PST)") Message-ID: Lines: 19 User-Agent: T-gnus/6.14.5 (based on Gnus v5.8.7) (revision 06) SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) Emacs/20.7 (i386--freebsd) MULE/4.0 =?ISO-2022-JP?B?KBskQjJWMWMbKEIp?= Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * asami 2000/11/07 15:28:20 PST * Log: * Change motif to a normal dependency. REQUIRES_MOTIF is now called * USE_MOTIF and generates a LIB_DEPENDS to x11-toolkits/open-motif. As * before, it implies USE_XPM (and therefore USE_XLIB). Motif-dummy is * removed from PKG_IGNORE_DEPENDS, whose sole resident is now XFree86-3. Yay! :) * Most of the simple ".if defined(HAVE_MOTIF)"s are removed to always * have USE_MOTIF. ftp/moxftp will define USE_MOTIF unless * WANT_ATHENA_VERSION (new variable) is defined. I merged the X cases * in cad/mars, so USE_MOTIF is used iff WITHOUT_X11 is not defined. I believe the only remaining issues are */xemacs, vim* and lesstif. Maintainers of respective ports, please take care of them. Thanks. :) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 7 17: 7:43 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BBD5937B479; Tue, 7 Nov 2000 17:07:41 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA20035; Tue, 7 Nov 2000 17:07:41 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Date: Tue, 7 Nov 2000 17:07:41 -0800 (PST) From: Message-Id: <200011080107.RAA20035@freefall.freebsd.org> To: keichii@peorth.iteration.net, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22673: new port: chinese/auto-tw-l10n Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: chinese/auto-tw-l10n State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Tue Nov 7 17:07:19 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22673 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 7 19:16: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from lant.mbp.ee (lant.mbp.ee [194.204.12.41]) by hub.freebsd.org (Postfix) with ESMTP id E414B37B479 for ; Tue, 7 Nov 2000 19:16:06 -0800 (PST) Received: by lant.mbp.ee with Internet Mail Service (5.5.2650.21) id ; Wed, 8 Nov 2000 05:17:13 +0200 Message-ID: <8E67E032AD23D4118F740050042F21F782@lant.mbp.ee> From: Lauri Laupmaa To: "'ports@freebsd.org'" Subject: AMaViS port ? Date: Wed, 8 Nov 2000 05:17:12 +0200 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Just found this mail antivirus tool ... but no port for it :( Should I build a port for it ? What are the prerequisites ? Are there any howtos/faqs about building ports ? L. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 7 19:18:51 2000 Delivered-To: freebsd-ports@freebsd.org Received: from peitho.fxp.org (peitho.fxp.org [209.26.95.40]) by hub.freebsd.org (Postfix) with ESMTP id B15E337B479 for ; Tue, 7 Nov 2000 19:18:49 -0800 (PST) Received: by peitho.fxp.org (Postfix, from userid 1501) id 4FD961360E; Tue, 7 Nov 2000 22:18:55 -0500 (EST) Date: Tue, 7 Nov 2000 22:18:55 -0500 From: Chris Faulhaber To: Lauri Laupmaa Cc: "'ports@freebsd.org'" Subject: Re: AMaViS port ? Message-ID: <20001107221855.A38942@peitho.fxp.org> References: <8E67E032AD23D4118F740050042F21F782@lant.mbp.ee> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <8E67E032AD23D4118F740050042F21F782@lant.mbp.ee>; from mauri@aripaev.ee on Wed, Nov 08, 2000 at 05:17:12AM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Nov 08, 2000 at 05:17:12AM +0200, Lauri Laupmaa wrote: > Hi > > Just found this mail antivirus tool ... but no port for it :( > Should I build a port for it ? What are the prerequisites ? Go for it > Are there any howtos/faqs about building ports ? > http://www.FreeBSD.org/porters-handbook/ -- Chris D. Faulhaber - jedgar@fxp.org - jedgar@FreeBSD.org -------------------------------------------------------- FreeBSD: The Power To Serve - http://www.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 7 19:30: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 617E237B4C5 for ; Tue, 7 Nov 2000 19:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA36692; Tue, 7 Nov 2000 19:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 3404337B479; Tue, 7 Nov 2000 19:26:14 -0800 (PST) Message-Id: <20001108032614.3404337B479@hub.freebsd.org> Date: Tue, 7 Nov 2000 19:26:14 -0800 (PST) From: dwcjr@inethouston.net To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/22679: Port Update: emulators/iNES Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22679 >Category: ports >Synopsis: Port Update: emulators/iNES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Nov 07 19:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: David W. Chapman Jr. >Release: 4.1.1-STABLE >Organization: Raintree Network Services >Environment: >Description: Update iNES to 1.2 update distinfo >How-To-Repeat: >Fix: diff -urN ines.orig/Makefile ines/Makefile --- ines.orig/Makefile Tue Nov 7 21:27:10 2000 +++ ines/Makefile Tue Nov 7 21:28:47 2000 @@ -6,10 +6,10 @@ # PORTNAME= ines -PORTVERSION= 1.0 +PORTVERSION= 1.2 CATEGORIES= emulators MASTER_SITES= http://www.komkon.org/fms/iNES/ -DISTNAME= iNES10-FreeBSD-80x86-bin +DISTNAME= iNES12-FreeBSD-80x86-bin EXTRACT_SUFX= .tar.Z MAINTAINER= nakai@FreeBSD.org diff -urN ines.orig/distinfo ines/distinfo --- ines.orig/distinfo Tue Nov 7 21:27:10 2000 +++ ines/distinfo Tue Nov 7 21:29:06 2000 @@ -1 +1 @@ -MD5 (iNES10-FreeBSD-80x86-bin.tar.Z) = 8986ab4fcff8a3fac5ee79e9d74a45f8 +MD5 (iNES12-FreeBSD-80x86-bin.tar.Z) = 51667a9d34ca6e38afd3492449141ff4 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 7 21:10: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5306137B4C5 for ; Tue, 7 Nov 2000 21:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA49253; Tue, 7 Nov 2000 21:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id B940737B479; Tue, 7 Nov 2000 21:05:36 -0800 (PST) Message-Id: <20001108050536.B940737B479@hub.freebsd.org> Date: Tue, 7 Nov 2000 21:05:36 -0800 (PST) From: bsdx@looksharp.net To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/22681: gcombust port update [MAINTAINER] Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22681 >Category: ports >Synopsis: gcombust port update [MAINTAINER] >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Nov 07 21:10:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Adam McDougall >Release: 4.1.1-STABLE >Organization: >Environment: FreeBSD amethyst.looksharp.net 4.1.1-STABLE FreeBSD 4.1.1-STABLE #0: Wed Oct 18 20:54:20 EDT 2000 user1@amethyst.looksharp.net:/usr/obj/usr/src/sys/AMETHYST i386 >Description: Update the port to the latest version 0.1.37. BUGFIXES: * blanking a cd-rw would leave the tabs disabled (fix by Tanel Kuusk ) * switches from burn-tab to output-tab again when starting an action * now checks for existence of files before trying to execute them NEWS: * Italian translation by Simo Sorce >How-To-Repeat: >Fix: diff -urN gcombust.old/Makefile gcombust/Makefile --- gcombust.old/Makefile Tue Nov 7 23:24:23 2000 +++ gcombust/Makefile Tue Nov 7 23:25:34 2000 @@ -6,7 +6,7 @@ # PORTNAME= gcombust -PORTVERSION= 0.1.36 +PORTVERSION= 0.1.37 CATEGORIES= sysutils MASTER_SITES= http://www.abo.fi/~jmunsin/gcombust/ diff -urN gcombust.old/distinfo gcombust/distinfo --- gcombust.old/distinfo Tue Nov 7 23:24:23 2000 +++ gcombust/distinfo Tue Nov 7 23:52:37 2000 @@ -1 +1 @@ -MD5 (gcombust-0.1.36.tar.gz) = 425d4738647e09cbdb9f5b9f2e0c48bb +MD5 (gcombust-0.1.37.tar.gz) = 32b4026503ab46c16bc6838ef15c70e2 diff -urN gcombust.old/pkg-plist gcombust/pkg-plist --- gcombust.old/pkg-plist Tue Nov 7 23:24:23 2000 +++ gcombust/pkg-plist Wed Nov 8 00:00:18 2000 @@ -5,6 +5,7 @@ share/locale/es/LC_MESSAGES/gcombust.mo share/locale/fr/LC_MESSAGES/gcombust.mo share/locale/hu/LC_MESSAGES/gcombust.mo +share/locale/it/LC_MESSAGES/gcombust.mo share/locale/ja/LC_MESSAGES/gcombust.mo share/locale/ko/LC_MESSAGES/gcombust.mo share/locale/no/LC_MESSAGES/gcombust.mo >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 7 23:30: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C565037B4C5 for ; Tue, 7 Nov 2000 23:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA70422; Tue, 7 Nov 2000 23:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from alamis.holywar.net (alamis.holywar.net [210.102.1.6]) by hub.freebsd.org (Postfix) with ESMTP id 63AE737B479 for ; Tue, 7 Nov 2000 23:27:38 -0800 (PST) Received: (from hollywar@localhost) by alamis.holywar.net (8.11.0/8.11.0) id eA87RXw30068; Wed, 8 Nov 2000 16:27:33 +0900 (KST) (envelope-from hollywar) Message-Id: <200011080727.eA87RXw30068@alamis.holywar.net> Date: Wed, 8 Nov 2000 16:27:33 +0900 (KST) From: hollywar@holywar.net Reply-To: hollywar@holywar.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22683: New port net/dnip-update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22683 >Category: ports >Synopsis: New port net/dnip-update >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Nov 07 23:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: JunSeon Oh >Release: FreeBSD 4.1.1-STABLE i386 >Organization: holynet >Environment: FreeBSD alamis 4.1.1-STABLE FreeBSD 4.1.1-STABLE #0: Tue Oct 10 06:18:01 GMT 2000 tsoi@devel:/usr/obj/usr/src/sys/ALAMIS i386 >Description: This port collection is a dynamic update client on WWW.DNIP.NET It is very simple free dynamic domain name service client using /usr/bin/fetch. I'm a maintainer of www.dnip.net. I hope that is a useful services on many people of freebsd users. Thanks. >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: # # . # ./Makefile # ./pkg-descr # ./src # ./src/dnip-update.sh # ./pkg-comment # ./pkg-plist # echo c - . mkdir -p . > /dev/null 2>&1 echo x - ./Makefile sed 's/^X//' >./Makefile << 'END-of-./Makefile' X# New ports collection makefile for: dnip-update X# Date created: 8 Nov 2000 X# Whom: JunSeon Oh X# X# $FreeBSD$ X# X XPORTNAME= dnip-update XPORTVERSION= 0.1 XCATEGORIES= net XMASTER_SITES= # none XDISTFILES= # none X XMAINTAINER= hollywar@mail.holywar.net X XNO_BUILD= yes XNO_WRKSUBDIR= yes X XSRC= ${.CURDIR}/src X Xdo-fetch: X @${DO_NADA} X Xdo-install: X ${INSTALL} -c -m 700 ${SRC}/dnip-update.sh ${PREFIX}/sbin/dnip-update X Xpost-install: X @${ECHO_MSG} "*******************************************************" X @${ECHO_MSG} "* First , you need to register a new account *" X @${ECHO_MSG} "* on http://www.dnip.net/register.cgi *" X @${ECHO_MSG} "* *" X @${ECHO_MSG} "* After registering , please change ID and PASSWORD *" X @${ECHO_MSG} "* as your own in ${PREFIX}/sbin/dnip-update *" X @${ECHO_MSG} "*******************************************************" X X.include X X END-of-./Makefile echo x - ./pkg-descr sed 's/^X//' >./pkg-descr << 'END-of-./pkg-descr' XDNIP.NET is a free domain name service provider. It aim to provide fast, stable and convenient services. Give your computer a name, in order for people to connect to your computer on the internet. An internet name makes connecting to your computer easy. X XFeatures: X- Auto detect IP X- Manual IP X- MX records X- SUB NS records X- TTL X XWWW: http://www.dnip.net/ X X-- XMade By JunSeon Oh END-of-./pkg-descr echo c - ./src mkdir -p ./src > /dev/null 2>&1 echo x - ./src/dnip-update.sh sed 's/^X//' >./src/dnip-update.sh << 'END-of-./src/dnip-update.sh' X#!/bin/sh X# X# DNIP ip update utility (fetch) X# X# Author : JunSeon Oh X# Date : $Date: 2000/11/08 07:05:14 $ X# X# $Revision: 1.7 $ X# X# Please change ID and PASSWORD correctly X# X# If you want set the IP for manually , please change AUTO to your IP X# X# Free Dynamic Domain Name Server Service DNIP.NET (http://www.dnip.net) X# X XID="ID" XPASSWORD="PASSWORD" X XPROGRAM="/usr/bin/fetch" XDESTFILE="/tmp/dnip.result" XADDRESS="AUTO" X X# X# IP update routine uses ifconfig. If your computer got an ip on NIC , it is X# better solutions than auto detect . Because many ISP use a proxy server when X# they routing to foreign country. In bad case, dnip server detect a proxy ip. X# Please change DEVICE correctly and remove the comment mark. X# X# DEVICE="rl0" X# ADDRESS=`ifconfig $DEVICE | grep "inet " | awk '{print $2}'` X# X Xif [ -x $PROGRAM ] ; then X $PROGRAM -q -o $DESTFILE "http://www.dnip.net/update.cgi?id=$ID&password=$PASSWORD&step=2&address=$ADDRESS" && echo "Update Done. (Result : $DESTFILE)" && cat $DESTFILE Xelse X echo "Program could not be run. plesase check $PROGRAM" Xfi X X# X# $Id: update_fetch.sh,v 1.7 2000/11/08 07:05:14 hollywar Exp $ X# END-of-./src/dnip-update.sh echo x - ./pkg-comment sed 's/^X//' >./pkg-comment << 'END-of-./pkg-comment' XA DNIP.NET clinet for UNIX END-of-./pkg-comment echo x - ./pkg-plist sed 's/^X//' >./pkg-plist << 'END-of-./pkg-plist' Xsbin/dnip-update END-of-./pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 2:20:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BFC8F37B4C5 for ; Wed, 8 Nov 2000 02:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA94431; Wed, 8 Nov 2000 02:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from ws130.nomadiclab.com (ws130.nomadiclab.com [195.165.196.130]) by hub.freebsd.org (Postfix) with ESMTP id 7202137B479 for ; Wed, 8 Nov 2000 02:17:35 -0800 (PST) Received: from ws140.nomadiclab.com (ws140.nomadiclab.com [195.165.196.140]) by ws130.nomadiclab.com (Postfix) with ESMTP id F064772503 for ; Wed, 8 Nov 2000 12:17:33 +0200 (EET) Received: (from martti@localhost) by ws140.nomadiclab.com (8.11.1/8.9.3) id eA8AHXq68006; Wed, 8 Nov 2000 12:17:33 +0200 (EET) (envelope-from martti@nomadiclab.com) Message-Id: <200011081017.eA8AHXq68006@ws140.nomadiclab.com> Date: Wed, 8 Nov 2000 12:17:33 +0200 (EET) From: martti.kuparinen@piuha.net Reply-To: martti.kuparinen@piuha.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22686: [PATCH] net/citrix_ica update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22686 >Category: ports >Synopsis: [PATCH] net/citrix_ica update >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Nov 08 02:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Martti Kuparinen >Release: FreeBSD 4.2-BETA i386 >Organization: piuha.net >Environment: >Description: This patch updates the Citrix package to a more recent version. Please close ports/21555 as it's using the old layout... >How-To-Repeat: >Fix: diff -urN /usr/ports/net/citrix_ica/Makefile citrix_ica/Makefile --- /usr/ports/net/citrix_ica/Makefile Thu Oct 5 09:54:40 2000 +++ citrix_ica/Makefile Wed Nov 8 12:09:38 2000 @@ -6,11 +6,10 @@ # PORTNAME= citrix_ica -PORTVERSION= 3.0.15 +PORTVERSION= 6.00.908 CATEGORIES= net comms linux MASTER_SITES= -DISTNAME= linux -EXTRACT_SUFX= .tar.Z +DISTNAME= linuxx86 MAINTAINER= msmith@FreeBSD.org @@ -30,7 +29,7 @@ .include .if !exists(${DISTDIR}/${DIST_SUBDIR}/${DISTNAME}${EXTRACT_SUFX}) -IGNORE='The distribution file for this port may not be automatically fetched due to licensing restrictions. You MUST fetch the file manually after reading and agreeing to the license at: http://download.citrix.com/download.asp?client=LINUX Once ${DISTFILES} has been downloaded, move it to ${DISTDIR}/${DIST_SUBDIR} and then restart this build.' +IGNORE='The distribution file for this port may not be automatically fetched due to licensing restrictions. You MUST fetch the file manually after reading and agreeing to the license at: http://download.citrix.com/ Once ${DISTFILES} has been downloaded, move it to ${DISTDIR}/${DIST_SUBDIR} and then restart this build.' .endif do-install: diff -urN /usr/ports/net/citrix_ica/distinfo citrix_ica/distinfo --- /usr/ports/net/citrix_ica/distinfo Sat Mar 11 01:34:22 2000 +++ citrix_ica/distinfo Wed Nov 8 12:07:00 2000 @@ -1 +1 @@ -MD5 (citrix_ica/linux.tar.Z) = 2317de797885c3702e49314f3de07499 +MD5 (citrix_ica/linuxx86.tar.gz) = cd26657c3436a34f7a0b1d5084189678 diff -urN /usr/ports/net/citrix_ica/files/patch-ab citrix_ica/files/patch-ab --- /usr/ports/net/citrix_ica/files/patch-ab Tue Sep 22 00:30:24 1998 +++ citrix_ica/files/patch-ab Wed Nov 8 12:07:00 2000 @@ -1,5 +1,5 @@ --- ../original/linux/hinst Wed Sep 9 05:58:37 1998 -+++ linux/hinst Mon Sep 21 01:47:58 1998 ++++ linuxx86/hinst Mon Sep 21 01:47:58 1998 @@ -714,13 +714,13 @@ echo_no_nl $calcspace3 read dummy diff -urN /usr/ports/net/citrix_ica/files/response citrix_ica/files/response --- /usr/ports/net/citrix_ica/files/response Tue Sep 22 00:30:24 1998 +++ citrix_ica/files/response Wed Nov 8 12:07:00 2000 @@ -2,4 +2,6 @@ DESTINATION y y +y +y 3 diff -urN /usr/ports/net/citrix_ica/pkg-plist citrix_ica/pkg-plist --- /usr/ports/net/citrix_ica/pkg-plist Thu Jul 22 20:29:26 1999 +++ citrix_ica/pkg-plist Wed Nov 8 12:07:00 2000 @@ -1,11 +1,16 @@ bin/wfcmgr bin/wfica +lib/ICAClient/Npica +lib/ICAClient/Npica.ad +lib/ICAClient/PDCRYPT1.DLL +lib/ICAClient/PDCRYPT2.DLL lib/ICAClient/Wfcmgr lib/ICAClient/Wfica lib/ICAClient/Wfcmgr.ad lib/ICAClient/Wfica.ad lib/ICAClient/eula.txt lib/ICAClient/install.txt +lib/ICAClient/npica.so lib/ICAClient/readme.txt lib/ICAClient/setupwfc lib/ICAClient/wfcmgr @@ -60,18 +65,6 @@ lib/ICAClient/help/SPARC.gif lib/ICAClient/help/contents.gif lib/ICAClient/help/contents.htm -lib/ICAClient/help/ctx00001.htm -lib/ICAClient/help/ctx00002.htm -lib/ICAClient/help/ctx00003.htm -lib/ICAClient/help/ctx00004.htm -lib/ICAClient/help/ctx00005.htm -lib/ICAClient/help/ctx00006.htm -lib/ICAClient/help/ctx00007.htm -lib/ICAClient/help/ctx00008.htm -lib/ICAClient/help/ctx00009.htm -lib/ICAClient/help/ctx00010.htm -lib/ICAClient/help/ctx00011.htm -lib/ICAClient/help/ctx00012.htm lib/ICAClient/help/ctx00013.htm lib/ICAClient/help/ctx00014.htm lib/ICAClient/help/ctx00015.htm @@ -83,7 +76,6 @@ lib/ICAClient/help/ctx00021.htm lib/ICAClient/help/ctx00022.htm lib/ICAClient/help/ctx00023.htm -lib/ICAClient/help/ctx00024.htm lib/ICAClient/help/ctx00025.htm lib/ICAClient/help/ctx00026.htm lib/ICAClient/help/ctx00027.htm @@ -95,15 +87,26 @@ lib/ICAClient/help/ctx00033.htm lib/ICAClient/help/ctx00034.htm lib/ICAClient/help/ctx00035.htm -lib/ICAClient/help/ctx00036.htm -lib/ICAClient/help/ctx00037.htm -lib/ICAClient/help/ctx00038.htm -lib/ICAClient/help/ctx00039.htm lib/ICAClient/help/ctx00195.htm +lib/ICAClient/help/ctx00196.htm lib/ICAClient/help/ctx00197.htm lib/ICAClient/help/ctx00198.htm lib/ICAClient/help/ctx00199.htm -lib/ICAClient/help/ctx00295.htm +lib/ICAClient/help/ctx00200.htm +lib/ICAClient/help/ctx00201.htm +lib/ICAClient/help/ctx00202.htm +lib/ICAClient/help/ctx00203.htm +lib/ICAClient/help/ctx00204.htm +lib/ICAClient/help/ctx00205.htm +lib/ICAClient/help/ctx00206.htm +lib/ICAClient/help/ctx00207.htm +lib/ICAClient/help/ctx00208.htm +lib/ICAClient/help/ctx00209.htm +lib/ICAClient/help/ctx00210.htm +lib/ICAClient/help/ctx00211.htm +lib/ICAClient/help/comport.gif +lib/ICAClient/help/firewall.gif +lib/ICAClient/help/hotkeys.gif lib/ICAClient/help/index.gif lib/ICAClient/help/index.htm lib/ICAClient/help/index_a.gif @@ -132,13 +135,20 @@ lib/ICAClient/help/index_x.gif lib/ICAClient/help/index_y.gif lib/ICAClient/help/index_z.gif +lib/ICAClient/help/login.gif lib/ICAClient/help/next0.gif lib/ICAClient/help/next1.gif lib/ICAClient/help/prev0.gif lib/ICAClient/help/prev1.gif lib/ICAClient/help/prop_conn.gif +lib/ICAClient/help/properties_network.gif lib/ICAClient/help/sett_cache.gif lib/ICAClient/help/sett_cdm.gif +lib/ICAClient/help/settings_diskc.gif +lib/ICAClient/icons/ica16.xpm +lib/ICAClient/icons/ica32.xpm +lib/ICAClient/icons/ica48.xpm +lib/ICAClient/icons/ica64.xpm lib/ICAClient/keyboard/age2.kbd lib/ICAClient/keyboard/agex2.kbd lib/ICAClient/keyboard/automatic.kbd @@ -172,6 +182,7 @@ lib/ICAClient/keyboard/keyboard.ini lib/ICAClient/keyboard/linux.kbd lib/ICAClient/keyboard/mac101.kbd +lib/ICAClient/keyboard/netbsd.kbd lib/ICAClient/keyboard/ncdn-101.kbd lib/ICAClient/keyboard/ncdn-102.kbd lib/ICAClient/keyboard/scoos5.kbd @@ -195,17 +206,20 @@ lib/ICAClient/keyboard/sparcus3.kbd lib/ICAClient/keyboard/sparcus4.kbd lib/ICAClient/keyboard/sparcus5.kbd -lib/ICAClient/pkginf/F.core.linux -lib/ICAClient/pkginf/Ver.core.linux +lib/ICAClient/keyboard/trimodal.kbd +lib/ICAClient/pkginf/Ver.core.linuxx86 +lib/ICAClient/pkginf/F.core.linuxx86 lib/ICAClient/util/XCapture lib/ICAClient/util/XCapture.ad lib/ICAClient/util/echo_cmd lib/ICAClient/util/hinst +lib/ICAClient/util/icalicense.sh lib/ICAClient/util/xcapture @dirrm lib/ICAClient/.config @dirrm lib/ICAClient/config @dirrm lib/ICAClient/cache @dirrm lib/ICAClient/help +@dirrm lib/ICAClient/icons @dirrm lib/ICAClient/keyboard @dirrm lib/ICAClient/pkginf @dirrm lib/ICAClient/util >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 4:10: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 17B3537B4C5 for ; Wed, 8 Nov 2000 04:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA12630; Wed, 8 Nov 2000 04:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from mail.enteract.com (mail.enteract.com [207.229.143.33]) by hub.freebsd.org (Postfix) with ESMTP id 4BC9537B4C5 for ; Wed, 8 Nov 2000 04:00:59 -0800 (PST) Received: from jamestown.enteract.com (207-229-151-171.d.enteract.com [207.229.151.171]) by mail.enteract.com (8.9.3/8.9.3) with ESMTP id GAA97792 for ; Wed, 8 Nov 2000 06:00:56 -0600 (CST) (envelope-from jtm@enteract.com) Received: (from jtm@localhost) by jamestown.enteract.com (8.9.3/8.9.3) id GAA19933; Wed, 8 Nov 2000 06:01:04 -0600 (CST) (envelope-from jtm) Message-Id: <200011081201.GAA19933@jamestown.enteract.com> Date: Wed, 8 Nov 2000 06:01:04 -0600 (CST) From: jtm63@enteract.com Reply-To: jtm63@enteract.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22687: ImageMagick make fails Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22687 >Category: ports >Synopsis: ImageMagick make fails >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Nov 08 04:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: James McNaughton >Release: FreeBSD 3.5-STABLE i386 >Organization: >Environment: >Description: Making port ImageMagick (as part of kde11 reinstall) fails with an error: Script started on Wed Nov 8 05:50:21 2000 jamestown# make ===> Configuring for ImageMagick-5.2.3 configure.in:824: warning: AC_TRY_RUN called without default to allow cross compiling configure.in:1062: warning: AC_TRY_RUN called without default to allow cross compiling loading cache ./config.cache configuring ImageMagick 5.2.3 checking host system type... i386--freebsd3.5 checking target system type... i386--freebsd3.5 checking build system type... i386--freebsd3.5 checking whether build environment is sane... yes checking for a BSD compatible install... /usr/bin/install -c -o root -g wheel checking for mawk... (cached) awk checking whether make sets ${MAKE}... (cached) yes checking for gcc... (cached) cc checking whether the C compiler (cc -O -pipe ) works... yes checking whether the C compiler (cc -O -pipe ) is a cross-compiler... no checking whether we are using GNU C... (cached) yes checking whether cc accepts -g... (cached) yes checking how to run the C preprocessor... (cached) cc -E checking dependency style of cc... (cached) gcc checking for ld used by GCC... (cached) /usr/libexec/elf/ld checking if the linker (/usr/libexec/elf/ld) is GNU ld... (cached) yes checking how to run the C preprocessor... cc -E checking for a BSD compatible install... /usr/bin/install -c -o root -g wheel checking whether make sets ${MAKE}... (cached) yes checking whether ln -s works... (cached) yes checking for Cygwin environment... (cached) no checking for mingw32 environment... (cached) no checking for executable suffix... (cached) no checking for object suffix... (cached) o checking for /usr/libexec/elf/ld option to reload object files... (cached) -r checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking how to recognise dependant libraries... (cached) pass_all checking for ranlib... (cached) ranlib checking for strip... (cached) strip updating cache ./config.cache ltconfig: unrecognized option `--build=i386--freebsd3.5' Try `ltconfig --help' for more information. configure: error: libtool configure failed ===> Script "configure" failed: here are the contents of "config.log" This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. configure:654: checking host system type configure:675: checking target system type configure:693: checking build system type configure:718: checking whether build environment is sane configure:773: checking for a BSD compatible install configure:860: checking for mawk configure:890: checking whether make sets ${MAKE} configure:1022: checking for gcc configure:1135: checking whether the C compiler (cc -O -pipe ) works configure:1151: cc -o conftest -O -pipe -I/usr/local/include conftest.c -L/usr/local/lib 1>&5 configure:1177: checking whether the C compiler (cc -O -pipe ) is a cross-compiler configure:1182: checking whether we are using GNU C configure:1210: checking whether cc accepts -g configure:1243: checking how to run the C preprocessor configure:1331: checking dependency style of cc configure:1387: checking for ld used by GCC configure:1455: checking if the linker (/usr/libexec/elf/ld) is GNU ld configure:1473: checking how to run the C preprocessor configure:1564: checking for a BSD compatible install configure:1617: checking whether make sets ${MAKE} configure:1644: checking whether ln -s works configure:1669: checking for Cygwin environment configure:1702: checking for mingw32 environment configure:1733: checking for executable suffix configure:1764: checking for object suffix configure:1882: checking for /usr/libexec/elf/ld option to reload object files configure:1894: checking for BSD-compatible nm configure:1931: checking how to recognise dependant libraries configure:2216: checking for ranlib configure:2283: checking for strip (end of "config.log") *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. jamestown# ^Dexit Script done on Wed Nov 8 05:50:46 2000 >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 4:14:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 544E737B479; Wed, 8 Nov 2000 04:14:08 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA13148; Wed, 8 Nov 2000 04:14:08 -0800 (PST) (envelope-from sobomax@FreeBSD.org) Date: Wed, 8 Nov 2000 04:14:08 -0800 (PST) From: Message-Id: <200011081214.EAA13148@freefall.freebsd.org> To: jtm63@enteract.com, sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22687: ImageMagick make fails Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ImageMagick make fails State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Wed Nov 8 04:11:45 PST 2000 State-Changed-Why: Please reinstall your libtool port from the freshly cvsup'ed ports collection. You should have 1.3.4_1 version of libtool installed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=22687 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 4:23:14 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A4FF237B479; Wed, 8 Nov 2000 04:23:11 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA14361; Wed, 8 Nov 2000 04:23:11 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Date: Wed, 8 Nov 2000 04:23:11 -0800 (PST) From: Message-Id: <200011081223.EAA14361@freefall.freebsd.org> To: peterh@sapros.com, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22666: Update port: net/fugu Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: net/fugu State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Wed Nov 8 04:22:48 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22666 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 4:25: 4 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BC21337B479; Wed, 8 Nov 2000 04:25:02 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA14670; Wed, 8 Nov 2000 04:25:02 -0800 (PST) (envelope-from sobomax@FreeBSD.org) Date: Wed, 8 Nov 2000 04:25:02 -0800 (PST) From: Message-Id: <200011081225.EAA14670@freefall.freebsd.org> To: bsdx@looksharp.net, sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22681: gcombust port update [MAINTAINER] Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: gcombust port update [MAINTAINER] State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Wed Nov 8 04:24:40 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=22681 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 4:26:38 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F072437B479; Wed, 8 Nov 2000 04:26:36 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA14888; Wed, 8 Nov 2000 04:26:36 -0800 (PST) (envelope-from sobomax@FreeBSD.org) Date: Wed, 8 Nov 2000 04:26:36 -0800 (PST) From: Message-Id: <200011081226.EAA14888@freefall.freebsd.org> To: sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org, nakai@FreeBSD.org Subject: Re: ports/22679: Port Update: emulators/iNES Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port Update: emulators/iNES Responsible-Changed-From-To: freebsd-ports->nakai Responsible-Changed-By: sobomax Responsible-Changed-When: Wed Nov 8 04:25:40 PST 2000 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=22679 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 4:30:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 96B6C37B4C5 for ; Wed, 8 Nov 2000 04:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA15258; Wed, 8 Nov 2000 04:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from yoda.fwe.pi.musin.de (yoda.fwe.pi.musin.de [194.246.250.18]) by hub.freebsd.org (Postfix) with ESMTP id EB1DA37B479 for ; Wed, 8 Nov 2000 04:25:36 -0800 (PST) Received: (from sec@localhost) by yoda.fwe.pi.musin.de (8.11.1/8.11.1) id eA8CPeP82237; Wed, 8 Nov 2000 13:25:40 +0100 (CET) (envelope-from sec) Message-Id: <200011081225.eA8CPeP82237@yoda.fwe.pi.musin.de> Date: Wed, 8 Nov 2000 13:25:40 +0100 (CET) From: Stefan `Sec` Zehl Reply-To: sec@yoda.fwe.pi.musin.de To: FreeBSD-gnats-submit@freebsd.org Cc: oddbjorn@tricknology.org X-Send-Pr-Version: 3.2 Subject: ports/22688: genpw-port does not build Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22688 >Category: ports >Synopsis: genpw-port does not build >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Nov 08 04:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Stefan `Sec` Zehl >Release: FreeBSD 4.1.1-STABLE i386 >Organization: >Environment: FreeBSD-stable >Description: genpw port does not build becuase the getopt lib is named 'gnugetopt' >How-To-Repeat: yoda:/usr/ports/sysutils/pwgen>sudo make install clean >Fix: --- Makefile.org Fri Oct 13 22:29:13 2000 +++ Makefile Wed Nov 8 13:22:47 2000 @@ -12,7 +12,7 @@ MAINTAINER= oddbjorn@tricknology.org -LIB_DEPENDS= getopt.1:${PORTSDIR}/devel/libgnugetopt +LIB_DEPENDS= gnugetopt.1:${PORTSDIR}/devel/libgnugetopt WRKSRC= ${WRKDIR}/${PORTNAME}-1 >Release-Note: >Audit-Trail: >Unformatted: >> pwgen-1.15.tar.gz doesn't seem to exist in /usr/ports/distfiles/. >> Attempting to fetch from ftp://ftp.42.org/pub/FreeBSD/distfiles//. fetch: pwgen-1.15.tar.gz: File unavailable (e.g., file not found, no access) >> Attempting to fetch from http://www.tricknology.org/ports/. Receiving pwgen-1.15.tar.gz (14839 bytes): 100% 14839 bytes transferred in 1.2 seconds (12.41 kBps) ===> Extracting for pwgen-1.15 >> Checksum OK for pwgen-1.15.tar.gz. ===> pwgen-1.15 depends on shared library: getopt.1 - not found ===> Verifying install for getopt.1 in /usr/ports/devel/libgnugetopt >> libgnugetopt-1.1.tar.gz doesn't seem to exist in /usr/ports/distfiles/. >> Attempting to fetch from ftp://ftp.42.org/pub/FreeBSD/distfiles//. Receiving libgnugetopt-1.1.tar.gz (11357 bytes): 100% 11357 bytes transferred in 0.2 seconds (65.56 kBps) ===> Extracting for libgnugetopt-1.1 >> Checksum OK for libgnugetopt-1.1.tar.gz. ===> Patching for libgnugetopt-1.1 ===> Configuring for libgnugetopt-1.1 ===> Building for libgnugetopt-1.1 cc -O -pipe -fPIC -o getopt.o -c -s getopt.c cc -O -pipe -fPIC -o getopt1.o -c -s getopt1.c cc -O -pipe -shared -Wl,-soname,libgnugetopt.so.1 -o libgnugetopt.so.1 getopt.o getopt1.o ===> Installing for libgnugetopt-1.1 ===> Generating temporary packing list ===> Running ldconfig /sbin/ldconfig -m /usr/local/lib ===> Registering installation for libgnugetopt-1.1 ===> Returning to build of pwgen-1.15 Error: shared library "getopt.1" does not exist *** Error code 1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 4:30:15 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C064E37B4CF for ; Wed, 8 Nov 2000 04:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA15267; Wed, 8 Nov 2000 04:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from argos.cerberus.ch (argos.cerberus.ch [193.5.45.1]) by hub.freebsd.org (Postfix) with ESMTP id 913C037B479 for ; Wed, 8 Nov 2000 04:28:38 -0800 (PST) Received: from localhost (localhost [[UNIX: localhost]]) by argos.cerberus.ch (8.11.0/8.11.0) with SMTP id eA8CWSM15631 for ; Wed, 8 Nov 2000 13:32:29 +0100 (MET) Received: from laurie (laurie.cerberus.ch [193.5.44.1]) by chmanappl08.man.ch.cerberus.ch (Build 98 8.9.3/NT-8.9.3) with SMTP id NAA06007 for ; Wed, 08 Nov 2000 13:27:11 +0100 Received: from a0028.cerberus.ch ([10.4.28.43]) by laurie.cerberus.ch (UCX V4.2-21E, OpenVMS V6.2 Alpha); Wed, 8 Nov 2000 13:29:18 +0100 Received: (from brp@localhost) by a0028.cerberus.ch (8.9.3/8.9.3) id OAA39664; Wed, 8 Nov 2000 14:28:12 +0100 (CET) (envelope-from brp) Message-Id: <200011081328.OAA39664@a0028.cerberus.ch> Date: Wed, 8 Nov 2000 14:28:12 +0100 (CET) From: Thomas.Brupbacher@cerberus.ch Reply-To: thomas.brupbacher@cerberus.ch To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22689: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22689 >Category: ports >Synopsis: >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Nov 08 04:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Thomas Brupbacher >Release: FreeBSD 4.2-BETA i386 >Organization: >Environment: FreeBSD a0028.cerberus.ch 4.2-BETA FreeBSD 4.2-BETA #24: Mon Nov 6 14:09:38 CET 2000 >Description: When trying to install the kde2 port, it fails in kdenetwork2. When trying to install kdenetwork2 by itself, it also fails. >How-To-Repeat: a0028# make ===> Building for kdenetwork-2.0 gmake all-recursive gmake[1]: Entering directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0' Making all in doc gmake[2]: Entering directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/doc' Making all in keystone gmake[3]: Entering directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/doc/keystone' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/doc/keystone' Making all in kit gmake[3]: Entering directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/doc/kit' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/doc/kit' Making all in kmail gmake[3]: Entering directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/doc/kmail' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/doc/kmail' Making all in knode gmake[3]: Entering directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/doc/knode' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/doc/knode' Making all in korn gmake[3]: Entering directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/doc/korn' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/doc/korn' Making all in kppp gmake[3]: Entering directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/doc/kppp' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/doc/kppp' Making all in ksirc gmake[3]: Entering directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/doc/ksirc' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/doc/ksirc' Making all in ktalkd gmake[3]: Entering directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/doc/ktalkd' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/doc/ktalkd' gmake[3]: Entering directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/doc' gmake[3]: Nothing to be done for `all-am'. gmake[3]: Leaving directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/doc' gmake[2]: Leaving directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/doc' Making all in keystone gmake[2]: Entering directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/keystone' gmake[2]: Nothing to be done for `all'. gmake[2]: Leaving directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/keystone' Making all in kit gmake[2]: Entering directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/kit' Making all in icons gmake[3]: Entering directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/kit/icons' Making all in actions gmake[4]: Entering directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/kit/icons/actions' gmake[4]: Nothing to be done for `all'. gmake[4]: Leaving directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/kit/icons/actions' gmake[4]: Entering directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/kit/icons' gmake[4]: Nothing to be done for `all-am'. gmake[4]: Leaving directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/kit/icons' gmake[3]: Leaving directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/kit/icons' gmake[3]: Entering directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/kit' gmake[3]: Nothing to be done for `all-am'. gmake[3]: Leaving directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/kit' gmake[2]: Leaving directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/kit' Making all in kmail gmake[2]: Entering directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/kmail' Making all in pics gmake[3]: Entering directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/kmail/pics' Making all in toolbar gmake[4]: Entering directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/kmail/pics/toolbar' Making all in locolor gmake[5]: Entering directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/kmail/pics/toolbar/locolor' gmake[5]: Nothing to be done for `all'. gmake[5]: Leaving directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/kmail/pics/toolbar/locolor' Making all in hicolor gmake[5]: Entering directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/kmail/pics/toolbar/hicolor' gmake[5]: Nothing to be done for `all'. gmake[5]: Leaving directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/kmail/pics/toolbar/hicolor' gmake[5]: Entering directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/kmail/pics/toolbar' gmake[5]: Nothing to be done for `all-am'. gmake[5]: Leaving directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/kmail/pics/toolbar' gmake[4]: Leaving directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/kmail/pics/toolbar' gmake[4]: Entering directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/kmail/pics' gmake[4]: Nothing to be done for `all-am'. gmake[4]: Leaving directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/kmail/pics' gmake[3]: Leaving directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/kmail/pics' gmake[3]: Entering directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/kmail' gmake[3]: Nothing to be done for `all-am'. gmake[3]: Leaving directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/kmail' gmake[2]: Leaving directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/kmail' Making all in knode gmake[2]: Entering directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/knode' Making all in pics gmake[3]: Entering directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/knode/pics' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/knode/pics' Making all in filters gmake[3]: Entering directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/knode/filters' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/knode/filters' gmake[3]: Entering directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/knode' c++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/local/include -I/usr/X11R6/include/qt2 -I/usr/X11R6/include -I/usr/local/include -D_XOPEN_UNIX -O2 -fno-exceptions -fno-check-new -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -fno-builtin -O -pipe -DQT_CLEAN_NAMESPACE -DQT_NO_COMPAT -DQT_NO_ASCII_CAST -c kngroupbrowser.cpp kngroupbrowser.cpp: In method `KNGroupBrowser::KNGroupBrowser(QWidget *, const QString &, KNNntpAccount *, int = 0, bool = false, const QString & = QString::null, const QString & = QString::null)': kngroupbrowser.cpp:89: warning: passing `QListView *' to argument 1 of `__pthread_connect(int, sockaddr *, unsigned int)' lacks a cast kngroupbrowser.cpp:89: passing `const char *' as argument 2 of `__pthread_connect(int, sockaddr *, unsigned int)' kngroupbrowser.cpp:120: warning: passing `QLineEdit *' to argument 1 of `__pthread_connect(int, sockaddr *, unsigned int)' lacks a cast kngroupbrowser.cpp:120: passing `const char *' as argument 2 of `__pthread_connect(int, sockaddr *, unsigned int)' kngroupbrowser.cpp:122: warning: passing `QListView *' to argument 1 of `__pthread_connect(int, sockaddr *, unsigned int)' lacks a cast kngroupbrowser.cpp:122: passing `const char *' as argument 2 of `__pthread_connect(int, sockaddr *, unsigned int)' kngroupbrowser.cpp:124: warning: passing `QCheckBox *' to argument 1 of `__pthread_connect(int, sockaddr *, unsigned int)' lacks a cast kngroupbrowser.cpp:124: passing `const char *' as argument 2 of `__pthread_connect(int, sockaddr *, unsigned int)' kngroupbrowser.cpp:125: warning: passing `QCheckBox *' to argument 1 of `__pthread_connect(int, sockaddr *, unsigned int)' lacks a cast kngroupbrowser.cpp:125: passing `const char *' as argument 2 of `__pthread_connect(int, sockaddr *, unsigned int)' gmake[3]: *** [kngroupbrowser.o] Error 1 gmake[3]: Leaving directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/knode' gmake[2]: *** [all-recursive] Error 1 gmake[2]: Leaving directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0/knode' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/net/kdenetwork2/work/kdenetwork-2.0' gmake: *** [all-recursive-am] Error 2 *** Error code 2 Stop in /usr/ports/net/kdenetwork2. *** Error code 1 Stop in /usr/ports/net/kdenetwork2. *** Error code 1 Stop in /usr/ports/net/kdenetwork2. >Fix: No idea. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 4:32:28 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E1B4637B479; Wed, 8 Nov 2000 04:32:26 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA15621; Wed, 8 Nov 2000 04:32:26 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Date: Wed, 8 Nov 2000 04:32:26 -0800 (PST) From: Message-Id: <200011081232.EAA15621@freefall.freebsd.org> To: cj@vallcom.net, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22669: update port: security/saint Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update port: security/saint State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Wed Nov 8 04:32:02 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22669 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 4:34:41 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0A16237B479; Wed, 8 Nov 2000 04:34:40 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA15937; Wed, 8 Nov 2000 04:34:39 -0800 (PST) (envelope-from sobomax@FreeBSD.org) Date: Wed, 8 Nov 2000 04:34:39 -0800 (PST) From: Message-Id: <200011081234.EAA15937@freefall.freebsd.org> To: sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org, will@FreeBSD.org Subject: Re: ports/22689: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Responsible-Changed-From-To: freebsd-ports->will Responsible-Changed-By: sobomax Responsible-Changed-When: Wed Nov 8 04:33:50 PST 2000 Responsible-Changed-Why: Over to K-master. http://www.freebsd.org/cgi/query-pr.cgi?pr=22689 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 4:53:24 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9F9D737B4C5; Wed, 8 Nov 2000 04:53:22 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA18316; Wed, 8 Nov 2000 04:53:22 -0800 (PST) (envelope-from sobomax@FreeBSD.org) Date: Wed, 8 Nov 2000 04:53:22 -0800 (PST) From: Message-Id: <200011081253.EAA18316@freefall.freebsd.org> To: johann@egenetics.com, sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22636: Port fix: devel/fnorb (maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port fix: devel/fnorb (maintainer) State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Wed Nov 8 04:52:58 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=22636 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 5:20:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1948037B4D7 for ; Wed, 8 Nov 2000 05:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA23911; Wed, 8 Nov 2000 05:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from mail.enteract.com (mail.enteract.com [207.229.143.33]) by hub.freebsd.org (Postfix) with ESMTP id 0491E37B479 for ; Wed, 8 Nov 2000 05:18:11 -0800 (PST) Received: from jamestown.enteract.com (207-229-151-39.d.enteract.com [207.229.151.39]) by mail.enteract.com (8.9.3/8.9.3) with ESMTP id HAA20657 for ; Wed, 8 Nov 2000 07:18:09 -0600 (CST) (envelope-from jtm@enteract.com) Received: (from jtm@localhost) by jamestown.enteract.com (8.9.3/8.9.3) id HAA77232; Wed, 8 Nov 2000 07:18:17 -0600 (CST) (envelope-from jtm) Message-Id: <200011081318.HAA77232@jamestown.enteract.com> Date: Wed, 8 Nov 2000 07:18:17 -0600 (CST) From: jtm63@enteract.com Reply-To: jtm63@enteract.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22691: ImageMagic make fails (different way) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22691 >Category: ports >Synopsis: Making ImageMagic fails (as part of kde11 reinstall) >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Nov 08 05:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: James McNaughton >Release: FreeBSD 3.5-STABLE i386 >Organization: >Environment: >Description: Trying to make ImageMagic (as part of kde11 reinstall fails with error (tail of output): -I. -I. -I../magick -I../ -I.. -I../libltdl -I/usr/X11R6/include -I/usr/local/i nclude -I/usr/local/include -I/usr/X11R6/include -O -pipe -c -o combine.o `test -f combine.c || echo './'`combine.c /bin/sh ../libtool --mode=link cc -O -pipe -L/usr/local/lib -L/usr/X11R6/lib - o combine combine.o ../magick/libMagick.la mkdir .libs cc -O -pipe -L/usr/local/lib -L/usr/X11R6/lib -o .libs/combine combine.o ../magi ck/.libs/libMagick.so -ljbig -ldf -ltiff -lttf -ljpeg -lpng -lXext -lXt -lSM -lI CE -lX11 -lbz2 -lz -lm -Wl,--rpath -Wl,/usr/local/lib /usr/lib/libf2c.so.2: warning: mktemp() possibly used unsafely; consider using m kstemp() ../magick/.libs/libMagick.so: undefined reference to `png_get_iCCP' ../magick/.libs/libMagick.so: undefined reference to `png_set_iCCP' ../magick/.libs/libMagick.so: undefined reference to `png_permit_empty_plte' *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. I did make clean before this just in case and reinstalled the latest libtool port per advice from pr ports/22678. The ports tree was last cvsupped 8-NOV-00 at 7:00 CST. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 5:20:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F0B3A37B4C5 for ; Wed, 8 Nov 2000 05:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA23902; Wed, 8 Nov 2000 05:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from fling.sanbi.ac.za (fling.sanbi.ac.za [196.38.142.119]) by hub.freebsd.org (Postfix) with ESMTP id 78BAD37B479 for ; Wed, 8 Nov 2000 05:17:53 -0800 (PST) Received: from johann by fling.sanbi.ac.za with local (Exim 3.13 #4) id 13tV6n-000KgC-00 for FreeBSD-gnats-submit@freebsd.org; Wed, 08 Nov 2000 15:17:45 +0200 Message-Id: Date: Wed, 08 Nov 2000 15:17:45 +0200 From: johann@egenetics.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22690: Further port fix: devel/fnorb (MAINTAINER) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22690 >Category: ports >Synopsis: Further port fix: devel/fnorb (MAINTAINER) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Nov 08 05:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Johann Visagie >Release: FreeBSD 3.5-STABLE i386 >Organization: Electric Genetics >Environment: >Description: - Further patches to make Fnorb 1.1 compatible with the tighter socket binding code in Python 2.0. Again, compatibility with Python 1.5.2 should be maintained. - Thanks to Brad Chapman for his help. - I may still not have caught the last of these. :-( >How-To-Repeat: >Fix: diff -ruN fnorb.bak/Makefile fnorb/Makefile --- fnorb.bak/Makefile Wed Nov 8 14:57:28 2000 +++ fnorb/Makefile Wed Nov 8 15:09:56 2000 @@ -7,7 +7,7 @@ PORTNAME= fnorb PORTVERSION= 1.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel python MASTER_SITES= http://www.fnorb.org/download/ \ ftp://ftp.dstc.edu.au/DSTC/fnorb/ diff -ruN fnorb.bak/files/patch-aa fnorb/files/patch-aa --- fnorb.bak/files/patch-aa Wed Nov 8 14:57:28 2000 +++ fnorb/files/patch-aa Wed Nov 8 15:12:59 2000 @@ -1,8 +1,7 @@ Allow the port to work with Python 2.0. This should be fixed in the next -release of Fnorb. (Caveat: There may be more broken calls to -socket.connect.) +release of Fnorb. (Caveat: There may be more broken calls.) -Thanks to Mike Meyer for submitting this. +Thanks to Mike Meyer , Brad Chapman . -- Johann @@ -18,3 +17,34 @@ # Set the socket by default to NON-blocking mode. self.__socket.setblocking(0) +--- ../orb/IIOPAcceptor.py.orig Mon Apr 3 16:08:34 2000 ++++ ../orb/IIOPAcceptor.py Wed Nov 8 15:06:29 2000 +@@ -65,7 +65,7 @@ + try: + # Create a socket on which to listen for connection requests. + self.__socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) +- self.__socket.bind(host, port) ++ self.__socket.bind((host, port)) + self.__socket.listen(5) + + # Get the host name, the IP address and the port number of the +--- ../orb/Nudger.py.orig Mon Apr 3 16:08:34 2000 ++++ ../orb/Nudger.py Wed Nov 8 15:06:50 2000 +@@ -54,7 +54,7 @@ + try: + # Create a socket on which to listen for connection requests. + listen_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) +- listen_socket.bind(host, port) ++ listen_socket.bind((host, port)) + listen_socket.listen(1) + + # Get the host name, the IP address and the port number of the +@@ -85,7 +85,7 @@ + # has been performed on the listening socket! If you don't believe + # me read Stevens' Network Programming ;^) + self.__client = socket.socket(socket.AF_INET, socket.SOCK_STREAM) +- self.__client.connect(listen_host, listen_port) ++ self.__client.connect((listen_host, listen_port)) + + # And finally, we do an 'accept' to complete the connection. + (self.__server, address) = listen_socket.accept() >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 5:28: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F408937B4C5; Wed, 8 Nov 2000 05:28:07 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA25090; Wed, 8 Nov 2000 05:28:07 -0800 (PST) (envelope-from sobomax@FreeBSD.org) Date: Wed, 8 Nov 2000 05:28:07 -0800 (PST) From: Message-Id: <200011081328.FAA25090@freefall.freebsd.org> To: johann@egenetics.com, sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22690: Further port fix: devel/fnorb (MAINTAINER) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Further port fix: devel/fnorb (MAINTAINER) State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Wed Nov 8 05:27:58 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=22690 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 5:32:45 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D958937B479; Wed, 8 Nov 2000 05:32:43 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA26149; Wed, 8 Nov 2000 05:32:43 -0800 (PST) (envelope-from sobomax@FreeBSD.org) Date: Wed, 8 Nov 2000 05:32:43 -0800 (PST) From: Message-Id: <200011081332.FAA26149@freefall.freebsd.org> To: sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org, jseger@FreeBSD.org Subject: Re: ports/22691: Making ImageMagic fails (as part of kde11 reinstall) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Making ImageMagic fails (as part of kde11 reinstall) Responsible-Changed-From-To: freebsd-ports->jseger Responsible-Changed-By: sobomax Responsible-Changed-When: Wed Nov 8 05:29:54 PST 2000 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=22691 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 5:40:22 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 13AD737B479 for ; Wed, 8 Nov 2000 05:40:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA27265; Wed, 8 Nov 2000 05:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Wed, 8 Nov 2000 05:40:03 -0800 (PST) Message-Id: <200011081340.FAA27265@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: dirk.meyer@dinoex.sub.org (Dirk Meyer) Subject: Re: ports/22619: Fix mail/sendmail (by maintainer) Reply-To: dirk.meyer@dinoex.sub.org (Dirk Meyer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/22619; it has been noted by GNATS. From: dirk.meyer@dinoex.sub.org (Dirk Meyer) To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: Re: ports/22619: Fix mail/sendmail (by maintainer) Date: Wed, 08 Nov 2000 14:26:48 +0100 more imovements: - TCPWARPPER for FreeBSD >= 4.0 - IPv6 for FreeBSD >= 4.0 - optional TSL support (2.2.8, 3.x, 4.x) - patches for rmail and mail.local - CFLAGS now reduced for the filesi who need it - extendable Definitions kind regards Dirk - Dirk Meyer, Im Grund 4, 34317 Habichtswald, Germany patch to base version: in cvs (includes previous diff) diff sendmail/Makefile sendmail-8.11.1/Makefile --- sendmail/Makefile Thu Oct 26 09:29:34 2000 +++ sendmail-8.11.1/Makefile Wed Nov 8 14:18:15 2000 @@ -7,6 +7,7 @@ PORTNAME= sendmail PORTVERSION= 8.11.1 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= ftp://ftp.sendmail.org/pub/sendmail/ DISTNAME= ${PORTNAME}.${PORTVERSION} @@ -18,14 +19,26 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} PLIST= ${WRKDIR}/.PLIST.more -.if exists(/etc/mail/mailer.conf) +.if defined(SENDMAIL_WITH_TSL) +USE_OPENSSL= yes +.endif + +.if exists(${DESTDIR}/etc/mail/mailer.conf) pre-configure: ${SED} -e "s=%%PREFIX%%=${PREFIX}=" \ ${FILESDIR}/site.config.m4 >${WRKSRC}/devtools/Site/site.config.m4 +.if defined(SENDMAIL_WITH_TSL) + ${CAT} ${FILESDIR}/site.config.m4.tls \ + >>${WRKSRC}/devtools/Site/site.config.m4 +.endif .else pre-configure: ${SED} -e "s=%%PREFIX%%=${PREFIX}=" \ ${FILESDIR}/site.config.m4.pre4 >${WRKSRC}/devtools/Site/site.config.m4 +.if defined(SENDMAIL_WITH_TSL) + ${SED} -e "s=%%LOCALBASE%%=${LOCALBASE}=" \ + ${FILESDIR}/site.config.m4.ssl >>${WRKSRC}/devtools/Site/site.config.m4 +.endif PREFIX?= ${DESTDIR}/usr MANPREFIX?= ${DESTDIR}/usr/share @@ -46,6 +59,7 @@ ${AWK} '{print "share/sendmail/" $$1}' >>${PLIST} cd ${WRKSRC} && find -d cf -type d | \ ${AWK} '{print "@dirrm share/sendmail/" $$1}' >>${PLIST} + ${ECHO} "@dirrm share/sendmail" >>${PLIST} .endif # We want mail.local and rmail for our system. diff sendmail/files/patch-aa sendmail-8.11.1/files/patch-aa --- sendmail/files/patch-aa Thu Jan 1 01:00:00 1970 +++ sendmail-8.11.1/files/patch-aa Mon Nov 6 12:11:56 2000 @@ -0,0 +1,326 @@ +diff -ur cf/m4/cfhead.m4 src/contrib/sendmail/cf/m4/cfhead.m4 +--- cf/m4/cfhead.m4 Thu Aug 24 19:09:50 2000 ++++ src/contrib/sendmail/cf/m4/cfhead.m4 Mon Nov 6 11:23:40 2000 +@@ -9,6 +9,7 @@ + # forth in the LICENSE file which can be found at the top level of + # the sendmail distribution. + # ++# $FreeBSD: src/contrib/sendmail/cf/m4/cfhead.m4,v 1.3.6.2 2000/10/10 05:07:17 gshapiro Exp $ + # + + ###################################################################### +@@ -214,7 +215,8 @@ + define(`_REC_FULL_AUTH_', `$.$?{auth_type}(authenticated as ${auth_authen} $?{auth_author}for ${auth_author} $.with ${auth_type}') + define(`_REC_HDR_', `$?sfrom $s $.$?_($?s$|from $.$_)') + define(`_REC_END_', `for $u; $|; +- $.$b') ++ $.$b$?g ++ (envelope-from $g)$.') + define(`_REC_TLS_', `(using ${tls_version} with cipher ${cipher} (${cipher_bits} bits) verified ${verify})$.$?u') + define(`_REC_BY_', `$.by $j ($v/$Z)$?r with $r$. id $i$?{tls_version}') + define(`confRECEIVED_HEADER', `_REC_HDR_ +diff -ur cf/ostype/bsd4.4.m4 src/contrib/sendmail/cf/ostype/bsd4.4.m4 +--- cf/ostype/bsd4.4.m4 Sun Apr 25 22:00:56 1999 ++++ src/contrib/sendmail/cf/ostype/bsd4.4.m4 Wed Oct 4 23:19:29 2000 +@@ -10,11 +10,12 @@ + # forth in the LICENSE file which can be found at the top level of + # the sendmail distribution. + # +-# ++# $FreeBSD: src/contrib/sendmail/cf/ostype/bsd4.4.m4,v 1.3.6.1 2000/08/27 17:31:10 gshapiro Exp $ + # + + divert(0) + VERSIONID(`$Id: bsd4.4.m4,v 8.14 1999/04/24 05:37:40 gshapiro Exp $') + ifdef(`STATUS_FILE',, `define(`STATUS_FILE', `/var/log/sendmail.st')')dnl + ifdef(`LOCAL_MAILER_PATH',, `define(`LOCAL_MAILER_PATH', /usr/libexec/mail.local)')dnl ++ifdef(`LOCAL_MAILER_ARGS',, `define(`LOCAL_MAILER_ARGS', `mail $u')')dnl + ifdef(`UUCP_MAILER_ARGS',, `define(`UUCP_MAILER_ARGS', `uux - -r -z -a$g $h!rmail ($u)')')dnl +diff -ur cf/sh/makeinfo.sh src/contrib/sendmail/cf/sh/makeinfo.sh +--- cf/sh/makeinfo.sh Sun Feb 7 08:26:25 1999 ++++ src/contrib/sendmail/cf/sh/makeinfo.sh Wed Oct 4 23:19:29 2000 +@@ -13,6 +13,8 @@ + # + # $Id: makeinfo.sh,v 8.14 1999/02/07 07:26:25 gshapiro Exp $ + # ++# $FreeBSD: src/contrib/sendmail/cf/sh/makeinfo.sh,v 1.3.6.1 2000/08/27 17:31:13 gshapiro Exp $ ++# + + usewhoami=0 + usehostname=0 +@@ -52,7 +54,7 @@ + else + host=`uname -n` + fi +-echo '#####' built by $user@$host on `date` ++echo '#####' built by $user@$host on `LC_TIME=C date` + echo '#####' in `pwd` | sed 's/\/tmp_mnt//' + echo '#####' using $1 as configuration include directory | sed 's/\/tmp_mnt//' + echo "define(\`__HOST__', $host)dnl" +diff -ur mail.local/mail.local.8 src/contrib/sendmail/mail.local/mail.local.8 +--- mail.local/mail.local.8 Sun Sep 17 19:04:25 2000 ++++ src/contrib/sendmail/mail.local/mail.local.8 Mon Nov 6 11:23:41 2000 +@@ -10,13 +10,15 @@ + .\" + .\" $Id: mail.local.8,v 8.14.14.3 2000/09/17 17:04:25 gshapiro Exp $ + .\" ++.\" $FreeBSD: src/contrib/sendmail/mail.local/mail.local.8,v 1.5.6.2 2000/10/10 05:07:22 gshapiro Exp $ ++.\" + .TH MAIL.LOCAL 8 "$Date: 2000/09/17 17:04:25 $" + .SH NAME + .B mail.local + \- store mail in a mailbox + .SH SYNOPSIS + .B mail.local +-.RB [ \-7 "] [" \-b "] [" \-d "] [" \-l "] [" \-f ++.RB [ \-7 "] [" \-B "] [" \-b "] [" \-d "] [" \-l "] [" \-s "] [" \-f + .IR from "] " "user ..." + .SH DESCRIPTION + .B Mail.local +@@ -32,6 +34,11 @@ + .B \-7 + Do not advertise 8BITMIME support in LMTP mode. + .TP ++.B \-B ++Turn off the attempts to notify the ++.Dq biff ++service. ++.TP + .B \-b + Return a permanent error instead of a temporary error + if a mailbox exceeds quota. +@@ -44,6 +51,13 @@ + .TP + .B \-l + Turn on LMTP mode. ++.TP ++.B \-s ++Turn off the ++.Xr fsync 2 ++call that forces the mailbox to be committed to disk before returning a ++.Dq success ++status. + .TP + .BI \-r " from" + Specify the sender's name (for backward compatibility). +@@ -91,7 +105,6 @@ + .PD + .SH SEE ALSO + mail(1), +-xsend(1), + flock(2), + getservbyname(3), + comsat(8), +diff -ur mail.local/mail.local.c src/contrib/sendmail/mail.local/mail.local.c +--- mail.local/mail.local.c Fri Sep 22 18:30:09 2000 ++++ src/contrib/sendmail/mail.local/mail.local.c Mon Nov 6 11:23:42 2000 +@@ -22,6 +22,8 @@ + static char id[] = "@(#)$Id: mail.local.c,v 8.143.4.37 2000/09/22 00:49:10 doug Exp $"; + #endif /* ! lint */ + ++/* $FreeBSD: src/contrib/sendmail/mail.local/mail.local.c,v 1.6.6.3 2000/10/10 22:28:25 gshapiro Exp $ */ ++ + /* + ** This is not intended to work on System V derived systems + ** such as Solaris or HP-UX, since they use a totally different +@@ -170,7 +172,7 @@ + + # if defined(BSD4_4) || defined(__GLIBC__) + # include +-# define _PATH_LOCTMP "/tmp/local.XXXXXX" ++# define _PATH_LOCTMP "/var/tmp/local.XXXXXX" + # endif /* defined(BSD4_4) || defined(__GLIBC__) */ + + # ifdef BSD4_4 +@@ -229,7 +231,7 @@ + # endif /* USE_SETRESUID */ + + # ifndef _PATH_LOCTMP +-# define _PATH_LOCTMP "/tmp/local.XXXXXX" ++# define _PATH_LOCTMP "/var/tmp/local.XXXXXX" + # endif /* ! _PATH_LOCTMP */ + # ifndef _PATH_MAILDIR + # define _PATH_MAILDIR "/var/spool/mail" +@@ -264,6 +266,8 @@ + int ExitVal = EX_OK; /* sysexits.h error value. */ + bool LMTPMode = FALSE; + bool bouncequota = FALSE; /* permanent error when over quota */ ++bool nobiff = FALSE; ++bool nofsync = FALSE; + + void deliver __P((int, char *, bool)); + int e_to_sys __P((int)); +@@ -304,7 +308,7 @@ + # endif /* LOG_MAIL */ + + from = NULL; +- while ((ch = getopt(argc, argv, "7bdf:r:l")) != -1) ++ while ((ch = getopt(argc, argv, "7Bbdf:r:ls")) != -1) + { + switch(ch) + { +@@ -312,6 +316,10 @@ + EightBitMime = FALSE; + break; + ++ case 'B': ++ nobiff = TRUE; ++ break; ++ + case 'b': /* bounce mail when over quota. */ + bouncequota = TRUE; + break; +@@ -333,6 +341,10 @@ + LMTPMode = TRUE; + break; + ++ case 's': ++ nofsync++; ++ break; ++ + case '?': + default: + usage(); +@@ -342,7 +354,8 @@ + argv += optind; + + /* initialize biff structures */ +- notifybiff(NULL); ++ if (!nobiff) ++ notifybiff(NULL); + + if (LMTPMode) + dolmtp(bouncequota); +@@ -1127,14 +1140,17 @@ + goto err1; + } + +- /* Get the starting offset of the new message for biff. */ +- curoff = lseek(mbfd, (off_t)0, SEEK_END); +- if (sizeof curoff > sizeof(long)) +- (void) snprintf(biffmsg, sizeof(biffmsg), "%s@%s\n", +- name, quad_to_string(curoff)); +- else +- (void) snprintf(biffmsg, sizeof(biffmsg), "%s@%ld\n", +- name, (long) curoff); ++ if (!nobiff) ++ { ++ /* Get the starting offset of the new message for biff. */ ++ curoff = lseek(mbfd, (off_t)0, SEEK_END); ++ if (sizeof curoff > sizeof(long)) ++ (void) snprintf(biffmsg, sizeof(biffmsg), "%s@%s\n", ++ name, quad_to_string(curoff)); ++ else ++ (void) snprintf(biffmsg, sizeof(biffmsg), "%s@%ld\n", ++ name, (long) curoff); ++ } + + /* Copy the message into the file. */ + if (lseek(fd, (off_t)0, SEEK_SET) == (off_t)-1) +@@ -1196,7 +1212,7 @@ + } + + /* Flush to disk, don't wait for update. */ +- if (fsync(mbfd) < 0) ++ if (!nofsync && fsync(mbfd) < 0) + { + mailerr("450 4.2.0", "%s: %s", path, errstring(errno)); + err3: +@@ -1230,7 +1246,7 @@ + mailerr("450 4.2.0", "%s: %s", path, errstring(errno)); + (void) truncate(path, curoff); + } +- else ++ else if (!nobiff) + notifybiff(biffmsg); + + if (setreuid(0, 0) < 0) +@@ -1409,7 +1425,7 @@ + usage() + { + ExitVal = EX_USAGE; +- mailerr(NULL, "usage: mail.local [-7] [-b] [-l] [-f from] user ..."); ++ mailerr(NULL, "usage: mail.local [-7] [-B] [-b] [-l] [-f from] [-s] user ..."); + exit(ExitVal); + } + +diff -ur rmail/rmail.c src/contrib/sendmail/rmail/rmail.c +--- rmail/rmail.c Sun Sep 17 00:20:25 2000 ++++ src/contrib/sendmail/rmail/rmail.c Mon Nov 6 11:23:42 2000 +@@ -22,6 +22,8 @@ + static char id[] = "@(#)$Id: rmail.c,v 8.39.4.8 2000/09/16 22:20:25 gshapiro Exp $"; + #endif /* ! lint */ + ++/* $FreeBSD: src/contrib/sendmail/rmail/rmail.c,v 1.4.6.2 2000/10/10 05:07:23 gshapiro Exp $ */ ++ + /* + * RMAIL -- UUCP mail server. + * +@@ -318,7 +320,11 @@ + args[i++] = _PATH_SENDMAIL; /* Build sendmail's argument list. */ + args[i++] = "-G"; /* relay submission */ + args[i++] = "-oee"; /* No errors, just status. */ ++#ifdef QUEUE_ONLY + args[i++] = "-odq"; /* Queue it, don't try to deliver. */ ++#else ++ args[i++] = "-odi"; /* Deliver in foreground. */ ++#endif + args[i++] = "-oi"; /* Ignore '.' on a line by itself. */ + + /* set from system and protocol used */ +diff -ur smrsh/smrsh.8 src/contrib/sendmail/smrsh/smrsh.8 +--- smrsh/smrsh.8 Tue Jun 15 06:50:19 1999 ++++ src/contrib/sendmail/smrsh/smrsh.8 Wed Oct 4 23:19:47 2000 +@@ -11,6 +11,8 @@ + .\" + .\" $Id: smrsh.8,v 8.11 1999/06/09 16:51:07 ca Exp $ + .\" ++.\" $FreeBSD: src/contrib/sendmail/smrsh/smrsh.8,v 1.3.6.1 2000/08/27 17:31:24 gshapiro Exp $ ++.\" + .TH SMRSH 8 11/02/93 + .SH NAME + smrsh \- restricted shell for sendmail +@@ -38,7 +40,7 @@ + Briefly, + .I smrsh + limits programs to be in the directory +-/usr/adm/sm.bin, ++/usr/libexec/sm.bin, + allowing the system administrator to choose the set of acceptable commands, + and to the shell builtin commands ``exec'', ``exit'', and ``echo''. + It also rejects any commands with the characters +@@ -49,16 +51,15 @@ + ``"|exec /usr/local/bin/procmail -f- /etc/procmailrcs/user || exit 75"'' + .PP + Initial pathnames on programs are stripped, +-so forwarding to ``/usr/ucb/vacation'', +-``/usr/bin/vacation'', ++so forwarding to ``/usr/bin/vacation'', + ``/home/server/mydir/bin/vacation'', + and + ``vacation'' + all actually forward to +-``/usr/adm/sm.bin/vacation''. ++``/usr/libexec/sm.bin/vacation''. + .PP + System administrators should be conservative about populating +-/usr/adm/sm.bin. ++/usr/libexec/sm.bin. + Reasonable additions are + .IR vacation (1), + .IR procmail (1), +@@ -77,11 +78,11 @@ + Compilation should be trivial on most systems. + You may need to use \-DPATH=\e"\fIpath\fP\e" + to adjust the default search path +-(defaults to ``/bin:/usr/bin:/usr/ucb'') ++(defaults to ``/bin:/usr/bin'') + and/or \-DCMDBIN=\e"\fIdir\fP\e" + to change the default program directory +-(defaults to ``/usr/adm/sm.bin''). ++(defaults to ``/usr/libexec/sm.bin''). + .SH FILES +-/usr/adm/sm.bin \- directory for restricted programs ++/usr/libexec/sm.bin \- directory for restricted programs + .SH SEE ALSO + sendmail(8) diff sendmail/files/site.config.m4 sendmail-8.11.1/files/site.config.m4 --- sendmail/files/site.config.m4 Sat Oct 14 06:51:41 2000 +++ sendmail-8.11.1/files/site.config.m4 Mon Nov 6 15:56:23 2000 @@ -4,4 +4,10 @@ define(`confMBINDIR',`%%PREFIX%%/sbin') define(`confSBINDIR',`%%PREFIX%%/sbin') define(`confUBINDIR',`%%PREFIX%%/bin') -define(`confCCOPTS',`-DCMDDIR="\"%%PREFIX%%/libexec/sm.bin\"" -DPATH="\"/bin:/usr/bin\""') +APPENDDEF(`conf_sendmail_ENVDEF', `-DTCPWRAPPERS') +APPENDDEF(`conf_sendmail_LIBS', `-lwrap')" +APPENDDEF(`conf_sendmail_ENVDEF', `-DNETINET6') +APPENDDEF(`conf_libmilter_ENVDEF', `-DNETINET6') +APPENDDEF(`conf_mail_local_ENVDEF', `-DQUEUE_ONLY') +APPENDDEF(`conf_smrsh_ENVDEF', `-DCMDDIR="\"%%PREFIX%%/libexec/sm.bin\""') +APPENDDEF(`conf_smrsh_ENVDEF', `-DPATH="\"/bin:/usr/bin\""') --- sendmail/files/site.config.m4.pre4 Sat Oct 14 06:51:41 2000 +++ sendmail-8.11.1/files/site.config.m4.pre4 Mon Nov 6 19:16:09 2000 @@ -1 +1,3 @@ -define(`confCCOPTS',`-DCMDDIR="\"%%PREFIX%%/libexec/sm.bin\"" -DPATH="\"/bin:/usr/bin\""') +APPENDDEF(`conf_mail_local_ENVDEF', `-DQUEUE_ONLY') +APPENDDEF(`conf_smrsh_ENVDEF', `-DCMDDIR="\"%%PREFIX%%/libexec/sm.bin\""') +APPENDDEF(`conf_smrsh_ENVDEF', `-DPATH="\"/bin:/usr/bin\""') diff sendmail/files/site.config.m4.ssl sendmail-8.11.1/files/site.config.m4.ssl --- sendmail/files/site.config.m4.ssl Thu Jan 1 01:00:00 1970 +++ sendmail-8.11.1/files/site.config.m4.ssl Mon Nov 6 19:50:28 2000 @@ -0,0 +1,3 @@ +APPENDDEF(`confLIBDIRS', `-L%%LOCALBASE%%/lib') +APPENDDEF(`confINCDIRS', `-I%%LOCALBASE%%/include') +APPENDDEF(`conf_sendmail_ENVDEF', `-DHASSRANDOMDEV') diff sendmail/files/site.config.m4.tls sendmail-8.11.1/files/site.config.m4.tls --- sendmail/files/site.config.m4.tls Thu Jan 1 01:00:00 1970 +++ sendmail-8.11.1/files/site.config.m4.tls Mon Nov 6 18:50:59 2000 @@ -0,0 +1,5 @@ +APPENDDEF(`conf_sendmail_ENVDEF', `-DSTARTTLS') +APPENDDEF(`conf_sendmail_ENVDEF', `-D_FFR_TLS_O_T') +APPENDDEF(`conf_sendmail_ENVDEF', `-D_FFR_TLS_1') +APPENDDEF(`conf_sendmail_ENVDEF', `-D_FFR_TLS_TOREK') +APPENDDEF(`conf_sendmail_LIBS', `-lssl -lcrypto') To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 7:20: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E970937B4C5 for ; Wed, 8 Nov 2000 07:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA41840; Wed, 8 Nov 2000 07:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from t-mta3.odn.ne.jp (mfep3.odn.ne.jp [143.90.131.181]) by hub.freebsd.org (Postfix) with ESMTP id 7058E37B479 for ; Wed, 8 Nov 2000 07:13:17 -0800 (PST) Received: from a44.pop16.odn.ne.jp ([210.237.198.67]) by t-mta3.odn.ne.jp (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001108151315537.VDJA.9703.t-mta3.odn.ne.jp@mta3.odn.ne.jp> for ; Thu, 9 Nov 2000 00:13:15 +0900 Message-Id: <20001108151315537.VDJA.9703.t-mta3.odn.ne.jp@mta3.odn.ne.jp> Date: Thu, 9 Nov 2000 00:25:02 +0900 (JST) From: shuna@pop16.odn.ne.jp Reply-To: shuna@pop16.odn.ne.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22692: Update port: japanese/mutt-devel Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22692 >Category: ports >Synopsis: Update port: japanese/mutt-devel >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Nov 08 07:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: IWASHITA Yoji >Release: FreeBSD 3.4-RELEASE i386 >Organization: personal >Environment: FreeBSD 3.4-RELEASE >Description: Document file in patch-archive was updated. >How-To-Repeat: >Fix: diff -uNr mutt-devel.old/distinfo mutt-devel/distinfo --- mutt-devel.old/distinfo Fri Nov 3 00:45:07 2000 +++ mutt-devel/distinfo Thu Nov 9 00:10:49 2000 @@ -1,3 +1,3 @@ MD5 (mutt/mutt-1.3.10i.tar.gz) = 980ea18f265305e156c2ffa443b2ac1c -MD5 (mutt/mutt-1.3.10i-ja0.tar.gz) = 0d58f5bb76fec8a2057f2daca7eca20e +MD5 (mutt/mutt-1.3.10i-ja0.tar.gz) = c38bc7298fe3eec4a25840dc046a92c0 MD5 (mutt/manual_ja-1.2i-1.tar.gz) = 709f021985530045ccb17601a6ac361b >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 7:50: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A7CC037B4CF for ; Wed, 8 Nov 2000 07:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA45360; Wed, 8 Nov 2000 07:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from io.make.yi.org (unknown [216.122.158.77]) by hub.freebsd.org (Postfix) with ESMTP id E025637B479 for ; Wed, 8 Nov 2000 07:49:02 -0800 (PST) Received: (from kosmos@localhost) by io.make.yi.org (8.11.1/8.11.1) id eA8Fn4C78371; Wed, 8 Nov 2000 07:49:04 -0800 (PST) (envelope-from kosmos) Message-Id: <200011081549.eA8Fn4C78371@io.make.yi.org> Date: Wed, 8 Nov 2000 07:49:04 -0800 (PST) From: kosmos@bowhill.yi.org Reply-To: kosmos@bowhill.vservers.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22693: patch to fix apache-jserv installation problems Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22693 >Category: ports >Synopsis: patch to fix apache-jserv installation problems >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Nov 08 07:50:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Allan Bowhill >Release: FreeBSD 4.2-BETA i386 >Organization: >Environment: shell >Description: When building and installing apache-jserv the build dies during configure at detection of GNU make. It also dies during configure, improperly handling a successful detection of the apxs binary. >How-To-Repeat: make install in /usr/ports/textproc/cocoon >Fix: here is a patch to the configure script for apache-jserv (applied as patch-ai): *** configure.orig Mon Nov 6 20:38:45 2000 --- configure Mon Nov 6 20:39:29 2000 *************** *** 13,18 **** --- 13,20 ---- # the right place and to process command-line arguments + MAKE=/usr/local/bin/gmake + PERL=/usr/bin/perl *************** *** 3322,3328 **** $APXS_CMD -q PREFIX >/dev/null 2>/dev/null || apxs_support=false ! if ${TEST} "${apxs_support}" = "false" ; then echo "$ac_t""could not find apxs" 1>&6 { echo "configure: error: If you do not specify a valid --with-apache-src directory\n then you must specify a valid --with-apxs path" 1>&2; exit 1; } else --- 3324,3330 ---- $APXS_CMD -q PREFIX >/dev/null 2>/dev/null || apxs_support=false ! if ${TEST} -n "${apxs_support}" = "false" ; then echo "$ac_t""could not find apxs" 1>&6 { echo "configure: error: If you do not specify a valid --with-apache-src directory\n then you must specify a valid --with-apxs path" 1>&2; exit 1; } else >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 9: 0: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0829737B4C5 for ; Wed, 8 Nov 2000 09:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA56426; Wed, 8 Nov 2000 09:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 37D7F37B4E5; Wed, 8 Nov 2000 08:50:35 -0800 (PST) Message-Id: <20001108165035.37D7F37B4E5@hub.freebsd.org> Date: Wed, 8 Nov 2000 08:50:35 -0800 (PST) From: ingham@i-pi.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/22695: MAKEDEV has no entry for cfs0, the device needed for the coda client Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22695 >Category: ports >Synopsis: MAKEDEV has no entry for cfs0, the device needed for the coda client >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Nov 08 09:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Kenneth Ingham >Release: 4.2-BETA >Organization: Kenneth Ingham Consulting >Environment: FreeBSD Clarke.i-pi.com 4.2-BETA FreeBSD 4.2-BETA #0: Tue Nov 7 12:45:46 MST 2000 root@Clarke.i-pi.com:/usr/src/sys/compile/CLARKE i386 >Description: The instructions for running the venus client say to run venus-setup. venus-setup runs /dev/MAKEDEV cfs0, but MAKEDEV has no entry for cfs0. >How-To-Repeat: Look at MAKEDEV. >Fix: I found the major number as 93 in coda_fbsd.c. I guessed at minor number 0 and made the device manually. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 10:50: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B6B0337B4C5 for ; Wed, 8 Nov 2000 10:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA71430; Wed, 8 Nov 2000 10:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 07D5C37B4C5; Wed, 8 Nov 2000 10:40:08 -0800 (PST) Message-Id: <20001108184008.07D5C37B4C5@hub.freebsd.org> Date: Wed, 8 Nov 2000 10:40:08 -0800 (PST) From: ingham@i-pi.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/22697: WARNING: driver Coda should register devices with make_dev() (dev_t = "#Coda/0") Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22697 >Category: ports >Synopsis: WARNING: driver Coda should register devices with make_dev() (dev_t = "#Coda/0") >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Nov 08 10:50:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Kenneth Ingham >Release: 4.2-BETA #0 >Organization: Kenneth Ingham Consulting >Environment: FreeBSD Clarke.i-pi.com 4.2-BETA FreeBSD 4.2-BETA #0: Tue Nov 7 12:45:46 MST 2000 root@Clarke.i-pi.com:/usr/src/sys/compile/CLARKE i386 >Description: The one-line summary message occurs when I start venus (the coda client program). >How-To-Repeat: Start venus on a 4.2 system. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 11:40: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2869B37B4C5 for ; Wed, 8 Nov 2000 11:40:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA78145; Wed, 8 Nov 2000 11:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Wed, 8 Nov 2000 11:40:03 -0800 (PST) Message-Id: <200011081940.LAA78145@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Jimmy Olgeni Subject: Re: ports/20564: [PATCH] nethack-gtk md5 correction, typo fix Reply-To: Jimmy Olgeni Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/20564; it has been noted by GNATS. From: Jimmy Olgeni To: freebsd-gnats-submit@FreeBSD.org, olgeni@uli.it Cc: Subject: Re: ports/20564: [PATCH] nethack-gtk md5 correction, typo fix Date: Wed, 08 Nov 2000 20:32:45 +0100 I wonder what happened to master site back then. The port now compiles with the MD5 checksum currently in the ports collection. This PR should be closed since it's now useless. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 12: 0: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7467637B4CF for ; Wed, 8 Nov 2000 12:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA80599; Wed, 8 Nov 2000 12:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id 02A7E37B479 for ; Wed, 8 Nov 2000 11:52:46 -0800 (PST) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.9.3/8.9.3) id OAA96333; Wed, 8 Nov 2000 14:52:44 -0500 (EST) (envelope-from wollman) Message-Id: <200011081952.OAA96333@khavrinen.lcs.mit.edu> Date: Wed, 8 Nov 2000 14:52:44 -0500 (EST) From: Garrett Wollman Reply-To: wollman@khavrinen.lcs.mit.edu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22698: Ports' rc.d files should use rc.conf Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22698 >Category: ports >Synopsis: Ports' rc.d files should use rc.conf >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: wish >Submitter-Id: current-users >Arrival-Date: Wed Nov 08 12:00:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: Garrett Wollman >Release: FreeBSD 5.0-CURRENT i386 >Organization: MIT Laboratory for Computer Science >Environment: We have several machines which are set up with identical software, for cold-sparing purposes. Not all of these machines run the same set of daemons. IWNRNI the standard rc.d/foo.sh files checked rc.conf to find out whether or not they should be enabled. >Description: >How-To-Repeat: Install ports with rc.d scripts. >Fix: For each port which installs an rc.d script, add the following: . /etc/defaults/rc.conf source_rc_confs case "$portname_enabled" in [Yy][Ee][Ss]) : ;; *) exit 1;; esac >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 12:10:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6CC8A37B4C5 for ; Wed, 8 Nov 2000 12:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA83247; Wed, 8 Nov 2000 12:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from farley.org (unknown [216.140.158.72]) by hub.freebsd.org (Postfix) with ESMTP id 6167E37B479 for ; Wed, 8 Nov 2000 12:03:43 -0800 (PST) Received: from thor.farley.org ([192.168.1.5]) by farley.org with esmtp (Exim 3.03 #1) id 13tbQ3-000CMj-00 for FreeBSD-gnats-submit@freebsd.org; Wed, 08 Nov 2000 14:02:03 -0600 Received: (from sean@localhost) by thor.farley.org (8.11.1/8.11.1) id eA8K23j35708; Wed, 8 Nov 2000 14:02:03 -0600 (CST) (envelope-from sean) Message-Id: <200011082002.eA8K23j35708@thor.farley.org> Date: Wed, 8 Nov 2000 14:02:03 -0600 (CST) From: sean-freebsd@farley.org Reply-To: sean-freebsd@farley.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22699: New port: gsi (general sound interface) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22699 >Category: ports >Synopsis: New port: gsi (general sound interface) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Nov 08 12:10:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Sean C. Farley >Release: FreeBSD 4.1.1-STABLE i386 >Organization: >Environment: >Description: Important note: As this is my first port ever, I caution the victim^H^H^H^H^H^Hcommitter to really scrutinize this port. :) This is the development version as this is the first version to support FreeBSD. From the home page: GSI is an easy to use audio system which can be used over a network and which gives applications, through a very simple API, sample playing with stereo, 3D, doppler effects, music playing (MIDI, HMP, MUS), cd playing and ejecting/changing. >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: # # gsi # gsi/Makefile # gsi/files # gsi/files/patch-aa # gsi/files/configure.sh # gsi/files/patch-ab # gsi/pkg-comment # gsi/pkg-descr # gsi/pkg-message # gsi/pkg-plist # gsi/distinfo # echo c - gsi mkdir -p gsi > /dev/null 2>&1 echo x - gsi/Makefile sed 's/^X//' >gsi/Makefile << 'END-of-gsi/Makefile' X# New ports collection makefile for: gsi X# Date created: 3 October 2000 X# Whom: Sean Farley X# X# $FreeBSD$ X# X XPORTNAME= gsi XPORTVERSION= 0.9.4 XCATEGORIES= audio XMASTER_SITES= http://www.xs4all.nl/~whs/gsi/bestanden/ XEXTRACT_SUFX= .tgz X XMAINTAINER= ports@FreeBSD.org X XWRKSRC= ${WRKDIR}/${PORTNAME} X XMAN1= gsifile.1 gsiplay.1 XMAN3= gsi.3 gsi_commands.3 gsi_events.3 gsif.3 gsipcm.3 XMAN5= gsi.conf.5 XMAN7= gsi_overview.7 XMAN8= gsi_server.8 X XMANCOMPRESSED= no X XUSE_GMAKE= yes X XINSTALLS_SHLIB= yes X X# This is needed to prevent the chopping off of the minor numbers X# on the shared libraries. XNO_FILTER_SHLIBS= yes X Xpre-configure: X @${FILESDIR}/configure.sh ${PREFIX} ${WRKSRC} X Xpost-install: X @${INSTALL_DATA} ${WRKSRC}/server.conf/gsi.conf.fbsd \ X ${PREFIX}/etc/gsi.conf.sample X.for fileNdx in gsi_server gsifile gsiplay X @strip ${PREFIX}/bin/${fileNdx} X.endfor X @${ECHO} "A sample configuration file was installed as" \ X ${PREFIX}/etc/gsi.conf.sample. X @${ECHO} "Copy and edit it to fit the system." X @${ECHO} X @${CAT} ${PKGMESSAGE} X X.include END-of-gsi/Makefile echo c - gsi/files mkdir -p gsi/files > /dev/null 2>&1 echo x - gsi/files/patch-aa sed 's/^X//' >gsi/files/patch-aa << 'END-of-gsi/files/patch-aa' X--- Config/Choose.sh Wed Jan 5 01:32:05 2000 X+++ Config/Choose.sh-stderr-off Tue Oct 3 15:49:11 2000 X@@ -7,15 +7,6 @@ X X prompt=$1 X default=$2 X-if [ "$default" != "" ]; then X- default="[$default]" X-fi X-if [ "`echo '\c'`" != "" ]; then X- echo -e "$prompt $default \c" >/dev/tty X-else X- echo -ne "$prompt $default " >/dev/tty X-fi X-#echo -e $prompt [$default] >/dev/tty X read answer X if [ "$answer" = "" ]; then X echo $2 END-of-gsi/files/patch-aa echo x - gsi/files/configure.sh sed 's/^X//' >gsi/files/configure.sh << 'END-of-gsi/files/configure.sh' X#!/bin/sh X XPREFIX=$1 XSYSCONFSCRIPT=Config/Configure_system.sh XAPPCONFSCRIPT=Config/Configure_application.sh X X# Change to the work directory. Xcd $2 X X# Execute two configure scripts while piping the output to /dev/null. X# This is because the output looks somewhat mashed. Xecho -n "Executing ${SYSCONFSCRIPT}... " X${SYSCONFSCRIPT} << _E_O_M_ > /dev/null 2>&1 X0 X${PREFIX} X_E_O_M_ Xecho "done." X Xecho -n "Executing ${APPCONFSCRIPT}... " X${APPCONFSCRIPT} << _E_O_M2_ > /dev/null 2>&1 X3 X X X X X_E_O_M2_ Xecho "done." X X# Fix a file to reflect where the configuration file should be looked for. Xecho -n "Configuring server/config.c... " Xmv server/config.c server/config.c.orig Xcat server/config.c.orig | sed "s|/etc/gsi.conf|${PREFIX}&|" > server/config.c X Xecho "done." END-of-gsi/files/configure.sh echo x - gsi/files/patch-ab sed 's/^X//' >gsi/files/patch-ab << 'END-of-gsi/files/patch-ab' X--- server/Makefile Wed Feb 2 11:01:15 2000 X+++ server/Makefile.patched Tue Nov 7 15:06:38 2000 X@@ -96,12 +96,6 @@ X @echo X @echo "Installing the server:" X cp $(GSI_SERVER) $(INSTALL_FILE) X- @echo X- @echo "Don't forget to place a line in /etc/services, like this:" X- @echo "gsi_server 9000/tcp # Shared 3d sound server" X- @echo "if you want to be able to run the server over a network." X- @echo "[ note the security implications, see the documentation ]" X- X X install.man: $(MANDIR)/man8/gsi_server.8 $(MANDIR)/man5/gsi.conf.5 X END-of-gsi/files/patch-ab echo x - gsi/pkg-comment sed 's/^X//' >gsi/pkg-comment << 'END-of-gsi/pkg-comment' XGSI - general sound interface END-of-gsi/pkg-comment echo x - gsi/pkg-descr sed 's/^X//' >gsi/pkg-descr << 'END-of-gsi/pkg-descr' XFrom the home page: X GSI is an easy to use audio system which can be used over a network X and which gives applications, through a very simple API, sample X playing with stereo, 3D, doppler effects, music playing (MIDI, HMP, X MUS), cd playing and ejecting/changing. X X GSI also contains a separately usable sound/music X loading/saving/format conversion library libgsif X (au/aiff/voc/wav/raw, midi/hmp/mus), although saving/format X conversion is not completely done. X X GSI runs on any unix system that has generic /dev/audio (8000Hz mono X mulaw), OSS, ultrasound project drivers, or NAS (well, it did once, I X need to update the NAS stuff), e.g. Linux, OpenBSD and FreeBSD. CD X playing is dependant on the OS' ioctl's and structs so that probably X works on linux/*BSD only (solaris may work, as it seems to use the X same ioctl's/structs as linux). X XLicense: 2-clause BSD-style for code / public domain for headers XWWW: http://www.xs4all.nl/~whs/gsi/gsi.html END-of-gsi/pkg-descr echo x - gsi/pkg-message sed 's/^X//' >gsi/pkg-message << 'END-of-gsi/pkg-message' XDon't forget to place a line in /etc/services, like this: X Xgsi_server 9000/tcp # Shared 3d sound server X Xif you want to be able to run the server over a network. X[ note the security implications, see the documentation ] END-of-gsi/pkg-message echo x - gsi/pkg-plist sed 's/^X//' >gsi/pkg-plist << 'END-of-gsi/pkg-plist' Xbin/gsi_server Xbin/gsiplay Xbin/gsifile Xetc/gsi.conf.sample Xinclude/gsi/config.h Xinclude/gsi/whs_types.h Xinclude/gsi/whs_defines.h Xinclude/gsi/whs_debug.h Xinclude/gsi/version.h Xinclude/gsi/synth_data.h Xinclude/gsi/pcm_data.h Xinclude/gsi/p_signal.h Xinclude/gsi/mixer_data.h Xinclude/gsi/kpmidi_patch.h Xinclude/gsi/kpmidi.h Xinclude/gsi/gsisynth.h Xinclude/gsi/gsipcm.h Xinclude/gsi/gsimixer.h Xinclude/gsi/gsif_midi.h Xinclude/gsi/gsif.h Xinclude/gsi/gsicd.h Xinclude/gsi/gsi_subcommands.h Xinclude/gsi/gsi_midi_names.h Xinclude/gsi/gsi_instrumentnames_gus.h Xinclude/gsi/gsi_events.h Xinclude/gsi/gsi_debug.h Xinclude/gsi/gsi_eventmasks.h Xinclude/gsi/gsi_event_names.h Xinclude/gsi/gsi_event_lengths.h Xinclude/gsi/gsi_config.h Xinclude/gsi/gsi_commands.h Xinclude/gsi/gsi_command_names.h Xinclude/gsi/gsi_command_lengths.h Xinclude/gsi/gsi.h Xinclude/gsi/device.h Xinclude/gsi/p_signal.c X@dirrm include/gsi Xlib/libgsi.so Xlib/libgsi.so.0.1 Xlib/libgsicd.so Xlib/libgsicd.so.0.1 Xlib/libgsif.so Xlib/libgsif.so.0.1 Xlib/libgsimidi_pcm.so Xlib/libgsimidi_pcm.so.2.0 Xlib/libgsimixer.so Xlib/libgsimixer.so.0.1 Xlib/libgsipcm.so Xlib/libgsipcm.so.0.1 Xlib/libgsisynth.so Xlib/libgsisynth.so.0.1 END-of-gsi/pkg-plist echo x - gsi/distinfo sed 's/^X//' >gsi/distinfo << 'END-of-gsi/distinfo' XMD5 (gsi-0.9.4.tgz) = d6d901b545d6bd2e264e8ed326fe07bf END-of-gsi/distinfo exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 12:50:41 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4FBB937B479; Wed, 8 Nov 2000 12:50:40 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA88603; Wed, 8 Nov 2000 12:50:40 -0800 (PST) (envelope-from bmah@FreeBSD.org) Date: Wed, 8 Nov 2000 12:50:40 -0800 (PST) From: Message-Id: <200011082050.MAA88603@freefall.freebsd.org> To: bmah@FreeBSD.org, freebsd-ports@FreeBSD.org, bmah@FreeBSD.org Subject: Re: ports/22656: port update to correct mail/exmh2 support of security/pgp5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: port update to correct mail/exmh2 support of security/pgp5 Responsible-Changed-From-To: freebsd-ports->bmah Responsible-Changed-By: bmah Responsible-Changed-When: Wed Nov 8 12:50:15 PST 2000 Responsible-Changed-Why: My port. http://www.freebsd.org/cgi/query-pr.cgi?pr=22656 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 12:57:40 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6377437B479; Wed, 8 Nov 2000 12:57:38 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA89571; Wed, 8 Nov 2000 12:57:38 -0800 (PST) (envelope-from bmah@FreeBSD.org) Date: Wed, 8 Nov 2000 12:57:38 -0800 (PST) From: Message-Id: <200011082057.MAA89571@freefall.freebsd.org> To: root@talentq.com, bmah@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22659: pkg_version does not work for ports that add -gtk suffix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: pkg_version does not work for ports that add -gtk suffix State-Changed-From-To: open->closed State-Changed-By: bmah State-Changed-When: Wed Nov 8 12:54:45 PST 2000 State-Changed-Why: Thanks for the patch. I'm closing this PR because we've recently added some code to the pkg_* utilities that solves this problem (and several other similar ones) by allowing an installed package to keep track of what port directory it was built from. It isn't fully supported in 4.2-RELEASE because it needs a commit to the ports collection infrastructure that will happen shortly after the release. http://www.freebsd.org/cgi/query-pr.cgi?pr=22659 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 13:53:24 2000 Delivered-To: freebsd-ports@freebsd.org Received: from eui2smtp.euskaltel.es (eui2smtp.euskaltel.es [212.55.8.50]) by hub.freebsd.org (Postfix) with ESMTP id 2875D37B4C5 for ; Wed, 8 Nov 2000 13:53:22 -0800 (PST) Received: from euskalnet.net ([62.36.135.155]) by eui2smtp.euskaltel.es (Netscape Messaging Server 4.15) with ESMTP id G3Q7G504.14J; Wed, 8 Nov 2000 22:52:53 +0100 Message-ID: <3A09CCB4.C3B2BD79@euskalnet.net> Date: Wed, 08 Nov 2000 22:59:16 +0100 From: Daniel X-Mailer: Mozilla 4.5 [es] (WinNT; I) X-Accept-Language: es MIME-Version: 1.0 To: ebakke@trolltech.com Cc: ports@FreeBSD.org Subject: FreeBSD Port: MyODBC-2.50.34 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, We want to download the package version of MyODBC-2.50.34 and we can not find it. What would you recommend us to do? How can we install that? We do not know about how to do another type of installation. Please give us a hand. Many thanks. Daniel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 14:20: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3A7C337B4C5 for ; Wed, 8 Nov 2000 14:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA02532; Wed, 8 Nov 2000 14:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from vegamuse.org (daedraug-0.dsl.speakeasy.net [216.254.13.128]) by hub.freebsd.org (Postfix) with ESMTP id 6EEF537B4C5 for ; Wed, 8 Nov 2000 14:17:51 -0800 (PST) Received: (from sab@localhost) by vegamuse.org (8.9.3/8.9.3) id SAA57239; Wed, 8 Nov 2000 18:07:48 -0500 (EST) (envelope-from sab) Message-Id: <200011082307.SAA57239@vegamuse.org> Date: Wed, 8 Nov 2000 18:07:48 -0500 (EST) From: sk-ports@vegamuse.org Reply-To: sk-ports@vegamuse.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22703: sysutils/wminet: master sites no longer carry tarball Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22703 >Category: ports >Synopsis: sysutils/wminet: master sites no longer carry tarball >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Nov 08 14:20:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: S. Kiernan >Release: FreeBSD 5.0-CURRENT >Organization: Vega Development Group >Environment: >Description: MASTER_SITES in wminet port no longer carry the tarball. >How-To-Repeat: >Fix: Comment out MASTER_SITES and fall back to FreeBSD mirrors. Index: Makefile =================================================================== RCS file: /usr/home/ncvs/ports/sysutils/wminet/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- Makefile 2000/08/12 08:00:00 1.7 +++ Makefile 2000/11/08 22:09:09 @@ -8,7 +8,8 @@ PORTNAME= wminet PORTVERSION= 2.0.2 CATEGORIES= sysutils windowmaker -MASTER_SITES= http://www.neotokyo.org/illusion/ +# All previous master sites no longer carry the tarball +# MASTER_SITES= MAINTAINER= sk-ports@vegamuse.org >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 14:20:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 71E1A37B4CF for ; Wed, 8 Nov 2000 14:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA02541; Wed, 8 Nov 2000 14:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from tail.eecs.umich.edu (tail.eecs.umich.edu [141.213.11.30]) by hub.freebsd.org (Postfix) with ESMTP id 405F937B479 for ; Wed, 8 Nov 2000 14:18:37 -0800 (PST) Received: (from ecronin@localhost) by tail.eecs.umich.edu (8.11.1/8.11.1) id eA8MIV850559; Wed, 8 Nov 2000 17:18:31 -0500 (EST) (envelope-from ecronin) Message-Id: <200011082218.eA8MIV850559@tail.eecs.umich.edu> Date: Wed, 8 Nov 2000 17:18:31 -0500 (EST) From: ecronin@eecs.umich.edu Reply-To: ecronin@eecs.umich.edu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22704: cyrus and cyrus-sasl both install pwcheck startup scripts, only cyrus-sasl installs pwcheck Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22704 >Category: ports >Synopsis: cyrus and cyrus-sasl both install pwcheck startup scripts, only cyrus-sasl installs pwcheck >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Nov 08 14:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Eric Cronin >Release: FreeBSD 4.1.1-STABLE i386 >Organization: >Environment: >Description: The mail/cyrus and security/cyrus-sasl ports both install scripts in /usr/local/etc/rc.d (cyrus.sh and pwcheck.sh respectively) which start the pwcheck program at startup. Since pwcheck it not part of the cyrus install, and cyrus-sasl is a requirement for cyrus, it makes no sense to have two. Additionally, the cyrus.sh script does nothing as is, since pwcheck is installed in /usr/local/sbin and cyrus.sh expects in in /usr/local/cyrus/bin >How-To-Repeat: cd /usr/ports/mail/cyrus; make install; ls /usr/local/etc/rc.d >Fix: remove cyrus.sh from the cyrus port >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 14:50: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5A02037B4CF for ; Wed, 8 Nov 2000 14:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA06013; Wed, 8 Nov 2000 14:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 3C05A37B479; Wed, 8 Nov 2000 14:47:33 -0800 (PST) Message-Id: <20001108224733.3C05A37B479@hub.freebsd.org> Date: Wed, 8 Nov 2000 14:47:33 -0800 (PST) From: gouders@et.bocholt.fh-ge.de To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/22705: The port textproc/jade comes with wrong documentation. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22705 >Category: ports >Synopsis: The port textproc/jade comes with wrong documentation. >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Nov 08 14:50:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Dirk Gouders >Release: 4.1.1 >Organization: FH Gelsenkirchen, Abt. Bocholt >Environment: FreeBSD musashi 4.1.1-RELEASE FreeBSD 4.1.1-RELEASE #2: Fri Oct 27 21:40:12 CEST 2000 root@musashi:/usr/src/sys/compile/MUSASHI i386 >Description: After installing the port textproc/jade and having a look into /usr/local/share/doc/jade, I find the documentation for sp(1) instead of jade(1). Because I can find the proper documentation at http://www.jclark.com/jade/, I guess that the directory /usr/local/share/doc/jade/ does not contain what it should. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 15:10:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8CD8337B4C5 for ; Wed, 8 Nov 2000 15:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA09518; Wed, 8 Nov 2000 15:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from hyde.ssec.wisc.edu (hyde.ssec.wisc.edu [144.92.108.217]) by hub.freebsd.org (Postfix) with ESMTP id 2D6CB37B479 for ; Wed, 8 Nov 2000 15:02:43 -0800 (PST) Received: from hyde.ssec.wisc.edu (dglo@localhost [127.0.0.1]) by hyde.ssec.wisc.edu (8.9.3/8.9.3) with ESMTP id RAA20361 for ; Wed, 8 Nov 2000 17:02:26 -0600 (CST) Message-Id: <200011082302.RAA20361@hyde.ssec.wisc.edu> Date: Wed, 08 Nov 2000 17:02:26 -0600 From: Dave Glowacki To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22706: Update MySQL JDBC driver Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22706 >Category: ports >Synopsis: Update driver >Confidential: yes >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Nov 08 15:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Dave Glowacki >Release: FreeBSD 4.1 i386 >Organization: >Environment: >Description: Update MySQL JDBC driver >How-To-Repeat: >Fix: The attached 'shar' file contains a MySQL JDBC driver which should work for both jdk1.1.8 and jdk1.2.2 (I hope :-). Note that the '.include ' in the Makefile is in the middle of the file rather than at the end, and it *needs* to be there because I need LOCALBASE expanded before I can check for the existence of the jdk1.2.2 stuff. I'd be happy to learn of a more elegant way of doing this! # 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: # # mysql-jdbc-mm/files/patch-Makefile # mysql-jdbc-mm/files/patch-README.html # mysql-jdbc-mm/Makefile # mysql-jdbc-mm/pkg-comment # mysql-jdbc-mm/pkg-descr # mysql-jdbc-mm/pkg-plist # mysql-jdbc-mm/distinfo # if [ ! -d mysql-jdbc-mm ]; then mkdir mysql-jdbc-mm; fi if [ ! -d mysql-jdbc-mm/files ]; then mkdir mysql-jdbc-mm/files; fi echo x - mysql-jdbc-mm/files/patch-Makefile sed 's/^X//' >mysql-jdbc-mm/files/patch-Makefile << 'END-of-mysql-jdbc-mm/files/patch-Makefile' X--- Makefile.orig Thu Oct 12 21:41:31 2000 X+++ Makefile Thu Oct 12 21:41:37 2000 X@@ -2,7 +2,7 @@ X # Makefile for mm mysql drivers X # X X-JAVAC_1 = /usr/local/jdk118/bin/javac X+JAVAC_1 = /usr/local/jdk1.1.8/bin/javac X JAVAC_2 = /usr/local/jdk1.2.2/bin/javac X JAVAC_FLAGS =-g X JAR = /usr/local/jdk1.2.2/bin/jar X@@ -69,8 +69,19 @@ X $(JAVAX_TARGETS): %.class: %.java X $(JAVAC_2) $(JAVAC_FLAGS) $< X X-jar: all X- $(JAR) -cv0f mysql_1_uncomp.jar org/gjt/mm/mysql/*.class org/gjt/mm/mysql/jdbc1/*.class; $(JAR) -cvf mysql_1_comp.jar org/gjt/mm/mysql/*.class org/gjt/mm/mysql/jdbc1/*.class;$(JAR) -cv0f mysql_2_uncomp.jar org/gjt/mm/mysql/*.class org/gjt/mm/mysql/jdbc2/*.class; $(JAR) -cvf mysql_2_comp.jar org/gjt/mm/mysql/*.class org/gjt/mm/mysql/jdbc2/*.class; $(JAR) -cvf mysql_both_comp.jar org/gjt/mm/mysql/*.class org/gjt/mm/mysql/jdbc1/*.class org/gjt/mm/mysql/jdbc2/*.class; $(JAR) -cv0f mysql_both_uncomp.jar org/gjt/mm/mysql/*.class org/gjt/mm/mysql/jdbc1/*.class org/gjt/mm/mysql/jdbc2/*.class X+jar: jdbc1-jar jdbc2-jar both-jar X+ X+jdbc1-jar: jdbc1 X+ @$(JAR) -cv0f mysql_1_uncomp.jar org/gjt/mm/mysql/*.class org/gjt/mm/mysql/jdbc1/*.class X+ @$(JAR) -cvf mysql_1_comp.jar org/gjt/mm/mysql/*.class org/gjt/mm/mysql/jdbc1/*.class X+ X+jdbc2-jar: jdbc2 X+ @$(JAR) -cv0f mysql_2_uncomp.jar org/gjt/mm/mysql/*.class org/gjt/mm/mysql/jdbc2/*.class X+ @$(JAR) -cvf mysql_2_comp.jar org/gjt/mm/mysql/*.class org/gjt/mm/mysql/jdbc2/*.class X+ X+both-jar: jdbc1 jdbc2 X+ @$(JAR) -cvf mysql_both_comp.jar org/gjt/mm/mysql/*.class org/gjt/mm/mysql/jdbc1/*.class org/gjt/mm/mysql/jdbc2/*.class X+ @$(JAR) -cv0f mysql_both_uncomp.jar org/gjt/mm/mysql/*.class org/gjt/mm/mysql/jdbc1/*.class org/gjt/mm/mysql/jdbc2/*.class X X clean: X rm -f $(JDBC_CORE_PREFIX)/*.class \ X@@ -82,3 +93,5 @@ X X gjt: X cp CHANGES README COPYING ../mm-for-gjt/java/org/gjt/mm/mysql; cp org/gjt/mm/mysql/*.java ../mm-for-gjt/java/org/gjt/mm/mysql X+ X+install: END-of-mysql-jdbc-mm/files/patch-Makefile echo x - mysql-jdbc-mm/files/patch-README.html sed 's/^X//' >mysql-jdbc-mm/files/patch-README.html << 'END-of-mysql-jdbc-mm/files/patch-README.html' X--- doc/README.html.orig Sat Nov 4 15:07:21 2000 X+++ doc/README.html Sat Nov 4 15:17:30 2000 X@@ -29,7 +29,7 @@ X MM.MySQL Specific Documentation X X

X-This document used to have a short synopsis of what was required to get the driver up and running. There is now a better document included in this distribution in the mm.doc directory, named book1.html. This is created from DOCBOOK sources, and although still a work in progress, is much more complete than the documentation that originally came with the driver. X+This document used to have a short synopsis of what was required to get the driver up and running. There is now a better document included in this distribution in the mm.doc directory, named book1.htm. This is created from DOCBOOK sources, and although still a work in progress, is much more complete than the documentation that originally came with the driver. X X X END-of-mysql-jdbc-mm/files/patch-README.html echo x - mysql-jdbc-mm/Makefile sed 's/^X//' >mysql-jdbc-mm/Makefile << 'END-of-mysql-jdbc-mm/Makefile' X# New ports collection makefile for: The mm MySql JDBC interface X# Date created: 2 January 2000 X# Whom: Dave Glowacki X# X# $FreeBSD: ports/databases/mysql-jdbc-mm/Makefile,v 1.6 2000/09/05 02:09:25 steve Exp $ X# X XPORTNAME= mysql-jdbc-mm XPORTVERSION= 2.0.2 XCATEGORIES= databases java XMASTER_SITES= http://www.worldserver.com/mm.mysql/dist/ XDISTNAME= mm.mysql-${PORTVERSION} XEXTRACT_SUFX= -src.jar X XMAINTAINER= dglo@SSEC.WISC.EDU X XJAVA_HOME?= ${LOCALBASE}/jdk1.1.8 XBUILD_DEPENDS= ${JAVA_HOME}/bin/javac:${PORTSDIR}/java/jdk XRUN_DEPENDS= ${JAVA_HOME}/bin/java:${PORTSDIR}/java/jdk X XEXTRACT_BEFORE_ARGS= -xf X XUSE_GMAKE= yes X XJAVA2_HOME= ${LOCALBASE}/jdk1.2.2 XJAVA2C= ${JAVA2_HOME}/bin/javac X XCLASSDIR= ${LOCALBASE}/share/java/classes X X# the 'do-install' and 'post-install' dummy targets are placeholders X# so bsd.port.mk doesn't override the targets below X# Xdo-install: Xpost-install: X X# bsd.port.mk has to be included here so all the variables are expanded X# before all the "exists(${JAVA2C})" checks below X# X.include X X.if exists(${JAVA2C}) XALL_TARGET= jar XEXTRACT_CMD= ${JAVA2_HOME}/bin/jar X.else XALL_TARGET= jdbc1-jar XEXTRACT_CMD= ${JAVA_HOME}/bin/jar X.endif X Xdo-install: X @${MKDIR} ${CLASSDIR} X @${INSTALL_DATA} ${WRKSRC}/mysql_1_uncomp.jar ${CLASSDIR} X @${INSTALL_DATA} ${WRKSRC}/mysql_1_comp.jar ${CLASSDIR} X.if exists(${JAVA2C}) X @${INSTALL_DATA} ${WRKSRC}/mysql_2_uncomp.jar ${CLASSDIR} X @${INSTALL_DATA} ${WRKSRC}/mysql_2_comp.jar ${CLASSDIR} X @${INSTALL_DATA} ${WRKSRC}/mysql_both_uncomp.jar ${CLASSDIR} X @${INSTALL_DATA} ${WRKSRC}/mysql_both_comp.jar ${CLASSDIR} X.endif X Xpost-install: X.if !defined(NOPORTDOCS) X @${MKDIR} ${LOCALBASE}/share/doc/mysql-jdbc X @(cd ${WRKSRC}/doc && ${TAR} -c -f - .) \ X | (cd ${LOCALBASE}/share/doc/mysql-jdbc && ${TAR} --unlink -x -f -) X @(cd ${LOCALBASE} \ X && find share/doc/mysql-jdbc -type f -print >> ${TMPPLIST}) X.endif X.if exists(${JAVA2C}) X for i in mysql_2_uncomp.jar mysql_2_comp.jar mysql_both_uncomp.jar mysql_both_comp.jar; do \ X echo ${CLASSDIR}/$$i >> ${TMPPLIST}; \ X done X echo "You may want to delete one" X echo " of the mysql .jar files in ${CLASSDIR}" X echo "" X echo " mysql_1_comp.jar - compressed JDBC1 classes" X echo " mysql_1_uncomp.jar - uncompressed JDBC1 classes" X.else X echo "You may want to delete all but one" X echo " of the mysql .jar files in ${CLASSDIR}" X echo "" X echo " mysql_1_comp.jar - compressed JDBC1 classes" X echo " mysql_1_uncomp.jar - uncompressed JDBC1 classes" X echo " mysql_2_comp.jar - compressed JDBC2 classes" X echo " mysql_2_uncomp.jar - uncompressed JDBC2 classes" X echo " mysql_both_comp.jar - compressed JDBC1 and JDBC2 classes" X echo " mysql_both_uncomp.jar - uncompressed JDBC1 and JDBC2 classes" X.endif END-of-mysql-jdbc-mm/Makefile echo x - mysql-jdbc-mm/pkg-comment sed 's/^X//' >mysql-jdbc-mm/pkg-comment << 'END-of-mysql-jdbc-mm/pkg-comment' XThe mm JDBC interface for MySQL END-of-mysql-jdbc-mm/pkg-comment echo x - mysql-jdbc-mm/pkg-descr sed 's/^X//' >mysql-jdbc-mm/pkg-descr << 'END-of-mysql-jdbc-mm/pkg-descr' XThis is a port of the mm JDBC driver which is used to access MySQL Xdatabases using a database-independant API in Java. X XWWW: http://www.worldserver.com/mm.mysql/ X Xdglo@ssec.wisc.edu END-of-mysql-jdbc-mm/pkg-descr echo x - mysql-jdbc-mm/pkg-plist sed 's/^X//' >mysql-jdbc-mm/pkg-plist << 'END-of-mysql-jdbc-mm/pkg-plist' Xshare/java/classes/mysql_1_uncomp.jar Xshare/java/classes/mysql_1_comp.jar END-of-mysql-jdbc-mm/pkg-plist echo x - mysql-jdbc-mm/distinfo sed 's/^X//' >mysql-jdbc-mm/distinfo << 'END-of-mysql-jdbc-mm/distinfo' XMD5 (mm.mysql-2.0.2-src.jar) = 962edb27b15fd88ccd4556e427578733 END-of-mysql-jdbc-mm/distinfo exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 15:20: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 71E0637B479 for ; Wed, 8 Nov 2000 15:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA10251; Wed, 8 Nov 2000 15:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Wed, 8 Nov 2000 15:20:02 -0800 (PST) Message-Id: <200011082320.PAA10251@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Jacques A. Vidrine" Subject: Re: ports/22704: cyrus and cyrus-sasl both install pwcheck startup scripts, only cyrus-sasl installs pwcheck Reply-To: "Jacques A. Vidrine" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/22704; it has been noted by GNATS. From: "Jacques A. Vidrine" To: ecronin@eecs.umich.edu Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/22704: cyrus and cyrus-sasl both install pwcheck startup scripts, only cyrus-sasl installs pwcheck Date: Wed, 8 Nov 2000 17:19:36 -0600 On Wed, Nov 08, 2000 at 05:18:31PM -0500, ecronin@eecs.umich.edu wrote: > >Description: > > The mail/cyrus and security/cyrus-sasl ports both install scripts in > /usr/local/etc/rc.d (cyrus.sh and pwcheck.sh respectively) which start the > pwcheck program at startup. I want to add that these scripts should be installed as e.g. `pwcheck.sh.sample', so that (1) local customizations are not overridden and (2) a new service isn't started the next time one boots. This is especially true for cyrus-sasl ... other packages may depend on libsasl. -- Jacques Vidrine / n@nectar.com / jvidrine@verio.net / nectar@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 15:40: 4 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0F9D937B479 for ; Wed, 8 Nov 2000 15:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA12753; Wed, 8 Nov 2000 15:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Wed, 8 Nov 2000 15:40:02 -0800 (PST) Message-Id: <200011082340.PAA12753@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Dirk Gouders Subject: Re: ports/22705: The port textproc/jade comes with wrong documentation. Reply-To: Dirk Gouders Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/22705; it has been noted by GNATS. From: Dirk Gouders To: freebsd-gnats-submit@FreeBSD.org, gouders@et.bocholt.fh-ge.de Cc: Subject: Re: ports/22705: The port textproc/jade comes with wrong documentation. Date: Thu, 09 Nov 2000 00:36:45 +0100 I noticed, that even the packages from the original site (www.jclark.com) contain the wrong documentation and sent a mail to James Clark. Maybe that means that this PR can be closed. Dirk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 15:47:44 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.hiwaay.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (Postfix) with ESMTP id CE7C637B479 for ; Wed, 8 Nov 2000 15:47:42 -0800 (PST) Received: from bonsai.knology.net ([24.214.88.8]) by mail.hiwaay.net (8.11.0/8.11.0) with ESMTP id eA8Nld700054; Wed, 8 Nov 2000 17:47:40 -0600 (CST) Received: (from steve@localhost) by bonsai.knology.net (8.11.0/8.9.3) id eA8NlXl55086; Wed, 8 Nov 2000 17:47:33 -0600 (CST) (envelope-from steve) Date: Wed, 8 Nov 2000 17:47:23 -0600 From: Steve Price To: Daniel Cc: ebakke@trolltech.com, ports@FreeBSD.ORG Subject: Re: FreeBSD Port: MyODBC-2.50.34 Message-ID: <20001108174723.K78829@bonsai.knology.net> References: <3A09CCB4.C3B2BD79@euskalnet.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A09CCB4.C3B2BD79@euskalnet.net>; from euskalanuncio@euskalnet.net on Wed, Nov 08, 2000 at 10:59:16PM +0100 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Nov 08, 2000 at 10:59:16PM +0100, Daniel wrote: # Hi, # We want to download the package version of MyODBC-2.50.34 and we can not # find it. What would you recommend us to do? How can we install that? You can't find it because it the package building machines were having troubles building it. I've just sent the attached patch to the maintainer of the mysql323-client port (which is where the problem originates). # # We do not know about how to do another type of installation. Please give # us a hand. If you can tell us what version of FreeBSD you are using you could probably convince an enterprising soul on this list to build a package of it for you. :) -steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 15:50:39 2000 Delivered-To: freebsd-ports@freebsd.org Received: from peitho.fxp.org (peitho.fxp.org [209.26.95.40]) by hub.freebsd.org (Postfix) with ESMTP id 059A737B479; Wed, 8 Nov 2000 15:50:37 -0800 (PST) Received: by peitho.fxp.org (Postfix, from userid 1501) id 77A201360E; Wed, 8 Nov 2000 18:50:39 -0500 (EST) Date: Wed, 8 Nov 2000 18:50:38 -0500 From: Chris Faulhaber To: Steve Price Cc: ports@FreeBSD.ORG, dirk@FreeBSD.org Subject: Re: FreeBSD Port: MyODBC-2.50.34 Message-ID: <20001108185038.A77437@peitho.fxp.org> References: <3A09CCB4.C3B2BD79@euskalnet.net> <20001108174723.K78829@bonsai.knology.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001108174723.K78829@bonsai.knology.net>; from sprice@hiwaay.net on Wed, Nov 08, 2000 at 05:47:23PM -0600 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Nov 08, 2000 at 05:47:23PM -0600, Steve Price wrote: > On Wed, Nov 08, 2000 at 10:59:16PM +0100, Daniel wrote: > # Hi, > # We want to download the package version of MyODBC-2.50.34 and we can not > # find it. What would you recommend us to do? How can we install that? > > You can't find it because it the package building machines were > having troubles building it. I've just sent the attached patch > to the maintainer of the mysql323-client port (which is where the > problem originates). > Speaking of mysql323, since 3.23.* is still beta, shouldn't it have NO_LATEST_LINK set? -- Chris D. Faulhaber - jedgar@fxp.org - jedgar@FreeBSD.org -------------------------------------------------------- FreeBSD: The Power To Serve - http://www.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 15:55:32 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.hiwaay.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (Postfix) with ESMTP id CAC4F37B479 for ; Wed, 8 Nov 2000 15:55:29 -0800 (PST) Received: from bonsai.knology.net ([24.214.88.8]) by mail.hiwaay.net (8.11.0/8.11.0) with ESMTP id eA8NtM702943; Wed, 8 Nov 2000 17:55:23 -0600 (CST) Received: (from steve@localhost) by bonsai.knology.net (8.11.0/8.9.3) id eA8Nsnn55703; Wed, 8 Nov 2000 17:54:49 -0600 (CST) (envelope-from steve) Date: Wed, 8 Nov 2000 17:54:49 -0600 From: Steve Price To: Steve Price Cc: Daniel , ebakke@trolltech.com, ports@FreeBSD.ORG Subject: Re: FreeBSD Port: MyODBC-2.50.34 Message-ID: <20001108175449.L78829@bonsai.knology.net> References: <3A09CCB4.C3B2BD79@euskalnet.net> <20001108174723.K78829@bonsai.knology.net> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="HG+GLK89HZ1zG0kk" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001108174723.K78829@bonsai.knology.net>; from sprice@hiwaay.net on Wed, Nov 08, 2000 at 05:47:23PM -0600 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --HG+GLK89HZ1zG0kk Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Doh! Forgot the attachment. I wrote: # You can't find it because it the package building machines were # having troubles building it. I've just sent the attached patch # to the maintainer of the mysql323-client port (which is where the # problem originates). --HG+GLK89HZ1zG0kk Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=diffs Index: pkg-plist.client =================================================================== RCS file: /home/ncvs/ports/databases/mysql323-server/pkg-plist.client,v retrieving revision 1.6 diff -u -r1.6 pkg-plist.client --- pkg-plist.client 2000/10/19 13:28:42 1.6 +++ pkg-plist.client 2000/11/08 23:27:13 @@ -9,6 +9,7 @@ include/mysql/errmsg.h include/mysql/m_ctype.h include/mysql/m_string.h +include/mysql/my_config.h include/mysql/my_global.h include/mysql/my_list.h include/mysql/my_net.h Index: files/patch-ar =================================================================== RCS file: /home/ncvs/ports/databases/mysql323-server/files/patch-ar,v retrieving revision 1.1 diff -u -r1.1 patch-ar --- files/patch-ar 2000/01/05 21:03:02 1.1 +++ files/patch-ar 2000/11/08 23:28:25 @@ -1,6 +1,15 @@ ---- include/Makefile.in.orig Sat Jan 1 17:59:41 2000 -+++ include/Makefile.in Wed Jan 5 21:04:23 2000 -@@ -259,7 +259,11 @@ +--- include/Makefile.in.orig Tue Oct 17 16:10:42 2000 ++++ include/Makefile.in Wed Nov 8 17:26:09 2000 +@@ -168,7 +168,7 @@ + uname_prog = @uname_prog@ + + BUILT_SOURCES = mysql_version.h m_ctype.h +-pkginclude_HEADERS = dbug.h m_string.h my_sys.h mysql.h mysql_com.h mysqld_error.h my_list.h my_pthread.h my_no_pthread.h raid.h errmsg.h my_global.h my_net.h sslopt-case.h sslopt-longopts.h sslopt-usage.h sslopt-vars.h $(BUILT_SOURCES) ++pkginclude_HEADERS = dbug.h m_string.h my_sys.h mysql.h mysql_com.h mysqld_error.h my_config.h my_list.h my_pthread.h my_no_pthread.h raid.h errmsg.h my_global.h my_net.h sslopt-case.h sslopt-longopts.h sslopt-usage.h sslopt-vars.h $(BUILT_SOURCES) + + noinst_HEADERS = global.h config-win.h nisam.h heap.h merge.h myisam.h myisampack.h myisammrg.h ft_global.h my_dir.h mysys_err.h my_base.h my_nosys.h my_alarm.h queues.h my_tree.h hash.h thr_alarm.h thr_lock.h getopt.h t_ctype.h violite.h mysql_version.h.in + +@@ -282,7 +282,11 @@ install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am --HG+GLK89HZ1zG0kk-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 15:56:42 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.hiwaay.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (Postfix) with ESMTP id EA4FE37B479; Wed, 8 Nov 2000 15:56:39 -0800 (PST) Received: from bonsai.knology.net ([24.214.88.8]) by mail.hiwaay.net (8.11.0/8.11.0) with ESMTP id eA8Nub700898; Wed, 8 Nov 2000 17:56:37 -0600 (CST) Received: (from steve@localhost) by bonsai.knology.net (8.11.0/8.9.3) id eA8NuVY55732; Wed, 8 Nov 2000 17:56:31 -0600 (CST) (envelope-from steve) Date: Wed, 8 Nov 2000 17:56:31 -0600 From: Steve Price To: Chris Faulhaber Cc: Steve Price , ports@FreeBSD.ORG, dirk@FreeBSD.ORG Subject: Re: FreeBSD Port: MyODBC-2.50.34 Message-ID: <20001108175631.M78829@bonsai.knology.net> References: <3A09CCB4.C3B2BD79@euskalnet.net> <20001108174723.K78829@bonsai.knology.net> <20001108185038.A77437@peitho.fxp.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001108185038.A77437@peitho.fxp.org>; from jedgar@fxp.org on Wed, Nov 08, 2000 at 06:50:38PM -0500 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Nov 08, 2000 at 06:50:38PM -0500, Chris Faulhaber wrote: # # Speaking of mysql323, since 3.23.* is still beta, shouldn't it have # NO_LATEST_LINK set? Yes, either mysql322-server or mysql323-server should. Good eye Chris. :) -steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 16:16:44 2000 Delivered-To: freebsd-ports@freebsd.org Received: from emmi.physik.TU-Berlin.DE (emmi.physik.TU-Berlin.DE [130.149.160.103]) by hub.freebsd.org (Postfix) with ESMTP id 19CD037B479 for ; Wed, 8 Nov 2000 16:16:42 -0800 (PST) Received: (from ibex@localhost) by emmi.physik.TU-Berlin.DE (8.9.3/8.9.3) id BAA07318; Thu, 9 Nov 2000 01:16:35 +0100 (CET) (envelope-from ibex) Date: Thu, 9 Nov 2000 01:16:35 +0100 From: Dirk Froemberg To: Chris Faulhaber Cc: Steve Price , ports@FreeBSD.ORG Subject: Re: FreeBSD Port: MyODBC-2.50.34 Message-ID: <20001109011635.B6936@physik.TU-Berlin.DE> References: <3A09CCB4.C3B2BD79@euskalnet.net> <20001108174723.K78829@bonsai.knology.net> <20001108185038.A77437@peitho.fxp.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001108185038.A77437@peitho.fxp.org>; from jedgar@fxp.org on Wed, Nov 08, 2000 at 06:50:38PM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Chris! On Wed, Nov 08, 2000 at 06:50:38PM -0500, Chris Faulhaber wrote: > On Wed, Nov 08, 2000 at 05:47:23PM -0600, Steve Price wrote: > > On Wed, Nov 08, 2000 at 10:59:16PM +0100, Daniel wrote: > > # Hi, > > # We want to download the package version of MyODBC-2.50.34 and we can not > > # find it. What would you recommend us to do? How can we install that? > > > > You can't find it because it the package building machines were > > having troubles building it. I've just sent the attached patch > > to the maintainer of the mysql323-client port (which is where the > > problem originates). > > > > Speaking of mysql323, since 3.23.* is still beta, shouldn't it have > NO_LATEST_LINK set? Yes, of course. Fixed. Thanks Regards Dirk -- Dirk Froemberg FreeBSD: The Power to Serve! http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 16:34:51 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0204037B479; Wed, 8 Nov 2000 16:34:50 -0800 (PST) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA20829; Wed, 8 Nov 2000 16:34:50 -0800 (PST) (envelope-from nbm@FreeBSD.org) Date: Wed, 8 Nov 2000 16:34:50 -0800 (PST) From: Message-Id: <200011090034.QAA20829@freefall.freebsd.org> To: nbm@FreeBSD.org, freebsd-ports@FreeBSD.org, nbm@FreeBSD.org Subject: Re: ports/22698: Ports' rc.d files should use rc.conf Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Ports' rc.d files should use rc.conf Responsible-Changed-From-To: freebsd-ports->nbm Responsible-Changed-By: nbm Responsible-Changed-When: Wed Nov 8 16:33:39 PST 2000 Responsible-Changed-Why: I'll put this on my task list once the One True Way of getting configuration goes in. http://www.freebsd.org/cgi/query-pr.cgi?pr=22698 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 17:30:49 2000 Delivered-To: freebsd-ports@freebsd.org Received: from pille1.addcom.de (unknown [62.96.128.35]) by hub.freebsd.org (Postfix) with SMTP id 9B2A037B479 for ; Wed, 8 Nov 2000 17:30:47 -0800 (PST) Received: (qmail 23829 invoked from network); 9 Nov 2000 01:30:42 -0000 Received: from f-dialin-1334.addcom.de (HELO spotteswoode.yi.org) (qmailr@62.96.144.142) by 62.96.128.35 with SMTP; 9 Nov 2000 01:30:42 -0000 Received: (qmail 5085 invoked from network); 9 Nov 2000 01:31:03 -0000 Received: from localhost (HELO web.de) (127.0.0.1) by localhost with SMTP; 9 Nov 2000 01:31:03 -0000 Message-ID: <3A09FE57.69C04FBC@web.de> Date: Thu, 09 Nov 2000 02:31:03 +0100 From: clemensF Organization: private X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.0-RELEASE i386) X-Accept-Language: en, de MIME-Version: 1.0 To: jkoshy@FreeBSD.org Cc: ports@FreeBSD.org Subject: FreeBSD Port: siod-3.4 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org hi. i've fought for days to get siod to run from the source: to no avail. have you got a working makefile for me? -- c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 17:43:58 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.hiwaay.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (Postfix) with ESMTP id 15D3137B479; Wed, 8 Nov 2000 17:43:57 -0800 (PST) Received: from bonsai.knology.net (user-24-214-88-8.knology.net [24.214.88.8]) by mail.hiwaay.net (8.11.0/8.11.0) with ESMTP id eA91hs727056; Wed, 8 Nov 2000 19:43:54 -0600 (CST) Received: (from steve@localhost) by bonsai.knology.net (8.11.0/8.9.3) id eA91hsp62258; Wed, 8 Nov 2000 19:43:54 -0600 (CST) (envelope-from steve) Date: Wed, 8 Nov 2000 19:43:39 -0600 From: Steve Price To: clemensF Cc: jkoshy@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: FreeBSD Port: siod-3.4 Message-ID: <20001108194339.V78829@bonsai.knology.net> References: <3A09FE57.69C04FBC@web.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A09FE57.69C04FBC@web.de>; from rabat@web.de on Thu, Nov 09, 2000 at 02:31:03AM +0100 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Nov 09, 2000 at 02:31:03AM +0100, clemensF wrote: # hi. # # i've fought for days to get siod to run from the source: to no avail. # have you got a working makefile for me? Compiles fine here. Are you using the port (lang/siod)? Maybe if you post a build log or some indication of the problems you are having we can help you resolve whatever problem you are having. It also helps to know what version of FreeBSD you are using. -steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 17:59:19 2000 Delivered-To: freebsd-ports@freebsd.org Received: from warspite.cnchost.com (warspite.concentric.net [207.155.248.9]) by hub.freebsd.org (Postfix) with ESMTP id 48E6837B479; Wed, 8 Nov 2000 17:59:16 -0800 (PST) Received: from mercury (ts7-a30.dial.sovam.com [195.239.0.94]) by warspite.cnchost.com id OAA02480; Wed, 8 Nov 2000 14:43:59 -0500 (EST) [ConcentricHost SMTP Relay 1.10] From: webmaster@databasefirm.ac To: ÓÂÀÆÀÅÌÛÅ@FreeBSD.ORG, @ÃÎÑÏÎÄÀ.FreeBSD.ORG Subject: ÓÂÀÆÀÅÌÛÅ ÃÎÑÏÎÄÀ! Date: Mon, 08 Nov 1999 23:15:08 +0300 Message-Id: <36472.968848726850400.457@localhost> MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Ïðèíîñèì èçâèíåíèÿ çà íåñàíêöèîíèðîâàííóþ ðàññûëêó. Âàø àäðåñ âçÿò èç îòêðûòûõ èñòî÷íèêîâ. Äàííàÿ ðàññûëêà ÿâëåòñÿ ðàçîâîé. ÓÂÀÆÀÅÌÛÅ ÃÎÑÏÎÄÀ! Âû õîòåëè áû äîíåñòè Âàøå êîììåð÷åñêîå ïðåäëîæåíèå ñðàçó äî 48000 ðîññèéñêèõ ôèðì, îðãàíèçàöèé, ó÷ðåæäåíèé ïóòåì ðåêëàìíîé ðàññûëêè ïî ýëåêòðîííîé ïî÷òå? Âû ñàìè ìîæåòå äåëàòü ýòî ñ ëþáîé ïåðèîäè÷íîñòüþ è ïðè ýòîì ñîâåðøåííî áåñïëàòíî! 1. Ïðåäëàãàåì Âàì ïðèîáðåñòè áàçó, ñîñòîÿùóþ èç 48000 ýëåêòðîííûõ àäðåñîâ ôèðì,îðãàíèçàöèé, ó÷ðåæäåíèé Ðîññèéñêîé Ôåäåðàöèè. Áàçà ñîçäàíà â ðåçóëüòàòå êðîïîòëèâîé ðàáîòû ñ áîëåå ÷åì 18 ñïðàâî÷íèêàìè. Ñòîèìîñòü áàçû 2000 ðóá. (âêëþ÷àÿ ïðîôåññèîíàëüíóþ ïðîãðàììó äëÿ Âàøåé ðàññûëêè è ïðîãðàììó äëÿ ïîèêà àäðåñîâ â ñåòè Èíòåðíåò ). 2. Ôàêñ-áàçà " Âñÿ äåëîâàÿ Ìîñêâà " Áàçà ñîäåðæèò 45000 ôàêñ-íîìåðîâ ôèðì Ìîñêâû è Ìîñêîâñêîé îáëàñòè (ìîñêîâñêèå íîìåðà) è ñîñòîèò èç 83 òåìàòè÷åñêèõ ðàçäåëîâ. Âûñîêàÿ àêòóàëüíîñòü èíôîðìàöèè îáåñïå÷èâàåòñÿ çà ñ÷åò ïîñòîÿííîé ïðîâåðêè è äîáàâëåíèÿ íîâûõ íîìåðîâ èç ðàçëè÷íûõ èñòî÷íèêîâ. Ôàêñ-áàçà ïðåäíàçíà÷åíà äëÿ èñïîëüçîâàíèÿ â ïðîãðàììàõ àâòîìàòè÷åñ- êîé ôàêñ-ðàññûëêè, ïîñòàâëÿåòñÿ â ôîðìàòå *.txt (òåêñò ñ ðàçäåëèòåëåì tab), ìîæåò áûòü îáðàáîòàíà ñòàíäàðòíûìè ñðåäñòâàìè ïàêåòà "MsOffice" ("MsWord", "MsExcel", "MsAccess") è âêëþ÷àåò òðè ïîëÿ: íàçâàíèå ôèðìû; íîìåð ôàêñà; âèä äåÿòåëüíîñòè. Ïëàíèðóåòñÿ ïåðåèçäàíèå áàçû äàííûõ êàæäûå ïîëãîäà ñ íåîáõîäèìûìè èçìåíåíèÿìè è äîïîëíåíèÿìè. Îáíîâëåíèå ôàêñ-áàçû çà 50 % ñòîèìîñòè. Ñòîèìîñòü ôàêñ-áàçû " Âñÿ äåëîâàÿ Ìîñêâà " - 2000 ðóáëåé. ÁÀÇÀ ÄÀÍÍÛÕ ÏÎ ÏÐÎÏÈÑÊÅ Äèñê,íåîáõîäèìûé ïðîôåñèîíàëüíîìó ðèýëòîðó èëè ïðîñòî ïîêóïàòåëþ-ëþáèòåëþ. Âñå ìû ïðåêðàñíî çíàåì, ÷òî âîêðóã òîðãîâëè æèëüžì ñëîæèëàñü êðèìèíîãåííàÿ ñèòóàöèÿ. Îáìàíóòü ãäå óãîäíî è êàê óãîäíî, íà ëþáîé èç ìíîãî÷èñëåííûõ ñòàäèé ñòàäèé îôîðìëåíèÿ ïîêóïêè. Íî ñàìîå íåïðèÿòíîå "êèäàëîâî" ñâÿçàíî ñ ïðîäàæåé ÷óæîãî æèëüÿ.  âåê áþðîêðàòèè, ìíîãî÷èñëåííûõ áóìàæåê â âèäå äîâåðåííîñòåé, äàðñòâåííûõ è çàêëàäíûõ, íèêîãäà íåëüçÿ áûòü çàðàíåå óâåðåííûì â ëåãàëüíîñòè ïðîèñõîäÿùåãî. ×òîáû ñíÿòü âñå ñîìíåíèÿ,âàì îñòàžòñÿ ëèøü çàïóñòèòü ïðåäëàãàåìóþ íàìè áàçó (êñòàòè ýòî ñàìàÿ ñâåæàÿ âåðñèÿ) è, ïîëó÷èòü æåëàåìûé ðåçóëüòàò: ëèáî ëèáî ñäàòü åãî ñîîòâåòñòâóþùèì îðãàíàì , ëèáî óäà÷íî çàâåðøèòü ñäåëêó. Ñòîèìîñòü ÁÀÇÛ ÄÀÍÍÛÕ ÏÎ ÏÐÎÏÈÑÊÅ - 2000 ðóáëåé. Áàçà ïî âñåì åìýéëàì (â êîëè÷åñòâå 25 ìëí. øò) Ïîäðàçäåëåíà ïî: 1 Ñòðàíàì. 2 Ãîðîäàì (Ìîñêâà, Ïåòåðáóðã, Ìèíñê è äð.). 3 Äîìåíàì (Aha, Cityline, Aol è äð.). 4 Èìåíàì (êàêèå òîëüêî ñóùåñòâóþò). 5 Îòäåëüíàÿ áàçà ïî ðîññèéñêèì åìýéëàì. Ñòîèìîñòü áàçû 150 äîëëàðîâ. Âñåãî 230 Mb òåêñòîâîé èíôîðìàöèè, ïîñòàâëÿåòñÿ íà äèñêå. Áåñïëàòíàÿ äîñòàâêà ïðè íàëè÷íîé îïëàòå(Ìîñêâà) Tel.095 7502200 email:webmasters@rambler.ru ÇÀÎ "Mercury" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 19:55:57 2000 Delivered-To: freebsd-ports@freebsd.org Received: from granger.mail.mindspring.net (granger.mail.mindspring.net [207.69.200.148]) by hub.freebsd.org (Postfix) with ESMTP id B05AD37B4CF for ; Wed, 8 Nov 2000 19:55:54 -0800 (PST) Received: from silvia.hip.berkeley.edu (sji-ca7-217.ix.netcom.com [209.109.235.217]) by granger.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id WAA13919 for ; Wed, 8 Nov 2000 22:55:32 -0500 (EST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.1/8.11.0) id eA93ogI81463; Wed, 8 Nov 2000 19:50:43 -0800 (PST) (envelope-from asami@cs.berkeley.edu) Date: Wed, 8 Nov 2000 19:50:43 -0800 (PST) Message-Id: <200011090350.eA93ogI81463@silvia.hip.berkeley.edu> X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: ports@freebsd.org Subject: share/locale From: asami@freebsd.org (Satoshi Asami) User-Agent: SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) Emacs/20.7 (i386--freebsd) MULE/4.0 (=?ISO-2022-JP?B?GyRCMlYxYxsoQg==?=) MIME-Version: 1.0 (generated by SEMI 1.13.7 - "Awazu") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, The first post-release run (with the plist check turned on) is giving a lot of `extra' errors in share/locale (actually the entire subdirectory). http://bento.FreeBSD.org/errorlogs/errorlogs/a.4.2000110816/extras.html Did something change in the past week or so? I can't find anything suspicious in imlib or gettext, for instance. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 20:15:30 2000 Delivered-To: freebsd-ports@freebsd.org Received: from net2.dinoex.sub.org (net2.dinoex.de [212.184.201.182]) by hub.freebsd.org (Postfix) with ESMTP id EAB5737B479 for ; Wed, 8 Nov 2000 20:15:26 -0800 (PST) Received: from gate.dinoex.sub.org (dinoex@localhost) by net2.dinoex.sub.org (8.11.1/8.11.1) with BSMTP id eA94F4N24100 for ; Thu, 9 Nov 2000 05:15:04 +0100 (CET) (envelope-from dirk.meyer@dinoex.sub.org) X-MDaemon-Deliver-To: To: freebsd-ports@FreeBSD.ORG Message-ID: From: dirk.meyer@dinoex.sub.org (Dirk Meyer) Organization: privat Subject: Re: ports/22698: Ports' rc.d files should use rc.conf Date: Thu, 09 Nov 2000 05:12:56 +0100 X-Mailer: Dinoex 1.76 References: <200011081952.OAA96333@khavrinen.lcs.mit.edu> X-Gateway: ZCONNECT gate.dinoex.sub.org [UNIX/Connect 0.90] X-Accept-Language: de,en X-PGP-Fingerprint: 44 16 EC 0A D3 3A 4F 28 8A 8A 47 93 F1 CF 2F 12 X-Noad: Please don't send me ad's by mail. I'm bored by this type of mail. X-Copyright: (C) Copyright 1999 by Dirk Meyer -- All rights reserved. X-Note: sending SPAM is a violation of both german and US law and will at least trigger a complaint at your provider's postmaster. X-PGP-Key-Avail: mailto:pgp-public-keys@keys.de.pgp.net Subject:GET 0x331CDA5D X-ZC-VIA: 20001109000000W+1@dinoex.sub.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Garrett Wollman wrote: > We have several machines which are set up with identical software, for > cold-sparing purposes. Not all of these machines run the same set of > daemons. IWNRNI the standard rc.d/foo.sh files checked rc.conf to > find out whether or not they should be enabled. I use a far simpler approach. I just set in my rc.conf: local_startup="/usr/local/etc/rc.local" and set a link or copy of the .sh file in this directory on each machine. kind regards Dirk - Dirk Meyer, Im Grund 4, 34317 Habichtswald, Germany To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 20:51:46 2000 Delivered-To: freebsd-ports@freebsd.org Received: from 200-227-201-113-as.acessonet.com.br (200-227-201-113-as.acessonet.com.br [200.227.201.113]) by hub.freebsd.org (Postfix) with ESMTP id BC67537B4C5 for ; Wed, 8 Nov 2000 20:51:41 -0800 (PST) Received: (qmail 764 invoked by uid 1001); 9 Nov 2000 04:50:56 -0000 From: "Mario Sergio Fujikawa Ferreira" Date: Thu, 9 Nov 2000 02:50:34 -0200 To: Satoshi Asami Cc: ports@freebsd.org Subject: Re: share/locale Message-ID: <20001109025034.A312@Fedaykin.here> References: <200011090350.eA93ogI81463@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <200011090350.eA93ogI81463@silvia.hip.berkeley.edu>; from asami@FreeBSD.ORG on Wed, Nov 08, 2000 at 07:50:21PM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, In defense of my two offender ports: 1) libjtoolbar-0.5.4_1 checking installed files pkg_delete libjtoolbar-0.5.4_1 ================================================================ deleting dependencies == phase 1 == pkg_delete JX-1.5.3_1 pkg_delete: unable to completely remove directory '/usr/X11R6/share/doc/jx' pkg_delete: unable to completely remove directory '/usr/X11R6/lib/jx/make' pkg_delete: unable to completely remove directory '/usr/X11R6/lib/jx/lib' pkg_delete: unable to completely remove directory '/usr/X11R6/lib/jx' pkg_delete: couldn't entirely delete package (perhaps the packing list is incorrectly specified?) pkg_delete XFree86-libraries-4.0.1_2 pkg_delete autoconf-2.13 pkg_delete bison-1.28 pkg_delete gettext-0.10.35 pkg_delete gmake-3.79.1 pkg_delete libjtree-1.1.7_1 pkg_delete m4-1.4 pkg_delete png-1.0.8_1 ================================================================ list of extra files and directories in /usr/X11R6 extra: lib/jx The offender is directory lib/jx under /usr/X11R6. In a regular installation, libjtree-1.1.7_1 would always be removed before JX-1.5.3_1 which correctly removes /usr/X11R6/lib/jx amongst others. This is correct since all of the libj ports depend on JX-1.5.3_1 through LIB_DEPENDS. 2) libj2dplot-0.6.5 checking installed files pkg_delete libj2dplot-0.6.5 ================================================================ deleting dependencies == phase 1 == pkg_delete JX-1.5.3_1 pkg_delete: unable to completely remove directory '/usr/X11R6/share/doc/jx' pkg_delete: unable to completely remove directory '/usr/X11R6/lib/jx/make' pkg_delete: unable to completely remove directory '/usr/X11R6/lib/jx/lib' pkg_delete: unable to completely remove directory '/usr/X11R6/lib/jx' pkg_delete: couldn't entirely delete package (perhaps the packing list is incorrectly specified?) pkg_delete XFree86-libraries-4.0.1_2 pkg_delete autoconf-2.13 pkg_delete bison-1.28 pkg_delete gettext-0.10.35 pkg_delete gmake-3.79.1 pkg_delete libjparser-1.1.8 pkg_delete m4-1.4 pkg_delete png-1.0.8_1 ================================================================ list of extra files and directories in /usr/X11R6 extra: lib/jx The same explanation applies here. This is odd. Why is bento removing a port which is depended upon before remove all the others? -- Mario S F Ferreira - UnB - Brazil - "I guess this is a signature." lioux at ( freebsd dot org | linf dot unb dot br ) flames to beloved devnull@someotherworldbeloworabove.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 21: 1:20 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C223D37B479; Wed, 8 Nov 2000 21:01:18 -0800 (PST) Received: (from jkoshy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA55116; Wed, 8 Nov 2000 21:01:18 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) Date: Wed, 8 Nov 2000 21:01:18 -0800 (PST) From: Message-Id: <200011090501.VAA55116@freefall.freebsd.org> X-Mailer: exmh version 2.0.2 2/24/98 To: clemensF Cc: ports@FreeBSD.org, sprice@hiwaay.net Subject: Re: FreeBSD Port: siod-3.4 In-Reply-To: Your message of "Thu, 09 Nov 2000 02:31:03 +0100." <3A09FE57.69C04FBC@web.de> Mime-Version: 1.0 Content-Type: text/plain Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > i've fought for days to get siod to run from the source: to no avail. > have you got a working makefile for me? Please use (or study) the FreeBSD port in "$PORTSDIR/lang/siod". The tricky part, if I remember right, was that LD_LIBRARY_PATH needed to be set to "." during the bootstrap. Regards, Koshy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 8 23:34:27 2000 Delivered-To: freebsd-ports@freebsd.org Received: from tisch.mail.mindspring.net (tisch.mail.mindspring.net [207.69.200.157]) by hub.freebsd.org (Postfix) with ESMTP id D9D6637B479 for ; Wed, 8 Nov 2000 23:34:22 -0800 (PST) Received: from silvia.hip.berkeley.edu (sji-ca7-217.ix.netcom.com [209.109.235.217]) by tisch.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id CAA00093; Thu, 9 Nov 2000 02:34:16 -0500 (EST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.1/8.11.0) id eA97Y9M82592; Wed, 8 Nov 2000 23:34:09 -0800 (PST) (envelope-from asami@cs.berkeley.edu) X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: "Mario Sergio Fujikawa Ferreira" Cc: ports@freebsd.org Subject: Re: share/locale References: <200011090350.eA93ogI81463@silvia.hip.berkeley.edu> <20001109025034.A312@Fedaykin.here> From: asami@freebsd.org (Satoshi - Ports Wraith - Asami) MIME-Version: 1.0 (generated by SEMI 1.13.7 - "Awazu") Content-Type: text/plain; charset=US-ASCII Date: 08 Nov 2000 23:34:05 -0800 In-Reply-To: <20001109025034.A312@Fedaykin.here> (Mario Sergio Fujikawa Ferreira's message of "Thu, 9 Nov 2000 02:50:34 -0200") Message-ID: Lines: 13 User-Agent: T-gnus/6.14.5 (based on Gnus v5.8.7) (revision 06) SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) Emacs/20.7 (i386--freebsd) MULE/4.0 =?ISO-2022-JP?B?KBskQjJWMWMbKEIp?= Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: "Mario Sergio Fujikawa Ferreira" * In defense of my two offender ports: * This is odd. Why is bento removing a port which * is depended upon before remove all the others? Eek. It seems like I screwed up the PKG_IGNORE_DEPENDS part of the open-motif patch. Thanks, will investigate and fix. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 0:44: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from nevermind.kiev.ua (unknown [212.109.53.33]) by hub.freebsd.org (Postfix) with ESMTP id 31FF837B479 for ; Thu, 9 Nov 2000 00:44:00 -0800 (PST) Received: (from never@localhost) by nevermind.kiev.ua (8.11.1/8.9.3) id eA98hp450202; Thu, 9 Nov 2000 10:43:51 +0200 (EET) (envelope-from never) Date: Thu, 9 Nov 2000 10:43:51 +0200 From: Nevermind To: Cyb3rp4t Cc: ports@FreeBSD.ORG Subject: Re: FreeBSD Port: licq-0.85 Message-ID: <20001109104350.A4169@nevermind.kiev.ua> References: <000601c04919$bbf52870$be3f0518@cc92687a> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <000601c04919$bbf52870$be3f0518@cc92687a>; from cyberpat28@home.com on Tue, Nov 07, 2000 at 07:20:43PM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, Cyb3rp4t! On Tue, Nov 07, 2000 at 07:20:43PM -0500, you wrote: > hey green, new licq 1.0 is out at www.licq.com and i see its still not ported to freebsd... is a port already in development or is there some way to make it work in freebsd?? Just see log messages in Makefile,v There is some instability in licq-1.0, so it was decided to revert to 0.85 -- Alexandr P. Kovalenko http://nevermind.kiev.ua/ NEVE-RIPE To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 1: 2:21 2000 Delivered-To: freebsd-ports@freebsd.org Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.130.111.12]) by hub.freebsd.org (Postfix) with ESMTP id CF6ED37B4CF for ; Thu, 9 Nov 2000 01:02:17 -0800 (PST) Received: from [128.130.111.2] (deneb [128.130.111.2]) by vexpert.dbai.tuwien.ac.at (8.9.3/8.9.3) with ESMTP id KAA11788; Thu, 9 Nov 2000 10:02:14 +0100 (MET) Date: Thu, 9 Nov 2000 10:02:15 +0100 (CET) From: Gerald Pfeifer To: Cc: Mark Andrews Subject: Patch for Re: Wine 2000.10.26 fails to install In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Can someone please install the patch below for me? (Or do I have to open a PR?) Approved by myself. ;-) Gerald On Fri, 3 Nov 2000 marka@nominum.com wrote: > FreeBSD drugs.dv.isc.org 4.1-STABLE FreeBSD 4.1-STABLE #0: Tue Aug 29 17:42:37 EST 2000 marka@drugs.dv.isc.org:/usr/obj/usr/src/sys/DRUGS i386 > >>Description: > > "make install" failed as /usr/local/lib/wine/reg was not made prior > to calling install. > > install -c -o root -g wheel -m 555 /usr/ports/emulators/wine/work/wine-20001026 > /programs/regapi/regFixer.pl /usr/ports/emulators/wine/work/wine-20001026/progr > ams/regapi/regRestorer.pl /usr/local/lib/wine/reg > usage: install [-CcDpsv] [-f flags] [-g group] [-m mode] [-o owner] file1 file2 > install [-CcDpsv] [-f flags] [-g group] [-m mode] [-o owner] file1 ... > fileN directory > install -d [-v] [-g group] [-m mode] [-o owner] directory ... > *** Error code 64 You did not mention this, but I guess you defined NOPORTDOCS, right? ;-) I believe (and verified locally) that the following patch fixes your problem; can someone please install it for me? Gerald Index: Makefile =================================================================== RCS file: /sw/FreeBSD/CVSUP/ports/emulators/wine/Makefile,v retrieving revision 1.96 diff -u -3 -p -r1.96 Makefile --- Makefile 2000/11/02 15:05:13 1.96 +++ Makefile 2000/11/03 17:14:44 @@ -70,7 +70,6 @@ do-install: .if !defined(NOPORTDOCS) ${INSTALL_DATA} ${WRKSRC}/documentation/wine.man ${PREFIX}/man/man1/wine.1 ${INSTALL_DATA} ${WRKSRC}/documentation/wine.conf.man ${PREFIX}/man/man5/wine.conf.5 - -@${MKDIR} ${PREFIX}/lib/wine/documentation ${PREFIX}/lib/wine/reg 2>/dev/null .for i in README ANNOUNCE AUTHORS LICENSE WARRANTY documentation/psdrv.reg ${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/lib/wine/documentation .endfor @@ -81,6 +80,7 @@ do-install: .endif ${INSTALL_SCRIPT} ${WRKSRC}/tools/bug_report.pl \ ${PREFIX}/lib/wine + -@${MKDIR} ${PREFIX}/lib/wine/documentation ${PREFIX}/lib/wine/reg 2>/dev/null ${INSTALL_SCRIPT} \ ${WRKSRC}/programs/regapi/regFixer.pl \ ${WRKSRC}/programs/regapi/regRestorer.pl \ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 1:37:25 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id AE5DD37B479 for ; Thu, 9 Nov 2000 01:37:22 -0800 (PST) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id eA99bGB12167; Thu, 9 Nov 2000 04:37:16 -0500 (EST) Date: Thu, 9 Nov 2000 04:37:16 -0500 (EST) From: Trevor Johnson To: Gerald Pfeifer Cc: ports@FreeBSD.ORG Subject: Re: Patch for Re: Wine 2000.10.26 fails to install In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Gerald Pfeifer wrote: > --- Makefile 2000/11/02 15:05:13 1.96 > +++ Makefile 2000/11/03 17:14:44 > @@ -70,7 +70,6 @@ do-install: > .if !defined(NOPORTDOCS) > ${INSTALL_DATA} ${WRKSRC}/documentation/wine.man ${PREFIX}/man/man1/wine.1 > ${INSTALL_DATA} ${WRKSRC}/documentation/wine.conf.man ${PREFIX}/man/man5/wine.conf.5 > - -@${MKDIR} ${PREFIX}/lib/wine/documentation ${PREFIX}/lib/wine/reg 2>/dev/null > .for i in README ANNOUNCE AUTHORS LICENSE WARRANTY documentation/psdrv.reg > ${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/lib/wine/documentation > .endfor I made a mistake in the changes that I offered you. The Porter's Handbook implies that installation of man pages should happen regardless of the setting of NOPORTDOCS: If your software has some documentation other than the standard man and info pages that you think is useful for the user, install it under PREFIX/share/doc. This can be done, like the previous item, in the post-install target. [...] Make the installation dependent to the variable NOPORTDOCS so that users can disable it in /etc/make.conf, like this: -- Trevor Johnson http://jpj.net/~trevor/gpgkey.txt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 1:58:26 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A12B137B479; Thu, 9 Nov 2000 01:58:25 -0800 (PST) Received: (from kbyanc@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA97933; Thu, 9 Nov 2000 01:58:25 -0800 (PST) (envelope-from kbyanc@FreeBSD.org) Date: Thu, 9 Nov 2000 01:58:25 -0800 (PST) From: Message-Id: <200011090958.BAA97933@freefall.freebsd.org> To: sjr@home.net, kbyanc@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22639: Update of NQC port to 2.2.r2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update of NQC port to 2.2.r2 State-Changed-From-To: open->closed State-Changed-By: kbyanc State-Changed-When: Thu Nov 9 01:57:22 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=22639 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 4:11:36 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.i-dns.net (unknown [203.126.116.228]) by hub.freebsd.org (Postfix) with ESMTP id 37A3D37B479 for ; Thu, 9 Nov 2000 04:11:35 -0800 (PST) Received: from huiminvaio (suntec03.i-dns.net [203.126.116.237]) by mail.i-dns.net (Postfix) with SMTP id 5A0EEFFC01 for ; Thu, 9 Nov 2000 20:11:27 +0800 (SGT) Message-ID: <008101c04a45$9da52aa0$8500a8c0@huiminvaio> Reply-To: "Lim Hui Min" From: "Lim Hui Min" To: Subject: Mailman 2.0rc1 is out Date: Thu, 9 Nov 2000 20:07:22 +0800 Organization: i-DNS.net International MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org please update the mail/mailman to mailman 2.0rc1 as there is a known bug in 2.0b6. Huimin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 5:20:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BA50137B4C5 for ; Thu, 9 Nov 2000 05:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA30211; Thu, 9 Nov 2000 05:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from ringworld.oblivion.bg (pool196-tch-1.Sofia.0rbitel.net [212.95.170.196]) by hub.freebsd.org (Postfix) with SMTP id 76C7337B479 for ; Thu, 9 Nov 2000 05:14:23 -0800 (PST) Received: (qmail 16480 invoked by uid 0); 9 Nov 2000 13:14:12 -0000 Message-Id: <20001109131411.16479.qmail@ringworld.oblivion.bg> Date: 9 Nov 2000 13:14:11 -0000 From: Peter Pentchev Reply-To: Peter Pentchev To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22717: update port: mail/mailman (no MAINTAINER) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22717 >Category: ports >Synopsis: update port: mail/mailman (no MAINTAINER) >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Nov 09 05:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Peter Pentchev >Release: FreeBSD 4.2-BETA i386 >Organization: Orbitel JSCo. >Environment: current ports tree >Description: Lim Hui Min's email (Message-Id: <008101c04a45$9da52aa0$8500a8c0@huiminvaio>) to -ports today points out that there has been a security advisory about MailMan 2.0beta6, which is the version in the ports tree. Here's an update patch, which does several things: - updates the port to latest 2.0rc1; - points MASTER_SITES at SourceForge (good portlint, have a cookie); - renames the UNAME and UID vars in the port Makefile - UNAME in particular was confusing bsd.port.mk, which uses a variable of the same name to hold uname(1) output. I consider this update's priority to be medium because of the security issues about mailman; even a ports security advisory may be in order. >How-To-Repeat: read BugTraq archives ;) >Fix: diff -urN ports/mail/mailman/Makefile myports/mail/mailman/Makefile --- ports/mail/mailman/Makefile Mon Oct 9 02:54:27 2000 +++ myports/mail/mailman/Makefile Thu Nov 9 15:03:39 2000 @@ -6,10 +6,10 @@ # PORTNAME= mailman -PORTVERSION= 2.0b6 +PORTVERSION= 2.0rc1 CATEGORIES= mail -MASTER_SITES= http://download.sourceforge.net/mailman/ -DISTNAME= mailman-2.0beta6 +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR=mailman EXTRACT_SUFX= .tgz MAINTAINER= ports@FreeBSD.org @@ -21,22 +21,22 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-mail-gid=daemon --with-cgi-gid=nogroup -UNAME?= mailman -UID?= 89 +USERNAME?= mailman +USERID?= 89 MAILMANDIR?= ${PREFIX}/mailman pre-configure: # Add the username, uid, group amd gid - ${SH} ${FILESDIR}/configure.sh ${UNAME} ${UID} ${MAILMANDIR} + ${SH} ${FILESDIR}/configure.sh ${USERNAME} ${USERID} ${MAILMANDIR} # Create the dir and the correct permissions for it. ${MKDIR} ${MAILMANDIR} - ${CHOWN} ${UNAME}:${UNAME} ${MAILMANDIR} + ${CHOWN} ${USERNAME}:${USERNAME} ${MAILMANDIR} ${CHMOD} 2775 ${MAILMANDIR} post-install: - @${CHOWN} -R :${UNAME} ${MAILMANDIR} + @${CHOWN} -R :${USERNAME} ${MAILMANDIR} @echo All related binaries have been installed in ${MAILMANDIR}/bin @echo See ${WRKDIR}/INSTALL for installation instructions \(prefix == ${MAILMANDIR}\). @echo Sample entry for httpd.conf for Apache: diff -urN ports/mail/mailman/distinfo myports/mail/mailman/distinfo --- ports/mail/mailman/distinfo Mon Oct 9 02:54:27 2000 +++ myports/mail/mailman/distinfo Thu Nov 9 14:58:08 2000 @@ -1 +1 @@ -MD5 (mailman-2.0beta6.tgz) = d5eee07318664f430f998306196d7a26 +MD5 (mailman-2.0rc1.tgz) = e37da201e9109a4948cf922a42642dfa diff -urN ports/mail/mailman/pkg-plist myports/mail/mailman/pkg-plist --- ports/mail/mailman/pkg-plist Mon Oct 9 02:54:27 2000 +++ myports/mail/mailman/pkg-plist Thu Nov 9 15:00:15 2000 @@ -165,8 +165,6 @@ mailman/Mailman/pythonlib/__init__.pyc mailman/Mailman/pythonlib/cgi.py mailman/Mailman/pythonlib/cgi.pyc -mailman/Mailman/pythonlib/getpass.py -mailman/Mailman/pythonlib/getpass.pyc mailman/Mailman/pythonlib/nntplib.py mailman/Mailman/pythonlib/nntplib.pyc mailman/Mailman/pythonlib/rfc822.py >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 5:24:45 2000 Delivered-To: freebsd-ports@freebsd.org Received: from space.rede-rs.com.br (unknown [200.248.243.129]) by hub.freebsd.org (Postfix) with ESMTP id 8494D37B4C5; Thu, 9 Nov 2000 05:24:40 -0800 (PST) Received: from tom ([200.213.74.196]) by space.rede-rs.com.br (8.9.3/8.9.3) with SMTP id KAA15803; Thu, 9 Nov 2000 10:47:44 GMT Message-Id: <3.0.6.32.20001109112349.007cd410@mail.rede-rs.com.br> X-Sender: trainini@mail.rede-rs.com.br X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.6 (32) Date: Thu, 09 Nov 2000 11:23:49 -0200 To: www@FreeBSD.org, ports@FreeBSD.org From: Paulo Ricardo Trainini Subject: voice chat Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org How software can I use to implement Voice Chat Room? thank you Paulo --- Paulo Ricardo Trainini - trainini@fortnet.com.br Tel.: (51) 338.7284 FORTNET - Solu=E7=F5es para Redes de Computadores To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 7:17:20 2000 Delivered-To: freebsd-ports@freebsd.org Received: from nothing-going-on.demon.co.uk (unknown [212.136.216.175]) by hub.freebsd.org (Postfix) with ESMTP id 74BB737B4CF; Thu, 9 Nov 2000 07:17:11 -0800 (PST) Received: (from nik@localhost) by nothing-going-on.demon.co.uk (8.11.0/8.11.0) id eA9BLmN00458; Thu, 9 Nov 2000 11:21:48 GMT (envelope-from nik) Date: Thu, 9 Nov 2000 11:21:48 +0000 From: Nik Clayton To: doc@freebsd.org Cc: ports@freebsd.org Subject: Re: An opportunity for FreeBSD Message-ID: <20001109112148.A425@canyon.nothing-going-on.org> References: <20000918212800.L567@parish> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20000918212800.L567@parish>; from marko@freebsd.org on Mon, Sep 18, 2000 at 09:28:00PM +0100 Organization: FreeBSD Project Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Mark, Long quote retained for context. On Mon, Sep 18, 2000 at 09:28:00PM +0100, Mark Ovens wrote: > Some time ago Andrew Boothman produced a couple of perl scripts to > collate all the documentation for ports/packages installed on a > machine and produce an HTML index file of it. It was suggested that > this could be extended to become part of the ports/packages mechanism > so that the index was automatically updated whenever a port/package > was installed or uninstalled. This got a rather cool reception from > the ports people (after all, no-one gets excited about having even > more work to do :)). > > I recently picked up this project, partly because I think it's a good > idea, and partly because it provides a good vehicle for me to use to > learn perl(1). > > Nik Clayton told me about a similar project that was starting up: > > "There's another angle I think that's worth investigating. At the > O'Reilly docs summit a couple of months back, representatives from > the GNOME, KDE, and Linux documentation projects were all looking > at the similar problem of getting apps to register their > documentation, and also to try and provide an interface over and > above simple HTML." > > I fired off an e-mail to a couple of contacts Nik gave me, one of the > replies I got is included at the end of this mail. As you can see the > project is only just getting started and as yet no code has been > produced. Currently the webpage mentioned in the e-mail has been taken > down as they discovered that the name "Dewey" (from the Dewey-decimel > system used for cataloguing by libraries) was trade-marked. The > project is looking for a new name. > > I believe that it would be a Good Thing (TM) for FreeBSD to join this > project for several reasons: > > 1. We really should have a mechanism for indexing the docs > installed by the ports/packages. > > 2. By adopting Dewey (or whatever it becomes known as) rather > than developing our own system we will reduce the work involved > in implementation and maintenance. > > 3. It will help raise the visibility of FreeBSD in a predominately > Linux environment. > > If we get involved now, at the outset, we will have a say in the > design and development of the system (i.e. prevent it becoming overly > Linux-specific) and get FreeBSD-specifics in the base source code. As > you might expect, this is going to be GPL'd (down Brett, down boy ;)) > but I doubt that we will change that, however it would become an Open > Source project, rather than a Linux project (that FreeBSD may possibly > adopt in the future). > > As to the additional work that this will make for port maintainers if > Dewey is adopted will be considerably less than using our own system. > For larger ports whose projects support Dewey, e.g. KDE, GNOME, etc., > there should be no work at all as the meta-data will be in the source > tar-balls and for ports without the meta-data included we should be > able to automate its generation (although some hand tweaking may be > necessary). > > Furthermore, this extra work is likely to be a one-off occurrence > since document files are rarely added/removed/renamed, only the > content is changed. > > The only other areas where work will be needed is for bsd.port.mk(?) > to be modified to call Dewey as part of the install target (I expect > that Dewey will be able to determine if the port has any docs to > register). pkg_add(1) will also need modifying to do the same thing > when installing packages and pkg_delete(1) to call Dewey to > de-register the docs when a port/package is uninstalled. > > I have subscribed to the mailing list (which is rather quiet at the > moment, but should liven up once code is available) and would like to > be able to announce that FreeBSD is "officially" supporting the > project (which means a committment to adopting Dewey for the > ports/packages when it reaches production quality). I am willing to > act as co-ordinator for this and will attempt to do most of the work. > > I also intend to lobby the {Net,Open}BSD docs people to support Dewey. > If all three projects get involved it will, IMHO, give *BSD a big > presence (and influence) in a Linux project. Any news on this? N -- Internet connection, $19.95 a month. Computer, $799.95. Modem, $149.95. Telephone line, $24.95 a month. Software, free. USENET transmission, hundreds if not thousands of dollars. Thinking before posting, priceless. Somethings in life you can't buy. For everything else, there's MasterCard. -- Graham Reed, in the Scary Devil Monastery To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 7:25:49 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 063CB37B479; Thu, 9 Nov 2000 07:25:48 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA48699; Thu, 9 Nov 2000 07:25:48 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Date: Thu, 9 Nov 2000 07:25:48 -0800 (PST) From: Message-Id: <200011091525.HAA48699@freefall.freebsd.org> To: sk-ports@vegamuse.org, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22703: sysutils/wminet: master sites no longer carry tarball Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: sysutils/wminet: master sites no longer carry tarball State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Thu Nov 9 07:25:16 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22703 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 8: 4: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.hiwaay.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (Postfix) with ESMTP id 266E637B4C5; Thu, 9 Nov 2000 08:04:04 -0800 (PST) Received: from bonsai.knology.net (user-24-214-88-8.knology.net [24.214.88.8]) by mail.hiwaay.net (8.11.0/8.11.0) with ESMTP id eA9G40704612; Thu, 9 Nov 2000 10:04:01 -0600 (CST) Received: (from steve@localhost) by bonsai.knology.net (8.11.0/8.9.3) id eA9G40b68793; Thu, 9 Nov 2000 10:04:00 -0600 (CST) (envelope-from steve) Date: Thu, 9 Nov 2000 10:03:55 -0600 From: Steve Price To: developers@freebsd.org Cc: freebsd-ports@freebsd.org Subject: MASTER_SITE_LOCAL vs. people.FreeBSD.org Message-ID: <20001109100355.K62344@bonsai.knology.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org A recent commit reminded me of an effort by David O'Brien to reduce the HTTP traffic on freefall. We shouldn't be hosting distfiles for ports with MASTER_SITES like this: MASTERS_SITES= http://people.FreeBSD.org/~steve Instead we should be using: MASTERS_SITES= ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR= steve The best I can I tell there aren't many left but at least the following ports need to be tweaked. devel/codemedic graphics/fxtv japanese/rogue_s lang/smalleiffel-devel mail/cclient-maildir misc/uk-phone misc/vbidecode net/yaz textproc/tkdiff www/mod_zap If you don't know how to do this either see my recent message about the wminet port, search for David O'Brien's original post, or contact me off-list and I'll help out. Thanks. -steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 8:16:42 2000 Delivered-To: freebsd-ports@freebsd.org Received: from imediasolutions.net (ns1.imediasolutions.net [64.6.64.109]) by hub.freebsd.org (Postfix) with ESMTP id C6EAC37B4C5 for ; Thu, 9 Nov 2000 08:16:31 -0800 (PST) Received: from localhost (manjoine@localhost) by imediasolutions.net (8.9.3/8.9.3) with SMTP id KAA44301 for ; Thu, 9 Nov 2000 10:16:09 -0600 (CST) Date: Thu, 9 Nov 2000 10:16:09 -0600 (CST) From: Chris Manjoine To: ports@FreeBSD.org Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org looks like the install of apache-jserve is broken I have tried everything from editing the configure.in the aclocal.m4 the acinclude.m4 and checking the grep function for the GNU make. Can someone please help the maintainer is not available? This is the result of the port install Configuring ApacheJServ/1.1.2 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... found checking for working autoconf... found checking for working automake... found checking for working autoheader... found checking for working makeinfo... found checking host system type... i386--freebsd4.1.1 checking build system type... i386--freebsd4.1.1 checking for ranlib... (cached) ranlib checking for gcc... (cached) gcc checking whether the C compiler (gcc -O -pipe ) works... yes checking whether the C compiler (gcc -O -pipe ) is a cross-compiler... no checking whether we are using GNU C... (cached) yes checking whether gcc accepts -g... (cached) yes checking for ld used by GCC... (cached) /usr/libexec/elf/ld checking if the linker (/usr/libexec/elf/ld) is GNU ld... (cached) yes checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking whether ln -s works... (cached) yes updating cache ./config.cache loading cache ./config.cache within ltconfig checking for object suffix... o checking for executable suffix... (cached) no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc supports -c -o file.o... yes checking if gcc supports -c -o file.lo... yes checking if gcc supports -fno-rtti -fno-exceptions ... yes checking if gcc static flag -static works... -static checking if the linker (/usr/libexec/elf/ld) is GNU ld... yes checking whether the linker (/usr/libexec/elf/ld) supports shared libraries... yes checking command to parse /usr/bin/nm -B output... ok checking how to hardcode library paths into programs... immediate checking for /usr/libexec/elf/ld option to reload object files... -r checking dynamic linker characteristics... freebsd4.1.1 ld.so checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for objdir... .libs creating libtool updating cache ./config.cache loading cache ./config.cache checking whether gmake sets ${MAKE}... (cached) yes checking for a BSD compatible install... /usr/bin/install -c -o root -g wheel checking whether ln -s works... (cached) yes checking for gcc... (cached) gcc checking whether the C compiler (gcc -O -pipe ) works... yes checking whether the C compiler (gcc -O -pipe ) is a cross-compiler... no checking whether we are using GNU C... (cached) yes checking whether gcc accepts -g... (cached) yes checking for echo... /bin/echo checking for find... /usr/bin/find checking for sed... /usr/bin/sed checking for test... /bin/test checking for rm... /bin/rm checking for head... /usr/bin/head checking for tr... /usr/bin/tr checking for grep... /usr/bin/grep checking for cut... /usr/bin/cut checking for touch... /usr/bin/touch checking for cat... /bin/cat checking for cp... /bin/cp checking for make... /usr/bin/make checking for chmod... /bin/chmod checking for GNU make... configure: error: Found: /usr/bin/make GNU make is required and was not found. If GNU make is not installed, please install it. www.gnu.org. If GNU make is installed, please adjust your PATH to make sure that GNU make is found before any other version of make that is installed on your system. rm config.cache and then re-run configure again. ===> Script "configure" failed: here are the contents of "config.log" This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. configure:784: checking for a BSD compatible install configure:837: checking whether build environment is sane configure:894: checking whether gmake sets ${MAKE} configure:940: checking for working aclocal configure:953: checking for working autoconf configure:966: checking for working automake configure:979: checking for working autoheader configure:992: checking for working makeinfo configure:1083: checking host system type configure:1104: checking build system type configure:1124: checking for ranlib configure:1154: checking for gcc configure:1267: checking whether the C compiler (gcc -O -pipe ) works configure:1283: gcc -o conftest -O -pipe conftest.c 1>&5 configure:1309: checking whether the C compiler (gcc -O -pipe ) is a cross-compiler configure:1314: checking whether we are using GNU C configure:1342: checking whether gcc accepts -g configure:1385: checking for ld used by GCC configure:1448: checking if the linker (/usr/libexec/elf/ld) is GNU ld configure:1464: checking for BSD-compatible nm configure:1501: checking whether ln -s works ltconfig:603: checking for object suffix ltconfig:604: gcc -c -O -pipe conftest.c 1>&5 ltconfig:776: checking if gcc PIC flag -fPIC works ltconfig:777: gcc -c -O -pipe -fPIC -DPIC conftest.c 1>&5 ltconfig:829: checking if gcc supports -c -o file.o ltconfig:830: gcc -c -O -pipe -o out/conftest2.o conftest.c 1>&5 ltconfig:862: checking if gcc supports -c -o file.lo ltconfig:863: gcc -c -O -pipe -c -o conftest.lo conftest.c 1>&5 ltconfig:914: checking if gcc supports -fno-rtti -fno-exceptions ltconfig:915: gcc -c -O -pipe -fno-rtti -fno-exceptions -c conftest.c conftest.c 1>&5 ltconfig:958: checking if gcc static flag -static works ltconfig:959: gcc -o conftest -O -pipe -static conftest.c 1>&5 GNU ld version 2.10.0 (with BFD 2.10.0) ltconfig:1635: checking if global_symbol_pipe works ltconfig:1636: gcc -c -O -pipe conftest.c 1>&5 ltconfig:1639: eval "/usr/bin/nm -B conftest.o | sed -n -e 's/^.*[ ]\([ABCDGISTW]\)[ ][ ]*\(\)\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2\3 \3/p' > conftest.nm" ltconfig:1691: gcc -o conftest -O -pipe -fno-builtin -fno-rtti -fno-exceptions conftest.c conftstm.o 1>&5 configure:1685: checking whether gmake sets ${MAKE} configure:1724: checking for a BSD compatible install configure:1777: checking whether ln -s works configure:1800: checking for gcc configure:1913: checking whether the C compiler (gcc -O -pipe ) works configure:1929: gcc -o conftest -O -pipe conftest.c 1>&5 configure:1955: checking whether the C compiler (gcc -O -pipe ) is a cross-compiler configure:1960: checking whether we are using GNU C configure:1988: checking whether gcc accepts -g configure:2026: checking for echo configure:2061: checking for find configure:2096: checking for sed configure:2131: checking for test configure:2166: checking for rm configure:2201: checking for head configure:2236: checking for tr configure:2271: checking for grep configure:2306: checking for cut configure:2341: checking for touch configure:2376: checking for cat configure:2411: checking for cp configure:2446: checking for make configure:2481: checking for chmod configure:2517: checking for GNU make (end of "config.log") *** Error code 1 Stop in /usr/ports/www/apache-jserv. *** Error code 1 Stop in /usr/ports/www/apache-jserv. *** Error code 1 Stop in /usr/ports/www/apache-jserv. *** Error code 1 Stop in /usr/ports/www/apache-jserv. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 8:24:52 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.hiwaay.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (Postfix) with ESMTP id D4A1F37B479 for ; Thu, 9 Nov 2000 08:24:49 -0800 (PST) Received: from bonsai.knology.net (user-24-214-88-8.knology.net [24.214.88.8]) by mail.hiwaay.net (8.11.0/8.11.0) with ESMTP id eA9GOg712189; Thu, 9 Nov 2000 10:24:42 -0600 (CST) Received: (from steve@localhost) by bonsai.knology.net (8.11.0/8.9.3) id eA9GOfD69069; Thu, 9 Nov 2000 10:24:41 -0600 (CST) (envelope-from steve) Date: Thu, 9 Nov 2000 10:24:36 -0600 From: Steve Price To: Chris Manjoine Cc: ports@FreeBSD.ORG Subject: Re: your mail Message-ID: <20001109102436.M62344@bonsai.knology.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from manjoine@imediasolutions.net on Thu, Nov 09, 2000 at 10:16:09AM -0600 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Nov 09, 2000 at 10:16:09AM -0600, Chris Manjoine wrote: # looks like the install of apache-jserve is broken I have tried everything # from editing the configure.in the aclocal.m4 the acinclude.m4 and checking # the grep function for the GNU make. # # Can someone please help the maintainer is not available? # # This is the result of the port install # [snip] # checking for GNU make... configure: error: # Found: /usr/bin/make # GNU make is required and was not found. If GNU make is not installed, # please install it. www.gnu.org. If GNU make is installed, please adjust # your PATH to make sure that GNU make is found before any other version # of make that is installed on your system. rm config.cache and then # re-run configure again. [snip] Do you have the devel/gmake port installed? From the looks of it you don't. Either that or you don't have /usr/local (read LOCALBASE) in your PATH. If you have gmake installed can you send us the output of the following commands? pkg_info -L /var/db/pkg/gmake* which gmake file `which gmake` -steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 8:24:57 2000 Delivered-To: freebsd-ports@freebsd.org Received: from uswgco35.uswest.com (uswgco35.uswest.com [199.168.32.124]) by hub.freebsd.org (Postfix) with ESMTP id 27A9A37B479 for ; Thu, 9 Nov 2000 08:24:56 -0800 (PST) Received: from egate-co4.uswc.uswest.com (egate-co4.uswc.uswest.com [151.116.25.51]) by uswgco35.uswest.com (8.10.0/8.10.0) with ESMTP id eA9GOoL12879 for ; Thu, 9 Nov 2000 09:24:51 -0700 (MST) Received: from kc0dxw-2.uswc.uswest.com (localhost [127.0.0.1]) by egate-co4.uswc.uswest.com (8.10.0/8.10.0) with ESMTP id eA9GOoV06020 for ; Thu, 9 Nov 2000 09:24:50 -0700 (MST) Received: by kc0dxw-2.uswc.uswest.com (Postfix, from userid 1002) id ADA6A2D1; Thu, 9 Nov 2000 09:24:49 -0700 (MST) Date: Thu, 9 Nov 2000 09:24:49 -0700 From: Matt Meola To: ports@freebsd.org Subject: mail/evolution menubar? Message-ID: <20001109092449.E38925@kc0dxw-2.uswc.uswest.com> Mail-Followup-To: ports@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-URL: http://www.qsl.net/kc0dxw X-OS: FreeBSD 4.1.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Has anyone tried to run evolution 0.6? It comes up for me, and seems to function fine, except that the menubar is gone -- I can't delete messages, etc. Anyone have any ideas? -- Matt Meola To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 8:32:58 2000 Delivered-To: freebsd-ports@freebsd.org Received: from vega.uli.it (vega.uli.it [62.212.0.2]) by hub.freebsd.org (Postfix) with ESMTP id 5CC2137B479 for ; Thu, 9 Nov 2000 08:32:56 -0800 (PST) Received: from uli.it (ippp10.mi.uli.it [62.212.5.70]) by vega.uli.it (Postfix) with ESMTP id 27A723B005 for ; Thu, 9 Nov 2000 17:32:55 +0100 (CET) Message-ID: <3A0AD1BD.B1EBAE0A@uli.it> Date: Thu, 09 Nov 2000 17:33:01 +0100 From: Jimmy Olgeni X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.16-22 i686) X-Accept-Language: en MIME-Version: 1.0 To: ports@freebsd.org Subject: nessus maintainership Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello people, I would like to take over nessus maintainership, since it's back to ports@ now (nessus,nessus-libnasl nessus-libraries, nessus-plugins). bye, Jimmy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 8:40: 0 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (ns.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 4704637B479 for ; Thu, 9 Nov 2000 08:39:43 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id eA9HfU401458; Thu, 9 Nov 2000 19:41:32 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id eA9GdZH27905; Thu, 9 Nov 2000 18:39:35 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A0AD345.2909C32@FreeBSD.org> Date: Thu, 09 Nov 2000 18:39:33 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.76 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Jimmy Olgeni Cc: ports@FreeBSD.org Subject: Re: nessus maintainership References: <3A0AD1BD.B1EBAE0A@uli.it> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Jimmy Olgeni wrote: > Hello people, > > I would like to take over nessus maintainership, > since it's back to ports@ now (nessus,nessus-libnasl > nessus-libraries, nessus-plugins). Done. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 8:40: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 92B9C37B4FE for ; Thu, 9 Nov 2000 08:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA59943; Thu, 9 Nov 2000 08:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id D1DBC37B479; Thu, 9 Nov 2000 08:32:09 -0800 (PST) Message-Id: <20001109163209.D1DBC37B479@hub.freebsd.org> Date: Thu, 9 Nov 2000 08:32:09 -0800 (PST) From: B.Candler@pobox.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/22721: libldap clash between openldap and ldapsdk/perldap ports Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22721 >Category: ports >Synopsis: libldap clash between openldap and ldapsdk/perldap ports >Confidential: no >Severity: critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Nov 09 08:40:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Brian Candler >Release: FreeBSD-4.1 >Organization: >Environment: >Description: When you have both openldap and perldap installed, you end up with two different and incompatible libldap's. As a result, perldap fails because it is using the wrong one. >How-To-Repeat: Install the following ports: ldapsdk-1998.12.31 Mozilla LDAP sdk openldap-1.2.11 Open source LDAP client and server software perldap-1.4 Perl interface to LDAP Now run this test program: #!/usr/bin/perl use Mozilla::LDAP::Conn; exit; gives the following error: /usr/libexec/ld-elf.so.1: /usr/local/lib/perl5/site_perl/5.005/i386-freebsd/auto/Mozilla/LDAP/API/API.so: Undefined symbol "ldap_set_option" unless you run it as LD_LIBRARY_PATH=/usr/local/mozilla/directory/lib ./test.pl Also see: # ldconfig -r | grep ldap 108:-lldap.1 => /usr/local/lib/libldap.so.1 237:-lldap.1 => /usr/local/mozilla/directory/lib/libldap.so.1 >Fix: Erm, statically link perldap against ldapsdk? Or modify perldap to use openldap's libraries instead? Both are hacks. Better to rename one of the libldap's to something else. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 9:21:54 2000 Delivered-To: freebsd-ports@freebsd.org Received: from smtp1.libero.it (smtp1.libero.it [193.70.192.51]) by hub.freebsd.org (Postfix) with ESMTP id A5C6C37B479 for ; Thu, 9 Nov 2000 09:21:52 -0800 (PST) Received: from darkstar.my.net (151.21.202.63) by smtp1.libero.it; 9 Nov 2000 18:21:50 +0100 Received: by darkstar.my.net (Postfix, from userid 1001) id 1E4F01315A; Thu, 9 Nov 2000 18:20:06 +0100 (CET) Date: Thu, 9 Nov 2000 18:20:06 +0100 From: Max To: freebsd-ports@FreeBSD.org Subject: Problem with cdda2mp3.gogo script in ports/audio/gogo Message-ID: <20001109182006.A11650@darkstar.my.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I install gogo-2.36 but the script cdda2mp3.gogo don't work. I modify it with 0,3,0 for my cdrom but after the command "cdda2mp3.gogo z 1" I obtain a new bash prompt without any error message ( and without any mp3 file). I tried to edit the cdda2mp3.lnx (it is for linux) that is in contrib with 0,3,0 and /dev/cd0a instead /dev/scd0 and it work (perhaps no in the right mode, the screen was full of advance message but at the end I obtain a good mp3 file). Anyone knows why the cdda2mp3.gogo aka cdda2mp3.bsd file don't work? Regards Max To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 9:30: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A294F37B479 for ; Thu, 9 Nov 2000 09:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA67600; Thu, 9 Nov 2000 09:30:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Thu, 9 Nov 2000 09:30:02 -0800 (PST) Message-Id: <200011091730.JAA67600@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Brian Candler Subject: Re: ports/22721: libldap clash between openldap and ldapsdk/perldap ports Reply-To: Brian Candler Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/22721; it has been noted by GNATS. From: Brian Candler To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/22721: libldap clash between openldap and ldapsdk/perldap ports Date: Thu, 9 Nov 2000 17:21:08 +0000 ... and liblber as well To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 9:54:48 2000 Delivered-To: freebsd-ports@freebsd.org Received: from abowhill.lightrealm.com (nat-0-37.lightrealm.net [216.122.0.37]) by hub.freebsd.org (Postfix) with ESMTP id 3528337B479 for ; Thu, 9 Nov 2000 09:54:43 -0800 (PST) Received: from vservers.com (localhost [127.0.0.1]) by abowhill.lightrealm.com (8.11.1/8.11.1) with ESMTP id eA9HsK056443; Thu, 9 Nov 2000 09:54:20 -0800 (PST) (envelope-from abowhill@vservers.com) Message-ID: <3A0AE4CC.9C9813FC@vservers.com> Date: Thu, 09 Nov 2000 09:54:20 -0800 From: Charlie Root X-Mailer: Mozilla 4.73 [en] (X11; I; FreeBSD 4.2-BETA i386) X-Accept-Language: en MIME-Version: 1.0 To: Chris Manjoine Cc: ports@FreeBSD.ORG Subject: Re: apache-jserv References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Chris Manjoine wrote: > looks like the install of apache-jserve is broken I have tried everything > from editing the configure.in the aclocal.m4 the acinclude.m4 and checking > the grep function for the GNU make. > > Can someone please help the maintainer is not available? > > This is the result of the port install > > Configuring ApacheJServ/1.1.2 > 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... found > checking for working autoconf... found > checking for working automake... found > checking for working autoheader... found > checking for working makeinfo... found > checking host system type... i386--freebsd4.1.1 > checking build system type... i386--freebsd4.1.1 > checking for ranlib... (cached) ranlib > checking for gcc... (cached) gcc > checking whether the C compiler (gcc -O -pipe ) works... yes > checking whether the C compiler (gcc -O -pipe ) is a cross-compiler... no > checking whether we are using GNU C... (cached) yes > checking whether gcc accepts -g... (cached) yes > checking for ld used by GCC... (cached) /usr/libexec/elf/ld > checking if the linker (/usr/libexec/elf/ld) is GNU ld... (cached) yes > checking for BSD-compatible nm... (cached) /usr/bin/nm -B > checking whether ln -s works... (cached) yes > updating cache ./config.cache > loading cache ./config.cache within ltconfig > checking for object suffix... o > checking for executable suffix... (cached) no > checking for gcc option to produce PIC... -fPIC > checking if gcc PIC flag -fPIC works... yes > checking if gcc supports -c -o file.o... yes > checking if gcc supports -c -o file.lo... yes > checking if gcc supports -fno-rtti -fno-exceptions ... yes > checking if gcc static flag -static works... -static > checking if the linker (/usr/libexec/elf/ld) is GNU ld... yes > checking whether the linker (/usr/libexec/elf/ld) supports shared > libraries... yes > checking command to parse /usr/bin/nm -B output... ok > checking how to hardcode library paths into programs... immediate > checking for /usr/libexec/elf/ld option to reload object files... -r > checking dynamic linker characteristics... freebsd4.1.1 ld.so > checking if libtool supports shared libraries... yes > checking whether to build shared libraries... yes > checking whether to build static libraries... no > checking for objdir... .libs > creating libtool > updating cache ./config.cache > loading cache ./config.cache > checking whether gmake sets ${MAKE}... (cached) yes > checking for a BSD compatible install... /usr/bin/install -c -o root -g > wheel > checking whether ln -s works... (cached) yes > checking for gcc... (cached) gcc > checking whether the C compiler (gcc -O -pipe ) works... yes > checking whether the C compiler (gcc -O -pipe ) is a cross-compiler... no > checking whether we are using GNU C... (cached) yes > checking whether gcc accepts -g... (cached) yes > checking for echo... /bin/echo > checking for find... /usr/bin/find > checking for sed... /usr/bin/sed > checking for test... /bin/test > checking for rm... /bin/rm > checking for head... /usr/bin/head > checking for tr... /usr/bin/tr > checking for grep... /usr/bin/grep > checking for cut... /usr/bin/cut > checking for touch... /usr/bin/touch > checking for cat... /bin/cat > checking for cp... /bin/cp > checking for make... /usr/bin/make > checking for chmod... /bin/chmod > checking for GNU make... configure: error: > Found: /usr/bin/make > GNU make is required and was not found. If GNU make is not installed, > please install it. www.gnu.org. If GNU make is installed, please adjust > your PATH to make sure that GNU make is found before any other version > of make that is installed on your system. rm config.cache and then > re-run configure again. > ===> Script "configure" failed: here are the contents of "config.log" > This file contains any messages produced by compilers while > running configure, to aid debugging if configure makes a mistake. > > configure:784: checking for a BSD compatible install > configure:837: checking whether build environment is sane > configure:894: checking whether gmake sets ${MAKE} > configure:940: checking for working aclocal > configure:953: checking for working autoconf > configure:966: checking for working automake > configure:979: checking for working autoheader > configure:992: checking for working makeinfo > configure:1083: checking host system type > configure:1104: checking build system type > configure:1124: checking for ranlib > configure:1154: checking for gcc > configure:1267: checking whether the C compiler (gcc -O -pipe ) works > configure:1283: gcc -o conftest -O -pipe conftest.c 1>&5 > configure:1309: checking whether the C compiler (gcc -O -pipe ) is a > cross-compiler > configure:1314: checking whether we are using GNU C > configure:1342: checking whether gcc accepts -g > configure:1385: checking for ld used by GCC > configure:1448: checking if the linker (/usr/libexec/elf/ld) is GNU ld > configure:1464: checking for BSD-compatible nm > configure:1501: checking whether ln -s works > ltconfig:603: checking for object suffix > ltconfig:604: gcc -c -O -pipe conftest.c 1>&5 > ltconfig:776: checking if gcc PIC flag -fPIC works > ltconfig:777: gcc -c -O -pipe -fPIC -DPIC conftest.c 1>&5 > ltconfig:829: checking if gcc supports -c -o file.o > ltconfig:830: gcc -c -O -pipe -o out/conftest2.o conftest.c 1>&5 > ltconfig:862: checking if gcc supports -c -o file.lo > ltconfig:863: gcc -c -O -pipe -c -o conftest.lo conftest.c 1>&5 > ltconfig:914: checking if gcc supports -fno-rtti -fno-exceptions > ltconfig:915: gcc -c -O -pipe -fno-rtti -fno-exceptions -c conftest.c > conftest.c 1>&5 > ltconfig:958: checking if gcc static flag -static works > ltconfig:959: gcc -o conftest -O -pipe -static conftest.c 1>&5 > GNU ld version 2.10.0 (with BFD 2.10.0) > ltconfig:1635: checking if global_symbol_pipe works > ltconfig:1636: gcc -c -O -pipe conftest.c 1>&5 > ltconfig:1639: eval "/usr/bin/nm -B conftest.o | sed -n -e 's/^.*[ > ]\([ABCDGISTW]\)[ ][ ]*\(\)\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2\3 > \3/p' > conftest.nm" > ltconfig:1691: gcc -o conftest -O -pipe -fno-builtin -fno-rtti > -fno-exceptions conftest.c conftstm.o 1>&5 > configure:1685: checking whether gmake sets ${MAKE} > configure:1724: checking for a BSD compatible install > configure:1777: checking whether ln -s works > configure:1800: checking for gcc > configure:1913: checking whether the C compiler (gcc -O -pipe ) works > configure:1929: gcc -o conftest -O -pipe conftest.c 1>&5 > configure:1955: checking whether the C compiler (gcc -O -pipe ) is a > cross-compiler > configure:1960: checking whether we are using GNU C > configure:1988: checking whether gcc accepts -g > configure:2026: checking for echo > configure:2061: checking for find > configure:2096: checking for sed > configure:2131: checking for test > configure:2166: checking for rm > configure:2201: checking for head > configure:2236: checking for tr > configure:2271: checking for grep > configure:2306: checking for cut > configure:2341: checking for touch > configure:2376: checking for cat > configure:2411: checking for cp > configure:2446: checking for make > configure:2481: checking for chmod > configure:2517: checking for GNU make > (end of "config.log") > *** Error code 1 > > Stop in /usr/ports/www/apache-jserv. > *** Error code 1 > > Stop in /usr/ports/www/apache-jserv. > *** Error code 1 > > Stop in /usr/ports/www/apache-jserv. > *** Error code 1 > > Stop in /usr/ports/www/apache-jserv. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message This is a configure problem. I have submitted a patch which fixes it. Check it out at: http://www.FreeBSD.org/cgi/query-pr.cgi?pr=22693 --Allan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 11:10: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 467DF37B479 for ; Thu, 9 Nov 2000 11:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA80811; Thu, 9 Nov 2000 11:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Thu, 9 Nov 2000 11:10:02 -0800 (PST) Message-Id: <200011091910.LAA80811@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Scot W. Hetzel" Subject: Re: ports/22704: cyrus and cyrus-sasl both install pwcheck startup scripts, only cyrus-sasl installs pwcheck Reply-To: "Scot W. Hetzel" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/22704; it has been noted by GNATS. From: "Scot W. Hetzel" To: "Jacques A. Vidrine" , Cc: Subject: Re: ports/22704: cyrus and cyrus-sasl both install pwcheck startup scripts, only cyrus-sasl installs pwcheck Date: Thu, 9 Nov 2000 13:03:54 -0600 From: "Jacques A. Vidrine" > From: "Jacques A. Vidrine" > On Wed, Nov 08, 2000 at 05:18:31PM -0500, ecronin@eecs.umich.edu wrote: > > >Description: > > > > The mail/cyrus and security/cyrus-sasl ports both install scripts in > > /usr/local/etc/rc.d (cyrus.sh and pwcheck.sh respectively) which start the > > pwcheck program at startup. > > I want to add that these scripts should be installed as e.g. > `pwcheck.sh.sample', so that (1) local customizations are not overridden > and (2) a new service isn't started the next time one boots. > > This is especially true for cyrus-sasl ... other packages may depend on > libsasl. You don't need to worry about customizations to the pwcheck.sh as there is nothing to configure in that script, its only purpose is to start the pwcheck daemon, no options are passed. You can always do a "chmod -x /usr/local/etc/rc.d/pwcheck.sh" so it doesn't execute on the next boot. I have submitted a patch to the maintainer and PR 22465 (11/1) that removes cyrus.sh from mail/cyrus as it is no longer required by this port. Could one of the commiters have a look at PR 22465 and commit it, as I haven't seen a response from stb@FreeBSD.ORG on this problem. Scot To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 11:12:41 2000 Delivered-To: freebsd-ports@freebsd.org Received: from gw.nectar.com (gw.nectar.com [208.42.49.153]) by hub.freebsd.org (Postfix) with ESMTP id EECEB37B479; Thu, 9 Nov 2000 11:12:37 -0800 (PST) Received: from hamlet.nectar.com (hamlet.nectar.com [10.0.1.102]) by gw.nectar.com (Postfix) with ESMTP id 2EFD8193DF; Thu, 9 Nov 2000 13:12:35 -0600 (CST) Received: (from nectar@localhost) by hamlet.nectar.com (8.11.1/8.9.3) id eA9JCZa14291; Thu, 9 Nov 2000 13:12:35 -0600 (CST) (envelope-from nectar@spawn.nectar.com) Date: Thu, 9 Nov 2000 13:12:34 -0600 From: "Jacques A. Vidrine" To: "Scot W. Hetzel" Cc: stb@FreeBSD.ORG, freebsd-ports@freebsd.org, FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/22704: cyrus and cyrus-sasl both install pwcheck startup scripts, only cyrus-sasl installs pwcheck Message-ID: <20001109131234.A90684@hamlet.nectar.com> Mail-Followup-To: "Jacques A. Vidrine" , "Scot W. Hetzel" , stb@FreeBSD.ORG, freebsd-ports@freebsd.org, FreeBSD-gnats-submit@FreeBSD.ORG References: <200011082320.PAA10251@freefall.freebsd.org> <028301c04a7f$cff955a0$7d7885c0@genroco.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <028301c04a7f$cff955a0$7d7885c0@genroco.com>; from hetzels@westbend.net on Thu, Nov 09, 2000 at 01:03:54PM -0600 X-Url: http://www.nectar.com/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Nov 09, 2000 at 01:03:54PM -0600, Scot W. Hetzel wrote: > You don't need to worry about customizations to the pwcheck.sh as there is > nothing to configure in that script, its only purpose is to start the > pwcheck daemon, no options are passed. I disagree ... I often have changes to make such to scripts locally. > You can always do a "chmod -x /usr/local/etc/rc.d/pwcheck.sh" so it doesn't > execute on the next boot. That's backwards. We ought to have a guideline in the Porter's handbook about this. Actually, I believe that section 15.18 applies here. > I have submitted a patch to the maintainer and PR 22465 (11/1) that removes > cyrus.sh from mail/cyrus as it is no longer required by this port. Could > one of the commiters have a look at PR 22465 and commit it, as I haven't > seen a response from stb@FreeBSD.ORG on this problem. This is also backwards. cyrus-sasl does not need to start pwcheck -- cyrus-imap does. -- Jacques Vidrine / n@nectar.com / jvidrine@verio.net / nectar@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 11:20: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C898E37B479 for ; Thu, 9 Nov 2000 11:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA81893; Thu, 9 Nov 2000 11:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Thu, 9 Nov 2000 11:20:02 -0800 (PST) Message-Id: <200011091920.LAA81893@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Jacques A. Vidrine" Subject: Re: ports/22704: cyrus and cyrus-sasl both install pwcheck startup scripts, only cyrus-sasl installs pwcheck Reply-To: "Jacques A. Vidrine" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/22704; it has been noted by GNATS. From: "Jacques A. Vidrine" To: "Scot W. Hetzel" Cc: stb@FreeBSD.ORG, freebsd-ports@freebsd.org, FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/22704: cyrus and cyrus-sasl both install pwcheck startup scripts, only cyrus-sasl installs pwcheck Date: Thu, 9 Nov 2000 13:12:34 -0600 On Thu, Nov 09, 2000 at 01:03:54PM -0600, Scot W. Hetzel wrote: > You don't need to worry about customizations to the pwcheck.sh as there is > nothing to configure in that script, its only purpose is to start the > pwcheck daemon, no options are passed. I disagree ... I often have changes to make such to scripts locally. > You can always do a "chmod -x /usr/local/etc/rc.d/pwcheck.sh" so it doesn't > execute on the next boot. That's backwards. We ought to have a guideline in the Porter's handbook about this. Actually, I believe that section 15.18 applies here. > I have submitted a patch to the maintainer and PR 22465 (11/1) that removes > cyrus.sh from mail/cyrus as it is no longer required by this port. Could > one of the commiters have a look at PR 22465 and commit it, as I haven't > seen a response from stb@FreeBSD.ORG on this problem. This is also backwards. cyrus-sasl does not need to start pwcheck -- cyrus-imap does. -- Jacques Vidrine / n@nectar.com / jvidrine@verio.net / nectar@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 13: 0: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8706237B479 for ; Thu, 9 Nov 2000 13:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA95434; Thu, 9 Nov 2000 13:00:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Thu, 9 Nov 2000 13:00:03 -0800 (PST) Message-Id: <200011092100.NAA95434@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Scot W. Hetzel" Subject: Re: ports/22704: cyrus and cyrus-sasl both install pwcheck startup scripts, only cyrus-sasl installs pwcheck Reply-To: "Scot W. Hetzel" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/22704; it has been noted by GNATS. From: "Scot W. Hetzel" To: "Jacques A. Vidrine" Cc: , Subject: Re: ports/22704: cyrus and cyrus-sasl both install pwcheck startup scripts, only cyrus-sasl installs pwcheck Date: Thu, 9 Nov 2000 14:56:44 -0600 From: "Jacques A. Vidrine" > On Thu, Nov 09, 2000 at 01:03:54PM -0600, Scot W. Hetzel wrote: > > You don't need to worry about customizations to the pwcheck.sh as there is > > nothing to configure in that script, its only purpose is to start the > > pwcheck daemon, no options are passed. > > I disagree ... I often have changes to make such to scripts locally. > What local changes do you need to make to pwcheck.sh? > > You can always do a "chmod -x /usr/local/etc/rc.d/pwcheck.sh" so it doesn't > > execute on the next boot. > > That's backwards. We ought to have a guideline in the Porter's handbook > about this. Actually, I believe that section 15.18 applies here. > No, it doesn't apply as pwcheck.sh is not a configuration file. > > I have submitted a patch to the maintainer and PR 22465 (11/1) that removes > > cyrus.sh from mail/cyrus as it is no longer required by this port. Could > > one of the commiters have a look at PR 22465 and commit it, as I haven't > > seen a response from stb@FreeBSD.ORG on this problem. > > This is also backwards. cyrus-sasl does not need to start pwcheck -- > cyrus-imap does. No this is not backwards. Other software require the pwcheck daemon to be running, so that they can use the SASL library for authentication (sendmail, and postfix for AUTH support in these mail servers). Scot To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 13:26:49 2000 Delivered-To: freebsd-ports@freebsd.org Received: from gw.nectar.com (gw.nectar.com [208.42.49.153]) by hub.freebsd.org (Postfix) with ESMTP id 0714B37B479; Thu, 9 Nov 2000 13:26:46 -0800 (PST) Received: from hamlet.nectar.com (hamlet.nectar.com [10.0.1.102]) by gw.nectar.com (Postfix) with ESMTP id 92A21193DF; Thu, 9 Nov 2000 15:26:42 -0600 (CST) Received: (from nectar@localhost) by hamlet.nectar.com (8.11.1/8.9.3) id eA9LQg225621; Thu, 9 Nov 2000 15:26:42 -0600 (CST) (envelope-from nectar@spawn.nectar.com) Date: Thu, 9 Nov 2000 15:26:42 -0600 From: "Jacques A. Vidrine" To: "Scot W. Hetzel" Cc: stb@FreeBSD.ORG, freebsd-ports@freebsd.org, FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/22704: cyrus and cyrus-sasl both install pwcheck startup scripts, only cyrus-sasl installs pwcheck Message-ID: <20001109152642.A25378@hamlet.nectar.com> Mail-Followup-To: "Jacques A. Vidrine" , "Scot W. Hetzel" , stb@FreeBSD.ORG, freebsd-ports@freebsd.org, FreeBSD-gnats-submit@FreeBSD.ORG References: <200011082320.PAA10251@freefall.freebsd.org> <028301c04a7f$cff955a0$7d7885c0@genroco.com> <20001109131234.A90684@hamlet.nectar.com> <02a001c04a8f$92a8f920$7d7885c0@genroco.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <02a001c04a8f$92a8f920$7d7885c0@genroco.com>; from hetzels@westbend.net on Thu, Nov 09, 2000 at 02:56:44PM -0600 X-Url: http://www.nectar.com/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Nov 09, 2000 at 02:56:44PM -0600, Scot W. Hetzel wrote: > What local changes do you need to make to pwcheck.sh? I don't use pwcheck.sh, but something I often do with such scripts is add a `restart' option. > > That's backwards. We ought to have a guideline in the Porter's handbook > > about this. Actually, I believe that section 15.18 applies here. > > > No, it doesn't apply as pwcheck.sh is not a configuration file. The philosophy is the same as for configuration files. Thus my suggestion that we need to add something to the Porter's handbook. I don't think that installing a port should automatically start some service on my machine, even if that means next reboot. > No this is not backwards. Other software require the pwcheck daemon to be > running, so that they can use the SASL library for authentication (sendmail, > and postfix for AUTH support in these mail servers). pwcheck is only useful for the PLAIN mechanism. sendmail, imap, openldap, et cetera can use the SASL library just fine without pwcheck, e.g. using GSSAPI. You are the maintainer, you do what you want. My main objection is to installing a script that starts a service [1]. Just please install that script as pwcheck.sh.sample. I don't even much care which port installs it. Cheers, -- Jacques Vidrine / n@nectar.com / jvidrine@verio.net / nectar@FreeBSD.org [1] Happily, the ports system now at least warns when a port does this. However, this warning is quite likely to get missed when a port is installed as a dependency for something (as is the case with, say, openldap2). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 13:30:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7794E37B4C5 for ; Thu, 9 Nov 2000 13:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA00296; Thu, 9 Nov 2000 13:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from mailgw2.netvision.net.il (mailgw2.netvision.net.il [194.90.1.9]) by hub.freebsd.org (Postfix) with ESMTP id CA30737B479 for ; Thu, 9 Nov 2000 13:21:18 -0800 (PST) Received: from alchemy.oven.org (RAS6-p130.hfa.netvision.net.il [62.0.150.130]) by mailgw2.netvision.net.il (8.9.3/8.9.3) with ESMTP id XAA16291 for ; Thu, 9 Nov 2000 23:21:34 +0200 (IST) Received: (from mapc@localhost) by alchemy.oven.org (8.11.1/8.11.1) id eA9LLBq97198; Thu, 9 Nov 2000 23:21:11 +0200 (IST) (envelope-from mapc) Message-Id: <200011092121.eA9LLBq97198@alchemy.oven.org> Date: Thu, 9 Nov 2000 23:21:11 +0200 (IST) From: roman@xpert.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22724: MAINTAINER UPDATE: audio/lopster Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22724 >Category: ports >Synopsis: MAINTAINER UPDATE: audio/lopster 0.9.5->0.9.6 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Nov 09 13:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Roman Shterenzon >Release: FreeBSD 4.2-BETA i386 >Organization: >Environment: >Description: * FIXED connection problem * FIXED new user problem with official servers * added ability to selected serveral transfers at a time >How-To-Repeat: >Fix: diff -ur /usr/ports/audio/lopster/Makefile lopster/Makefile --- /usr/ports/audio/lopster/Makefile Fri Nov 3 23:28:50 2000 +++ lopster/Makefile Thu Nov 9 23:12:38 2000 @@ -6,7 +6,7 @@ # PORTNAME= lopster -PORTVERSION= 0.9.5 +PORTVERSION= 0.9.6 CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff -ur /usr/ports/audio/lopster/distinfo lopster/distinfo --- /usr/ports/audio/lopster/distinfo Fri Nov 3 23:28:50 2000 +++ lopster/distinfo Thu Nov 9 23:11:49 2000 @@ -1 +1 @@ -MD5 (lopster-0.9.5.tar.gz) = 39f9263ae36d807b3a0d3947bd2a4b6b +MD5 (lopster-0.9.6.tar.gz) = 0266c76e28bf81efb50b46d4c1dc1f67 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 13:30:15 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 65B8D37B479 for ; Thu, 9 Nov 2000 13:30:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA00321; Thu, 9 Nov 2000 13:30:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Thu, 9 Nov 2000 13:30:03 -0800 (PST) Message-Id: <200011092130.NAA00321@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Jacques A. Vidrine" Subject: Re: ports/22704: cyrus and cyrus-sasl both install pwcheck startup scripts, only cyrus-sasl installs pwcheck Reply-To: "Jacques A. Vidrine" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/22704; it has been noted by GNATS. From: "Jacques A. Vidrine" To: "Scot W. Hetzel" Cc: stb@FreeBSD.ORG, freebsd-ports@freebsd.org, FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/22704: cyrus and cyrus-sasl both install pwcheck startup scripts, only cyrus-sasl installs pwcheck Date: Thu, 9 Nov 2000 15:26:42 -0600 On Thu, Nov 09, 2000 at 02:56:44PM -0600, Scot W. Hetzel wrote: > What local changes do you need to make to pwcheck.sh? I don't use pwcheck.sh, but something I often do with such scripts is add a `restart' option. > > That's backwards. We ought to have a guideline in the Porter's handbook > > about this. Actually, I believe that section 15.18 applies here. > > > No, it doesn't apply as pwcheck.sh is not a configuration file. The philosophy is the same as for configuration files. Thus my suggestion that we need to add something to the Porter's handbook. I don't think that installing a port should automatically start some service on my machine, even if that means next reboot. > No this is not backwards. Other software require the pwcheck daemon to be > running, so that they can use the SASL library for authentication (sendmail, > and postfix for AUTH support in these mail servers). pwcheck is only useful for the PLAIN mechanism. sendmail, imap, openldap, et cetera can use the SASL library just fine without pwcheck, e.g. using GSSAPI. You are the maintainer, you do what you want. My main objection is to installing a script that starts a service [1]. Just please install that script as pwcheck.sh.sample. I don't even much care which port installs it. Cheers, -- Jacques Vidrine / n@nectar.com / jvidrine@verio.net / nectar@FreeBSD.org [1] Happily, the ports system now at least warns when a port does this. However, this warning is quite likely to get missed when a port is installed as a dependency for something (as is the case with, say, openldap2). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 13:30:26 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7837B37B4D7 for ; Thu, 9 Nov 2000 13:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA00312; Thu, 9 Nov 2000 13:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from vega.uli.it (vega.uli.it [62.212.0.2]) by hub.freebsd.org (Postfix) with ESMTP id 0466437B4C5 for ; Thu, 9 Nov 2000 13:24:45 -0800 (PST) Received: from olgeni.uli.it (olgeni.uli.it [62.212.0.22]) by vega.uli.it (Postfix) with ESMTP id 5F3C23B00E for ; Thu, 9 Nov 2000 22:24:36 +0100 (CET) Message-Id: Date: Thu, 9 Nov 2000 22:24:49 +0100 (CET) From: Jimmy To: FreeBSD-gnats-submit@freebsd.org Subject: ports/22725: maintainer update: security/nessus suite 1.0.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22725 >Category: ports >Synopsis: maintainer update: security/nessus suite 1.0.6 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Nov 09 13:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jimmy Olgeni >Release: FreeBSD 4.2-BETA i386 >Organization: Colby >Environment: Built and tested on -STABLE. >Description: The following 4 patches update the nessus suite (nessus-libnasl, nessus-libraries, nessus-plugins, nessus) to version 1.0.6. nessus-libnasl: Makefile: * Change PORTVERSION to 1.0.6, add PORTREVISION. distinfo: * update checksum for nessus/libnasl-1.0.6.tar.gz nessus-libraries: Makefile: * Change PORTVERSION to 1.0.6, add PORTREVISION. distinfo: * update checksum for nessus/nessus-libraries-1.0.6.tar.gz pkg-plist: * add missing file (include/nessus/includes.h) nessus-plugins: Makefile: * Change PORTVERSION to 1.0.6, add PORTREVISION. distinfo: * update checksum for nessus/nessus-plugins-1.0.6.tar.gz pkg-plist: * sync plist with new files. * lib/nessus/reports is now created at install time, and removed with rmdir to avoid warning messages by pkg_delete, and keep reports. nessus: Makefile: * Change PORTVERSION to 1.0.6, add PORTREVISION. distinfo: * update checksum for nessus/nessus-core-1.0.6.tar.gz >How-To-Repeat: >Fix: nessus-libnasl.patch: diff -ruN nessus-libnasl.orig/Makefile nessus-libnasl/Makefile --- nessus-libnasl.orig/Makefile Thu Nov 9 20:51:50 2000 +++ nessus-libnasl/Makefile Thu Nov 9 21:55:56 2000 @@ -6,7 +6,8 @@ # PORTNAME= nessus-libnasl -PORTVERSION= 1.0.5 +PORTVERSION= 1.0.6 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= ftp://ftp.cis.fed.gov/pub/nessus/nessus-${PORTVERSION}/src/ \ ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ diff -ruN nessus-libnasl.orig/distinfo nessus-libnasl/distinfo --- nessus-libnasl.orig/distinfo Sat Oct 28 08:34:28 2000 +++ nessus-libnasl/distinfo Thu Nov 9 21:20:35 2000 @@ -1 +1 @@ -MD5 (nessus/libnasl-1.0.5.tar.gz) = cd64d77103817b562e0c4e8a77b8856e +MD5 (nessus/libnasl-1.0.6.tar.gz) = bf2663ff9704089dbf924bb167d4edc1 nessus-libraries.patch: diff -ruN nessus-libraries.orig/Makefile nessus-libraries/Makefile --- nessus-libraries.orig/Makefile Thu Nov 9 20:51:51 2000 +++ nessus-libraries/Makefile Thu Nov 9 21:56:08 2000 @@ -6,7 +6,8 @@ # PORTNAME= nessus-libraries -PORTVERSION= 1.0.5 +PORTVERSION= 1.0.6 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= ftp://ftp.cis.fed.gov/pub/nessus/nessus-${PORTVERSION}/src/ \ ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ diff -ruN nessus-libraries.orig/distinfo nessus-libraries/distinfo --- nessus-libraries.orig/distinfo Sat Oct 28 08:34:28 2000 +++ nessus-libraries/distinfo Thu Nov 9 21:18:58 2000 @@ -1 +1 @@ -MD5 (nessus/nessus-libraries-1.0.5.tar.gz) = f34c510ab6e05119b3d6cf66558adb7d +MD5 (nessus/nessus-libraries-1.0.6.tar.gz) = a216154152049118d234172f18c4d3b5 diff -ruN nessus-libraries.orig/pkg-plist nessus-libraries/pkg-plist --- nessus-libraries.orig/pkg-plist Sat Sep 9 14:51:44 2000 +++ nessus-libraries/pkg-plist Thu Nov 9 21:31:10 2000 @@ -17,6 +17,7 @@ include/nessus/pcap-namedb.h include/nessus/libnessus.h include/nessus/libvers.h +include/nessus/includes.h include/nessus/net/bpf.h @dirrm include/nessus/net @dirrm include/nessus nessus-plugins.patch: diff -ruN nessus-plugins.orig/Makefile nessus-plugins/Makefile --- nessus-plugins.orig/Makefile Thu Nov 9 20:51:51 2000 +++ nessus-plugins/Makefile Thu Nov 9 21:56:28 2000 @@ -6,7 +6,8 @@ # PORTNAME= nessus-plugins -PORTVERSION= 1.0.5 +PORTVERSION= 1.0.6 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= ftp://ftp.cis.fed.gov/pub/nessus/nessus-${PORTVERSION}/src/ \ ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ diff -ruN nessus-plugins.orig/distinfo nessus-plugins/distinfo --- nessus-plugins.orig/distinfo Sat Oct 28 08:34:28 2000 +++ nessus-plugins/distinfo Thu Nov 9 21:23:02 2000 @@ -1 +1 @@ -MD5 (nessus/nessus-plugins-1.0.5.tar.gz) = a805e3195d52353beffb74900052ddaa +MD5 (nessus/nessus-plugins-1.0.6.tar.gz) = 97e8fafd4745813fb2eaed669560ff26 diff -ruN nessus-plugins.orig/pkg-plist nessus-plugins/pkg-plist --- nessus-plugins.orig/pkg-plist Sat Oct 28 08:34:28 2000 +++ nessus-plugins/pkg-plist Thu Nov 9 21:52:18 2000 @@ -5,6 +5,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/LPRng.nasl lib/nessus/plugins/NetSphere.nasl lib/nessus/plugins/PC_anywhere.nasl lib/nessus/plugins/PGPCert_DoS.nasl @@ -13,17 +14,18 @@ lib/nessus/plugins/WebSite.nasl lib/nessus/plugins/X.nasl lib/nessus/plugins/acc.nasl -lib/nessus/plugins/accounts.nes lib/nessus/plugins/afs_version.nasl lib/nessus/plugins/aix_ftpd.nasl +lib/nessus/plugins/alcatel_adsl.nasl lib/nessus/plugins/alibaba.nasl lib/nessus/plugins/alibaba_get32.nasl -lib/nessus/plugins/alibaba_overflow.nasl lib/nessus/plugins/alibaba_pl.nasl +lib/nessus/plugins/alibaba_overflow.nasl lib/nessus/plugins/alibaba_tst.nasl lib/nessus/plugins/altavista_search.nasl lib/nessus/plugins/amanda_detect.nasl lib/nessus/plugins/an_httpd_cgis.nasl +lib/nessus/plugins/anaconda.nasl lib/nessus/plugins/analogx.nasl lib/nessus/plugins/analogx_dos.nasl lib/nessus/plugins/analogx_traversal.nasl @@ -45,7 +47,7 @@ lib/nessus/plugins/bboard.nasl lib/nessus/plugins/bftelnet.nasl lib/nessus/plugins/bigconf.nasl -lib/nessus/plugins/bind_bof.nes +lib/nessus/plugins/bind_query.nasl lib/nessus/plugins/bind_version.nasl lib/nessus/plugins/bind_vulnerable.nasl lib/nessus/plugins/bizdb1_search.nasl @@ -54,9 +56,9 @@ lib/nessus/plugins/c32.nasl lib/nessus/plugins/ca_unicenter_file_transfer_service.nasl lib/nessus/plugins/ca_unicenter_transport_service.nasl +lib/nessus/plugins/campas.nasl lib/nessus/plugins/cachemgr_cgi.nasl lib/nessus/plugins/calendar.nasl -lib/nessus/plugins/campas.nasl lib/nessus/plugins/cassandra_nntp_dos.nasl lib/nessus/plugins/cdk.nasl lib/nessus/plugins/cern_httpd_path.nasl @@ -85,13 +87,14 @@ lib/nessus/plugins/dfire_cgi.nasl lib/nessus/plugins/dmail_overflow.nasl lib/nessus/plugins/doc_browsable.nasl +lib/nessus/plugins/doc_package_browseable.nasl lib/nessus/plugins/domino.nasl lib/nessus/plugins/domino_fs_config.nasl lib/nessus/plugins/domino_http_dos.nasl lib/nessus/plugins/dragon_ftp.nasl lib/nessus/plugins/dragon_telnet.nasl -lib/nessus/plugins/dumpenv.nasl lib/nessus/plugins/echo.nasl +lib/nessus/plugins/dumpenv.nasl lib/nessus/plugins/eftp_dos.nasl lib/nessus/plugins/eicon_modem_dos.nasl lib/nessus/plugins/eserv.nasl @@ -100,12 +103,12 @@ lib/nessus/plugins/ezshopper.nasl lib/nessus/plugins/fakebo.nasl lib/nessus/plugins/faxsurvey.nasl -lib/nessus/plugins/find_service.nes lib/nessus/plugins/finger.nasl lib/nessus/plugins/finger_0.nasl lib/nessus/plugins/finger_backdoor.nasl lib/nessus/plugins/finger_cgi.nasl lib/nessus/plugins/finger_dot.nasl +lib/nessus/plugins/finger_freebsd.nasl lib/nessus/plugins/finger_redirection.nasl lib/nessus/plugins/firewall1_dos.nasl lib/nessus/plugins/formhandler.nasl @@ -119,7 +122,6 @@ lib/nessus/plugins/ftp_anonymous.nasl lib/nessus/plugins/ftp_backdoor.nasl lib/nessus/plugins/ftp_bounce.nasl -lib/nessus/plugins/ftp_bounce_scan.nes lib/nessus/plugins/ftp_check_user.nasl lib/nessus/plugins/ftp_cwd_root.nasl lib/nessus/plugins/ftp_overflow.nasl @@ -131,7 +133,6 @@ lib/nessus/plugins/ftp_servu_dos.nasl lib/nessus/plugins/ftp_servu_dos2.nasl lib/nessus/plugins/ftp_site_exec.nasl -lib/nessus/plugins/ftp_write_dirs.nes lib/nessus/plugins/ftpgate.nasl lib/nessus/plugins/ftpserver_detect_type_nd_version.nasl lib/nessus/plugins/gatecrasher.nasl @@ -155,6 +156,9 @@ lib/nessus/plugins/htsearch_location.nasl lib/nessus/plugins/http_methods.nasl lib/nessus/plugins/http_version.nasl +lib/nessus/plugins/http_webshopper.nasl +lib/nessus/plugins/http_webstore.nasl +lib/nessus/plugins/httpd_boa.nasl lib/nessus/plugins/httpd_nobody.nasl lib/nessus/plugins/hyperbomb.nasl lib/nessus/plugins/i2odialogd.nasl @@ -170,6 +174,7 @@ lib/nessus/plugins/iis_authentification_manager.nasl lib/nessus/plugins/iis_buffer_overflow.nasl lib/nessus/plugins/iis_crash.nasl +lib/nessus/plugins/iis_dir_traversal.nasl lib/nessus/plugins/iis_dos_ussrback.nasl lib/nessus/plugins/iis_ftp_crash.nasl lib/nessus/plugins/iis_malformed_request.nasl @@ -193,15 +198,16 @@ lib/nessus/plugins/ipop2d.nasl lib/nessus/plugins/ipop2d_readfiles.nasl lib/nessus/plugins/ithousemail_bof.nasl +lib/nessus/plugins/iws_shtml.nasl lib/nessus/plugins/jj.nasl lib/nessus/plugins/jrun.nasl lib/nessus/plugins/ken_segfault.nasl lib/nessus/plugins/kerberos_overflow.nasl lib/nessus/plugins/kuang2_the_virus.nasl +lib/nessus/plugins/kw_whois.nasl lib/nessus/plugins/land.nasl lib/nessus/plugins/lcdproc_buffer_overflow.nasl lib/nessus/plugins/lcdproc_detect.nasl -lib/nessus/plugins/linux_tftp.nes lib/nessus/plugins/linux_zero_len_fragment.nasl lib/nessus/plugins/linuxconf_detect.nasl lib/nessus/plugins/lotus_esmtp_overflow.nasl @@ -214,8 +220,8 @@ lib/nessus/plugins/mercure_imap_read_any_file.nasl lib/nessus/plugins/mercure_webview.nasl lib/nessus/plugins/metainfo_mail.nasl -lib/nessus/plugins/minivend_view_page.nasl lib/nessus/plugins/mkilog.nasl +lib/nessus/plugins/minivend_view_page.nasl lib/nessus/plugins/ms_index_server.nasl lib/nessus/plugins/msadcs_dll.nasl lib/nessus/plugins/mspws_dotdotdot.nasl @@ -249,19 +255,19 @@ lib/nessus/plugins/netstat.nasl lib/nessus/plugins/newdsn.nasl lib/nessus/plugins/nis_server.nasl -lib/nessus/plugins/nmap_tcp_connect.nes -lib/nessus/plugins/nmap_wrapper.nes -lib/nessus/plugins/nntpserver_detect.nasl lib/nessus/plugins/no404.nasl +lib/nessus/plugins/nntpserver_detect.nasl lib/nessus/plugins/nortel_cgiproc_dos.nasl +lib/nessus/plugins/nortel_pwdless1.nasl +lib/nessus/plugins/nortel_pwdless2.nasl lib/nessus/plugins/notes_mta_dos.nasl lib/nessus/plugins/novell_border_manager.nasl lib/nessus/plugins/nph-publish.nasl lib/nessus/plugins/nph-test-cgi.nasl +lib/nessus/plugins/nsm_format_strings.nasl lib/nessus/plugins/nt_ftp_guest.nasl lib/nessus/plugins/nt_spam.nasl lib/nessus/plugins/ntalk_detect.nasl -lib/nessus/plugins/objectserver.nes lib/nessus/plugins/openlink_overflow.nasl lib/nessus/plugins/openssh_uselogin.nasl lib/nessus/plugins/oshare.nasl @@ -278,6 +284,7 @@ lib/nessus/plugins/phf.nasl lib/nessus/plugins/php.nasl lib/nessus/plugins/php_file_upload.nasl +lib/nessus/plugins/php_log.nasl lib/nessus/plugins/php_overflow.nasl lib/nessus/plugins/pimp.nasl lib/nessus/plugins/ping_host.nasl @@ -304,9 +311,9 @@ lib/nessus/plugins/qpopper.nasl lib/nessus/plugins/qpopper_euidl.nasl lib/nessus/plugins/qpopper_list.nasl -lib/nessus/plugins/queso.nes lib/nessus/plugins/quote.nasl lib/nessus/plugins/ramcrash.nasl +lib/nessus/plugins/rbs.nasl lib/nessus/plugins/realserver_malformed_request_dos.nasl lib/nessus/plugins/realserver_ussr_dos.nasl lib/nessus/plugins/realserverg2.nasl @@ -379,9 +386,9 @@ lib/nessus/plugins/slmail.nasl lib/nessus/plugins/slmail27.nasl lib/nessus/plugins/slmail_helo.nasl -lib/nessus/plugins/smad.nes lib/nessus/plugins/smartserver_pop_overflow.nasl lib/nessus/plugins/smb_accessible_shares.nasl +lib/nessus/plugins/smb_bruteforce_pass.nasl lib/nessus/plugins/smb_crash_winlogon.nasl lib/nessus/plugins/smb_dom2sid.nasl lib/nessus/plugins/smb_enum_services.nasl @@ -397,6 +404,8 @@ lib/nessus/plugins/smb_nt_ms00-062.nasl lib/nessus/plugins/smb_nt_ms00-065.nasl lib/nessus/plugins/smb_nt_ms00-066.nasl +lib/nessus/plugins/smb_nt_ms00-067.nasl +lib/nessus/plugins/smb_nt_ms00-070.nasl lib/nessus/plugins/smb_reg_autologon.nasl lib/nessus/plugins/smb_reg_hklm.nasl lib/nessus/plugins/smb_reg_missing_winreg.nasl @@ -404,6 +413,7 @@ lib/nessus/plugins/smb_reg_run_permissions.nasl lib/nessus/plugins/smb_reg_schedule.nasl lib/nessus/plugins/smb_reg_service_pack.nasl +lib/nessus/plugins/smb_reg_service_pack_W2K.nasl lib/nessus/plugins/smb_reg_sfcdisable.nasl lib/nessus/plugins/smb_reg_trojan_paths.nasl lib/nessus/plugins/smb_reg_winlogon_permissions.nasl @@ -413,6 +423,7 @@ lib/nessus/plugins/smb_svc_alerter.nasl lib/nessus/plugins/smb_svc_messenger.nasl lib/nessus/plugins/smtp_bounce.nasl +lib/nessus/plugins/smtp_bypass_cisco.nasl lib/nessus/plugins/smtp_file.nasl lib/nessus/plugins/smtp_helo.nasl lib/nessus/plugins/smtp_program.nasl @@ -445,23 +456,24 @@ lib/nessus/plugins/test-cgi.nasl lib/nessus/plugins/tfn.nasl lib/nessus/plugins/tfs_smtp_overflow.nasl -lib/nessus/plugins/tftp_grab_file.nes lib/nessus/plugins/thttpd_buffer_overflow.nasl lib/nessus/plugins/thttpd_bug.nasl +lib/nessus/plugins/thttpd_ssi.nasl lib/nessus/plugins/tomcat_admin.nasl lib/nessus/plugins/tomcat_snoop.nasl lib/nessus/plugins/traceroute.nasl lib/nessus/plugins/translate_f.nasl lib/nessus/plugins/trinity.nasl lib/nessus/plugins/trinoo.nasl +lib/nessus/plugins/ultraseek_dos.nasl lib/nessus/plugins/unicast_dos.nasl lib/nessus/plugins/upload_cgi.nasl +lib/nessus/plugins/visadmin.nasl lib/nessus/plugins/uploader_exe.nasl lib/nessus/plugins/uw_imap_overflow.nasl lib/nessus/plugins/uw_imap_overflow_two.nasl lib/nessus/plugins/vftpd_overflow.nasl lib/nessus/plugins/view_source_cgi.nasl -lib/nessus/plugins/visadmin.nasl lib/nessus/plugins/vnc.nasl lib/nessus/plugins/vpop_input_validation.nasl lib/nessus/plugins/vqServer_admin_detect.nasl @@ -471,6 +483,7 @@ lib/nessus/plugins/webactive_log.nasl lib/nessus/plugins/webcart.nasl lib/nessus/plugins/webdav.nasl +lib/nessus/plugins/webdav_iis.nasl lib/nessus/plugins/webdist.nasl lib/nessus/plugins/webfind.nasl lib/nessus/plugins/webgais.nasl @@ -510,11 +523,24 @@ lib/nessus/plugins/yahoo_dos.nasl lib/nessus/plugins/zeus.nasl lib/nessus/plugins/zope.nasl +lib/nessus/plugins/accounts.nes +lib/nessus/plugins/bind_bof.nes +lib/nessus/plugins/find_service.nes +lib/nessus/plugins/ftp_bounce_scan.nes +lib/nessus/plugins/ftp_write_dirs.nes +lib/nessus/plugins/linux_tftp.nes +lib/nessus/plugins/nmap_tcp_connect.nes +lib/nessus/plugins/nmap_wrapper.nes +lib/nessus/plugins/objectserver.nes +lib/nessus/plugins/queso.nes +lib/nessus/plugins/smad.nes +lib/nessus/plugins/tftp_grab_file.nes lib/nessus/plugins_factory/Makefile lib/nessus/plugins_factory/libtool lib/nessus/plugins_factory/nessus.tmpl sbin/nessus-update-plugins @dirrm lib/nessus/plugins_factory @dirrm lib/nessus/plugins -@dirrm lib/nessus/reports +@exec mkdir %D/lib/nessus/reports +@unexec rmdir %D/lib/nessus/reports 2>/dev/null || true @dirrm lib/nessus nessus.patch: diff -ruN nessus.orig/Makefile nessus/Makefile --- nessus.orig/Makefile Thu Nov 9 20:51:50 2000 +++ nessus/Makefile Thu Nov 9 21:55:28 2000 @@ -6,7 +6,8 @@ # PORTNAME= nessus -PORTVERSION= 1.0.5 +PORTVERSION= 1.0.6 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= ftp://ftp.cis.fed.gov/pub/nessus/nessus-${PORTVERSION}/src/ \ ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ diff -ruN nessus.orig/distinfo nessus/distinfo --- nessus.orig/distinfo Sat Oct 28 08:34:28 2000 +++ nessus/distinfo Thu Nov 9 21:03:09 2000 @@ -1 +1 @@ -MD5 (nessus/nessus-core-1.0.5.tar.gz) = e5636b91642588c4bff8c69b582e3e01 +MD5 (nessus/nessus-core-1.0.6.tar.gz) = d904ae36d5d7a8e22d538a5e48a7a23e >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 14:50: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from winston.osd.bsdi.com (winston.osd.bsdi.com [204.216.27.229]) by hub.freebsd.org (Postfix) with ESMTP id 5745937B4CF; Thu, 9 Nov 2000 14:50:00 -0800 (PST) Received: from winston.osd.bsdi.com (jkh@localhost [127.0.0.1]) by winston.osd.bsdi.com (8.11.1/8.9.3) with ESMTP id eA9MnqI21258; Thu, 9 Nov 2000 14:49:52 -0800 (PST) (envelope-from jkh@winston.osd.bsdi.com) To: Jimmy Cc: ports@FreeBSD.ORG, pine@freebsd.ady.ro, kris@FreeBSD.ORG Subject: Re: 4.2 BETA ISO image In-Reply-To: Message from Jimmy of "Thu, 09 Nov 2000 22:40:33 +0100." Date: Thu, 09 Nov 2000 14:49:52 -0800 Message-ID: <21255.973810192@winston.osd.bsdi.com> From: Jordan Hubbard Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Argh. People keep making ports interactive for "security" reasons but then forget that interactive packages are not handled by sysinstall and should be marked IS_INTERACTIVE so that I can keep them off the CD. I'll remove the pine port from the final CD image, but this goes for any other ports which do the same thing. :-( - Jordan > Hello all, > > I tried the 4.2 beta ISO and found a problem with the pine package. > When installed from sysinstall, pine will attempt to warn about its > security issues and ask for confirmation. This happens on the debug > terminal, while the main sysinstall screen is frozen. > > Even if you know the trick and switch to the debug terminal, pressing > "return" does not work: maybe the terminal is connected to stdout > only? > > It would be useful to have an option passed to the pkg-install scripts > that indicates a "batch" (unattended) installation: a port script > could then attempt to install anyway, maybe sending an email to root > regarding its security issues (I wouldn't know where to start =). > > This would be nice with install.cfg driven installations too. > > bye, > Jimmy > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 14:50:15 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D8F6237B4C5 for ; Thu, 9 Nov 2000 14:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA10795; Thu, 9 Nov 2000 14:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 3FCED37B479; Thu, 9 Nov 2000 14:46:09 -0800 (PST) Message-Id: <20001109224609.3FCED37B479@hub.freebsd.org> Date: Thu, 9 Nov 2000 14:46:09 -0800 (PST) From: dwcjr@inethouston.net To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/22728: Update mail/postfix-current Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22728 >Category: ports >Synopsis: Update mail/postfix-current >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Nov 09 14:50:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: David W. Chapman Jr. >Release: 4.1.1-STABLE >Organization: Raintree Network Services >Environment: >Description: Add option for postfix benchmark Fix spacing error in writing to /etc/mail/mailer.conf update pkg-plist to include postfix benchmark binaries >How-To-Repeat: >Fix: diff -urN postfix-current.orig/Makefile postfix-current/Makefile --- postfix-current.orig/Makefile Tue Nov 7 08:18:19 2000 +++ postfix-current/Makefile Tue Nov 7 14:16:35 2000 @@ -21,6 +21,39 @@ MAINTAINER= dwcjr@inethouston.net +MAN1= mailq.1 newaliases.1 postalias.1 postcat.1 postconf.1 postdrop.1 \ + postfix.1 postkick.1 postlock.1 postlog.1 postmap.1 postsuper.1 \ + sendmail.1 + +MAN5= access.5 aliases.5 canonical.5 regexp_table.5 relocated.5 \ + transport.5 virtual.5 + +MAN8= bounce.8 cleanup.8 defer.8 error.8 flush.8 lmtp.8 local.8 \ + master.8 pickup.8 pipe.8 qmgr.8 showq.8 smtp.8 smtpd.8 \ + spawn.8 trivial-rewrite.8 + +CONF1= access aliases canonical main.cf master.cf \ + regexp_table relocated transport virtual + +CONF2= sample-aliases.cf sample-canonical.cf sample-debug.cf \ + sample-filter.cf sample-local.cf sample-misc.cf \ + sample-rate.cf sample-regexp.cf sample-relocated.cf \ + sample-resource.cf sample-rewrite.cf sample-smtp.cf \ + sample-smtpd.cf sample-transport.cf sample-virtual.cf + +BIN1= bounce cleanup error flush lmtp local master nqmgr pickup \ + pipe qmgr showq smtp smtpd spawn trivial-rewrite + +BIN2= postalias postcat postconf postdrop postfix \ + postkick postlog postmap postsuper sendmail + +.if defined(WITH_TEST) +BIN3= smtp-sink smtp-source +PLIST_SUB+= WITH_TEST="" +.else +PLIST_SUB+= WITH_TEST="@comment " +.endif + .if !defined(DEBUG) MAKEFILEFLAGS+= DEBUG= .endif @@ -72,32 +105,6 @@ PLIST_SUB+= WITH_SASL="@comment " .endif -MAN1= mailq.1 newaliases.1 postalias.1 postcat.1 postconf.1 postdrop.1 \ - postfix.1 postkick.1 postlock.1 postlog.1 postmap.1 postsuper.1 \ - sendmail.1 - -MAN5= access.5 aliases.5 canonical.5 regexp_table.5 relocated.5 \ - transport.5 virtual.5 - -MAN8= bounce.8 cleanup.8 defer.8 error.8 flush.8 lmtp.8 local.8 \ - master.8 pickup.8 pipe.8 qmgr.8 showq.8 smtp.8 smtpd.8 \ - spawn.8 trivial-rewrite.8 - -CONF1= access aliases canonical main.cf master.cf \ - regexp_table relocated transport virtual - -CONF2= sample-aliases.cf sample-canonical.cf sample-debug.cf \ - sample-filter.cf sample-local.cf sample-misc.cf \ - sample-rate.cf sample-regexp.cf sample-relocated.cf \ - sample-resource.cf sample-rewrite.cf sample-smtp.cf \ - sample-smtpd.cf sample-transport.cf sample-virtual.cf - -BIN1= bounce cleanup error flush lmtp local master nqmgr pickup \ - pipe qmgr showq smtp smtpd spawn trivial-rewrite - -BIN2= postalias postcat postconf postdrop postfix \ - postkick postlog postmap postsuper sendmail - post-patch: (cd ${WRKSRC} && make -f Makefile.init makefiles ${MAKEFILEFLAGS} \ CCARGS="${POSTFIX_CCARGS}" AUXLIBS="${POSTFIX_AUXLIBS}" && \ @@ -141,6 +148,14 @@ ${PREFIX}/sbin .endfor +.if defined(WITH_TEST) +.for file in ${BIN3} + @${INSTALL_PROGRAM} \ + ${WRKSRC}/src/smtpstone/${file} \ + ${PREFIX}/sbin +.endfor +.endif + .for file in ${MAN1} @${INSTALL_MAN} \ ${WRKSRC}/man/man1/${file} \ @@ -183,10 +198,10 @@ ${ECHO} -n "# Execute the Postfix sendmail program" >> /etc/mail/mailer.conf ${ECHO} ", named ${PREFIX}/sbin/sendmail" >> /etc/mail/mailer.conf ${ECHO} "#" >> /etc/mail/mailer.conf - ${ECHO} "sendmail ${PREFIX}/sbin/sendmail" >>/etc/mail/mailer.conf - ${ECHO} "send-mail ${PREFIX}/sbin/sendmail" >>/etc/mail/mailer.conf - ${ECHO} "mailq ${PREFIX}/sbin/sendmail" >>/etc/mail/mailer.conf - ${ECHO} "newaliases ${PREFIX}/sbin/sendmail" >>/etc/mail/mailer.conf + ${ECHO} "sendmail ${PREFIX}/sbin/sendmail" >> /etc/mail/mailer.conf + ${ECHO} "send-mail ${PREFIX}/sbin/sendmail" >> /etc/mail/mailer.conf + ${ECHO} "mailq ${PREFIX}/sbin/sendmail" >> /etc/mail/mailer.conf + ${ECHO} "newaliases ${PREFIX}/sbin/sendmail" >> /etc/mail/mailer.conf .else @${ECHO_MSG} "===> Replacing sendmail" @if [ -e /usr/sbin/sendmail ]; then \ diff -urN postfix-current.orig/pkg-plist postfix-current/pkg-plist --- postfix-current.orig/pkg-plist Tue Nov 7 08:18:19 2000 +++ postfix-current/pkg-plist Tue Nov 7 14:16:54 2000 @@ -56,5 +56,7 @@ sbin/postsuper sbin/postdrop sbin/sendmail +%%WITH_TEST%%sbin/smtp-sink +%%WITH_TEST%%sbin/smtp-source @dirrm etc/postfix @dirrm libexec/postfix >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 15:50:25 2000 Delivered-To: freebsd-ports@freebsd.org Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.130.111.12]) by hub.freebsd.org (Postfix) with ESMTP id 1509437B479 for ; Thu, 9 Nov 2000 15:50:21 -0800 (PST) Received: from [128.130.111.2] (deneb [128.130.111.2]) by vexpert.dbai.tuwien.ac.at (8.9.3/8.9.3) with ESMTP id AAA25789; Fri, 10 Nov 2000 00:50:17 +0100 (MET) Date: Fri, 10 Nov 2000 00:50:16 +0100 (CET) From: Gerald Pfeifer To: Trevor Johnson Cc: Subject: Re: Patch for Re: Wine 2000.10.26 fails to install In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 9 Nov 2000, Trevor Johnson wrote: > I made a mistake in the changes that I offered you. The Porter's Handbook > implies that installation of man pages should happen regardless of the > setting of NOPORTDOCS: Okay, than I think the following patch should be installed instead, which should fix this and the original problem as well. Index: Makefile =================================================================== RCS file: /sw/FreeBSD/CVSUP/ports/emulators/wine/Makefile,v retrieving revision 1.96 diff -u -3 -p -r1.96 Makefile --- Makefile 2000/11/02 15:05:13 1.96 +++ Makefile 2000/11/09 23:05:01 @@ -67,10 +66,10 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/wine.ini ${PREFIX}/etc/wine.conf.sample [ -f ${PREFIX}/etc/wine.conf ] \ || ${INSTALL_DATA} ${WRKSRC}/wine.ini ${PREFIX}/etc/wine.conf -.if !defined(NOPORTDOCS) ${INSTALL_DATA} ${WRKSRC}/documentation/wine.man ${PREFIX}/man/man1/wine.1 ${INSTALL_DATA} ${WRKSRC}/documentation/wine.conf.man ${PREFIX}/man/man5/wine.conf.5 - -@${MKDIR} ${PREFIX}/lib/wine/documentation ${PREFIX}/lib/wine/reg 2>/dev/null +.if !defined(NOPORTDOCS) + -@${MKDIR} ${PREFIX}/lib/wine/documentation .for i in README ANNOUNCE AUTHORS LICENSE WARRANTY documentation/psdrv.reg ${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/lib/wine/documentation .endfor @@ -81,6 +80,7 @@ do-install: .endif ${INSTALL_SCRIPT} ${WRKSRC}/tools/bug_report.pl \ ${PREFIX}/lib/wine + -@${MKDIR} ${PREFIX}/lib/wine/reg 2>/dev/null ${INSTALL_SCRIPT} \ ${WRKSRC}/programs/regapi/regFixer.pl \ ${WRKSRC}/programs/regapi/regRestorer.pl \ Gerald -- Gerald "Jerry" pfeifer@dbai.tuwien.ac.at http://www.dbai.tuwien.ac.at/~pfeifer/ "Well, we have Haider, but you cannot become president with less than 50% of the votes, let alone less votes than your competitors, here in Austria." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 17:10: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7218537B4C5 for ; Thu, 9 Nov 2000 17:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA29921; Thu, 9 Nov 2000 17:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from nakaji.tutrp.tut.ac.jp (nakaji.tutrp.tut.ac.jp [133.15.188.118]) by hub.freebsd.org (Postfix) with ESMTP id 8D24037B479 for ; Thu, 9 Nov 2000 17:03:56 -0800 (PST) Received: (from nakaji@localhost) by nakaji.tutrp.tut.ac.jp (8.11.1/8.11.1) id eAA13Ub73004; Fri, 10 Nov 2000 10:03:30 +0900 (JST) (envelope-from nakaji) Message-Id: <200011100103.eAA13Ub73004@nakaji.tutrp.tut.ac.jp> Date: Fri, 10 Nov 2000 10:03:30 +0900 (JST) From: nakaji@jp.freebsd.org Reply-To: nakaji@jp.freebsd.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22729: net/ucd-snmp cannot be made on current Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22729 >Category: ports >Synopsis: net/ucd-snmp cannot be made on current >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Nov 09 17:10:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: NAKAJI Hiroyuki >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: FreeBSD nakaji.tutrp.tut.ac.jp 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Thu Oct 26 12:33:07 JST 2000 root@nakaji.tutrp.tut.ac.jp:/usr/obj/usr/src/sys/NAKAJI i386 >Description: 'make all' of net/ucd-snmp fails with a message. cc -c -I. -I../.. -I. -I./../.. -I./../../snmplib -I./.. -I.. -fPIC -shared -DI NET6 -O -pipe -Dfreebsd5 -o ucd-snmp/disk.o ucd-snmp/disk.c In file included from ucd-snmp/disk.c:28: /usr/include/sys/conf.h:68: `SPECNAMELEN' undeclared here (not in a function) /usr/include/sys/conf.h:68: size of array `si_name' has non-integer type gmake[2]: *** [ucd-snmp/disk.o] Error 1 >How-To-Repeat: cd /usr/ports/net/ucd-snmp make >Fix: The reason is clear. SPECNAMELEN used in sys/conf.h is declared in sys/param.h but it is included after sys/conf.h in ucd-snmp/disk.c. The patch for ucd-snmp/disk.c should be like this. --- agent/mibgroup/ucd-snmp/disk.c.orig Fri Feb 4 02:56:40 2000 +++ agent/mibgroup/ucd-snmp/disk.c Fri Nov 10 09:53:18 2000 @@ -24,12 +24,12 @@ #include #endif #endif -#if HAVE_SYS_CONF_H -#include -#endif #if HAVE_SYS_PARAM_H #include #endif +#if HAVE_SYS_CONF_H +#include +#endif #if HAVE_ASM_PAGE_H #include #endif @@ -86,6 +86,7 @@ #include #endif #if HAVE_VM_SWAP_PAGER_H +#include #include #endif #if HAVE_SYS_FIXPOINT_H >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 17:48:30 2000 Delivered-To: freebsd-ports@freebsd.org Received: from 806a-117.umd.edu (806a-117.umd.edu [128.8.215.117]) by hub.freebsd.org (Postfix) with ESMTP id C79FD37B4C5 for ; Thu, 9 Nov 2000 17:48:28 -0800 (PST) Received: from glue.umd.edu (localhost [127.0.0.1]) by 806a-117.umd.edu (8.11.1/8.11.1) with ESMTP id eAA1mRv00353 for ; Thu, 9 Nov 2000 20:48:28 -0500 (EST) (envelope-from bfoz@glue.umd.edu) Message-ID: <3A0B53EB.205CAA51@glue.umd.edu> Date: Thu, 09 Nov 2000 20:48:27 -0500 From: Brandon Fosdick X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: ports@freebsd.org Subject: Setiathome on 4.2-B Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org stable cvsup'd and built today, ports cvsup'd today. do make install in /usr/ports/setiathome... /usr/libexec/ld-elf.so.1: Shared object "libc.so.3" not found unable to start setiathome: it seems registration or login failed. Sure enough libc.so.3 isn't in /usr/libexec. Did I forget something? -Brandon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 17:54:34 2000 Delivered-To: freebsd-ports@freebsd.org Received: from 806a-117.umd.edu (806a-117.umd.edu [128.8.215.117]) by hub.freebsd.org (Postfix) with ESMTP id 4043737B479 for ; Thu, 9 Nov 2000 17:54:32 -0800 (PST) Received: from glue.umd.edu (localhost [127.0.0.1]) by 806a-117.umd.edu (8.11.1/8.11.1) with ESMTP id eAA1sVv00366 for ; Thu, 9 Nov 2000 20:54:31 -0500 (EST) (envelope-from bfoz@glue.umd.edu) Message-ID: <3A0B5557.B9B652AE@glue.umd.edu> Date: Thu, 09 Nov 2000 20:54:31 -0500 From: Brandon Fosdick X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: ports@FreeBSD.ORG Subject: Re: Setiathome on 4.2-B References: <3A0B53EB.205CAA51@glue.umd.edu> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Brandon Fosdick wrote: > > stable cvsup'd and built today, ports cvsup'd today. > > do make install in /usr/ports/setiathome... > > /usr/libexec/ld-elf.so.1: Shared object "libc.so.3" not found > unable to start setiathome: it seems registration or login failed. > > Sure enough libc.so.3 isn't in /usr/libexec. Did I forget something? Search the archives first...search the archives first...maybe someday i'll learn. :) Is this still the solution? > rebuild world setting this line in /etc/make.conf: > COMPAT3X= yes > > Jeremy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 18: 6: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ns1.t-cog.org (ns1.t-cog.org [216.114.10.35]) by hub.freebsd.org (Postfix) with ESMTP id 881F237B657 for ; Thu, 9 Nov 2000 18:06:06 -0800 (PST) Received: (from root@localhost) by ns1.t-cog.org (8.9.3/8.9.3) id UAA93398 for ports@freebsd.org; Thu, 9 Nov 2000 20:03:11 -0600 (CST) (envelope-from chrisb) Date: Thu, 9 Nov 2000 20:03:11 -0600 (CST) From: Chris Byrnes Message-Id: <200011100203.UAA93398@ns1.t-cog.org> To: ports@freebsd.org Subject: lynx-ssl Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org cd /usr/ports/www/lynx-ssl ; make all install LYMain.o: In function `main': LYMain.o(.text+0x62e): warning: mktemp() possibly used unsafely; consider using mkstemp() /usr/local/lib/libcrypto.so: undefined reference to `ERR_load_RSAREF_strings' /usr/local/lib/libcrypto.so: undefined reference to `RSA_PKCS1_RSAref' *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. :\ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 18: 7:32 2000 Delivered-To: freebsd-ports@freebsd.org Received: from smtp10.atl.mindspring.net (smtp10.atl.mindspring.net [207.69.200.246]) by hub.freebsd.org (Postfix) with ESMTP id 7D2FD37B479; Thu, 9 Nov 2000 18:07:26 -0800 (PST) Received: from silvia.hip.berkeley.edu (sji-ca7-217.ix.netcom.com [209.109.235.217]) by smtp10.atl.mindspring.net (8.9.3/8.8.5) with ESMTP id VAA29332; Thu, 9 Nov 2000 21:06:58 -0500 (EST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.1/8.11.0) id eAA25nL48575; Thu, 9 Nov 2000 18:05:49 -0800 (PST) (envelope-from asami@cs.berkeley.edu) X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: Jordan Hubbard Cc: Jimmy , ports@FreeBSD.ORG, pine@freebsd.ady.ro, kris@FreeBSD.ORG Subject: Re: 4.2 BETA ISO image References: <21255.973810192@winston.osd.bsdi.com> From: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) MIME-Version: 1.0 (generated by SEMI 1.13.7 - "Awazu") Content-Type: text/plain; charset=US-ASCII Date: 09 Nov 2000 18:05:31 -0800 In-Reply-To: <21255.973810192@winston.osd.bsdi.com> (Jordan Hubbard's message of "Thu, 09 Nov 2000 14:49:52 -0800") Message-ID: Lines: 17 User-Agent: T-gnus/6.14.5 (based on Gnus v5.8.7) (revision 06) SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) Emacs/20.7 (i386--freebsd) MULE/4.0 =?ISO-2022-JP?B?KBskQjJWMWMbKEIp?= Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Jordan Hubbard * Argh. People keep making ports interactive for "security" reasons * but then forget that interactive packages are not handled by sysinstall * and should be marked IS_INTERACTIVE so that I can keep them off the CD. * * I'll remove the pine port from the final CD image, but this goes for any * other ports which do the same thing. :-( Ports marked IS_INTERACTIVE won't be packaged at all for obvious reasons -- I won't be able to hit return for packages built from cron. :) Perhaps sysinstall should be fixed? If that is not possible, we can introduce a new fixed comment that you can grep for or something. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 18:29:39 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.hiwaay.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (Postfix) with ESMTP id 48DF337B4C5; Thu, 9 Nov 2000 18:29:35 -0800 (PST) Received: from bonsai.knology.net (user-24-214-88-8.knology.net [24.214.88.8]) by mail.hiwaay.net (8.11.0/8.11.0) with ESMTP id eAA2TP710661; Thu, 9 Nov 2000 20:29:25 -0600 (CST) Received: (from steve@localhost) by bonsai.knology.net (8.11.0/8.9.3) id eAA2TOt02437; Thu, 9 Nov 2000 20:29:24 -0600 (CST) (envelope-from steve) Date: Thu, 9 Nov 2000 20:29:18 -0600 From: Steve Price To: Satoshi - Ports Wraith - Asami Cc: Jordan Hubbard , Jimmy , ports@FreeBSD.ORG, pine@freebsd.ady.ro, kris@FreeBSD.ORG Subject: Re: 4.2 BETA ISO image Message-ID: <20001109202918.S62344@bonsai.knology.net> References: <21255.973810192@winston.osd.bsdi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from asami@FreeBSD.ORG on Thu, Nov 09, 2000 at 06:05:31PM -0800 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Nov 09, 2000 at 06:05:31PM -0800, Satoshi - Ports Wraith - Asami wrote: # * From: Jordan Hubbard # # * Argh. People keep making ports interactive for "security" reasons # * but then forget that interactive packages are not handled by sysinstall # * and should be marked IS_INTERACTIVE so that I can keep them off the CD. # * # * I'll remove the pine port from the final CD image, but this goes for any # * other ports which do the same thing. :-( # # Ports marked IS_INTERACTIVE won't be packaged at all for obvious # reasons -- I won't be able to hit return for packages built from # cron. :) Actually I believe he is talking about ports that are interactive on install (not build). Most (if not all) of these have been fixed to not require interaction during package builds (nay installs) ... # Perhaps sysinstall should be fixed? If that is not possible, we can # introduce a new fixed comment that you can grep for or something. ... which is why I suggested to Jordan (in a private mail apparently because I haven't seen it come through) that a *very* hackish solution of handling ports like pine4 would be to add the following lines to the appropriate spot in sysinstall. setenv("PACKAGE_BUILDING", "t", 1); setenv("BATCH", "t", 1); -steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 18:51:58 2000 Delivered-To: freebsd-ports@freebsd.org Received: from trinity.magpage.com (trinity.magpage.com [216.155.0.8]) by hub.freebsd.org (Postfix) with ESMTP id B9FB637B4C5 for ; Thu, 9 Nov 2000 18:51:51 -0800 (PST) Received: from magpage.com (rapunzel.magpage.com [216.155.50.98]) by trinity.magpage.com (8.11.1/8.11.1) with ESMTP id eAA2piW27085 for ; Thu, 9 Nov 2000 21:51:44 -0500 Message-ID: <3A0B1C51.DE2CA38F@magpage.com> Date: Thu, 09 Nov 2000 21:51:13 +0000 From: Daniel Frazier X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: ports@freebsd.org Subject: Evolution port difficulties... Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The latest evolution port manages to build fine, but when I run it it hangs at the splash screen. In the README in the work/evolution-0.6 dir it suggests running tools/verify-evolution-install.sh, which I did and got the following results... rapunzel # ./verify-evolution-install.sh I detected the following problem: ORBit is not in GNOME_PATH or the same prefix as gnome-libs Suggested solution via RPM: This problem shouldn't happen with RPM installations. Verify your installation of Helix Gnome. Suggested solution via sources: Re-run 'configure' in ORBit's source directory with the flag '--prefix=/usr/X11R6'. Try exporting an environment variable 'GNOME_PATH' with the prefix of ORBit ...so I tried this... rapunzel # export GNOME_PATH=/usr/local rapunzel # ./verify-evolution-install.sh I detected the following problem: oafd.oafinfo isn't installed into Gnome's prefix or in OAF_INFO_PATH Suggested solution via RPM: This problem shouldn't happen with RPM installations. Verify your installation of Helix Gnome. Suggested solution via sources: Re-run 'configure' in oaf's source directory with the flag '--datadir=/usr/X11R6/share/gnome'. Another likely cause of this problem would be a failed installation of oaf. You should check to see that the install succeeded. You may also add the location of oafd.oafinfo to the environment variable OAF_INFO_PATH ...and then I tried this... rapunzel # export OAF_INFO_PATH=/usr/X11R6/share/gnome/oaf/ rapunzel # ./verify-evolution-install.sh Guessed that evolution is installed in prefix /usr/X11R6 I detected the following problem: The binary evolution-mail is linked against the wrong copy of libcamelvee Suggested solution via RPM: The package owning libcamelvee is probably installed twice. Make sure that it's installed correctly. Suggested solution via sources: The package owning libcamelvee is probably installed twice. Make sure that it's installed correctly. The version of libcamelvee in usr/X11R6/lib/evolution/camel-providers/0.5 was expected ...hrmmmm... rapunzel # ldd /usr/X11R6/bin/evolution-mail /usr/X11R6/bin/evolution-mail: libcamelvee.so => /usr/X11R6/lib/evolution/camel-providers/0.6/libcamelvee.so (0x280c9000) ...definately odd, but I've never really attempted to debug something past this point, so if a more qualified individual could provide any help I'd appreciate it. ---------------------------------------------------------------------- Daniel Frazier Tel: 302-239-5900 Ext. 231 System Administrator Fax: 302-239-3909 MAGPAGE, We Power the Internet WWW: http://www.magpage.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 19:20:52 2000 Delivered-To: freebsd-ports@freebsd.org Received: from trinity.magpage.com (trinity.magpage.com [216.155.0.8]) by hub.freebsd.org (Postfix) with ESMTP id CD41A37B4C5 for ; Thu, 9 Nov 2000 19:20:49 -0800 (PST) Received: from magpage.com (rapunzel.magpage.com [216.155.50.98]) by trinity.magpage.com (8.11.1/8.11.1) with ESMTP id eAA3KlW00413 for ; Thu, 9 Nov 2000 22:20:47 -0500 Message-ID: <3A0B2320.C077C817@magpage.com> Date: Thu, 09 Nov 2000 22:20:16 +0000 From: Daniel Frazier X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: ports@FreeBSD.ORG Subject: Re: Evolution port difficulties... References: <3A0B1C51.DE2CA38F@magpage.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org hrmmm, it seems there's a typo in verify-evolution-install.sh that's making it look in the wrong dir. After a quick edit verify-evolution-install.sh gives me this... rapunzel # ./verify-evolution-install.sh Guessed that evolution is installed in prefix /usr/X11R6 Your Gnome system appears to be properly set up. Enjoy Evolution! ...but evolution still hangs at the splash screen. Any ideas??? ---------------------------------------------------------------------- Daniel Frazier Tel: 302-239-5900 Ext. 231 System Administrator Fax: 302-239-3909 MAGPAGE, We Power the Internet WWW: http://www.magpage.com/ Daniel Frazier wrote: > > The latest evolution port manages to build fine, but when I run it it > hangs at the splash screen. In the README in the work/evolution-0.6 > dir it suggests running tools/verify-evolution-install.sh, which I did > and got the following results... > > rapunzel # ./verify-evolution-install.sh > I detected the following problem: ORBit is not in GNOME_PATH or the same > prefix as gnome-libs > Suggested solution via RPM: This problem shouldn't happen with RPM > installations. Verify your installation of Helix Gnome. > Suggested solution via sources: Re-run 'configure' in ORBit's source > directory with the flag '--prefix=/usr/X11R6'. > Try exporting an environment variable 'GNOME_PATH' with the prefix of > ORBit > > ...so I tried this... > > rapunzel # export GNOME_PATH=/usr/local > rapunzel # ./verify-evolution-install.sh > I detected the following problem: oafd.oafinfo isn't installed into > Gnome's prefix or in OAF_INFO_PATH > Suggested solution via RPM: This problem shouldn't happen with RPM > installations. Verify your installation of Helix Gnome. > Suggested solution via sources: Re-run 'configure' in oaf's source > directory with the flag '--datadir=/usr/X11R6/share/gnome'. > Another likely cause of this problem would be a failed installation of > oaf. > You should check to see that the install succeeded. You may also add the > location of oafd.oafinfo to the environment variable OAF_INFO_PATH > > ...and then I tried this... > > rapunzel # export OAF_INFO_PATH=/usr/X11R6/share/gnome/oaf/ > rapunzel # ./verify-evolution-install.sh > Guessed that evolution is installed in prefix /usr/X11R6 > I detected the following problem: The binary evolution-mail is linked > against the wrong copy of libcamelvee > Suggested solution via RPM: The package owning libcamelvee is probably > installed twice. Make sure that it's installed correctly. > Suggested solution via sources: The package owning libcamelvee is > probably installed twice. Make sure that it's installed correctly. > The version of libcamelvee in > usr/X11R6/lib/evolution/camel-providers/0.5 was expected > > ...hrmmmm... > > rapunzel # ldd /usr/X11R6/bin/evolution-mail > /usr/X11R6/bin/evolution-mail: > libcamelvee.so => > /usr/X11R6/lib/evolution/camel-providers/0.6/libcamelvee.so (0x280c9000) > > ...definately odd, but I've never really attempted to debug something > past this point, so if a more qualified individual could provide any > help I'd appreciate it. > > ---------------------------------------------------------------------- > Daniel Frazier Tel: 302-239-5900 Ext. 231 > System Administrator Fax: 302-239-3909 > MAGPAGE, We Power the Internet WWW: http://www.magpage.com/ > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 20: 8:30 2000 Delivered-To: freebsd-ports@freebsd.org Received: from spammie.svbug.com (mg136-070.ricochet.net [204.179.136.70]) by hub.freebsd.org (Postfix) with ESMTP id 1423B37B479; Thu, 9 Nov 2000 20:07:57 -0800 (PST) Received: from spammie.svbug.com (localhost.mozie.org [127.0.0.1]) by spammie.svbug.com (8.9.3/8.9.3) with ESMTP id UAA00885; Thu, 9 Nov 2000 20:07:23 -0800 (PST) (envelope-from jessem@spammie.svbug.com) Message-Id: <200011100407.UAA00885@spammie.svbug.com> Date: Thu, 9 Nov 2000 20:07:22 -0800 (PST) From: opentrax@email.com Reply-To: opentrax@email.com Subject: Re: misc/22621: tcl.h and tk.h not in the right places. To: billf@FreeBSD.org Cc: jseger@FreeBSD.org, freebsd-ports@FreeBSD.org, bugs@FreeBSD.org, tech@openpackages.org In-Reply-To: <200011051846.KAA32715@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 5 Nov, billf@FreeBSD.org wrote: > Synopsis: tcl.h and tk.h not in the right places. > > State-Changed-From-To: analyzed->closed > State-Changed-By: billf > State-Changed-When: Sun Nov 5 10:44:09 PST 2000 > State-Changed-Why: > The reasons for using nonstandard installations of tcl libraries > is, as you mentioned, to avoid namespace collision. Discussions > regarding this appear in the ports mailing list archive. > > Perhaps you could submit a port that installs the expected > headers with small headers that just "#error ..." with a detailed > message and the tcl/tk ports could depend on that port to at > least help our users out. > Frankly, I'm a bit disappointed. I certainly realized when I saw the problem, that it was a simple fix, however this type of lazy approach taken by the writer, mainatiner, porter and (now) the bug warden shows utter disregard for the quality that FreeBSD is renown for. FreeBSD has a good name with regards to providing packages and ports that work. Sloppy workmanship like this reflects on the entire community, but just the people mentioned. It should also be note that expecting people to read a mailing list for such trivial bug is ludicrous. The only sillier I heard for any Open Source group was Mozilla. They actully expect people to use IRC as a means of tech-support. I told them they were nuts. True the real problem is simple to solve, but it seems that a trival problem, because is has no glory or fame, is being cast aside without good cause - only to reflect on the entire community. My issue (and this rant) is in hopes that if this is a "common ports issue", it should be address. Perhaps, OpenPackages.org is the place to do this. Perhaps, we should outline these "common issues" and set policy or at least write guidelines. Frankly, I believe no one cares about it because no one uses it. No one uses it because it breaks (on stupid things like this). best regards, Jessem. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 20:31:59 2000 Delivered-To: freebsd-ports@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id CEFBE37B479; Thu, 9 Nov 2000 20:31:55 -0800 (PST) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id E481F1C76; Thu, 9 Nov 2000 23:31:54 -0500 (EST) Date: Thu, 9 Nov 2000 23:31:54 -0500 From: Bill Fumerola To: opentrax@email.com Cc: jseger@FreeBSD.org, freebsd-ports@FreeBSD.org, bugs@FreeBSD.org, tech@openpackages.org Subject: Re: misc/22621: tcl.h and tk.h not in the right places. Message-ID: <20001109233154.S37870@jade.chc-chimes.com> References: <200011051846.KAA32715@freefall.freebsd.org> <200011100407.UAA00885@spammie.svbug.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <200011100407.UAA00885@spammie.svbug.com>; from opentrax@email.com on Thu, Nov 09, 2000 at 08:07:22PM -0800 X-Operating-System: FreeBSD 3.3-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Nov 09, 2000 at 08:07:22PM -0800, opentrax@email.com wrote: > Frankly, I'm a bit disappointed. I certainly realized when > I saw the problem, that it was a simple fix, however > this type of lazy approach taken by the writer, mainatiner, > porter and (now) the bug warden shows utter disregard for the > quality that FreeBSD is renown for. > > FreeBSD has a good name with regards to providing packages > and ports that work. Sloppy workmanship like this reflects > on the entire community, but just the people mentioned. > It should also be note that expecting people to read > a mailing list for such trivial bug is ludicrous. I actually left instructions for how to correct the problem (make a port that installs #error headers), but that seems to have been ignored by the lazy submitter. I'll leave clearer instructions this time: Go Away. -- Bill Fumerola - Lazy, Sloppy Committer / Chimes, Inc. billf@chimesnet.com / billf@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 20:37:51 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.westbend.net (ns1.westbend.net [209.224.254.131]) by hub.freebsd.org (Postfix) with ESMTP id 512BB37B479 for ; Thu, 9 Nov 2000 20:37:49 -0800 (PST) Received: from admin.westbend.net (admin.westbend.net [209.224.254.141]) by mail.westbend.net (8.9.3/8.9.3) with SMTP id WAA38806; Thu, 9 Nov 2000 22:37:32 -0600 (CST) (envelope-from hetzels@westbend.net) Message-ID: <027e01c04ad0$0b4ca800$8dfee0d1@westbend.net> From: "Scot W. Hetzel" To: "Chris Byrnes" , References: <200011100203.UAA93398@ns1.t-cog.org> Subject: Re: lynx-ssl Date: Thu, 9 Nov 2000 22:38:16 -0600 Organization: West Bend Interent MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org From: "Chris Byrnes" > cd /usr/ports/www/lynx-ssl ; make all install > > LYMain.o: In function `main': > LYMain.o(.text+0x62e): warning: mktemp() possibly used unsafely; consider using mkstemp() > /usr/local/lib/libcrypto.so: undefined reference to `ERR_load_RSAREF_strings' > /usr/local/lib/libcrypto.so: undefined reference to `RSA_PKCS1_RSAref' > *** Error code 1 > The problem is your either the port failed to include a dependancy on the security/RSAref port (FreeBSD 2.x, 3.x), or you failed to remove OpenSSL from FreeBSD 4.x+ as well as not install the base OpenSSL crypto libraries. Which version of FreeBSD are you trying to install this port on? Scot To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 20:41:53 2000 Delivered-To: freebsd-ports@freebsd.org Received: from awww.jeah.net (awww.jeah.net [216.111.239.130]) by hub.freebsd.org (Postfix) with ESMTP id 4F17237B479 for ; Thu, 9 Nov 2000 20:41:51 -0800 (PST) Received: from localhost (chris@localhost) by awww.jeah.net (8.11.1/8.11.0) with ESMTP id eAA4fBm04144; Thu, 9 Nov 2000 22:41:11 -0600 (CST) (envelope-from chris@jeah.net) Date: Thu, 9 Nov 2000 22:40:54 -0600 (CST) From: Chris Byrnes To: "Scot W. Hetzel" Cc: Chris Byrnes , ports@FreeBSD.ORG Subject: Re: lynx-ssl In-Reply-To: <027e01c04ad0$0b4ca800$8dfee0d1@westbend.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > From: "Chris Byrnes" > > cd /usr/ports/www/lynx-ssl ; make all install > > > > LYMain.o: In function `main': > > LYMain.o(.text+0x62e): warning: mktemp() possibly used unsafely; consider > using mkstemp() > > /usr/local/lib/libcrypto.so: undefined reference to > `ERR_load_RSAREF_strings' > > /usr/local/lib/libcrypto.so: undefined reference to `RSA_PKCS1_RSAref' > > *** Error code 1 > > > The problem is your either the port failed to include a dependancy on the > security/RSAref port (FreeBSD 2.x, 3.x), or you failed to remove OpenSSL > from FreeBSD 4.x+ as well as not install the base OpenSSL crypto libraries. > > Which version of FreeBSD are you trying to install this port on? 3.5-S. I have yet to go 4.x on this machine. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 21: 1:41 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.westbend.net (ns1.westbend.net [209.224.254.131]) by hub.freebsd.org (Postfix) with ESMTP id 6D5B637B479 for ; Thu, 9 Nov 2000 21:01:39 -0800 (PST) Received: from admin.westbend.net (admin.westbend.net [209.224.254.141]) by mail.westbend.net (8.9.3/8.9.3) with SMTP id XAA39116; Thu, 9 Nov 2000 23:01:35 -0600 (CST) (envelope-from hetzels@westbend.net) Message-ID: <02ca01c04ad3$680cd440$8dfee0d1@westbend.net> From: "Scot W. Hetzel" To: "Chris Byrnes" Cc: "Chris Byrnes" , References: Subject: Re: lynx-ssl Date: Thu, 9 Nov 2000 23:02:20 -0600 Organization: West Bend Interent MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org From: "Chris Byrnes" > > From: "Chris Byrnes" > > > cd /usr/ports/www/lynx-ssl ; make all install > > > > > > LYMain.o: In function `main': > > > LYMain.o(.text+0x62e): warning: mktemp() possibly used unsafely; consider > > using mkstemp() > > > /usr/local/lib/libcrypto.so: undefined reference to > > `ERR_load_RSAREF_strings' > > > /usr/local/lib/libcrypto.so: undefined reference to `RSA_PKCS1_RSAref' > > > *** Error code 1 > > > > > The problem is your either the port failed to include a dependancy on the > > security/RSAref port (FreeBSD 2.x, 3.x), or you failed to remove OpenSSL > > from FreeBSD 4.x+ as well as not install the base OpenSSL crypto libraries. > > > > Which version of FreeBSD are you trying to install this port on? > > 3.5-S. I have yet to go 4.x on this machine. > Try rebuilding your OpenSSL port, as apparently it wasn't built with RSAref. Scot To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 22: 0: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BED3437B479 for ; Thu, 9 Nov 2000 22:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA64358; Thu, 9 Nov 2000 22:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id BDA7937B479; Thu, 9 Nov 2000 21:57:08 -0800 (PST) Message-Id: <20001110055708.BDA7937B479@hub.freebsd.org> Date: Thu, 9 Nov 2000 21:57:08 -0800 (PST) From: remove08@sonic.net To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/22732: netscape47-communicator port uses old layout Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22732 >Category: ports >Synopsis: netscape47-communicator port uses old layout >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Nov 09 22:00:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: Timothy J. Lee >Release: 4.1.1-STABLE >Organization: >Environment: FreeBSD thrinaxodon 4.1.1-STABLE FreeBSD 4.1.1-STABLE #2: Fri Oct 6 21:04:00 PDT 2000 root@thrinaxodon:/usr/src/sys/compile/THRINAXODON i386 >Description: After updating the entire ports tree with cvsup, # cd /usr/ports/www/netscape47-communicator # make Error: your port uses an old layout. Please update it to match this bsd.port.mk. *** Error code 1 Stop in /usr/ports/www/netscape4-communicator. *** Error code 1 Stop in /usr/ports/www/netscape4-communicator. *** Error code 1 Stop in /usr/ports/www/netscape4-communicator. *** Error code 1 Stop in /usr/ports/www/netscape4-communicator. >How-To-Repeat: See above. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 22: 0:15 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 940FA37B4C5 for ; Thu, 9 Nov 2000 22:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA64347; Thu, 9 Nov 2000 22:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from cn.FreeBSD.org (cn.freebsd.org [202.103.100.254]) by hub.freebsd.org (Postfix) with ESMTP id 2FAD337B479 for ; Thu, 9 Nov 2000 21:52:24 -0800 (PST) Received: (from phj@localhost) by cn.FreeBSD.org (8.9.3/8.9.2) id NAA85657; Fri, 10 Nov 2000 13:52:09 +0800 (CST) (envelope-from phj) Message-Id: <200011100552.NAA85657@cn.FreeBSD.org> Date: Fri, 10 Nov 2000 13:52:09 +0800 (CST) From: phj@cn.freebsd.org Reply-To: phj@cn.freebsd.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22731: New Chinese GB2312 QuanPin input server. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22731 >Category: ports >Synopsis: new Chinese GB2312 QuanPin input server. >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Nov 09 22:00:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: Peng HaiJie >Release: FreeBSD 5.0-CURRENT i386 >Organization: cn.FreeBSD.org >Environment: >Description: Chinese QuanPin X input server, >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: # # chinput2 # chinput2/Makefile # chinput2/distinfo # chinput2/pkg-comment # chinput2/pkg-descr # chinput2/pkg-plist # echo c - chinput2 mkdir -p chinput2 > /dev/null 2>&1 echo x - chinput2/Makefile sed 's/^X//' >chinput2/Makefile << 'END-of-chinput2/Makefile' X# ex:ts=8 X# Ports collection makefile for: chinput2 X# Date created: 11/09/2000 X# Whom: Peng HaiJie (phj@cn.freebsd.org) X# X# $FreeBSD: ports/chinese/chinput2/Makefile,v 1.5 2000/09/23 07:52:53 phj Exp $ X# X XPORTNAME= chinput2 XPORTVERSION= 1.0 XCATEGORIES= chinese x11 XMASTER_SITES= ftp://ftp.cn.freebsd.org/pub/ported/ XDISTNAME= zh-chinput2-1.0 X XMAINTAINER= phj@cn.FreeBSD.org X X XBUILD_DEPENDS= mysql:${PORTSDIR}/databases/mysql322-client X XRUN_DEPENDS= mysql:${PORTSDIR}/databases/mysql322-client X X XWRKSRC= ${WRKDIR}/${PORTNAME} X Xpost-extract: X find ${WRKSRC} -name CVS | xargs ${RM} -rf X Xpost-install: X @echo X @echo X @echo "Please refer to /usr/local/share/chinput2/README for " X @echo "how to use chinput2,thanks for using this software." X @echo X @echo " -phj@cn.freebsd.org" X @echo X @echo X X.include END-of-chinput2/Makefile echo x - chinput2/distinfo sed 's/^X//' >chinput2/distinfo << 'END-of-chinput2/distinfo' XMD5 (zh-chinput2-1.0.tar.gz) = 67fb0b9dfff49a1547cd6496dbbe32fc END-of-chinput2/distinfo echo x - chinput2/pkg-comment sed 's/^X//' >chinput2/pkg-comment << 'END-of-chinput2/pkg-comment' XAnother Chinese GB2312 X11 input server. X XIf you have any question when you install it and use it, Xplease contact me directly. X X -phj@cn.freebsd.org X X X END-of-chinput2/pkg-comment echo x - chinput2/pkg-descr sed 's/^X//' >chinput2/pkg-descr << 'END-of-chinput2/pkg-descr' XImplementation of HanZi QuanPin(GB2312) input method. X XX11 Chinese(HanZi) GB2312 input server. X X-- Peng HaiJie (phj@cn.freebsd.org) X X X X X END-of-chinput2/pkg-descr echo x - chinput2/pkg-plist sed 's/^X//' >chinput2/pkg-plist << 'END-of-chinput2/pkg-plist' Xbin/chinput2 Xbin/add_items Xetc/chinput2.conf Xshare/chinput2/README X@dirrm share/chinput2 X X X END-of-chinput2/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 22:10: 4 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 357B937B479 for ; Thu, 9 Nov 2000 22:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA67762; Thu, 9 Nov 2000 22:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Thu, 9 Nov 2000 22:10:02 -0800 (PST) Message-Id: <200011100610.WAA67762@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: MIHIRA Sanpei Yoshiro Subject: Re: ports/22477: patchset for "X manpage" errors with XFree86-4 on bento Reply-To: MIHIRA Sanpei Yoshiro Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/22477; it has been noted by GNATS. From: MIHIRA Sanpei Yoshiro To: freebsd-gnats-submit@FreeBSD.org, k5@cheerful.com Cc: Subject: Re: ports/22477: patchset for "X manpage" errors with XFree86-4 on bento Date: Fri, 10 Nov 2000 15:08:52 +0900 I commited mail/youbin. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 23: 7: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blount.mail.mindspring.net (blount.mail.mindspring.net [207.69.200.226]) by hub.freebsd.org (Postfix) with ESMTP id 807AE37B4CF; Thu, 9 Nov 2000 23:07:04 -0800 (PST) Received: from silvia.hip.berkeley.edu (sji-ca7-217.ix.netcom.com [209.109.235.217]) by blount.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id CAA32375; Fri, 10 Nov 2000 02:06:49 -0500 (EST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.1/8.11.0) id eAA76ho49968; Thu, 9 Nov 2000 23:06:43 -0800 (PST) (envelope-from asami@cs.berkeley.edu) X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: Steve Price Cc: Jordan Hubbard , Jimmy , ports@FreeBSD.ORG, pine@freebsd.ady.ro, kris@FreeBSD.ORG Subject: Re: 4.2 BETA ISO image References: <21255.973810192@winston.osd.bsdi.com> <20001109202918.S62344@bonsai.knology.net> From: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) MIME-Version: 1.0 (generated by SEMI 1.13.7 - "Awazu") Content-Type: text/plain; charset=US-ASCII Date: 09 Nov 2000 23:06:39 -0800 In-Reply-To: <20001109202918.S62344@bonsai.knology.net> (Steve Price's message of "Thu, 9 Nov 2000 20:29:18 -0600") Message-ID: Lines: 41 User-Agent: T-gnus/6.14.5 (based on Gnus v5.8.7) (revision 06) SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) Emacs/20.7 (i386--freebsd) MULE/4.0 =?ISO-2022-JP?B?KBskQjJWMWMbKEIp?= Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Steve Price * On Thu, Nov 09, 2000 at 06:05:31PM -0800, Satoshi - Ports Wraith - Asami wrote: * # Ports marked IS_INTERACTIVE won't be packaged at all for obvious * # reasons -- I won't be able to hit return for packages built from * # cron. :) * * Actually I believe he is talking about ports that are interactive on * install (not build). Most (if not all) of these have been fixed to * not require interaction during package builds (nay installs) ... Yes I know. I'm just pointing out that marking them IS_INTERACTIVE is not the right solution (and will cause the packages to disappear entirely). * ... which is why I suggested to Jordan (in a private mail apparently * because I haven't seen it come through) that a *very* hackish solution * of handling ports like pine4 would be to add the following lines to * the appropriate spot in sysinstall. * * setenv("PACKAGE_BUILDING", "t", 1); * setenv("BATCH", "t", 1); I'm not sure if I like that, especially the PACKAGE_BUILDING part. These are security notices and should not be bypassed when people are sysinstalling packages. The reason why the install scripts are written to skip the questions when PACKAGE_BUILDING is defined is because we know that these are just for packages and people will be asked questions later when they try to install the packages. I still think either sysinstall should be fixed or we need to find another way to keep these off Jordan's CDs. Actually, thinking about it, won't using sysinstall for an ftp install pull all the packages down anyway? In that case it's not even a matter of keeping them off CD's. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 23:21:18 2000 Delivered-To: freebsd-ports@freebsd.org Received: from michelle.comsoften.com (michelle.comsoften.com [213.82.172.70]) by hub.freebsd.org (Postfix) with ESMTP id 8DBB537B4CF; Thu, 9 Nov 2000 23:21:13 -0800 (PST) Received: from sviluppo (lovemedo.comsoften.com [213.82.172.73]) by michelle.comsoften.com (8.9.3/8.9.3) with SMTP id IAA48468; Fri, 10 Nov 2000 08:20:52 +0100 (CET) (envelope-from gbalda@glomanet.com) From: "Gian-Carlo Baldarelli" To: , Cc: Subject: FreeBSD Port: apache-jserv-1.1.2 Date: Fri, 10 Nov 2000 08:20:53 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org 4.1.1 / 4.2 When I install this ports it stops with the error /usr/bin/make Not GNU make the path is correct I have installed the gmake more times but nothing to do! I have renamed /usr/bin/make make.old and gmake> make .. nothing is there any way to solve this ? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 9 23:44:32 2000 Delivered-To: freebsd-ports@freebsd.org Received: from iclub.nsu.ru (iclub.nsu.ru [193.124.222.66]) by hub.freebsd.org (Postfix) with ESMTP id 021EB37B479; Thu, 9 Nov 2000 23:44:23 -0800 (PST) Received: from localhost (fjoe@localhost) by iclub.nsu.ru (8.11.1/8.11.1) with ESMTP id eAA7cx873355; Fri, 10 Nov 2000 13:39:03 +0600 (NS) (envelope-from fjoe@iclub.nsu.ru) Date: Fri, 10 Nov 2000 13:38:59 +0600 (NS) From: Max Khon To: Gian-Carlo Baldarelli Cc: greg@greg.rim.or.jp, stable@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: FreeBSD Port: apache-jserv-1.1.2 In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-1181511464-973841939=:73202" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. Send mail to mime@docserver.cac.washington.edu for more info. --0-1181511464-973841939=:73202 Content-Type: TEXT/PLAIN; charset=US-ASCII hi, there! On Fri, 10 Nov 2000, Gian-Carlo Baldarelli wrote: > 4.1.1 / 4.2 > > When I install this ports it stops with the error > /usr/bin/make > Not GNU make > > the path is correct > I have installed the gmake more times but nothing to do! > I have renamed /usr/bin/make make.old and gmake> make .. nothing > > is there any way to solve this ? just delete 'USE_GMAKE= yes' from port Makefile I have sent attached patch to maintainer about two weeks ago (no replies from him so far) had not time to submit PR, sorry /fjoe --0-1181511464-973841939=:73202 Content-Type: TEXT/PLAIN; charset=US-ASCII; name="Makefile.diff" Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Content-Disposition: attachment; filename="Makefile.diff" LS0tIC4vTWFrZWZpbGUub3JpZwlUdWUgT2N0IDMxIDE4OjU3OjQ3IDIwMDAN CisrKyAuL01ha2VmaWxlCVR1ZSBPY3QgMzEgMTk6MDI6MTggMjAwMA0KQEAg LTEzLDcgKzEzLDggQEANCiANCiBNQUlOVEFJTkVSPQlncmVnQGdyZWcucmlt Lm9yLmpwDQogDQotQlVJTERfREVQRU5EUz0JJHtMT0NBTEJBU0V9L2pkazEu MS44L2Jpbi9qYXZhYzoke1BPUlRTRElSfS9qYXZhL2pka1wNCitKQVZBRElS PQkke0xPQ0FMQkFTRX0vamRrMS4xLjgNCitCVUlMRF9ERVBFTkRTPQkke0pB VkFESVJ9L2Jpbi9qYXZhYzoke1BPUlRTRElSfS9qYXZhL2pka1wNCiAJCSR7 TE9DQUxCQVNFfS9zYmluL2FwYWNoZWN0bDoke1BPUlRTRElSfS93d3cvYXBh Y2hlMTNcDQogCQkke0xPQ0FMQkFTRX0vc2hhcmUvamF2YS9jbGFzc2VzL2pz ZGsuamFyOiR7UE9SVFNESVJ9L2phdmEvanNkaw0KIFJVTl9ERVBFTkRTPQkk e0pBVkFWTX06JHtQT1JUU0RJUn0vamF2YS9qYXZhdm13cmFwcGVyXA0KQEAg LTIxLDcgKzIyLDYgQEANCiAJCSR7TE9DQUxCQVNFfS9zaGFyZS9qYXZhL2Ns YXNzZXMvanNkay5qYXI6JHtQT1JUU0RJUn0vamF2YS9qc2RrDQogDQogVVNF X0xJQlRPT0w9CXllcw0KLVVTRV9HTUFLRT0JeWVzDQogSkFWQVZNPz0JJHtM T0NBTEJBU0V9L2Jpbi9qYXZhdm0NCiBDT05GSUdVUkVfRU5WPQlNQUtFPSR7 TE9DQUxCQVNFfS9iaW4vJHtHTUFLRX0NCiBDT05GSUdVUkVfQVJHUz0JLS1w cmVmaXg9JHtQUkVGSVh9XA0KQEAgLTMwLDEwICszMCwxMCBAQA0KIAkJLS13 aXRoLWxvZ2Rpcj0vdmFyL2xvZ1wNCiAJCS0tc3lzY29uZmRpcj0ke1BSRUZJ WH0vZXRjL2FwYWNoZVwNCiAJCS0td2l0aC1hcHhzPSR7TE9DQUxCQVNFfS9z YmluL2FweHNcDQotCQktLXdpdGgtamRrLWhvbWU9JHtMT0NBTEJBU0V9L2pk azEuMS44XA0KKwkJLS13aXRoLWpkay1ob21lPSR7SkFWQURJUn1cDQogCQkt LXdpdGgtSlNESz0ke0xPQ0FMQkFTRX0vc2hhcmUvamF2YS9jbGFzc2VzL2pz ZGsuamFyXA0KLQkJLS13aXRoLWphdmE9JHtMT0NBTEJBU0V9L2pkazEuMS44 L2Jpbi9qYXZhXA0KLQkJLS13aXRoLWphdmFjPSR7TE9DQUxCQVNFfS9qZGsx LjEuOC9iaW4vamF2YWNcDQorCQktLXdpdGgtamF2YT0ke0pBVkFESVJ9L2Jp bi9qYXZhXA0KKwkJLS13aXRoLWphdmFjPSR7SkFWQURJUn0vYmluL2phdmFj XA0KIAkJLS13aXRoLXNlcnZsZXRzPSR7UFJFRklYfS9zaGFyZS9qYXZhL3Nl cnZsZXRzXA0KIAkJLS13aXRoLWdudS1sZFwNCiAJCS0tZW5hYmxlLWNvbXBy ZXNzZWQtamFyXA0K --0-1181511464-973841939=:73202-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 0:49: 2 2000 Delivered-To: freebsd-ports@freebsd.org Received: from webcom.it (brian.inet.it [194.185.73.59]) by hub.freebsd.org (Postfix) with SMTP id CC98F37B479 for ; Fri, 10 Nov 2000 00:48:58 -0800 (PST) Received: (qmail 932 invoked by uid 1000); 10 Nov 2000 08:42:52 -0000 Date: Fri, 10 Nov 2000 09:42:52 +0100 From: Andrea Campi To: Satoshi - Ports Wraith - Asami Cc: Steve Price , Jordan Hubbard , Jimmy , ports@FreeBSD.ORG, pine@freebsd.ady.ro, kris@FreeBSD.ORG Subject: Re: 4.2 BETA ISO image Message-ID: <20001110094252.A328@webcom.it> References: <21255.973810192@winston.osd.bsdi.com> <20001109202918.S62344@bonsai.knology.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from asami@FreeBSD.ORG on Thu, Nov 09, 2000 at 11:06:39PM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Actually, thinking about it, won't using sysinstall for an ftp install > pull all the packages down anyway? In that case it's not even a > matter of keeping them off CD's. Yes, same issue. I tried /stand/sysinstall after OS installation and I was bit in the same way. Either fix sysinstall, or stop it from installing these packages. Bye, Andrea -- It is easier to fix Unix than to live with NT. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 1: 1:38 2000 Delivered-To: freebsd-ports@freebsd.org Received: from winston.osd.bsdi.com (winston.osd.bsdi.com [204.216.27.229]) by hub.freebsd.org (Postfix) with ESMTP id A0EC537B479; Fri, 10 Nov 2000 01:01:36 -0800 (PST) Received: from winston.osd.bsdi.com (jkh@localhost [127.0.0.1]) by winston.osd.bsdi.com (8.11.1/8.9.3) with ESMTP id eAA91WI23012; Fri, 10 Nov 2000 01:01:33 -0800 (PST) (envelope-from jkh@winston.osd.bsdi.com) To: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) Cc: Jimmy , ports@FreeBSD.ORG, pine@freebsd.ady.ro, kris@FreeBSD.ORG Subject: Re: 4.2 BETA ISO image In-Reply-To: Message from asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) of "09 Nov 2000 18:05:31 PST." Date: Fri, 10 Nov 2000 01:01:32 -0800 Message-ID: <23007.973846892@winston.osd.bsdi.com> From: Jordan Hubbard Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Ports marked IS_INTERACTIVE won't be packaged at all for obvious > reasons -- I won't be able to hit return for packages built from > cron. :) Well, due to the well-publicized limitations in pkg_add, eliminating them is a good thing. It basically hangs up the install pretty good otherwise. :( > Perhaps sysinstall should be fixed? If that is not possible, we can It's not sysinstall - it's pkg_add taking stdin from a pipe in slave mode. Even if the I/O were to occur over on VTY1, you couldn't provide input to the dialogs. The I/O simply needs to be suppressed, as Steve's patch supposedly does (I haven't had the chance to really look at what those environment variables do yet), or pkg_add needs to reopen a controlling tty before the post-install scripts are run. The former "solution" might happen before 4.2 if it really does the job, but certainly not the latter. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 1: 9:32 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ady.warpnet.ro (ns2.warpnet.ro [194.153.243.1]) by hub.freebsd.org (Postfix) with ESMTP id C4C3C37B479; Fri, 10 Nov 2000 01:09:24 -0800 (PST) Received: from localhost (ady@localhost) by ady.warpnet.ro (8.9.3/8.9.3) with ESMTP id LAA64450; Fri, 10 Nov 2000 11:12:00 +0200 (EET) (envelope-from ady@warpnet.ro) Date: Fri, 10 Nov 2000 11:11:59 +0200 (EET) From: Adrian Penisoara To: Satoshi - Ports Wraith - Asami Cc: Jordan Hubbard , Jimmy , ports@FreeBSD.ORG, pine@freebsd.ady.ro, kris@FreeBSD.ORG Subject: Re: 4.2 BETA ISO image In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, Couldn't these "security offender" ports be made to check for BATCH mode or a new IGNORE_SECURITY (or something like that) mark which should disable interactive dialogs? Then sysinstall would set that environment variable and be able to install these packages. What's your opinion ? BTW, it's time I should say it's been a _really long_ time since I didn't take care of the pine4 port -- mainly due to business/college. If there are people anxious of taking pine4 and/or imap-uw ports into their "hands" I welcome them to contact me. Else I'm prepairing to "come back"; Pine 4.30 is out and I sure would have liked 4.2-RELE to come out with that version. But now I should set for pine4 to be on the CD, right ? On 9 Nov 2000, Satoshi - Ports Wraith - Asami wrote: > * From: Jordan Hubbard > > * Argh. People keep making ports interactive for "security" reasons > * but then forget that interactive packages are not handled by sysinstall > * and should be marked IS_INTERACTIVE so that I can keep them off the CD. > * > * I'll remove the pine port from the final CD image, but this goes for any > * other ports which do the same thing. :-( > > Ports marked IS_INTERACTIVE won't be packaged at all for obvious > reasons -- I won't be able to hit return for packages built from > cron. :) > > Perhaps sysinstall should be fixed? If that is not possible, we can > introduce a new fixed comment that you can grep for or something. > > Satoshi > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 1:18: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ady.warpnet.ro (ns2.warpnet.ro [194.153.243.1]) by hub.freebsd.org (Postfix) with ESMTP id 2291137B479; Fri, 10 Nov 2000 01:18:00 -0800 (PST) Received: from localhost (ady@localhost) by ady.warpnet.ro (8.9.3/8.9.3) with ESMTP id LAA64725; Fri, 10 Nov 2000 11:20:49 +0200 (EET) (envelope-from ady@freebsd.ady.ro) Date: Fri, 10 Nov 2000 11:20:49 +0200 (EET) From: Adrian Penisoara X-Sender: ady@ady.warpnet.ro To: Satoshi - Ports Wraith - Asami Cc: Jordan Hubbard , Jimmy , ports@FreeBSD.ORG, pine@freebsd.ady.ro, kris@FreeBSD.ORG Subject: Re: 4.2 BETA ISO image In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Fri, 10 Nov 2000, Adrian Penisoara wrote: > Couldn't these "security offender" ports be made to check for BATCH mode > or a new IGNORE_SECURITY (or something like that) mark which should > disable interactive dialogs? Then sysinstall would set that environment > variable and be able to install these packages. What's your opinion ? > Even more: at building time check for BATCH mode, at install time check for NON_INTERACTIVE (or IGNORE_SECURITY)... That should be a rule for all ports. Ady (@freebsd.ady.ro) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 1:28:15 2000 Delivered-To: freebsd-ports@freebsd.org Received: from waterblue.imgsrc.co.jp (waterblue.imgsrc.co.jp [210.226.20.160]) by hub.freebsd.org (Postfix) with ESMTP id 6585837B479 for ; Fri, 10 Nov 2000 01:28:13 -0800 (PST) Received: from waterblue.imgsrc.co.jp (localhost [127.0.0.1]) by waterblue.imgsrc.co.jp (8.11.0/8.11.0) with ESMTP id eAA9S6Y94743 for ; Fri, 10 Nov 2000 18:28:07 +0900 (JST) Date: Fri, 10 Nov 2000 18:28:06 +0900 Message-ID: <7mbsvofa6x.wl@waterblue.imgsrc.co.jp> From: Jun Kuriyama To: ports@FreeBSD.ORG Subject: Re: apache-jserv In-Reply-To: <3A0AE4CC.9C9813FC@vservers.com> References: <3A0AE4CC.9C9813FC@vservers.com> User-Agent: Wanderlust/2.3.92 (Roam) SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) MULE XEmacs/21.1 (patch 12) (Channel Islands) (i386--freebsd) MIME-Version: 1.0 (generated by SEMI 1.13.7 - "Awazu") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At 9 Nov 2000 17:54:53 GMT, Charlie Root wrote: > This is a configure problem. I have submitted a patch which > fixes it. Check it out at: > > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=22693 I also have this problem. But patching configure does not seem right thing. I think configure.in has something wrong though I cannot imagine how to solve it... -- Jun Kuriyama // IMG SRC, Inc. // FreeBSD Project To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 2: 5:24 2000 Delivered-To: freebsd-ports@freebsd.org Received: from webcom.it (brian.inet.it [194.185.73.59]) by hub.freebsd.org (Postfix) with SMTP id A8E1C37B4C5 for ; Fri, 10 Nov 2000 02:05:21 -0800 (PST) Received: (qmail 1211 invoked by uid 1000); 10 Nov 2000 09:59:17 -0000 Delivered-To: andrea-unknown@webcom.it Received: (qmail 965 invoked by alias); 10 Nov 2000 08:50:46 -0000 Delivered-To: freebsd-ports@webcom.it Received: (qmail 958 invoked by uid 1000); 10 Nov 2000 08:50:45 -0000 Date: Fri, 10 Nov 2000 09:50:45 +0100 From: Andrea Campi To: freebsd-ports@webcom.it Subject: Conflict between kde11 and kde2 Message-ID: <20001110095045.B328@webcom.it> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi guys, sorry for posting this instead of a proper PR. I was about to do that, but I think this is to be discussed, it's not something with a trivial solution. I installed KDE2 (no previous installation of KDE11) and everything was fine. I then proceeded to install a few ports (ktamaga, kssh) and suddenly Konqueror was completely f**cked up wrt to fonts; maybe other issues too, had no time to dig around. Thinking of what I had just done, I figured out ktamaga and the rest all depend on kdecore.3 and qt 1; just deinstalling the ports using kdecore.3, deinstalling kdecore11 and qt1*, and re-making everything (with tweaked Makefiles) and reinstalling fixed the issue. I don't which of kdecore11 or qt1* is to blame here, but either is. The changes I made to the Makefiles were basically to depend on kdecore.4, and USE_QT2. This fixed kssh, but not ktamaga (even though I suspect it's my fault there). My case aside, if there is this incompatibility, we must find a way around this. One way would be to have ports compatible with both KDE1 and KDE2 choose the most recent one. I have not enough experience with KDE to know any better. Bye, Andrea -- Secret hacker rule #11: hackers read manuals. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 2: 5:44 2000 Delivered-To: freebsd-ports@freebsd.org Received: from spammie.svbug.com (mg136-070.ricochet.net [204.179.136.70]) by hub.freebsd.org (Postfix) with ESMTP id 8540937B479; Fri, 10 Nov 2000 02:05:34 -0800 (PST) Received: from spammie.svbug.com (localhost.mozie.org [127.0.0.1]) by spammie.svbug.com (8.9.3/8.9.3) with ESMTP id CAA01214; Fri, 10 Nov 2000 02:04:50 -0800 (PST) (envelope-from jessem@spammie.svbug.com) Message-Id: <200011101004.CAA01214@spammie.svbug.com> Date: Fri, 10 Nov 2000 02:04:48 -0800 (PST) From: opentrax@email.com Reply-To: opentrax@email.com Subject: Re: misc/22621: tcl.h and tk.h not in the right places. To: billf@chimesnet.com Cc: jseger@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, bugs@FreeBSD.ORG, tech@openpackages.org In-Reply-To: <20001109233154.S37870@jade.chc-chimes.com> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 9 Nov, Bill Fumerola wrote: > On Thu, Nov 09, 2000 at 08:07:22PM -0800, opentrax@email.com wrote: > >> Frankly, I'm a bit disappointed. I certainly realized when >> I saw the problem, that it was a simple fix, however >> this type of lazy approach taken by the writer, mainatiner, >> porter and (now) the bug warden shows utter disregard for the >> quality that FreeBSD is renown for. >> >> FreeBSD has a good name with regards to providing packages >> and ports that work. Sloppy workmanship like this reflects >> on the entire community, but just the people mentioned. >> It should also be note that expecting people to read >> a mailing list for such trivial bug is ludicrous. > > I actually left instructions for how to correct the problem > (make a port that installs #error headers), but that seems to > have been ignored by the lazy submitter. > > I'll leave clearer instructions this time: Go Away. > I'm content with your response, but since I have action versus talk, I'll leave at that. best regards, Jessem. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 2: 5:54 2000 Delivered-To: freebsd-ports@freebsd.org Received: from winston.osd.bsdi.com (winston.osd.bsdi.com [204.216.27.229]) by hub.freebsd.org (Postfix) with ESMTP id 1893E37B479; Fri, 10 Nov 2000 02:05:53 -0800 (PST) Received: from winston.osd.bsdi.com (jkh@localhost [127.0.0.1]) by winston.osd.bsdi.com (8.11.1/8.9.3) with ESMTP id eAA9uKI23484; Fri, 10 Nov 2000 01:56:24 -0800 (PST) (envelope-from jkh@winston.osd.bsdi.com) To: Steve Price Cc: Satoshi - Ports Wraith - Asami , Jimmy , ports@FreeBSD.ORG, pine@freebsd.ady.ro, kris@FreeBSD.ORG Subject: Re: 4.2 BETA ISO image In-Reply-To: Message from Steve Price of "Thu, 09 Nov 2000 20:29:18 CST." <20001109202918.S62344@bonsai.knology.net> Date: Fri, 10 Nov 2000 01:56:20 -0800 Message-ID: <23481.973850180@winston.osd.bsdi.com> From: Jordan Hubbard Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > ... which is why I suggested to Jordan (in a private mail apparently > because I haven't seen it come through) that a *very* hackish solution > of handling ports like pine4 would be to add the following lines to > the appropriate spot in sysinstall. > > setenv("PACKAGE_BUILDING", "t", 1); > setenv("BATCH", "t", 1); I think this is a good idea - I've committed it to -current and will be testing it with a -stable build shortly. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 2:39: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CA9F437B479; Fri, 10 Nov 2000 02:39:05 -0800 (PST) Received: (from vanilla@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA07021; Fri, 10 Nov 2000 02:39:05 -0800 (PST) (envelope-from vanilla@FreeBSD.org) Date: Fri, 10 Nov 2000 02:39:05 -0800 (PST) From: Message-Id: <200011101039.CAA07021@freefall.freebsd.org> To: vanilla@FreeBSD.org, freebsd-ports@FreeBSD.org, vanilla@FreeBSD.org Subject: Re: ports/22731: new Chinese GB2312 QuanPin input server. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new Chinese GB2312 QuanPin input server. Responsible-Changed-From-To: freebsd-ports->vanilla Responsible-Changed-By: vanilla Responsible-Changed-When: Fri Nov 10 02:38:46 PST 2000 Responsible-Changed-Why: I will commit this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=22731 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 2:50: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1DC1237B4CF for ; Fri, 10 Nov 2000 02:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA08145; Fri, 10 Nov 2000 02:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from webcom.it (brian.inet.it [194.185.73.59]) by hub.freebsd.org (Postfix) with SMTP id 7B88E37B479 for ; Fri, 10 Nov 2000 02:49:04 -0800 (PST) Received: (qmail 1512 invoked by uid 1000); 10 Nov 2000 10:42:59 -0000 Message-Id: <20001110104259.1511.qmail@webcom.it> Date: 10 Nov 2000 10:42:59 -0000 From: andrea@webcom.it Reply-To: andrea@webcom.it To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/22735: KGhostView doesn't recognize spaces in file names Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22735 >Category: ports >Synopsis: KGhostView doesn't recognize spaces in file names >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Nov 10 02:50:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Andrea Campi >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD brian 5.0-CURRENT FreeBSD 5.0-CURRENT #34: Wed Nov 8 13:26:26 CET 2000 root@brian:/usr/src/sys/compile/THINKPAD i386 >Description: Can't open in whatever way a (PDF) file with spaces in its name. >How-To-Repeat: Try to open a file named 'this is a test.pdf'. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 3:32:30 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.nsvis.dk (mail.nsvis.dk [194.239.250.155]) by hub.freebsd.org (Postfix) with SMTP id A11F937B479; Fri, 10 Nov 2000 03:32:27 -0800 (PST) Received: from goppus.overalt.no [213.46.218.148] by mail.nsvis.dk (SMTPD32-4.07) id AD3C3620168; Fri, 10 Nov 2000 12:34:20 +0000 From: Marius Sorteberg Organization: Overalt Date: Fri, 10 Nov 2000 12:32:39 +0100 X-Mailer: KMail [version 1.1.99] Content-Type: text/plain; charset="iso-8859-1" Cc: ports@FreeBSD.org Subject: FreeBSD Port: kdebase2-2.0 To: will@FreeBSD.org MIME-Version: 1.0 Message-Id: <00111012323900.05736@goppus.overalt.no> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, Thanks for the great work on the KDE2.0 ports. I have just a small note on Kghostview. To get it running you need Ghostscript. Not too hard to figure out, but should it be a dependency?? Best Regards Marius Sorteberg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 4:41:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from granger.mail.mindspring.net (granger.mail.mindspring.net [207.69.200.148]) by hub.freebsd.org (Postfix) with ESMTP id 9994B37B479; Fri, 10 Nov 2000 04:41:11 -0800 (PST) Received: from silvia.hip.berkeley.edu (sji-ca7-217.ix.netcom.com [209.109.235.217]) by granger.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id HAA24138; Fri, 10 Nov 2000 07:38:14 -0500 (EST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.1/8.11.0) id eAACWKQ65653; Fri, 10 Nov 2000 04:32:20 -0800 (PST) (envelope-from asami@cs.berkeley.edu) X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: Jordan Hubbard Cc: Jimmy , ports@FreeBSD.ORG, pine@freebsd.ady.ro, kris@FreeBSD.ORG Subject: Re: 4.2 BETA ISO image References: <23007.973846892@winston.osd.bsdi.com> From: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) MIME-Version: 1.0 (generated by SEMI 1.13.7 - "Awazu") Content-Type: text/plain; charset=US-ASCII Date: 10 Nov 2000 04:29:27 -0800 In-Reply-To: <23007.973846892@winston.osd.bsdi.com> (Jordan Hubbard's message of "Fri, 10 Nov 2000 01:01:32 -0800") Message-ID: Lines: 28 User-Agent: T-gnus/6.14.5 (based on Gnus v5.8.7) (revision 06) SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) Emacs/20.7 (i386--freebsd) MULE/4.0 =?ISO-2022-JP?B?KBskQjJWMWMbKEIp?= Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Jordan Hubbard * Well, due to the well-publicized limitations in pkg_add, eliminating * them is a good thing. It basically hangs up the install pretty good * otherwise. :( That is not good. :< * > Perhaps sysinstall should be fixed? If that is not possible, we can * * It's not sysinstall - it's pkg_add taking stdin from a pipe in slave Ok, pkg_add then. Can't it be modified to take the input from a named pipe or something? * mode. Even if the I/O were to occur over on VTY1, you couldn't * provide input to the dialogs. The I/O simply needs to be suppressed, * as Steve's patch supposedly does (I haven't had the chance to really * look at what those environment variables do yet), or pkg_add needs to * reopen a controlling tty before the post-install scripts are run. The * former "solution" might happen before 4.2 if it really does the job, * but certainly not the latter. Eventually, sysinstall/pkg_add should be fixed. There is no reason why we can't let people use sysinstall where a normal pkg_add works fine. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 5:10: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8E5F137B4CF for ; Fri, 10 Nov 2000 05:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA28555; Fri, 10 Nov 2000 05:10:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Fri, 10 Nov 2000 05:10:03 -0800 (PST) Message-Id: <200011101310.FAA28555@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: MIHIRA Sanpei Yoshiro Subject: Re: ports/22477: patchset for "X manpage" errors with XFree86-4 on bento Reply-To: MIHIRA Sanpei Yoshiro Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/22477; it has been noted by GNATS. From: MIHIRA Sanpei Yoshiro To: freebsd-gnats-submit@FreeBSD.org, k5@cheerful.com, Cc: Subject: Re: ports/22477: patchset for "X manpage" errors with XFree86-4 on bento Date: Fri, 10 Nov 2000 22:05:23 +0900 net/vnc was committed by "Bruce A. Mah" . But ``NO_INSTALL_MANPAGES=YES'' was still in Makefile. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 5:10:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7ED4937B4C5 for ; Fri, 10 Nov 2000 05:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA28549; Fri, 10 Nov 2000 05:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from exchange.mistral.co.uk (adsl-195-184-238-77.mistral-uk.net [195.184.238.77]) by hub.freebsd.org (Postfix) with ESMTP id D289F37B479 for ; Fri, 10 Nov 2000 05:00:53 -0800 (PST) Received: from bizboz.mistral.co.uk ([195.184.225.25]) by exchange.mistral.co.uk with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2448.0) id VVX8L6VY; Fri, 10 Nov 2000 12:50:28 -0000 Received: by bizboz.mistral.co.uk (Postfix, from userid 1000) id 64C99379; Fri, 10 Nov 2000 13:00:45 +0000 (GMT) Message-Id: <20001110130045.64C99379@bizboz.mistral.co.uk> Date: Fri, 10 Nov 2000 13:00:45 +0000 (GMT) From: hdm@mistral.co.uk Reply-To: hdm@mistral.co.uk To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22736: Add docs to ftp/proftpd. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22736 >Category: ports >Synopsis: Add docs to ftp/proftpd. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Nov 10 05:10:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Dominic Mitchell >Release: FreeBSD 4.1.1-STABLE i386 >Organization: Mistral Internet >Environment: FreeBSD bizboz.mistral.co.uk 4.1.1-STABLE FreeBSD 4.1.1-STABLE #0: Mon Oct 2 09:49:34 BST 2000 root@bizboz.mistral.co.uk:/usr/obj/usr/src/sys/BIZBOZ i386 >Description: This patch adds in the documentation to the ProFTPD port (ftp/proftpd). It's kinda handy to have around, as ProFTPD has quite a lot of config file options... >How-To-Repeat: n/a >Fix: Here's the patch. diff -urN /usr/ports/ftp/proftpd/Makefile proftpd/Makefile --- /usr/ports/ftp/proftpd/Makefile Fri Jul 28 19:00:59 2000 +++ proftpd/Makefile Fri Nov 10 08:20:20 2000 @@ -69,6 +69,11 @@ ${WRKSRC}/sample-configurations/basic.conf ${PREFIX}/etc/proftpd.conf; \ fi @${SED} -e 's,/usr/local,${PREFIX},g' ${FILESDIR}/proftpd.sh.sample > ${PREFIX}/etc/rc.d/proftpd.sh.sample +.if !defined(NOPORTDOCS) + @${MKDIR} ${PREFIX}/share/doc/proftpd + @${INSTALL_DATA} ${WRKSRC}/doc/Configuration.html ${PREFIX}/share/doc/proftpd + @${INSTALL_DATA} ${WRKSRC}/doc/FAQ-config.html ${PREFIX}/share/doc/proftpd +.endif @${CAT} ${PKGMESSAGE} diff -urN /usr/ports/ftp/proftpd/pkg-plist proftpd/pkg-plist --- /usr/ports/ftp/proftpd/pkg-plist Mon Oct 11 05:41:55 1999 +++ proftpd/pkg-plist Fri Nov 10 08:22:53 2000 @@ -5,3 +5,6 @@ @exec if [ ! -f %D/etc/proftpd.conf ] ; then cp -p %D/%F %B/proftpd.conf; fi libexec/proftpd sbin/ftpshut +share/doc/proftpd/Configuration.html +share/doc/proftpd/FAQ-config.html +@dirrm share/doc/proftpd >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 5:17:29 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5AFEA37B479; Fri, 10 Nov 2000 05:17:28 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA29481; Fri, 10 Nov 2000 05:17:28 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Date: Fri, 10 Nov 2000 05:17:28 -0800 (PST) From: Message-Id: <200011101317.FAA29481@freefall.freebsd.org> To: roman@xpert.com, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22724: MAINTAINER UPDATE: audio/lopster 0.9.5->0.9.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: MAINTAINER UPDATE: audio/lopster 0.9.5->0.9.6 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Fri Nov 10 05:17:13 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22724 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 5:45:22 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CF77737B479; Fri, 10 Nov 2000 05:45:18 -0800 (PST) Received: (from dirk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA32506; Fri, 10 Nov 2000 05:45:18 -0800 (PST) (envelope-from dirk@FreeBSD.org) Date: Fri, 10 Nov 2000 05:45:18 -0800 (PST) From: Message-Id: <200011101345.FAA32506@freefall.freebsd.org> To: dirk@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/19038: The qpopper port accepts empty X-UIDL: headers in some cases, making retrieving email impossible in some cases Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: The qpopper port accepts empty X-UIDL: headers in some cases, making retrieving email impossible in some cases Responsible-Changed-From-To: freebsd-bugs->freebsd-ports Responsible-Changed-By: dirk Responsible-Changed-When: Fri Nov 10 05:44:41 PST 2000 Responsible-Changed-Why: Should be in ports. http://www.freebsd.org/cgi/query-pr.cgi?pr=19038 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 5:50: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6135A37B4E5 for ; Fri, 10 Nov 2000 05:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA33068; Fri, 10 Nov 2000 05:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from field.videotron.net (field.videotron.net [205.151.222.108]) by hub.freebsd.org (Postfix) with ESMTP id B948137B479 for ; Fri, 10 Nov 2000 05:48:45 -0800 (PST) Received: from frodo.lebel.org ([24.201.115.7]) by field.videotron.net (Sun Internet Mail Server sims.3.5.1999.12.14.10.29.p8) with SMTP id <0G3T00D1DAD76B@field.videotron.net> for FreeBSD-gnats-submit@freebsd.org; Fri, 10 Nov 2000 08:48:43 -0500 (EST) Received: (qmail 18420 invoked by uid 1001); Fri, 10 Nov 2000 13:48:36 +0000 Message-Id: <20001110134836.18419.qmail@frodo.lebel.org> Date: Fri, 10 Nov 2000 13:48:36 +0000 From: David Lebel Reply-To: David Lebel To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22738: Use ${MASTER_SITE_SOURCEFORGE} for audio/cdrdao (from maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22738 >Category: ports >Synopsis: Use ${MASTER_SITE_SOURCEFORGE} for audio/cdrdao >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Nov 10 05:50:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: David Lebel >Release: FreeBSD 4.2-BETA i386 >Organization: None whatsoever. >Environment: >Description: Use ${MASTER_SITE_SOURCEFORGE} instead of hard-coding the MASTER_SITES in the Makefile. >How-To-Repeat: >Fix: diff -ruN cdrdao/Makefile cdrdao.new/Makefile --- cdrdao/Makefile Tue Nov 7 07:47:02 2000 +++ cdrdao.new/Makefile Thu Nov 9 14:16:51 2000 @@ -5,18 +5,20 @@ # $FreeBSD: ports/audio/cdrdao/Makefile,v 1.21 2000/11/07 06:56:03 dougb Exp $ # -PORTNAME= cdrdao -PORTVERSION= 1.1.4 -CATEGORIES= audio -MASTER_SITES= ftp://cdrdao.sourceforge.net/pub/cdrdao/ -EXTRACT_SUFX= .src.tar.gz +PORTNAME= cdrdao +PORTVERSION= 1.1.4 +CATEGORIES= audio +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= cdrdao -MAINTAINER= lebel@lebel.org +EXTRACT_SUFX= .src.tar.gz -BUILD_DEPENDS= antlr:${PORTSDIR}/devel/pccts\ - dlg:${PORTSDIR}/devel/pccts +MAINTAINER= lebel@lebel.org -WRKSRC= ${WRKDIR}/cdrdao-1.1.4 +BUILD_DEPENDS= antlr:${PORTSDIR}/devel/pccts\ + dlg:${PORTSDIR}/devel/pccts + +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} GNU_CONFIGURE= yes USE_GMAKE= yes >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 6:10:14 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2417837B4C5 for ; Fri, 10 Nov 2000 06:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA36888; Fri, 10 Nov 2000 06:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from lament.support.pavilion.net (lament.support.pavilion.net [212.74.1.242]) by hub.freebsd.org (Postfix) with ESMTP id 92A3237B479 for ; Fri, 10 Nov 2000 06:01:06 -0800 (PST) Received: by lament.support.pavilion.net (Postfix, from userid 1001) id 4101258; Fri, 10 Nov 2000 14:01:05 +0000 (GMT) Message-Id: <20001110140105.4101258@lament.support.pavilion.net> Date: Fri, 10 Nov 2000 14:01:05 +0000 (GMT) From: ben@pavilion.net Reply-To: ben@pavilion.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22739: sawfish refuses to build from ports. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22739 >Category: ports >Synopsis: sawfish refuses to build from ports. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Nov 10 06:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: ben@pavilion.net >Release: FreeBSD 4.1.1-STABLE i386 >Organization: Pavilion Internet PLC. >Environment: Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.1.1-STABLE #0: Mon Oct 30 13:24:01 GMT 2000 root@lament.support.pavilion.net:/usr/obj/usr/src/sys/LAMENT Timecounter "i8254" frequency 1193182 Hz CPU: Pentium II/Pentium II Xeon/Celeron (534.55-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x665 Stepping = 5 Features=0x183f9ff real memory = 134217728 (131072K bytes) config> pnp 1 0 os enable irq0 10 port0 0x220 drq0 1 drq1 3 Invalid command or syntax. Type `?' for help. avail memory = 127447040 (124460K bytes) Preloaded elf kernel "kernel" at 0xc0327000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc032709c. Pentium Pro MTRR support enabled md0: Malloc disk npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at 0.0 irq 11 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0xf000-0xf00f at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 pci0: at 7.2 irq 10 chip1: port 0x5000-0x500f at device 7.3 on pci0 rl0: port 0xe400-0xe4ff mem 0xe8100000-0xe81000ff irq 11 at device 9.0 on pci0 rl0: Ethernet address: 00:e0:7d:84:6f:70 miibus0: on rl0 rlphy0: on miibus0 rlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto fxp0: port 0xe800-0xe81f mem 0xe8000000-0xe80fffff,0xe8101000-0xe8101fff irq 5 at device 10.0 on pci0 fxp0: Ethernet address 00:90:27:1c:94:bb fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 psm0: irq 12 on atkbdc0 psm0: model Generic PS/2 mouse, device ID 0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A sbc0: at port 0x220-0x22f,0x300-0x301,0x388-0x38b irq 7 drq 0,1 on isa0 pcm0: on sbc0 IP Filter: v3.4.8 initialized. Default = pass all, Logging = enabled ata0-master: DMA limited to UDMA33, non-ATA66 compliant cable ad0: 9773MB [19857/16/63] at ata0-master UDMA33 acd0: CDROM at ata0-slave using PIO4 Mounting root from ufs:/dev/ad0s2a cvsup'd last night. >Description: lament:/usr/ports/x11-wm/sawfish# make ===> Configuring for sawfish-gnome-0.33 loading cache ./config.cache checking host system type... i386--freebsd4.1.1 checking for gcc... cc checking whether the C compiler (cc -O -pipe ) works... yes checking whether the C compiler (cc -O -pipe ) is a cross-compiler... no checking whether we are using GNU C... yes checking whether cc accepts -g... yes checking how to run the C preprocessor... cc -E checking for a BSD compatible install... /usr/bin/install -c -o root -g wheel checking whether ln -s works... yes checking whether gmake sets ${MAKE}... yes checking whether cc needs -traditional... no checking for xdr_void in -lnsl... no checking for bind in -lsocket... no checking for X... libraries /usr/X11R6/lib, headers /usr/X11R6/include checking for dnet_ntoa in -ldnet... no checking for dnet_ntoa in -ldnet_stub... no checking for gethostbyname... yes checking for connect... yes checking for remove... yes checking for shmat... yes checking for IceConnectionNumber in -lICE... yes checking for ANSI C header files... yes checking whether time.h and sys/time.h may both be included... yes checking for sys/wait.h that is POSIX.1 compatible... yes checking for fcntl.h... yes checking for sys/time.h... yes checking for sys/utsname.h... yes checking for unistd.h... yes checking for memory.h... yes checking for X11/SM/SMlib.h... yes checking for X11/extensions/Xdbe.h... yes checking for XineramaQueryScreens in -lXinerama... yes checking for X11/extensions/Xinerama.h... yes checking for rep - version >= 0.13... version 0.13.1 checking for GNU msgfmt... /usr/local/bin/msgfmt checking for correct rep-gtk version... no configure: error: You need rep-gtk version 0.14+ ===> Script "configure" failed: here are the contents of "config.log" This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. configure:632: checking host system type configure:667: checking for gcc configure:780: checking whether the C compiler (cc -O -pipe ) works configure:796: cc -o conftest -O -pipe -I/usr/local/include -I/usr/X11R6/include conftest.c -L/usr/local/lib 1>&5 configure:822: checking whether the C compiler (cc -O -pipe ) is a cross-compiler configure:827: checking whether we are using GNU C configure:836: cc -E conftest.c configure:855: checking whether cc accepts -g configure:887: checking how to run the C preprocessor configure:908: cc -E -I/usr/local/include -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out configure:978: checking for a BSD compatible install configure:1031: checking whether ln -s works configure:1052: checking whether gmake sets ${MAKE} configure:1080: checking whether cc needs -traditional configure:1105: termio.h: No such file or directory configure:1131: checking for xdr_void in -lnsl configure:1150: cc -o conftest -O -pipe -I/usr/local/include -I/usr/X11R6/include conftest.c -lnsl -L/usr/local/lib 1>&5 /usr/libexec/elf/ld: cannot find -lnsl configure: failed program was: #line 1139 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char xdr_void(); int main() { xdr_void() ; return 0; } configure:1178: checking for bind in -lsocket configure:1197: cc -o conftest -O -pipe -I/usr/local/include -I/usr/X11R6/include conftest.c -lsocket -L/usr/local/lib 1>&5 /usr/libexec/elf/ld: cannot find -lsocket configure: failed program was: #line 1186 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char bind(); int main() { bind() ; return 0; } configure:1230: checking for X configure:1544: checking for dnet_ntoa in -ldnet configure:1563: cc -o conftest -O -pipe -I/usr/local/include -I/usr/X11R6/include conftest.c -ldnet -L/usr/local/lib 1>&5 /usr/libexec/elf/ld: cannot find -ldnet configure: failed program was: #line 1552 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char dnet_ntoa(); int main() { dnet_ntoa() ; return 0; } configure:1585: checking for dnet_ntoa in -ldnet_stub configure:1604: cc -o conftest -O -pipe -I/usr/local/include -I/usr/X11R6/include conftest.c -ldnet_stub -L/usr/local/lib 1>&5 /usr/libexec/elf/ld: cannot find -ldnet_stub configure: failed program was: #line 1593 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char dnet_ntoa(); int main() { dnet_ntoa() ; return 0; } configure:1633: checking for gethostbyname configure:1661: cc -o conftest -O -pipe -I/usr/local/include -I/usr/X11R6/include conftest.c -L/usr/local/lib 1>&5 configure:1731: checking for connect configure:1759: cc -o conftest -O -pipe -I/usr/local/include -I/usr/X11R6/include conftest.c -L/usr/local/lib 1>&5 configure:1823: checking for remove configure:1851: cc -o conftest -O -pipe -I/usr/local/include -I/usr/X11R6/include conftest.c -L/usr/local/lib 1>&5 configure:1915: checking for shmat configure:1943: cc -o conftest -O -pipe -I/usr/local/include -I/usr/X11R6/include conftest.c -L/usr/local/lib 1>&5 configure:2016: checking for IceConnectionNumber in -lICE configure:2035: cc -o conftest -O -pipe -I/usr/local/include -I/usr/X11R6/include -L/usr/X11R6/lib conftest.c -lICE -L/usr/local/lib 1>&5 configure:2060: checking for ANSI C header files configure:2073: cc -E -I/usr/local/include -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out configure:2140: cc -o conftest -O -pipe -I/usr/local/include -I/usr/X11R6/include conftest.c -L/usr/local/lib 1>&5 configure:2164: checking whether time.h and sys/time.h may both be included configure:2178: cc -c -O -pipe -I/usr/local/include -I/usr/X11R6/include conftest.c 1>&5 configure:2199: checking for sys/wait.h that is POSIX.1 compatible configure:2220: cc -c -O -pipe -I/usr/local/include -I/usr/X11R6/include conftest.c 1>&5 configure:2244: checking for fcntl.h configure:2254: cc -E -I/usr/local/include -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out configure:2244: checking for sys/time.h configure:2254: cc -E -I/usr/local/include -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out configure:2244: checking for sys/utsname.h configure:2254: cc -E -I/usr/local/include -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out configure:2244: checking for unistd.h configure:2254: cc -E -I/usr/local/include -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out configure:2244: checking for memory.h configure:2254: cc -E -I/usr/local/include -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out configure:2244: checking for X11/SM/SMlib.h configure:2254: cc -E -I/usr/local/include -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out configure:2244: checking for X11/extensions/Xdbe.h configure:2254: cc -E -I/usr/local/include -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out configure:2284: checking for XineramaQueryScreens in -lXinerama configure:2303: cc -o conftest -O -pipe -I/usr/local/include -I/usr/X11R6/include conftest.c -lXinerama -L/usr/X11R6/lib -lX11 -lXext -L/usr/local/lib 1>&5 configure:2323: checking for X11/extensions/Xinerama.h configure:2333: cc -E -I/usr/local/include -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out configure:2379: checking for rep - version >= 0.13 configure:2411: checking for GNU msgfmt configure:2433: checking for correct rep-gtk version (end of "config.log") *** Error code 1 Stop in /usr/ports/x11-wm/sawfish. *** Error code 1 Stop in /usr/ports/x11-wm/sawfish. *** Error code 1 Stop in /usr/ports/x11-wm/sawfish. *** Error code 1 Stop in /usr/ports/x11-wm/sawfish. lament:/usr/ports/x11-wm/sawfish# exit lament:~$ pkg_info | grep rep | grep Lisp librep-0.13.2 An Emacs Lisp like runtime library rep-gtk-0.14_1 GTK+ binding for rep Lisp interpreter rep-gtk-gnome-0.14_1 GTK+ binding for rep Lisp interpreter >How-To-Repeat: lament:~# cd /usr/ports/x11-wm/sawfish && make >Fix: lament:~# pkg_add -r sawfish Notes: a number of other people i have spoke to have the same (or similar) problem. Also Josef Karthauser made me send the PR (: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 6:33: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from uswgco34.uswest.com (uswgco34.uswest.com [199.168.32.123]) by hub.freebsd.org (Postfix) with ESMTP id 3C99C37B479 for ; Fri, 10 Nov 2000 06:33:07 -0800 (PST) Received: from egate-ut2.uswc.uswest.com (egate-ut2.uswc.uswest.com [148.157.122.199]) by uswgco34.uswest.com (8.10.0/8.10.0) with ESMTP id eAAEX5v24231 for ; Fri, 10 Nov 2000 07:33:05 -0700 (MST) Received: from kc0dxw-2.uswc.uswest.com (localhost [127.0.0.1]) by egate-ut2.uswc.uswest.com (8.10.0/8.10.0) with ESMTP id eAAEX4708670 for ; Fri, 10 Nov 2000 07:33:04 -0700 (MST) Received: by kc0dxw-2.uswc.uswest.com (Postfix, from userid 1002) id 47B044F7; Fri, 10 Nov 2000 07:33:04 -0700 (MST) Date: Fri, 10 Nov 2000 07:33:04 -0700 From: Matt Meola To: Daniel Frazier Cc: ports@FreeBSD.ORG Subject: Re: Evolution port difficulties... Message-ID: <20001110073304.G38925@kc0dxw-2.uswc.uswest.com> Mail-Followup-To: Daniel Frazier , ports@FreeBSD.ORG References: <3A0B1C51.DE2CA38F@magpage.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.2.5i In-Reply-To: <3A0B1C51.DE2CA38F@magpage.com>; from dfrazier@magpage.com on Thu, Nov 09, 2000 at 09:51:13PM +0000 X-URL: http://www.qsl.net/kc0dxw X-OS: FreeBSD 4.1.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Nov 09, 2000 at 09:51:13PM +0000, Daniel Frazier wrote: > The latest evolution port manages to build fine, but when I run it it > hangs at the splash screen. In the README in the work/evolution-0.6 > dir it suggests running tools/verify-evolution-install.sh, which I did > and got the following results... Hey, another evolution user! Welcome into the brotherhood! Sorry for the hyperbole, it just seems that there's me, now you, and Ade, our esteemed port maintainer... Anyway, this is interesting; I get the same behavior with my machine at work, but at home, it comes up OK, just without the menubar. 0.5.1 was stable and useable. Has anyone else experienced evolution 0.6, either positively or negatively? -- Matt Meola KCØDXW Bailey, CO To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 6:40:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DB48937B4CF for ; Fri, 10 Nov 2000 06:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA40231; Fri, 10 Nov 2000 06:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id F0CF237B479; Fri, 10 Nov 2000 06:30:52 -0800 (PST) Message-Id: <20001110143052.F0CF237B479@hub.freebsd.org> Date: Fri, 10 Nov 2000 06:30:52 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/22740: Update port: audio/mp3encode Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22740 >Category: ports >Synopsis: Update port: audio/mp3encode >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Nov 10 06:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1.1-RELEASE i386 >Organization: >Environment: >Description: - Add RESTRICTED line (It seems every software using source from dist10.tar.gz have potential patent issue) - Support CC/CFLAGS/PREFIX properly - Change location of data files from lib/ to share/ >How-To-Repeat: >Fix: diff -urN /usr/ports/audio/mp3encode/Makefile audio/mp3encode/Makefile --- /usr/ports/audio/mp3encode/Makefile Mon Oct 30 23:29:43 2000 +++ audio/mp3encode/Makefile Fri Nov 10 23:26:21 2000 @@ -1,4 +1,4 @@ -# New ports collection makefile for: mp3encode +# New ports collection makefile for: mp3encode # Date created: 5th August, 1998 # Whom: Joel Sutton # @@ -7,20 +7,25 @@ PORTNAME= mp3encode PORTVERSION= 1.10 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= ftp://ftp.sunet.se/pub/multimedia/Berkeley/mpeg2/conformance-bitstreams/audio/mpeg2/software/technical_report/ DISTNAME= dist10 -MAINTAINER= ports@freebsd.org +MAINTAINER= ports@FreeBSD.org + +RESTRICTED= Condition is not clear WRKSRC= ${WRKDIR}/${DISTNAME}/lsf/encoder -ALL_TARGET= encode -HAS_CONFIGURE= yes + USE_GMAKE= yes +HAS_CONFIGURE= yes +CONFIGURE_ARGS= --prefix=${PREFIX} +ALL_TARGET= encode # Directories and extra files # -TABLE_LIB= ${PREFIX}/lib/mp3encode +TABLE_LIB= ${PREFIX}/share/mp3encode TABLE_LIB_SED= ${TABLE_LIB:S/\//\\\//g} TABLE_FILES= 1cb0 1cb1 1cb2 1cb4 1cb5 1cb6 1th0 1th1 1th2 1th4 1th5 1th6 \ 2cb0 2cb1 2cb2 2cb4 2cb5 2cb6 2th0 2th1 2th2 2th4 2th5 2th6 \ @@ -37,8 +42,8 @@ ${INSTALL_PROGRAM} ${WRKSRC}/encode ${PREFIX}/bin @${ECHO} "===> Installing table files" -${MKDIR} ${TABLE_LIB} - for file in ${TABLE_FILES} ; do \ - ${INSTALL_DATA} ${WRKSRC}/tables/$$file ${TABLE_LIB}/ ;\ - done +.for file in ${TABLE_FILES} + ${INSTALL_DATA} ${WRKSRC}/tables/${file} ${TABLE_LIB} +.endfor .include diff -urN /usr/ports/audio/mp3encode/files/patch-aa audio/mp3encode/files/patch-aa --- /usr/ports/audio/mp3encode/files/patch-aa Thu Dec 24 15:59:44 1998 +++ audio/mp3encode/files/patch-aa Wed Nov 8 05:12:46 2000 @@ -1,5 +1,22 @@ -*** Makefile.in.orig Wed May 20 22:00:23 1998 ---- Makefile.in Wed May 20 22:07:53 1998 +*** Makefile.in.orig Wed Jan 22 18:43:12 1997 +--- Makefile.in Wed Nov 8 05:12:34 2000 +*************** +*** 16,22 **** + ## Received from Mike Coleman + ############################################################################ + +! CC = gcc + + c_sources = \ + common.c \ +--- 16,22 ---- + ## Received from Mike Coleman + ############################################################################ + +! CC = @CC@ + + c_sources = \ + common.c \ *************** *** 40,46 **** @@ -13,7 +30,7 @@ NINT_SWITCH = @NINTSW@ -! CC_SWITCHES = -g -O3 -DUNIX -DBS_FORMAT=BINARY $(NINT_SWITCH) -DNDEBUG +! CC_SWITCHES = @CFLAGS@ -DUNIX -DBS_FORMAT=BINARY $(NINT_SWITCH) -DNDEBUG PGM = encode diff -urN /usr/ports/audio/mp3encode/pkg-plist audio/mp3encode/pkg-plist --- /usr/ports/audio/mp3encode/pkg-plist Thu Dec 24 15:59:44 1998 +++ audio/mp3encode/pkg-plist Wed Nov 8 05:21:38 2000 @@ -1,39 +1,39 @@ bin/encode -lib/mp3encode/1cb0 -lib/mp3encode/1cb1 -lib/mp3encode/1cb2 -lib/mp3encode/1cb4 -lib/mp3encode/1cb5 -lib/mp3encode/1cb6 -lib/mp3encode/1th0 -lib/mp3encode/1th1 -lib/mp3encode/1th2 -lib/mp3encode/1th4 -lib/mp3encode/1th5 -lib/mp3encode/1th6 -lib/mp3encode/2cb0 -lib/mp3encode/2cb1 -lib/mp3encode/2cb2 -lib/mp3encode/2cb4 -lib/mp3encode/2cb5 -lib/mp3encode/2cb6 -lib/mp3encode/2th0 -lib/mp3encode/2th1 -lib/mp3encode/2th2 -lib/mp3encode/2th4 -lib/mp3encode/2th5 -lib/mp3encode/2th6 -lib/mp3encode/absthr_0 -lib/mp3encode/absthr_1 -lib/mp3encode/absthr_2 -lib/mp3encode/alloc_0 -lib/mp3encode/alloc_1 -lib/mp3encode/alloc_2 -lib/mp3encode/alloc_3 -lib/mp3encode/alloc_4 -lib/mp3encode/dewindow -lib/mp3encode/enwindow -lib/mp3encode/huffcode -lib/mp3encode/huffdec -lib/mp3encode/psy_data -@dirrm lib/mp3encode +share/mp3encode/1cb0 +share/mp3encode/1cb1 +share/mp3encode/1cb2 +share/mp3encode/1cb4 +share/mp3encode/1cb5 +share/mp3encode/1cb6 +share/mp3encode/1th0 +share/mp3encode/1th1 +share/mp3encode/1th2 +share/mp3encode/1th4 +share/mp3encode/1th5 +share/mp3encode/1th6 +share/mp3encode/2cb0 +share/mp3encode/2cb1 +share/mp3encode/2cb2 +share/mp3encode/2cb4 +share/mp3encode/2cb5 +share/mp3encode/2cb6 +share/mp3encode/2th0 +share/mp3encode/2th1 +share/mp3encode/2th2 +share/mp3encode/2th4 +share/mp3encode/2th5 +share/mp3encode/2th6 +share/mp3encode/absthr_0 +share/mp3encode/absthr_1 +share/mp3encode/absthr_2 +share/mp3encode/alloc_0 +share/mp3encode/alloc_1 +share/mp3encode/alloc_2 +share/mp3encode/alloc_3 +share/mp3encode/alloc_4 +share/mp3encode/dewindow +share/mp3encode/enwindow +share/mp3encode/huffcode +share/mp3encode/huffdec +share/mp3encode/psy_data +@dirrm share/mp3encode >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 6:40:18 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 147ED37B4E5 for ; Fri, 10 Nov 2000 06:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA40240; Fri, 10 Nov 2000 06:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id D1D3937B479; Fri, 10 Nov 2000 06:31:47 -0800 (PST) Message-Id: <20001110143147.D1D3937B479@hub.freebsd.org> Date: Fri, 10 Nov 2000 06:31:47 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/22741: Update port: editors/biew to 5.2.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22741 >Category: ports >Synopsis: Update port: editors/biew to 5.2.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Nov 10 06:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1.1-RELEASE i386 >Organization: >Environment: >Description: - Update to version 5.2.0 New file: files/patch-ai files/patch-aj Remove file: files/patch-ah >How-To-Repeat: >Fix: diff -urN /usr/ports/editors/biew/Makefile editors/biew/Makefile --- /usr/ports/editors/biew/Makefile Thu Aug 3 21:09:28 2000 +++ editors/biew/Makefile Tue Oct 31 02:14:28 2000 @@ -6,11 +6,11 @@ # PORTNAME= biew -PORTVERSION= 5.1.2 +PORTVERSION= 5.2.0 CATEGORIES= editors MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} -DISTNAME= ${PORTNAME}-512 +DISTNAME= ${PORTNAME}-${PORTVERSION:S/.//g} MAINTAINER= ports@FreeBSD.org diff -urN /usr/ports/editors/biew/distinfo editors/biew/distinfo --- /usr/ports/editors/biew/distinfo Wed Aug 2 08:43:27 2000 +++ editors/biew/distinfo Tue Oct 31 02:17:34 2000 @@ -1 +1 @@ -MD5 (biew-512.tar.bz2) = 1106c6bde9e4348f3572cb87cf6d4572 +MD5 (biew-520.tar.bz2) = fa1a992ce9abd7538e7fc4ac23023c4d diff -urN /usr/ports/editors/biew/files/patch-ah editors/biew/files/patch-ah --- /usr/ports/editors/biew/files/patch-ah Tue Mar 21 08:51:37 2000 +++ editors/biew/files/patch-ah Thu Jan 1 09:00:00 1970 @@ -1,12 +0,0 @@ ---- bconsole.c.orig Fri Mar 3 11:08:17 2000 -+++ bconsole.c Sat Mar 4 19:44:57 2000 -@@ -33,9 +33,6 @@ - unsigned short Width,Height; - extern TWindow * ErrorWnd; - --#define TRUE 1 --#define FALSE 0 -- - #define MAXINPUT 79 - - #define FORMFEED 12 diff -urN /usr/ports/editors/biew/files/patch-ai editors/biew/files/patch-ai --- /usr/ports/editors/biew/files/patch-ai Thu Jan 1 09:00:00 1970 +++ editors/biew/files/patch-ai Fri Nov 10 21:40:05 2000 @@ -0,0 +1,15 @@ +--- tools/biewhlp/makefile.orig Mon Sep 25 00:35:56 2000 ++++ tools/biewhlp/makefile Fri Nov 10 21:37:47 2000 +@@ -62,7 +62,11 @@ + biewlib/biewlib.o\ + biewlib/file_ini.o\ + biewlib/pmalloc.o\ +-biewlib/sysdep/$(MACHINE)/$(HOST)/fileio.o ++biewlib/sysdep/$(MACHINE)/$(HOST)/fileio.o\ ++biewlib/sysdep/$(MACHINE)/$(HOST)/keyboard.o\ ++biewlib/sysdep/$(MACHINE)/$(HOST)/nls.o\ ++biewlib/sysdep/$(MACHINE)/$(HOST)/os_dep.o\ ++biewlib/sysdep/$(MACHINE)/$(HOST)/vio.o + all: $(TARGET) + + clean: diff -urN /usr/ports/editors/biew/files/patch-aj editors/biew/files/patch-aj --- /usr/ports/editors/biew/files/patch-aj Thu Jan 1 09:00:00 1970 +++ editors/biew/files/patch-aj Fri Nov 10 21:40:19 2000 @@ -0,0 +1,15 @@ +--- tools/lzss/makefile.orig Mon Sep 25 00:35:58 2000 ++++ tools/lzss/makefile Fri Nov 10 21:39:13 2000 +@@ -60,7 +60,11 @@ + biewlib/pmalloc.o\ + biewlib/bbio.o\ + biewlib/biewlib.o\ +-biewlib/sysdep/$(MACHINE)/$(HOST)/fileio.o ++biewlib/sysdep/$(MACHINE)/$(HOST)/fileio.o\ ++biewlib/sysdep/$(MACHINE)/$(HOST)/keyboard.o\ ++biewlib/sysdep/$(MACHINE)/$(HOST)/nls.o\ ++biewlib/sysdep/$(MACHINE)/$(HOST)/os_dep.o\ ++biewlib/sysdep/$(MACHINE)/$(HOST)/vio.o + all: $(TARGET) + + clean: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 6:40:23 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4D1C437B4FE for ; Fri, 10 Nov 2000 06:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA40258; Fri, 10 Nov 2000 06:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 4752937B479; Fri, 10 Nov 2000 06:33:16 -0800 (PST) Message-Id: <20001110143316.4752937B479@hub.freebsd.org> Date: Fri, 10 Nov 2000 06:33:16 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/22743: Update port: games/freesweep to 0.88 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22743 >Category: ports >Synopsis: Update port: games/freesweep to 0.88 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Nov 10 06:40:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1.1-RELEASE i386 >Organization: >Environment: >Description: - Update to version 0.88 >How-To-Repeat: >Fix: diff -urN /usr/ports/games/freesweep/Makefile games/freesweep/Makefile --- /usr/ports/games/freesweep/Makefile Tue Sep 26 20:09:06 2000 +++ games/freesweep/Makefile Mon Nov 6 22:06:30 2000 @@ -6,10 +6,9 @@ # PORTNAME= freesweep -PORTVERSION= 0.87 +PORTVERSION= 0.88 CATEGORIES= games MASTER_SITES= http://www.upl.cs.wisc.edu/~hartmann/sweep/ -DISTFILES= ${PORTNAME}.tar.gz MAINTAINER= ports@FreeBSD.org diff -urN /usr/ports/games/freesweep/distinfo games/freesweep/distinfo --- /usr/ports/games/freesweep/distinfo Sun Apr 2 09:57:44 2000 +++ games/freesweep/distinfo Mon Nov 6 22:07:15 2000 @@ -1 +1 @@ -MD5 (freesweep.tar.gz) = 3d728a53a831d0fe386e6b14bdd3cddd +MD5 (freesweep-0.88.tar.gz) = af88929fbb31c0bb700d1f61cb3ed218 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 6:40:25 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 32E1437B4F9 for ; Fri, 10 Nov 2000 06:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA40249; Fri, 10 Nov 2000 06:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 4615637B479; Fri, 10 Nov 2000 06:32:35 -0800 (PST) Message-Id: <20001110143235.4615637B479@hub.freebsd.org> Date: Fri, 10 Nov 2000 06:32:35 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/22742: Update port: emulators/atari800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22742 >Category: ports >Synopsis: Update port: emulators/atari800 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Nov 10 06:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1.1-RELEASE i386 >Organization: >Environment: >Description: - Support CC/X11BASE properly - Support install macros - freebsd.org -> FreeBSD.org - Change location of data files from lib/ to share/ - Exclude GPL doc from package >How-To-Repeat: >Fix: diff -urN /usr/ports/emulators/atari800/Makefile emulators/atari800/Makefile --- /usr/ports/emulators/atari800/Makefile Mon Oct 30 23:35:23 2000 +++ emulators/atari800/Makefile Wed Nov 8 02:01:09 2000 @@ -7,13 +7,14 @@ PORTNAME= atari800 PORTVERSION= 0.8.6 +PORTREVISION= 1 CATEGORIES= emulators MASTER_SITES= http://www.signus.demon.co.uk/Software/Portable/Atari800e/ \ http://cas3.zlin.vutbr.cz/~stehlik/a800/ DISTNAME= Atari800-${PORTVERSION} DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${EXTRA_FILES} -MAINTAINER= ports@freebsd.org +MAINTAINER= ports@FreeBSD.org BUILD_DEPENDS= unzip:${PORTSDIR}/archivers/unzip @@ -29,22 +30,21 @@ ATARI_DOC= ${PREFIX}/share/doc/atari ATARI_XF= ataribas.rom atariosb.rom atarixl.rom demos1.xfd \ demos2.xfd dos25.xfd mydos45d.atr -ATARI_LIB= ${PREFIX}/lib/atari +ATARI_LIB= ${PREFIX}/share/atari SED_CONFIG= ${ATARI_LIB:S/\//\\\//g} -DOC_FILES= BUGS CHANGES COPYING CREDITS INSTALL README TODO USAGE +DOC_FILES= BUGS CHANGES CREDITS INSTALL README TODO USAGE MAN1= atari800.1 post-extract: @${ECHO_MSG} "===> Unzipping ROM files" - unzip -Lo ${DISTDIR}/${DIST_SUBDIR}/${EXTRA_FILES} ${ATARI_XF}\ - -d ${WRKSRC}/ + unzip -q -L -o ${_DISTDIR}/${EXTRA_FILES} ${ATARI_XF} -d ${WRKSRC} @${ECHO_MSG} "===> Processing configuration file" ${SED} "s/GUMBY/${SED_CONFIG}/g" < ${FILESDIR}/atari800.cfg \ > ${WRKSRC}/atari800.cfg @${ECHO_MSG} "===> Copying config.h to work directory" - ${CP} ${FILESDIR}/config.h ${WRKSRC}/ + ${CP} ${FILESDIR}/config.h ${WRKSRC} @${ECHO_MSG} "===> Copying UNIX makefile" ${CP} ${WRKSRC}/Makefile.unix ${WRKSRC}/Makefile @@ -60,20 +60,19 @@ post-install: @${ECHO_MSG} "===> Installing files from xf25.zip" -${MKDIR} ${ATARI_LIB} - for file in ${ATARI_XF} ; do \ - ${INSTALL_DATA} ${WRKSRC}/$$file ${ATARI_LIB}/ ;\ - done +.for file in ${ATARI_XF} + ${INSTALL_DATA} ${WRKSRC}/${file} ${ATARI_LIB} +.endfor @${ECHO_MSG} "===> Installing configuration file" - ${INSTALL} -c -o root -g wheel -m 664 ${WRKSRC}/atari800.cfg \ - ${ATARI_LIB}/ + ${INSTALL_DATA} -m 664 ${WRKSRC}/atari800.cfg ${ATARI_LIB} -.if (!defined(NOPORTDOCS)) +.if !defined(NOPORTDOCS) @${ECHO_MSG} "===> Installing distribution document files" -${MKDIR} ${ATARI_DOC} - for file in ${DOC_FILES} ; do \ - ${INSTALL_DATA} ${WRKSRC}/$$file ${ATARI_DOC}/ ;\ - done +.for file in ${DOC_FILES} + ${INSTALL_DATA} ${WRKSRC}/${file} ${ATARI_DOC} +.endfor ${INSTALL_DATA} ${DESCR} ${ATARI_DOC}/README.FreeBSD .endif diff -urN /usr/ports/emulators/atari800/files/patch-aa emulators/atari800/files/patch-aa --- /usr/ports/emulators/atari800/files/patch-aa Mon Feb 7 06:46:27 2000 +++ emulators/atari800/files/patch-aa Wed Nov 8 01:54:59 2000 @@ -1,12 +1,16 @@ ---- Makefile.orig Sun Feb 6 16:38:57 2000 -+++ Makefile Sun Feb 6 16:40:45 2000 -@@ -6,12 +6,12 @@ +--- Makefile.unix Sat Feb 21 10:39:13 1998 ++++ Makefile Wed Nov 8 01:54:54 2000 +@@ -4,14 +4,14 @@ + # if they cause a problem on your system. + # - CC = gcc +-CC = gcc ++CC ?= gcc CPPFLAGS = $(OTHER) -CFLAGS = -c -O6 -DGNU_C -+CFLAGS+= -c -DGNU_C - LD = gcc +-LD = gcc ++CFLAGS += -c -DGNU_C ++LD = $(CC) LDFLAGS = LDLIBS = -lm @@ -15,6 +19,29 @@ BIN_PATH = ${PREFIX}/bin LIB_PATH = ${PREFIX}/lib MAN_PATH = ${PREFIX}/man +@@ -195,16 +195,16 @@ + OBJ="atari_curses.o" + + freebsd-x11 : +- make atari800 \ +- CPPFLAGS="-I/usr/X11R6/include" \ +- LDFLAGS="-L/usr/X11R6/lib" \ ++ $(MAKE) atari800 \ ++ CPPFLAGS="-I${X11BASE}/include" \ ++ LDFLAGS="-L${X11BASE}/lib" \ + LDLIBS="-lX11 -lm" \ + OBJ="atari_x11.o" + + freebsd-x11-shm : +- make atari800 \ +- CPPFLAGS="-I/usr/X11R6/include -DSHM" \ +- LDFLAGS="-L/usr/X11R6/lib" \ ++ $(MAKE) atari800 \ ++ CPPFLAGS="-I${X11BASE}/include -DSHM" \ ++ LDFLAGS="-L${X11BASE}/lib" \ + LDLIBS="-lX11 -lXext -lm" \ + OBJ="atari_x11.o" + @@ -246,7 +246,6 @@ platform.h @@ -23,3 +50,11 @@ configure : configure.o prompts.o $(LD) $(LDFLAGS) configure.o prompts.o $(LDLIBS) -o configure +@@ -348,5 +347,5 @@ + chmod 4755 ${BIN_PATH}/atari800 + + install : +- cp atari800 ${BIN_PATH}/atari800 +- cp atari800.man ${MAN_PATH}/man1/atari800.1 ++ ${BSD_INSTALL_PROGRAM} atari800 ${BIN_PATH}/atari800 ++ ${BSD_INSTALL_MAN} atari800.man ${MAN_PATH}/man1/atari800.1 diff -urN /usr/ports/emulators/atari800/pkg-plist emulators/atari800/pkg-plist --- /usr/ports/emulators/atari800/pkg-plist Wed Mar 31 01:32:35 1999 +++ emulators/atari800/pkg-plist Wed Nov 8 00:44:03 2000 @@ -1,20 +1,19 @@ bin/atari800 +share/atari/atari800.cfg +share/atari/ataribas.rom +share/atari/atariosb.rom +share/atari/atarixl.rom +share/atari/demos1.xfd +share/atari/demos2.xfd +share/atari/dos25.xfd +share/atari/mydos45d.atr share/doc/atari/BUGS share/doc/atari/CHANGES -share/doc/atari/COPYING share/doc/atari/CREDITS share/doc/atari/INSTALL share/doc/atari/README +share/doc/atari/README.FreeBSD share/doc/atari/TODO share/doc/atari/USAGE -share/doc/atari/README.FreeBSD -lib/atari/atari800.cfg -lib/atari/ataribas.rom -lib/atari/atariosb.rom -lib/atari/atarixl.rom -lib/atari/demos1.xfd -lib/atari/demos2.xfd -lib/atari/dos25.xfd -lib/atari/mydos45d.atr @dirrm share/doc/atari -@dirrm lib/atari +@dirrm share/atari >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 6:40:29 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6656237B657 for ; Fri, 10 Nov 2000 06:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA40267; Fri, 10 Nov 2000 06:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id A083D37B479; Fri, 10 Nov 2000 06:33:57 -0800 (PST) Message-Id: <20001110143357.A083D37B479@hub.freebsd.org> Date: Fri, 10 Nov 2000 06:33:57 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/22744: Update port: games/spellcast to 1.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22744 >Category: ports >Synopsis: Update port: games/spellcast to 1.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Nov 10 06:40:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1.1-RELEASE i386 >Organization: >Environment: >Description: - Update to version 1.2 >How-To-Repeat: >Fix: diff -urN /usr/ports/games/spellcast/Makefile games/spellcast/Makefile --- /usr/ports/games/spellcast/Makefile Sat Apr 15 00:24:02 2000 +++ games/spellcast/Makefile Fri Nov 10 19:31:23 2000 @@ -6,11 +6,11 @@ # PORTNAME= spellcast -PORTVERSION= 1.1 +PORTVERSION= 1.2 CATEGORIES= games -MASTER_SITES= ${MASTER_SITE_SUNSITE} \ - http://www.macula.net/lightside/ -MASTER_SITE_SUBDIR= games/multiplayer +MASTER_SITES= http://www.eblong.com/zarf/ftp/ +DISTNAME= ${PORTNAME} +EXTRACT_SUFX= .tar.Z MAINTAINER= ports@FreeBSD.org @@ -22,7 +22,7 @@ ${INSTALL_MAN} ${WRKSRC}/spellcast.6 ${PREFIX}/man/man6 .if !defined(NOPORTDOCS) @${MKDIR} ${PREFIX}/share/doc/spellcast -.for file in README.1 README.2 spelllist.ps +.for file in README spelllist.ps ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/spellcast .endfor .endif diff -urN /usr/ports/games/spellcast/distinfo games/spellcast/distinfo --- /usr/ports/games/spellcast/distinfo Sat Aug 1 04:32:38 1998 +++ games/spellcast/distinfo Fri Nov 10 19:23:22 2000 @@ -1 +1 @@ -MD5 (spellcast-1.1.tar.gz) = 79f9e6557da426e8eddd3bc9d09f601b +MD5 (spellcast.tar.Z) = 6aab445abaff102188e7a4e887a42286 diff -urN /usr/ports/games/spellcast/files/patch-aa games/spellcast/files/patch-aa --- /usr/ports/games/spellcast/files/patch-aa Sun Apr 2 09:59:09 2000 +++ games/spellcast/files/patch-aa Fri Nov 10 19:26:01 2000 @@ -1,16 +1,16 @@ ---- Makefile.orig Sat Sep 13 14:44:20 1997 -+++ Makefile Thu Mar 30 01:49:24 2000 -@@ -24,11 +24,11 @@ +--- Makefile.orig Sat Jan 15 07:41:10 1994 ++++ Makefile Fri Nov 10 19:25:53 2000 +@@ -22,11 +22,11 @@ # all the time, try uncommenting the next line. #OTHERLIBS = -lbsdmalloc --CFLAGS = -g0 -O2 -Wall -Wno-implicit -I/usr/local/include -I./bitmaps -DBODYFONT=$(FONT1) \ -+CFLAGS+= -I${X11BASE}/include -I./bitmaps -DBODYFONT=$(FONT1) \ +-CFLAGS = -g -I/usr/local/include -I./bitmaps -DBODYFONT=$(FONT1) \ ++CFLAGS += -I${X11BASE}/include -I./bitmaps -DBODYFONT=$(FONT1) \ -DBODYFONT_ALT=$(FONT2) -DBODYFONT_ALT2=$(FONT3) -DTRANSCRIPTDIR=$(LOGDIR) --LFLAGS = -g0 -Wall -Wno-implicit -+#LFLAGS = -g0 -Wall -Wno-implicit +-LFLAGS = -g ++LFLAGS = --XLIB = -L/usr/local/lib -L/usr/X11/lib -lX11 +-XLIB = -L/usr/local/lib -lX11 +XLIB = -L${X11BASE}/lib -lX11 OBJS = engine.o espells.o execute.o execute2.o emonster.o etran.o diff -urN /usr/ports/games/spellcast/pkg-descr games/spellcast/pkg-descr --- /usr/ports/games/spellcast/pkg-descr Sun Apr 2 09:59:11 2000 +++ games/spellcast/pkg-descr Fri Nov 10 19:21:37 2000 @@ -11,4 +11,4 @@ duel but would be interested to discover how realistic the game is for those who have... -WWW: http://www.macula.net/lightside/ftp.html +WWW: http://www.eblong.com/zarf/spellcast.html diff -urN /usr/ports/games/spellcast/pkg-plist games/spellcast/pkg-plist --- /usr/ports/games/spellcast/pkg-plist Sun Apr 2 09:59:11 2000 +++ games/spellcast/pkg-plist Fri Nov 10 19:31:30 2000 @@ -1,5 +1,4 @@ bin/spellcast -share/doc/spellcast/README.1 -share/doc/spellcast/README.2 +share/doc/spellcast/README share/doc/spellcast/spelllist.ps @dirrm share/doc/spellcast >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 6:40:37 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 848BB37B4C5 for ; Fri, 10 Nov 2000 06:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA40276; Fri, 10 Nov 2000 06:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 178FE37B4C5; Fri, 10 Nov 2000 06:35:02 -0800 (PST) Message-Id: <20001110143502.178FE37B4C5@hub.freebsd.org> Date: Fri, 10 Nov 2000 06:35:02 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/22745: Update port: games/xnibbles Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22745 >Category: ports >Synopsis: Update port: games/xnibbles >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Nov 10 06:40:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1.1-RELEASE i386 >Organization: >Environment: >Description: - Support CXX/CXXFLAGS propelry >How-To-Repeat: >Fix: diff -urN /usr/ports/games/xnibbles/Makefile games/xnibbles/Makefile --- /usr/ports/games/xnibbles/Makefile Thu Aug 3 21:14:03 2000 +++ games/xnibbles/Makefile Wed Nov 8 22:49:58 2000 @@ -9,37 +9,37 @@ PORTVERSION= 1.0.b3 CATEGORIES= games MASTER_SITES= http://www.tjhsst.edu/xnibbles/ -DISTNAME= xnibbles-1.0BETA3 +DISTNAME= ${PORTNAME}-${PORTVERSION:S/.b/BETA/} MAINTAINER= ports@FreeBSD.org -ALL_TARGET= linux -USE_GMAKE= yes +WRKSRC= ${WRKDIR}/${PORTNAME} + USE_X_PREFIX= yes USE_XPM= yes -WRKSRC= ${WRKDIR}/xnibbles +USE_GMAKE= yes +MAKE_ENV= CXX="${CXX}" CXXFLAGS="${CXXFLAGS}" +ALL_TARGET= linux MAN6= xnibbles.6 -CFLAGS+= -I ${X11BASE}/include -L ${X11BASE}/lib - do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/xnibbles ${PREFIX}/bin - @${INSTALL_MAN} ${WRKSRC}/xnibbles.6 ${PREFIX}/man/man6 + ${INSTALL_PROGRAM} ${WRKSRC}/xnibbles ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/xnibbles.6 ${MANPREFIX}/man/man6 @${MKDIR} ${PREFIX}/share/xnibbles/sounds - @${INSTALL_DATA} ${WRKSRC}/sounds/*.ub ${PREFIX}/share/xnibbles/sounds + ${INSTALL_DATA} ${WRKSRC}/sounds/*.ub ${PREFIX}/share/xnibbles/sounds @${MKDIR} ${PREFIX}/share/xnibbles/levels - @if [ -f ${PREFIX}/share/xnibbles/levels/LEVELS ]; then \ - ${RM} ${PREFIX}/share/xnibbles/levels/LEVELS; \ - fi +.if exists(${PREFIX}/share/xnibbles/levels/LEVELS) + @${RM} ${PREFIX}/share/xnibbles/levels/LEVELS +.endif @${TOUCH} ${PREFIX}/share/xnibbles/levels/LEVELS .for file in 001 002 003 004 005 006 007 008 009 010 011 012 @${ECHO} ${PREFIX}/share/xnibbles/levels/level${file}.xnl >> ${PREFIX}/share/xnibbles/levels/LEVELS - @${INSTALL_DATA} ${WRKSRC}/levels/*.xnl ${PREFIX}/share/xnibbles/levels + ${INSTALL_DATA} ${WRKSRC}/levels/*.xnl ${PREFIX}/share/xnibbles/levels .endfor @${MKDIR} ${PREFIX}/share/doc/xnibbles - @${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/xnibbles - @${INSTALL_DATA} ${WRKSRC}/TODO ${PREFIX}/share/doc/xnibbles - @${INSTALL_DATA} ${WRKSRC}/levels/README ${PREFIX}/share/doc/xnibbles/README.levels + ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/xnibbles + ${INSTALL_DATA} ${WRKSRC}/TODO ${PREFIX}/share/doc/xnibbles + ${INSTALL_DATA} ${WRKSRC}/levels/README ${PREFIX}/share/doc/xnibbles/README.levels .include diff -urN /usr/ports/games/xnibbles/files/patch-aa games/xnibbles/files/patch-aa --- /usr/ports/games/xnibbles/files/patch-aa Wed Jun 23 02:42:56 1999 +++ games/xnibbles/files/patch-aa Wed Nov 8 22:45:53 2000 @@ -1,39 +1,28 @@ ---- Makefile.orig Wed Feb 25 18:14:35 1998 -+++ Makefile Sun Jun 20 19:14:23 1999 -@@ -23,12 +23,14 @@ - # Compiler to use (C++ compiler _please_) - CC = g++ +--- Makefile.orig Thu Feb 26 09:14:35 1998 ++++ Makefile Wed Nov 8 22:45:42 2000 +@@ -25,10 +25,10 @@ -- # Directory for XNibbles specific data -- # This must be set correctly at compile time + # Directory for XNibbles specific data + # This must be set correctly at compile time - DATADIR = /usr/local/games/xnibbles -- ++ DATADIR = ${PREFIX}/share/xnibbles + # Prefix to find bin and man directories for installation -+ifndef PREFIX - PREFIX = /usr/local -+endif -+ -+ # Directory for XNibbles specific data -+ # This must be set correctly at compile time -+ DATADIR = $(PREFIX)/share/xnibbles +- PREFIX = /usr/local ++ PREFIX ?= /usr/local # Install program INSTALL = /usr/bin/install -@@ -40,7 +42,7 @@ - ### LINUX ONLY OPTIONS ### - - # Requires kernel sound support, change from 0 to 1 if you want it -- SOUND = 0 -+ #SOUND = 0 - SOUNDDEV = /dev/dsp +@@ -76,9 +76,9 @@ - # Requires kernel joystick support, change from 0 to 1 if you want it -@@ -77,7 +79,7 @@ linux: $(MAKE) OBJECTS=$(OBJECTS) \ - CC=$(CC) LDFLAGS='-L/usr/X11R6/lib' \ +- CC=$(CC) LDFLAGS='-L/usr/X11R6/lib' \ - CFLAGS='-Wall -O2 $(SDEV) \ -+ CFLAGS+='-Wall $(SDEV) \ - -I/usr/X11R6/include -fwritable-strings \ +- -I/usr/X11R6/include -fwritable-strings \ ++ CC=${CXX} LDFLAGS='-L${X11BASE}/lib' \ ++ CFLAGS='${CXXFLAGS} $(SDEV) \ ++ -I${X11BASE}/include -fwritable-strings \ $(JDEV) -DDATADIR=\"$(DATADIR)\"' \ xnibbles + >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 6:40:39 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A7B9E37B4D7 for ; Fri, 10 Nov 2000 06:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA40285; Fri, 10 Nov 2000 06:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 373D637B4C5; Fri, 10 Nov 2000 06:39:20 -0800 (PST) Message-Id: <20001110143920.373D637B4C5@hub.freebsd.org> Date: Fri, 10 Nov 2000 06:39:20 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/22746: Update port: games/yahtzee Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22746 >Category: ports >Synopsis: Update port: games/yahtzee >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Nov 10 06:40:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1.1-RELEASE i386 >Organization: >Environment: >Description: - Support CFLAGS/PREFIX properly - freebsd.org -> FreeBSD.org - Change location of data files from lib/ to share/ >How-To-Repeat: >Fix: diff -urN /usr/ports/games/yahtzee/Makefile games/yahtzee/Makefile --- /usr/ports/games/yahtzee/Makefile Mon Oct 30 23:37:51 2000 +++ games/yahtzee/Makefile Fri Nov 10 23:39:11 2000 @@ -1,28 +1,28 @@ -# New ports collection makefile for: yahtzee +# New ports collection makefile for: yahtzee # Date created: Friday 4th July, 1997 # Whom: Joel Sutton -# FreeBSD Version: 2.2.1-RELEASE # # $FreeBSD: ports/games/yahtzee/Makefile,v 1.6 2000/10/29 06:31:36 dougb Exp $ # -PORTNAME= yahtzee -PORTVERSION= 1.0 -CATEGORIES= games -MASTER_SITES= ${MASTER_SITE_SUNSITE} +PORTNAME= yahtzee +PORTVERSION= 1.0 +PORTREVISION= 1 +CATEGORIES= games +MASTER_SITES= ${MASTER_SITE_SUNSITE} MASTER_SITE_SUBDIR= games/strategy -DISTFILES= yahtzee-src.tar.Z +DISTNAME= ${PORTNAME}-src +EXTRACT_SUFX= .tar.Z -MAINTAINER= ports@freebsd.org +MAINTAINER= ports@FreeBSD.org -WRKSRC= ${WRKDIR}/yahtzee +WRKSRC= ${WRKDIR}/${PORTNAME} # Distribution does not include an install target. So here it is. # do-install: - ${INSTALL_PROGRAM} -m 2755 -o root -g games ${WRKSRC}/yahtzee ${PREFIX}/bin/ - ${MKDIR} -m 0755 ${PREFIX}/lib/yahtzee/ - ${INSTALL_DATA} -m 0664 -o root -g games /dev/null ${PREFIX}/lib/yahtzee/yahtzee.sco + ${INSTALL_PROGRAM} -m 2755 -o root -g games ${WRKSRC}/yahtzee ${PREFIX}/bin + ${MKDIR} -m 0755 ${PREFIX}/share/yahtzee + ${INSTALL_DATA} -m 0664 -o root -g games /dev/null ${PREFIX}/share/yahtzee/yahtzee.sco .include - diff -urN /usr/ports/games/yahtzee/files/patch-aa games/yahtzee/files/patch-aa --- /usr/ports/games/yahtzee/files/patch-aa Fri Jul 4 18:36:40 1997 +++ games/yahtzee/files/patch-aa Wed Nov 8 04:48:49 2000 @@ -1,22 +1,21 @@ -*** Makefile.orig Sun Apr 13 14:17:07 1997 ---- Makefile Sun Apr 13 14:17:54 1997 -*************** -*** 1,4 **** -! CFLAGS = - - OBJ = computer.o main.o - ---- 1,4 ---- -! CFLAGS = -O -DHAS_RENAME - - OBJ = computer.o main.o - -*************** -*** 13,15 **** ---- 13,17 ---- - rm -f $(OBJ) $(BIN) - - $(OBJ): yahtzee.h config.h -+ -+ all: $(BIN) $(OBJ) -\ No newline at end of file +--- Makefile.orig Sat Jan 25 17:45:26 1992 ++++ Makefile Wed Nov 8 04:48:42 2000 +@@ -1,4 +1,4 @@ +-CFLAGS = ++CFLAGS += -DHAS_RENAME -DSCOREDIR=\"$(PREFIX)/share/yahtzee\" + + OBJ = computer.o main.o + +@@ -7,9 +7,11 @@ + BIN = yahtzee + + $(BIN): $(OBJ) +- cc -o $@ $(OBJ) -lcurses ++ $(CC) -o $@ $(OBJ) -lcurses + + clean: + rm -f $(OBJ) $(BIN) + + $(OBJ): yahtzee.h config.h ++ ++all: $(BIN) $(OBJ) diff -urN /usr/ports/games/yahtzee/files/patch-ab games/yahtzee/files/patch-ab --- /usr/ports/games/yahtzee/files/patch-ab Fri Jul 4 18:36:40 1997 +++ games/yahtzee/files/patch-ab Wed Nov 8 04:48:03 2000 @@ -1,19 +1,12 @@ -*** config.h.orig Sun Apr 13 13:48:41 1997 ---- config.h Sun Apr 13 13:48:54 1997 -*************** -*** 1,7 **** - #ifndef _config_H_ - #define _config_H_ - -! #define SCOREDIR "/usr/local/lib" - #define SCOREFNAME "yahtzee.sco" /* must allow .L extension */ - - #define NUM_TOP_PLAYERS 10 ---- 1,7 ---- - #ifndef _config_H_ - #define _config_H_ - -! #define SCOREDIR "/usr/local/lib/yahtzee" - #define SCOREFNAME "yahtzee.sco" /* must allow .L extension */ - - #define NUM_TOP_PLAYERS 10 +--- config.h.orig Sat Jan 25 17:41:05 1992 ++++ config.h Wed Nov 8 04:47:56 2000 +@@ -1,7 +1,9 @@ + #ifndef _config_H_ + #define _config_H_ + ++#ifndef SCOREDIR + #define SCOREDIR "/usr/local/lib" ++#endif + #define SCOREFNAME "yahtzee.sco" /* must allow .L extension */ + + #define NUM_TOP_PLAYERS 10 diff -urN /usr/ports/games/yahtzee/pkg-plist games/yahtzee/pkg-plist --- /usr/ports/games/yahtzee/pkg-plist Mon Sep 28 11:34:32 1998 +++ games/yahtzee/pkg-plist Wed Nov 8 04:52:36 2000 @@ -1,3 +1,3 @@ bin/yahtzee -lib/yahtzee/yahtzee.sco -@dirrm lib/yahtzee +share/yahtzee/yahtzee.sco +@dirrm share/yahtzee >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 6:41:20 2000 Delivered-To: freebsd-ports@freebsd.org Received: from cj.vallcom.net (unknown [213.239.10.181]) by hub.freebsd.org (Postfix) with ESMTP id 3FC7537B479 for ; Fri, 10 Nov 2000 06:41:17 -0800 (PST) Received: from vallcom.net (cj@localhost [127.0.0.1]) by cj.vallcom.net (8.11.1/8.11.1) with ESMTP id eAAEdgx06597; Fri, 10 Nov 2000 15:39:43 +0100 Message-ID: <3A0C08A6.BF0CA98B@vallcom.net> Date: Fri, 10 Nov 2000 15:39:35 +0100 From: Carl Johan Madestrand X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.16 i586) X-Accept-Language: en MIME-Version: 1.0 To: Matt Meola Cc: ports@freebsd.org Subject: Re: Evolution port difficulties... References: <3A0B1C51.DE2CA38F@magpage.com> <20001110073304.G38925@kc0dxw-2.uswc.uswest.com> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Matt Meola wrote: > On Thu, Nov 09, 2000 at 09:51:13PM +0000, Daniel Frazier wrote: > > The latest evolution port manages to build fine, but when I run it it > > hangs at the splash screen. In the README in the work/evolution-0.6 > > dir it suggests running tools/verify-evolution-install.sh, which I did > > and got the following results... > > Hey, another evolution user! Welcome into the brotherhood! > > Sorry for the hyperbole, it just seems that there's me, now you, and Ade, > our esteemed port maintainer... > > Anyway, this is interesting; I get the same behavior with my machine at > work, but at home, it comes up OK, just without the menubar. 0.5.1 was > stable and useable. > > Has anyone else experienced evolution 0.6, either positively or negatively? > > -- > Matt Meola KCØDXW > Bailey, CO > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message I just tried evolution myself. It does not get very far, hangs at startup. I have to kill the whole thing. -- Carl Johan Madestrand LoRd_CJ on IRC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 6:50: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 85D1137B4C5 for ; Fri, 10 Nov 2000 06:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA41249; Fri, 10 Nov 2000 06:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id A9C3737B4E5; Fri, 10 Nov 2000 06:40:20 -0800 (PST) Message-Id: <20001110144020.A9C3737B4E5@hub.freebsd.org> Date: Fri, 10 Nov 2000 06:40:20 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/22747: Update port: games/ztrack Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22747 >Category: ports >Synopsis: Update port: games/ztrack >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Nov 10 06:50:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1.1-RELEASE i386 >Organization: >Environment: >Description: - Support CC/CFLAGS properly >How-To-Repeat: >Fix: diff -urN /usr/ports/games/ztrack/Makefile games/ztrack/Makefile --- /usr/ports/games/ztrack/Makefile Sat Apr 15 00:24:46 2000 +++ games/ztrack/Makefile Wed Nov 8 22:33:30 2000 @@ -13,12 +13,14 @@ MAINTAINER= ports@FreeBSD.org -WRKSRC= ${WRKDIR}/ztrack +WRKSRC= ${WRKDIR}/${PORTNAME} + +MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS} -DHAVE_RANDOM" ALL_TARGET= ztrack MAN6= ztrack.6 do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/ztrack ${PREFIX}/bin/ztrack - @${INSTALL_MAN} ${WRKSRC}/ztrack.6 ${PREFIX}/man/man6 + ${INSTALL_PROGRAM} ${WRKSRC}/ztrack ${PREFIX}/bin/ztrack + ${INSTALL_MAN} ${WRKSRC}/ztrack.6 ${MANPREFIX}/man/man6 .include >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 6:50:21 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C7F1637B4E5 for ; Fri, 10 Nov 2000 06:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA41267; Fri, 10 Nov 2000 06:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id CAA2F37B4C5; Fri, 10 Nov 2000 06:42:30 -0800 (PST) Message-Id: <20001110144230.CAA2F37B4C5@hub.freebsd.org> Date: Fri, 10 Nov 2000 06:42:30 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/22749: Update port: misc/ytree to 1.71 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22749 >Category: ports >Synopsis: Update port: misc/ytree to 1.71 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Nov 10 06:50:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1.1-RELEASE i386 >Organization: >Environment: >Description: - Update to version 1.71 >How-To-Repeat: >Fix: diff -urN /usr/ports/misc/ytree/Makefile misc/ytree/Makefile --- /usr/ports/misc/ytree/Makefile Mon May 1 21:50:13 2000 +++ misc/ytree/Makefile Wed Nov 8 04:00:02 2000 @@ -5,26 +5,26 @@ # $FreeBSD: ports/misc/ytree/Makefile,v 1.10 2000/04/30 20:15:23 steve Exp $ # -PORTNAME= ytree -PORTVERSION= 1.67 -CATEGORIES= misc -MASTER_SITES= http://www.han.de/~werner/ +PORTNAME= ytree +PORTVERSION= 1.71 +CATEGORIES= misc +MASTER_SITES= http://www.han.de/~werner/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= ports@FreeBSD.org FETCH_BEFORE_ARGS= -b -ALL_TARGET= -MAN1= ytree.1 +ALL_TARGET= # empty +MAN1= ytree.1 do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/ytree ${PREFIX}/bin - @${INSTALL_DATA} ${WRKSRC}/ytree.conf ${PREFIX}/etc/ytree.conf.sample - @${INSTALL_MAN} ${WRKSRC}/ytree.1 ${PREFIX}/man/man1 + ${INSTALL_PROGRAM} ${WRKSRC}/ytree ${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/ytree.conf ${PREFIX}/etc/ytree.conf.sample + ${INSTALL_MAN} ${WRKSRC}/ytree.1 ${MANPREFIX}/man/man1 .if !defined(NOPORTDOCS) @${MKDIR} ${PREFIX}/share/doc/ytree -.for file in CHANGES COPYING README THANKS - @${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/ytree +.for file in CHANGES README THANKS + ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/ytree .endfor .endif diff -urN /usr/ports/misc/ytree/distinfo misc/ytree/distinfo --- /usr/ports/misc/ytree/distinfo Mon May 1 05:15:28 2000 +++ misc/ytree/distinfo Wed Nov 8 03:51:51 2000 @@ -1 +1 @@ -MD5 (ytree-1.67.tar.gz) = 2e2337eae3988f4f753518d2d2f5762e +MD5 (ytree-1.71.tar.gz) = e5d6f5be398924fd6cc6bc379a5f4148 diff -urN /usr/ports/misc/ytree/files/patch-aa misc/ytree/files/patch-aa --- /usr/ports/misc/ytree/files/patch-aa Mon May 1 05:15:29 2000 +++ misc/ytree/files/patch-aa Wed Nov 8 04:20:45 2000 @@ -1,6 +1,6 @@ ---- Makefile.orig Sun Jan 2 08:17:33 2000 -+++ Makefile Thu Mar 30 20:28:01 2000 -@@ -6,13 +6,13 @@ +--- Makefile.orig Sun Jul 16 07:01:56 2000 ++++ Makefile Wed Nov 8 04:15:59 2000 +@@ -6,7 +6,7 @@ # ############################################################################ @@ -9,34 +9,27 @@ # # ADD_CFLAGS: Add -DVI_KEYS if you want vi-cursor-keys - # - --ADD_CFLAGS = -O # -DVI_KEYS -+#ADD_CFLAGS = -O # -DVI_KEYS - - LFLAGS = - BINDIR = /usr/bin -@@ -27,10 +27,10 @@ +@@ -25,10 +25,10 @@ + ########################### + # LINUX (testet with ncurses 5.0) ########################### - # If color doesn't work, comment out - # the following line and recompile --COLOR = -DCOLOR_SUPPORT -+#COLOR = -DCOLOR_SUPPORT - #CLOCK = -DCLOCK_SUPPORT +-COLOR = -DCOLOR_SUPPORT ++#COLOR = -DCOLOR_SUPPORT + #CLOCK = -DCLOCK_SUPPORT # Experimental! -CFLAGS = $(ADD_CFLAGS) $(COLOR) $(CLOCK) -LIBS = -lncurses +#CFLAGS = $(ADD_CFLAGS) $(COLOR) $(CLOCK) +#LIBS = -lncurses ########################### - # LINUX without ncurses -@@ -41,8 +41,8 @@ + # LINUX (X11 using PDCurses) thanks to Mark Hessling +@@ -43,8 +43,8 @@ ########################### # FreeBSD (Thanks to Peter Brevik) ########################### -#CFLAGS = -DCOLOR_SUPPORT -DNCURSES -#LIBS = -lncurses -lmytinfo -lcompat -+CFLAGS += -DCOLOR_SUPPORT -DNCURSES ++CFLAGS += -DCOLOR_SUPPORT -DNCURSES +LIBS = -lncurses -lmytinfo -lcompat ########################### diff -urN /usr/ports/misc/ytree/files/patch-af misc/ytree/files/patch-af --- /usr/ports/misc/ytree/files/patch-af Wed Dec 9 19:46:59 1998 +++ misc/ytree/files/patch-af Wed Nov 8 04:04:12 2000 @@ -1,9 +1,9 @@ ---- dirwin.c.orig Wed Dec 9 15:35:50 1998 -+++ dirwin.c Wed Dec 9 15:35:59 1998 -@@ -163,7 +163,7 @@ - ERROR_MSG("malloc() Failed*Abort"); - exit(1); - } +--- dirwin.c.orig Sun Jul 16 07:01:56 2000 ++++ dirwin.c Wed Nov 8 04:03:59 2000 +@@ -168,7 +168,7 @@ + modify_time + ); + #else - (void) strcpy( format, "%10s %3d %7d %12s"); + (void) strcpy( format, "%10s %3d %7qd %12s"); (void) sprintf( line_buffer, format, attributes, diff -urN /usr/ports/misc/ytree/files/patch-ag misc/ytree/files/patch-ag --- /usr/ports/misc/ytree/files/patch-ag Wed Dec 9 19:46:59 1998 +++ misc/ytree/files/patch-ag Wed Nov 8 03:57:40 2000 @@ -1,9 +1,18 @@ ---- filewin.c.orig Wed Dec 9 15:36:15 1998 -+++ filewin.c Wed Dec 9 15:36:28 1998 -@@ -535,7 +535,7 @@ - } - else - { +--- filewin.c.orig Sun Jul 16 07:01:56 2000 ++++ filewin.c Wed Nov 8 03:57:29 2000 +@@ -549,7 +549,7 @@ + sym_link_name + ); + #else +- (void) sprintf( format, "%%c%%+%ds %%10s %%3d %%7d %%12s -> %%-%ds", ++ (void) sprintf( format, "%%c%%+%ds %%10s %%3d %%7qd %%12s -> %%-%ds", + max_filename_len, + max_linkname_len + ); +@@ -582,7 +582,7 @@ + modify_time + ); + #else - (void) sprintf( format, "%%c%%%c%ds %%10s %%3d %%7d %%12s", + (void) sprintf( format, "%%c%%%c%ds %%10s %%3d %%7qd %%12s", justify, diff -urN /usr/ports/misc/ytree/pkg-plist misc/ytree/pkg-plist --- /usr/ports/misc/ytree/pkg-plist Wed Nov 11 21:26:00 1998 +++ misc/ytree/pkg-plist Wed Nov 8 03:52:10 2000 @@ -1,7 +1,6 @@ bin/ytree etc/ytree.conf.sample share/doc/ytree/CHANGES -share/doc/ytree/COPYING share/doc/ytree/README share/doc/ytree/THANKS @dirrm share/doc/ytree >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 6:50:22 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B16BB37B4D7 for ; Fri, 10 Nov 2000 06:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA41258; Fri, 10 Nov 2000 06:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 8ABFF37B4C5; Fri, 10 Nov 2000 06:41:22 -0800 (PST) Message-Id: <20001110144122.8ABFF37B4C5@hub.freebsd.org> Date: Fri, 10 Nov 2000 06:41:22 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/22748: Update port: graphics/graphviz to 1.7.2 (fix ports/22553) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22748 >Category: ports >Synopsis: Update port: graphics/graphviz to 1.7.2 (fix ports/22553) >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Nov 10 06:50:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1.1-RELEASE i386 >Organization: >Environment: >Description: - Update to version 1.7.2 New file: files/patch-lefty:Makefile.am files/patch-lefty:ws:x11:Makefile.am files/patch-lefty:ws:x11:libfilereq:Makefile.am files/patch-tkspline:Makefile.am Remove file: files/patch-lefty:Makefile.in files/patch-lefty:ws:x11:Makefile.in files/patch-lefty:ws:x11:libfilereq:Makefile.in files/patch-tkspline:Makefile.in This PR supersedes ports/22553. >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/graphviz/Makefile graphics/graphviz/Makefile --- /usr/ports/graphics/graphviz/Makefile Mon Nov 6 22:17:50 2000 +++ graphics/graphviz/Makefile Thu Nov 9 02:14:33 2000 @@ -6,28 +6,26 @@ # PORTNAME= graphviz -PORTVERSION= 1.6 +PORTVERSION= 1.7.2 CATEGORIES= graphics tk83 MASTER_SITES= http://www.graphviz.org/pub/graphviz/ MAINTAINER= ports@FreeBSD.org -BUILD_DEPENDS= automake:${PORTSDIR}/devel/automake LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \ png.4:${PORTSDIR}/graphics/png \ - tk83.1:${PORTSDIR}/x11-toolkits/tk83 \ - ttf.4:${PORTSDIR}/print/freetype \ - Xpm.4:${PORTSDIR}/graphics/xpm + tk83.1:${PORTSDIR}/x11-toolkits/tk83 -# do not use USE_AUTOMAKE -- it only works if the configure script -# finds automake by itself -USE_AUTOCONF= yes +USE_FREETYPE= yes +USE_XPM= yes +USE_GMAKE= yes +USE_AUTOMAKE= yes USE_LIBTOOL= yes -CONFIGURE_ENV= CFLAGS="${CFLAGS} -I${LOCALBASE}/include -I${LOCALBASE}/include/tcl8.3 -I${LOCALBASE}/include/tk8.3 -DHAVE_TERMIOS" \ - LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib" \ +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/tcl8.3 -I${LOCALBASE}/include/tk8.3 -DHAVE_TERMIOS" \ + LDFLAGS="-L${LOCALBASE}/lib" \ TCLCONFIG=${LOCALBASE}/lib/tcl8.3/tclConfig.sh \ TKCONFIG=${LOCALBASE}/lib/tk8.3/tkConfig.sh -USE_GMAKE= yes +INSTALLS_SHLIB= yes MAN1= dot.1 dotty.1 lefty.1 neato.1 MAN3= agraph.3 cdt.3 graph.3 pathplan.3 diff -urN /usr/ports/graphics/graphviz/distinfo graphics/graphviz/distinfo --- /usr/ports/graphics/graphviz/distinfo Mon Oct 23 23:23:24 2000 +++ graphics/graphviz/distinfo Thu Nov 9 01:04:31 2000 @@ -1 +1 @@ -MD5 (graphviz-1.6.tar.gz) = bad03a6a1bee4c2bb0928dd017d61f2b +MD5 (graphviz-1.7.2.tar.gz) = 462adf404dd5f3ee2f61184883b84325 diff -urN /usr/ports/graphics/graphviz/files/patch-ae graphics/graphviz/files/patch-ae --- /usr/ports/graphics/graphviz/files/patch-ae Mon Oct 23 23:23:26 2000 +++ graphics/graphviz/files/patch-ae Fri Nov 3 04:20:43 2000 @@ -1,11 +1,14 @@ ---- lefty/lefty.c.orig Tue Apr 18 05:55:50 2000 -+++ lefty/lefty.c Tue Oct 17 18:47:51 2000 -@@ -32,6 +32,8 @@ +--- lefty/lefty.c.orig Mon Oct 9 09:19:43 2000 ++++ lefty/lefty.c Fri Nov 3 04:20:09 2000 +@@ -44,7 +44,11 @@ + #define canread(fp) ((fp)->_IO_read_end > (fp)->_IO_read_ptr) #else - #ifdef _CNT_IN_FILESTRUCT - #define canread(fp) ((fp)->_cnt > 0) -+#elif __FreeBSD__ + #ifdef NO_CNT_IN_FILESTRUCT ++#ifdef __FreeBSD__ +#define canread(fp) ((fp)->_r > 0) - #else ++#else #define canread(fp) ((fp)->_IO_read_end > (fp)->_IO_read_ptr) ++#endif + #else + #define canread(fp) ((fp)->_cnt > 0) #endif diff -urN /usr/ports/graphics/graphviz/files/patch-doc:Makefile.am graphics/graphviz/files/patch-doc:Makefile.am --- /usr/ports/graphics/graphviz/files/patch-doc:Makefile.am Mon Oct 23 21:37:30 2000 +++ graphics/graphviz/files/patch-doc:Makefile.am Fri Nov 3 04:41:50 2000 @@ -5,6 +5,6 @@ DOCS = dotguide.ps dotty.ps gd.html lefty.ps neatoguide.ps tcldot.html -docdir = $(prefix)/doc -+docdir = $(datadir)/doc/graphviz ++docdir = $(datadir)/doc/@PACKAGE@ doc_DATA = $(DOCS) EXTRA_DIST = $(DOCS) diff -urN /usr/ports/graphics/graphviz/files/patch-lefty:Makefile.am graphics/graphviz/files/patch-lefty:Makefile.am --- /usr/ports/graphics/graphviz/files/patch-lefty:Makefile.am Thu Jan 1 09:00:00 1970 +++ graphics/graphviz/files/patch-lefty:Makefile.am Fri Nov 3 03:24:17 2000 @@ -0,0 +1,10 @@ +--- lefty/Makefile.am.orig Sun Oct 15 16:53:05 2000 ++++ lefty/Makefile.am Fri Nov 3 03:24:02 2000 +@@ -21,6 +21,7 @@ + nmakefile makefile.old + + INCLUDES = \ ++ @X_CFLAGS@ \ + -I$(srcdir)/ws/x11 \ + -I$(srcdir)/os/unix \ + -I$(srcdir)/dot2l diff -urN /usr/ports/graphics/graphviz/files/patch-lefty:Makefile.in graphics/graphviz/files/patch-lefty:Makefile.in --- /usr/ports/graphics/graphviz/files/patch-lefty:Makefile.in Mon Oct 23 21:37:30 2000 +++ graphics/graphviz/files/patch-lefty:Makefile.in Thu Jan 1 09:00:00 1970 @@ -1,13 +0,0 @@ ---- lefty/Makefile.in.orig Tue Oct 17 18:18:57 2000 -+++ lefty/Makefile.in Tue Oct 17 18:44:21 2000 -@@ -195,8 +195,8 @@ - lefty_DEPENDENCIES = dot2l/libdot2l.la ws/x11/libws.la \ - ws/x11/libfilereq/libfilereq.la os/unix/libos.la - lefty_LDFLAGS = --COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) --LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -+COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) $(X_CFLAGS) -+LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) $(X_CFLAGS) - CCLD = $(CC) - LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ - man1dir = $(mandir)/man1 diff -urN /usr/ports/graphics/graphviz/files/patch-lefty:ws:x11:Makefile.am graphics/graphviz/files/patch-lefty:ws:x11:Makefile.am --- /usr/ports/graphics/graphviz/files/patch-lefty:ws:x11:Makefile.am Thu Jan 1 09:00:00 1970 +++ graphics/graphviz/files/patch-lefty:ws:x11:Makefile.am Fri Nov 3 03:25:47 2000 @@ -0,0 +1,11 @@ +--- lefty/ws/x11/Makefile.am.orig Sat May 27 03:07:57 2000 ++++ lefty/ws/x11/Makefile.am Fri Nov 3 03:25:30 2000 +@@ -9,7 +9,7 @@ + noinst_HEADERS = gcommon.h + noinst_LTLIBRARIES = libws.la + +-INCLUDES = -I../.. ++INCLUDES = @X_CFLAGS@ -I../.. + + libws_la_SOURCES = garray.c gbutton.c gcanvas.c gcommon.c glabel.c \ + gmenu.c gpcanvas.c gquery.c gscroll.c gtext.c gview.c gcommon.h diff -urN /usr/ports/graphics/graphviz/files/patch-lefty:ws:x11:Makefile.in graphics/graphviz/files/patch-lefty:ws:x11:Makefile.in --- /usr/ports/graphics/graphviz/files/patch-lefty:ws:x11:Makefile.in Mon Oct 23 21:37:30 2000 +++ graphics/graphviz/files/patch-lefty:ws:x11:Makefile.in Thu Jan 1 09:00:00 1970 @@ -1,13 +0,0 @@ ---- lefty/ws/x11/Makefile.in.orig Tue Oct 17 18:19:04 2000 -+++ lefty/ws/x11/Makefile.in Tue Oct 17 18:36:21 2000 -@@ -184,8 +184,8 @@ - libws_la_OBJECTS = garray.lo gbutton.lo gcanvas.lo gcommon.lo glabel.lo \ - gmenu.lo gpcanvas.lo gquery.lo gscroll.lo gtext.lo gview.lo - CFLAGS = @CFLAGS@ --COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) --LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -+COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) $(X_CFLAGS) -+LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) $(X_CFLAGS) - CCLD = $(CC) - LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ - HEADERS = $(noinst_HEADERS) diff -urN /usr/ports/graphics/graphviz/files/patch-lefty:ws:x11:libfilereq:Makefile.am graphics/graphviz/files/patch-lefty:ws:x11:libfilereq:Makefile.am --- /usr/ports/graphics/graphviz/files/patch-lefty:ws:x11:libfilereq:Makefile.am Thu Jan 1 09:00:00 1970 +++ graphics/graphviz/files/patch-lefty:ws:x11:libfilereq:Makefile.am Fri Nov 3 04:07:47 2000 @@ -0,0 +1,11 @@ +--- lefty/ws/x11/libfilereq/Makefile.am.orig Sun Oct 15 14:31:01 2000 ++++ lefty/ws/x11/libfilereq/Makefile.am Fri Nov 3 03:27:59 2000 +@@ -7,6 +7,8 @@ + noinst_HEADERS = SFinternal.h xstat.h + noinst_LTLIBRARIES = libfilereq.la + ++INCLUDES = @X_CFLAGS@ ++ + libfilereq_la_SOURCES = Dir.c Draw.c Path.c SelFile.c SFinternal.h xstat.h + + EXTRA_DIST = README.selfile diff -urN /usr/ports/graphics/graphviz/files/patch-lefty:ws:x11:libfilereq:Makefile.in graphics/graphviz/files/patch-lefty:ws:x11:libfilereq:Makefile.in --- /usr/ports/graphics/graphviz/files/patch-lefty:ws:x11:libfilereq:Makefile.in Mon Oct 23 21:37:30 2000 +++ graphics/graphviz/files/patch-lefty:ws:x11:libfilereq:Makefile.in Thu Jan 1 09:00:00 1970 @@ -1,13 +0,0 @@ ---- lefty/ws/x11/libfilereq/Makefile.in.orig Tue Oct 17 18:19:07 2000 -+++ lefty/ws/x11/libfilereq/Makefile.in Tue Oct 17 18:31:58 2000 -@@ -179,8 +179,8 @@ - libfilereq_la_LIBADD = - libfilereq_la_OBJECTS = Dir.lo Draw.lo Path.lo SelFile.lo - CFLAGS = @CFLAGS@ --COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) --LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -+COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) $(X_CFLAGS) -+LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) $(X_CFLAGS) - CCLD = $(CC) - LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ - HEADERS = $(noinst_HEADERS) diff -urN /usr/ports/graphics/graphviz/files/patch-tkspline:Makefile.am graphics/graphviz/files/patch-tkspline:Makefile.am --- /usr/ports/graphics/graphviz/files/patch-tkspline:Makefile.am Thu Jan 1 09:00:00 1970 +++ graphics/graphviz/files/patch-tkspline:Makefile.am Fri Nov 3 03:24:39 2000 @@ -0,0 +1,10 @@ +--- tkspline/Makefile.am.orig Sat May 27 03:07:57 2000 ++++ tkspline/Makefile.am Fri Nov 3 03:22:50 2000 +@@ -10,6 +10,7 @@ + man_MANS = tkspline.n + + INCLUDES = \ ++ @X_CFLAGS@ \ + @TCL_CFLAGS@ \ + @TK_CFLAGS@ \ + -I@TK_EXEC_PREFIX@/include \ diff -urN /usr/ports/graphics/graphviz/files/patch-tkspline:Makefile.in graphics/graphviz/files/patch-tkspline:Makefile.in --- /usr/ports/graphics/graphviz/files/patch-tkspline:Makefile.in Mon Oct 23 21:37:32 2000 +++ graphics/graphviz/files/patch-tkspline:Makefile.in Thu Jan 1 09:00:00 1970 @@ -1,13 +0,0 @@ ---- tkspline/Makefile.in.orig Tue Oct 17 18:50:03 2000 -+++ tkspline/Makefile.in Tue Oct 17 18:52:16 2000 -@@ -191,8 +191,8 @@ - ../tclstubs/libtclstubs.la - libtkspline_la_OBJECTS = tkspline.lo - CFLAGS = @CFLAGS@ --COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) --LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -+COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) $(X_CFLAGS) -+LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) $(X_CFLAGS) - CCLD = $(CC) - LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ - manndir = $(mandir)/mann diff -urN /usr/ports/graphics/graphviz/pkg-plist graphics/graphviz/pkg-plist --- /usr/ports/graphics/graphviz/pkg-plist Mon Oct 23 23:23:34 2000 +++ graphics/graphviz/pkg-plist Thu Nov 9 02:04:51 2000 @@ -1,7 +1,8 @@ -bin/dotneato +bin/dot bin/dotty bin/lefty bin/lneato +bin/neato lib/graphviz/demo/dge lib/graphviz/demo/dge.README lib/graphviz/demo/dge.example1.dot @@ -16,6 +17,18 @@ lib/graphviz/demo/ihi.testdata lib/graphviz/demo/pathplan lib/graphviz/demo/pathplan.README +lib/graphviz/demo/pathplan_data/boxes.dat +lib/graphviz/demo/pathplan_data/dpd.dat +lib/graphviz/demo/pathplan_data/funny.dat +lib/graphviz/demo/pathplan_data/maze.dat +lib/graphviz/demo/pathplan_data/nested.dat +lib/graphviz/demo/pathplan_data/northo.dat +lib/graphviz/demo/pathplan_data/obs.dat +lib/graphviz/demo/pathplan_data/other.dat +lib/graphviz/demo/pathplan_data/paths.dat +lib/graphviz/demo/pathplan_data/rotor.dat +lib/graphviz/demo/pathplan_data/u.dat +lib/graphviz/demo/pathplan_data/unknown.dat lib/graphviz/demo/spline lib/graphviz/demo/spline.README lib/graphviz/graphs/directed/KW91.dot @@ -64,11 +77,18 @@ lib/graphviz/graphs/undirected/ER.dot lib/graphviz/graphs/undirected/ngk10_4.dot lib/graphviz/graphs/undirected/process.dot +lib/graphviz/lefty/box.lefty +lib/graphviz/lefty/def.lefty lib/graphviz/lefty/dotty.lefty lib/graphviz/lefty/dotty_draw.lefty lib/graphviz/lefty/dotty_edit.lefty lib/graphviz/lefty/dotty_layout.lefty lib/graphviz/lefty/dotty_ui.lefty +lib/graphviz/lefty/fractal.lefty +lib/graphviz/lefty/fractal2.lefty +lib/graphviz/lefty/lefty.psp +lib/graphviz/lefty/slides.lefty +lib/graphviz/lefty/tree.lefty lib/graphviz/libgdtclft.so lib/graphviz/libgdtclft.so.0 lib/graphviz/libtcldgl.so @@ -93,5 +113,6 @@ @dirrm lib/graphviz/graphs/undirected @dirrm lib/graphviz/graphs/directed @dirrm lib/graphviz/graphs +@dirrm lib/graphviz/demo/pathplan_data @dirrm lib/graphviz/demo @dirrm lib/graphviz >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 6:50:28 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 00AF637B479 for ; Fri, 10 Nov 2000 06:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA41276; Fri, 10 Nov 2000 06:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 7F64937B479; Fri, 10 Nov 2000 06:43:36 -0800 (PST) Message-Id: <20001110144336.7F64937B479@hub.freebsd.org> Date: Fri, 10 Nov 2000 06:43:36 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/22750: Update port: x11-fm/mfm to mtoolsfm 1.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22750 >Category: ports >Synopsis: Update port: x11-fm/mfm to mtoolsfm 1.6 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Nov 10 06:50:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1.1-RELEASE i386 >Organization: >Environment: >Description: - Update to version 1.6 >How-To-Repeat: >Fix: diff -urN /usr/ports/x11-fm/mfm/Makefile x11-fm/mtoolsfm/Makefile --- /usr/ports/x11-fm/mfm/Makefile Thu Oct 5 23:11:26 2000 +++ x11-fm/mtoolsfm/Makefile Wed Nov 8 00:26:07 2000 @@ -1,14 +1,15 @@ -# New ports collection makefile for: mfm +# New ports collection makefile for: MToolsFM # Date created: 12 Jan 2000 # Whom: Michael Vasilenko # # $FreeBSD: ports/x11-fm/mfm/Makefile,v 1.5 2000/10/05 06:42:34 reg Exp $ # -PORTNAME= mfm -PORTVERSION= 1.5 +PORTNAME= mtoolsfm +PORTVERSION= 1.6 CATEGORIES= x11-fm MASTER_SITES= http://www.core-coutainville.org/mfm/archive/SOURCES/ +DISTNAME= MToolsFM-${PORTVERSION} MAINTAINER= ports@FreeBSD.org @@ -21,6 +22,10 @@ --with-mtoolsdir="${LOCALBASE}/bin" \ --disable-gtktest -MAN1= mfm.1 +MAN1= mtoolsfm.1 + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/MToolsFM ${PREFIX}/bin/mtoolsfm + ${INSTALL_MAN} ${WRKSRC}/MToolsFM.1 ${MANPREFIX}/man/man1/mtoolsfm.1 .include diff -urN /usr/ports/x11-fm/mfm/distinfo x11-fm/mtoolsfm/distinfo --- /usr/ports/x11-fm/mfm/distinfo Sat May 20 02:35:12 2000 +++ x11-fm/mtoolsfm/distinfo Tue Nov 7 23:42:39 2000 @@ -1 +1 @@ -MD5 (mfm-1.5.tar.gz) = fe3297c55fee68a1ba1508e46913bca0 +MD5 (MToolsFM-1.6.tar.gz) = c1e3de428ad0df77b7c82cb844a03641 diff -urN /usr/ports/x11-fm/mfm/pkg-plist x11-fm/mtoolsfm/pkg-plist --- /usr/ports/x11-fm/mfm/pkg-plist Sat Jan 22 11:31:50 2000 +++ x11-fm/mtoolsfm/pkg-plist Wed Nov 8 00:22:54 2000 @@ -1 +1 @@ -bin/mfm +bin/mtoolsfm >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 6:50:30 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0AA4D37B4FE for ; Fri, 10 Nov 2000 06:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA41285; Fri, 10 Nov 2000 06:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 8CF0137B4C5; Fri, 10 Nov 2000 06:44:34 -0800 (PST) Message-Id: <20001110144434.8CF0137B4C5@hub.freebsd.org> Date: Fri, 10 Nov 2000 06:44:34 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/22751: Update port: x11-wm/evilwm Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22751 >Category: ports >Synopsis: Update port: x11-wm/evilwm >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Nov 10 06:50:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1.1-RELEASE i386 >Organization: >Environment: >Description: - Don't avoid installing manpage wheh NOPORTDOCS is defined >How-To-Repeat: >Fix: diff -urN /usr/ports/x11-wm/evilwm/Makefile x11-wm/evilwm/Makefile --- /usr/ports/x11-wm/evilwm/Makefile Tue Nov 7 02:54:34 2000 +++ x11-wm/evilwm/Makefile Fri Nov 10 19:44:55 2000 @@ -5,21 +5,21 @@ # $FreeBSD: ports/x11-wm/evilwm/Makefile,v 1.2 2000/11/06 15:30:21 trevor Exp $ # -PORTNAME= evilwm -PORTVERSION= 0.2.7 -CATEGORIES= x11-wm +PORTNAME= evilwm +PORTVERSION= 0.2.7 +CATEGORIES= x11-wm # not in MASTER_SITE_SOURCEFORGE -MASTER_SITES= ftp://projects.sourceforge.net/pub/evilwm/ +MASTER_SITES= ftp://projects.sourceforge.net/pub/evilwm/ -MAINTAINER= trevor@FreeBSD.org +MAINTAINER= trevor@FreeBSD.org -DOCDIR= share/doc/${PORTNAME} -DOCS= Changes.kja3 README -.if !defined(NOPORTDOCS) -MAN1= evilwm.1 -.endif -PLIST= ${WRKDIR}/pkg-plist -USE_X_PREFIX= yes +USE_X_PREFIX= yes +MAN1= evilwm.1 + +PLIST= ${WRKDIR}/pkg-plist + +DOCDIR= share/doc/${PORTNAME} +DOCS= Changes.kja3 README do-build: cd ${WRKSRC} && ${CC} ${CFLAGS} -I${X11BASE}/include -L${X11BASE}/lib -o evilwm *.c -lX11 @@ -27,20 +27,20 @@ pre-install: ${ECHO} bin/evilwm > ${PLIST} .if !defined(NOPORTDOCS) - for i in ${DOCS}; \ - do ${ECHO} ${DOCDIR}/$${i} >> ${PLIST}; \ - done +.for file in ${DOCS} + ${ECHO} ${DOCDIR}/${file} >> ${PLIST} +.endfor ${ECHO} @dirrm ${DOCDIR} >> ${PLIST} .endif do-install: ${INSTALL_PROGRAM} ${WRKSRC}/evilwm ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/evilwm.man ${PREFIX}/man/man1/evilwm.1 .if !defined(NOPORTDOCS) ${MKDIR} ${PREFIX}/${DOCDIR} - for i in ${DOCS}; \ - do ${INSTALL_DATA} ${WRKSRC}/$${i} ${PREFIX}/${DOCDIR}; \ - done - ${INSTALL_MAN} ${WRKSRC}/evilwm.man ${PREFIX}/man/man1/evilwm.1 +.for file in ${DOCS} + ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/${DOCDIR} +.endfor .endif .include >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 7:50: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 561CD37B4C5 for ; Fri, 10 Nov 2000 07:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA51103; Fri, 10 Nov 2000 07:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from peloton.runet.edu (peloton.runet.edu [137.45.96.205]) by hub.freebsd.org (Postfix) with ESMTP id D491C37B4C5 for ; Fri, 10 Nov 2000 07:42:01 -0800 (PST) Received: (from brett@localhost) by peloton.runet.edu (8.11.1/8.11.1) id eAAFfn440075; Fri, 10 Nov 2000 10:41:49 -0500 (EST) (envelope-from brett) Message-Id: <200011101541.eAAFfn440075@peloton.runet.edu> Date: Fri, 10 Nov 2000 10:41:49 -0500 (EST) From: brett@peloton.runet.edu Reply-To: brett@peloton.runet.edu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22752: mainatiner - remove qclock port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22752 >Category: ports >Synopsis: remove qclock port >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Nov 10 07:50:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Brett Taylor >Release: FreeBSD 4.1.1-STABLE i386 >Organization: Radford University >Environment: FreeBSD :-) >Description: qclock was a silly little piece of code that didn't really do much more than "date" does. The original source site is long gone and I recently lost the copy I had as a MASTER_SITE due to a disk problem I had while upgrading/installing a new disk. I'd like to recommend just removing it - according to my logs no one has downloaded it (other than Satoshi and the ports building machines) in a long time. >How-To-Repeat: >Fix: cvs remove the misc/qclock port >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 7:58:51 2000 Delivered-To: freebsd-ports@freebsd.org Received: from trinity.magpage.com (trinity.magpage.com [216.155.0.8]) by hub.freebsd.org (Postfix) with ESMTP id 30D9337B479 for ; Fri, 10 Nov 2000 07:58:49 -0800 (PST) Received: from magpage.com (poomba.magpage.com [216.155.24.136]) by trinity.magpage.com (8.11.1/8.11.1) with ESMTP id eAAFwkW13808; Fri, 10 Nov 2000 10:58:46 -0500 Message-ID: <3A0C1B36.D61B1F17@magpage.com> Date: Fri, 10 Nov 2000 10:58:46 -0500 From: Daniel Frazier Organization: Magpage Internet Services X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Matt Meola Cc: ports@FreeBSD.ORG Subject: Re: Evolution port difficulties... References: <3A0B1C51.DE2CA38F@magpage.com> <20001110073304.G38925@kc0dxw-2.uswc.uswest.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Matt Meola wrote: > > Hey, another evolution user! Welcome into the brotherhood! > > Sorry for the hyperbole, it just seems that there's me, now you, and Ade, > our esteemed port maintainer... > thanks. i'm glad to know it's not just me who wants to see this work... I really like using graphical mail clients over pine or the like, but the only one I've managed to get running (somewhat)stably is netscapes' client. The only other ones I've tried are balsa and pmail, but they crashed too frequently. At least netscape messenger doesn't crash. I'll be happy when evolution is working. -- ---------------------------------------------------------------------- Daniel Frazier Tel: 302-239-5900 Ext. 231 System Administrator Fax: 302-239-3909 MAGPAGE, We Power the Internet WWW: http://www.magpage.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 8: 4: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hub.lovett.com (hub.lovett.com [216.60.121.161]) by hub.freebsd.org (Postfix) with ESMTP id 49D8137B479 for ; Fri, 10 Nov 2000 08:04:03 -0800 (PST) Received: from ade by hub.lovett.com with local (Exim 3.16 #1) id 13uGei-0001wB-00; Fri, 10 Nov 2000 10:03:56 -0600 Date: Fri, 10 Nov 2000 10:03:56 -0600 From: Ade Lovett To: Daniel Frazier Cc: Matt Meola , ports@FreeBSD.ORG Subject: Re: Evolution port difficulties... Message-ID: <20001110100356.G443@FreeBSD.org> References: <3A0B1C51.DE2CA38F@magpage.com> <20001110073304.G38925@kc0dxw-2.uswc.uswest.com> <3A0C1B36.D61B1F17@magpage.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A0C1B36.D61B1F17@magpage.com>; from dfrazier@magpage.com on Fri, Nov 10, 2000 at 10:58:46AM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Nov 10, 2000 at 10:58:46AM -0500, Daniel Frazier wrote: > thanks. i'm glad to know it's not just me who wants to see this work... > I really like using graphical mail clients over pine or the like, but the > only one I've managed to get running (somewhat)stably is netscapes' client. > The only other ones I've tried are balsa and pmail, but they crashed too > frequently. At least netscape messenger doesn't crash. I'll be happy when > evolution is working. Weird. It works for me. I get the menubar and can read mail with it, though it still hates sending stuff. However, it's entirely possible that I have something special in my machine that's making it work.. I have a chrooted environment that runs GNOME-CVS bits and pieces.. it may be that something "leaked" from one environment to the other. Regardless, as soon as 4.2-RELEASE comes out, I'll be wiping the disks on this machine and starting again (been "awhile" since this box got really cleaned out), so I'll try again then. Someone mentioned a fix for the "validation script"? Please email the diffs to me privately (ade@FreeBSD.org will do) and I'll drop them in to the port. -aDe -- Ade Lovett, Austin, TX. ade@FreeBSD.org FreeBSD: The Power to Serve http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 8:12:39 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BF9A737B4C5; Fri, 10 Nov 2000 08:12:37 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA55597; Fri, 10 Nov 2000 08:12:37 -0800 (PST) (envelope-from sobomax@FreeBSD.org) Date: Fri, 10 Nov 2000 08:12:37 -0800 (PST) From: Message-Id: <200011101612.IAA55597@freefall.freebsd.org> To: ben@pavilion.net, sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22739: sawfish refuses to build from ports. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: sawfish refuses to build from ports. State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Fri Nov 10 08:09:44 PST 2000 State-Changed-Why: Have you tried to look through configure log before sending PR? [...] checking for correct rep-gtk version... no configure: error: You need rep-gtk version 0.14+ ===> Script "configure" failed: here are the contents of "config.log" [...] It clearly indicates that you need to update rep-gtk before trying to build saw. http://www.freebsd.org/cgi/query-pr.cgi?pr=22739 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 8:16:21 2000 Delivered-To: freebsd-ports@freebsd.org Received: from trinity.magpage.com (trinity.magpage.com [216.155.0.8]) by hub.freebsd.org (Postfix) with ESMTP id 5B8B537B479; Fri, 10 Nov 2000 08:16:18 -0800 (PST) Received: from magpage.com (poomba.magpage.com [216.155.24.136]) by trinity.magpage.com (8.11.1/8.11.1) with ESMTP id eAAGGHW24258; Fri, 10 Nov 2000 11:16:17 -0500 Message-ID: <3A0C1F51.BA2B044F@magpage.com> Date: Fri, 10 Nov 2000 11:16:17 -0500 From: Daniel Frazier Organization: Magpage Internet Services X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Ade Lovett Cc: Matt Meola , ports@FreeBSD.org Subject: Re: Evolution port difficulties... References: <3A0B1C51.DE2CA38F@magpage.com> <20001110073304.G38925@kc0dxw-2.uswc.uswest.com> <3A0C1B36.D61B1F17@magpage.com> <20001110100356.G443@FreeBSD.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Ade Lovett wrote: > > Someone mentioned a fix for the "validation script"? Please email > the diffs to me privately (ade@FreeBSD.org will do) and I'll drop > them in to the port. > It's a really minor change... poomba: /usr/ports/mail/evolution/work/evolution-0.6/tools # diff verify-evolution-install.sh verify-evolution-install.sh.orig 624c624 < add_lib_to_check libcamelvee "$e_prefix/lib/evolution/camel-providers/0.6" --- > add_lib_to_check libcamelvee "$e_prefix/lib/evolution/camel-providers/0.5" -- ---------------------------------------------------------------------- Daniel Frazier Tel: 302-239-5900 Ext. 231 System Administrator Fax: 302-239-3909 MAGPAGE, We Power the Internet WWW: http://www.magpage.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 8:20: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 19C3937B4C5 for ; Fri, 10 Nov 2000 08:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA56601; Fri, 10 Nov 2000 08:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from ringworld.oblivion.bg (pool43-tch-1.Sofia.0rbitel.net [212.95.170.43]) by hub.freebsd.org (Postfix) with SMTP id 3F20637B479 for ; Fri, 10 Nov 2000 08:10:53 -0800 (PST) Received: (qmail 1219 invoked by uid 1000); 10 Nov 2000 16:10:25 -0000 Message-Id: <20001110161024.1200.qmail@ringworld.oblivion.bg> Date: 10 Nov 2000 16:10:24 -0000 From: Peter Pentchev Reply-To: Peter Pentchev To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22753: new port: misc/rname Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22753 >Category: ports >Synopsis: new port: misc/rname >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Nov 10 08:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Peter Pentchev >Release: FreeBSD 4.2-BETA i386 >Organization: Orbitel JSCo. >Environment: current ports tree >Description: rname is a simple utility to launch another program with a specified process name. Its functionality is similar to the -a argument to the bash exec builtin, or to the argv0 program from D. J. Bernstein's daemontools (ucspi-tcp), but I think it might be easier if this were a separate executable doing this and this only. WWW: http://mail.orbitel.bg/~roam/devel/sys/rname/ >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: # # rname # rname/Makefile # rname/distinfo # rname/pkg-comment # rname/pkg-descr # rname/pkg-plist # echo c - rname mkdir -p rname > /dev/null 2>&1 echo x - rname/Makefile sed 's/^X//' >rname/Makefile << 'END-of-rname/Makefile' X# New ports collection makefile for: rname X# Date created: 10 October 2000 X# Whom: roam@orbitel.bg X# X# $FreeBSD$ X# X XPORTNAME= rname XPORTVERSION= 1.0 XCATEGORIES= misc XMASTER_SITES= http://mail.orbitel.bg/~roam/devel/sys/rname/ \ X http://ringwraith.online.bg/~roam/devel/sys/rname/ X XMAINTAINER= roam@orbitel.bg X XWRKSRC= ${WRKDIR}/${PORTNAME} XUSE_GMAKE= yes X X.if !defined(NOPORTDOCS) XINSTALL_TARGET= install install-doc X.endif X X.include END-of-rname/Makefile echo x - rname/distinfo sed 's/^X//' >rname/distinfo << 'END-of-rname/distinfo' XMD5 (rname-1.0.tar.gz) = 442ea780426468fcff1f3ce5b77ea438 END-of-rname/distinfo echo x - rname/pkg-comment sed 's/^X//' >rname/pkg-comment << 'END-of-rname/pkg-comment' XExecute a program with a fake name END-of-rname/pkg-comment echo x - rname/pkg-descr sed 's/^X//' >rname/pkg-descr << 'END-of-rname/pkg-descr' XThis is a simple utility to execute a program under a different name. X XAuthor: Peter Pentchev XWWW: http://mail.orbitel.bg/~roam/devel/sys/rname/ END-of-rname/pkg-descr echo x - rname/pkg-plist sed 's/^X//' >rname/pkg-plist << 'END-of-rname/pkg-plist' Xbin/rname Xshare/doc/rname/html/index.html Xshare/doc/rname/html/created.with.vim.gif X@dirrm share/doc/rname/html X@dirrm share/doc/rname END-of-rname/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 8:32:53 2000 Delivered-To: freebsd-ports@freebsd.org Received: from lament.support.pavilion.net (lament.support.pavilion.net [212.74.1.242]) by hub.freebsd.org (Postfix) with ESMTP id C139437B479; Fri, 10 Nov 2000 08:32:50 -0800 (PST) Received: by lament.support.pavilion.net (Postfix, from userid 1001) id B0AEF33; Fri, 10 Nov 2000 16:32:49 +0000 (GMT) Date: Fri, 10 Nov 2000 16:32:49 +0000 From: Ben To: sobomax@FreeBSD.org Cc: gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22739: sawfish refuses to build from ports. Message-ID: <20001110163249.A88115@pavilion.net> References: <200011101612.IAA55597@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline User-Agent: Mutt/1.3.8i In-Reply-To: <200011101612.IAA55597@freefall.freebsd.org>; from sobomax@FreeBSD.org on Fri, Nov 10, 2000 at 08:12:37AM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Nov 10, 2000 at 08:12:37AM -0800, sobomax@FreeBSD.org wrote: > Synopsis: sawfish refuses to build from ports. > > State-Changed-From-To: open->closed > State-Changed-By: sobomax > State-Changed-When: Fri Nov 10 08:09:44 PST 2000 > State-Changed-Why: > Have you tried to look through configure log before sending PR? > [...] > checking for correct rep-gtk version... no > configure: error: You need rep-gtk version 0.14+ > ===> Script "configure" failed: here are the contents of "config.log" > [...] > It clearly indicates that you need to update rep-gtk before trying to build saw. have you tried reading my PR? lament:~$ pkg_info | grep rep | grep Lisp librep-0.13.2 An Emacs Lisp like runtime library rep-gtk-0.14_1 GTK+ binding for rep Lisp interpreter rep-gtk-gnome-0.14_1 GTK+ binding for rep Lisp interpreter hmm rep-gtk 0.14_1 (latest out of ports..) -- Ben Hughes, Pavilion Internet (0845 333 5000) "Quidquid latine dictum sit, altum viditur." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 8:59:30 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 323D337B479; Fri, 10 Nov 2000 08:59:29 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA62489; Fri, 10 Nov 2000 08:59:29 -0800 (PST) (envelope-from sobomax@FreeBSD.org) Date: Fri, 10 Nov 2000 08:59:29 -0800 (PST) From: Message-Id: <200011101659.IAA62489@freefall.freebsd.org> To: ben@pavilion.net, sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22739: sawfish refuses to build from ports. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: sawfish refuses to build from ports. State-Changed-From-To: closed->feedback State-Changed-By: sobomax State-Changed-When: Fri Nov 10 08:56:04 PST 2000 State-Changed-Why: OOPS, this committed was screwed and closed this PR too quickly. Sorry. The problem could be due two versions of rep-gtk installed, one with GNOME support and one without. Please try to reinstall both and install rep-gtk-gnome-0.14_1 only. http://www.freebsd.org/cgi/query-pr.cgi?pr=22739 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 9: 0:58 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (ns.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id CCE4A37B479; Fri, 10 Nov 2000 09:00:53 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id eAAH0h804510; Fri, 10 Nov 2000 19:00:46 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id eAAH0lH80269; Fri, 10 Nov 2000 19:00:47 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A0C29B9.74057C64@FreeBSD.org> Date: Fri, 10 Nov 2000 19:00:41 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.76 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: ben@pavilion.net, sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22739: sawfish refuses to build from ports. References: <200011101659.IAA62489@freefall.freebsd.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org sobomax@FreeBSD.org wrote: > Please try to reinstall both and install rep-gtk-gnome-0.14_1 Read "deinstall" instead of "reinstall". -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 9: 1:20 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6393B37B479; Fri, 10 Nov 2000 09:01:19 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA62742; Fri, 10 Nov 2000 09:01:19 -0800 (PST) (envelope-from sobomax@FreeBSD.org) Date: Fri, 10 Nov 2000 09:01:19 -0800 (PST) From: Message-Id: <200011101701.JAA62742@freefall.freebsd.org> To: sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org, sobomax@FreeBSD.org Subject: Re: ports/22739: sawfish refuses to build from ports. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: sawfish refuses to build from ports. Responsible-Changed-From-To: freebsd-ports->sobomax Responsible-Changed-By: sobomax Responsible-Changed-When: Fri Nov 10 08:59:57 PST 2000 Responsible-Changed-Why: Sawfish and other stuff mentioned is mine. http://www.freebsd.org/cgi/query-pr.cgi?pr=22739 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 9: 3:18 2000 Delivered-To: freebsd-ports@freebsd.org Received: from leviathan.inethouston.com (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id 5621D37B479 for ; Fri, 10 Nov 2000 09:03:17 -0800 (PST) Received: from dwcjr (DWCJR.inethouston.net [216.118.21.147]) by leviathan.inethouston.com (Postfix) with ESMTP id 90634177E17 for ; Fri, 10 Nov 2000 11:09:03 -0600 (CST) Message-ID: <006f01c04b38$6be9a560$931576d8@inethouston.net> From: "David W. Chapman Jr." To: Subject: Maintainer needs PR 22728 committed Date: Fri, 10 Nov 2000 11:05:26 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Can anyone commit this pr for my postfix-current port? I have asked a few people but I have not heard back from them. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 9: 6:18 2000 Delivered-To: freebsd-ports@freebsd.org Received: from lament.support.pavilion.net (lament.support.pavilion.net [212.74.1.242]) by hub.freebsd.org (Postfix) with ESMTP id 7602837B479; Fri, 10 Nov 2000 09:06:12 -0800 (PST) Received: by lament.support.pavilion.net (Postfix, from userid 1001) id BAD2033; Fri, 10 Nov 2000 17:06:10 +0000 (GMT) Date: Fri, 10 Nov 2000 17:06:10 +0000 From: Ben To: Maxim Sobolev Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/22739: sawfish refuses to build from ports. Message-ID: <20001110170610.A88473@pavilion.net> References: <200011101659.IAA62489@freefall.freebsd.org> <3A0C29B9.74057C64@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline User-Agent: Mutt/1.3.8i In-Reply-To: <3A0C29B9.74057C64@FreeBSD.org>; from sobomax@FreeBSD.org on Fri, Nov 10, 2000 at 07:00:41PM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Nov 10, 2000 at 07:00:41PM +0200, Maxim Sobolev wrote: > sobomax@FreeBSD.org wrote: > > > Please try to reinstall both and install rep-gtk-gnome-0.14_1 > > Read "deinstall" instead of "reinstall". i have tried this a few times, i currently have: lament:~$ pkg_info | grep rep librep-0.13.2 An Emacs Lisp like runtime library rep-gtk-gnome-0.14_1 GTK+ binding for rep Lisp interpreter installed only and a lament:~# cd /usr/ports/x11-wm/sawfish/ && make ===> Configuring for sawfish-gnome-0.33 loading cache ./config.cache checking host system type... i386--freebsd4.1.1 checking for gcc... cc checking whether the C compiler (cc -O -pipe ) works... yes checking whether the C compiler (cc -O -pipe ) is a cross-compiler... no checking whether we are using GNU C... yes checking whether cc accepts -g... yes checking how to run the C preprocessor... cc -E checking for a BSD compatible install... /usr/bin/install -c -o root -g wheel checking whether ln -s works... yes checking whether gmake sets ${MAKE}... yes checking whether cc needs -traditional... no checking for xdr_void in -lnsl... no checking for bind in -lsocket... no checking for X... libraries /usr/X11R6/lib, headers /usr/X11R6/include checking for dnet_ntoa in -ldnet... no checking for dnet_ntoa in -ldnet_stub... no checking for gethostbyname... yes checking for connect... yes checking for remove... yes checking for shmat... yes checking for IceConnectionNumber in -lICE... yes checking for ANSI C header files... yes checking whether time.h and sys/time.h may both be included... yes checking for sys/wait.h that is POSIX.1 compatible... yes checking for fcntl.h... yes checking for sys/time.h... yes checking for sys/utsname.h... yes checking for unistd.h... yes checking for memory.h... yes checking for X11/SM/SMlib.h... yes checking for X11/extensions/Xdbe.h... yes checking for XineramaQueryScreens in -lXinerama... yes checking for X11/extensions/Xinerama.h... yes checking for rep - version >= 0.13... version 0.13.1 checking for GNU msgfmt... /usr/local/bin/msgfmt checking for correct rep-gtk version... no configure: error: You need rep-gtk version 0.14+ ===> Script "configure" failed: here are the contents of "config.log" This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. configure:632: checking host system type configure:667: checking for gcc configure:780: checking whether the C compiler (cc -O -pipe ) works configure:796: cc -o conftest -O -pipe -I/usr/local/include -I/usr/X11R6/include conftest.c -L/usr/local/lib 1>&5 configure:822: checking whether the C compiler (cc -O -pipe ) is a cross-compiler configure:827: checking whether we are using GNU C configure:836: cc -E conftest.c configure:855: checking whether cc accepts -g configure:887: checking how to run the C preprocessor configure:908: cc -E -I/usr/local/include -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out configure:978: checking for a BSD compatible install configure:1031: checking whether ln -s works configure:1052: checking whether gmake sets ${MAKE} configure:1080: checking whether cc needs -traditional configure:1105: termio.h: No such file or directory configure:1131: checking for xdr_void in -lnsl configure:1150: cc -o conftest -O -pipe -I/usr/local/include -I/usr/X11R6/include conftest.c -lnsl -L/usr/local/lib 1>&5 /usr/libexec/elf/ld: cannot find -lnsl configure: failed program was: #line 1139 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char xdr_void(); int main() { xdr_void() ; return 0; } configure:1178: checking for bind in -lsocket configure:1197: cc -o conftest -O -pipe -I/usr/local/include -I/usr/X11R6/include conftest.c -lsocket -L/usr/local/lib 1>&5 /usr/libexec/elf/ld: cannot find -lsocket configure: failed program was: #line 1186 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char bind(); int main() { bind() ; return 0; } configure:1230: checking for X configure:1544: checking for dnet_ntoa in -ldnet configure:1563: cc -o conftest -O -pipe -I/usr/local/include -I/usr/X11R6/include conftest.c -ldnet -L/usr/local/lib 1>&5 /usr/libexec/elf/ld: cannot find -ldnet configure: failed program was: #line 1552 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char dnet_ntoa(); int main() { dnet_ntoa() ; return 0; } configure:1585: checking for dnet_ntoa in -ldnet_stub configure:1604: cc -o conftest -O -pipe -I/usr/local/include -I/usr/X11R6/include conftest.c -ldnet_stub -L/usr/local/lib 1>&5 /usr/libexec/elf/ld: cannot find -ldnet_stub configure: failed program was: #line 1593 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char dnet_ntoa(); int main() { dnet_ntoa() ; return 0; } configure:1633: checking for gethostbyname configure:1661: cc -o conftest -O -pipe -I/usr/local/include -I/usr/X11R6/include conftest.c -L/usr/local/lib 1>&5 configure:1731: checking for connect configure:1759: cc -o conftest -O -pipe -I/usr/local/include -I/usr/X11R6/include conftest.c -L/usr/local/lib 1>&5 configure:1823: checking for remove configure:1851: cc -o conftest -O -pipe -I/usr/local/include -I/usr/X11R6/include conftest.c -L/usr/local/lib 1>&5 configure:1915: checking for shmat configure:1943: cc -o conftest -O -pipe -I/usr/local/include -I/usr/X11R6/include conftest.c -L/usr/local/lib 1>&5 configure:2016: checking for IceConnectionNumber in -lICE configure:2035: cc -o conftest -O -pipe -I/usr/local/include -I/usr/X11R6/include -L/usr/X11R6/lib conftest.c -lICE -L/usr/local/lib 1>&5 configure:2060: checking for ANSI C header files configure:2073: cc -E -I/usr/local/include -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out configure:2140: cc -o conftest -O -pipe -I/usr/local/include -I/usr/X11R6/include conftest.c -L/usr/local/lib 1>&5 configure:2164: checking whether time.h and sys/time.h may both be included configure:2178: cc -c -O -pipe -I/usr/local/include -I/usr/X11R6/include conftest.c 1>&5 configure:2199: checking for sys/wait.h that is POSIX.1 compatible configure:2220: cc -c -O -pipe -I/usr/local/include -I/usr/X11R6/include conftest.c 1>&5 configure:2244: checking for fcntl.h configure:2254: cc -E -I/usr/local/include -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out configure:2244: checking for sys/time.h configure:2254: cc -E -I/usr/local/include -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out configure:2244: checking for sys/utsname.h configure:2254: cc -E -I/usr/local/include -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out configure:2244: checking for unistd.h configure:2254: cc -E -I/usr/local/include -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out configure:2244: checking for memory.h configure:2254: cc -E -I/usr/local/include -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out configure:2244: checking for X11/SM/SMlib.h configure:2254: cc -E -I/usr/local/include -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out configure:2244: checking for X11/extensions/Xdbe.h configure:2254: cc -E -I/usr/local/include -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out configure:2284: checking for XineramaQueryScreens in -lXinerama configure:2303: cc -o conftest -O -pipe -I/usr/local/include -I/usr/X11R6/include conftest.c -lXinerama -L/usr/X11R6/lib -lX11 -lXext -L/usr/local/lib 1>&5 configure:2323: checking for X11/extensions/Xinerama.h configure:2333: cc -E -I/usr/local/include -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out configure:2379: checking for rep - version >= 0.13 configure:2411: checking for GNU msgfmt configure:2433: checking for correct rep-gtk version (end of "config.log") *** Error code 1 Stop in /usr/ports/x11-wm/sawfish. *** Error code 1 Stop in /usr/ports/x11-wm/sawfish. *** Error code 1 Stop in /usr/ports/x11-wm/sawfish. *** Error code 1 Stop in /usr/ports/x11-wm/sawfish. or exactly the same, i cvsup'd a while ago aswell (aswell as a few make distclean's) -- Ben Hughes, Pavilion Internet (0845 333 5000) "Quidquid latine dictum sit, altum viditur." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 9:18:48 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (ns.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 883C737B479 for ; Fri, 10 Nov 2000 09:18:40 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id eAAHIZ804835; Fri, 10 Nov 2000 19:18:37 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id eAAHIdH80365; Fri, 10 Nov 2000 19:18:39 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A0C2DE9.F75477E0@FreeBSD.org> Date: Fri, 10 Nov 2000 19:18:33 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.76 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Ben Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/22739: sawfish refuses to build from ports. References: <200011101659.IAA62489@freefall.freebsd.org> <3A0C29B9.74057C64@FreeBSD.org> <20001110170610.A88473@pavilion.net> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Ben wrote: > On Fri, Nov 10, 2000 at 07:00:41PM +0200, Maxim Sobolev wrote: > > > sobomax@FreeBSD.org wrote: > > > > > Please try to reinstall both and install rep-gtk-gnome-0.14_1 > > > > Read "deinstall" instead of "reinstall". > > i have tried this a few times, i currently have: Weird. Please do the following: # cd /usr/ports/x11-wm/sawfish # make clean patch # vi work/sawfish-0.33/configure [Replace first line of the script "#!/bin/sh" with "#!/bin/sh -x" and save file] # script /tmp/sawfish.log # make configure # ^D # bzip2 -9 /tmp/sawfish.log And send to me (in private mail) sawfish.log.bz2 file. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 9:20: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D959037B479 for ; Fri, 10 Nov 2000 09:20:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA67134; Fri, 10 Nov 2000 09:20:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Fri, 10 Nov 2000 09:20:03 -0800 (PST) Message-Id: <200011101720.JAA67134@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: FUJISHIMA Satsuki Subject: Re: ports/22477: patchset for "X manpage" errors with XFree86-4 on bento Reply-To: FUJISHIMA Satsuki Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/22477; it has been noted by GNATS. From: FUJISHIMA Satsuki To: MIHIRA Sanpei Yoshiro Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: ports/22477: patchset for "X manpage" errors with XFree86-4 on bento Date: Sat, 11 Nov 2000 02:18:01 +0900 At Fri, 10 Nov 2000 05:10:03 -0800 (PST), MIHIRA Sanpei Yoshiro wrote: > net/vnc was committed by "Bruce A. Mah" . But > ``NO_INSTALL_MANPAGES=YES'' was still in Makefile. >I commited mail/youbin. Thanks, it was most complex port with this PR. :-) NO_INSTALL_MANPAGES is harmless and useless with "correctly fixed" USE_IMAKE ports. It does nothing. This means NO_INSTALL_MANPAGES can be retired when this PR would be successfully closed. Could you please take a look into more 33 unfixed ports? -- FUJISHIMA Satsuki To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 10:29:47 2000 Delivered-To: freebsd-ports@freebsd.org Received: from abowhill.lightrealm.com (nat-0-156.lightrealm.net [216.122.0.156]) by hub.freebsd.org (Postfix) with ESMTP id BB97B37B66E for ; Fri, 10 Nov 2000 10:29:25 -0800 (PST) Received: from vservers.com (localhost [127.0.0.1]) by abowhill.lightrealm.com (8.11.1/8.11.1) with ESMTP id eAAITLP01581; Fri, 10 Nov 2000 10:29:22 -0800 (PST) (envelope-from abowhill@vservers.com) Message-ID: <3A0C3E81.2BAF4CE7@vservers.com> Date: Fri, 10 Nov 2000 10:29:21 -0800 From: Allan Bowhill Reply-To: abowhill@vservers.com X-Mailer: Mozilla 4.73 [en] (X11; I; FreeBSD 4.2-BETA i386) X-Accept-Language: en MIME-Version: 1.0 To: Jun Kuriyama Cc: ports@FreeBSD.ORG Subject: Re: apache-jserv References: <3A0AE4CC.9C9813FC@vservers.com> <7mbsvofa6x.wl@waterblue.imgsrc.co.jp> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Jun Kuriyama wrote: > At 9 Nov 2000 17:54:53 GMT, > Charlie Root wrote: > > This is a configure problem. I have submitted a patch which > > fixes it. Check it out at: > > > > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=22693 > > I also have this problem. But patching configure does not seem right > thing. I think configure.in has something wrong though I cannot > imagine how to solve it... > > -- > Jun Kuriyama // IMG SRC, Inc. > // FreeBSD Project > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message Yeah, patching configure is a bit kludgy. I haven't quite got a handle on how configure gets configured. Somewhere along the way make is identifying itself as /usr/bin/make. Isn't there an operation in configure where running the "make" command sets the ${MAKE} variable? echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 I wonder if that is causing the make misidentification. On the other hand there are still problems with the configure script, that needed to be patched. --Allan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 13:22:33 2000 Delivered-To: freebsd-ports@freebsd.org Received: from winston.osd.bsdi.com (winston.osd.bsdi.com [204.216.27.229]) by hub.freebsd.org (Postfix) with ESMTP id A1ABC37B479; Fri, 10 Nov 2000 13:22:31 -0800 (PST) Received: from winston.osd.bsdi.com (jkh@localhost [127.0.0.1]) by winston.osd.bsdi.com (8.11.1/8.9.3) with ESMTP id eAALMQI26153; Fri, 10 Nov 2000 13:22:27 -0800 (PST) (envelope-from jkh@winston.osd.bsdi.com) To: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) Cc: Jimmy , ports@FreeBSD.ORG, pine@freebsd.ady.ro, kris@FreeBSD.ORG Subject: Re: 4.2 BETA ISO image In-Reply-To: Message from asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) of "10 Nov 2000 04:29:27 PST." Date: Fri, 10 Nov 2000 13:22:26 -0800 Message-ID: <26150.973891346@winston.osd.bsdi.com> From: Jordan Hubbard Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Eventually, sysinstall/pkg_add should be fixed. There is no reason > why we can't let people use sysinstall where a normal pkg_add works > fine. If it were easy to fix, it would be fixed already. It would also have been fixed before code freeze and not 5 days before release, so can we please drag this discussion back to more practical and hence productive lines? :) - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 13:37:41 2000 Delivered-To: freebsd-ports@freebsd.org Received: from jenna.webcraft99.alt (unknown [202.151.212.74]) by hub.freebsd.org (Postfix) with SMTP id AC37837B479 for ; Fri, 10 Nov 2000 13:37:36 -0800 (PST) Received: (qmail 67747 invoked from network); 10 Nov 2000 21:40:49 -0000 Received: from shania.webcraft99.alt (HELO shania.webcraft99.com) (192.168.1.31) by jenna.webcraft99.alt with SMTP; 10 Nov 2000 21:40:49 -0000 Message-Id: <5.0.0.25.0.20001111052612.00a726b0@mail.miway.com> X-Sender: aeefyu@192.168.1.22 (Unverified) X-Mailer: QUALCOMM Windows Eudora Version 5.0 Date: Sat, 11 Nov 2000 05:40:44 +0800 To: ports@freebsd.org From: Feisal Umar Subject: unable to compile cyrus - CRYPT error? Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi. Am not sure wether to direct this to freebsd-questions or -ports. Anyways, I got the following error message on compiling Cyrus from the ports on a 4.2BETA. I would appreciate any help or pointers with regards to ther matter. Thanks in advance --------------- configure:3848: checking for crypt configure:3876: cc -o conftest -O -pipe -I/usr/local/include -L/usr/lib -R/usr/lib -L/usr/local/lib -R/usr/local/lib conftest.c -lcom_err -lfl 1>&5 /tmp/ccN51203.o: In function `main': /tmp/ccN51203.o(.text+0x7): undefined reference to `crypt' configure: failed program was: #line 3853 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char crypt(); below. */ #include /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char crypt(); int main() { /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub_crypt) || defined (__stub___crypt) choke me #else crypt(); #endif ; return 0; } configure:3894: checking for crypt in -lcrypt configure:3913: cc -o conftest -O -pipe -I/usr/local/include -L/usr/lib -R/usr/lib -L/usr/local/lib -R/usr/local/lib conftest.c -lcrypt -lcom_err -lfl 1>&5 configure:3944: checking for des_ecb_encrypt in -ldes configure:3963: cc -o conftest -O -pipe -I/usr/local/include -L/usr/lib -R/usr/lib -L/usr/local/lib -R/usr/local/lib conftest.c -ldes -lcrypt -lcom_err -lfl 1>&5 /usr/lib/libdes.so: file not recognized: File format not recognized configure: failed program was: #line 3952 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char des_ecb_encrypt(); int main() { des_ecb_encrypt() ; return 0; } (end of "config.log") *** Error code 1 Stop in /usr/ports/mail/cyrus. *** Error code 1 Stop in /usr/ports/mail/cyrus. *** Error code 1 Stop in /usr/ports/mail/cyrus. *** Error code 1 Stop in /usr/ports/mail/cyrus. ------------------------- Feisal Umar Webcraft Sdn Bhd - http://www.webcraft99.com Love is the triumph of imagination over intelligence. -- H. L. Mencken To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 14:27:53 2000 Delivered-To: freebsd-ports@freebsd.org Received: from norn.cm.nu (h24-64-232-13.cg.shawcable.net [24.64.232.13]) by hub.freebsd.org (Postfix) with ESMTP id 68ABA37B479; Fri, 10 Nov 2000 14:27:51 -0800 (PST) Received: by norn.cm.nu (Postfix, from userid 1000) id 105D5112; Fri, 10 Nov 2000 15:26:01 -0700 (MST) Date: Fri, 10 Nov 2000 15:26:00 -0700 From: Chris Piazza To: Ben Cc: Maxim Sobolev , freebsd-ports@FreeBSD.ORG Subject: Re: ports/22739: sawfish refuses to build from ports. Message-ID: <20001110152600.A10488@norn.cm.nu> References: <200011101659.IAA62489@freefall.freebsd.org> <3A0C29B9.74057C64@FreeBSD.org> <20001110170610.A88473@pavilion.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Mutt/1.2.5i-jp0 In-Reply-To: <20001110170610.A88473@pavilion.net>; from ben@pavilion.net on Fri, Nov 10, 2000 at 05:06:10PM +0000 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Nov 10, 2000 at 05:06:10PM +0000, Ben wrote: > On Fri, Nov 10, 2000 at 07:00:41PM +0200, Maxim Sobolev wrote: > > > sobomax@FreeBSD.org wrote: > > > > > Please try to reinstall both and install rep-gtk-gnome-0.14_1 > > > > Read "deinstall" instead of "reinstall". > > i have tried this a few times, i currently have: > > lament:~$ pkg_info | grep rep > librep-0.13.2 An Emacs Lisp like runtime library > rep-gtk-gnome-0.14_1 GTK+ binding for rep Lisp interpreter > > installed only and a Make sure there isn't any rep stuff in /usr/local. (look in the plist and prepend /usr/local to the files instead of /usr/X11R6 like it's supposed to be to check...) -Chris -- Chris Piazza (yawn...) Calgary, AB, Canada cpiazza@jaxon.net -or- cpiazza@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 15: 0:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EDC2937B4C5 for ; Fri, 10 Nov 2000 15:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA22352; Fri, 10 Nov 2000 15:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from mail.virtual-estates.net (video-collage.com [160.79.196.177]) by hub.freebsd.org (Postfix) with ESMTP id DB98E37B479 for ; Fri, 10 Nov 2000 14:51:56 -0800 (PST) Received: (from root@localhost) by mail.virtual-estates.net (8.9.3+3.2W/8.9.3) id RAA05601; Fri, 10 Nov 2000 17:51:50 -0500 (EST) Message-Id: <200011102251.RAA05601@mail.virtual-estates.net> Date: Fri, 10 Nov 2000 17:51:50 -0500 (EST) From: Mikhail Teterin Reply-To: mi@aldan.algebra.com To: FreeBSD-gnats-submit@freebsd.org Cc: vladimir.kloz@dtg.cz, jim@thehouselys.net X-Send-Pr-Version: 3.2 Subject: ports/22757: new port www/mod_auth_pgsql Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22757 >Category: ports >Synopsis: new port www/mod_auth_pgsql >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Nov 10 15:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Mikhail Teterin >Release: FreeBSD 2.2.8-STABLE i386 >Organization: Virtual Estates, Inc. >Environment: >Description: Functionally equivalent to the mod_auth_mysql, but uses PostgreSQL database as a back-end. Most of the port shamefully copied from the mod_auth_mysql port. Tested to build and install properly on FreeBSD 4.1.1 and 2.2.8. >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: # # mod_auth_pgsql # mod_auth_pgsql/files # mod_auth_pgsql/Makefile # mod_auth_pgsql/distinfo # mod_auth_pgsql/pkg-comment # mod_auth_pgsql/pkg-descr # mod_auth_pgsql/pkg-plist # echo c - mod_auth_pgsql mkdir -p mod_auth_pgsql > /dev/null 2>&1 echo c - mod_auth_pgsql/files mkdir -p mod_auth_pgsql/files > /dev/null 2>&1 echo x - mod_auth_pgsql/Makefile sed 's/^X//' >mod_auth_pgsql/Makefile << 'END-of-mod_auth_pgsql/Makefile' X# New ports collection makefile for: apache mod_auth_pgsql X# Date created: 2000/11/10 X# Whom: Mikhail Teterin X# X# $FreeBSD$ X XPORTNAME= mod_auth_pgsql XPORTVERSION= 0.9.5a XCATEGORIES= www XMASTER_SITES= ftp://ftp.eurolink.it/pub/linux/postgreSQL/mod_auth_pgsql/ X XMAINTAINER= mi@aldan.algebra.com X XBUILD_DEPENDS= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/${AP_PORT} \ X ${LOCALBASE}/pgsql/lib/libpq.so:${PORTSDIR}/databases/postgresql7 XRUN_DEPENDS= ${LOCALBASE}/sbin/${AP_TARGET}:${PORTSDIR}/www/${AP_PORT} \ X ${LOCALBASE}/pgsql/lib/libpq.so:${PORTSDIR}/databases/postgresql7 X XWRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:S/a//} X X.include X XAPXS= ${LOCALBASE}/sbin/apxs X XAP_PORT?= apache13 X.if exists(${APXS}) XAPXS_WORKS!= ${APXS} -q TARGET 2>/dev/null || echo no X.endif X.if exists(${APXS}) && ${APXS_WORKS} != no XAP_TARGET!= ${APXS} -q TARGET XAP_SYSCONF!= ${APXS} -q SYSCONFDIR XAP_INCLUDE!= ${APXS} -q INCLUDEDIR XAP_LIBEXEC!= ${APXS} -q LIBEXECDIR XCFLAGS:= `${APXS} -q CFLAGS` ${CFLAGS} X.else XAP_TARGET?= httpd XAP_SYSCONF?= ${PREFIX}/etc/apache XAP_INCLUDE?= ${PREFIX}/include/apache XAP_LIBEXEC?= ${PREFIX}/libexec/apache X.endif X XAUTH_PGSQL_DOCS= apache/manual/mod/mod_auth_pgsql X XPLIST_SUB+= AUTH_PGSQL_DOCS="${AUTH_PGSQL_DOCS}" X XPKGMESSAGE= ${WRKSRC}/.install_notes X XHAS_CONFIGURE= yes XCONFIGURE_ARGS= --with-pgsql=${PREFIX}/pgsql \ X --with-apxs=${APXS} X X.if !defined(NOPORTDOCS) XPLIST_SUB+= DOC='' Xpost-install: X @${MKDIR} ${PREFIX}/share/doc/${AUTH_PGSQL_DOCS} X ${INSTALL_DATA} ${WRKSRC}/README \ X ${PREFIX}/share/doc/${AUTH_PGSQL_DOCS}/ X ${TR} -d \\015 < ${WRKSRC}/mod_auth_pgsql.html \ X > ${PREFIX}/share/doc/${AUTH_PGSQL_DOCS}/index.html X ${CHMOD} ${SHAREMODE} \ X ${PREFIX}/share/doc/${AUTH_PGSQL_DOCS}/index.html X ${CHOWN} ${SHAREOWN}:${SHAREGRP} \ X ${PREFIX}/share/doc/${AUTH_PGSQL_DOCS}/index.html X ${LN} -sf ${AUTH_PGSQL_DOCS} ${PREFIX}/share/doc/ X.else XPLIST_SUB+= DOC='@comment ' X.endif X X.include END-of-mod_auth_pgsql/Makefile echo x - mod_auth_pgsql/distinfo sed 's/^X//' >mod_auth_pgsql/distinfo << 'END-of-mod_auth_pgsql/distinfo' XMD5 (mod_auth_pgsql-0.9.5a.tar.gz) = 8c8da3bdc8c1d04aa3173b5ee6715b51 END-of-mod_auth_pgsql/distinfo echo x - mod_auth_pgsql/pkg-comment sed 's/^X//' >mod_auth_pgsql/pkg-comment << 'END-of-mod_auth_pgsql/pkg-comment' XAllows users to use PostgreSQL databases for user authentication END-of-mod_auth_pgsql/pkg-comment echo x - mod_auth_pgsql/pkg-descr sed 's/^X//' >mod_auth_pgsql/pkg-descr << 'END-of-mod_auth_pgsql/pkg-descr' XThis add-on module allows the apache web server to use a PostgreSQL Xdatabase for user and/or group authentication. For large user lists this Xcan offer a significate speed up over apache's standard flat file Xformat. END-of-mod_auth_pgsql/pkg-descr echo x - mod_auth_pgsql/pkg-plist sed 's/^X//' >mod_auth_pgsql/pkg-plist << 'END-of-mod_auth_pgsql/pkg-plist' Xlibexec/apache/mod_auth_pgsql.so X@exec %D/sbin/apxs -e -a -n auth_pgsql %f X@unexec %D/sbin/apxs -e -A -n auth_pgsql %f X%%DOC%%share/doc/%%AUTH_PGSQL_DOCS%%/README X%%DOC%%share/doc/%%AUTH_PGSQL_DOCS%%/index.html X%%DOC%%@exec (cd %D/share/doc && ln -sf %%AUTH_PGSQL_DOCS%% mod_auth_pgsql) X%%DOC%%@unexec rm -f %D/share/doc/mod_auth_pgsql X%%DOC%%@dirrm share/doc/%%AUTH_PGSQL_DOCS%% END-of-mod_auth_pgsql/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 15: 9:15 2000 Delivered-To: freebsd-ports@freebsd.org Received: from vision.estjohn.com (vision.estjohn.com [207.110.57.224]) by hub.freebsd.org (Postfix) with SMTP id DC39D37B479 for ; Fri, 10 Nov 2000 15:09:13 -0800 (PST) Received: (qmail 27662 invoked by uid 2000); 10 Nov 2000 23:12:35 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 10 Nov 2000 23:12:35 -0000 Date: Fri, 10 Nov 2000 15:12:35 -0800 (PST) From: Sander van Zoest X-Sender: sander@localhost To: leo@florida.sarang.net Cc: ports@FreeBSD.org Subject: FreeBSD Port: p5-MP3-ID3v1Tag-1.10 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Leo & ports, I just wanted to say that as I am a FreeBSD user and the author of this module, I would be willing to take over maintainance of my own code. If this is of interest let me know. Cheers, -- Sander van Zoest sander@vanzoest.com High Geek http://www.vanZoest.com/sander/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 15:18:54 2000 Delivered-To: freebsd-ports@freebsd.org Received: from citusc17.usc.edu (citusc17.usc.edu [128.125.38.177]) by hub.freebsd.org (Postfix) with ESMTP id 8ED2B37B479 for ; Fri, 10 Nov 2000 15:18:51 -0800 (PST) Received: (from kris@localhost) by citusc17.usc.edu (8.11.1/8.11.1) id eAANK0s79823 for ports@freebsd.org; Fri, 10 Nov 2000 15:20:00 -0800 (PST) (envelope-from kris) Date: Fri, 10 Nov 2000 15:19:59 -0800 From: Kris Kennaway To: ports@freebsd.org Subject: [SECURITY] Upgrade of cfenging port needed Message-ID: <20001110151959.A79777@citusc17.usc.edu> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="zhXaljGHf11kAtnf" Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --zhXaljGHf11kAtnf Content-Type: text/plain; charset=us-ascii Content-Disposition: inline The cfengine port was marked forbidden a month ago..it needs to be upgraded to the most recent alpha version. Unfortunately, the author has decided not to actually fix the most recent non-alpha release (which is the one we currently have). Can someone take care of this? Kris --zhXaljGHf11kAtnf Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEARECAAYFAjoMgp8ACgkQWry0BWjoQKXN5wCbBbCFjRCLOUIBrJPq9+ZZiS7b spsAnAz4smNZz5EXcBSOO1j9GYJHJsAn =55iX -----END PGP SIGNATURE----- --zhXaljGHf11kAtnf-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 16:23:40 2000 Delivered-To: freebsd-ports@freebsd.org Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.130.111.12]) by hub.freebsd.org (Postfix) with ESMTP id 68C9C37B4C5; Fri, 10 Nov 2000 16:23:35 -0800 (PST) Received: from [128.130.111.2] (deneb [128.130.111.2]) by vexpert.dbai.tuwien.ac.at (8.9.3/8.9.3) with ESMTP id BAA00843; Sat, 11 Nov 2000 01:23:30 +0100 (MET) Date: Sat, 11 Nov 2000 01:23:30 +0100 (CET) From: Gerald Pfeifer To: Luoqi Chen Cc: , Subject: Re: Wine port: How to obtain MAC address? In-Reply-To: <200011061904.OAA09537@seven.watermarkgroup.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, 6 Nov 2000, Luoqi Chen wrote: > There's no easy way (that I know of) to get the mac address in FreeBSD. :-( > (time for a SIOCGIFLLADDR?) Yes, Yes, Yes. Please. But perhaps you could mimmick what Linux does? strcpy(ifInfo.ifr_name, ifName); if (ioctl(sock, SIOCGIFHWADDR, &ifInfo) < 0) : (Thanks to all you responded with helpful hints! I'll try to hack the Wine port accordingly.) Gerald -- Gerald "Jerry" pfeifer@dbai.tuwien.ac.at http://www.dbai.tuwien.ac.at/~pfeifer/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 19:20:17 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 70D1B37B4C5 for ; Fri, 10 Nov 2000 19:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA58832; Fri, 10 Nov 2000 19:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from aquarius.aquezada.com (cr289522-a.ym1.on.wave.home.com [24.42.25.74]) by hub.freebsd.org (Postfix) with ESMTP id DE4E937B479 for ; Fri, 10 Nov 2000 19:15:41 -0800 (PST) Received: by aquarius.aquezada.com (Postfix, from userid 1001) id 7B807B75A; Fri, 10 Nov 2000 22:15:38 -0500 (EST) Message-Id: <20001111031538.7B807B75A@aquarius.aquezada.com> Date: Fri, 10 Nov 2000 22:15:38 -0500 (EST) From: jdunn@aquezada.com Reply-To: jdunn@aquezada.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22763: adzapper port upgrade Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22763 >Category: ports >Synopsis: adzapper port upgrade >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Nov 10 19:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Julian C. Dunn >Release: FreeBSD 3.5-STABLE i386 >Organization: Aquezada Productions >Environment: >Description: Adzapper port upgrade from 0.1.30 to 0.3.0 >How-To-Repeat: N/A >Fix: Unified diff of source trees: diff -ruN adzapper.old/Makefile adzapper/Makefile --- adzapper.old/Makefile Sat Apr 15 04:15:22 2000 +++ adzapper/Makefile Fri Nov 10 21:25:33 2000 @@ -1,17 +1,18 @@ # New ports collection makefile for: adzapper -# Date created: 01 Oct 1999 -# Whom: Dominik Rothert +# Date created: 10 Nov 2000 +# Whom: Julian Dunn # # $FreeBSD: ports/www/adzapper/Makefile,v 1.3 2000/04/10 00:04:09 cpiazza Exp $ # PORTNAME= adzapper -PORTVERSION= 0.1.30 +PORTVERSION= 0.3.0 CATEGORIES= www -MASTER_SITES= http://www.halcyon.com/adamf/adzapper/ -EXTRACT_SUFX= .tgz +MASTER_SITES= http://www.zaplet.org/adzapper/ \ + ftp://ftp.aquezada.com/pub/distrib/adzapper/ +EXTRACT_SUFX= .tar.gz -MAINTAINER= dr@domix.de +MAINTAINER= jdunn@aquezada.com BUILD_DEPENDS= python:${PORTSDIR}/lang/python RUN_DEPENDS= python:${PORTSDIR}/lang/python @@ -19,10 +20,9 @@ NO_BUILD= yes post-extract: - @${RM} -rf ${WRKSRC}/src/medusa/CVS @${SED} -e 's,__PREFIX__,${PREFIX},g' ${FILESDIR}/adzapper.sh > \ ${WRKSRC}/adzapper.sh - @${SED} -e 's,__PREFIX__,${PREFIX},g' ${FILESDIR}/adzapper.sh > \ + @${SED} -e 's,__PREFIX__,${PREFIX},g' ${FILESDIR}/rc.adzapper.sh > \ ${WRKSRC}/rc.adzapper.sh do-install: @@ -30,11 +30,15 @@ ${INSTALL_SCRIPT} ${WRKSRC}/adzapper.sh ${PREFIX}/sbin/adzapper ${INSTALL_SCRIPT} ${WRKSRC}/adzapper.py ${PREFIX}/share/adzapper/ ${INSTALL_SCRIPT} ${WRKSRC}/rc.adzapper.sh ${PREFIX}/etc/rc.d/adzapper.sh + @if [ -d ${PREFIX}/share/adzapper/zaplets ]; then \ + ${MV} -f ${PREFIX}/share/adzapper/zaplets ${PREFIX}/share/adzapper/zaplets.old; \ + fi ${CP} -Rp ${WRKSRC}/zaplets ${PREFIX}/share/adzapper ${CP} -Rp ${WRKSRC}/doc ${PREFIX}/share/adzapper ${CP} -Rp ${WRKSRC}/src ${PREFIX}/share/adzapper ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/adzapper - ${INSTALL_DATA} ${WRKSRC}/adzapper.conf ${PREFIX}/etc ${INSTALL_DATA} ${WRKSRC}/adzapper.conf ${PREFIX}/etc/adzapper.conf.sample + @${ECHO_MSG} "===> Copy the ${PREFIX}/etc/adzapper.conf.sample to ${PREFIX}/etc/adzapper.conf," + @${ECHO_MSG} "===> adding your own customizations, before starting adzapperd." .include diff -ruN adzapper.old/distinfo adzapper/distinfo --- adzapper.old/distinfo Sun Oct 31 21:33:09 1999 +++ adzapper/distinfo Fri Nov 10 20:15:42 2000 @@ -1 +1 @@ -MD5 (adzapper-0.1.30.tgz) = abec2429b519ad06d26014ff50548c9d +MD5 (adzapper-0.3.0.tar.gz) = 585e1b96ac7203eeda93b7359e2c66af diff -ruN adzapper.old/files/rc.adzapper.sh adzapper/files/rc.adzapper.sh --- adzapper.old/files/rc.adzapper.sh Sat Jul 8 04:21:53 2000 +++ adzapper/files/rc.adzapper.sh Fri Nov 10 21:35:26 2000 @@ -1,19 +1,6 @@ #!/bin/sh -case $1 in -start) - if [ -f __PREFIX__/etc/adzapper.conf ]; then - __PREFIX__/sbin/adzapper & - test $? -eq 0 && echo -n ' adzapper' - fi - ;; -stop) - killall adzapper && echo -n ' adzapper' - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - exit 64 - ;; -esac - -exit 0 +if [ -f __PREFIX__/etc/adzapper.conf ]; then +exec python __PREFIX__/share/adzapper/adzapper.py -f __PREFIX__/etc/adzapper.conf >>/var/log/adzapperd.log 2>>/var/log/adzapperd.log & +echo -n ' adzapperd' +fi diff -ruN adzapper.old/pkg-descr adzapper/pkg-descr --- adzapper.old/pkg-descr Sun Oct 31 21:33:09 1999 +++ adzapper/pkg-descr Fri Nov 10 22:07:32 2000 @@ -1,3 +1,5 @@ adzapper is a filtering proxy that can block ads from being displayed on your web browser. instead of ad banners, you see blank spaces: adzapper transforms the ads into transparent gifs. + +- Julian C. Dunn diff -ruN adzapper.old/pkg-plist adzapper/pkg-plist --- adzapper.old/pkg-plist Wed May 31 02:42:22 2000 +++ adzapper/pkg-plist Fri Nov 10 22:02:48 2000 @@ -2,126 +2,253 @@ etc/adzapper.conf.sample sbin/adzapper etc/rc.d/adzapper.sh -share/adzapper/README share/adzapper/adzapper.py -share/adzapper/doc/CHANGELOG -share/adzapper/doc/COPYING -share/adzapper/doc/COPYING-Zaplet -share/adzapper/doc/PythonPowered.gif -share/adzapper/doc/THANKS -share/adzapper/doc/TODO -share/adzapper/doc/about-adzapper.html -share/adzapper/doc/description.txt -share/adzapper/doc/index.html -share/adzapper/doc/install.html -share/adzapper/doc/template.html -share/adzapper/doc/zaplet-file-format-v0.5.txt -share/adzapper/doc/zaplet-file-format.html -share/adzapper/doc/zaplets.html -share/adzapper/doc/zpowered.jpg -share/adzapper/src/adzapper_engine.py -share/adzapper/src/asyncore_fixes.py -share/adzapper/src/blank_gif.py -share/adzapper/src/debug.py -share/adzapper/src/http_proxy.py -share/adzapper/src/http_server_fixes.py -share/adzapper/src/medusa/__init__.py -share/adzapper/src/medusa/asynchat.py -share/adzapper/src/medusa/asyncore.py -share/adzapper/src/medusa/counter.py -share/adzapper/src/medusa/default_handler.py -share/adzapper/src/medusa/filesys.py -share/adzapper/src/medusa/ftp_server.py -share/adzapper/src/medusa/http_date.py -share/adzapper/src/medusa/http_server.py -share/adzapper/src/medusa/logger.py -share/adzapper/src/medusa/m_syslog.py -share/adzapper/src/medusa/max_sockets.py -share/adzapper/src/medusa/medusa_gif.py -share/adzapper/src/medusa/mime_type_table.py -share/adzapper/src/medusa/monitor.py -share/adzapper/src/medusa/monitor_client.py -share/adzapper/src/medusa/monitor_client_win32.py -share/adzapper/src/medusa/producers.py -share/adzapper/src/medusa/resolver.py -share/adzapper/src/medusa/select_trigger.py -share/adzapper/src/medusa/status_handler.py -share/adzapper/src/platform_dependent.py -share/adzapper/src/zaplet_engine.py -share/adzapper/zaplets/204.71.200.zap -share/adzapper/zaplets/207.87.18.203.zap -share/adzapper/zaplets/209.132.99.165.zap +share/adzapper/zaplets/xb.xoom.com.zap +share/adzapper/zaplets/206.41.20.7.zap +share/adzapper/zaplets/207.87.18.zap share/adzapper/zaplets/209.207.224.zap +share/adzapper/zaplets/209.244.186.44.zap +share/adzapper/zaplets/216.207.47.35.zap share/adzapper/zaplets/216.34.69.zap +share/adzapper/zaplets/216.35.211.245.zap +share/adzapper/zaplets/216.87.208.127.zap share/adzapper/zaplets/247media.com.zap -share/adzapper/zaplets/abcnews.go.com.zap share/adzapper/zaplets/ad.preferences.com.zap +share/adzapper/zaplets/ad.rouze.com.zap share/adzapper/zaplets/adfu.blockstackers.com.zap share/adzapper/zaplets/adimages.go.com.zap -share/adzapper/zaplets/ads.enliven.com +share/adzapper/zaplets/admedia.xoom.com.zap +share/adzapper/zaplets/ads.freshmeat.net.zap share/adzapper/zaplets/ads.imgis.com.zap share/adzapper/zaplets/ads.netgravity.net.zap +share/adzapper/zaplets/ads.tripod.com.zap share/adzapper/zaplets/ads.tucows.com.zap -share/adzapper/zaplets/ads.web.aol.com +share/adzapper/zaplets/ads.web.aol.com.zap share/adzapper/zaplets/ads.x10.com.zap -share/adzapper/zaplets/adtech.de +share/adzapper/zaplets/adserv.quality-channel.de.zap +share/adzapper/zaplets/adserver.zap +share/adzapper/zaplets/adtech.de.zap share/adzapper/zaplets/akamaitech.net.zap share/adzapper/zaplets/andovernews.com.zap +share/adzapper/zaplets/arstechnica.com.zap +share/adzapper/zaplets/banner.orb.net.zap share/adzapper/zaplets/bfast.com.zap -share/adzapper/zaplets/blue.gif +share/adzapper/zaplets/biz.thomsoninvest.net.zap +share/adzapper/zaplets/blueninja.com.zap +share/adzapper/zaplets/burstnet.com.zap share/adzapper/zaplets/cdnow.com.zap -share/adzapper/zaplets/clickhere.egroups.com.zap share/adzapper/zaplets/cmpnet.com.zap +share/adzapper/zaplets/clickhere.egroups.com.zap share/adzapper/zaplets/cnet.com.zap +share/adzapper/zaplets/cnn.com.zap +share/adzapper/zaplets/codecatalog.com.zap +share/adzapper/zaplets/core.freshmeat.net.zap +share/adzapper/zaplets/cygnus.com.zap +share/adzapper/zaplets/dailyradar.com.zap +share/adzapper/zaplets/davecentral.com.zap +share/adzapper/zaplets/default-numeric.zap share/adzapper/zaplets/default.zap share/adzapper/zaplets/deja.com.zap share/adzapper/zaplets/dhs.org.zap share/adzapper/zaplets/dogpile.com.zap share/adzapper/zaplets/doubleclick.net.zap +share/adzapper/zaplets/eads.com.zap +share/adzapper/zaplets/economist.com.zap +share/adzapper/zaplets/feedmag.com.zap share/adzapper/zaplets/flycast.com.zap share/adzapper/zaplets/focalink.com.zap +share/adzapper/zaplets/i33.com.zap share/adzapper/zaplets/freshmeat.net.zap -share/adzapper/zaplets/g.akamaitech.net -share/adzapper/zaplets/geocities.com.zap share/adzapper/zaplets/go2net.com.zap share/adzapper/zaplets/headhunter.net.zap +share/adzapper/zaplets/heise.de.zap share/adzapper/zaplets/herring.com.zap share/adzapper/zaplets/hotwired.com.zap -share/adzapper/zaplets/i33.com.zap +share/adzapper/zaplets/ibm.com.zap share/adzapper/zaplets/idirect.tucows.com.zap share/adzapper/zaplets/image.pathfinder.com.zap +share/adzapper/zaplets/images.whatshotnow.com.zap share/adzapper/zaplets/imgis.com.zap share/adzapper/zaplets/infoseek.go.com.zap +share/adzapper/zaplets/insight.com.zap +share/adzapper/zaplets/intervu.net.zap share/adzapper/zaplets/link4ads.com.zap share/adzapper/zaplets/linkexchange.com.zap share/adzapper/zaplets/linuxjournal.com.zap +share/adzapper/zaplets/linuxpower.com.zap +share/adzapper/zaplets/linuxstart.com.zap share/adzapper/zaplets/linuxtoday.com.zap share/adzapper/zaplets/lwn.net.zap +share/adzapper/zaplets/mercurycenter.com.zap share/adzapper/zaplets/msnbc.com.zap +share/adzapper/zaplets/netg.vitaminshoppe.com.zap share/adzapper/zaplets/ngadcenter.net.zap share/adzapper/zaplets/ngserve.pcworld.com.zap share/adzapper/zaplets/promotions.yahoo.com.zap +share/adzapper/zaplets/q.com.zap +share/adzapper/zaplets/redherring.com.zap share/adzapper/zaplets/rouze.com.zap share/adzapper/zaplets/salon.com.zap share/adzapper/zaplets/salonmagazine.com.zap -share/adzapper/zaplets/static.admaximize.com +share/adzapper/zaplets/securityportal.com.zap +share/adzapper/zaplets/sightings.com.zap +share/adzapper/zaplets/static.admaximize.com.zap +share/adzapper/zaplets/wired.com.zap share/adzapper/zaplets/technocrat.net.zap +share/adzapper/zaplets/thechipmerchant.com.zap share/adzapper/zaplets/theonion.com.zap share/adzapper/zaplets/thestandard.com.zap +share/adzapper/zaplets/thinksecret.com.zap +share/adzapper/zaplets/uexpress.com.zap +share/adzapper/zaplets/valueclick.com.zap share/adzapper/zaplets/view.avenuea.com.zap share/adzapper/zaplets/virtumundo.com.zap share/adzapper/zaplets/was.ads.link4ads.com.zap -share/adzapper/zaplets/wired.com.zap +share/adzapper/zaplets/websponsors.com.zap share/adzapper/zaplets/wsj.com.zap share/adzapper/zaplets/www.ad.tomshardware.com.zap share/adzapper/zaplets/www.go.com.zap share/adzapper/zaplets/www.rzeczpospolita.pl.zap -share/adzapper/zaplets/yahoo.co.uk +share/adzapper/zaplets/x10.com.zap +share/adzapper/zaplets/yahoo.co.uk.zap share/adzapper/zaplets/yahoo.com.zap share/adzapper/zaplets/yimg.com.zap +share/adzapper/zaplets/yoda.cybereps.com.zap share/adzapper/zaplets/zdnet.com.zap -@dirrm share/adzapper/doc +share/adzapper/zaplets/akamai.net.zap +share/adzapper/zaplets/amedia.techies.com.zap +share/adzapper/zaplets/angelfire.com.zap +share/adzapper/zaplets/banners.uswestdex.com.zap +share/adzapper/zaplets/beyond2000.com.zap +share/adzapper/zaplets/businessweek.com.zap +share/adzapper/zaplets/co.uk.zap +share/adzapper/zaplets/coffeecup.com.zap +share/adzapper/zaplets/dailynews.yahoo.com.zap +share/adzapper/zaplets/dailynews1.yahoo.com.zap +share/adzapper/zaplets/dir.yahoo.com.zap +share/adzapper/zaplets/download.macromedia.com.zap +share/adzapper/zaplets/fool.com.zap +share/adzapper/zaplets/free-banners.com.zap +share/adzapper/zaplets/gnu.org.zap +share/adzapper/zaplets/google.com.zap.bak +share/adzapper/zaplets/hondavfr.com.zap +share/adzapper/zaplets/interadnet.com.zap +share/adzapper/zaplets/linuxdevices.com.zap +share/adzapper/zaplets/lycos.com.zap +share/adzapper/zaplets/money.pagecount.com.zap +share/adzapper/zaplets/newshub.com.zap +share/adzapper/zaplets/pic.geocities.com.zap +share/adzapper/zaplets/spiegel.com.zap +share/adzapper/zaplets/store.yahoo.com.zap +share/adzapper/zaplets/techrepublic.com.zap +share/adzapper/zaplets/theregister.co.uk.zap +share/adzapper/zaplets/worldforge.org.zap +share/adzapper/zaplets/199.172.144.25.zap +share/adzapper/doc/PythonPoweredSmall.gif +share/adzapper/doc/COPYING +share/adzapper/doc/COPYING-Zaplet +share/adzapper/doc/PythonPowered.gif +share/adzapper/doc/THANKS +share/adzapper/doc/TODO +share/adzapper/doc/about-adzapper.html +share/adzapper/doc/description.txt +share/adzapper/doc/index.html +share/adzapper/doc/install.html +share/adzapper/doc/sourceforge-description.txt +share/adzapper/doc/template.html +share/adzapper/doc/zaplet-file-format.html +share/adzapper/doc/zaplets.html +share/adzapper/doc/zaplet-0.9.dtd +share/adzapper/doc/zpowered.jpg +share/adzapper/doc/adzapper-bolt4.gif +share/adzapper/doc/CHANGELOG +share/adzapper/src/config_file/__init__.py +share/adzapper/src/config_file/adzapper.conf.xml +share/adzapper/src/config_file/foo.xml +share/adzapper/src/config_file/foo1.xml +share/adzapper/src/config_file/config_file-0.2.dtd +share/adzapper/src/config_file/rw_config_file.py +share/adzapper/src/debug/__init__.py +share/adzapper/src/debug/debug.py +share/adzapper/src/xml/parsers/xmlproc/xmlval.py +share/adzapper/src/xml/parsers/xmlproc/catalog.py +share/adzapper/src/xml/parsers/xmlproc/charconv.py +share/adzapper/src/xml/parsers/xmlproc/dtdparser.py +share/adzapper/src/xml/parsers/xmlproc/errors.py +share/adzapper/src/xml/parsers/xmlproc/namespace.py +share/adzapper/src/xml/parsers/xmlproc/xcatalog.py +share/adzapper/src/xml/parsers/xmlproc/xmlapp.py +share/adzapper/src/xml/parsers/xmlproc/xmldtd.py +share/adzapper/src/xml/parsers/xmlproc/xmlproc.py +share/adzapper/src/xml/parsers/xmlproc/xmlutils.py +share/adzapper/src/xml/parsers/xmlproc/__init__.py +share/adzapper/src/xml/parsers/__init__.py +share/adzapper/src/xml/parsers/sgmllib.py +share/adzapper/src/xml/parsers/xmllib.py +share/adzapper/src/xml/sax/drivers/__init__.py +share/adzapper/src/xml/sax/drivers/drv_xmllib.py +share/adzapper/src/xml/sax/drivers/drv_xmlproc.py +share/adzapper/src/xml/sax/drivers/drv_xmlproc_val.py +share/adzapper/src/xml/sax/drivers/pylibs.py +share/adzapper/src/xml/sax/__init__.py +share/adzapper/src/xml/sax/saxexts.py +share/adzapper/src/xml/sax/saxlib.py +share/adzapper/src/xml/sax/saxutils.py +share/adzapper/src/xml/__init__.py +share/adzapper/src/zaplet/CVS/Root +share/adzapper/src/zaplet/CVS/Repository +share/adzapper/src/zaplet/CVS/Entries +share/adzapper/src/zaplet/__init__.py +share/adzapper/src/zaplet/zaplet_engine.py +share/adzapper/src/zaplet/zaplet_object.py +share/adzapper/src/zaplet/zaplet_sax_handler.py +share/adzapper/src/ui/__init__.py +share/adzapper/src/ui/actions.py +share/adzapper/src/ui/dtml.py +share/adzapper/src/ui/html_table.py +share/adzapper/src/adzapper/CVS/Root +share/adzapper/src/adzapper/CVS/Repository +share/adzapper/src/adzapper/CVS/Entries +share/adzapper/src/adzapper/__init__.py +share/adzapper/src/adzapper/adzapper_engine.py +share/adzapper/src/adzapper/blank_gif.py +share/adzapper/src/adzapper/platform_dependent.py +share/adzapper/src/medusa/CVS/Root +share/adzapper/src/medusa/CVS/Repository +share/adzapper/src/medusa/CVS/Entries +share/adzapper/src/medusa/__init__.py +share/adzapper/src/medusa/asynchat.py +share/adzapper/src/medusa/asyncore.py +share/adzapper/src/medusa/counter.py +share/adzapper/src/medusa/default_handler.py +share/adzapper/src/medusa/filesys.py +share/adzapper/src/medusa/ftp_server.py +share/adzapper/src/medusa/http_date.py +share/adzapper/src/medusa/http_server.py +share/adzapper/src/medusa/logger.py +share/adzapper/src/medusa/m_syslog.py +share/adzapper/src/medusa/max_sockets.py +share/adzapper/src/medusa/medusa_gif.py +share/adzapper/src/medusa/mime_type_table.py +share/adzapper/src/medusa/monitor.py +share/adzapper/src/medusa/monitor_client.py +share/adzapper/src/medusa/monitor_client_win32.py +share/adzapper/src/medusa/producers.py +share/adzapper/src/medusa/resolver.py +share/adzapper/src/medusa/select_trigger.py +share/adzapper/src/medusa/status_handler.py +share/adzapper/src/resolver_fixes.py +share/adzapper/src/http_proxy.py +share/adzapper/src/http_server_fixes.py +share/adzapper/src/ui_handler.py +share/adzapper/src/asyncore_fixes.py +share/adzapper/README +@dirrm share/adzapper/src/debug +@dirrm share/adzapper/src/ui @dirrm share/adzapper/src/medusa +@dirrm share/adzapper/src/xml +@dirrm share/adzapper/src/zaplet +@dirrm share/adzapper/src/config_file @dirrm share/adzapper/src @dirrm share/adzapper/zaplets @dirrm share/adzapper >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 20:22:47 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mass.osd.bsdi.com (adsl-63-206-90-77.dsl.snfc21.pacbell.net [63.206.90.77]) by hub.freebsd.org (Postfix) with ESMTP id 6E42737B479 for ; Fri, 10 Nov 2000 20:22:41 -0800 (PST) Received: from mass.osd.bsdi.com (localhost [127.0.0.1]) by mass.osd.bsdi.com (8.11.0/8.11.1) with ESMTP id eAB4SM909717 for ; Fri, 10 Nov 2000 20:28:23 -0800 (PST) (envelope-from msmith@mass.osd.bsdi.com) Message-Id: <200011110428.eAB4SM909717@mass.osd.bsdi.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: ports@freebsd.org Subject: Patches for PIB 1.2 Mime-Version: 1.0 Content-Type: multipart/mixed ; boundary="==_Exmh_-9559119500" Date: Fri, 10 Nov 2000 20:28:22 -0800 From: Mike Smith Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multipart MIME message. --==_Exmh_-9559119500 Content-Type: text/plain; charset=us-ascii Satoshi pointed out that PIB 1.2 doesn't actually deal with the new ports layout properly (it's still looking for the md5 file in the wrong place). The attached patch should fix this; can I ask anyone that uses PIB at all to test and let me know how they go with it? Also, the distfile tool is showing up a few checksum mismatches again. Thanks! (please keep me on the cc: list as I'm not subscribed to -ports) --==_Exmh_-9559119500 Content-Type: text/plain ; name="pib.diff"; charset=us-ascii Content-Description: pib.diff Content-Disposition: attachment; filename="pib.diff" --- orig/pib-1.2/pib.tcl Sat Oct 28 02:01:12 2000 +++ pib.tcl Fri Nov 10 20:01:38 2000 @@ -3,7 +3,7 @@ exec wish8.2 -f $0 $* ################################################################################ # -# Copyright (C) 1996, 1997 +# Copyright (C) 1996, 1997, 2000 # Michael Smith. All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -368,7 +368,7 @@ " Ports INDEX Browser" \ " ===================" \ "" \ - " Copyright (c) 1996,1997 Michael Smith" \ + " Copyright (c) 1996,1997, 2000 Michael Smith" \ " msmith@FreeBSD.org" \ "" \ " Please report any bugs to the above address." \ @@ -396,7 +396,6 @@ " OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF" \ " SUCH DAMAGE." \ "" \ - { $Id: pib.tcl,v 1.14 1997/09/11 09:16:56 msmith Exp $ } \ ]; # ########################################################################### @@ -442,9 +441,9 @@ " completion of processing, which is performed the first time the " \ " Distfile browser is opened, or when the \[Rescan\] function is selected." \ "" \ - " No MD5 file The port's 'files' directory has no 'MD5' file." \ - " No files directory The port has no 'files' directory" \ + " No distinfo file The port's directory has no 'distinfo' file." \ " Port directory missing The port's skeleton directory is missing" \ + " Obsolete port The port still has old layout components" \ "" \ " Runtime warnings" \ " ----------------" \ @@ -583,12 +582,12 @@ pack $w.t2 -side top -fill x; # Options - set sf [op_sframe $w "w_md5" "No MD5 file"]; - checkbutton $sf.w -variable Options(warn_no_md5); + set sf [op_sframe $w "w_distinfo" "No distinfo file"]; + checkbutton $sf.w -variable Options(warn_no_distinfo); pack $sf.w -side left; - set sf [op_sframe $w "w_files" "No files directory"]; - checkbutton $sf.w -variable Options(warn_no_fdir); + set sf [op_sframe $w "w_olddir" "Bad directory structure"]; + checkbutton $sf.w -variable Options(warn_dir); pack $sf.w -side left; set sf [op_sframe $w "w_pres" "Port directory missing"]; @@ -795,8 +794,8 @@ # Set program options set Options(version_string) "\# PIB options v1"; - set Options(warn_no_md5) 1; - set Options(warn_no_fdir) 0; + set Options(warn_no_distinfo) 0; + set Options(warn_dir) 1; set Options(warn_no_port) 0; set Options(warn_dup_names) 1; set Options(warn_del_errs) 1; @@ -1899,7 +1898,7 @@ ################################################################################ # df_gather # -# Walk the list of ports and parse the md5 files, build the AllDistfiles and +# Walk the list of ports and parse the distinfo files, build the AllDistfiles and # Checksums arrays. Also walk the collection of present distfiles. # proc df_gather {} { @@ -1930,43 +1929,36 @@ set rate [expr int($psize / (1000 * ([clock seconds] - $stamp) + 1))]; update_pwin df_getdinfo [format "%d/%d ports, %dK/sec" $pports $Status(nports) $rate]; - # Find the md5 file. - if {[catch {set fh [open "$path/files/md5" "r"]}]} { - - # Nope. Perhaps we're dealing with US ITAR braindamage - if {[op_elookup USA_RESIDENT]} { - set aname "$path/files.usa/md5"; - } else { - set aname "$path/files.non_usa/md5"; + # Check there's no old files directory + if {$Options(warn_dir)} { + if {[file isdirectory "$path/patches"]} { + lappend errs "$pname: obsolete patches directory '$path/patches' found"; } + if {[file isdirectory "$path/pkg"]} { + lappend errs "$pname: obsolete package directory '$path/pkg' found"; + } + } - # try again with a new name - if {[catch {set fh [open $aname "r"]}]} { - - # Can't find an md5 file; give up - if {[file isdirectory "$path/files"]} { - if {$Options(warn_no_md5)} { - lappend errs "$pname: '$path/files/md5' not found"; - } - } else { - if {[file isdirectory $path]} { - if {$Options(warn_no_fdir)} { - lappend errs "$pname: '$path/files' not found"; - } - } else { - if {$Options(warn_no_port)} { - lappend errs "$pname: directory missing."; - } - } + # Find the distinfo file. + # XXX How are USA/non-USA md5's handled now? + if {[catch {set fh [open "$path/distinfo" "r"]}]} { + + if {[file isdirectory $path]} { + if {$Options(warn_no_distinfo)} { + lappend errs "$pname: '$path/distinfo' not found"; + } + } else { + if {$Options(warn_no_port)} { + lappend errs "$pname: directory '$path' missing"; } - continue ; # if no port info, assume it's not wanted } + continue ; # if no port info, assume it's not wanted } # initialise state for this port set Ports($pname:distfiles) ""; # list of distfiles for the port - # Process md5 file to get distfiles and checksums + # Process distinfo file to get distfiles and checksums while {[gets $fh line] >= 0} { if {[scan $line "MD5 (%\[^)\]) = %s" df ck] == 2} { # get name and checksum --==_Exmh_-9559119500 Content-Type: text/plain; charset=us-ascii ... every activity meets with opposition, everyone who acts has his rivals and unfortunately opponents also. But not because people want to be opponents, rather because the tasks and relationships force people to take different points of view. [Dr. Fritz Todt] V I C T O R Y N O T V E N G E A N C E --==_Exmh_-9559119500-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 21:56:16 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8CAFA37B4C5; Fri, 10 Nov 2000 21:56:15 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA73279; Fri, 10 Nov 2000 21:56:15 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Date: Fri, 10 Nov 2000 21:56:15 -0800 (PST) From: Message-Id: <200011110556.VAA73279@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22740: Update port: audio/mp3encode Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: audio/mp3encode State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Fri Nov 10 21:56:01 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22740 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 22: 2:40 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 25C9037B479; Fri, 10 Nov 2000 22:02:39 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA74054; Fri, 10 Nov 2000 22:02:39 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Date: Fri, 10 Nov 2000 22:02:39 -0800 (PST) From: Message-Id: <200011110602.WAA74054@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22741: Update port: editors/biew to 5.2.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: editors/biew to 5.2.0 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Fri Nov 10 22:02:24 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22741 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 22: 9: 1 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BA7CD37B479; Fri, 10 Nov 2000 22:09:00 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA77233; Fri, 10 Nov 2000 22:09:00 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Date: Fri, 10 Nov 2000 22:09:00 -0800 (PST) From: Message-Id: <200011110609.WAA77233@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22742: Update port: emulators/atari800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: emulators/atari800 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Fri Nov 10 22:08:45 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22742 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 22:10:44 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B5D9937B479; Fri, 10 Nov 2000 22:10:43 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA77667; Fri, 10 Nov 2000 22:10:43 -0800 (PST) (envelope-from obrien@FreeBSD.org) Date: Fri, 10 Nov 2000 22:10:43 -0800 (PST) From: Message-Id: <200011110610.WAA77667@freefall.freebsd.org> To: obrien@FreeBSD.org, obrien@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22370: emulators/bochs don't build Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: emulators/bochs don't build Responsible-Changed-From-To: obrien->freebsd-ports Responsible-Changed-By: obrien Responsible-Changed-When: Fri Nov 10 22:10:28 PST 2000 Responsible-Changed-Why: I dropped maintainershipo. http://www.freebsd.org/cgi/query-pr.cgi?pr=22370 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 22:17:52 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A88EF37B479; Fri, 10 Nov 2000 22:17:50 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA81176; Fri, 10 Nov 2000 22:17:50 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Date: Fri, 10 Nov 2000 22:17:50 -0800 (PST) From: Message-Id: <200011110617.WAA81176@freefall.freebsd.org> To: lebel@lebel.org, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22738: Use ${MASTER_SITE_SOURCEFORGE} for audio/cdrdao Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Use ${MASTER_SITE_SOURCEFORGE} for audio/cdrdao State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Fri Nov 10 22:17:38 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22738 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 22:23:40 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E0A8C37B479; Fri, 10 Nov 2000 22:23:38 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA83065; Fri, 10 Nov 2000 22:23:38 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Date: Fri, 10 Nov 2000 22:23:38 -0800 (PST) From: Message-Id: <200011110623.WAA83065@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22743: Update port: games/freesweep to 0.88 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: games/freesweep to 0.88 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Fri Nov 10 22:23:25 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22743 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 22:29:15 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 814BC37B479; Fri, 10 Nov 2000 22:29:13 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA83627; Fri, 10 Nov 2000 22:29:13 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Date: Fri, 10 Nov 2000 22:29:13 -0800 (PST) From: Message-Id: <200011110629.WAA83627@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22744: Update port: games/spellcast to 1.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: games/spellcast to 1.2 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Fri Nov 10 22:28:59 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22744 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 22:30: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6C15137B4CF for ; Fri, 10 Nov 2000 22:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA83671; Fri, 10 Nov 2000 22:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 18F9D37B479; Fri, 10 Nov 2000 22:23:00 -0800 (PST) Message-Id: <20001111062300.18F9D37B479@hub.freebsd.org> Date: Fri, 10 Nov 2000 22:23:00 -0800 (PST) From: nosuzuki@e-mail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/22764: [PORTS UPDATE] xzgv-0.5 to -0.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22764 >Category: ports >Synopsis: [PORTS UPDATE] xzgv-0.5 to -0.6 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Nov 10 22:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Norio Suzuki >Release: 4.1-satble >Organization: >Environment: FreeBSD patty.peanuts.li 4.1-STABLE FreeBSD 4.1-STABLE #0: Sun Sep 3 21:59:08 JST 2000 root@:/usr/src/stable-src/src/sys/compile/PATTY i386 >Description: Please import my patch for updating ports/graphics/xzgv. The new version of xzgv was released and I made a patch for current xzgv port. The patch file is uuencoded followed by gzip, I mean gziped and uuencoded. In addition to the updating patch, I also removed post-install section from Makefile. In that section, "make" was doing strip exec file and installing info-file. I have imported them into patch files in files dir to change original Makefile. Thank you. >How-To-Repeat: >Fix: begin 644 xzgv.update.patch.gz M'XL(""[?##H``WAZ9W8N=7!D871E+G!A=&-H`*U9>W/;1@[_6_H4:.VI8Z]( MD7I&3)/:39RKFK.=L9U+9ZXW"46N)-82J?)AQ\GX/OL!6)(B)4JRV_/8?.P" M(!:+QV]AUQN/04O"<_CR=7*K!Z$W:9[9-W+LS20/Y6]U3=,JB&I7=@SGP2V8 M)I@=JVM8[1ZT#,.H"R'*$E9(6SVKW56DQ\>@]1I]$'0Y/J[#7AWJ\/[B\OK\ MY.ST98W$U#5Z_]?IY=7PXOQES="[=;$RTJO#ZY/KTW]<7`Y/KU[6)J&]F'I. M5(>SDZOKT\M/5\-K&I_&\<)J-GDMHS"XBV2(:YHTX?]_>W]Z^<\'T!8> M:!*^CZPD"INSP+%G%LY=GKX=_O9@3;Z'_6\?+]]=7;Y^:#J!/_8F^ORF+JKX MFT\0`'6-]?'\*+9G,])H_]OIZU\N'B#GQ;$H#KT%:-%RL#GR_*:R>2UE1B'C MH$!!KTRR.N9Z(1E"]WQGEK@2?AQ%KKX(PA@U>E5W*]S-]:*8I;.S9&\K[I8- M/\+=`XMT^JV+,-8NAMNHTE[J)V]Z<(S8M30I?38#O7)UT-X";+= M[??:`V?0'3O&J--[I#MI.2SZ7G?'` M';2D'(_:7=MHF;U6I14H0*(FNXYFVVHEY;$5BY0G'V&7K0SMOF68!>LT^ATT M4*/%?JYE"D-FIV6.N`O"F^;:,.FJ02GPS^Q[`-2I;74&N!GJ6QIIMR1+?+AP M8MHPHVMU>U:GDY)Q\'4:`XR]3L,T2"FQM**N-_$WWXER$M.72@E2:AOQNLMT M!KD514'4:BI[GJ](E%0=<)J`[%>C,(0H=&!N^T!.>F>'/EIA;]/$VCAJLC8& M>SD'?P7G+-XJHFH6([@.8CFYMSY+:N[!1PEQ>`_QU(OP@GL\#="0L3>7#;#5 MD"L7TG=MW_%D!'8HP8:1%S.W$\P7,\^Q8[1E'(";I&\PE:'4JYPI3UDKWK1, M9>Q.^6OM;>C!23(!(/^PC)9E%OUIG7_5LYY;1K?@63V#:X^ALKJ&U0?_8#B& M^R`!-_`/8KCQ@SNT`^XZ+2EHP$S:MQ*\&`VB>9&NN+2]X?G;BT]OAI>?/KQ_ M@Z7HI8^)3%0-@OK=`ZWB!\Z\R)&SF>W+((D@6,1>X$>5I/A395+:V@TQ6IQ2 MABV.I+$:DF>C83OHW(.";>*"# MI1TR[;-AC'HG,Q?L613`"+FD%[)'35/+SVVL+Z-[]L?/;N`UPX5QQDA$Z[86(F53[G%:IJ_1%/"#],E MQRR8!&AS&TGH$:VN].-@;G,PMS.WF\B8)`=6]N3D@^9RU-2=;)Z^DV^NE3]2 MND5?F.8#T^6F\(*(N/3N4&+?1<$+H`F^.X6EI7.TN&R>GXE)N:6E[@Z$TG;G MX9@LAD\3+WOZ8R$GL<\OD?=5+CPG-RH^_*ZB'R.G24&(U42W[VZX(G)HGRQ" M+->4!;IF.<.NL-2NIPDG`G.`:0.1A]4IIE>SP5A"^;^V]QUC6/+Z"?*"-B8S M+0>SL30+IY\!C9^4']'[PIY(&(?!'&+YA8L@KXIYWB9S%7@,%JOY6\Z"V&OBFP2X0:>/T&0J>`"EZ$#%?Y3#.P4 M-C#T[C=:F&Y:O4:KRX%-@VTZL(MV"O"`E%>UDD[MZ4,Z0`$!A=R&\[5CZ4P# M.$##D1+E[),SZ;I^@-B[EB:UH@SX<2GZ5?I9+)"/(Q1424\^OCM\!"T;OP0P M8"O`(&!*%9Z#O@`'$/P2^O=OU!D`@QBS'::GF-;_1Q(AZL7C@']/F)\Q3Q+1 MC*4]I+G5(.N+]J#1ZBF+>V/Y)SQ37RQ`X<.&'QP6P4TUKL$D5$D!(&>17((J MBQ:Y>JHI<0CM\:3+S^-W?`Q=VK3)5VJ6N`ZD619>\1,9NH"S.HB$U9X43`M: M)0G*X(C^B9Z6>X)'M2KR(H40*^V9?*JY0JK:,KBO'QBKJA#^C(,':=FDN2$- MVK,[^SZ")*)S'2`%$R`#+$(YQA.<[TBNC#2'&C<`T?F=3.LFLK$H-8>P$D,[ M0JQ^H))`0-5O8L]97AS<^52OO;&_Q3=PP[;.4\2I+CYJ!@FYFAN(=FQ*1M",/<\W8^\(Y MS-*:#1@A8G6#%)5P/F+H0:B]&2FWDF$0/P& M[#!(?&J=L)@195]NSKN%@CL>)C^0_EGXF'YTL@X$.V3'L$HM`C8".YM]YRB85!Y2T[SPA.!:IWMIT1 M',;AOZ+Z8((QL`R#_@%@#OJ;S@C.]IZXT3#HC-`>/*+[7&J_Z>66VT8D7^JM M[4+R:SV[@MXMR^P7NM'E1IQX0B-._-\:<7PXW="($QL;<>SX*XTX\>1&G*AJ MQ(DR3A:/:L3Q*C8WXH2VH]*N/EWQXYL;=F)3PTX\MF&W 1\"?;6G>_U_\'"C+^7;`?``!H ` end >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 22:33:28 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D245437B479; Fri, 10 Nov 2000 22:33:25 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA83997; Fri, 10 Nov 2000 22:33:25 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Date: Fri, 10 Nov 2000 22:33:25 -0800 (PST) From: Message-Id: <200011110633.WAA83997@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22745: Update port: games/xnibbles Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: games/xnibbles State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Fri Nov 10 22:33:13 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22745 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 22:36:56 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E161837B479; Fri, 10 Nov 2000 22:36:54 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA84506; Fri, 10 Nov 2000 22:36:54 -0800 (PST) (envelope-from obrien@FreeBSD.org) Date: Fri, 10 Nov 2000 22:36:54 -0800 (PST) From: Message-Id: <200011110636.WAA84506@freefall.freebsd.org> To: obrien@FreeBSD.org, obrien@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/13898: New port: misc/dictd Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: misc/dictd Responsible-Changed-From-To: obrien->freebsd-ports Responsible-Changed-By: obrien Responsible-Changed-When: Fri Nov 10 22:36:24 PST 2000 Responsible-Changed-Why: I'd rather someone else look after this as I don't believe I'll get to it any time soon. http://www.freebsd.org/cgi/query-pr.cgi?pr=13898 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 22:38:39 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6EACD37B4C5; Fri, 10 Nov 2000 22:38:37 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA84908; Fri, 10 Nov 2000 22:38:37 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Date: Fri, 10 Nov 2000 22:38:37 -0800 (PST) From: Message-Id: <200011110638.WAA84908@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22746: Update port: games/yahtzee Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: games/yahtzee State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Fri Nov 10 22:38:24 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22746 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 22:41:35 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A044937B4C5; Fri, 10 Nov 2000 22:41:33 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA85390; Fri, 10 Nov 2000 22:41:33 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Date: Fri, 10 Nov 2000 22:41:33 -0800 (PST) From: Message-Id: <200011110641.WAA85390@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22747: Update port: games/ztrack Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: games/ztrack State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Fri Nov 10 22:41:20 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22747 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 22:52:43 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 89FBF37B479; Fri, 10 Nov 2000 22:52:42 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA86339; Fri, 10 Nov 2000 22:52:42 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Date: Fri, 10 Nov 2000 22:52:42 -0800 (PST) From: Message-Id: <200011110652.WAA86339@freefall.freebsd.org> To: nosuzuki@e-mail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22764: [PORTS UPDATE] xzgv-0.5 to -0.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PORTS UPDATE] xzgv-0.5 to -0.6 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Fri Nov 10 22:52:29 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22764 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 10 23:32:44 2000 Delivered-To: freebsd-ports@freebsd.org Received: from absinthe2.dyndns.org (adsl-63-192-100-123.dsl.chic01.pacbell.net [63.192.100.123]) by hub.freebsd.org (Postfix) with ESMTP id 428A337B4C5; Fri, 10 Nov 2000 23:32:41 -0800 (PST) Received: (from fred@localhost) by absinthe2.dyndns.org (8.11.1/8.11.1) id eAB7WRU17568; Fri, 10 Nov 2000 23:32:27 -0800 (PST) (envelope-from fred) Date: Fri, 10 Nov 2000 23:32:27 -0800 From: Fred Condo To: Will Andrews Cc: Thierry Herbelot , ports@FreeBSD.ORG, stable@FreeBSD.ORG Subject: Re: KDE2 and some 4.2-Beta remarks Message-ID: <20001110233226.B17427@absinthe.condo.chico.ca.us> References: <00110520104702.82258@portable.herbelot.nom> <20001105141247.B70986@puck.firepipe.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001105141247.B70986@puck.firepipe.net>; from will@physics.purdue.edu on Sun, Nov 05, 2000 at 02:12:47PM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Nov 05, 2000 at 02:12:47PM -0500, Will Andrews wrote: > On Sun, Nov 05, 2000 at 08:10:47PM +0100, Thierry Herbelot wrote: > > - I can't log out of KDE2 : the logout choice in the "K" menu only gives an > > error message > > kicker : panelService : :SlotService(-422) > > kicker : can't find service with slotId -422 > > Lots of people have reported this problem, including myself. But I have > no idea why it happens, and haven't (yet) investigated further. Sorry. > I don't know *why* this bug happens, but on my system, choosing the logout command a second time works. -- Fred Condo + fred@condo.chico.ca.us http://www.votenader.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Nov 11 0: 0:19 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2F8F737B479 for ; Sat, 11 Nov 2000 00:00:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA92215; Sat, 11 Nov 2000 00:00:06 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from tk01.tk.elec.waseda.ac.jp (tkgate.tk.elec.waseda.ac.jp [133.9.187.217]) by hub.freebsd.org (Postfix) with ESMTP id EE26037B479 for ; Fri, 10 Nov 2000 23:53:25 -0800 (PST) Received: from srv.tk.elec.waseda.ac.jp (srv.tk.elec.waseda.ac.jp [192.168.0.2]) by tk01.tk.elec.waseda.ac.jp (8.9.3+3.2W/3.7W) with ESMTP id QAA02867 for ; Sat, 11 Nov 2000 16:53:23 +0900 (JST) Received: from fujie.tk.elec.waseda.ac.jp (fujie.tk.elec.waseda.ac.jp [192.168.1.4]) by srv.tk.elec.waseda.ac.jp (8.9.3+3.2W/3.7W) with ESMTP id QAA13748 for ; Sat, 11 Nov 2000 16:53:23 +0900 Received: (from fujie@localhost) by fujie.tk.elec.waseda.ac.jp (8.11.1/8.11.1) id eAB7rS100839; Sat, 11 Nov 2000 16:53:28 +0900 (JST) (envelope-from fujie) Message-Id: <200011110753.eAB7rS100839@fujie.tk.elec.waseda.ac.jp> Date: Sat, 11 Nov 2000 16:53:28 +0900 (JST) From: Shinya FUJIE Reply-To: Shinya FUJIE To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22765: update port: devel/glade-- Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22765 >Category: ports >Synopsis: update port: devel/glade-- >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Nov 11 00:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Shinya FUJIE >Release: FreeBSD 4.1.1-STABLE i386 >Organization: TK Lab, WASEDA Univ. >Environment: FreeBSD fujie.tk.elec.waseda.ac.jp 4.1.1-STABLE FreeBSD 4.1.1-STABLE #0: Fri Oct 13 09:26:39 JST 2000 root@fujie.tk.elec.waseda.ac.jp:/mnt/ad2s1a/obj/usr/src/sys/FUJIE i386 >Description: devel/glade-- update >How-To-Repeat: >Fix: diff -ruN glade--.orig/Makefile glade--/Makefile --- glade--.orig/Makefile Tue Nov 7 15:46:54 2000 +++ glade--/Makefile Sat Nov 11 16:39:41 2000 @@ -6,7 +6,7 @@ # PORTNAME= glademm -PORTVERSION= 0.5.9 +PORTVERSION= 0.5_10 CATEGORIES= devel gnome MASTER_SITES= http://home.wtal.de/petig/Gtk/ diff -ruN glade--.orig/distinfo glade--/distinfo --- glade--.orig/distinfo Tue Nov 7 15:46:54 2000 +++ glade--/distinfo Sat Nov 11 16:40:35 2000 @@ -1 +1 @@ -MD5 (glademm-0.5.9.tar.gz) = af9f95c6778a47969f6377dcae004498 +MD5 (glademm-0.5_10.tar.gz) = 6461ffe90a844e032f0e4702a724ce1e diff -ruN glade--.orig/files/patch-aa glade--/files/patch-aa --- glade--.orig/files/patch-aa Tue Nov 7 15:46:54 2000 +++ glade--/files/patch-aa Sat Nov 11 16:42:12 2000 @@ -1,9 +1,9 @@ ---- configure.orig Wed Jun 7 02:49:17 2000 -+++ configure Tue Oct 10 12:34:46 2000 -@@ -2065,11 +2065,11 @@ +--- configure.orig Mon Nov 6 19:46:11 2000 ++++ configure Sat Nov 11 16:40:59 2000 +@@ -2080,11 +2080,11 @@ echo $ac_n "checking your gtk version""... $ac_c" 1>&6 - echo "configure:2068: checking your gtk version" >&5 + echo "configure:2083: checking your gtk version" >&5 -case `gtk-config --version` in +case `$GTK_CONFIG --version` in *.*.*) diff -ruN glade--.orig/files/patch-ab glade--/files/patch-ab --- glade--.orig/files/patch-ab Tue Nov 7 15:46:54 2000 +++ glade--/files/patch-ab Sat Nov 11 16:43:14 2000 @@ -1,17 +1,25 @@ ---- src/glade--.cc.orig Thu May 4 06:02:30 2000 -+++ src/glade--.cc Tue Oct 10 12:36:14 2000 -@@ -89,3 +89,3 @@ +--- src/glade--.cc.orig Wed Oct 11 15:43:35 2000 ++++ src/glade--.cc Sat Nov 11 16:42:44 2000 +@@ -86,7 +86,7 @@ + + static void call_gtkmm_config() { char buf[80]; - FILE *f=popen("gtk-config --version","r"); -+ FILE *f=popen("%%GTK_CONFIG%% --version","r"); ++ FILE *f=popen("/usr/X11R6/bin/gtk12-config --version","r"); if (f) -@@ -98,3 +98,3 @@ + { if (fgets(buf,sizeof(buf),f)) + { for (unsigned char *s=(unsigned char*)buf;*s;s++) +@@ -95,11 +95,11 @@ + Gtk_Version v; + if (parse_version(buf,v)) Configuration.gtk_version=v; - else cerr << "gtk-config --version: strange result '" << buf << "'\n"; -+ else cerr << "%%GTK_CONFIG%% --version: strange result '" << buf << "'\n"; ++ else cerr << "/usr/X11R6/bin/gtk12-config --version: strange result '" << buf << "'\n"; } -@@ -102,3 +102,3 @@ + pclose(f); } - else perror("gtk-config"); -+ else perror("%%GTK_CONFIG%%"); ++ else perror("/usr/X11R6/bin/gtk12-config"); f=popen("gtkmm-config --version","r"); + if (f) + { if (fgets(buf,sizeof(buf),f)) diff -ruN glade--.orig/files/patch-ac glade--/files/patch-ac --- glade--.orig/files/patch-ac Tue Nov 7 15:46:54 2000 +++ glade--/files/patch-ac Sat Nov 11 16:38:07 2000 @@ -1,34 +1,14 @@ ---- src/Cxx.cc.orig Wed May 3 10:13:56 2000 -+++ src/Cxx.cc Tue Oct 10 12:50:19 2000 -@@ -491,10 +491,3 @@ - if (Configuration.gnome_support) -- f << "if test -r /usr/lib/gnomemmConf.sh ; then\n" -- " source /usr/lib/gnomemmConf.sh\n" -- "elif test -r /opt/gnome/lib/gnomemmConf.sh ; then\n" -- " source /opt/gnome/lib/gnomemmConf.sh\n" -- "elif test -r /usr/local/lib/gnomemmConf.sh ; then\n" -- " source /usr/local/lib/gnomemmConf.sh\n" -- "else echo \"Cant find gnomemmConf.sh.\"\n" -- "fi\n" -+ f << "source %%X11BASE%%/etc/gnomemmConf.sh\n" - "AC_SUBST(GNOMEMM_INCLUDEDIR)\n" -@@ -540,17 +533,5 @@ - if (Configuration.gnome_support) -- f << "# Search for glade\\'s gnome.m4 directory (contains gnome macros).\n" -- "# If you include gnome-common/macros in your application (recommended)\n" -- "# also replace this autogen.sh.\n" -- "if [ -r /opt/gnome/share/glade/gnome/gnome.m4 ]\n" -- "then \n" -- " aclocal -I /opt/gnome/share/glade/gnome\n" -- "elif [ -r /usr/local/share/glade/gnome/gnome.m4 ]\n" -- "then\n" -- " aclocal -I /usr/local/share/glade/gnome\n" -- "else\n" -- " echo \"Can't find glade's gnome.m4 directory (gnome macros)\"\n" -- " exit 2\n" -- "fi\n"; -+ f << "aclocal -I %%X11BASE%%/share/aclocal -I %%X11BASE%%/share/gnome/glade/gnome\n"; - else -- f << "aclocal\n"; -+ f << "aclocal -I %%X11BASE%%/share/aclocal\n"; - f << "automake --add-missing --copy --gnu\n" +*** src/Cxx.cc.orig Mon Oct 16 18:42:09 2000 +--- src/Cxx.cc Tue Nov 7 16:54:19 2000 +*************** +*** 538,543 **** +--- 538,546 ---- + " elif [ -r /usr/local/share/glade/gnome/gnome.m4 ]\n" + " then\n" + " cp -r /usr/local/share/glade/gnome macros\n" ++ " elif [ -r %%X11BASE%%/share/gnome/glade/gnome/gnome.m4 ]\n" ++ " then\n" ++ " cp -r %%X11BASE%%/share/gnome/glade/gnome macros\n" + " else\n" + " echo \"I can't find the gnome macros. Please copy them to macros and retry.\"\n" + " exit 2\n" >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Nov 11 0:30: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AEACE37B4C5 for ; Sat, 11 Nov 2000 00:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA95641; Sat, 11 Nov 2000 00:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 3C90E37B479; Sat, 11 Nov 2000 00:20:49 -0800 (PST) Message-Id: <20001111082049.3C90E37B479@hub.freebsd.org> Date: Sat, 11 Nov 2000 00:20:49 -0800 (PST) From: ak@freenet.co.uk To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/22766: audio/krio port updated to version 1.0.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22766 >Category: ports >Synopsis: audio/krio port updated to version 1.0.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Nov 11 00:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Alex Keahan >Release: 4.1.1-STABLE >Organization: >Environment: FreeBSD hightemplar.com 4.1.1-STABLE FreeBSD 4.1.1-STABLE #0: Fri Oct 27 07:58:11 IST 2000 alex@hightemplar.com:/usr/obj/usr/src/sys/TEMPLAR i386 >Description: Changes: 1) the tarball moved from the original site to sourceforge.net 2) the port now has a `configure' script 3) some help files were added 4) miscellaneous code improvements/rearrangements/cleanup >How-To-Repeat: >Fix: begin 644 krio.tgz M'XL(`#;]##H``^U9_U,B.Q+?7YF_HL^UWOD%AIEA!&6?KT1`EUI!%W#=J[LK M*LP$23%,9N>+RK/\WZ^3`03U+7M7RKMZFT\I(9U..DFG.]UA%#*>?_>V`-LH M[>W!.Q`PGI33"I0LHV"6BD;)!#`-LV"\@[TWGI=$$L4D!'@77/_F7A'U;Y7,XCLP7GTF+^`GU__.S@[(,]`D(RK.@/.>?53O;NM[8+.!K!YWZQ4/S9:]5ZE7?WX`(>' ML$&\8$@VD&%!W*Z0Q[CH17V7#7`R^->Y/*XUVF)A+G-4KE@I=:\N[N[ MQ/Z4<[]L%E+.HR/(E0ZR1=C%3R0>'6F0><]\QTMKUI)7U>FB(F7E'^#6:1/EX$M`H M[9)!XZ6A#QO5#;@7]4S28WZ\WXN!^?TM62E8O7C[@VR\X9].)Y,YO^Q>G+>[6T'V9AO'D4-`D(4;V%YD:[12+L&3$1.`8)FA M>H;>I=>I5\];MK1_$0N@_5NFLO]U M8&[_3Z_(9X[`P@A@KVP83QS!TW[/NQ1*CQ[!1F=0@MVT$"[A7ILG`:B(F#G@ M#%$?T>_'R>"?4+3AWQ\6.<+$B2$>[T`0U4A,NVQ,/VBY6?LC$6]1CSO$B_'[ M%OSB?2%>0D%8[2K>+5&@2]C97N@UGP%ZG2WXVT+?[<>VA5DZP60K74,6-AJM M+Y6S1@UJE6X]WVTTZQM+0U(OHNNXZ5^&U&$PNLXY?#RF_G=-X'_%*OLW#0OM MW[#M(F8"MK1_+)7]KP.?:G5(8N:Q>`(#'D(2Y/(NO_4]3ESF7T/SH@#R>H`8 M[XF0CR$>4J@Q,N:^"VC[?][157@%+"5R;R1CA?V;:/CS]S_;ML3[3[&D['\M M>`\M>@L!#^,('.YYU(D9]V$\/1'")Y0A39:U]R"N/7!"BH5;GKEORX(.#<`\ M.#A`EJLA'\^;9B"CHT%(J4]CW>%Z,M+>(^?F"9*..[5R*CY/$A?/XM*!S-Z` MJ=LR?,@;=M[`D,(L8U2Q9\`8PP0.];L`-G$T3<32K4JS?IB14Q75+_5VIW'> M.LR8NJ&;6A6OW]/S=J/>.ZT>F"?_2,AGY$K&::S#^`1[Q5O,=+DUK7[:69CBD7O`2?Y]$ M5/!?=NJ]S]W#3&9"(^UCI=/#7.6D<7K91CT(TKS:J[1/</K]H:<&S;ZB`6O,R,E`U-T^?)8S]R=7$N]?'HM[_P'2?-S<7XG?D#_D8R M5L5_4"K,\C^K8$K_CS7E_]>!9FT/ML0AR$DOJ>-FZ->_;V-.5.H7^@.+D/Y@ M'R]E&[\Z19<>[!,RV"]8_?Y?V"A^(LSS/_2>3O@V,E;%?WOV_/<_TRK*]U_# M4K__K`7B^098!`1$)G@=DF#('.(!\V,:#HA#,>^3*9_@FR6*+KVA'@^H"_T) M=(=4Z_C\MN\QS`@KGL>([]`LW.)`0W"(#WT*283,:7XYRRP))![J2MS*I(^QJ"RINW`I10[ MSVR?I+2+Z>P.B-2* MAR06R_?H?.>:Q"?7-(2(#^);$DYY'#[&X418(AG3M>`"D.CS6"-B!3#AB=!! MNG%(]W./.3D/X6'8[LH=<%F( MR88WR0HR!H7B9S:2GNX,G@H2X M5]23$_L['F;7#5$BY,2;HN^B1-DRH^,QPQ3GHHJ,*-.X*Y3VLZ(XKLH%&7=6 M:5\'3;NZNBK#,(Z#!?U_ MMGVOPMS_!WB(W^3U;W7\)W/^U/\;I3U+^G_;4OY_'>@S7YYM+4+#I'D2!)X_ MRC<3^1KN,I(>?)$B^J,IC\N=_,=N\RQ/TZY3,QC&8^^['!AAKN:Q?H"G\`,\ M]B*/?-Y'5IH_J_::]4ZG'T_[O+5A!04%!04%!04%! I04%!04%!04%!04%!04%!04%!04%!04%!04%!0>%GPW\`J%WB3P!0``!! ` end >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Nov 11 3:14:58 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mailrouter1.strath.ac.uk (orkney.cc.strath.ac.uk [130.159.248.40]) by hub.freebsd.org (Postfix) with ESMTP id C1CB837B479 for ; Sat, 11 Nov 2000 03:14:56 -0800 (PST) Received: from m751-mp1-cvx2a.ren.ntl.com ([62.252.146.239] helo=cs.strath.ac.uk) by mailrouter1.strath.ac.uk with esmtp (Exim 3.12 #2) id 13uYcA-0004vW-00; Sat, 11 Nov 2000 11:14:30 +0000 Message-ID: <3A0D2A01.AC72C3B3@cs.strath.ac.uk> Date: Sat, 11 Nov 2000 11:14:09 +0000 From: Roger Hardiman Organization: Strathclyde University X-Mailer: Mozilla 4.51 [en] (X11; I; FreeBSD 4.1.1-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: Steve Price Cc: freebsd-ports@FreeBSD.org Subject: Re: MASTER_SITE_LOCAL vs. people.FreeBSD.org References: <20001109100355.K62344@bonsai.knology.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Steve Price wrote: > > We shouldn't be hosting distfiles for ports with MASTER_SITES like this: > > MASTERS_SITES= http://people.FreeBSD.org/~steve Thanks for the reminder. I'll fix graphics/fxtv and misc/vbidecode Roger To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Nov 11 3:38:34 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 44C1137B479; Sat, 11 Nov 2000 03:38:33 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA19103; Sat, 11 Nov 2000 03:38:33 -0800 (PST) (envelope-from sobomax@FreeBSD.org) Date: Sat, 11 Nov 2000 03:38:33 -0800 (PST) From: Message-Id: <200011111138.DAA19103@freefall.freebsd.org> To: fujie@tk.elec.waseda.ac.jp, sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22765: update port: devel/glade-- Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update port: devel/glade-- State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Sat Nov 11 03:38:12 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=22765 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Nov 11 3:51:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D4AF137B4C5; Sat, 11 Nov 2000 03:51:09 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA21132; Sat, 11 Nov 2000 03:51:09 -0800 (PST) (envelope-from sobomax@FreeBSD.org) Date: Sat, 11 Nov 2000 03:51:09 -0800 (PST) From: Message-Id: <200011111151.DAA21132@freefall.freebsd.org> To: ak@freenet.co.uk, sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22766: audio/krio port updated to version 1.0.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: audio/krio port updated to version 1.0.1 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Sat Nov 11 03:48:43 PST 2000 State-Changed-Why: Committed, thanks! Several notes: - please next time submit unified diff between old and new port instead of full tarball; - pipe port through portlint(1) to find subtle inconsistencies (blank line between LIB_ and RUN_DEPENDS and extra blank line at the end of pkg-plist in this case), Anyway, thank you! http://www.freebsd.org/cgi/query-pr.cgi?pr=22766 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Nov 11 4: 0: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D80C537B479 for ; Sat, 11 Nov 2000 04:00:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA22646; Sat, 11 Nov 2000 04:00:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Date: Sat, 11 Nov 2000 04:00:04 -0800 (PST) Message-Id: <200011111200.EAA22646@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Maxim Sobolev Subject: Re: ports/22763: adzapper port upgrade Reply-To: Maxim Sobolev Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/22763; it has been noted by GNATS. From: Maxim Sobolev To: jdunn@aquezada.com Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: ports/22763: adzapper port upgrade Date: Sat, 11 Nov 2000 13:57:45 +0200 jdunn@aquezada.com wrote: > -# Date created: 01 Oct 1999 > -# Whom: Dominik Rothert > +# Date created: 10 Nov 2000 > +# Whom: Julian Dunn Don't touch these lines - they should remain intact during the full lifetime of the port. > [...] > -MAINTAINER= dr@domix.de > +MAINTAINER= jdunn@aquezada.com Do you have a permission from the old maintainer for that? Related question: have you contacted maintainer for approval for this update? -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Nov 11 7:29:35 2000 Delivered-To: freebsd-ports@freebsd.org Received: from lament.support.pavilion.net (lament.support.pavilion.net [212.74.1.242]) by hub.freebsd.org (Postfix) with ESMTP id AFABB37B479; Sat, 11 Nov 2000 07:29:32 -0800 (PST) Received: by lament.support.pavilion.net (Postfix, from userid 1001) id 84BFC33; Sat, 11 Nov 2000 15:29:31 +0000 (GMT) Date: Sat, 11 Nov 2000 15:29:31 +0000 From: Ben To: Chris Piazza Cc: sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22739: sawfish refuses to build from ports. Message-ID: <20001111152931.A11291@pavilion.net> References: <200011101659.IAA62489@freefall.freebsd.org> <3A0C29B9.74057C64@FreeBSD.org> <20001110170610.A88473@pavilion.net> <20001110152600.A10488@norn.cm.nu> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline User-Agent: Mutt/1.3.8i In-Reply-To: <20001110152600.A10488@norn.cm.nu>; from cpiazza@jaxon.net on Fri, Nov 10, 2000 at 03:26:00PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Nov 10, 2000 at 03:26:00PM -0700, Chris Piazza wrote: > > > > Please try to reinstall both and install rep-gtk-gnome-0.14_1 > > > > > > Read "deinstall" instead of "reinstall". > > > > i have tried this a few times, i currently have: > > > > lament:~$ pkg_info | grep rep > > librep-0.13.2 An Emacs Lisp like runtime library > > rep-gtk-gnome-0.14_1 GTK+ binding for rep Lisp interpreter > > > > installed only and a > > Make sure there isn't any rep stuff in /usr/local. (look in > the plist and prepend /usr/local to the files instead of > /usr/X11R6 like it's supposed to be to check...) ah hah, a which -a said i had one in /usr/X11R6/bin/ and /usr/local/bin so i moved /usr/local/bin/rep and rep-config out of the way and it compiled fine. so a thankyou PR can now be closed. why would i have rep in /usr/local tree? should sawfish (or anything else that depends on it) check for this? cheers. -- Ben Hughes, Pavilion Internet (0845 333 5000) "Quidquid latine dictum sit, altum viditur." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Nov 11 7:40:16 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6ED0037B4D7 for ; Sat, 11 Nov 2000 07:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA83927; Sat, 11 Nov 2000 07:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from jivago.ryazan.ru (jivago.ryazan.ru [212.26.226.45]) by hub.freebsd.org (Postfix) with ESMTP id 79DEC37B479 for ; Sat, 11 Nov 2000 07:35:01 -0800 (PST) Received: from root by jivago.ryazan.ru with local (Exim 3.16 #1) id 13ucgB-00020w-00 for FreeBSD-gnats-submit@freebsd.org; Sat, 11 Nov 2000 18:34:55 +0300 Message-Id: Date: Sat, 11 Nov 2000 18:34:55 +0300 From: skv@protey.ru Reply-To: skv@protey.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22769: New port: XML::XPath - a set of modules for parsing and evaluating XPath statements Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22769 >Category: ports >Synopsis: New port: XML::XPath - a set of modules for parsing and evaluating XPath statements >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Nov 11 07:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Sergey Skvortsov >Release: FreeBSD 4.1.1-STABLE i386 >Organization: >Environment: >Description: New port: XML::XPath - a set of modules for parsing and evaluating XPath statements >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: # # p5-XML-XPath # p5-XML-XPath/pkg-comment # p5-XML-XPath/Makefile # p5-XML-XPath/distinfo # p5-XML-XPath/pkg-descr # p5-XML-XPath/pkg-plist # p5-XML-XPath/plist # echo c - p5-XML-XPath mkdir -p p5-XML-XPath > /dev/null 2>&1 echo x - p5-XML-XPath/pkg-comment sed 's/^X//' >p5-XML-XPath/pkg-comment << 'END-of-p5-XML-XPath/pkg-comment' Xa set of modules for parsing and evaluating XPath statements X END-of-p5-XML-XPath/pkg-comment echo x - p5-XML-XPath/Makefile sed 's/^X//' >p5-XML-XPath/Makefile << 'END-of-p5-XML-XPath/Makefile' X# New ports collection makefile for: XML::XPath X# Date created: 11 Nov 2000 X# Whom: Sergey Skvortsov X# X# $FreeBSD$ X# X XPORTNAME= XML-XPath XPORTVERSION= 1.02 XCATEGORIES= textproc perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= XML XPKGNAMEPREFIX= p5- X XMAINTAINER= skv@protey.ru X XRUN_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/XML/Parser.pm:${PORTSDIR}/textproc/p5-XML-Parser X XUSE_PERL5= yes X XMAN3= XML::XPath.3 XML::XPath::Boolean.3 XML::XPath::Builder.3 \ X XML::XPath::Literal.3 XML::XPath::Node.3 \ X XML::XPath::Node::Attribute.3 XML::XPath::Node::Comment.3 \ X XML::XPath::Node::Element.3 XML::XPath::Node::Namespace.3 \ X XML::XPath::Node::PI.3 XML::XPath::Node::Text.3 \ X XML::XPath::NodeSet.3 XML::XPath::Number.3 \ X XML::XPath::PerlSAX.3 XML::XPath::XMLParser.3 X XMANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} X Xdo-configure: X @cd ${WRKSRC}; \ X ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL PREFIX=${PREFIX} \ X INSTALLSCRIPT=${PREFIX}/bin X X.include END-of-p5-XML-XPath/Makefile echo x - p5-XML-XPath/distinfo sed 's/^X//' >p5-XML-XPath/distinfo << 'END-of-p5-XML-XPath/distinfo' XMD5 (XML-XPath-1.02.tar.gz) = c0e798c8cafffc719bd7dd149685d310 END-of-p5-XML-XPath/distinfo echo x - p5-XML-XPath/pkg-descr sed 's/^X//' >p5-XML-XPath/pkg-descr << 'END-of-p5-XML-XPath/pkg-descr' XThis module aims to comply exactly to the XPath specification at Xhttp://www.w3.org/TR/xpath and yet allow extensions to be added in the Xform of functions. Modules such as XSLT and XPointer may need to do Xthis as they support functionality beyond XPath. X END-of-p5-XML-XPath/pkg-descr echo x - p5-XML-XPath/pkg-plist sed 's/^X//' >p5-XML-XPath/pkg-plist << 'END-of-p5-XML-XPath/pkg-plist' Xbin/xpath Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML/XPath/.packlist Xlib/perl5/site_perl/%%PERL_VER%%/XML/XPath/Node/Namespace.pm Xlib/perl5/site_perl/%%PERL_VER%%/XML/XPath/Node/Comment.pm Xlib/perl5/site_perl/%%PERL_VER%%/XML/XPath/Node/Attribute.pm Xlib/perl5/site_perl/%%PERL_VER%%/XML/XPath/Node/PI.pm Xlib/perl5/site_perl/%%PERL_VER%%/XML/XPath/Node/Text.pm Xlib/perl5/site_perl/%%PERL_VER%%/XML/XPath/Node/Element.pm Xlib/perl5/site_perl/%%PERL_VER%%/XML/XPath/Root.pm Xlib/perl5/site_perl/%%PERL_VER%%/XML/XPath/Variable.pm Xlib/perl5/site_perl/%%PERL_VER%%/XML/XPath/Node.pm Xlib/perl5/site_perl/%%PERL_VER%%/XML/XPath/LocationPath.pm Xlib/perl5/site_perl/%%PERL_VER%%/XML/XPath/Function.pm Xlib/perl5/site_perl/%%PERL_VER%%/XML/XPath/Builder.pm Xlib/perl5/site_perl/%%PERL_VER%%/XML/XPath/Number.pm Xlib/perl5/site_perl/%%PERL_VER%%/XML/XPath/Literal.pm Xlib/perl5/site_perl/%%PERL_VER%%/XML/XPath/Parser.pm Xlib/perl5/site_perl/%%PERL_VER%%/XML/XPath/NodeSet.pm Xlib/perl5/site_perl/%%PERL_VER%%/XML/XPath/Step.pm Xlib/perl5/site_perl/%%PERL_VER%%/XML/XPath/XMLParser.pm Xlib/perl5/site_perl/%%PERL_VER%%/XML/XPath/Expr.pm Xlib/perl5/site_perl/%%PERL_VER%%/XML/XPath/PerlSAX.pm Xlib/perl5/site_perl/%%PERL_VER%%/XML/XPath/Boolean.pm Xlib/perl5/site_perl/%%PERL_VER%%/XML/XPath.pm X@dirrm lib/perl5/site_perl/%%PERL_VER%%/XML/XPath/Node X@dirrm lib/perl5/site_perl/%%PERL_VER%%/XML/XPath X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML/XPath END-of-p5-XML-XPath/pkg-plist echo x - p5-XML-XPath/plist sed 's/^X//' >p5-XML-XPath/plist << 'END-of-p5-XML-XPath/plist' Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML/XPath/.packlist Xbin/xpath Xlib/perl5/site_perl/5.005/XML/XPath.pm Xlib/perl5/site_perl/5.005/XML/XPath/Boolean.pm Xlib/perl5/site_perl/5.005/XML/XPath/Builder.pm Xlib/perl5/site_perl/5.005/XML/XPath/Expr.pm Xlib/perl5/site_perl/5.005/XML/XPath/Function.pm Xlib/perl5/site_perl/5.005/XML/XPath/Literal.pm Xlib/perl5/site_perl/5.005/XML/XPath/LocationPath.pm Xlib/perl5/site_perl/5.005/XML/XPath/Node.pm Xlib/perl5/site_perl/5.005/XML/XPath/Node/Attribute.pm Xlib/perl5/site_perl/5.005/XML/XPath/Node/Comment.pm Xlib/perl5/site_perl/5.005/XML/XPath/Node/Element.pm Xlib/perl5/site_perl/5.005/XML/XPath/Node/Namespace.pm Xlib/perl5/site_perl/5.005/XML/XPath/Node/PI.pm Xlib/perl5/site_perl/5.005/XML/XPath/Node/Text.pm Xlib/perl5/site_perl/5.005/XML/XPath/NodeSet.pm Xlib/perl5/site_perl/5.005/XML/XPath/Number.pm Xlib/perl5/site_perl/5.005/XML/XPath/Parser.pm Xlib/perl5/site_perl/5.005/XML/XPath/PerlSAX.pm Xlib/perl5/site_perl/5.005/XML/XPath/Root.pm Xlib/perl5/site_perl/5.005/XML/XPath/Step.pm Xlib/perl5/site_perl/5.005/XML/XPath/Variable.pm Xlib/perl5/site_perl/5.005/XML/XPath/XMLParser.pm X@dirrm lib/perl5/site_perl/%%PERL_VER%%/XML/XPath X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML/XPath END-of-p5-XML-XPath/plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Nov 11 8:49:50 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E867937B479; Sat, 11 Nov 2000 08:49:48 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA91040; Sat, 11 Nov 2000 08:49:48 -0800 (PST) (envelope-from sobomax@FreeBSD.org) Date: Sat, 11 Nov 2000 08:49:48 -0800 (PST) From: Message-Id: <200011111649.IAA91040@freefall.freebsd.org> To: jdunn@aquezada.com, sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22763: adzapper port upgrade Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: adzapper port upgrade State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Sat Nov 11 08:42:18 PST 2000 State-Changed-Why: Committed with some modifications. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=22763 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Nov 11 9:37:33 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1364D37B657; Sat, 11 Nov 2000 09:37:29 -0800 (PST) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA96581; Sat, 11 Nov 2000 09:37:29 -0800 (PST) (envelope-from jedgar@FreeBSD.org) Date: Sat, 11 Nov 2000 09:37:29 -0800 (PST) From: Message-Id: <200011111737.JAA96581@freefall.freebsd.org> To: dwcjr@inethouston.net, jedgar@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22728: Update mail/postfix-current Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update mail/postfix-current State-Changed-From-To: open->closed State-Changed-By: jedgar State-Changed-When: Sat Nov 11 09:26:20 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=22728 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Nov 11 9:38:23 2000 Delivered-To: freebsd-ports@freebsd.org Received: from baerenklau.de.freebsd.org (baerenklau.de.freebsd.org [195.185.195.14]) by hub.freebsd.org (Postfix) with ESMTP id 3E54937B4CF for ; Sat, 11 Nov 2000 09:37:32 -0800 (PST) Received: (from uucp@localhost) by baerenklau.de.freebsd.org (8.8.8/8.8.8) with UUCP id SAA23402; Sat, 11 Nov 2000 18:37:31 +0100 (CET) (envelope-from wosch@panke.de.freebsd.org) Received: (from wosch@localhost) by paula.panke.de.freebsd.org (8.9.3/8.8.8) id SAA01425; Sat, 11 Nov 2000 18:33:11 +0100 (CET) (envelope-from wosch) Date: Sat, 11 Nov 2000 18:33:11 +0100 (CET) Message-Id: <200011111733.SAA01425@paula.panke.de.freebsd.org> From: Wolfram Schneider To: ports@freebsd.org Subject: New ports added/updated last two weeks Reply-To: ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- Introduction - ------------ The FreeBSD Ports Collection offers a simple way for users and administrators to install applications. Each "port" listed here contains any patches necessary to make the original application source code compile and run on FreeBSD. Installing an application is as simple as downloading the port, unpacking it and typing make in the port directory. The Makefile automatically fetches the application source code, either from a local disk or via ftp, unpacks it on your system, applies the patches, and compiles. If all goes well, simply type make install to install the application. For more information about using ports, see the ports collection http://www.freebsd.org/handbook/ports.html and http://www.freebsd.org/ports/ There are currently 4101 ports in the FreeBSD Ports Collection. New ports added last two weeks - ------------------------------ Category archivers (http://www.freebsd.org/ports/archivers.html) ================================================================== unadf-0.7.9b Extracts files from .adf-files used by Amiga emulators Maintained by: wigren@home.se Requires: unzip-5.41 Category astro (http://www.freebsd.org/ports/astro.html) ================================================================== glunarclock-0.1_1 A GNOME applet which displays the current phase of the Moon Maintained by: sobomax@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.4, XFree86-3.3.6_4, bzip2-1.0.1, esound-0.2.20, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2, gnomecore-1.2.3, gnomelibs-1.2.8_1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xpm-3.4k Category audio (http://www.freebsd.org/ports/audio.html) ================================================================== freeamp-2.1.rc3 GTK-based MP3 player Maintained by: roman@xpert.com Requires: ORBit-0.5.4, XFree86-3.3.6_4, bzip2-1.0.1, esound-0.2.20, freetype-1.3.1, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomelibs-1.2.8_1, gtk-1.2.8, id3lib-3.7.13, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libungif-4.1.0b1, musicbrainz-1.0.0.pre4, nasm-0.98, png-1.0.8_1, popt-1.5, tiff-3.5.5, xpm-3.4k id3lib-3.7.13 Library for manipulating ID3v1/v1.1 and ID3v2 tags Maintained by: roman@xpert.com Requires: gettext-0.10.35, popt-1.5 libao-20001018 Portable audio output library Maintained by: t.vanklaveren@student.utwente.nl Requires: gettext-0.10.35, gmake-3.79.1, libtool-1.3.4_1 libogg-20001018 Ogg bitstream library Maintained by: t.vanklaveren@student.utwente.nl Requires: gettext-0.10.35, gmake-3.79.1, libtool-1.3.4_1 libvorbis-20001018 MP3-comparable audio compression codec library Maintained by: t.vanklaveren@student.utwente.nl Requires: gettext-0.10.35, gmake-3.79.1, libogg-20001018, libtool-1.3.4_1 musicbrainz-1.0.0.pre4 2nd generation incarnation of the CD Index - audio metadata Maintained by: roman@xpert.com Requires: gettext-0.10.35, gmake-3.79.1 p5-Audio-CD-0.04 Perl interface to libcdaudio (cd + cddb) Maintained by: roman@xpert.com Also listed in: perl5 Requires: libcdaudio-0.99.4 shntool-0.95 a multi-purpose .wav/.shn processing utility Maintained by: fenner@FreeBSD.Org Requires: shorten-3.1 vorbis-tools-20001018 MP3-comparable audio compression codec library Maintained by: t.vanklaveren@student.utwente.nl Requires: gettext-0.10.35, gmake-3.79.1, libao-20001018, libogg-20001018, libtool-1.3.4_1, libvorbis-20001018 vorbis-xmms-20001018 XMMS plugin for the Vorbis audio codec Maintained by: t.vanklaveren@student.utwente.nl Requires: XFree86-3.3.6_4, esound-0.2.20, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, libaudiofile-0.1.9, libmikmod-3.1.9, libogg-20001018, libvorbis-20001018, libxml-1.8.10, xmms-1.2.3_1 xmms-shn-2.1 an xmms plugin to allow playing shorten-compressed audio Maintained by: fenner@FreeBSD.Org Requires: XFree86-3.3.6_4, autoconf-2.13, esound-0.2.20, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, libaudiofile-0.1.9, libmikmod-3.1.9, libxml-1.8.10, m4-1.4, xmms-1.2.3_1 Category biology (http://www.freebsd.org/ports/biology.html) ================================================================== ncbi.toolkit-2000.10.31 National Center for Biotechnology Information (NCBI) Development Toolkit. Maintained by: tony.maher@ebioinformatics.com Requires: Motif-2.1.10, XFree86-3.3.6_4, xpm-3.4k Category chinese (http://www.freebsd.org/ports/chinese.html) ================================================================== zh-XFree86-aoutlibs-3.3.6 Chinese XFree86 a.out compatability libraries Maintained by: keith@freebsd.sinica.edu.tw Requires: XFree86-3.3.6_4 zh-linux_base-0.9p1 The base set of CLE packages needed in Linux mode Maintained by: keith@freebsd.sinica.edu.tw Also listed in: emulators linux Requires: bzip2-1.0.1, gettext-0.10.35, popt-1.5, rpm-3.0.6_4 zh-tw-netscape-communicator-4.76 Big5 localized Netscape Maintained by: keith@freebsd.sinica.edu.tw Also listed in: www Requires: XFree86-3.3.6_4, XFree86-aoutlibs-3.3.3, freetype-1.3.1, ja-p5-jcode.pl-2.11, libxpg4-ns-3.3, netscape-communicator-4.76, netscape-remote-1.0, netscape-wrapper-2000.07.07, perlftlib-1.2, xtt-common-1.3.0, zh-XFree86-aoutlibs-3.3.6, zh-arphicttf-2.11 zh-tw-netscape-navigator-4.76 Big5 localized Netscape Maintained by: keith@freebsd.sinica.edu.tw Also listed in: www Requires: XFree86-3.3.6_4, XFree86-aoutlibs-3.3.3, freetype-1.3.1, ja-p5-jcode.pl-2.11, libxpg4-ns-3.3, netscape-navigator-4.76, netscape-remote-1.0, netscape-wrapper-2000.07.07, perlftlib-1.2, xtt-common-1.3.0, zh-XFree86-aoutlibs-3.3.6, zh-arphicttf-2.11 zh-tw-rxvt-2.6.3 A low memory usage xterm replacement that supports color Maintained by: keichii@iteration.net Requires: XFree86-3.3.6_4, bzip2-1.0.1, xpm-3.4k zh-cn-rxvt-2.6.3 A low memory usage xterm replacement that supports color Maintained by: keichii@iteration.net Requires: XFree86-3.3.6_4, bzip2-1.0.1, xpm-3.4k Category comms (http://www.freebsd.org/ports/comms.html) ================================================================== bayonne-0.5.3 Multi-line general purpose voice telephony server Maintained by: dyfet@gnu.org Requires: CommonC++-1.2.5.1, autoconf-2.13, ccaudio-0.2.4, ccscript-1.2.5, gettext-0.10.35, gmake-3.79.1, libgnugetopt-1.1, libtool-1.3.4_1, m4-1.4 vpb2-2.0.3 user mode API for Voicetronix 4 port analog DSP telephony cards Maintained by: dyfet@gnu.org Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, libtool-1.3.4_1, m4-1.4 Category converters (http://www.freebsd.org/ports/converters.html) ================================================================== base64-0.1 Simple program to convert binary files to base64 Maintained by: ports@FreeBSD.org p5-Convert-ASN1-0.07 Perl5 module to encode and decode ASN.1 data structures Maintained by: scrappy@FreeBSD.org Also listed in: perl5 p5-Convert-BER-1.31 Perl5 module to encode and decode objects using Basic Encoding Rules (BER) Maintained by: scrappy@FreeBSD.org Also listed in: perl5 ruby-sha1-1.1,1 Ruby interface to the SHA-1 Secure Hash Algorithm Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: ruby-1.6.2.p2 Category databases (http://www.freebsd.org/ports/databases.html) ================================================================== edb-1.0.1 Enlightenment Database Library Maintained by: bfoz@glue.umd.edu Requires: gettext-0.10.35, gmake-3.79.1 jdbc-oracle816-1.11 The JDBC drivers for Oracle 8.1.6 Maintained by: patrick Also listed in: java Requires: javavmwrapper-1.1, jdk-1.1.8 Category devel (http://www.freebsd.org/ports/devel.html) ================================================================== bin86-0.15.3 16-bit assembler and loader Maintained by: trevor@FreeBSD.org entity-0.6.6 XML-based RAD Maintained by: jesse@cylant.com Requires: XFree86-3.3.6_4, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, pcre-3.1 gengetopt-2.1 The GNU Gengetopt generates a C function which parses command line arguments. Maintained by: ports@freebsd.org linguist-0.0 A tool for generating translations of strings used in i10'ed Qt programs Maintained by: sobomax@FreeBSD.org Requires: Mesa-3.2.1_1, XFree86-3.3.6_4, gettext-0.10.35, gmake-3.79.1, jpeg-6b, png-1.0.8_1, qt-2.2.1, tmake-1.6 p5-Time-Period-1.20 A perl module that contains code to deal with time periods Maintained by: nick@netdot.net Also listed in: perl5 ruby-byaccr-0.0_1 Parser generator for ruby based on 'Berkeley Yacc' and 'Berkeley Yacc for Java' Maintained by: knu@FreeBSD.org Also listed in: ruby ruby-rbison-0.0.5 Generates a Ruby parser class from a Bison-like specification file Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: bison-1.28, gettext-0.10.35, ruby-1.6.2.p2 Category editors (http://www.freebsd.org/ports/editors.html) ================================================================== dte-6.12 A simple text editor which uses many of the shortcuts used in MSDOS EDIT Maintained by: sjhports@tracking.amos.net Category emulators (http://www.freebsd.org/ports/emulators.html) ================================================================== VisualOS-1.0.2 A visual simulator of an operating system to help understand how OSes work Maintained by: sobomax@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.4, XFree86-3.3.6_4, bzip2-1.0.1, esound-0.2.20, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2, gnomecore-1.2.3, gnomelibs-1.2.8_1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libglade-0.14, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xpm-3.4k Category games (http://www.freebsd.org/ports/games.html) ================================================================== civ2demo-1.0 The free demo of Civilization: Call to Power Maintained by: jameso@elwood.net Also listed in: linux gnurobots-1.0D GNU diversion wherein Scheme-coded robots explore a world Maintained by: avh4@usa.net Requires: guile-1.4 magiccube4d-2.1 MagicCube4D is a fully functional four-dimensional analog of Rubik's cube Maintained by: karlj000@unbc.ca Requires: XFree86-3.3.6_4, gettext-0.10.35, gmake-3.79.1 nethack-3.3.1 A dungeon explorin', slashin', hackin' game Maintained by: yoshi@parodius.com Requires: gettext-0.10.35, gmake-3.79.1 smacx-1.0 Free demo of Sid Meier's Alpha Centauri Maintained by: ports@FreeBSD.org Also listed in: linux teg-0.5.0 A turn-based strategy game for GNOME Maintained by: sobomax@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.4, XFree86-3.3.6_4, bzip2-1.0.1, esound-0.2.20, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2, gnomecore-1.2.3, gnomelibs-1.2.8_1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xpm-3.4k Category graphics (http://www.freebsd.org/ports/graphics.html) ================================================================== evas-0.0.1 A highly optimized canvas library Maintained by: ports@FreeBSD.ORG Requires: Mesa-3.2.1_1, XFree86-3.3.6_4, edb-1.0.1, freetype-1.3.1, imlib2-1.0.0, jpeg-6b, libtool-1.3.4_1, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5 feh-0.9.9 An image viewer that utilizes Imlib2 Maintained by: ports@FreeBSD.ORG Requires: XFree86-3.3.6_4, edb-1.0.1, freetype-1.3.1, imlib2-1.0.0, jpeg-6b, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5 imlib2-1.0.0 The next generation graphic library for enlightenment package Maintained by: ports@FreeBSD.ORG Requires: XFree86-3.3.6_4, edb-1.0.1, freetype-1.3.1, jpeg-6b, libtool-1.3.4_1, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5 lcms-1.06 Light Color Management System -- a color management library Maintained by: mi@aldan.algebra.com leafpak-1.1 Graphic file cutter for LEAF/AQUAPLUS PAK format archives Maintained by: kaoru@kaisei.org libmng-0.9.3 Multiple-image Network Graphics (MNG) reference library Maintained by: mi@aldan.algebra.com Requires: jpeg-6b, lcms-1.06 Category japanese (http://www.freebsd.org/ports/japanese.html) ================================================================== ja-gal-0.2.1 A collection of widgets taken from GNOME gnumeric and evolution Maintained by: ade@FreeBSD.org Also listed in: x11-toolkits gnome Requires: ORBit-0.5.4, XFree86-3.3.6_4, bonobo-0.23, bzip2-1.0.1, esound-0.2.20, gconf-0.11, gdk-pixbuf-0.9.0, gettext-0.10.35, ghostscript-6.01, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2, gnomecore-1.2.3, gnomelibs-1.2.8_1, gnomeprint-0.24, gnomevfs-0.4, gtk-1.2.8, guile-1.4, iconv-1.1, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libglade-0.14, libtool-1.3.4_1, libungif-4.1.0b1, libunicode-0.4_2, libxml-1.8.10, oaf-0.6.0, png-1.0.8_1, popt-1.5, tiff-3.5.5, xpm-3.4k ja-gnome-1.2 The Japanese "meta-port" for the GNOME integrated X11 desktop Maintained by: nakai@FreeBSD.org Also listed in: x11 gnome Requires: ORBit-0.5.4, XFree86-3.3.6_4, bonobo-0.23, bzip2-1.0.1, esound-0.2.20, gal-0.2.1, gconf-0.11, gdk-pixbuf-0.9.0, gettext-0.10.35, ghostscript-6.01, glib-1.2.8, gnomeaudio-1.0.0, gnomebasic-0.0.14, gnomecontrolcenter-1.2.2, gnomecore-1.2.3, gnomelibs-1.2.8_1, gnomeprint-0.24, gnomevfs-0.4, gnumeric-0.57_2, gtk-1.2.8, guile-1.4, iconv-1.1, imlib-1.9.8.1, ja-gal-0.2.1, ja-gnomecore-1.2.3, ja-gnomelibs-1.2.8_1, jpeg-6b, libaudiofile-0.1.9, libglade-0.14, libole2-0.1.7, libungif-4.1.0b1, libunicode-0.4_2, libxml-1.8.10, oaf-0.6.0, png-1.0.8_1, popt-1.5, python-2.0, tiff-3.5.5, xpm-3.4k ja-gnomecore-1.2.3 Core component for the Gnome Desktop Environment Maintained by: ade@FreeBSD.org Also listed in: x11 gnome Requires: ORBit-0.5.4, XFree86-3.3.6_4, bzip2-1.0.1, esound-0.2.20, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2, gnomelibs-1.2.8_1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xpm-3.4k ja-gnomelibs-1.2.8_1 Libraries for GNOME, a GNU desktop environment Maintained by: ade@FreeBSD.org Also listed in: x11 gnome Requires: ORBit-0.5.4, XFree86-3.3.6_4, esound-0.2.20, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5, xpm-3.4k ja-gnumeric-0.57_2 The GNOME spreadsheet Maintained by: ade@FreeBSD.org Also listed in: math gnome Requires: ORBit-0.5.4, XFree86-3.3.6_4, bonobo-0.23, bzip2-1.0.1, esound-0.2.20, gal-0.2.1, gconf-0.11, gdk-pixbuf-0.9.0, gettext-0.10.35, ghostscript-6.01, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomebasic-0.0.14, gnomecontrolcenter-1.2.2, gnomecore-1.2.3, gnomelibs-1.2.8_1, gnomeprint-0.24, gnomevfs-0.4, gtk-1.2.8, guile-1.4, iconv-1.1, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libglade-0.14, libole2-0.1.7, libtool-1.3.4_1, libungif-4.1.0b1, libunicode-0.4_2, libxml-1.8.10, oaf-0.6.0, png-1.0.8_1, popt-1.5, python-2.0, tiff-3.5.5, xpm-3.4k ja-leafrogue-0.72 LeafRogue for message separeted version of Rogue-clone Maintained by: kaoru@kaisei.org Also listed in: games Requires: ja-rogue_s-1.3a ja-mozilla-jlp-M18_1 Mozilla Japanese Language Pack (JLP) Maintained by: yatt@msc.biglobe.ne.jp Also listed in: www Requires: ORBit-0.5.4, XFree86-3.3.6_4, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, ja-elisa8x8-1.0, ja-kaname12-1.1, ja-kappa20-0.3, ja-naga10-1.1, ja-netscape-fonts-1.0, jpeg-6b, mozilla-M18, png-1.0.8_1, unzip-5.41 Category java (http://www.freebsd.org/ports/java.html) ================================================================== junit-3.2 A regression testing utility for use with the Java(TM) Language Maintained by: okazaki@be.to Also listed in: devel Requires: javavmwrapper-1.1, jdk-1.1.8, jfc-1.1.1, unzip-5.41 Category korean (http://www.freebsd.org/ports/korean.html) ================================================================== ko-uniksc-0.9 Converts data between Korean KSC-5601 and Unicode 3.0 UTF-16 Maintained by: cjh@freebsd.org Also listed in: converters Category lang (http://www.freebsd.org/ports/lang.html) ================================================================== pfe-0.30.16 Implementation of ANSI Forth Maintained by: patrick@FreeBSD.org Requires: bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1 tinycobol-0.3 A tiny COBOL compiler for IA32 platforms Maintained by: patrick@freebsd.org Requires: db-2.7.7, gettext-0.10.35, gmake-3.79.1 Category mail (http://www.freebsd.org/ports/mail.html) ================================================================== bsmtp-1.01 Batch SMTP support for sendmail, incoming and outgoing Maintained by: naddy@mips.inka.de pop3gwd-1.2 App-level proxy for Mail retrieval behind Firewalls. Maintained by: jonny@jonny.eng.br Also listed in: net Category math (http://www.freebsd.org/ports/math.html) ================================================================== gri-2.4.4 Gri is an extensible plotting language for producing scientific graphs Maintained by: bdodson@scms.utmb.edu Requires: gawk-3.0.6, netcdf-3.5.b6 Category misc (http://www.freebsd.org/ports/misc.html) ================================================================== qlas-1.91 qico FIDO mailer log analyzer and statistic builder Maintained by: dsh@vlink.ru Category net (http://www.freebsd.org/ports/net.html) ================================================================== bind-9.0.0_1 The Berkeley Internet Name Daemon, an implementation of DNS Maintained by: ports@FreeBSD.org Also listed in: ipv6 fugu-0.9.9e A graphical client for the Gale instant messaging system Maintained by: peterh@sapros.com Also listed in: python Requires: XFree86-3.3.6_4, py-pmw-0.8.4, py-tkinter-2.0, python-2.0, tcl-8.3.1, tk-8.3.1 openldap-2.0.6_2 Open source LDAP client and server software Maintained by: knu@FreeBSD.org Also listed in: databases Requires: autoconf-2.13, libtool-1.3.4_1, m4-1.4 p5-Mon-0.9 A perl module that supports mon, a network and system monitoring daemon Maintained by: nick@netdot.net Also listed in: sysutils perl5 p5-perl-ldap-0.22 A Client interface to LDAP servers Maintained by: scrappy@FreeBSD.org Also listed in: perl5 Requires: p5-Convert-ASN1-0.07, p5-Digest-MD5-2.12, p5-IO-Socket-SSL-0.75, p5-URI-1.09 ruby-icmp-0.1.1 Ruby module for handling ICMP packets Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: ruby-1.6.2.p2 spat-0.9.9.1 A lightweight Intranet Messaging Application for GNOME desktop Maintained by: sobomax@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.4, XFree86-3.3.6_4, bzip2-1.0.1, esound-0.2.20, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2, gnomecore-1.2.3, gnomelibs-1.2.8_1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xpm-3.4k tcpcat-1.0.1 A simple utility for sending/receiving data over a TCP or a Unix-domain socket Maintained by: roam@orbitel.bg Requires: gettext-0.10.35, gmake-3.79.1 unison-2.5.1 A user-level file synchronization tool Maintained by: Dan Pelleg Requires: XFree86-3.3.6_4, gettext-0.10.35, gmake-3.79.1, ocaml-3.00 Category news (http://www.freebsd.org/ports/news.html) ================================================================== t-gnus-emacs20-6.14.5.06 i18n Gnus using SEMI, which provides MIME capabilities Maintained by: taoka@FreeBSD.org Also listed in: mail elisp Requires: XFree86-3.3.6_4, apel-emacs20-10.2, emacs-20.7, flim-emacs20-1.13.2, semi-emacs20-1.13.7 t-gnus-mule-6.14.5.06 i18n Gnus using SEMI, which provides MIME capabilities Maintained by: taoka@FreeBSD.org Also listed in: mail elisp Requires: XFree86-3.3.6_4, apel-mule-10.2, custom-mule-1.9962, flim-mule-1.13.2, mule-2.3, mule-common-2.3, semi-mule-1.13.7 t-gnus-xemacs21-mule-6.14.5.06 i18n Gnus using SEMI, which provides MIME capabilities Maintained by: taoka@FreeBSD.org Also listed in: mail elisp Requires: XFree86-3.3.6_4, apel-xemacs21-mule-10.2, faces-1.6.1, flim-xemacs21-mule-1.13.2, gettext-0.10.35, jpeg-6b, png-1.0.8_1, semi-xemacs21-mule-1.13.7, tiff-3.5.5, xemacs-basic-mule-packages-1.1, xemacs-mule-21.1.12, xemacs-mule-common-21.1.12, xemacs-packages-1.6, xpm-3.4k Category security (http://www.freebsd.org/ports/security.html) ================================================================== cksfv-1.1 Create or manipulate Simple File Verification (SFV) checksum files Maintained by: johann@egenetics.com Requires: gettext-0.10.35, gmake-3.79.1 hping-2b54 Network auditing tool Maintained by: roman@xpert.com Also listed in: net p5-IO-Socket-SSL-0.75 Perl5 interface to SSL sockets Maintained by: scrappy@FreeBSD.org Also listed in: perl5 Requires: p5-Net-SSLeay-1.05 pgpdump-0.04 PGP packet visualizer Maintained by: kaoru@kaisei.org srm-1.2.0 Secure rm, a utility which destroys file contents before unlinking Maintained by: keith.jones@ieee.org Also listed in: sysutils Requires: libtool-1.3.4_1 Category sysutils (http://www.freebsd.org/ports/sysutils.html) ================================================================== gtoaster-2000092620 Fully graphical GNOME cd cooking front-end Maintained by: eric@osd.bsdi.com Also listed in: gnome Requires: XFree86-3.3.6_4, cdrecord-1.9, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, mkisofs-1.13 pslist-1.0 A utility to view or send signals to processes with all their children Maintained by: roam@orbitel.bg Category textproc (http://www.freebsd.org/ports/textproc.html) ================================================================== dsssl-docbook-cygnus-1.44 DocBook DSSSL stylesheets of Cygnus Slution Maintained by: kiri@pis.toba-cmt.ac.jp Requires: docbook-3.0, dsssl-docbook-modular-1.59, iso8879-1986, mkcatalog-1.0 ltxml-1.2 XML Toolkit Maintained by: sam@inf.enst.fr Requires: gettext-0.10.35, gmake-3.79.1 mkcatalog-1.0 A maintainance utility for sgml catalog files. Maintained by: shige@FreeBSD.org py-martel-0.3_1 A parser generator for regular languages, written in Python Maintained by: johann@egenetics.com Also listed in: biology python Requires: py-mxTextTools-1.1.1, python-2.0 Category www (http://www.freebsd.org/ports/www.html) ================================================================== bmsync-0.2.0 A bookmark converter and synchronizer for NN, KDE and MSIE Maintained by: dpelleg+bmsync@cs.cmu.edu mod_access_referer-1.0.1 An Apache module that provides access control based on Referer HTTP header Maintained by: kapr@crosswinds.net Requires: apache-1.3.14 mod_python-2.6 Apache module for integrating Python Maintained by: perky@freebsd-kr.org Also listed in: python Requires: apache-1.3.14, python-2.0 neon-0.7.5 an HTTP and WebDAV client library for Unix systems, with a C interface Maintained by: mi@aldan.algebra.com Requires: expat-1.2, libxml-1.8.10 p5-HTML-TableExtract-1.05 Perl extension for extracting the text contained in tables within an HTML document Maintained by: ozz@FreeBSD.org.ru Also listed in: perl5 p5-HTML-Template-2.0 Perl module to use HTML Templates from CGI scripts Maintained by: kuriyama@FreeBSD.org Also listed in: perl5 webredirect-0.1 Small web server serving "301 Moved Permanently" only Maintained by: kaj@Raditex.se Category x11-toolkits (http://www.freebsd.org/ports/x11-toolkits.html) ================================================================== gtk-flat-theme-200010301024 A GTK+ theme engine which gives GTK+ a flattened appearance Maintained by: sobomax@FreeBSD.org Requires: XFree86-3.3.6_4, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, libtool-1.3.4_1 p5-GdkImlib-0.7004 The Imlib module of Gtk-Perl Maintained by: vanilla@FreeBSD.org Also listed in: lang perl5 Requires: XFree86-3.3.6_4, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libungif-4.1.0b1, p5-Gtk-0.7004, png-1.0.8_1, tiff-3.5.5 p5-GdkPixbuf-0.7004 The Pixbuf module of Gtk-Perl Maintained by: vanilla@FreeBSD.org Also listed in: lang perl5 Requires: ORBit-0.5.4, XFree86-3.3.6_4, bzip2-1.0.1, esound-0.2.20, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2, gnomecore-1.2.3, gnomelibs-1.2.8_1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libungif-4.1.0b1, libxml-1.8.10, p5-Gtk-0.7004, png-1.0.8_1, tiff-3.5.5, xpm-3.4k p5-Glade-0.7004 The Glade interface files of Gtk-Perl Maintained by: vanilla@FreeBSD.org Also listed in: lang perl5 Requires: ORBit-0.5.4, XFree86-3.3.6_4, bzip2-1.0.1, esound-0.2.20, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2, gnomecore-1.2.3, gnomelibs-1.2.8_1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libglade-0.14, libungif-4.1.0b1, libxml-1.8.10, p5-Gtk-0.7004, png-1.0.8_1, tiff-3.5.5, xpm-3.4k p5-Gnome-0.7004 The main Gnome module of Gtk-Perl Maintained by: vanilla@FreeBSD.org Also listed in: lang perl5 Requires: ORBit-0.5.4, XFree86-3.3.6_4, bzip2-1.0.1, esound-0.2.20, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2, gnomecore-1.2.3, gnomelibs-1.2.8_1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libungif-4.1.0b1, libxml-1.8.10, p5-GdkImlib-0.7004, p5-Gtk-0.7004, png-1.0.8_1, tiff-3.5.5, xpm-3.4k p5-GtkGLArea-0.7004 The OpenGL widget module of Gtk-Perl Maintained by: vanilla@FreeBSD.org Also listed in: lang perl5 Requires: Mesa-3.2.1_1, XFree86-3.3.6_4, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, gtkglarea-1.2.2, imlib-1.9.8.1, jpeg-6b, libungif-4.1.0b1, p5-Gtk-0.7004, png-1.0.8_1, tiff-3.5.5 p5-GtkXmHTML-0.7004 The HTML widget module of Gtk-Perl Maintained by: vanilla@FreeBSD.org Also listed in: lang perl5 Requires: ORBit-0.5.4, XFree86-3.3.6_4, esound-0.2.20, gettext-0.10.35, glib-1.2.8, gnomelibs-1.2.8_1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libungif-4.1.0b1, p5-Gtk-0.7004, png-1.0.8_1, tiff-3.5.5, xpm-3.4k WhistlerK-200010142358 A GTK theme engine inspired by the Windows Whistler Maintained by: sobomax@FreeBSD.org Requires: XFree86-3.3.6_4, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, libtool-1.3.4_1 Updated ports last two weeks - ----------------------------------- Category astro (http://www.freebsd.org/ports/astro.html) ================================================================== saoimage-1.28.5 Smithsonian Astrophysical Observatory image utility for X Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6_4 Category audio (http://www.freebsd.org/ports/audio.html) ================================================================== cdrdao-1.1.4 Write audio CD-Rs in disk-at-once mode Maintained by: futatuki@debug.gr.jp Requires: gettext-0.10.35, gmake-3.79.1, pccts-1.33.22 gkrellmvolume-0.7 GKrellM volume plugin Maintained by: ume@FreeBSD.org Requires: XFree86-3.3.6_4, gettext-0.10.35, gkrellm-1.0.1, glib-1.2.8, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5 gogo-2.36 Very fast MP3 encoder using recent x86 processors' features Maintained by: nakai@FreeBSD.org Requires: gettext-0.10.35, gmake-3.79.1, nasm-0.98 lopster-0.9.5 GTK+ client for Napster Maintained by: roman@xpert.com Requires: XFree86-3.3.6_4, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8 mp3_check-1.98 Verifies the integrity of mp3 audio files Maintained by: ericb@thedeepsky.com Requires: libgnugetopt-1.1 shorten-3.1 A wav-file compressor Maintained by: sec@42.org Also listed in: archivers vorbis-20001018 Meta-port for all vorbis-related ports Maintained by: t.vanklaveren@student.utwente.nl Requires: XFree86-3.3.6_4, esound-0.2.20, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, libao-20001018, libaudiofile-0.1.9, libmikmod-3.1.9, libogg-20001018, libvorbis-20001018, libxml-1.8.10, vorbis-tools-20001018, vorbis-xmms-20001018, xmms-1.2.3_1 xmradio-1.0 Motif based FM tuner (for use with bt848 driver) Maintained by: runge@rostock.zgdv.de Requires: Motif-2.1.10, XFree86-3.3.6_4, xpm-3.4k Category biology (http://www.freebsd.org/ports/biology.html) ================================================================== emboss-1.7.0 A collection of open source tools for genetic sequence analysis Maintained by: johann@egenetics.com Requires: XFree86-3.3.6_4, gd-1.8.3, gettext-0.10.35, gmake-3.79.1, jpeg-6b, libtool-1.3.4_1, png-1.0.8_1 sim4-2000.10.19 An algorithm for aligning expressed DNA with genomic sequences Maintained by: bio@freebsd.net Category cad (http://www.freebsd.org/ports/cad.html) ================================================================== cider-1.b1_1 A mixed-level circuit and device simulator (includes SPICE3) Maintained by: amakawa@jp.FreeBSD.org Requires: XFree86-3.3.6_4 xcircuit-2.1b7 An X11 drawing program [especially for circuit schematics] Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6_4, bzip2-1.0.1, ghostscript-5.50a, png-1.0.8_1, xpm-3.4k Category chinese (http://www.freebsd.org/ports/chinese.html) ================================================================== zh-bg5ps-1.3.0p3 Convert Chinese-Big5/GB encoded files to Postscript, using TTF fonts Maintained by: keith@freebsd.sinica.edu.tw Also listed in: print Requires: XFree86-3.3.6_4, freetype-1.3.1, gettext-0.10.35, gmake-3.79.1, python-2.0 zh-libtabe-0.1.9 Unified library for Chinese text processing Maintained by: keith@freebsd.sinica.edu.tw Requires: XFree86-3.3.6_4, db-2.7.7, gettext-0.10.35, gmake-3.79.1 zh-pine-4.21_1 A Program for Internet News & Email with Chinese(BIG-5) support Maintained by: avatar@www.mmlab.cse.yzu.edu.tw Also listed in: mail news zh-xcin-2.5.2.1 Chinese input method server under X Maintained by: keith@freebsd.sinica.edu.tw Also listed in: x11 Requires: XFree86-3.3.6_4, db-2.7.7, gettext-0.10.35, zh-kcfonts-1.05, zh-libtabe-0.1.9 Category comms (http://www.freebsd.org/ports/comms.html) ================================================================== qico-0.48.1 Qico is an FidoNet Technology Network (FTN) compatible mailer for Unix systems Maintained by: dsh@vlink.ru Requires: gettext-0.10.35, gmake-3.79.1 Category databases (http://www.freebsd.org/ports/databases.html) ================================================================== MyODBC-2.50.34 ODBC driver for MySQL Maintained by: ebakke@trolltech.com Requires: gettext-0.10.35, gmake-3.79.1, libiodbc-2.50.3, libtool-1.3.4_1, mysql-client-3.23.26 p5-MyObject-1.2_1 Accesses data in a MySQL database as Perl objects Maintained by: jedgar@FreeBSD.org Also listed in: perl5 Requires: mysql-client-3.22.32, p5-DBI-1.14, p5-Data-ShowTable-3.3, p5-Mysql-modules-1.2215 py-MySQLdb-0.3.0b2 Access a MySQL database through Python Maintained by: sobomax@FreeBSD.org Also listed in: python Requires: mysql-client-3.22.32, python-2.0 ruby-gdbm-1.6.2.p2 A Ruby extension to GDBM library Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: gdbm-1.8.0, ruby-1.6.2.p2 Category deskutils (http://www.freebsd.org/ports/deskutils.html) ================================================================== gnofin-0.8.3 Light-weight GNOME based financial management program Maintained by: jedgar@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.4, XFree86-3.3.6_4, bzip2-1.0.1, esound-0.2.20, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2, gnomecore-1.2.3, gnomelibs-1.2.8_1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xpm-3.4k teapot-1.03_1 Full-screen curses based spread sheet program Maintained by: ports@FreeBSD.org Category devel (http://www.freebsd.org/ports/devel.html) ================================================================== SN-4.5.2 Cygnus/GNU/Red Hat's IDE and source code analysis tool Maintained by: dburr@FreeBSD.ORG Requires: XFree86-3.3.6_4, gettext-0.10.35, gmake-3.79.1 CommonC++-1.2.5.1 GNU project portable class framework for C++ Maintained by: dyfet@gnu.org Requires: gettext-0.10.35, gmake-3.79.1, libtool-1.3.4_1 cook-2.16 Like make(1), but more powerful and clean Maintained by: jasone@freebsd.org Requires: autoconf-2.13, gettext-0.10.35, m4-1.4 ctags-4.0.3 A feature-filled tagfile generator for vi and emacs clones Maintained by: jkoshy@FreeBSD.org fnorb-1.1_1 A CORBA 2.0 ORB written in Python Maintained by: johann@egenetics.com Also listed in: python Requires: python-2.0 gconf-0.11 A configuration database system for GNOME Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.4, XFree86-3.3.6_4, bzip2-1.0.1, esound-0.2.20, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2, gnomecore-1.2.3, gnomelibs-1.2.8_1, gtk-1.2.8, guile-1.4, iconv-1.1, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, oaf-0.6.0, png-1.0.8_1, popt-1.5, tiff-3.5.5, xpm-3.4k global-4.0.1 A source code tag system Maintained by: chuckr@freebsd.org Requires: gettext-0.10.35, gmake-3.79.1 gnomevfs-0.4 GNOME Virtual File System Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.4, XFree86-3.3.6_4, bonobo-0.23, bzip2-1.0.1, esound-0.2.20, gconf-0.11, gdk-pixbuf-0.9.0, gettext-0.10.35, ghostscript-6.01, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2, gnomecore-1.2.3, gnomelibs-1.2.8_1, gnomeprint-0.24, gtk-1.2.8, guile-1.4, iconv-1.1, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, oaf-0.6.0, png-1.0.8_1, popt-1.5, tiff-3.5.5, xpm-3.4k p5-File-MMagic-1.09 Perl5 module to guess file type like file(1) Maintained by: knu@FreeBSD.org Also listed in: perl5 p5-Storable-1.0.5 Persistency for perl data structures Maintained by: ports@FreeBSD.org Also listed in: perl5 perforce-00.1,1 Perforce client and server Maintained by: sam@inf.enst.fr ruby-runit-0.2.9 Ruby implementation of Kent Beck's Testing Framework (cf. eXtreme Programming) Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: ruby-1.6.2.p2, ruby-amstd-1.9.5, ruby-optparse-0.7.5, ruby-racc-runtime-1.2.4, ruby-rdtool-0.6.6, ruby-strscan-0.5.8 sdl-devel-1.1.6 Cross-platform multi-media development API (developm. vers.) Maintained by: sobomax@FreeBSD.org Requires: Mesa-3.2.1_1, XFree86-3.3.6_4, aalib-1.2, esound-0.2.20, gettext-0.10.35, gmake-3.79.1, libaudiofile-0.1.9, libtool-1.3.4_1, nasm-0.98, svgalib-1.4.2_1 Category editors (http://www.freebsd.org/ports/editors.html) ================================================================== openoffice-6.0.a609 Integrated wordprocessor/dbase/spreadheet/drawing/chart/browser Maintained by: obrien@FreeBSD.org vim-lite-5.7.14 Vi "workalike", with many additional features Maintained by: obrien@FreeBSD.org vim-5.7.14 Vi "workalike", with many additional features Maintained by: obrien@FreeBSD.org Requires: Motif-2.1.10, XFree86-3.3.6_4, tcl-8.0.5, xpm-3.4k vim+ruby-6.0k Vi IMproved version 6 with embedded Ruby interpreter Maintained by: obrien@FreeBSD.org Also listed in: ruby Requires: Motif-2.1.10, XFree86-3.3.6_4, autoconf-2.13, m4-1.4, python-2.0, ruby-1.6.2.p2, tcl-8.0.5, xpm-3.4k vim-6.0k Vi "workalike", with many additional features Maintained by: obrien@FreeBSD.org Requires: Motif-2.1.10, XFree86-3.3.6_4, python-2.0, tcl-8.0.5, xpm-3.4k xemacs-prog-packages-2.2 XEmacs elisp packages for Programing(prog) Maintained by: kiri@pis.toba-cmt.ac.jp Also listed in: elisp Category emulators (http://www.freebsd.org/ports/emulators.html) ================================================================== vmware2-2.0.2.621_3 A virtual machine emulator - a full PC in a window Maintained by: vns@delta.odessa.ua Also listed in: linux Requires: XFree86-3.3.6_4, linux_base-6.1, rtc-2000.09.22 wine-2000.10.26 MS-Windows 3.1/95/NT emulator for Unix (Alpha release) Maintained by: pfeifer@dbai.tuwien.ac.at Requires: Mesa-3.2.1_1, XFree86-3.3.6_4, bison-1.28, gettext-0.10.35, xpm-3.4k Category ftp (http://www.freebsd.org/ports/ftp.html) ================================================================== curl-7.4.1 Non-interactive tool to get files from FTP, GOPHER, HTTP(S) servers Maintained by: kris@FreeBSD.org Also listed in: www Requires: autoconf-2.13, automake-1.4, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, m4-1.4 downloader-1.20.p Program for downloading via ftp or http with GUI Maintained by: andrew@chg.ru Requires: XFree86-3.3.6_4, gettext-0.10.35, glib-1.2.8, gtk-1.2.8 Category games (http://www.freebsd.org/ports/games.html) ================================================================== atomix-0.4.0 A yet another little mind game Maintained by: nakai@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.4, XFree86-3.3.6_4, bzip2-1.0.1, esound-0.2.20, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2, gnomecore-1.2.3, gnomelibs-1.2.8_1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xpm-3.4k columns-1.2b Nice little implementation of columns game for X Window System Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6_4, esound-0.2.20, libaudiofile-0.1.9, sdl-1.0.8_1, svgalib-1.4.2_1 connect4-3.2_1 A curses version of the classic game Maintained by: ports@FreeBSD.org Requires: sharutils-4.2.1 xfireworks-1.3 Fireworks on X Maintained by: sakai@seki.ee.kagu.sut.ac.jp Requires: XFree86-3.3.6_4 xgalaga-2.0_1 Galaga resurrected on X Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6_4, xpm-3.4k Category graphics (http://www.freebsd.org/ports/graphics.html) ================================================================== p5-GIFgraph-1.10_1 A Perl package to generate GIF charts Maintained by: laskavy@gambit.msk.su Also listed in: perl5 Requires: gd-1.8.3, jpeg-6b, p5-GD-1.27, png-1.0.8_1 flashplayer-0.4.10_1 GPL standalone Flash (TM) player Maintained by: knu@FreeBSD.org Requires: XFree86-3.3.6_4, jpeg-6b, libflash-0.4.10 lfview-1.1 Graphic viewer for Leaf products Maintained by: s974123@cc.matsuyama-u.ac.jp Requires: XFree86-3.3.6_4 p5-Chart-PNGgraph-1.21_1 A Perl module for generating presentation graphics (i.e., charts) Maintained by: ports@FreeBSD.org Also listed in: perl5 Requires: gd-1.8.3, jpeg-6b, p5-GD-1.27, png-1.0.8_1 p5-Chart-0.99b_1 A perl5 interface to build chart graphics Maintained by: dan@trinsec.com Also listed in: perl5 Requires: gd-1.8.3, jpeg-6b, p5-GD-1.27, png-1.0.8_1 py-imaging-1.1.1 The Python Imaging Library Maintained by: tg@FreeBSD.org Also listed in: python Requires: XFree86-3.3.6_4, jpeg-6b, py-tkinter-2.0, python-2.0, tcl-8.3.1, tk-8.3.1 py-ming-0.0.3a_1 Python module for the Ming library which allows you to create Flash (TM) movies Maintained by: knu@FreeBSD.org Also listed in: python Requires: ming-0.0.3a, python-2.0, swig-1.3a5_2 qiv-1.5 A very small and fast GDK/Imlib image viewer Maintained by: trevor@FreeBSD.org Requires: XFree86-3.3.6_4, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5 ruby-GD-0.7.1 Ruby extension library to use Thomas Boutell's gd library Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: gd-1.8.3, jpeg-6b, png-1.0.8_1, ruby-1.6.2.p2, ruby-amstd-1.9.5, ruby-optparse-0.7.5, ruby-racc-runtime-1.2.4, ruby-rdtool-0.6.6, ruby-strscan-0.5.8 xine-0.2.3 A MPEG-1 and MPEG-2 player Maintained by: roman@xpert.com Requires: XFree86-3.3.6_4, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5 Category hebrew (http://www.freebsd.org/ports/hebrew.html) ================================================================== iw-pine-4.30.2.9 PINE(tm) -- a Program for Internet News & Email Maintained by: nadav@cs.technion.ac.il Also listed in: mail news Category irc (http://www.freebsd.org/ports/irc.html) ================================================================== tkirc-2.43 A GUI for the ircII Internet Relay Chat client Maintained by: green@FreeBSD.org Also listed in: tk83 Requires: XFree86-3.3.6_4, ircii-4.4X, tcl-8.3.1, tk-8.3.1 xchat-1.5.10 An X11 IRC client using the GTK+ toolkit, and optionally, GNOME Maintained by: jim@FreeBSD.org Also listed in: gnome Requires: XFree86-3.3.6_4, bzip2-1.0.1, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5 Category japanese (http://www.freebsd.org/ports/japanese.html) ================================================================== ja-dserver-2.2.2_1 CDROM dictionary server & clients Maintained by: mita@jp.FreeBSD.org Requires: gettext-0.10.35, gmake-3.79.1, ja-less-332 ja-freepwing-1.3 Free JIS X 4081 (subset of EPWING V1) Formatter Maintained by: taoka@FreeBSD.org Also listed in: textproc Requires: gettext-0.10.35, gmake-3.79.1 ja-jargon-fpw-4.2.0.1.1a The famous jargon file (EPWING V1 format) Maintained by: taoka@FreeBSD.org Requires: gettext-0.10.35, gmake-3.79.1, ja-epwutil-1.1, ja-freepwing-1.3, ja-nkf-1.71 ja-lambdamoo-1.8.1 The most commonly used program to run MOOs Maintained by: flathill@FreeBSD.ORG Also listed in: net ja-netscape-communicator-linux-4.76 Netscape web-surfboard with Japanese resources Maintained by: sada@FreeBSD.org Also listed in: www Requires: XFree86-3.3.6_4, ja-elisa8x8-1.0, ja-kaname12-1.1, ja-kappa20-0.3, ja-linux_locale-18.0, ja-naga10-1.1, ja-netscape-fonts-1.0, linux-netscape-communicator-4.76, linux_base-6.1, netscape-remote-1.0, netscape-wrapper-2000.07.07 ja-netscape-navigator-linux-4.76 Netscape web-surfboard with Japanese resources Maintained by: sada@FreeBSD.org Also listed in: www Requires: XFree86-3.3.6_4, ja-elisa8x8-1.0, ja-kaname12-1.1, ja-kappa20-0.3, ja-linux_locale-18.0, ja-naga10-1.1, ja-netscape-fonts-1.0, linux-netscape-navigator-4.76, linux_base-6.1, netscape-remote-1.0, netscape-wrapper-2000.07.07 ja-man-doc-4.2 Japanese online manual pages corresponding to /usr/share/man/man* Maintained by: horikawa@jp.FreeBSD.org ja-mimekit-1.8 Library to handle messages with MIME-encoded headers Maintained by: max@FreeBSD.org Also listed in: devel mail ja-msdosfs-20001027 Mount a Microsoft FAT Japanese file system Maintained by: ports@FreeBSD.org ja-mypaedia-fpw-package-1.0.4 A supplement file to use "mypaedia" on lookup Maintained by: taoka@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.6_4, png-1.0.8_1, sox-12.16, timidity++-2.10.1, xanim-2.80.1 ja-namazu2-2.0.5 Full-text search system intended for easy use Maintained by: knu@FreeBSD.org Also listed in: textproc Requires: cole-2.0.1, gettext-0.10.35, ja-kakasi-2.3.1, ja-p5-Text-Kakasi-1.04, ja-p5-nkf-0.01, p5-File-MMagic-1.09, xlhtml-0.2.7.2 ja-netscape-communicator-4.76 Netscape web-surfboard with Japanese resources Maintained by: sada@FreeBSD.org Also listed in: www Requires: XFree86-3.3.6_4, XFree86-aoutlibs-3.3.3, ja-elisa8x8-1.0, ja-kaname12-1.1, ja-kappa20-0.3, ja-naga10-1.1, ja-netscape-fonts-1.0, netscape-communicator-4.76, netscape-remote-1.0, netscape-wrapper-2000.07.07 ja-netscape-navigator-4.76 Netscape web-surfboard with Japanese resources Maintained by: sada@FreeBSD.org Also listed in: www Requires: XFree86-3.3.6_4, XFree86-aoutlibs-3.3.3, ja-elisa8x8-1.0, ja-kaname12-1.1, ja-kappa20-0.3, ja-naga10-1.1, ja-netscape-fonts-1.0, netscape-navigator-4.76, netscape-remote-1.0, netscape-wrapper-2000.07.07 ja-postgresql-7.0.2.20001025 A robust, next generation, object-relational DBMS Maintained by: saito@a2z.co.jp Also listed in: databases Requires: gettext-0.10.35, gmake-3.79.1 ja-ruby-tcltklib-1.6.2.p2 A Ruby interface to Tcl/Tk libraries Maintained by: knu@FreeBSD.org Also listed in: lang x11-toolkits ruby tcl80 tk80 Requires: XFree86-3.3.6_4, ja-tcl-8.0.5, ja-tk-8.0.5, ruby-1.6.2.p2 ja-ruby-tk-1.6.2.p2 Ruby interface to the Tk widget set Maintained by: knu@FreeBSD.org Also listed in: x11-toolkits ruby tk80 Requires: XFree86-3.3.6_4, ja-ruby-tcltklib-1.6.2.p2, ja-tcl-8.0.5, ja-tk-8.0.5, ruby-1.6.2.p2 ja-skk-elisp-emacs20-10.62a Emacs-lisp frontend for the SKK-10 Japanese Input Method Maintained by: shige@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.6_4, apel-emacs20-10.2, bzip2-1.0.1, emacs-20.7, ja-skk-jisyoL-9.6 ja-srd-fpw-package-1.0.5 A supplement file for lookup to use "Random House" Maintained by: taoka@FreeBSD.org Also listed in: elisp Requires: ImageMagick-5.2.3, XFree86-3.3.6_4, bzip2-1.0.1, freetype-1.3.1, ghostscript-5.50a, hdf-4.1r3, jbigkit-1.2, jpeg-6b, mpeg2codec-1.2, netpbm-9.8, png-1.0.8_1, tiff-3.5.5, transfig-3.2.3, xpm-3.4k ja-srd-fpw-1.1.3 A English - Japanese Dictionary "Random House" (EPWING V1 format) Maintained by: taoka@FreeBSD.org Requires: gettext-0.10.35, gmake-3.79.1, ja-epwutil-1.1, ja-freepwing-1.3, ja-p5-Jcode-0.60, p5-MIME-Base64-2.11, unzip-5.41 ja-vfghostscript-5.10_1 GNU Postscript and PDF interpreter with Japanese vector font library Maintained by: mita@jp.FreeBSD.org Also listed in: print Requires: XFree86-3.3.6_4, freetype-1.3.1, ja-vflib-2.25.1, jpeg-6b, png-1.0.8_1 ja-wdic-fpw-1.1b Wired and Wireless Dictionary in Japanese (EPWING V1 format) Maintained by: taoka@FreeBSD.org Requires: gettext-0.10.35, gmake-3.79.1, ja-epwutil-1.1, ja-freepwing-1.3, ja-nkf-1.71, ja-p5-Jcode-0.60, lha-1.14g, p5-MIME-Base64-2.11, unzip-5.41 Category korean (http://www.freebsd.org/ports/korean.html) ================================================================== ko-baekmukfonts-bdf-2.0_3 Free Hangul fonts for X11(baekmuk) Maintained by: cjh@freebsd.org Also listed in: x11-fonts Requires: XFree86-3.3.6_4 ko-netscape-communicator-linux-4.76 Netscape web-surfboard with Korean resources Maintained by: cjh@FreeBSD.org Also listed in: www Requires: XFree86-3.3.6_4, ko-baekmukfonts-bdf-2.0_3, ko-linux_locale-1.0, ko-mizifonts-1.1, linux-netscape-communicator-4.76, linux_base-6.1, netscape-remote-1.0, netscape-wrapper-2000.07.07 ko-netscape-navigator-linux-4.76 Netscape web-surfboard with Korean resources Maintained by: cjh@FreeBSD.org Also listed in: www Requires: XFree86-3.3.6_4, ko-baekmukfonts-bdf-2.0_3, ko-linux_locale-1.0, ko-mizifonts-1.1, linux-netscape-navigator-4.76, linux_base-6.1, netscape-remote-1.0, netscape-wrapper-2000.07.07 ko-netscape-communicator-4.76 Netscape web-surfboard with Korean resources Maintained by: cjh@FreeBSD.org Also listed in: www Requires: XFree86-3.3.6_4, XFree86-aoutlibs-3.3.3, ko-baekmukfonts-bdf-2.0_3, ko-mizifonts-1.1, netscape-communicator-4.76, netscape-remote-1.0, netscape-wrapper-2000.07.07 ko-netscape-navigator-4.76 Netscape web-surfboard with Korean resources Maintained by: cjh@FreeBSD.org Also listed in: www Requires: XFree86-3.3.6_4, XFree86-aoutlibs-3.3.3, ko-baekmukfonts-bdf-2.0_3, ko-mizifonts-1.1, netscape-navigator-4.76, netscape-remote-1.0, netscape-wrapper-2000.07.07 Category lang (http://www.freebsd.org/ports/lang.html) ================================================================== ccscript-1.2.5 State-event driven class extendible C++ script interpreter Maintained by: dyfet@gnu.org Requires: CommonC++-1.2.5.1, autoconf-2.13, gettext-0.10.35, gmake-3.79.1, libtool-1.3.4_1, m4-1.4 gnat-3.13p The GNU Ada Compiler system Maintained by: eischen@vigrid.com Requires: gettext-0.10.35, gmake-3.79.1 gnomebasic-0.0.14 Provide Visual Basic compatible functionality for GNOME, especially VBA Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.4, XFree86-3.3.6_4, bzip2-1.0.1, esound-0.2.20, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2, gnomecore-1.2.3, gnomelibs-1.2.8_1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xpm-3.4k nawk-20001030 Brian Kernighan's pattern scanning and processing language Maintained by: obrien@FreeBSD.org Requires: bison-1.28, gettext-0.10.35 ruby-tcltklib-1.6.2.p2 A Ruby interface to Tcl/Tk libraries Maintained by: knu@FreeBSD.org Also listed in: x11-toolkits ruby tcl82 tk82 Requires: XFree86-3.3.6_4, ruby-1.6.2.p2, tcl-8.2.3, tk-8.2.3 ruby-1.6.2.p2 An object-oriented interpreted scripting language Maintained by: knu@FreeBSD.org Also listed in: ruby ipv6 Requires: autoconf-2.13, m4-1.4 smlnj-110.0.7 A popular functional language from Bell Labs Maintained by: jkoshy@freebsd.org Requires: gettext-0.10.35, gmake-3.79.1 Category mail (http://www.freebsd.org/ports/mail.html) ================================================================== balsa-1.0.pre4 A mail reader for the gnome interface Maintained by: sobomax@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.4, XFree86-3.3.6_4, bzip2-1.0.1, esound-0.2.20, gdk-pixbuf-0.9.0, gettext-0.10.35, ghostscript-6.01, glib-1.2.8, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2, gnomecore-1.2.3, gnomelibs-1.2.8_1, gnomeprint-0.24, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libproplist-0.10.1, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, pspell-0.11.2, tiff-3.5.5, xpm-3.4k courier-imap-1.2 IMAP (and POP3) server that provides access to Maildir mailboxes Maintained by: nbm@FreeBSD.org Also listed in: ipv6 Requires: gettext-0.10.35, gmake-3.79.1 evolution-0.6 An integrated mail, calendar and address book distributed suite Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.4, XFree86-3.3.6_4, bonobo-0.23, bzip2-1.0.1, esound-0.2.20, gal-0.2.1, gconf-0.11, gdk-pixbuf-0.9.0, gettext-0.10.35, ghostscript-6.01, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2, gnomecore-1.2.3, gnomelibs-1.2.8_1, gnomepilot-0.1.52, gnomeprint-0.24, gnomevfs-0.4, gtk-1.2.8, gtkhtml-0.7, guile-1.4, iconv-1.1, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libglade-0.14, libtool-1.3.4_1, libungif-4.1.0b1, libunicode-0.4_2, libwww-5.3.1, libxml-1.8.10, oaf-0.6.0, openldap-1.2.11_1, pilot-link-0.9.3, png-1.0.8_1, popt-1.5, pspell-0.11.2, tcl-8.2.3, tiff-3.5.5, tk-8.2.3, xpm-3.4k fetchmail-5.5.5 Batch mail retrieval/forwarding utility for pop2, pop3, apop, imap Maintained by: ve@sci.fi Also listed in: ipv6 Requires: gettext-0.10.35 listmanager-2.105.1_1 Fully-featured mailing list manager Maintained by: ports@FreeBSD.org minimalist-2.1.2 A minimalistic mailing list manager Maintained by: gmarco@giovannelli.it pine4-ssl-4.21.1.4_1 PINE(tm) -- a Program for Internet News & Email Maintained by: nsayer@freebsd.org Also listed in: news Requires: cclient-4.7c pine-4.21_1 PINE(tm) -- a Program for Internet News & Email Maintained by: pine@freebsd.ady.ro Also listed in: news Requires: cclient-4.7c postfix-20001030_1 An alternative to widely-used Sendmail Maintained by: dwcjr@inethouston.net Category math (http://www.freebsd.org/ports/math.html) ================================================================== gnumeric-0.57_2 The GNOME spreadsheet Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.4, XFree86-3.3.6_4, bonobo-0.23, bzip2-1.0.1, esound-0.2.20, gal-0.2.1, gconf-0.11, gdk-pixbuf-0.9.0, gettext-0.10.35, ghostscript-6.01, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomebasic-0.0.14, gnomecontrolcenter-1.2.2, gnomecore-1.2.3, gnomelibs-1.2.8_1, gnomeprint-0.24, gnomevfs-0.4, gtk-1.2.8, guile-1.4, iconv-1.1, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libglade-0.14, libole2-0.1.7, libtool-1.3.4_1, libungif-4.1.0b1, libunicode-0.4_2, libxml-1.8.10, oaf-0.6.0, png-1.0.8_1, popt-1.5, python-2.0, tiff-3.5.5, xpm-3.4k gsl-0.7 The GNU Scientific Library - mathematical libs Maintained by: andrew@chg.ru Requires: libtool-1.3.4_1 netcdf-3.5.b6 Library for machine-independent, array-oriented data access Maintained by: ports@FreeBSD.org Category misc (http://www.freebsd.org/ports/misc.html) ================================================================== 40upgrade-2000.11.01 A convenience package to upgrade your 4.0 system to 4-stable for ports Maintained by: asami@FreeBSD.org 41upgrade-2000.11.01 A convenience package to upgrade your 4.1 system to 4-stable for ports Maintained by: asami@FreeBSD.org gnomepm-0.9.3 A small GNOME app that collects stock information from Yahoo!(c) Finance Maintained by: sobomax@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.4, XFree86-3.3.6_4, bzip2-1.0.1, esound-0.2.20, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2, gnomecore-1.2.3, gnomelibs-1.2.8_1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libghttp-1.0.7, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xpm-3.4k rfc-3.0 Perl script to search for RFC's Maintained by: jedgar@FreeBSD.org Requires: w3m-0.1.11.p.17 rpm-3.0.6_4 The Red Hat Package Manager Maintained by: nakai@FreeBSD.org Requires: autoconf-2.13, automake-1.4, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, libtool-1.3.4_1, m4-1.4, popt-1.5 tet-3.3f An test execution framework from the Open Group Maintained by: jkoshy@freebsd.org uk-phone-2.0 United Kingdom phone codes Maintained by: brian@FreeBSD.org Category net (http://www.freebsd.org/ports/net.html) ================================================================== arla-0.34.6 A free AFS client implementation Maintained by: assar@freebsd.org Requires: XFree86-3.3.6_4 cnet-1.6_1 A networking simulator Maintained by: ports@FreeBSD.org Also listed in: tk82 Requires: XFree86-3.3.6_4, gettext-0.10.35, gmake-3.79.1, tcl-8.2.3, tk-8.2.3, xpm-3.4k ddup-3.0.1 A DynDNS.org client for UNIX (Now support NIC v2.0) Maintained by: cjm2@altavista.net delegate-6.1.19 General purpose TCP/IP proxy system Maintained by: max@FreeBSD.org Also listed in: www japanese gnomeicu-0.94.1 GNOME ICQ client Maintained by: nectar@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.4, XFree86-3.3.6_4, bzip2-1.0.1, esound-0.2.20, gdbm-1.8.0, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2, gnomecore-1.2.3, gnomelibs-1.2.8_1, gtk-1.2.8, iconv-1.1, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xpm-3.4k isc-dhcp3-3.0.b2.9 ISC Dynamic Host Configuration Protocol client and server code Maintained by: obrien@FreeBSD.org kdenetwork-1.1.2_2 Network modules for the KDE integrated X11 desktop Maintained by: will@FreeBSD.org Also listed in: news kde Requires: XFree86-3.3.6_4, bzip2-1.0.1, gdbm-1.8.0, gettext-0.10.35, gmake-3.79.1, jpeg-6b, kdelibs-1.1.2_2, kdesupport-1.1.2_1, png-1.0.8_1, qt-1.45_1, tiff-3.5.5, uulib-0.5.13 lambdamoo-1.8.1 The most commonly used program to run MOOs Maintained by: flathill@FreeBSD.ORG libsmi-0.2.6 A library to access SMI MIB information Maintained by: saper@system.pl Requires: gettext-0.10.35, gmake-3.79.1 mrtg-2.9.4 The multi-router traffic grapher Maintained by: dima@Chg.RU Requires: gd-1.8.3, jpeg-6b, png-1.0.8_1 openldap-1.2.11_1 Open source LDAP client and server software Maintained by: lodea@vet.com.au Also listed in: databases Requires: libtool-1.3.4_1 ruby-ldap-0.3 Ruby interface to LDAP API based on RFC1823 Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: openldap-2.0.6_2, ruby-1.6.2.p2 trafshow-3.1_1 Full screen visualization of the network traffic Maintained by: jseger@FreeBSD.org vnc-3.3.3.2 Display X and Win32 desktops on remote X/Win32/Java displays Maintained by: bmah@freebsd.org Requires: XFree86-3.3.6_4 Category palm (http://www.freebsd.org/ports/palm.html) ================================================================== pilrc-2.6 Resource compiler for Pilot applications Maintained by: kuriyama@FreeBSD.org Requires: XFree86-3.3.6_4, gettext-0.10.35, glib-1.2.8, gtk-1.2.8 Category security (http://www.freebsd.org/ports/security.html) ================================================================== cyrus-sasl-1.5.24_3 RFC 2222 SASL (Simple Authentication and Security Layer) Maintained by: hetzels@westbend.net Requires: autoconf-2.13, automake-1.4, libtool-1.3.4_1, m4-1.4 heimdal-0.3c_1 A re-implementation of Kerberos V Maintained by: nectar@FreeBSD.ORG Also listed in: ipv6 Requires: XFree86-3.3.6_4 its4-1.1.1 Tool to scan C/C++ source for potential vulnerabilities Maintained by: jedgar@FreeBSD.org mhash-0.8.3 Library provides an easy way to access strong hashes such as MD5 and SHA1 Maintained by: roam@orbitel.bg Requires: libtool-1.3.4_1 nessus-libnasl-1.0.5 Nessus Attack Scripting Language Maintained by: anders@fix.no Requires: libtool-1.3.4_1, nessus-libraries-1.0.5 nessus-libraries-1.0.5 Libraries for Nessus, the security scanner Maintained by: anders@fix.no Requires: libtool-1.3.4_1 nessus-plugins-1.0.5 Plugins for Nessus, the security scanner Maintained by: anders@fix.no Requires: XFree86-3.3.6_4, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, lynx-2.8.3.1, nessus-1.0.5, nessus-libnasl-1.0.5, nessus-libraries-1.0.5, nmap-2.53 nessus-1.0.5 A security scanner: looks for vulnerabilities in a given network Maintained by: anders@fix.no Requires: XFree86-3.3.6_4, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, libtool-1.3.4_1, nessus-libnasl-1.0.5, nessus-libraries-1.0.5 saint-3.1 Security Administrator's Integrated Network Tool Maintained by: cj@vallcom.net Requires: nmap-2.53 Category sysutils (http://www.freebsd.org/ports/sysutils.html) ================================================================== idled-1.16_1 A daemon that logs out idle users and those users hogging resources Maintained by: andrew@ugh.net.au medusa-0.2.2 GNOME filesystem indexer Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.4, XFree86-3.3.6_4, bonobo-0.23, bzip2-1.0.1, esound-0.2.20, gconf-0.11, gdk-pixbuf-0.9.0, gettext-0.10.35, ghostscript-6.01, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2, gnomecore-1.2.3, gnomelibs-1.2.8_1, gnomeprint-0.24, gnomevfs-0.4, gtk-1.2.8, guile-1.4, iconv-1.1, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, oaf-0.6.0, png-1.0.8_1, popt-1.5, tiff-3.5.5, xpm-3.4k pib-1.2 GUI Ports Collection management tool Maintained by: msmith@freebsd.org Also listed in: tk82 Requires: XFree86-3.3.6_4, tcl-8.2.3, tk-8.2.3 webmin-0.82 Web-based interface for system administration for Unix Maintained by: andreas@FreeBSD.org Requires: p5-Net-SSLeay-1.05 Category textproc (http://www.freebsd.org/ports/textproc.html) ================================================================== docbook-1.2 Meta-port for the different versions of the DocBook DTD Maintained by: nik@freebsd.org Requires: docbook-241, docbook-3.0, docbook-3.1, docbook-4.0, docbook-4.1, iso8879-1986, mkcatalog-1.0 dsssl-docbook-modular-1.59 DSSSL stylesheets for the DocBook DTD by Norman Walsh Maintained by: kuriyama@FreeBSD.org Requires: docbook-3.0, iso8879-1986, mkcatalog-1.0, unzip-5.41 dtd-catalogs-1.2 SGML DTDs catalogs Maintained by: shige@FreeBSD.org Requires: docbook-1.2, docbook-241, docbook-3.0, docbook-3.1, docbook-4.0, docbook-4.1, html-4.01, iso12083-1993, iso8879-1986, linuxdoc-1.1, mkcatalog-1.0 expat-1.95.1_1 XML 1.0 parser written in C Maintained by: kuriyama@FreeBSD.org Requires: gettext-0.10.35, gmake-3.79.1, libtool-1.3.4_1 libxml2-2.2.7 Xml parser library for GNOME Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: gettext-0.10.35, gmake-3.79.1, iconv-1.1, libtool-1.3.4_1 ruby-xmlparser-0.6.1_1 Ruby module to access James Clark's XML Parser ToolKit ("expat") Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: expat-1.95.1_1, p5-XML-Parser-2.30, ruby-1.6.2.p2, ruby-amstd-1.9.5, ruby-optparse-0.7.5, ruby-racc-runtime-1.2.4, ruby-rdtool-0.6.6, ruby-strscan-0.5.8 Category www (http://www.freebsd.org/ports/www.html) ================================================================== aolserver-3.2 A multithreaded web server with embedded TCL interpreter Maintained by: mab@red-bean.com Requires: gettext-0.10.35, gmake-3.79.1 asp2php-gtk-0.75.1_1 Converts ASP scripts to PHP Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6_4, gettext-0.10.35, glib-1.2.8, gtk-1.2.8 bsdi-netscape-communicator-4.76 Mail and news agent, HTML editor, and Web browser for BSD/OS Maintained by: trevor@FreeBSD.org Requires: XFree86-3.3.6_4, netscape-remote-1.0, netscape-wrapper-2000.07.07 bsdi-netscape-navigator-4.76 Netscape Navigator with 128-bit encryption for BSDI BSD/OS Maintained by: trevor@FreeBSD.org Requires: XFree86-3.3.6_4, netscape-remote-1.0, netscape-wrapper-2000.07.07 galeon-0.8 A GNOME Web browser based on gecko (the Mozilla rendering engine) Maintained by: sobomax@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.4, XFree86-3.3.6_4, bzip2-1.0.1, esound-0.2.20, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2, gnomecore-1.2.3, gnomelibs-1.2.8_1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libglade-0.14, libungif-4.1.0b1, libxml-1.8.10, mozilla-M18, png-1.0.8_1, tiff-3.5.5, xpm-3.4k linux-netscape-communicator-4.76 Linux Netscape Communicator suite Maintained by: girgen@partitur.se Also listed in: linux Requires: XFree86-3.3.6_4, linux_base-6.1, netscape-remote-1.0, netscape-wrapper-2000.07.07 linux-netscape-navigator-4.76 Linux Netscape navigator web-surfboard Maintained by: girgen@partitur.se Also listed in: linux Requires: XFree86-3.3.6_4, linux_base-6.1, netscape-remote-1.0, netscape-wrapper-2000.07.07 mapedit-2.3_1 A WWW authoring tool to create clickable maps Maintained by: ports@FreeBSD.org Requires: javavmwrapper-1.1, jdk-1.1.8 mozilla+ipv6-M18 The mozilla ver 0.0 communicator web-surfboard Maintained by: sumikawa@FreeBSD.org Also listed in: ipv6 Requires: ORBit-0.5.4, XFree86-3.3.6_4, bzip2-1.0.1, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8 netscape-communicator-4.76 Netscape ver 4 communicator web-surfboard Maintained by: sada@FreeBSD.org Requires: XFree86-3.3.6_4, XFree86-aoutlibs-3.3.3, netscape-remote-1.0, netscape-wrapper-2000.07.07 netscape-navigator-4.76 Netscape ver 4.7 navigator web-surfboard Maintained by: sada@FreeBSD.org Requires: XFree86-3.3.6_4, XFree86-aoutlibs-3.3.3, netscape-remote-1.0, netscape-wrapper-2000.07.07 p5-HTML-Tagset-3.03 Some useful data table in parsing HTML. Maintained by: ports@FreeBSD.ORG Also listed in: perl5 thttpd-2.20b Tiny/turbo/throttling HTTP server Maintained by: anders@fix.no Also listed in: ipv6 wml-2.0.6 Website META Language, webdesign toolkit for HTML generation Maintained by: rse@engelschall.com Also listed in: lang zope-ptk-0.8.2_1 The Zope Portal Toolkit (PTK) Maintained by: nbm@FreeBSD.org Also listed in: zope Requires: zope-2.2.2_1 Category x11-servers (http://www.freebsd.org/ports/x11-servers.html) ================================================================== XFree86-Server-4.0.1_1 X11R6.4/XFree86-4.0 X server and related programs Maintained by: taguchi@tohoku.iij.ad.jp Requires: XFree86-3.3.6_4, XFree86-libraries-4.0.1_2, imake-4.0.1, wrapper-1.0 Category x11-toolkits (http://www.freebsd.org/ports/x11-toolkits.html) ================================================================== gtk-engines-collection-1.5 The "meta-port" for the collection of several GTK+ theme engines Maintained by: sobomax@FreeBSD.org Requires: WhistlerK-200010142358, XFree86-3.3.6_4, buffy-0.2, clean-theme-gtk-0.4, colorstep-200008190715, engradient-200008151005, gettext-0.10.35, glib-1.2.8, gnome-look-0.1.3, gtk-1.2.8, gtk-Mac2-theme-200003050858, gtk-flat-theme-200010301024, gtkbe-200007091019, gtkstep-2.2, gtkstep-pastel-200007290343, icegradient-200008051620, thinice-1.0.3, xenophilia-0.4 gtkstep-2.2 A theme module to make GTK+ look like the NeXTSTEP(tm) interface Maintained by: sobomax@FreeBSD.org Requires: XFree86-3.3.6_4, bzip2-1.0.1, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, libtool-1.3.4_1 p5-Gtk-0.7004 The base module of Gtk-Perl Maintained by: vanilla@FreeBSD.org Also listed in: lang perl5 Requires: XFree86-3.3.6_4, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5 ruby-tk-1.6.2.p2 Ruby interface to the Tk widget set Maintained by: knu@FreeBSD.org Also listed in: ruby tk82 Requires: XFree86-3.3.6_4, ruby-1.6.2.p2, ruby-tcltklib-1.6.2.p2, tcl-8.2.3, tk-8.2.3 Category x11-wm (http://www.freebsd.org/ports/x11-wm.html) ================================================================== amaterus-0.33.2 A GTK+ window manager Maintained by: nakai@FreeBSD.org Requires: XFree86-3.3.6_4, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, libxml-1.8.10 fvwm-2.3.20 Popular virtual window manager for X Maintained by: Cy.Schubert@uumail.gov.bc.ca Requires: XFree86-3.3.6_4, gettext-0.10.35, gmake-3.79.1, xpm-3.4k icewm-i18n-1.0.4_1 Window Manager designed for speed, usability and consistency Maintained by: yatt@msc.biglobe.ne.jp Requires: XFree86-3.3.6_4, gettext-0.10.35, gmake-3.79.1, xpm-3.4k lwm-1.00_1 A lightweight window manager Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6_4 xfce-3.5.2 CDE like desktop with GTK Maintained by: nakai@FreeBSD.org Requires: XFree86-3.3.6_4, esound-0.2.20, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5, xpm-3.4k Category x11 (http://www.freebsd.org/ports/x11.html) ================================================================== XFree86-libraries-4.0.1_2 X11R6.4/XFree86-4.0 include/(shared) library kit Maintained by: taguchi@tohoku.iij.ad.jp Requires: imake-4.0.1 XFree86-4.0.1_5 X11R6.4/XFree86 core distribution Maintained by: jmz@FreeBSD.org XFree86-3.3.6_4 X11R6.3/XFree86 core distribution Maintained by: jmz@FreeBSD.org gnomelibs-1.2.8_1 Libraries for GNOME, a GNU desktop environment Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.4, XFree86-3.3.6_4, esound-0.2.20, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5, xpm-3.4k xmangekyou-2.0.1 A kaleidoscope on X Maintained by: sakai@seki.ee.kagu.sut.ac.jp Requires: XFree86-3.3.6_4, xpm-3.4k _________________________________________________________________ © 1996-2000 by Wolfram Schneider. All rights reserved. Please direct questions about this service to www@FreeBSD.org General questions about FreeBSD ports should be sent to ports@FreeBSD.org Last database update: 2000-11-04 10:30:38 UTC; based on revision 1.308 _________________________________________________________________ This information was produced by http://www.freebsd.org/cgi/ports.cgi -----BEGIN PGP SIGNATURE----- Version: 2.6.3ia Charset: noconv iQCVAwUBOg2CWzmN/mkrcYGtAQE23QP/Q2uuMVUdFHp5Xw8/KpPPzag7rKreUkX2 RkFeBbruS4HRlxUGY1C+xfn8r0/tMPJ8PA0TWo8A/ABnkpwnC8c3iYEUxKTBYxr2 Bhzq4QGsFA8x8T0GixZXIKyx9N3r7sWyfz8ic3+21Q/RhRXfwSJLNwDj9abfJySE k8md0cdM0lw= =ttkY -----END PGP SIGNATURE----- -- Wolfram Schneider http://wolfram.schneider.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Nov 11 9:51: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ady.warpnet.ro (ns2.warpnet.ro [194.153.243.1]) by hub.freebsd.org (Postfix) with ESMTP id C757B37B4C5 for ; Sat, 11 Nov 2000 09:51:00 -0800 (PST) Received: from localhost (ady@localhost) by ady.warpnet.ro (8.9.3/8.9.3) with ESMTP id TAA10749; Sat, 11 Nov 2000 19:53:33 +0200 (EET) (envelope-from ady@freebsd.ady.ro) Date: Sat, 11 Nov 2000 19:53:33 +0200 (EET) From: Adrian Penisoara X-Sender: ady@ady.warpnet.ro To: Igor Roshchin Cc: ports@freebsd.org Subject: Re: pine4 port rewrites /usr/local/etc/pine.conf In-Reply-To: <200010311544.KAA52666@giganda.komkon.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, Excerpt from mail/pine4/Makefile: ${PREFIX}/bin/pine -P ${PREFIX}/etc/pine.conf -conf >${WRKSRC}/pine.conf ${INSTALL_DATA} ${WRKSRC}/pine.conf ${PREFIX}/etc/pine.conf That means that when recreating the pine.conf file it will use the previous defaults ! This has been done in order that ${PREFIX}/etc/pine.conf will be "upgraded" tot the latest syntax that the pine port is using. Does this solve your problem ? Ady (@freebsd.ady.ro) On Tue, 31 Oct 2000, Igor Roshchin wrote: > > Hello! > > One more question about pine4 port: > > When I compiled and installed pine4 ports from sources > it rewrote the system-wide /usr/local/etc/pine.conf without any > warning. > Usually, other ports/packages (e.g. wu-ftpd, apache, ..) > just copy file.conf.example or file.conf.default into the target > directory without overwriting the existing conf file. > > Somebody might suggest to use /usr/local/etc/pine.conf.fixed > which is not rewritten by the installation script. > It's possible, but the options which are in pine.conf.fixed > can not be overwritten by the users, while I'd like to have some > default options in /usr/local/etc/pine.conf that an experienced > user may reconfigure for himself. > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Nov 11 11: 9:27 2000 Delivered-To: freebsd-ports@freebsd.org Received: from doar.rfc-holdings.com (doar.RFC-Holdings.com [209.31.235.211]) by hub.freebsd.org (Postfix) with SMTP id BCB3F37B479 for ; Sat, 11 Nov 2000 11:09:25 -0800 (PST) Received: (qmail 54877 invoked from network); 11 Nov 2000 19:12:45 -0000 Received: from tzippori.rfc-holdings.com (HELO tzippori) (209.31.235.221) by doar.rfc-holdings.com with SMTP; 11 Nov 2000 19:12:45 -0000 Message-ID: <017901c04c17$55c49800$ddeb1fd1@rfcholdings.com> From: "Carmi Weinzweig" To: Cc: Subject: FreeBSD Port: plan-1.8.2 Date: Sat, 11 Nov 2000 11:41:03 -0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0176_01C04BD4.45A0A600" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_0176_01C04BD4.45A0A600 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hello. Thanks for the work you have done on Plan 1.8.2. Do you have any = plans to port 1.8.4 to FreeBSD? Thanks in advance. /carmi ------=_NextPart_000_0176_01C04BD4.45A0A600 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable

Hello. Thanks for the work you have = done on Plan=20 1.8.2. Do you have any plans to port 1.8.4 to FreeBSD? Thanks in=20 advance.
 
/carmi
 
------=_NextPart_000_0176_01C04BD4.45A0A600-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Nov 11 11:30: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9FF1737B4CF for ; Sat, 11 Nov 2000 11:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA09400; Sat, 11 Nov 2000 11:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from aquarius.aquezada.com (cr289522-a.ym1.on.wave.home.com [24.42.25.74]) by hub.freebsd.org (Postfix) with ESMTP id A0ED037B479 for ; Sat, 11 Nov 2000 11:24:23 -0800 (PST) Received: by aquarius.aquezada.com (Postfix, from userid 1001) id B1126B4F3; Sat, 11 Nov 2000 14:24:20 -0500 (EST) Message-Id: <20001111192420.B1126B4F3@aquarius.aquezada.com> Date: Sat, 11 Nov 2000 14:24:20 -0500 (EST) From: jdunn@aquezada.com Reply-To: jdunn@aquezada.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22772: audio/cd-console port minor fixes Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22772 >Category: ports >Synopsis: audio/cd-console port minor fixes >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Nov 11 11:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Julian C. Dunn >Release: FreeBSD 3.5-STABLE i386 >Organization: Aquezada Productions >Environment: >Description: Fix setting of $(CFLAGS) and $(CC) variables in Makefile. Updated package source location on FTP server. >How-To-Repeat: >Fix: diff -Nur cd-console.old/Makefile cd-console/Makefile --- cd-console.old/Makefile Sat Apr 15 03:57:43 2000 +++ cd-console/Makefile Sat Nov 11 14:18:36 2000 @@ -9,7 +9,7 @@ PORTVERSION= 2.3 CATEGORIES= audio MASTER_SITES= http://www.cs.helsinki.fi/~salerma/cd-console/ \ - ftp://ftp.aquezada.com/pub/cd-console/ + ftp://ftp.aquezada.com/pub/distrib/cd-console/ MAINTAINER= jdunn@aquezada.com diff -Nur cd-console.old/files/patch-aa cd-console/files/patch-aa --- cd-console.old/files/patch-aa Sat Dec 25 10:32:35 1999 +++ cd-console/files/patch-aa Sat Nov 11 14:20:12 2000 @@ -1,6 +1,6 @@ ---- Makefile.orig Sun Nov 28 20:08:56 1999 -+++ Makefile Sun Nov 28 20:14:20 1999 -@@ -5,17 +5,17 @@ +--- Makefile.orig Sun Nov 28 20:08:56 1999 ++++ Makefile Sat Nov 11 14:14:53 2000 +@@ -5,24 +5,24 @@ # very welcome). # for linux @@ -24,6 +24,15 @@ OBJS=cd-console.o cd.o $(EXTRA_OBJS) LIBS = -lncurses + # common +-CFLAGS=-O2 -Wall $(DEFS) ++CFLAGS+= $(DEFS) + #CFLAGS=-g -Wall $(DEFS) +-CC = gcc ++#CC = gcc + + all: + make cd-console @@ -38,10 +38,13 @@ $(CC) -c cd_ll_linux.cpp $(CFLAGS) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Nov 11 12:10:12 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AA5EC37B4C5 for ; Sat, 11 Nov 2000 12:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA14497; Sat, 11 Nov 2000 12:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from smtp8.xs4all.nl (smtp8.xs4all.nl [194.109.127.134]) by hub.freebsd.org (Postfix) with ESMTP id 0EF3E37B479 for ; Sat, 11 Nov 2000 12:08:18 -0800 (PST) Received: from bmach.nederware.nl (nederware.nl [194.109.55.62]) by smtp8.xs4all.nl (8.9.3/8.9.3) with ESMTP id VAA04886 for ; Sat, 11 Nov 2000 21:08:13 +0100 (CET) Received: (from root@localhost) by bmach.nederware.nl (8.11.1/8.9.3) id eABK1NH37884; Sat, 11 Nov 2000 21:01:23 +0100 (CET) (envelope-from berend) Message-Id: <200011112001.eABK1NH37884@bmach.nederware.nl> Date: Sat, 11 Nov 2000 21:01:23 +0100 (CET) From: Berend.de.Boer@nederware.nl Reply-To: berend@pobox.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22773: Updated SmallEiffel port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22773 >Category: ports >Synopsis: Port of GNU Eiffel compiler SmallEiffel >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Nov 11 12:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: User & >Release: FreeBSD 4.2-BETA i386 >Organization: NederWare >Environment: >Description: Update of SmallEiffel port from version -0.77 to -0.76. >How-To-Repeat: >Fix: begin 644 se.shar.tgz M'XL(`"VE#3H``[Q=>W/C-I+/O^M/P))5/T,]E-KZ&/;M3F[4M_KK1Z&XTN@$0*N6@G(OBBW_E M/W]G9W]WU_O"T_]VGOST@]%H-_"\@]%.`+_Z!SY\MK._L_^%M_,OE:KY5Y>5 M*#SOBT*I"L/=SZ5,_QT"_7O_?>5]G">E!_\37CF7:>J)(IHG=W+@>6-Q)[VD M\I(,'DZ35'[O%7*AX$.1/5;S))MY$SE5A=SZRJLTES3)`".R&/Z4F5=GN8AN M-8?)HR>S2A::Y,MR;IA]"2U-EWT M(I55(LG*'_2COPSKLACFJJC*82JRV;!SH^^<#`G5V./QZ?GS.0%Z?C\?'[4P;R^OQL3,EX(6ZE MU@V80$9SY47>MH=98G$+?N!MYQC(^\D;QO)NF-7@):.?_L-GL6[,R&G`0GN: M>>`T8SRA!-_]MAS^W\UP^*WW$XO&^^M?O6]/+]]NJ^DVB^#;K9N+MWO>?Y9R M>V=PL#^H9O_\+^]OWJ&(]B)?'D1'_D@<'NWMCV0@_2,1Q=/@:#>:;KFTP5.O M]FR6<@'X0M5VAP9?N1TJKGH[)*#@CW/IO;_\%>+)(@>=%!X$11T"/37Y$T+6 MMHY9$/YB3_.IQ4QZI]:9W5KBZ\`.>C<-&!J7_AL"Z/U8?VX[Y+6::/X\:15B MYI=I(4$ENA83:M[49.%H_>5)35]U;LID.MI(.MFZV;AL&=2%(Q2:6QNK"4 M]TDLO0*T)K7<>2HJ>+@HH=$,N$;5]^MJ*^>J3F.OJ#-/97IV79(8IO?S))K# MQ][QY?C,.P$'N+X:G]UT%&=:ADP&.E?$WB^_77CR`719&CFU4:*Z*,`'5QH& M%<#$'J5U;*;7MH.5`OXMV^]7#[9NX,DOT%?0:R4C%!QN:^?GF3A2)JL&<8)S"(,OO05W57%L+8H-U#="4IT7O*FD* MR4%=6&F3+%-WT!A,XM`?2!IFC_#9G4KO=(IQ/U=@CO*QK.1"FU.DCR58JE%C MFJK[LI&^E=?D$M-*9L;FQN^@%9!HZP:4!%F/[ENZ1J3]L1!QHO\0*\]H)?_] M]]]_\.95E?\P[(Z<00K!0`RFQ3`!_WX8S*M%JN';WAL)!@(%3(=KYW"Q(-E4N8:$@@4"13[W^\+V^^'GT)$]"7-^##'[>;IU]Z M__NC21JW;OZ29M[VM/2^^>;ZP^F[LYMOOAE^[7?_ZOC$CULWT\3C:JCM,EM' M;:;CIJ.&RD5'#G M=5X)P]4(*[.[I%"9'D6>#@"FA2==A90]T"# M4IH6KS+IW8M'+7BL;#V2:!80"6%(*(UT7!?]MR M(:)RH.`#0T)0T3`2I0RAGH5L*-%S8ZCG M^FR&JDK3S:6`7&M0/50$T/(+=6(B*I@F4%@D]&>`P>;6MS`C\DN8.)VF;@])FZ?B3M@ MXKCJ.V+B_!TNT.<"N2;QN3;QN4;QN5;QN6;QN7;QN8;QN989<2TSXEIFQ+7, MB&N9$=+?I`J109SJ#GZ517'D7/0U.KZ6;#*!5E MV8/J"]*6@R[ZZ*YMZKV>YX'W_5#G;`645<.3Y:]A+!=JH.I-[6ZB$W$,Q6(9 MJJFE[,LKGM+A:0TN';>-)5591!O=@.C0"\F<-/C+;Q?PA]!K(SZS8QV2D3N) M_Q+11GR/^.Z[EFB7:R@@>:?4QBE_,_J-*!S149Z[BA\XB.]HP0X)UX*MDK@= M88RO)M7G=7<=3'1T'4QT<2+*)`JK9"&9W)\3[+D2.(M$:.'\)41VR/&9 M/7Z")J2/9)2D+?9H&(50CL_P0/:41/\Y*%U::7YQD@QB2HZ'E:>-)!"4JWHZ M=6AFY-Z;D;O.1B]0P,A5`8%[5P+WK@0OZ$K@VI5==[F`1%0.,NVZ:VMW*+($ MH$ZMQ&ISZ=^'=]?N+EN[>LK61RQ8$4*#3]OP]J>X$WS^1'1[QM]WY$^$VV?\ M=QWXG[9!E$?21FAW;_+=?=Q_@7?XKF-OW[TK^^Y=V7]!5_9=NW+@+M>!>^\/ M7M"5`]>N'+IWY="]*X"Q2PQ^X*(^O. M17&K*5:8\H]K'J691/-0;_[.>?8(U8"7+*H1? M<*2K0;)Z,9'%B\"$T=;!A*WF(E.)_7\.L%+WE,H2**8%*(+9M:=PHG-+>/M+ MJ/=+0[-SFQ$CYSFMRIJ]NW!FSNW`9V[2$MHM\T**.$S2-)-E2<2`QT(L$BJV M61"A)+M2*HJ9.?A"M*M/UJKP7A4IT?8TF:A,1!'A*+=9,ILCEI`V[(=ZLQM# MZ>#9G*L)D=`AAVT_PTPL4(YF:9C-"?';)TC$&H`L2UF84UT<4)@F)2YB628S M;<@F52/.7!2F=XE1^7JV!2#R8=Y78P3]FJ2W&_%_K`,#E7=OCQS-;(F2DNVPR?4&() M-BC,F=QP5JB::UPL"Y5V>QT%Y)H/LN7[I+%0IB4Z`*R^F?PH*\^B$&J).&7X M3<,0KSGDL,T2=2[FXA1ZZPD5M6L_>DJT3!\(XZD%E;R9ST/[@.FR&"P3]KP= MDZO-:,))#4]PK>N3=JDMG*`$I_3^!`X)-#?Y/T25H-_+T_8!2]4E;7Z3JNK, M$4W:#0JR4/!32<^:>:&BD$S@3-$#W:8]U""I:4X6!8QJ9) M[H##\_CF+`G$OBK)B,Q'1K>\V:IMGA;43H&4F"L4:9LF[),,$\[\9+PL4X1> M5"Q#5CW7#'0\(=/<&--V.Q,2'6V:3#)]0MVLQ("AP^:%'ER/L7R@1\+::3,* MJ=^?8@U]-)0W72+:Z\:G`\9<#.-OAN514N_I'-S,&6%;?RWN9]H!@>A4?NV%"H?)$D%'M9D>*>P[26-N">63-3XUD' M25Z);I"..+R864.B_5F(+)GJ,QMD7*7&TY(3(X:)&3D\G[`CIY&%A'J:CG=V M%G$KTSDU^BIYY50J31L.:P`="@[?K]DK:HUL%PDZ!Q:R#M90-K!.P/!L*O9I=9O M9./CL%KDY-CN+@BA*NX"T3#6!:)K(ET@HK M=.HN8:#K6P4H!%@$GI*C7!N%453;&9A>%K'I!V=-Q"#I!1$#8ZQ@&)RY5(2! MHU97=/Y.EK!+$.ZH*QCJI@9&#?#[(C$.XK20K<\UZ(N3;F'*A$_0C.@9R5U2 M5#6NK&FA_BFS=C*FNC!),E$\FE-KV@SXKI#*=*32625C@V8]7R&S@JX@6J^\ M!9"2(TFC"I$F@CC5E!C-LV37Q4@2:=?-Z03A-B=V:U7G-9K+"-_WM@(JYH:;=R#-' M*Z)'1HS0;9Y M[8T9RD)]+0=YHLILIF^B9F&A<(?L%8^6+;94>K&ON4@<=RLQA6ST$UJA M:SOU[.WJ*TZA7#1WQUAOF=7)QA>:N\C.V-AT$5(7.M,'6B8 M@,%,43]0H,7^87\H:##S?#LG9;\0$22%JIQ?7Y]0V#?R:AP^'&Z^H_*)<-MB MDV";.YWZ[\],-Q"R]O)J4:T\U"87R_UUTUL3"&:FQ#, M,W(OI@$OEU:9^+:0G6HBK*QL\*E^$8/+W((S.6LW\!VH[#XTG\K^X*'8O6W@ M^*+(4\V3S#=>Y(!5*AL)&$L!&^DZJY-Z>ZR_7Q3UK7QT).84!)N5@R^0;*1Q MJ4*>,=BQLC%=/4?X."^6S4+P6]UBH0Q:*HPE_ MA]/'$1/%T<2(I?O1SBX+Q='7:(>CKX!E[<`/&*A=EB9V69K8Y;7H[W-0HP,. M*N!H8H_E]WLLZ?=8TN^QI-_C27_$&1V'K#X>LOIXR.KC(:N/AZP^'K%&[1%K M#!V1^GH3;;J@O8NX(!'')$+EX:=:5=14$*4L&))3=E`_7UW]8SP8_TS`]&D^ M2OHTIOMG#N93@IM]<@)T8K>G"=1O*J&$LE-FOS/95]U(G^O`L&FG`\/FG358 M?R!=@_7/*1U8P<0&)#!X:%D`9&>6$E'T;#0F[Z;H0.`!M_!D`-XR4(,[4! M_5I.B;9^;4Z]$ZB-W^G0!51BAB-8NK/I4'^07JF'ZKD%];N1`1V?GIP3MB(1 ME.LL05BJT0'U#Y`E"!N32Q`V(CL@1G/8:%R"L"3#@,CYP*#(Z<#:#1]!/F<$ M^9P1Y)-NFZ![?HO!,Q6?5 M/3ZK[FE1'$U0=8]/CHHNBJ,OJN[Q675/B\)S7)]5]_AD-.J@>"T26;7/JGM\ M5MWCL^J>%L61GJI[?%;=X[/J'I]5]_BLNJ=%/SZAZ?5_?0TT]WQD!GLH#*2P,J+PTXLVK`DX7*2P-6 M7AI0>6E`YJ4!)R\-.'EIP,E+6Q":4`5D7AJ0>6G`R4L#3EX:D#/!$D3DI0$G M+VU!A(88*6?`2CD#5LH)"B<]]IA$4&6^]4=\P<`*0[G],0707WS%J*XU9NRP_/;#U=G6?/IQLV* M#40GE^I\>C6L]$O(LYZ#>/UDYB2E(XV3>&\OY;@J7D33>X9XD^K$Z;BZ=6NF MH7%2P;EX03/NK=R^&[N;U%*YR69('&7[99O@%;8)/I-M@L]DF^`SVV;WU;;9?95M=E]AF]W/ M9)O=SV2;W<]L&__5MO%?H5W_,VG7?Y5_^)_)-OYGLTVP-N$$K^/Q*N+NNRV? M0PQ7"P6O,W#P&A\-UH;(J[KOOUZ1HS5I1J_C\3)MCEZCS=$&39"]^/CS\>4_ MQ@.];MD'.;LS\<>K#W^@RFDQB#B75Q_#/TX_AF<7U^>G%Z>7 M'T_?HBPWX1'V=$2FYIYM&M'?F%GL0S5H`/T,FOM! M$0Y/^M//ZND7,"$\FU81)9HOUUL_JT[8!$=&U6,:1?I5YSGA.5&HOQ\!0SP1AVZM'V$N1F5(@W&P\0;W M9'VC39^&3ZZN_SB[?+_AR9(W\DP^;)KMED^19YM>BNJ?I"_$K=3OW6]X]/[R MU_#\[.3T<@R$?X^3HEAXST#Z!07[-9_]&',-8#(9RGA"@X`A#=)6B55$`OL! MDR0+$7IXC/>YU%_'V8[XX8D+^)??+IQX?_>=`YP!ID66`]^ROK(E6#D2A"X$NRR"7B67&/NNQ+LNQ(N'QQ MG$$QBV(&RH6C?9N.`33?Z,S`M:]TT5`"00W1"E%%YT5M'&3?VT4QN!@<_=$J M61W-08)!V3E83J'TH5<&!AF[G<.J'+E)3GI#GL#T/^[?DG>BL=OD3B1VQ]M- M,K-[[4CB3*'WAYT5]E8Z*LQ57[9?W0@^N.&OS]W,<7WAQ)^/ M?;9I]G)29/B16PXO)T4"0S_I2VB"5R@H>(6L+U+KZ!4-\GN(`Y&GHM\"\*#. M]"7>'CP\[.R8$Z-:J?/4C`<&^>WP^GXT3HDL)_B>>G=1%U(>]2/_IZ?H>U%ZB M`L?'L/<"BQ;R>ZJW"UUZ#UP.EGZ'\8)Q&,X,)=]AU#CMQQ3X,^2H;RB(2[04 MUUNH5J'RQ:B6C?)GJ!,7*OR&V%VXO`W'7%#!#02=^"?3,;B_=]0T:I0+9?+>OF37CF$2M4X*!L'AS!!T_LS(`]3*'!:U3OO MV6[7ZA!3R7&EQ1?$=IJ]KJFD`UVW7-+HV4WBF`IK7/4ZEN,2^\IINJQL&$\- M7<=W;13.@KXV1-_>X?DN^\)2T01T%-[D`T/OC?R`1KKJG>+("R.H""OBN;95 M=Z^<[V>>J6CQS1]F;<=J=EU\$=M\PD^J=VFW'+MN*DIACH>G33M9B42/>YJ" MN)2`GQ#?!A'DML@.02U.<&Z3LZ:7Z'C4:C#KDDR?Y^2%_E(/XA"9,F+^'+8\ MZRY$(00Q8%O3,(J"`88-JE#<\H\>(N93>(:_*0:34ZQ'&L!C%S?A9%O%K\*9*O%D6IJ2Q4@3W)#^YQEO0G$-&8 M^R]Z'`_"47`-[/]26)M3PL?]:Y:<'69TA.ZC2R]KJN>')3$"ANHI)^^"(<0T MBJ%$H3!?.#&!(\8S@1\H`PB4>BODVO^2PYZ0^K=>`CM+V_.B`0N'%>MWCM84 MPQGX(8U@$L9`'UA"#'!7@@_N`XQ)?I,?Z^L&0:[S^;%^.N:TA3HV%4/E*.OM M,%@>%^9V)\GW(ZU:B!3F[6X"I6&$(GQ>K,B^WW2Q$!)^2]E+LV%6<[36>JL-Z-Z6C"Y'MWYN)%@V=SX=?KQK]I+-CG9KH5- @255](R$A(2$A(2$A(2$A(2$A(2'Q>OP%D?FR*`#(``#X ` end >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Nov 11 12:20:48 2000 Delivered-To: freebsd-ports@freebsd.org Received: from research.isber.ucsb.edu (research.isber.ucsb.edu [128.111.147.5]) by hub.freebsd.org (Postfix) with ESMTP id D69D237B479 for ; Sat, 11 Nov 2000 12:20:46 -0800 (PST) Received: from randall-home.isber.ucsb.edu ([24.21.81.60] helo=isber.ucsb.edu) by research.isber.ucsb.edu with esmtp (Exim 3.16 #6) id 13uh8c-0002pa-00; Sat, 11 Nov 2000 12:20:34 -0800 Message-ID: <3A0DA985.90FB8435@isber.ucsb.edu> Date: Sat, 11 Nov 2000 12:18:13 -0800 From: randall ehren Reply-To: randall@isber.ucsb.edu Organization: isber.ucsb.edu X-Mailer: Mozilla 4.75 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: hetzels@westbend.net Cc: ports@FreeBSD.org Subject: FreeBSD Port: cyrus-sasl-1.5.24_3 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org hi, i made a modification to the mysql patch for this port such that it does not log the passwords in cleartext. i have two version, one which uses the mysql PASSWORD encrypt, and another which uses the mysql ENCRYPT encryption such that you can simply migrate your /etc/master.passwd file into your mysql db and your users never have to notice.... i can send you diff files, or just the two version of checkpw.c that i have. or i can explain further what i have done with my modifications... just let me know what i can do. -randall ehren system administrator - isber.ucsb.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Nov 11 13:40: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 298D337B4C5 for ; Sat, 11 Nov 2000 13:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA23922; Sat, 11 Nov 2000 13:40:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from cielo.eece.unm.edu (cielo.eece.unm.edu [129.24.24.11]) by hub.freebsd.org (Postfix) with ESMTP id 028C037B479 for ; Sat, 11 Nov 2000 13:32:10 -0800 (PST) Received: from jalapeno.eece.unm.edu ([129.24.24.88] helo=eece.unm.edu) by cielo.eece.unm.edu with esmtp (Exim 3.12 #4) id 13uiFt-0003QO-00 for FreeBSD-gnats-submit@freebsd.org; Sat, 11 Nov 2000 14:32:09 -0700 Received: (from dbader@localhost) by eece.unm.edu (8.9.3+Sun/8.9.1) id OAA19783; Sat, 11 Nov 2000 14:32:07 -0700 (MST) Message-Id: <200011112132.OAA19783@eece.unm.edu> Date: Sat, 11 Nov 2000 14:32:07 -0700 (MST) From: "David A. Bader" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22774: ports net/mpich update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22774 >Category: ports >Synopsis: ports net/mpich Makefile update >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Nov 11 13:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: David A. Bader >Release: FreeBSD 4.1-RELEASE i386 >Organization: The University of New Mexico >Environment: >Description: new Makefile patches >How-To-Repeat: >Fix: --- net/mpich.old/Makefile Sat Sep 30 08:41:46 2000 +++ net/mpich/Makefile Sat Nov 11 12:13:38 2000 @@ -12,7 +12,7 @@ MASTER_SITES= ftp://ftp.mcs.anl.gov/pub/mpi/ PATCH_SITES= ftp://ftp.mcs.anl.gov/pub/mpi/patch/1.2.1/ -PATCHFILES= 5487 5524 +PATCHFILES= 5487 5524 5542 5543 5594 5613 MAINTAINER= dbader@eece.unm.edu -- David A. Bader, Ph.D. Office: 505-277-6724 Dept of Electrical and Computer Engineering FAX: 505-277-1439 EECE Building University of New Mexico dbader@eece.unm.edu Albuquerque, NM 87131 http://www.eece.unm.edu/~dbader >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Nov 11 14:10:23 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CCB0137B4CF for ; Sat, 11 Nov 2000 14:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA28350; Sat, 11 Nov 2000 14:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from www1.ropnet.ru (www1.ropnet.ru [212.42.37.130]) by hub.freebsd.org (Postfix) with ESMTP id B4C5C37B479 for ; Sat, 11 Nov 2000 14:03:33 -0800 (PST) Received: (from root@localhost) by www1.ropnet.ru (8.11.0/8.11.0) id eABM3Ra93032; Sun, 12 Nov 2000 01:03:27 +0300 (MSK) Message-Id: <200011112203.eABM3Ra93032@www1.ropnet.ru> Date: Sun, 12 Nov 2000 01:03:27 +0300 (MSK) From: andrew@chg.ru Reply-To: andrew@chg.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22775: Update port russian/apache13-modssl Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22775 >Category: ports >Synopsis: Update port russian/apache13-modssl >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Nov 11 14:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Andrew L. Neporada >Release: FreeBSD 4.1-RELEASE i386 >Organization: >Environment: >Description: Update port russian/apache13-modssl : apache version 1.3.12 -> 1.3.14 mod_ssl version 2.6.6 -> 2.7.1 rus.apache PL29.7 -> PL30.0 Removed files : patch-ac >How-To-Repeat: >Fix: diff -ruN apache13-modssl.orig/Makefile apache13-modssl/Makefile --- apache13-modssl.orig/Makefile Fri Sep 22 05:58:59 2000 +++ apache13-modssl/Makefile Fri Nov 3 00:31:46 2000 @@ -33,9 +33,9 @@ .include -VERSION_APACHE= 1.3.12 -VERSION_MODSSL= 2.6.6 -RA_VERSION= 29.7 +VERSION_APACHE= 1.3.14 +VERSION_MODSSL= 2.7.1 +RA_VERSION= 30.0 USE_PERL5= yes HAS_CONFIGURE= yes diff -ruN apache13-modssl.orig/distinfo apache13-modssl/distinfo --- apache13-modssl.orig/distinfo Sat Sep 16 17:12:36 2000 +++ apache13-modssl/distinfo Fri Nov 3 00:40:49 2000 @@ -1,2 +1,2 @@ -MD5 (apache_1.3.12rusPL29.7.tar.gz) = 170c951be96e88e5e05fbc0ed4452ff7 -MD5 (mod_ssl-2.6.6-1.3.12.tar.gz) = 573b4d89c1f203216a55fb5c2aece009 +MD5 (apache_1.3.14rusPL30.0.tar.gz) = d72dd594773d1030499c87c0b4e1aa49 +MD5 (mod_ssl-2.7.1-1.3.14.tar.gz) = 99e05bd4ab7bd5c72fbb70bd8cfbf283 diff -ruN apache13-modssl.orig/files/patch-ac apache13-modssl/files/patch-ac --- apache13-modssl.orig/files/patch-ac Mon Jul 17 00:09:51 2000 +++ apache13-modssl/files/patch-ac Thu Jan 1 03:00:00 1970 @@ -1,11 +0,0 @@ ---- src/Configure.bak Sun Feb 6 04:27:19 2000 -+++ src/Configure Sun Mar 19 21:51:00 2000 -@@ -1043,7 +1043,7 @@ - LDFLAGS_SHLIB_EXPORT="" - SHLIB_SUFFIX_DEPTH=2 - ;; -- *-freebsd3*|*-freebsd4*) -+ *-freebsd[3-9]*) - LD_SHLIB="gcc" - CFLAGS_SHLIB="-fpic" - LDFLAGS_SHLIB="-shared" diff -ruN apache13-modssl.orig/pkg-plist apache13-modssl/pkg-plist --- apache13-modssl.orig/pkg-plist Wed Jul 19 14:02:25 2000 +++ apache13-modssl/pkg-plist Mon Nov 6 08:08:54 2000 @@ -16,27 +16,99 @@ @unexec if cmp -s %D/etc/apache/srm.conf %D/etc/apache/srm.conf.default; then rm -f %D/etc/apache/srm.conf; fi etc/apache/srm.conf.default @exec [ ! -f %B/srm.conf ] && cp %B/%f %B/srm.conf -etc/apache/ssl.crt/README.CRT +etc/apache/ssl.crl/Makefile +etc/apache/ssl.crl/README.CRL etc/apache/ssl.crt/Makefile +etc/apache/ssl.crt/README.CRT etc/apache/ssl.crt/ca-bundle.crt -etc/apache/ssl.crt/snakeoil-ca-rsa.crt +etc/apache/ssl.crt/server.crt etc/apache/ssl.crt/snakeoil-ca-dsa.crt -etc/apache/ssl.crt/snakeoil-rsa.crt +etc/apache/ssl.crt/snakeoil-ca-rsa.crt etc/apache/ssl.crt/snakeoil-dsa.crt -etc/apache/ssl.crt/server.crt -etc/apache/ssl.crl/README.CRL -etc/apache/ssl.crl/Makefile +etc/apache/ssl.crt/snakeoil-rsa.crt etc/apache/ssl.csr/README.CSR etc/apache/ssl.csr/server.csr -etc/apache/ssl.prm/README.PRM -etc/apache/ssl.prm/snakeoil-ca-dsa.prm -etc/apache/ssl.prm/snakeoil-dsa.prm etc/apache/ssl.key/README.KEY -etc/apache/ssl.key/snakeoil-ca-rsa.key +etc/apache/ssl.key/server.key etc/apache/ssl.key/snakeoil-ca-dsa.key -etc/apache/ssl.key/snakeoil-rsa.key +etc/apache/ssl.key/snakeoil-ca-rsa.key etc/apache/ssl.key/snakeoil-dsa.key -etc/apache/ssl.key/server.key +etc/apache/ssl.key/snakeoil-rsa.key +etc/apache/ssl.prm/README.PRM +etc/apache/ssl.prm/snakeoil-ca-dsa.prm +etc/apache/ssl.prm/snakeoil-dsa.prm +etc/apache/tables/cyrillic/dos-dos.tab +etc/apache/tables/cyrillic/dos-iso.tab +etc/apache/tables/cyrillic/dos-koi.tab +etc/apache/tables/cyrillic/dos-koiu.tab +etc/apache/tables/cyrillic/dos-mac.tab +etc/apache/tables/cyrillic/dos-macu.tab +etc/apache/tables/cyrillic/dos-utf7.tab +etc/apache/tables/cyrillic/dos-utf8.tab +etc/apache/tables/cyrillic/dos-win.tab +etc/apache/tables/cyrillic/iso-dos.tab +etc/apache/tables/cyrillic/iso-iso.tab +etc/apache/tables/cyrillic/iso-koi.tab +etc/apache/tables/cyrillic/iso-koiu.tab +etc/apache/tables/cyrillic/iso-mac.tab +etc/apache/tables/cyrillic/iso-macu.tab +etc/apache/tables/cyrillic/iso-utf7.tab +etc/apache/tables/cyrillic/iso-utf8.tab +etc/apache/tables/cyrillic/iso-win.tab +etc/apache/tables/cyrillic/koi-dos.tab +etc/apache/tables/cyrillic/koi-iso.tab +etc/apache/tables/cyrillic/koi-koi.tab +etc/apache/tables/cyrillic/koi-koiu.tab +etc/apache/tables/cyrillic/koi-mac.tab +etc/apache/tables/cyrillic/koi-macu.tab +etc/apache/tables/cyrillic/koi-utf7.tab +etc/apache/tables/cyrillic/koi-utf8.tab +etc/apache/tables/cyrillic/koi-win.tab +etc/apache/tables/cyrillic/koiu-dos.tab +etc/apache/tables/cyrillic/koiu-iso.tab +etc/apache/tables/cyrillic/koiu-koi.tab +etc/apache/tables/cyrillic/koiu-koiu.tab +etc/apache/tables/cyrillic/koiu-mac.tab +etc/apache/tables/cyrillic/koiu-macu.tab +etc/apache/tables/cyrillic/koiu-utf7.tab +etc/apache/tables/cyrillic/koiu-utf8.tab +etc/apache/tables/cyrillic/koiu-win.tab +etc/apache/tables/cyrillic/mac-dos.tab +etc/apache/tables/cyrillic/mac-iso.tab +etc/apache/tables/cyrillic/mac-koi.tab +etc/apache/tables/cyrillic/mac-koiu.tab +etc/apache/tables/cyrillic/mac-mac.tab +etc/apache/tables/cyrillic/mac-macu.tab +etc/apache/tables/cyrillic/mac-utf7.tab +etc/apache/tables/cyrillic/mac-utf8.tab +etc/apache/tables/cyrillic/mac-win.tab +etc/apache/tables/cyrillic/macu-dos.tab +etc/apache/tables/cyrillic/macu-iso.tab +etc/apache/tables/cyrillic/macu-koi.tab +etc/apache/tables/cyrillic/macu-koiu.tab +etc/apache/tables/cyrillic/macu-mac.tab +etc/apache/tables/cyrillic/macu-macu.tab +etc/apache/tables/cyrillic/macu-utf7.tab +etc/apache/tables/cyrillic/macu-utf8.tab +etc/apache/tables/cyrillic/macu-win.tab +etc/apache/tables/cyrillic/readme.txt +etc/apache/tables/cyrillic/win-dos.tab +etc/apache/tables/cyrillic/win-iso.tab +etc/apache/tables/cyrillic/win-koi.tab +etc/apache/tables/cyrillic/win-koiu.tab +etc/apache/tables/cyrillic/win-mac.tab +etc/apache/tables/cyrillic/win-macu.tab +etc/apache/tables/cyrillic/win-utf7.tab +etc/apache/tables/cyrillic/win-utf8.tab +etc/apache/tables/cyrillic/win-win.tab +etc/apache/tables/czech/cp1250-8859-1.tab +etc/apache/tables/czech/cp1250-8859-2.tab +etc/apache/tables/czech/cp1250-cmac.tab +etc/apache/tables/czech/cp1250-cp1250.tab +etc/apache/tables/czech/cp1250-cp437.tab +etc/apache/tables/czech/cp1250-cp895.tab +etc/apache/tables/czech/cp1250-koi8cs.tab +etc/apache/tables/czech/cp1250-latin2.tab etc/apache/tables/russian/alt-alt.tab etc/apache/tables/russian/alt-iso.tab etc/apache/tables/russian/alt-koi.tab @@ -52,8 +124,8 @@ etc/apache/tables/russian/koi-koi.tab etc/apache/tables/russian/koi-mac.tab etc/apache/tables/russian/koi-tran.tab -etc/apache/tables/russian/koi-win.tab etc/apache/tables/russian/koi-utf8.tab +etc/apache/tables/russian/koi-win.tab etc/apache/tables/russian/mac-alt.tab etc/apache/tables/russian/mac-iso.tab etc/apache/tables/russian/mac-koi.tab @@ -66,23 +138,15 @@ etc/apache/tables/russian/win-tran.tab etc/apache/tables/russian/win-win.tab etc/apache/tables/russian2/alt-mac.tab -etc/apache/tables/russian2/koi-mac.tab etc/apache/tables/russian2/iso-alt.tab -etc/apache/tables/russian2/koi-win.tab etc/apache/tables/russian2/iso-mac.tab -etc/apache/tables/russian2/win-alt.tab etc/apache/tables/russian2/koi-alt.tab -etc/apache/tables/russian2/win-iso.tab etc/apache/tables/russian2/koi-iso.tab +etc/apache/tables/russian2/koi-mac.tab +etc/apache/tables/russian2/koi-win.tab +etc/apache/tables/russian2/win-alt.tab +etc/apache/tables/russian2/win-iso.tab etc/apache/tables/russian2/win-mac.tab -etc/apache/tables/czech/cp1250-8859-1.tab -etc/apache/tables/czech/cp1250-8859-2.tab -etc/apache/tables/czech/cp1250-cmac.tab -etc/apache/tables/czech/cp1250-cp1250.tab -etc/apache/tables/czech/cp1250-cp437.tab -etc/apache/tables/czech/cp1250-cp895.tab -etc/apache/tables/czech/cp1250-koi8cs.tab -etc/apache/tables/czech/cp1250-latin2.tab etc/apache/tables/ukrainian/alt-koi.tab etc/apache/tables/ukrainian/alt-mac.tab etc/apache/tables/ukrainian/alt-win.tab @@ -122,13 +186,13 @@ etc/apache/tables/ukrainian2/win-ruscii.tab etc/apache/tables/ukrainian2/win-trans.tab etc/rc.d/apache.sh -include/apache/alloc.h include/apache/ap.h +include/apache/ap_alloc.h include/apache/ap_compat.h include/apache/ap_config.h include/apache/ap_config_auto.h -include/apache/ap_ctype.h include/apache/ap_ctx.h +include/apache/ap_ctype.h include/apache/ap_hook.h include/apache/ap_md5.h include/apache/ap_mm.h @@ -177,9 +241,9 @@ libexec/apache/mod_alias.so libexec/apache/mod_asis.so libexec/apache/mod_auth.so -libexec/apache/mod_autoindex.so libexec/apache/mod_auth_anon.so libexec/apache/mod_auth_db.so +libexec/apache/mod_autoindex.so libexec/apache/mod_cern_meta.so libexec/apache/mod_cgi.so libexec/apache/mod_define.so @@ -209,13 +273,13 @@ sbin/httpd sbin/logresolve sbin/rotatelogs -share/doc/apache/apache_pb.gif -share/doc/apache/ra-powered.gif +share/doc/apache/README.rus @exec mkdir -p %D/www @exec ln -fs %B %D/www/data.default @unexec rm -f %D/www/data.default @exec [ ! -d %D/www/data ] && ln -fs %B %D/www/data @exec [ ! -d %D/www/cgi-bin ] && ln -fs %D/www/cgi-bin.default %D/www/cgi-bin +share/doc/apache/apache_pb.gif share/doc/apache/index.html.ca share/doc/apache/index.html.cz share/doc/apache/index.html.de @@ -224,18 +288,30 @@ share/doc/apache/index.html.en share/doc/apache/index.html.es share/doc/apache/index.html.fr +share/doc/apache/index.html.he.iso8859-8 share/doc/apache/index.html.it share/doc/apache/index.html.ja.jis +share/doc/apache/index.html.kr.iso-kr share/doc/apache/index.html.lu share/doc/apache/index.html.nl +share/doc/apache/index.html.no share/doc/apache/index.html.po.iso-pl share/doc/apache/index.html.pt share/doc/apache/index.html.pt-br share/doc/apache/index.html.ru +share/doc/apache/index.html.ru.cp-1251 +share/doc/apache/index.html.ru.cp866 +share/doc/apache/index.html.ru.iso-ru +share/doc/apache/index.html.ru.koi8-r +share/doc/apache/index.html.ru.ucs2 +share/doc/apache/index.html.ru.ucs4 +share/doc/apache/index.html.ru.utf8 share/doc/apache/index.html.se +share/doc/apache/index.html.tw.Big5 share/doc/apache/manual/LICENSE share/doc/apache/manual/bind.html share/doc/apache/manual/cgi_path.html +share/doc/apache/manual/configuring.html share/doc/apache/manual/content-negotiation.html share/doc/apache/manual/custom-error.html share/doc/apache/manual/dns-caveats.html @@ -285,6 +361,7 @@ share/doc/apache/manual/misc/perf.html share/doc/apache/manual/misc/rewriteguide.html share/doc/apache/manual/misc/security_tips.html +share/doc/apache/manual/misc/tutorials.html share/doc/apache/manual/misc/vif-info.html share/doc/apache/manual/misc/windoz_keepalive.html share/doc/apache/manual/mod/core.html @@ -292,6 +369,7 @@ share/doc/apache/manual/mod/directives.html share/doc/apache/manual/mod/footer.html share/doc/apache/manual/mod/header.html +share/doc/apache/manual/mod/index-bytype.html share/doc/apache/manual/mod/index.html share/doc/apache/manual/mod/mod_access.html share/doc/apache/manual/mod/mod_actions.html @@ -366,12 +444,12 @@ share/doc/apache/manual/mod/mod_ssl/ssl_template.head-num-2.gif share/doc/apache/manual/mod/mod_ssl/ssl_template.head-num-3.gif share/doc/apache/manual/mod/mod_ssl/ssl_template.head-num-4.gif -share/doc/apache/manual/mod/mod_ssl/ssl_template.inc share/doc/apache/manual/mod/mod_ssl/ssl_template.head-num-5.gif share/doc/apache/manual/mod/mod_ssl/ssl_template.head-num-6.gif share/doc/apache/manual/mod/mod_ssl/ssl_template.head-num-7.gif share/doc/apache/manual/mod/mod_ssl/ssl_template.imgdot-1x1-000000.gif share/doc/apache/manual/mod/mod_ssl/ssl_template.imgdot-1x1-transp.gif +share/doc/apache/manual/mod/mod_ssl/ssl_template.inc share/doc/apache/manual/mod/mod_ssl/ssl_template.navbut-next-n.gif share/doc/apache/manual/mod/mod_ssl/ssl_template.navbut-next-s.gif share/doc/apache/manual/mod/mod_ssl/ssl_template.navbut-prev-n.gif @@ -392,12 +470,15 @@ share/doc/apache/manual/mod/mod_userdir.html share/doc/apache/manual/mod/mod_usertrack.html share/doc/apache/manual/mod/mod_vhost_alias.html +share/doc/apache/manual/mod/module-dict.html +share/doc/apache/manual/mpeix.html share/doc/apache/manual/multilogs.html share/doc/apache/manual/netware.html share/doc/apache/manual/new_features_1_0.html share/doc/apache/manual/new_features_1_1.html share/doc/apache/manual/new_features_1_2.html share/doc/apache/manual/new_features_1_3.html +share/doc/apache/manual/new_features_2_0.html share/doc/apache/manual/process-model.html share/doc/apache/manual/readme-tpf.html share/doc/apache/manual/search/manual-index.cgi @@ -421,7 +502,10 @@ share/doc/apache/manual/vhosts/name-based.html share/doc/apache/manual/vhosts/vhosts-in-depth.html share/doc/apache/manual/vhosts/virtual-host.html +share/doc/apache/manual/win_compiling.html +share/doc/apache/manual/win_service.html share/doc/apache/manual/windows.html +share/doc/apache/ra-powered.gif www/cgi-bin.default/printenv www/cgi-bin.default/test-cgi www/icons/README @@ -543,6 +627,7 @@ @dirrm etc/apache/ssl.csr @dirrm etc/apache/ssl.key @dirrm etc/apache/ssl.prm +@dirrm etc/apache/tables/cyrillic @dirrm etc/apache/tables/czech @dirrm etc/apache/tables/russian @dirrm etc/apache/tables/russian2 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Nov 11 14:34:17 2000 Delivered-To: freebsd-ports@freebsd.org Received: from smtp2a.ispchannel.com (smtp.ispchannel.com [24.142.63.7]) by hub.freebsd.org (Postfix) with ESMTP id 6045337B479 for ; Sat, 11 Nov 2000 14:34:16 -0800 (PST) Received: from ispchannel.com ([24.142.223.209]) by smtp2a.ispchannel.com (InterMail vK.4.02.00.00 201-232-116 license 7d3764cdaca754bf8ae20adf0db2aa60) with ESMTP id <20001111223659.UMZN382.smtp2a@ispchannel.com> for ; Sat, 11 Nov 2000 14:36:59 -0800 Message-ID: <3A0DC967.BCFA8C00@ispchannel.com> Date: Sat, 11 Nov 2000 16:34:15 -0600 From: Mike Murphree X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: ports@freebsd.org Subject: Can't find libMesaGLU.so.14 Content-Type: text/plain; charset=iso-8859-15 Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Updated my Mesa-3.0 port to the current Mesa-3.2.1_1. When I start KDE2, I get the following message: /usr/libexec/ld-elf.so.1: Shared object "libMesaGLU.so.14" not found This file does exist on my system: %locate libMesa /usr/X11R6/lib/libMesaGL.a /usr/X11R6/lib/libMesaGL.so /usr/X11R6/lib/libMesaGL.so.14 /usr/X11R6/lib/libMesaGLU.a /usr/X11R6/lib/libMesaGLU.so /usr/X11R6/lib/libMesaGLU.so.14 How do I fix this? Thanks, Mike To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Nov 11 15: 0:12 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 19D8A37B479 for ; Sat, 11 Nov 2000 15:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA32594; Sat, 11 Nov 2000 15:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from d9168.dtk.chello.nl (d9168.dtk.chello.nl [213.46.9.168]) by hub.freebsd.org (Postfix) with ESMTP id 4521537B479 for ; Sat, 11 Nov 2000 14:58:24 -0800 (PST) Received: by d9168.dtk.chello.nl (Postfix, from userid 1001) id 4867F37B; Sat, 11 Nov 2000 23:58:16 +0100 (CET) Message-Id: <20001111225816.4867F37B@d9168.dtk.chello.nl> Date: Sat, 11 Nov 2000 23:58:16 +0100 (CET) From: edwin@d9168.dtk.chello.nl Reply-To: edwin@d9168.dtk.chello.nl To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22776: New port: Tcl Tutorial Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22776 >Category: ports >Synopsis: New port: Tcl Tutorial >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Nov 11 15:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Edwin Groothuis >Release: FreeBSD 4.0-RELEASE i386 >Organization: none >Environment: - >Description: TCL Tutor is a Tcl/Tk-based tutorial about TCL. Hope I filled in everything correct (it's my first port), just followed to Quick-Porting manual. >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: # # tcltutor # tcltutor/Makefile # tcltutor/distinfo # tcltutor/pkg-comment # tcltutor/pkg-descr # tcltutor/pkg-plist # tcltutor/files # tcltutor/files/patch-aa # echo c - tcltutor mkdir -p tcltutor > /dev/null 2>&1 echo x - tcltutor/Makefile sed 's/^X//' >tcltutor/Makefile << 'END-of-tcltutor/Makefile' X# New ports collection makefile for: tcltutor X# Date created: 11 November 2000 X# Whom: Edwin Groothuis (mavetju@chello.nl) X# X# $FreeBSD$ X# X XPORTNAME= tcltutor XPORTVERSION= 2b4 XCATEGORIES= lang tk82 tcl82 XMASTER_SITES= http://www.msen.com/~clif/ XDISTNAME= Tutor2b4 X XMAINTAINER= mavetju@chello.nl X XRUN_DEPENDS= wish8.2:${PORTSDIR}/x11-toolkits/tk82 X XWRKSRC= ${WRKDIR}/TclTutor XNO_BUILD= yes X X.include END-of-tcltutor/Makefile echo x - tcltutor/distinfo sed 's/^X//' >tcltutor/distinfo << 'END-of-tcltutor/distinfo' XMD5 (Tutor2b4.tar.gz) = 4f8be3277c2aa6c298613d24f7165116 END-of-tcltutor/distinfo echo x - tcltutor/pkg-comment sed 's/^X//' >tcltutor/pkg-comment << 'END-of-tcltutor/pkg-comment' XA Tcl/Tk based tutorial for Tcl END-of-tcltutor/pkg-comment echo x - tcltutor/pkg-descr sed 's/^X//' >tcltutor/pkg-descr << 'END-of-tcltutor/pkg-descr' XTclTutor is a computer aided instruction package for learning the XTcl language. It consists of 43 lessons covering all of the basic XTcl commands and most of the recent (8.0) additions. X Xhttp://www.msen.com/~clif/TclTutor.html END-of-tcltutor/pkg-descr echo x - tcltutor/pkg-plist sed 's/^X//' >tcltutor/pkg-plist << 'END-of-tcltutor/pkg-plist' Xbin/TclTutor.tcl Xbin/scaler.tcl Xbin/htmllib.tcl Xshare/doc/TclTutor/Tcl0.lsn Xshare/doc/TclTutor/Tcl1.lsn Xshare/doc/TclTutor/Tcl2.lsn Xshare/doc/TclTutor/Tcl3.lsn Xshare/doc/TclTutor/Tcl4.lsn Xshare/doc/TclTutor/Tcl5.lsn Xshare/doc/TclTutor/Tcl6.lsn Xshare/doc/TclTutor/Tcl7.lsn Xshare/doc/TclTutor/Tcl8.lsn Xshare/doc/TclTutor/Tcl9.lsn Xshare/doc/TclTutor/Tcl10.lsn Xshare/doc/TclTutor/Tcl11.lsn Xshare/doc/TclTutor/Tcl12.lsn Xshare/doc/TclTutor/Tcl13.lsn Xshare/doc/TclTutor/Tcl14.lsn Xshare/doc/TclTutor/Tcl15.lsn Xshare/doc/TclTutor/Tcl16.lsn Xshare/doc/TclTutor/Tcl17.lsn Xshare/doc/TclTutor/Tcl18.lsn Xshare/doc/TclTutor/Tcl19.lsn Xshare/doc/TclTutor/Tcl20.lsn Xshare/doc/TclTutor/Tcl21.lsn Xshare/doc/TclTutor/Tcl22.lsn Xshare/doc/TclTutor/Tcl23.lsn Xshare/doc/TclTutor/Tcl24.lsn Xshare/doc/TclTutor/Tcl25.lsn Xshare/doc/TclTutor/Tcl26.lsn Xshare/doc/TclTutor/Tcl27.lsn Xshare/doc/TclTutor/Tcl28.lsn Xshare/doc/TclTutor/Tcl29.lsn Xshare/doc/TclTutor/Tcl30.lsn Xshare/doc/TclTutor/Tcl31.lsn Xshare/doc/TclTutor/Tcl32.lsn Xshare/doc/TclTutor/Tcl33.lsn Xshare/doc/TclTutor/Tcl34.lsn Xshare/doc/TclTutor/Tcl35.lsn Xshare/doc/TclTutor/Tcl36.lsn Xshare/doc/TclTutor/Tcl37.lsn Xshare/doc/TclTutor/Tcl38.lsn Xshare/doc/TclTutor/Tcl39.lsn Xshare/doc/TclTutor/Tcl40.lsn Xshare/doc/TclTutor/Tcl41.lsn Xshare/doc/TclTutor/Tcl42.lsn Xshare/doc/TclTutor/Tcl43.lsn Xshare/doc/TclTutor/Tcl.cfg X@dirrm share/doc/TclTutor END-of-tcltutor/pkg-plist echo c - tcltutor/files mkdir -p tcltutor/files > /dev/null 2>&1 echo x - tcltutor/files/patch-aa sed 's/^X//' >tcltutor/files/patch-aa << 'END-of-tcltutor/files/patch-aa' X--- ../TclTutor/Makefile Sat Nov 11 23:11:44 2000 X+++ Makefile Sat Nov 11 23:37:04 2000 X@@ -0,0 +1,8 @@ X+# X+# Fake makefile to copy everything into the right directory. X+# X+ X+install: X+ mkdir -p /usr/local/share/doc/TclTutor X+ install -c -g wheel -o root -m 0644 *.lsn *.cfg /usr/local/share/doc/TclTutor X+ install -c -g wheel -o root -m 0755 scaler.tcl htmllib.tcl TclTutor.tcl /usr/local/bin X--- ../TclTutor/TclTutor.tcl Tue May 9 02:50:40 2000 X+++ TclTutor.tcl Sat Nov 11 22:58:07 2000 X@@ -1,6 +1,6 @@ X #!/bin/sh X # \ X-exec wish "$0" "$@" X+exec wish8.2 "$0" "$@" X X ;# NAME: TclTutor.tcl X ;# AUTHOR: Clif Flynt X@@ -214,6 +214,8 @@ X set Tutor(Tcl.lessonFile) "G:/TCL_STUFF/TclTutor/TclTutor/Tcl0.lsn" X } X X+set Tutor(lessonHome) "/usr/local/share/doc/TclTutor/" X+set Tutor(Tcl.lessonFile) "Tcl0.lsn" X X # Initialize the various state indices. X X--- ../TclTutor/htmllib.tcl Tue May 9 02:50:39 2000 X+++ htmllib.tcl Sat Nov 11 22:17:29 2000 X@@ -1,6 +1,6 @@ X #!/bin/sh X # \ X-exec wish "$0" ${1+"$@"} X+exec wish8.2 "$0" ${1+"$@"} X X # CONFIGURATION DETAIL: SET THIS FOR YOUR IMAGE VIEWER: X # (xli, xv, ee, etc) END-of-tcltutor/files/patch-aa exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Nov 11 16:30: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A3AD837B4C5 for ; Sat, 11 Nov 2000 16:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA42669; Sat, 11 Nov 2000 16:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from a.mx.lebel.org (modemcable007.115-201-24.mtl.mc.videotron.ca [24.201.115.7]) by hub.freebsd.org (Postfix) with SMTP id 43AB637B479 for ; Sat, 11 Nov 2000 16:27:07 -0800 (PST) Received: (qmail 12051 invoked from network); 12 Nov 2000 00:27:06 -0000 Received: from frodo.lebel.org (10.0.0.10) by gandalf.lebel.org with SMTP; 12 Nov 2000 00:27:06 -0000 Received: (qmail 30739 invoked by uid 1001); 12 Nov 2000 00:27:04 -0000 Message-Id: <20001112002704.30738.qmail@frodo.lebel.org> Date: 12 Nov 2000 00:27:04 -0000 From: David Lebel Reply-To: David Lebel To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22777: audio/cdrdao won't build if ${LOCALBASE} is not /usr/local (from maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22777 >Category: ports >Synopsis: audio/cdrdao won't build if ${LOCALBASE} is not /usr/local >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Nov 11 16:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: David Lebel >Release: FreeBSD 4.2-BETA i386 >Organization: None whatsoever. >Environment: >Description: audio/cdrdao won't build if ${LOCALBASE} is not /usr/local because the configure script won't find dlg and antlr binaries (which comes from devel/pccts, since it defaults to /usr/local. Thanks to Mike Meyer. >How-To-Repeat: >Fix: diff -ruN cdrdao/Makefile cdrdao.new/Makefile --- cdrdao/Makefile Sat Nov 11 01:17:33 2000 +++ cdrdao.new/Makefile Sat Nov 11 18:36:13 2000 @@ -26,7 +26,8 @@ .include -CONFIGURE_ARGS= --disable-gtkmmtest +CONFIGURE_ARGS= --disable-gtkmmtest --with-pcctsbin=${LOCALBASE}/bin \ + --with-pcctsinc=${LOCALBASE}/include/pccts .if defined(WITHOUT_SCGLIB) && ${OSVERSION} > 300000 CONFIGURE_ARGS+= --without-scglib >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Nov 11 18:10:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ns1.highstability.com (ns1.highstability.com [216.114.10.34]) by hub.freebsd.org (Postfix) with ESMTP id 52ABE37B479 for ; Sat, 11 Nov 2000 18:10:10 -0800 (PST) Received: (from chrisb@localhost) by ns1.highstability.com (8.9.3/8.9.3) id UAA39147 for ports@freebsd.org; Sat, 11 Nov 2000 20:10:03 -0600 (CST) Date: Sat, 11 Nov 2000 20:10:03 -0600 (CST) From: Chris Byrnes Message-Id: <200011120210.UAA39147@ns1.highstability.com> To: ports@freebsd.org Subject: screen Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org is screen +s by default out of ports for a reason? [please cc me in replies, not subscribed.] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Nov 11 20:33:57 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E1C137B479; Sat, 11 Nov 2000 20:33:56 -0800 (PST) Received: (from dannyboy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA67630; Sat, 11 Nov 2000 20:33:56 -0800 (PST) (envelope-from dannyboy@FreeBSD.org) Date: Sat, 11 Nov 2000 20:33:56 -0800 (PST) From: Message-Id: <200011120433.UAA67630@freefall.freebsd.org> To: dannyboy@FreeBSD.org, freebsd-ports@FreeBSD.org, jseger@FreeBSD.org Subject: Re: ports/22563: Fix: net/isc-dhcp2 -update master_site and new version Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Fix: net/isc-dhcp2 -update master_site and new version Responsible-Changed-From-To: freebsd-ports->jseger Responsible-Changed-By: dannyboy Responsible-Changed-When: Sat Nov 11 20:33:01 PST 2000 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=22563 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Nov 11 21:10: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3C69537B4C5 for ; Sat, 11 Nov 2000 21:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA72161; Sat, 11 Nov 2000 21:10:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from snowview.camellia.org (snowview.camellia.org [64.23.221.226]) by hub.freebsd.org (Postfix) with ESMTP id 0268737B479 for ; Sat, 11 Nov 2000 21:05:19 -0800 (PST) Received: (from alan@localhost) by snowview.camellia.org (8.9.3/8.9.3/Erasmus) id AAA77512; Sun, 12 Nov 2000 00:05:12 -0500 (EST) (envelope-from alan) Message-Id: <200011120505.AAA77512@snowview.camellia.org> Date: Sun, 12 Nov 2000 00:05:12 -0500 (EST) From: Alan Bawden Reply-To: Alan Bawden To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/22780: devel/ncurses/files/Makefile doesn't exist. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22780 >Category: ports >Synopsis: devel/ncurses/files/Makefile doesn't exist. >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Nov 11 21:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Alan Bawden >Release: FreeBSD 3.4-RELEASE i386 >Organization: ITS Preservation Society >Environment: I most recently did a cvsup of my ports collection starting at around 10:00 GMT on 11 Nov 2000. >Description: The ncurses port builds without error. But installing it bombs with: ===> Generating temporary packing list install: /usr/ports/devel/ncurses/files/Makefile: No such file or directory *** Error code 71 Stop. *** Error code 1 Stop. *** Error code 1 Stop. >How-To-Repeat: cd /usr/ports/devel/ncurses make install >Fix: Presumably someone should supply the relevant file. I managed to make the installation finish by commenting out the following line in the Makefile: @ ${INSTALL_DATA} ${FILESDIR}/Makefile ${PREFIX}/share/examples/ncurses >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Nov 11 22: 4:34 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F07C237B479; Sat, 11 Nov 2000 22:04:32 -0800 (PST) Received: (from trevor@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA76658; Sat, 11 Nov 2000 22:04:32 -0800 (PST) (envelope-from trevor@FreeBSD.org) Date: Sat, 11 Nov 2000 22:04:32 -0800 (PST) From: Message-Id: <200011120604.WAA76658@freefall.freebsd.org> To: trevor@FreeBSD.org, freebsd-ports@FreeBSD.org, tg@FreeBSD.org Subject: Re: ports/22780: devel/ncurses/files/Makefile doesn't exist. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: devel/ncurses/files/Makefile doesn't exist. Responsible-Changed-From-To: freebsd-ports->tg Responsible-Changed-By: trevor Responsible-Changed-When: Sat Nov 11 22:03:44 PST 2000 Responsible-Changed-Why: This file was removed by Thomas Gellekum when he updated the port the other day. http://www.freebsd.org/cgi/query-pr.cgi?pr=22780 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 12 0: 0:37 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 53D3B37B4C5 for ; Sun, 12 Nov 2000 00:00:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA95065; Sun, 12 Nov 2000 00:00:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 545F637B479; Sat, 11 Nov 2000 23:54:43 -0800 (PST) Message-Id: <20001112075443.545F637B479@hub.freebsd.org> Date: Sat, 11 Nov 2000 23:54:43 -0800 (PST) From: mzaki@e-mail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/22781: Update port: graphics/libwmf update to 0.1.20 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 22781 >Category: ports >Synopsis: Update port: graphics/libwmf update to 0.1.20 >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Nov 12 00:00:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Motomichi Matsuzaki >Release: -current >Organization: >Environment: >Description: update to 0.1.20 required for building textproc/wv and this breaks textproc/mswordview workaround for textproc/mswordview will be in a separate PR. >How-To-Repeat: >Fix: diff -ru libwmf.old/Makefile libwmf/Makefile --- libwmf.old/Makefile Fri Aug 4 06:03:13 2000 +++ libwmf/Makefile Sun Nov 12 14:02:01 2000 @@ -6,9 +6,10 @@ # PORTNAME= libwmf -PORTVERSION= 0.1.17 +PORTVERSION= 0.1.20 CATEGORIES= graphics -MASTER_SITES= http://www.csn.ul.ie/~caolan/publink/libwmf/ +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= wvware MAINTAINER= ports@FreeBSD.org @@ -23,9 +24,10 @@ GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include/freetype \ -I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}"/lib + LIBS="-L${LOCALBASE}/lib" pre-configure: - (cd ${WRKSRC}; ln -s xgd-1.7.3 xgd) + (cd ${WRKSRC}; ${LN} -s xgd-1.7.3 xgd) + (cd ${WRKSRC}/libdib; ${LN} -s ../bytelevel.c) .include diff -ru libwmf.old/distinfo libwmf/distinfo --- libwmf.old/distinfo Tue May 23 01:38:34 2000 +++ libwmf/distinfo Sun Nov 12 14:17:39 2000 @@ -1 +1 @@ -MD5 (libwmf-0.1.17.tar.gz) = 7ade0bda9c9ba343481a0f272d302c7d +MD5 (libwmf-0.1.20.tar.gz) = 5f1b9cce9cce6ce60e061722a73eea79 diff -ru libwmf.old/files/patch-aa libwmf/files/patch-aa --- libwmf.old/files/patch-aa Wed May 31 04:47:16 2000 +++ libwmf/files/patch-aa Sat Nov 4 20:37:57 2000 @@ -1,6 +1,6 @@ ---- Makefile.in.orig Fri Dec 17 00:31:01 1999 -+++ Makefile.in Tue May 30 19:21:49 2000 -@@ -17,6 +17,7 @@ +--- Makefile.in.orig Wed Oct 11 04:16:15 2000 ++++ Makefile.in Sat Nov 4 19:52:07 2000 +@@ -19,6 +19,7 @@ SHELL=/bin/sh INSTALL = @INSTALL@ @@ -8,7 +8,7 @@ INSTALL_DATA = @INSTALL_DATA@ INCLUDEDIR = @includedir@ -@@ -28,13 +29,13 @@ +@@ -30,13 +31,13 @@ libdir = @libdir@ mandir = @mandir@ @@ -24,12 +24,12 @@ WMFLIBOBJECTS = \ wmfapi.o \ -@@ -53,35 +54,64 @@ +@@ -58,42 +59,77 @@ Xtext.o \ rotated.o --TARGETS = wmftopng wmftofig xwmf -+LIBRARIES= \ +-TARGETS = wmftopng wmftofig wmftoeps xwmf ++LIBRARIES = \ + LIBXGD \ + LIBDIB \ + LIBXFIG \ @@ -37,12 +37,14 @@ + libgdwmf.a \ + libxfwmf.a \ + libXwmf.a \ ++ libepswmf.a \ + libwmf.so.1 \ + libgdwmf.so.1 \ + libxfwmf.so.1 \ -+ libXwmf.so.1 ++ libXwmf.so.1 \ ++ libepswmf.so.1 + -+TARGETS = $(LIBRARIES) wmftopng wmftofig xwmf ++TARGETS = $(LIBRARIES) wmftopng wmftofig wmftoeps xwmf all: $(TARGETS) @@ -58,43 +60,55 @@ +wmftofig: libwmf.so.1 libxfwmf.so.1 wmftofig.o LIBXFIG $(CC) $(LDFLAGS) -o wmftofig wmftofig.o -L. -lxfwmf -lwmf $(XFLIBS) +-wmftoeps: libwmf.a libepswmf.a wmftoeps.o LIBXFIG ++wmftoeps: libwmf.so.1 libepswmf.so.1 wmftoeps.o LIBXFIG + $(CC) $(LDFLAGS) -o wmftoeps wmftoeps.o -L. -lepswmf -lwmf $(EPSLIBS) + libwmf.a: $(WMFLIBOBJECTS) $(AR) rc libwmf.a $(WMFLIBOBJECTS) $(RANLIB) libwmf.a -+libwmf.so.1: $(WMFLIBOBJECTS:.o=.so) ++libwmf.so.1: $(WMFLIBOBJECTS:.o=.so) + $(CC) -shared -Wl,-soname,$@ -o $@ $(WMFLIBOBJECTS:.o=.so) $(LIBS) + ln -sf libwmf.so.1 libwmf.so + libgdwmf.a: $(GDLIBOBJECTS) $(AR) rc libgdwmf.a $(GDLIBOBJECTS) $(RANLIB) libgdwmf.a - -+libgdwmf.so.1: $(GDLIBOBJECTS:.o=.so) ++ ++libgdwmf.so.1: $(GDLIBOBJECTS:.o=.so) + $(CC) -shared -Wl,-soname,$@ -o $@ $(GDLIBOBJECTS:.o=.so) $(LIBS) + ln -sf libgdwmf.so.1 libgdwmf.so -+ + libxfwmf.a: $(XFLIBOBJECTS) $(AR) rc libxfwmf.a $(XFLIBOBJECTS) $(RANLIB) libxfwmf.a - -+libxfwmf.so.1: $(XFLIBOBJECTS:.o=.so) ++ ++libxfwmf.so.1: $(XFLIBOBJECTS:.o=.so) + $(CC) -shared -Wl,-soname,$@ -o $@ $(XFLIBOBJECTS:.o=.so) $(LIBS) + ln -sf libxfwmf.so.1 libxfwmf.so + + libepswmf.a: $(EPSLIBOBJECTS) + $(AR) rc libepswmf.a $(EPSLIBOBJECTS) + $(RANLIB) libepswmf.a + ++libepswmf.so.1: $(EPSLIBOBJECTS:.o=.so) ++ $(CC) -shared -Wl,-soname,$@ -o $@ $(EPSLIBOBJECTS:.o=.so) $(LIBS) ++ ln -sf libepswmf.so.1 libepswmf.so + libXwmf.a: $(XLIBOBJECTS) $(AR) rc libXwmf.a $(XLIBOBJECTS) $(RANLIB) libXwmf.a -+libXwmf.so.1: $(XLIBOBJECTS:.o=.so) ++libXwmf.so.1: $(XLIBOBJECTS:.o=.so) + $(CC) -shared -Wl,-soname,$@ -o $@ $(XLIBOBJECTS:.o=.so) $(LIBS) + ln -sf libXwmf.so.1 libXwmf.so + LIBDIB: @echo making libdib in libdib @(cd libdib && $(MAKE)) || exit 1 -@@ -94,8 +124,8 @@ - @echo making libxfig in libxfig +@@ -106,8 +142,8 @@ + @echo making libxfig, libeps in libxfig @(cd libxfig && $(MAKE)) || exit 1 -%.o: %.c @@ -103,21 +117,24 @@ + $(CC) $(CFLAGS) -fPIC -DPIC -o $@ -c $< clean: cleansub - rm -rf *.o wmftopng wmftofig xwmf a.out core *.a .pure -@@ -134,15 +164,24 @@ + rm -rf *.o wmftopng wmftofig wmftoeps xwmf a.out core *.a .pure +@@ -146,17 +182,28 @@ $(libdir) install: all installdirs installsub - $(INSTALL) $(srcdir)/xwmf $(bindir)/xwmf - $(INSTALL) $(srcdir)/wmftopng $(bindir)/wmftopng - $(INSTALL) $(srcdir)/wmftofig $(bindir)/wmftofig +- $(INSTALL) $(srcdir)/wmftoeps $(bindir)/wmftoeps + $(INSTALL_PROGRAM) $(srcdir)/xwmf $(bindir)/xwmf + $(INSTALL_PROGRAM) $(srcdir)/wmftopng $(bindir)/wmftopng + $(INSTALL_PROGRAM) $(srcdir)/wmftofig $(bindir)/wmftofig ++ $(INSTALL_PROGRAM) $(srcdir)/wmftoeps $(bindir)/wmftoeps $(INSTALL_DATA) $(srcdir)/libwmf.a $(libdir)/libwmf.a $(INSTALL_DATA) $(srcdir)/libgdwmf.a $(libdir)/libgdwmf.a $(INSTALL_DATA) $(srcdir)/libXwmf.a $(libdir)/libXwmf.a $(INSTALL_DATA) $(srcdir)/libxfwmf.a $(libdir)/libxfwmf.a + $(INSTALL_DATA) $(srcdir)/libepswmf.a $(libdir)/libepswmf.a + $(INSTALL_DATA) $(srcdir)/libwmf.so.1 $(libdir)/libwmf.so.1 + ln -sf libwmf.so.1 $(libdir)/libwmf.so + $(INSTALL_DATA) $(srcdir)/libgdwmf.so.1 $(libdir)/libgdwmf.so.1 @@ -126,6 +143,8 @@ + ln -sf libXwmf.so.1 $(libdir)/libXwmf.so + $(INSTALL_DATA) $(srcdir)/libxfwmf.so.1 $(libdir)/libxfwmf.so.1 + ln -sf libxfwmf.so.1 $(libdir)/libxfwmf.so ++ $(INSTALL_DATA) $(srcdir)/libepswmf.so.1 $(libdir)/libepswmf.so.1 ++ ln -sf libepswmf.so.1 $(libdir)/libepswmf.so $(INSTALL_DATA) wmfapi.h $(INCLUDEDIR)/wmfapi.h $(INSTALL_DATA) gdwmfapi.h $(INCLUDEDIR)/gdwmfapi.h $(INSTALL_DATA) Xwmfapi.h $(INCLUDEDIR)/Xwmfapi.h diff -ru libwmf.old/files/patch-ab libwmf/files/patch-ab --- libwmf.old/files/patch-ab Wed May 31 04:47:16 2000 +++ libwmf/files/patch-ab Sat Nov 4 20:03:01 2000 @@ -1,19 +1,19 @@ ---- xgd-1.7.3/Makefile.in.orig Fri Dec 17 00:31:47 1999 -+++ xgd-1.7.3/Makefile.in Tue May 30 19:20:35 2000 +--- xgd-1.7.3/Makefile.in.orig Wed Oct 11 04:16:16 2000 ++++ xgd-1.7.3/Makefile.in Sat Nov 4 20:01:31 2000 @@ -29,14 +29,14 @@ #If you don't have FreeType and/or Xpm installed, including the #header files, uncomment this (default). --CFLAGS=@CFLAGS@ @DEFS@ -I../ @ZLIB_CFLAGS@ @TTF_CFLAGS@ @XPM_CFLAGS@ -+CFLAGS=@CFLAGS@ @DEFS@ -I../ @ZLIB_CFLAGS@ @TTF_CFLAGS@ @XPM_CFLAGS@ @CPPFLAGS@ +-CFLAGS=@CFLAGS@ @DEFS@ -I../ @PNG_CFLAGS@ @ZLIB_CFLAGS@ @TTF_CFLAGS@ @XPM_CFLAGS@ ++CFLAGS=@CFLAGS@ @DEFS@ -I../ @PNG_CFLAGS@ @ZLIB_CFLAGS@ @TTF_CFLAGS@ @XPM_CFLAGS@ @CPPFLAGS@ #If you do have FreeType and/or Xpm fully installed, uncomment a #variation of this and comment out the line above. See also LIBS below. #CFLAGS=-O -DHAVE_XPM -DHAVE_LIBTTF #If you don't have FreeType and/or Xpm fully installed, uncomment this #(default). --LIBS= -lxgd @LIB_PNG@ @ZLIB_LIBS@ @TTF_LIBS@ @XPM_LIBS@ @X_LIBS@ @X11@ @X_EXTRA_LIBS@ -lm -+LIBS= -lxgd @LIB_PNG@ @ZLIB_LIBS@ @TTF_LIBS@ @XPM_LIBS@ @X_LIBS@ @X11@ @X_EXTRA_LIBS@ @LIBS@ -lm +-LIBS= -lxgd @PNG_LIBS@ @ZLIB_LIBS@ @TTF_LIBS@ @XPM_LIBS@ @X_LIBS@ @X11@ @X_EXTRA_LIBS@ -lm ++LIBS= -lxgd @PNG_LIBS@ @ZLIB_LIBS@ @TTF_LIBS@ @XPM_LIBS@ @X_LIBS@ @X11@ @X_EXTRA_LIBS@ @LIBS@ -lm #If you do have FreeType and/or Xpm fully installed, uncomment a #variation of this and comment out the line above. Note that @@ -56,7 +56,7 @@ $(INSTALL_DATA) gd.h $(INSTALL_INCLUDE)/gd.h $(INSTALL_DATA) gdcache.h $(INSTALL_INCLUDE)/gdcache.h $(INSTALL_DATA) gd_io.h $(INSTALL_INCLUDE)/gd_io.h -@@ -134,16 +134,19 @@ +@@ -134,16 +134,20 @@ gdtestttf: gdtestttf.o libxgd.a $(CC) gdtestttf.o -o gdtestttf $(LIBDIRS) $(LIBS) @@ -75,11 +75,12 @@ - gdfontt.o gdfonts.o gdfontmb.o gdfontl.o gdfontg.o \ - gdtables.o gdttf.o gdcache.o gdkanji.o + $(AR) rc libxgd.a $(OBJS) - -ranlib libxgd.a + -@RANLIB@ libxgd.a + +libxgd.so.1: $(INCS) $(OBJS:.o=.so) + $(CC) -shared -Wl,-soname,$@ -o $@ $(OBJS:.o=.so) $(LIBDIRS) $(LIBS) + ln -sf libxgd.so.1 libxgd.so ++ clean: - rm -f *.o *.a ${PROGRAMS} + rm -f *.o *.a ${PROGRAMS} core diff -ru libwmf.old/files/patch-ac libwmf/files/patch-ac --- libwmf.old/files/patch-ac Wed May 31 04:47:16 2000 +++ libwmf/files/patch-ac Sat Nov 4 20:08:56 2000 @@ -1,41 +1,53 @@ ---- libxfig/Makefile.in.orig Tue Jul 13 22:16:20 1999 -+++ libxfig/Makefile.in Tue May 30 19:22:25 2000 -@@ -28,21 +28,25 @@ +--- libxfig/Makefile.in.orig Wed Sep 27 06:00:22 2000 ++++ libxfig/Makefile.in Sat Nov 4 20:08:07 2000 +@@ -28,7 +28,7 @@ SHELL = /bin/sh -.SUFFIXES: .C .o +.SUFFIXES: .c .o .so - MYOBJECTS = \ + XFOBJECTS = \ color.o \ - objlist.o \ - fileops.o +@@ -41,18 +41,26 @@ + epsfileops.o --all: libxfig.a -+all: libxfig.a libxfig.so.1 - libxfig.a: $(MYOBJECTS) - $(AR) rc libxfig.a $(MYOBJECTS) +-all: libxfig.a libeps.a ++all: libxfig.a libxfig.so.1 libeps.a libeps.so.1 + + libxfig.a: $(XFOBJECTS) + $(AR) rc libxfig.a $(XFOBJECTS) $(RANLIB) libxfig.a ++libxfig.so.1: $(XFOBJECTS:.o=.so) ++ $(CC) -shared -Wl,-soname,$@ -o $@ $(XFOBJECTS:.o=.so) $(LIBS) ++ ln -sf libxfig.so.1 libxfig.so ++ + libeps.a: $(EPSOBJECTS) + $(AR) rc libeps.a $(EPSOBJECTS) + $(RANLIB) libeps.a + -%.o: %.c - $(CC) $(CFLAGS) -c $*.c -+libxfig.so.1: $(MYOBJECTS:.o=.so) -+ $(CC) -shared -Wl,-soname,$@ -o $@ $(MYOBJECTS:.o=.so) $(LIBS) -+ ln -sf libxfig.so.1 libxfig.so ++libeps.so.1: $(EPSOBJECTS:.o=.so) ++ $(CC) -shared -Wl,-soname,$@ -o $@ $(EPSOBJECTS:.o=.so) $(LIBS) ++ ln -sf libeps.so.1 libeps.so + +.c.so: + $(CC) $(CFLAGS) -fPIC -DPIC -o $@ -c $< clean: rm -rf *.o *.a core -@@ -52,6 +56,8 @@ +@@ -62,7 +70,11 @@ install: all installdirs $(INSTALL_DATA) libxfig.a @libdir@/libxfig.a + $(INSTALL_DATA) libxfig.so.1 @libdir@/libxfig.so.1 + ln -sf libxfig.so.1 @libdir@/libxfig.so + $(INSTALL_DATA) libeps.a @libdir@/libeps.a ++ $(INSTALL_DATA) libeps.so.1 @libdir@/libeps.so.1 ++ ln -sf libeps.so.1 @libdir@/libeps.so installdirs: $(MKINSTALLDIRS) @libdir@ \ diff -ru libwmf.old/files/patch-ad libwmf/files/patch-ad --- libwmf.old/files/patch-ad Wed May 31 04:47:16 2000 +++ libwmf/files/patch-ad Sat Nov 4 20:28:00 2000 @@ -1,6 +1,13 @@ ---- libdib/Makefile.in.orig Tue Jul 13 22:14:28 1999 -+++ libdib/Makefile.in Tue May 30 19:22:58 2000 -@@ -28,25 +28,29 @@ +--- libdib/Makefile.in.orig Fri Sep 22 04:14:36 2000 ++++ libdib/Makefile.in Sat Nov 4 20:27:35 2000 +@@ -22,30 +22,34 @@ + libdir = @libdir@ + mandir = @mandir@ + +-CFLAGS = @CFLAGS@ @DEFS@ -I. ++CFLAGS = @CFLAGS@ @DEFS@ -I. -I.. + + MKINSTALLDIRS = $(srcdir)/mkinstalldirs SHELL = /bin/sh @@ -8,7 +15,8 @@ +.SUFFIXES: .c .o .so MYOBJECTS = \ - bytelevel.o \ +- ../bytelevel.o \ ++ bytelevel.o \ bintree.o \ dibtoxpm.o @@ -19,7 +27,7 @@ $(AR) rc libdib.a $(MYOBJECTS) $(RANLIB) libdib.a -+libdib.so.1: $(MYOBJECTS:.o=.so) ++libdib.so.1: $(MYOBJECTS:.o=.so) + $(CC) -shared -Wl,-soname,$@ -o $@ $(MYOBJECTS:.o=.so) $(LIBS) + ln -sf libdib.so.1 libdib.so + @@ -28,13 +36,11 @@ -%.o: %.c - $(CC) $(CFLAGS) -c $*.c -- +.c.so: + $(CC) $(CFLAGS) -fPIC -DPIC -o $@ -c $< -+ + clean: rm -rf *.o *.a test_dibtoxpm a.out core - @@ -60,6 +64,8 @@ install: all installdirs $(INSTALL_DATA) dibtoxpm.h $(INCLUDEDIR)/dibtoxpm.h diff -ru libwmf.old/pkg-descr libwmf/pkg-descr --- libwmf.old/pkg-descr Tue May 23 01:38:35 2000 +++ libwmf/pkg-descr Sat Nov 4 21:13:54 2000 @@ -3,4 +3,4 @@ to convert to png, and an X one to draw direct to an X window or pixmap. -WWW: http://www.csn.ul.ie/~caolan/docs/libwmf.html +WWW: http://www.wvware.com/libwmf.html diff -ru libwmf.old/pkg-plist libwmf/pkg-plist --- libwmf.old/pkg-plist Fri Jun 16 17:47:56 2000 +++ libwmf/pkg-plist Sat Nov 4 20:33:57 2000 @@ -1,3 +1,4 @@ +bin/wmftoeps bin/wmftofig bin/wmftopng bin/xwmf @@ -20,6 +21,12 @@ lib/libdib.a lib/libdib.so lib/libdib.so.1 +lib/libeps.a +lib/libeps.so +lib/libeps.so.1 +lib/libepswmf.a +lib/libepswmf.so +lib/libepswmf.so.1 lib/libgdwmf.a lib/libgdwmf.so lib/libgdwmf.so.1 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message