From owner-freebsd-ports Sun Oct 27 01:40:06 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id BAA16605 for ports-outgoing; Sun, 27 Oct 1996 01:40:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id BAA16594; Sun, 27 Oct 1996 01:40:02 -0800 (PST) Resent-Date: Sun, 27 Oct 1996 01:40:02 -0800 (PST) Resent-Message-Id: <199610270940.BAA16594@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, obrien@NUXI.cs.ucdavis.edu Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [128.120.56.38]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id BAA16538 for ; Sun, 27 Oct 1996 01:39:43 -0800 (PST) Received: (from obrien@localhost) by relay.nuxi.com (8.7.5/8.6.12) id BAA26151; Sun, 27 Oct 1996 01:40:07 -0800 (PST) Message-Id: <199610270940.BAA26151@relay.nuxi.com> Date: Sun, 27 Oct 1996 01:40:07 -0800 (PST) From: "David E. O'Brien" Reply-To: obrien@NUXI.cs.ucdavis.edu To: FreeBSD-gnats-submit@freebsd.org Cc: obrien@Nuxi.com X-Send-Pr-Version: 3.2 Subject: ports/1901: change to MKDIR in bsd.port.mk Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 1901 >Category: ports >Synopsis: change to MKDIR in bsd.port.mk >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 27 01:40:01 PST 1996 >Last-Modified: >Originator: David E. O'Brien >Organization: University of California, Davis >Release: FreeBSD 2.1.5-RELEASE i386 >Environment: based on bsd.port.mk from -current >Description: Currently MKDIR is defined as "/bin/mkdir" in /usr/share/mk/bsd.port.mk. Everwhere in bsd.port.mk that MKDIR is used it is followed by "-p". This is also true of most port's Makefile's that use MKDIR. So it seems to make sense to change the definition to "/bin/mkdir -p". This would also prevent possible problems with ``make reinstall''. >How-To-Repeat: n/a >Fix: --- bsd.port.mk.orig Fri Oct 25 01:58:13 1996 +++ bsd.port.mk.p Sun Oct 27 01:08:17 1996 @@ -387,7 +387,7 @@ CP?= /bin/cp SETENV?= /usr/bin/env RM?= /bin/rm -MKDIR?= /bin/mkdir +MKDIR?= /bin/mkdir -p GZCAT?= /usr/bin/gzcat BASENAME?= /usr/bin/basename SED?= /usr/bin/sed @@ -595,7 +595,7 @@ .if !target(do-fetch) do-fetch: - @if [ ! -d ${DISTDIR} ]; then ${MKDIR} -p ${DISTDIR}; fi + @if [ ! -d ${DISTDIR} ]; then ${MKDIR} ${DISTDIR}; fi @(cd ${DISTDIR}; \ for file in ${DISTFILES}; do \ if [ ! -f $$file -a ! -f `${BASENAME} $$file` ]; then \ @@ -618,7 +618,7 @@ fi \ done) .if defined(PATCHFILES) - @if [ ! -d ${DISTDIR} ]; then ${MKDIR} -p ${DISTDIR}; fi + @if [ ! -d ${DISTDIR} ]; then ${MKDIR} ${DISTDIR}; fi @(cd ${DISTDIR}; \ for file in ${PATCHFILES}; do \ if [ ! -f $$file -a ! -f `${BASENAME} $$file` ]; then \ @@ -649,7 +649,7 @@ do-extract: .if !defined(NO_WRKDIR) @${RM} -rf ${WRKDIR} - @${MKDIR} -p ${WRKDIR} + @${MKDIR} ${WRKDIR} .endif @for file in ${EXTRACT_ONLY}; do \ if !(cd ${WRKDIR} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${DISTDIR}/$$file ${EXTRACT_AFTER_ARGS});\ @@ -768,7 +768,7 @@ ${ECHO_MSG} "===> Building package for ${PKGNAME}"; \ if [ -d ${PACKAGES} ]; then \ if [ ! -d ${PKGREPOSITORY} ]; then \ - if ! ${MKDIR} -p ${PKGREPOSITORY}; then \ + if ! ${MKDIR} ${PKGREPOSITORY}; then \ ${ECHO_MSG} ">> Can't create directory ${PKGREPOSITORY}."; \ exit 1; \ fi; \ @@ -792,7 +792,7 @@ @${MAKE} ${.MAKEFLAGS} delete-package-links @for cat in ${CATEGORIES}; do \ if [ ! -d ${PACKAGES}/$$cat ]; then \ - if ! ${MKDIR} -p ${PACKAGES}/$$cat; then \ + if ! ${MKDIR} ${PACKAGES}/$$cat; then \ ${ECHO_MSG} ">> Can't create directory ${PACKAGES}/$$cat."; \ exit 1; \ fi; \ @@ -993,7 +993,7 @@ .if !target(fetch-list) fetch-list: - @if [ ! -d ${DISTDIR} ]; then ${MKDIR} -p ${DISTDIR}; fi + @if [ ! -d ${DISTDIR} ]; then ${MKDIR} ${DISTDIR}; fi @(cd ${DISTDIR}; \ for file in ${DISTFILES}; do \ if [ ! -f $$file -a ! -f `${BASENAME} $$file` ]; then \ @@ -1022,7 +1022,7 @@ .if !target(makesum) makesum: fetch - @if [ ! -d ${FILESDIR} ]; then ${MKDIR} -p ${FILESDIR}; fi + @if [ ! -d ${FILESDIR} ]; then ${MKDIR} ${FILESDIR}; fi @if [ -f ${MD5_FILE} ]; then ${RM} -f ${MD5_FILE}; fi @(cd ${DISTDIR}; \ for file in ${DISTFILES} ${PATCHFILES}; do \ @@ -1307,13 +1307,13 @@ .if !target(fake-pkg) fake-pkg: @if [ ! -f ${PKGDIR}/PLIST -o ! -f ${PKGDIR}/COMMENT -o ! -f ${PKGDIR}/DESCR ]; then ${ECHO} "** Missing package files for ${PKGNAME} - installation not recorded."; exit 1; fi - @if [ ! -d ${PKG_DBDIR} ]; then ${RM} -f ${PKG_DBDIR}; ${MKDIR} -p ${PKG_DBDIR}; fi + @if [ ! -d ${PKG_DBDIR} ]; then ${RM} -f ${PKG_DBDIR}; ${MKDIR} ${PKG_DBDIR}; fi .if defined(FORCE_PKG_REGISTER) @${RM} -rf ${PKG_DBDIR}/${PKGNAME} .endif @if [ ! -d ${PKG_DBDIR}/${PKGNAME} ]; then \ ${ECHO_MSG} "===> Registering installation for ${PKGNAME}"; \ - ${MKDIR} -p ${PKG_DBDIR}/${PKGNAME}; \ + ${MKDIR} ${PKG_DBDIR}/${PKGNAME}; \ ${PKG_CMD} ${PKG_ARGS} -O ${PKGFILE} > ${PKG_DBDIR}/${PKGNAME}/+CONTENTS; \ ${CP} ${PKGDIR}/DESCR ${PKG_DBDIR}/${PKGNAME}/+DESC; \ ${CP} ${PKGDIR}/COMMENT ${PKG_DBDIR}/${PKGNAME}/+COMMENT; \ >Audit-Trail: >Unformatted: From owner-freebsd-ports Sun Oct 27 01:50:05 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id BAA17042 for ports-outgoing; Sun, 27 Oct 1996 01:50:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id BAA17033; Sun, 27 Oct 1996 01:50:03 -0800 (PST) Resent-Date: Sun, 27 Oct 1996 01:50:03 -0800 (PST) Resent-Message-Id: <199610270950.BAA17033@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, obrien@NUXI.cs.ucdavis.edu Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [128.120.56.38]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id BAA16879 for ; Sun, 27 Oct 1996 01:47:10 -0800 (PST) Received: (from obrien@localhost) by relay.nuxi.com (8.7.5/8.6.12) id BAA26265; Sun, 27 Oct 1996 01:47:34 -0800 (PST) Message-Id: <199610270947.BAA26265@relay.nuxi.com> Date: Sun, 27 Oct 1996 01:47:34 -0800 (PST) From: "David E. O'Brien" Reply-To: obrien@NUXI.cs.ucdavis.edu To: FreeBSD-gnats-submit@freebsd.org Cc: obrien@Nuxi.com X-Send-Pr-Version: 3.2 Subject: ports/1902: additional clean targets for bsd.port.mk Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 1902 >Category: ports >Synopsis: additional clean targets for bsd.port.mk >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 27 01:50:02 PST 1996 >Last-Modified: >Originator: David E. O'Brien >Organization: University of California, Davis >Release: FreeBSD 2.1.5-RELEASE i386 >Environment: based on bsd.port.mk from -current >Description: I would like to see additional clean targets added to bsd.port.mk. The first is "distclean" that would delete the DISTFILES and PATCHFILES, and would rmdir the dist subdir if there is one. This target is useful to recover some of the diskspace taken up by the distfile(s). It is even more useful when there is >1 distfile or patch files. The second target is "deepclean" that inaddition to "distclean" deletes the portball. This is useful as many times I build a port because the package either isn't avail, or doesn't match my system. After I've installed the port, I have no desire to keep the portball around. The only negitive port to this target, is after building this target, you are left in a cwd that doesn't exist anymore. But a simple ``cd'' to the next place you wanted to go anyway will take care of that. >How-To-Repeat: n/a >Fix: --- bsd.port.mk.orig Fri Oct 25 01:58:13 1996 +++ bsd.port.mk Sun Oct 27 01:34:55 1996 @@ -989,6 +989,34 @@ .endif .endif +.if !target(pre-distclean) +pre-distclean: + @${DO_NADA} +.endif + +.if !target(distclean) +distclean: pre-distclean clean + @${ECHO_MSG} "===> Dist cleaning for ${PKGNAME}" + @(cd ${DISTDIR}; \ + ${RM} -f ${DISTFILES} ${PATCHFILES}) +.if defined(DIST_SUBDIR) + @/bin/rmdir ${DISTDIR} +.endif +.endif + +.if !target(pre-deepclean) +pre-deepclean: + @${DO_NADA} +.endif + +.if !target(deepclean) +PORTDIRNAME!= /usr/bin/basename ${.CURDIR} +realclean: pre-deepclean distclean + @${ECHO_MSG} "===> Deep cleansing for ${PKGNAME}" + @(cd ${.CURDIR}/.. ; \ + ${RM} -rf ${PORTDIRNAME}) +.endif + # Prints out a list of files to fetch (useful to do a batch fetch) .if !target(fetch-list) >Audit-Trail: >Unformatted: From owner-freebsd-ports Sun Oct 27 07:48:05 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id HAA27789 for ports-outgoing; Sun, 27 Oct 1996 07:48:05 -0800 (PST) Received: from news1.gtn.com (news1.gtn.com [192.109.159.3]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id HAA27757 for ; Sun, 27 Oct 1996 07:47:45 -0800 (PST) Received: (from uucp@localhost) by news1.gtn.com (8.7.2/8.7.2) with UUCP id RAA27272; Sun, 27 Oct 1996 17:30:25 +0100 (MET) Received: from localhost (localhost [127.0.0.1]) by klemm.gtn.com (8.8.2/8.8.2) with SMTP id RAA24950; Sun, 27 Oct 1996 17:17:56 +0100 (MET) Date: Sun, 27 Oct 1996 17:17:56 +0100 (MET) From: Andreas Klemm To: Crossfire Mailing List cc: ports@freebsd.org Subject: Can't play crossfire using FreeBSD-current, because passwords , doesn't match Message-ID: X-try-apsfilter: ftp://sunsite.unc.edu/pub/Linux/system/Printing/aps-491.tgz X-Fax: +49 2137 2018 X-Phone: +49 2137 2020 MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hi ! Would love to get crossfire up and running on FreeBSD-current. But need some help. BTW, Crossfire is a nice Multi User dungeon and dreagon game under X11. With sound and all bells and whistles turned on ;-) A really cool game ! After compiling and installing crossfire successfully on a FreeBSD-current system I'm now in trouble, since I can't play the game. The password isn't validated correctly... The dialogue is as follows: What is your name? : andreas What is your password? ?????? Please type your password again? ?????? The passwords did not match. And so on and so on. I'll crossposting this to the FreeBSD-ports mailinglist, so that perhaps another FreeBSD user/developer can look at this. After extracting the tgz archive, you can go into the patches directory, to see, what patches I applied to the sources. BTW, I had to add -lcrypt to the SYSTEM libraries, otherwise _crypt wasn't resolved. begin 644 crossfire.tgz M'XL(`%"*W?;-K+OO]:GP-WT["9U1%%OV[?IC2,[K6_].I*SR9[3 MGHW<1&G2ZO<&PT^GJ4-W3^]UO MD/[XHNQ><1AAAM`WV+<8P6$AKJK^W_1ZAJ[)$@6412$RJ>L2,W*HC[S$&)!- MV^3`7B]X!^U6>1K M)O5^:#P#^F\OK!-XTSB[F-Q=GUZ=O]I*W$PD&YW>G?]X,[XXGQR^.IAACX2- MJ]/)W?G8F%S'=A1<-)JP:OFV(X6.U3S:2N(IZT-JU8#2"ZN[^#?^?C5 M@5*>1F/TUIC2OE^AW]TCB0-+SYI$ZV\7NC MO#'.SF_/>?>X17P(O%]^T7KP[^3;WVYOQG>3LXOQ[ZT9P\'<,QY="6*!>R!82Y?4W7NQF4B_U92U0U&N_'/T_&?+R^_0W>BNH= M`WLW.3R";H%4<)&U*2Z-1D##J.GX M$(U<]Z1Q\-RTA*:D+,[TOQ$/4\V'3S84\\$0%5N5O\B2E,"380&"U^:<+GTD MO$$3KV@KVM3Q4^)QK$,S1O,4/ MC3\[!'[1US:Z\7`?MOZ(-E!/'T*L+YK_^?21S/_]=@^`J-WM==O?H/X?(4S^ M^L+G__SX>];C:[TB_T.#]C`U_D.>_[4[O:_YWU-<5V=]]+P@3WF!7J%.%Q]U M2<>>ZGW]Z'C:'W8[W2[!IFX-!^UCVVJH&6SS&,[$'O3)5#\B5J\W;0]PUVP3 M<]#M=XYQIVP[E`RQAWIKC3&5J#8ZO?&4X)'N#A4;]KVKTC7,`E MDP5Q/L=VOW<\F!YW=5T_[@_T=L_L]7MMNS<=#+`Y+>*3RI($%VP?#:UAV[)L M7/]U81WXQ/&?41J5X?Y#_7]W M_,6]B?'CM;&-_\KQ[^G=SF;]W^N)]?^PTW[B^/^%CG^SV81UOV\[,YG)ATY$ M-(O8&F7.[.`*%OH3$B!P2GUXTN^=M'MB`=\X/#Q4DAU,8A_=F!%?[;?[)[WN MB3Z0%*]?HV;WZ.40'8K7UZ\;J(%:WS70,R!S?((^W%X9MQ`9E\[T MS&%HNXCB:Z%6X[`(\Z'='@\D!GW7X@V@"QNM:,S0>O$A\AR$&4$A]0BL`DV" MJ&4E\#3C"TF16L*U$B:`Y?T9ZB_;770H;[Q'Z#MT-W="!/]C%-$`<:M"%KB7 M&5&V0M1&L+P3RR,$=F?#1P#[Z-WUQ8=F&*U<(GC0>\(`IR'^J;75R.@.6+;F M('8K=(D3^(2U<&J#8KL6.\R2;#NPA7#=9%$^B5HPJ!%S4KL>.;WD^8DUWA;- MP8+S&\?'S`%%B2L"D0:;4@\[,?8_2S)"D1+ M.`9XIE!LXD0;O5UA_Q9'\ZQN@<.+[`@`;!+;MO.`(%;DZ-<5G.)PAW%J1(`M M'Q$AP%O*P$]'(]Z=."2\2R@,B.G8#O27!KPWW)7"B&"+^QD')#H0.FWK/:[4 MMMY/H@_X&?97.2@$-2^`06(;EEQ#&8U(GP29$LF%9*/1S>W=Q(8>.MBVX(F/,M&81SP;1U0JKW64Z.9#O("=F[; M$`_#;>GXUL4K9:C/82`BYS!)0&XT-Y$GP4NGL*';CC]#-P'QWSN^19N438@G'F8*1D8BSX>JFP&29,`D)@R`M5,G-T0F% MCCKZD!M91Q^DC&RYX%[E45"X5'&X`BOU0K1TP$:@B9N?M\HZ??\SK!-F0-0X ME._Y6]FS=R&WTVD\FX$1>&!@U/P?A"Z01?V_16CATZ64%+I"'IPP$M[,[3`Q MW;!U,_E;^%)(-8TC$24H2<`<"Y/W38AZ6AO^^[HM]T5C=5C3NXOK'R?K,'BHKCT481!BW/F'V\N; M\;EQ=7-VSC.?=#K)XR($:'Z\PV=&B.(0X2'JDH?`I3R!HA:1,7`)P5AD$BMD MPFSIBU0==!4FBM3S%>`[)\1R;"Y$/B&,:WR0OUDP%.\XX?"EG"IA) M>""&F6>;N:4%D($7)`\8N0?YH`>0_&ARE=05F4JWNYU$Q-SVS+%%*G%V95R= M7ESRB76CQ:0,_<7#,+>PUPS/8U<#F?^2R;**8<">^)9C)ZNR/]LLOUY/=!7& M?_/QVJB(_ZC;ZR?Q?]`9#&7\;W>^QO^GN/+[/]P4---630'=P4E'5V__)%1Y M@N%)M[V=!3J='I\%^$W.`I-_3""VOQF?\L8;)5$,EI M0(3<]S*"4Q1`.LL#+WD@9ASAJ9OL\\C@^6C_UN.U4>7_@]YF_[>G M@\5P_]?[7_W_*2[A_ZX#*4A+WC1SU_?[)_WNQI6%[V)5>_PQMMF*_#R,+%OG:_`=>G'C],Y[@_==Z)^OYU>GHIQ?HKW]-%8747^6* M[O%#IN2Y,_7T;N<%^J71/,@@K\F'NRS4=?PX1WUV=7IY>3-ZT3C\%XBA[1RY M8;QEA+R9G!G&BZPBY&H^IPAY_V/'O]#_'_$YT$K_[_1RYW_@_\.O_O\4%_=_ M?ESR,/4B.K7L`O`WZYS]1JC*,_6SA\W#F9#X;!@UMP&1=E(>+ M1O-9*M!LX\RV2'@[+)[JP#+LAM5_M_6 MVQO_;W?:XODO_:F___.E^W^C<7!5[/\I]S^01[T3>=3[-1K\>U]9_[_E1RV/ MWD:Y_P\'[<'F_*^C=\3S_]WNU^?_GN3:?(5'[N4T-I^)Y:0^B0BQ^>12&F0_ M:8&[+6#$6W^>$3]<;3YY.#"I?R_?+\0VK7@?F8'<^PTY,O65!.I'J<>EM,"T M=VK%JV8Y+%7#UZ?C\].SJ_-<(;:\ENW&X1R688LP7\G,.1$KT9V*R+$Q?V(E M6S[%OL%WF?/%_+GU7%EZEWQ:6!V5UO9+:P>Y6ECI&G/B M!HKB!5GE>V]Y*CV1D-T;#X&G$>:8N3I0]\XPV)1!AHKS;.Q0GD3DBKET_)D^ M2U5NXC!2E<^H2SQ5A>/?TT6^95&CZ*XH]S!;*,N)2Y2,/!J'!17WRG*?S\:* M$XTKTUB MSF.85YKU%2L)Z@^;Q-?G/\,1`4_R27[&K""!X+`'R9Q',S!".@V-N2*R55+^ M+]?T9Y/^"\UZY#-))]C[7$J"_<\D#1B-*$]:/INPOA.#T=3&NK&YJ&^3`JU1 M-Q]5RRGJ2\[1^>2H&!T8,Z$D(Q_^:Y`LZY,P)Z3^'H%!$M0/#!*_+W^COB4E M!/6-(B'80ZT)`7_0?X^9(R&K'HNSTTK(U=+YA)FUOE>K/T=0K?\<0;55YPBJ M#3M'D%\(5!+DUP:5!/GE0B7!V;X$/^Y+<%>;("(U\H?Q^1U=$K8GF+]66U`& M7FT_&7BU]63@U;:3@5=;3@9>;3>3V`])9/`ROKZ+&`FKHT.:B*L,?$_NU::9@5>;9@9>;9H9>'5`6\2^Y1BPG*A>34@HWX/8V1/9!7N8 MA7/YVC:J-9Z!5VL\!>_LQ[VS'W?#PY]J.-&O,9AAZPXO>"[EXIU=O2(*$]_7 MYDY<>^Y8A.[LD103W.]L1A5A]^.(;,=5# MFJ>;Q@R60\:,\9/8O:GG$'!^Q*Y'6;R_R!0OC&B):ZSM\Y0U=_]"GW\*G*@U MFF,:BDF@1F,*JFK#5U'5,'X552UC5A!61S\EU7[-[3.?;JF"G:W[,K1X!V]J M9!$*HGW&:D.TSU!MB/91^(9(F2TJ3QA%#0Y7]]@7:Q.E-E+URHZGZI5]3-4K MNY.J5TJ>JE4\3 M4'DO$U!Y#Q-0>>_FM"*`8LH[+S'E?5_,\2=L5326@,I;2T"UFBM7 M=0(J5[58[QK4-HRBJ&9:\+\F)RQMV%=N;"08XKH8%L_#OC(WD2"(^`!0ZD`" MPH@RWI!2`Q*2+-*'?:4"4I@.8)3]3S"Q[\-"=-A7CIOI1"N8J/EY_*JUQ$R= M#TF4L_/XS;8R.=85-VV.(94ERN!6"%8K*X\NEBZ-JN3UD?KJN3`-@@+-9AJ+ M';7)9*`%NXMID$^6%7U88-8R&2'!2BN<>)3`X@YSI,4<7[D-L4',*%N$Y7() M2'D[`J*VZ#6$_^9A==SS/RW1*ML-S0"! MM46*;6,-\V+FA(NXS.+6T#!B3>FO=:#4G\T+'EJ04"R"F1 MC\/DDSX5&'@WQVZ)^!Q5>FJVA;GBAQ"+8XX`R[&CY('J>42%K,^SV"?RR&*WR"/54XP*J9YH%,C:8M:6LK:0M654YEXJH'JJ M5P"5^Q$JH')C0@#DUJY`4UP2VQ,(+=PC3Z%FQ*N%\OF/P]9`BI5L M#5Q`Q6]&5@/E8K<4&.%[PGR0DD;SXFB6016[:`96;,YK6,$J/X\I8<23N5#> M:H$T#Q?'K#RP.,#DD?4DY$BEZUH1GD[%B6AYK;(962U/A'A-%89;@Y'_1H,: M95>ABL_1=E"5LDM-U4"I[2$-6N*"!U\EB/,HF9I3H`(#32%$@Q48H4ME0I$' MY;\2H00IMQ/S(.63="F0=*\J$+RH(/R;1I2)+Q&$K3L`3?@O8URN0D MBROX]LXNF->(.9QI-YD MVM2J1>"UR:Y),7D"J.2@G-O2`&4Z2OAF;Q;_&:LU$NY/`YN:I'3N(^Q M/U-O!V9@GF-9+I$?*L%R&6GLA2Y:=&:@$?^ZJL$*#HQVH3&K%#EP&/^[CJ"% M*HSXR=4RD&QXKGY2*@N2'*ME2S0T=Y3IZ2[*L$C!=PBR6+'_OZ2L3.=K[#UU MC7O'=8WB"*+$XYUOPZG!)O:5*^D<\!X46Z?U^V0SHQ@*%B:K,4L!F+%XNP("RE$6J# M2"/4@2F-4$"(=S4E^A$/F"AJA<[$8Z9 M>&!;4R[D\R"E)'F04IP\2#E*65"GCDR=.C)UZLC4J9*I8,V]!A0?3JP1?"HJ M.@#,84I;2C"EXB;34FE;R8S4LC2V7+(,LE3".5\6.-?%A]^K1J>DY! M[C_GTY+;PJ9C%29,">;_VCNWY;9M(`P_4>2)IWV`U'$.':=IIYY)[S0@14F, M28(ER*CRTW"C:V&].*"W&?<^IU&S,3CAILGM(19 MV8-WYTS.&F:4LS89Y:PY;/WGI*?RF3TSR=BSDHP](\E8NY.,-3?)X"3Y*(/S MXOK5U55QOCG(K-(Q6;B1I<.-$9]@T3$*+8%1:!@'U1O`8I+T;11S4/N/NKOP M">;`7-_,Q7!WU*&:@IU'=LE3+*FBTU3A-.VP2AEK?E/_XF5\E"=VZY\CDO:XL/SL__Z7OB>+,)-GR,V5&_FK*Q@IQ"AL9?D MPD:9[@)[[\DB$LT5$9@B!Y@-]!_'!FNZ87?JN(S(L\0NRVL] M$\KE"F8F]*^8MNAR.$E]39&E2V_-F&'>"SUQ7Z4J6FCO.G^^]*+]XBVS86!& M%*+#P5!FC!8$D$J>0GDA!!9\AK`K-9JA=HY97&G$-]%M)QN05X/&1=!X=-/H_#[BJ/PQXLC\-.+8_# M?NX,MWNUS2<<5&`T9.\9&K+U#`W9>8:&;&Q150\'KC/`PJ&RC8YYHVND:<9Y M]SQ6;R_JLO)XZ;.*3Z)40FW9"4I6L=+;8+[CA#5]#G!D/U,Q70FM6/"^"#P> MJB,.'JHG#AZJ*PX>NA\=7#]>4S3V>O=20$%[,_-S6@@,67`"0[:;P)#5)C!D MKPD,M5P3&&JS)A#ZK+4%/;KKFSL;3N47T75B&;(4D/9?!,?O<;L&W]H!?!A\ M;UPG'O1D7!A^$)FD0<8REB-B>3?4:_#S?E_FC!?`-?EGT7T3#5XC/PWL/X&W;4;>2[!RZ MTC,E\S4R/^9K9&;,5]@6+-E[_8A+L;I12+"[X5,L_Z(06=Q[CV/\DGY'\I3R M:CZAN!I/*>W$1Q8VKCG!"N8=1G%:'ZC7E%*,B8\LQL1'-PZ_TNBN*A@M0>9`?'GT@EXF:=X?KV2"B'QA/+H%42\O\Q3\D/T8G9(8V$W'PY:P_3 MWY@9G%%A]"O1V0YW;T;X?5$_LHX#U^A'O4?GD9T/O88_ZW"YL3#/*>JER.U. MZFW8-!H6K?81Y1Q/'3@3JHA%J9,GF"&`@TY$!,OLSG(H&SE5FHCR\#(@WK&_#CKX=%=4)?W`="0=E8IJYC8[=_3U-2GO*REA7>+5;IO=]ZCM^-XVKU0+ MO$/2T;@,B`<=U8YRAD.UA)1@XQQ2@GTTK-3H%96MFZ@ M+33:C6AV&\4$;\&X=K#=_!17C$GA8R*>RO\5R:N^/#PQWA@\'E-O&IE5Q99; MEUG`^I;*!-YH`N&]Z&)J05N(7.9PE<8AYWL#HW%Z\."9&TQW0L$%"4@W4NU) MHQ^B-;1_:51NS*T8:6Y^`Q`$-_1TC'TXCAH[>6I4+TH\N^/JR*P4\>`F[M;O M956U,JJNX85!M"A$%BAO2WXU$\%=W+JKG9" M^_,4JNCB&-@"7!CJ\>)H%A?`KM?Z3S0RWA,=RZI2_F0LXDW%;OWP)S,RWG0F M_T%O2A/E3:NM=*12?THCXTU'G43=^I.Q"),*#<]VI1ZJX16!WH:I,E4B&^"T MC$',ZT?5WX/`0POJ$-2"JFEI]I?1352W>KX'9QNS./^8A9T6A_7=BPYZ()`9 M>CAD4Q#CC0@,%3@G)!:.,9RE]3:!1!IV7!U<'>E15,#E6DQNB^5KNWSXB>E7 M0#RF@)9,N38V"&HMJ-V-*N@+'I6?%SRF:EOP'OOY.L]BH;N@,]MUK]QBG&]>N%TW,W#75;X73)"U8V>'?-"S$. M/_(Q7*.);)6BX1GC^57@-?"KP*NQ5+'1N6Z.]DMLWARMR.Q=M)BFCU&(S).M MU-XVGM-)N2Q7*G$VMG=1^EENXRZ^]?[DW35=DNOKSCC6&^N%417U\W74W4"! M)BY0BHD+V/02X]=/]3W]B4#6+!3(EX'P>_9<*)`2&RQNAAQEQP=Z,GM:/6&, MK3R7#3W8^^LWLSJ,^=QR]ID13)%F!'.YY@2[NG>%P8?"G.`NPHP(9C>[C#JN> M]+;KEAJ[1=`+I?OSBQ_UZT(Q?]D./__=IG%S1Z*G\ZO7&S$LA??4M=H^B.%P MQ.)_VDIJGT8H?:>;YD=90^'[H7GU,Y1\*GI1W>DI(RPN]9N<69'>1XEDOP]/ M!10L&HOQ]\="=%#AL2C4J6P.6*B?2G?Z7 MG>='[4`(@9Q:2VRKO"KU"PI9$3[AKF,RN=?AFK=]=X92&DAC;G=E]O#@"LEC<9+Y@JHX=5>-'LL.W%:_;$;M."_?NWY>JS' A>JS'>JS'>JS'>JS'>JS'>JS'>JS'_^;X%[4$Q+4`R``` ` end -- andreas@klemm.gtn.com /\/\___ Wiechers & Partner Datentechnik GmbH Andreas Klemm ___/\/\/ Support Unix -- andreas.klemm@wup.de pgp p-key http://www-swiss.ai.mit.edu/~bal/pks-toplev.html >>> powered by <<< ftp://sunsite.unc.edu/pub/Linux/system/Printing/aps-491.tgz >>> FreeBSD <<< From owner-freebsd-ports Sun Oct 27 09:32:03 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA02762 for ports-outgoing; Sun, 27 Oct 1996 09:32:03 -0800 (PST) Received: from originat.demon.co.uk (originat.demon.co.uk [158.152.220.9]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id JAA02741 for ; Sun, 27 Oct 1996 09:31:54 -0800 (PST) Received: (from paul@localhost) by originat.demon.co.uk (8.7.6/8.6.9) id RAA02678 for ports@FreeBSD.org; Sun, 27 Oct 1996 17:35:09 GMT From: Paul Richards Message-Id: <199610271735.RAA02678@originat.demon.co.uk> Subject: missing cvs directories To: ports@FreeBSD.org (ports) Date: Sun, 27 Oct 1996 17:35:09 +0000 (GMT) Reply-To: paul@FreeBSD.org Reply-to: paul@netcraft.co.uk X-Mailer: ELM [version 2.4 PL23] MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: owner-ports@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk I just tried to update ports (probably not done it in a while) and there were lots of missing repository directories. I just nuked the port and checked it out again the first few times but the third time (xemacs) I got suspicious that my tree was this badly smashed and took a look. I've got a directory /home/ports/editors/xemacs/patches which looks pretty old originat:xemacs/patches% ls -la total 4 drwxrwxr-x 3 root wheel 512 Jan 22 1996 ./ drwxrwxr-x 6 root wheel 512 Oct 27 17:22 ../ drwxrwxr-x 2 root wheel 512 Jan 22 1996 CVS/ -rw-rw-r-- 1 root wheel 596 Jun 20 1995 patch-ab and this directory isn't in the repository anymore originat:editors/xemacs% pwd /home/ncvs/ports/editors/xemacs originat:editors/xemacs% ls -la total 12 drwxrwxr-x 4 root daemon 512 Oct 27 17:22 ./ drwxrwxr-x 22 root daemon 512 Oct 27 17:21 ../ -rw-rw-r-- 1 root daemon 7374 Aug 21 14:18 Makefile,v drwxrwxr-x 2 root daemon 512 Oct 27 17:22 files/ drwxrwxr-x 2 root daemon 512 Jul 30 00:24 pkg/ Anyone know what happened? Things aren't supposed to totally vanish like that. As I said, xemacs was the third, I remember the first was archive/zip/patches and the second was cad/pcb/patches. The scary thing is that none of these ports now have patches, did someone simply nuke the patches directory from the cvs repository because they thought it wasn't needed anymore? -- Paul Richards, Originative Solutions Ltd. Internet: paul@netcraft.co.uk, http://www.netcraft.co.uk Phone: 0370 462071 (Mobile), +44 1225 447500 (work) From owner-freebsd-ports Sun Oct 27 10:56:14 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id KAA07124 for ports-outgoing; Sun, 27 Oct 1996 10:56:14 -0800 (PST) Received: from po1.glue.umd.edu (po1.glue.umd.edu [129.2.128.44]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id KAA07119; Sun, 27 Oct 1996 10:56:12 -0800 (PST) Received: from modem.eng.umd.edu (modem.eng.umd.edu [129.2.98.187]) by po1.glue.umd.edu (8.8.2/8.7.3) with ESMTP id NAA14428; Sun, 27 Oct 1996 13:56:09 -0500 (EST) Received: from localhost (chuckr@localhost) by modem.eng.umd.edu (8.7.5/8.7.3) with SMTP id NAA04552; Sun, 27 Oct 1996 13:55:43 -0500 (EST) X-Authentication-Warning: modem.eng.umd.edu: chuckr owned process doing -bs Date: Sun, 27 Oct 1996 13:55:42 -0500 (EST) From: Chuck Robey X-Sender: chuckr@modem.eng.umd.edu To: paul@FreeBSD.org, paul@netcraft.co.uk cc: ports Subject: Re: missing cvs directories In-Reply-To: <199610271735.RAA02678@originat.demon.co.uk> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk On Sun, 27 Oct 1996, Paul Richards wrote: > I just tried to update ports (probably not done it in a while) and > there were lots of missing repository directories. I just nuked the > port and checked it out again the first few times but the third time > (xemacs) I got suspicious that my tree was this badly smashed and > took a look. > > I've got a directory > > /home/ports/editors/xemacs/patches > > Anyone know what happened? Things aren't supposed to totally vanish > like that. As I said, xemacs was the third, I remember the first > was archive/zip/patches and the second was cad/pcb/patches. The > scary thing is that none of these ports now have patches, did > someone simply nuke the patches directory from the cvs repository > because they thought it wasn't needed anymore? I just checked zip and xemacs, they do have the patches dir missing, but they both build fine, regardless. ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@eng.umd.edu | communications topic, C programming, and Unix. 9120 Edmonston Ct #302 | Greenbelt, MD 20770 | I run Journey2 and n3lxx, both FreeBSD (301) 220-2114 | version 2.2 current -- and great FUN! ----------------------------+----------------------------------------------- From owner-freebsd-ports Sun Oct 27 12:48:30 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id MAA12013 for ports-outgoing; Sun, 27 Oct 1996 12:48:30 -0800 (PST) Received: from originat.demon.co.uk (originat.demon.co.uk [158.152.220.9]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id MAA12008 for ; Sun, 27 Oct 1996 12:48:24 -0800 (PST) Received: (from paul@localhost) by originat.demon.co.uk (8.7.6/8.6.9) id UAA09657 for ports@FreeBSD.org; Sun, 27 Oct 1996 20:27:11 GMT From: Paul Richards Message-Id: <199610272027.UAA09657@originat.demon.co.uk> Subject: Missing cvs directories To: ports@FreeBSD.org (ports) Date: Sun, 27 Oct 1996 20:27:11 +0000 (GMT) Reply-to: paul@netcraft.co.uk X-Mailer: ELM [version 2.4 PL23] MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: owner-ports@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk The final tally was: /home/ncvs/ports/archivers/zip/patches /home/ncvs/ports/cad/pcb/patches /home/ncvs/ports/editors/xemacs/patches /home/ncvs/ports/games/acm/patches /home/ncvs/ports/games/gnuchess/patches /home/ncvs/ports/japanese/ghostscript/scripts /home/ncvs/ports/japanese/xdvi/scripts /home/ncvs/ports/net/dhcp /home/ncvs/ports/plan9/es /home/ncvs/ports/print/dvi2xx/files /home/ncvs/ports/print/latex/files /home/ncvs/ports/print/latex209/files /home/ncvs/ports/print/mltex/files /home/ncvs/ports/print/psutils/patches /home/ncvs/ports/print/tex/files /home/ncvs/ports/russian/netscape.language /home/ncvs/ports/sysutils/manck/patches /home/ncvs/ports/www/netscape these directories all used to exist in the cvs repository and no longer do. -- Paul Richards, Originative Solutions Ltd. Internet: paul@netcraft.co.uk, http://www.netcraft.co.uk Phone: 0370 462071 (Mobile), +44 1225 447500 (work) From owner-freebsd-ports Sun Oct 27 13:47:39 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id NAA17836 for ports-outgoing; Sun, 27 Oct 1996 13:47:39 -0800 (PST) Received: from bdd.net (bdd.net [207.61.119.1]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id NAA17780; Sun, 27 Oct 1996 13:47:20 -0800 (PST) Received: from localhost (james@localhost) by bdd.net (8.7.5/8.7.3) with SMTP id QAA28155; Sun, 27 Oct 1996 16:43:33 -0500 (EST) Date: Sun, 27 Oct 1996 16:43:29 -0500 (EST) From: James FitzGibbon To: Masafumi NAKANE cc: freebsd-ports@freefall.freebsd.org, jfitz@freefall.freebsd.org Subject: Re: ports/1840 In-Reply-To: <199610270606.XAA09673@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Sat, 26 Oct 1996, Masafumi NAKANE wrote: > Synopsis: mail/majordomo/scripts/configure, can't run under perl-5 installed machine > > Responsible-Changed-From-To: freebsd-ports->jfitz > Responsible-Changed-By: max > Responsible-Changed-When: Sat Oct 26 23:05:00 PDT 1996 > Responsible-Changed-Why: > James is the port maintainer. I tried using edit-pr on freefall, but I have no idea how to change the status or responsibility. The problem is moot - the person was not using the current port. I upgraded the port to v1.94 two days ago, and this particular script was rewritten to use /usr/bin/perl instead of just 'perl'. If you could please close the PR, or give me some hint as to what I have to do once I'm in edit-pr, I'd appreciate it. -- j. ---------------------------------------------------------------------------- | James FitzGibbon james@nexis.net | | Integrator, The Nexis Group Voice/Fax : 416 410-0100 | ---------------------------------------------------------------------------- From owner-freebsd-ports Sun Oct 27 14:51:29 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id OAA22175 for ports-outgoing; Sun, 27 Oct 1996 14:51:29 -0800 (PST) Received: from irz301.inf.tu-dresden.de (irz301.inf.tu-dresden.de [141.76.1.11]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id OAA22162; Sun, 27 Oct 1996 14:51:18 -0800 (PST) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by irz301.inf.tu-dresden.de (8.6.12/8.6.12-s1) with ESMTP id XAA07353; Sun, 27 Oct 1996 23:50:43 +0100 Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id XAA13009; Sun, 27 Oct 1996 23:50:42 +0100 Received: (from j@localhost) by uriah.heep.sax.de (8.7.6/8.6.9) id XAA14065; Sun, 27 Oct 1996 23:24:26 +0100 (MET) From: J Wunsch Message-Id: <199610272224.XAA14065@uriah.heep.sax.de> Subject: Re: ports/1840 To: james@nexis.net (James FitzGibbon) Date: Sun, 27 Oct 1996 23:24:26 +0100 (MET) Cc: max@freefall.freebsd.org, freebsd-ports@freefall.freebsd.org, jfitz@freefall.freebsd.org Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: from James FitzGibbon at "Oct 27, 96 04:43:29 pm" X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E X-Mailer: ELM [version 2.4ME+ PL17 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk As James FitzGibbon wrote: > If you could please close the PR, or give me some hint as to what I have > to do once I'm in edit-pr, I'd appreciate it. Simply edit the field values in the >Status: line. edit-pr checks afterwards whether you have used one of the legal keywords for it (open, closed, suspended, feedback). If so, you're presented another editor session to state the reason of the change. This text will be appended to the audit-trail in the PR. -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-ports Sun Oct 27 16:02:46 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id QAA26952 for ports-outgoing; Sun, 27 Oct 1996 16:02:46 -0800 (PST) Received: from hamby1.lightside.net (hamby1.lightside.net [207.67.176.17]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id QAA26938 for ; Sun, 27 Oct 1996 16:02:37 -0800 (PST) Received: from localhost (jehamby@localhost) by hamby1.lightside.net (8.8.2/8.8.2) with SMTP id QAA03249 for ; Sun, 27 Oct 1996 16:05:56 -0800 (PST) X-Authentication-Warning: hamby1.lightside.net: jehamby owned process doing -bs Date: Sun, 27 Oct 1996 16:05:55 -0800 (PST) From: Jake Hamby X-Sender: jehamby@hamby1 To: ports@freebsd.org Subject: Question about PLIST Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk I'm almost done with my ports of Marimba's Castanet Tuner and Bongo, and I have a question about the PLIST file. Both programs are written in Java, and consist of hundreds of .class files. In the installation Makefile, I'm using pax to transfer the entire directory to /usr/local/lib/castanet or /usr/local/lib/bongo respectively. I really didn't want to list every single file in the PLIST, especially since the exact number and names of the .class files is likely to change between versions. So I just put the directory names in the PLIST. Sure enough, when I typed "make package", it put the correct files in the tarball. Unfortunately, when I try pkg_delete, it complains because it tries to delete the directories as files, and obviously fails. I can put a @dirrm at the end of the PLIST, but the warning messages are annoying. Also, I was having second thoughts, since EVERY OTHER PACKAGE seems to list filenames individually in the PLIST. I can balloon the PLIST out to 10k by listing each file manually, but then I can't get the package builder to add empty subdirectories and directory symlinks into the package tarball! I think I'm just going to go back to the original method of listing only the directory name, and ignore the warning messages from pkg_delete (and have it use @dirrm to remove the entire /usr/local/lib/castanet directory). Can somebody more familiar with building ports tell me whether this is acceptable or if I must list each file manually (which I don't want to do)? Thanks in advance! -- Jake From owner-freebsd-ports Sun Oct 27 21:59:37 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id VAA01855 for ports-outgoing; Sun, 27 Oct 1996 21:59:37 -0800 (PST) Received: from who.cdrom.com (who.cdrom.com [204.216.27.3]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id VAA01835 for ; Sun, 27 Oct 1996 21:59:34 -0800 (PST) Received: from po1.glue.umd.edu (po1.glue.umd.edu [129.2.128.44]) by who.cdrom.com (8.7.5/8.6.11) with ESMTP id RAA22594 for ; Sun, 27 Oct 1996 17:13:55 -0800 (PST) Received: from thurston.eng.umd.edu (thurston.eng.umd.edu [129.2.103.25]) by po1.glue.umd.edu (8.8.2/8.7.3) with ESMTP id UAA26381; Sun, 27 Oct 1996 20:10:28 -0500 (EST) Received: from localhost (chuckr@localhost) by thurston.eng.umd.edu (8.7.5/8.7.3) with SMTP id UAA03927; Sun, 27 Oct 1996 20:10:27 -0500 (EST) X-Authentication-Warning: thurston.eng.umd.edu: chuckr owned process doing -bs Date: Sun, 27 Oct 1996 20:10:26 -0500 (EST) From: Chuck Robey X-Sender: chuckr@thurston.eng.umd.edu To: Jake Hamby cc: ports@freebsd.org Subject: Re: Question about PLIST In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Sun, 27 Oct 1996, Jake Hamby wrote: > I'm almost done with my ports of Marimba's Castanet Tuner and Bongo, and I > have a question about the PLIST file. > > Both programs are written in Java, and consist of hundreds of .class > files. In the installation Makefile, I'm using pax to transfer the entire > directory to /usr/local/lib/castanet or /usr/local/lib/bongo respectively. > > I really didn't want to list every single file in the PLIST, especially > since the exact number and names of the .class files is likely to change > between versions. So I just put the directory names in the PLIST. Sure > enough, when I typed "make package", it put the correct files in the > tarball. > > Unfortunately, when I try pkg_delete, it complains because it tries to > delete the directories as files, and obviously fails. I can put a @dirrm > at the end of the PLIST, but the warning messages are annoying. Also, I > was having second thoughts, since EVERY OTHER PACKAGE seems to list > filenames individually in the PLIST. I can balloon the PLIST out to 10k > by listing each file manually, but then I can't get the package builder to > add empty subdirectories and directory symlinks into the package tarball! What empty subdirs? Why does the application need empty subdirs? That's easily gotten around by making 0 sized files, but why? > > I think I'm just going to go back to the original method of listing only > the directory name, and ignore the warning messages from pkg_delete > (and have it use @dirrm to remove the entire /usr/local/lib/castanet > directory). Can somebody more familiar with building ports tell me > whether this is acceptable or if I must list each file manually (which I > don't want to do)? Thanks in advance! > > -- Jake > > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@eng.umd.edu | communications topic, C programming, and Unix. 9120 Edmonston Ct #302 | Greenbelt, MD 20770 | I run Journey2 and n3lxx, both FreeBSD (301) 220-2114 | version 2.2 current -- and great FUN! ----------------------------+----------------------------------------------- From owner-freebsd-ports Mon Oct 28 00:00:04 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id AAA11335 for ports-outgoing; Mon, 28 Oct 1996 00:00:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id AAA11303; Mon, 28 Oct 1996 00:00:02 -0800 (PST) Resent-Date: Mon, 28 Oct 1996 00:00:02 -0800 (PST) Resent-Message-Id: <199610280800.AAA11303@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, Received: (from nobody@localhost)by.freefall.freebsd.org.id.XAA11187;Sun; (8.7.5/8.7.3);, 27 Oct 1996 23:56:17.-0800 (PST) Message-Id: <199610280756.XAA11187@freefall.freebsd.org> Date: Sun, 27 Oct 1996 23:56:17 -0800 (PST) From: Nakai@Mlab.t.u-tokyo.ac.jp To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/1911: New port: GIFTool Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 1911 >Category: ports >Synopsis: New port: GIFTool >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 28 00:00:01 PST 1996 >Last-Modified: >Originator: Yukihiro Nakai >Organization: University of Tokyo >Release: 2.1.0R, 2.2-1014SNAP >Environment: >Description: I have made new port 'GIFtool' for FreeBSD. It is a very useful tool when making GIF transparency and Interlace mode. ftp://ftp.noc.titech.ac.jp/pub/tmp/aki/in.coming/giftool.tgz Yukihiro Nakai >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-ports Mon Oct 28 00:00:06 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id AAA11366 for ports-outgoing; Mon, 28 Oct 1996 00:00:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id AAA11330; Mon, 28 Oct 1996 00:00:04 -0800 (PST) Resent-Date: Mon, 28 Oct 1996 00:00:04 -0800 (PST) Resent-Message-Id: <199610280800.AAA11330@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, Received: (from nobody@localhost)by.freefall.freebsd.org.id.XAA11220;Sun; (8.7.5/8.7.3);, 27 Oct 1996 23:57:09.-0800 (PST) Message-Id: <199610280757.XAA11220@freefall.freebsd.org> Date: Sun, 27 Oct 1996 23:57:09 -0800 (PST) From: Nakai@Mlab.t.u-tokyo.ac.jp To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/1912: New port: GIFtrans Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 1912 >Category: ports >Synopsis: New port: GIFtrans >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 28 00:00:03 PST 1996 >Last-Modified: >Originator: Yukihiro Nakai >Organization: University of Tokyo >Release: 2.1.0R, 2.2-1014SNAP >Environment: >Description: I have made new port 'GIFtrans' for FreeBSD. It is a very useful tool when making GIF transparency. ftp://ftp.noc.titech.ac.jp/pub/tmp/aki/in.coming/giftrans.tgz Yukihiro Nakai >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-ports Mon Oct 28 02:52:24 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id CAA19089 for ports-outgoing; Mon, 28 Oct 1996 02:52:24 -0800 (PST) Received: (from jfitz@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id CAA19070; Mon, 28 Oct 1996 02:52:22 -0800 (PST) Date: Mon, 28 Oct 1996 02:52:22 -0800 (PST) From: James FitzGibbon Message-Id: <199610281052.CAA19070@freefall.freebsd.org> To: jfitz, freebsd-ports, jfitz Subject: Re: ports/1912 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: New port: GIFtrans Responsible-Changed-From-To: freebsd-ports->jfitz Responsible-Changed-By: jfitz Responsible-Changed-When: Mon Oct 28 02:51:29 PST 1996 Responsible-Changed-Why: I have to learn how to use GNATS sometime.... No time like the present! From owner-freebsd-ports Mon Oct 28 05:10:04 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id FAA24684 for ports-outgoing; Mon, 28 Oct 1996 05:10:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id FAA24678; Mon, 28 Oct 1996 05:10:02 -0800 (PST) Resent-Date: Mon, 28 Oct 1996 05:10:02 -0800 (PST) Resent-Message-Id: <199610281310.FAA24678@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, simonm@dcs.gla.ac.uk Received: from vanuata (vanuata.dcs.gla.ac.uk [130.209.240.50]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id FAA24539 for ; Mon, 28 Oct 1996 05:06:42 -0800 (PST) Received: from solander.dcs.gla.ac.uk (actually host solander) by vanuata with SMTP (MMTA) with ESMTP; Mon, 28 Oct 1996 13:06:37 +0000 Received: (from simonm@localhost) by solander.dcs.gla.ac.uk (8.7.5/8.7.3) id NAA22385; Mon, 28 Oct 1996 13:06:15 GMT Message-Id: <199610281306.NAA22385@solander.dcs.gla.ac.uk> Date: Mon, 28 Oct 1996 13:06:15 GMT From: simonm@dcs.gla.ac.uk Reply-To: simonm@dcs.gla.ac.uk To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/1913: new port of cgoban-1.6.2 Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 1913 >Category: ports >Synopsis: new port of cgoban-1.6.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 28 05:10:01 PST 1996 >Last-Modified: >Originator: Simon Marlow >Organization: University of Glasgow >Release: any >Environment: >Description: Cgoban (Complete Goban) is for Unix systems with X11. It has the ability to be a computerized go board, view and edit smart-go files, and connect to go servers on the Internet. port is in ftp://freefall.cdrom.com/pub/incoming/cgoban-port.tar.gz >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-ports Mon Oct 28 07:03:09 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id HAA29170 for ports-outgoing; Mon, 28 Oct 1996 07:03:09 -0800 (PST) Received: from fallout.campusview.indiana.edu (fallout.campusview.indiana.edu [149.159.1.1]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id HAA29157; Mon, 28 Oct 1996 07:03:03 -0800 (PST) Received: from localhost (jfieber@localhost) by fallout.campusview.indiana.edu (8.7.6/8.7.3) with SMTP id KAA07527; Mon, 28 Oct 1996 10:01:54 -0500 (EST) Date: Mon, 28 Oct 1996 10:01:53 -0500 (EST) From: John Fieber To: Stefan Franziskus cc: www@freebsd.org, ports@freebsd.org Subject: Re: www.freebsd.org/ports/index.html In-Reply-To: <3274B960.5F90@cs.uni-sb.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Mon, 28 Oct 1996, Stefan Franziskus wrote: > First of all, I have to say, that I really appreciate the very well > maintained ports collection on the FreeBSD-Page. But I think it would > be nice to have a list of "new ports", just to show what has been > added recently (or during the last 4 weeks) to the Ports Collection. This is something I want very much, in addition to recently changed/updated ports. Unfortunately, the current mechanism for generating the ports pages doesn't easily lend itself to such features. I have a little perl program that reads the ports INDEX file and spits out HTML, but the INDEX file contains no date information. This could be changed. For example, here is a port Makefile: # New ports collection makefile for: rplay - Network audio player # Version required: 3.2.0b3 # Date created: 16 March 1995 # Whom: rmallory@csusb.edu # # $Id: Makefile,v 1.5 1996/10/03 14:13:05 adam Exp $ # DISTNAME= rplay-3.2.0b5 CATEGORIES+= audio MASTER_SITES= ftp://ftp.sdsu.edu/pub/rplay/ HAS_CONFIGURE= yes USE_GMAKE= yes .include The commented stuff at the top is good to have, although "Version required:" is somewhat redundant, but it isn't easily accessible. The date created and creator should be variables. The date format would then have to be standardized (eg 19950316), and another field indicating the date of last change would have to be added. Unfortunately RCS keywords cannot reliably be used for the update date as updates do not necessairly involve the Makefile. (Is there an RCS keyword for import date?) As far as I can tell, a manual update would be required. A more useful makefile might look something like this: # $Id: Makefile,v 1.5 1996/10/03 14:13:05 adam Exp $ COMMENT= Network audio player CREATOR= rmallory@csusb.edu CREATED= 19950316 UPDATED= 19950316 DISTNAME= rplay-3.2.0b5 CATEGORIES+= audio MASTER_SITES= ftp://ftp.sdsu.edu/pub/rplay/ HAS_CONFIGURE= yes USE_GMAKE= yes .include Comments from the ports team? -john == jfieber@indiana.edu =========================================== == http://fallout.campusview.indiana.edu/~jfieber ================ From owner-freebsd-ports Mon Oct 28 08:17:17 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id IAA04621 for ports-outgoing; Mon, 28 Oct 1996 08:17:17 -0800 (PST) Received: from pillar.elsevier.co.uk (root@pillar.elsevier.co.uk [193.131.222.35]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id IAA04613 for ; Mon, 28 Oct 1996 08:17:13 -0800 (PST) Received: from snowdon.elsevier.co.uk (snowdon.elsevier.co.uk [193.131.197.164]) by pillar.elsevier.co.uk (8.8.2/8.8.0) with ESMTP id QAA11886 for ; Mon, 28 Oct 1996 16:14:11 GMT Received: from cadair.elsevier.co.uk by snowdon.elsevier.co.uk with SMTP (PP); Mon, 28 Oct 1996 16:16:32 +0000 Received: from tees.elsevier.co.uk (tees.elsevier.co.uk [193.131.197.60]) by cadair.elsevier.co.uk (8.8.2/8.8.0) with ESMTP id QAA23748; Mon, 28 Oct 1996 16:16:25 GMT Received: (from dpr@localhost) by tees.elsevier.co.uk (8.8.2/8.8.0) id QAA21310; Mon, 28 Oct 1996 16:15:21 GMT To: Chuck Robey Cc: ports Subject: Re: missing cvs directories References: From: Paul Richards Date: 28 Oct 1996 16:15:20 +0000 In-Reply-To: Chuck Robey's message of Sun, 27 Oct 1996 13:55:42 -0500 (EST) Message-ID: <57683vysiv.fsf@tees.elsevier.co.uk> Lines: 15 X-Mailer: Gnus v5.3/Emacs 19.30 Sender: owner-ports@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk Chuck Robey writes: > I just checked zip and xemacs, they do have the patches dir missing, but > they both build fine, regardless. That's not the issue. Someone/something has deleted these directories from the *repository*. You can no longer check out code that once existed. That's not supposed to happen (particularly not on this scale, it was quite a list by the time I'd finished). -- Paul Richards. Originative Solutions Ltd. (Netcraft Ltd. contractor) Elsevier Science TIS online journal project. Email: p.richards@elsevier.co.uk Phone: 0370 462071 (Mobile), +44 (0)1865 843155 From owner-freebsd-ports Mon Oct 28 09:38:50 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA14143 for ports-outgoing; Mon, 28 Oct 1996 09:38:50 -0800 (PST) Received: from covina.lightside.com (covina.lightside.com [207.67.176.1]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id JAA14138 for ; Mon, 28 Oct 1996 09:38:47 -0800 (PST) Received: from localhost (jehamby@localhost) by covina.lightside.com (8.8.2/8.8.2) with SMTP id JAA01159; Mon, 28 Oct 1996 09:38:29 -0800 (PST) Date: Mon, 28 Oct 1996 09:38:29 -0800 (PST) From: Jake Hamby To: Chuck Robey cc: ports@FreeBSD.org Subject: Re: Question about PLIST In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk On Sun, 27 Oct 1996, Chuck Robey wrote: > What empty subdirs? Why does the application need empty subdirs? > > That's easily gotten around by making 0 sized files, but why? Okay, that makes sense, and come to think of it, I don't need to make an empty subdir (it's created the first time it's needed). However, I have an even bigger problem with uninstalling than I first reported. The @dirrm directive will only cause pkg_delete to delete EMPTY subdirectories. However, when the user clicks "Update Tuner", it will cause additional files to be dumped into /usr/local/lib/castanet/tuner that the package utility won't know about. I could write a shell script for uninstall to forcably remove /usr/local/lib/castanet, but that seems excessive. It looks like I'm going to have to manually add all the filenames to PLIST just to keep pkg_delete reasonably happy, and then in addition make an uninstall script to delete the new files that have showed up. What a lot of extra trouble, though! -- Jake From owner-freebsd-ports Mon Oct 28 11:06:11 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id LAA21135 for ports-outgoing; Mon, 28 Oct 1996 11:06:11 -0800 (PST) Received: from bacall.lodgenet.com (bacall.lodgenet.com [205.138.147.242]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id LAA21121; Mon, 28 Oct 1996 11:06:02 -0800 (PST) Received: (from mail@localhost) by bacall.lodgenet.com (8.6.12/8.6.12) id NAA20633; Mon, 28 Oct 1996 13:05:44 -0600 Received: from garbo.lodgenet.com(204.124.123.250) by bacall via smap (V1.3) id sma020630; Mon Oct 28 13:05:36 1996 Received: from jake.lodgenet.com (jake.lodgenet.com [204.124.120.30]) by garbo.lodgenet.com (8.6.12/8.6.9) with ESMTP id NAA23489; Mon, 28 Oct 1996 13:05:41 -0600 Received: from jake.lodgenet.com (localhost [127.0.0.1]) by jake.lodgenet.com (8.7.6/8.6.12) with ESMTP id NAA07019; Mon, 28 Oct 1996 13:05:36 -0600 (CST) Message-Id: <199610281905.NAA07019@jake.lodgenet.com> X-Mailer: exmh version 1.6.9 8/22/96 To: ports@freebsd.org cc: msmith@freebsd.org, erich@freebsd.org Subject: linux_devel 0.0 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 28 Oct 1996 13:05:36 -0600 From: "Eric L. Hernes" Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Ok, here's a quick hack at a cross development port. I haven't done the port framework yet, but the thing can be used. have a look at freefall:~erich/linux_devel-0.0.tar.gz; extract it in /compat The tar is ~10 Meg, extracted it's ~30 Meg. Mike, did I miss something? I've successfully built xanim27063, in ELF, I haven't tried any a.out stuff. I won't have time to get back to this 'til later this week. eric. -- erich@lodgenet.com http://rrnet.com/~erich erich@rrnet.com From owner-freebsd-ports Mon Oct 28 12:56:15 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id MAA02285 for ports-outgoing; Mon, 28 Oct 1996 12:56:15 -0800 (PST) Received: from mail.cs.tu-berlin.de (root@mail.cs.tu-berlin.de [130.149.17.13]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id MAA02195; Mon, 28 Oct 1996 12:55:48 -0800 (PST) Received: from campa.panke.de (anonymous214.ppp.cs.tu-berlin.de [130.149.17.214]) by mail.cs.tu-berlin.de (8.6.13/8.6.12) with ESMTP id VAA22520; Mon, 28 Oct 1996 21:42:32 +0100 Received: (from wosch@localhost) by campa.panke.de (8.6.12/8.6.12) id VAA00635; Mon, 28 Oct 1996 21:40:24 +0100 Date: Mon, 28 Oct 1996 21:40:24 +0100 From: Wolfram Schneider Message-Id: <199610282040.VAA00635@campa.panke.de> To: John Fieber Cc: Stefan Franziskus , www@freebsd.org, ports@freebsd.org, wosch@de.freebsd.org Subject: Re: www.freebsd.org/ports/index.html In-Reply-To: References: <3274B960.5F90@cs.uni-sb.de> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk John Fieber writes: >On Mon, 28 Oct 1996, Stefan Franziskus wrote: > >> First of all, I have to say, that I really appreciate the very well >> maintained ports collection on the FreeBSD-Page. But I think it would >> be nice to have a list of "new ports", just to show what has been >> added recently (or during the last 4 weeks) to the Ports Collection. > >This is something I want very much, in addition to recently >changed/updated ports. Unfortunately, the current mechanism for >generating the ports pages doesn't easily lend itself to such >features. No problem. We are running Unix ;-) cvs -Q co -p ports/INDEX | awk -F'|' '{print $2}'| sort > /tmp/now cvs -Q co -p -D'last week' ports/INDEX | awk -F'|' '{print $2}' | sort > /tmp/lastweek comm -13 /tmp/lastweek /tmp/now This print all ports which was added last 7 days. It is fast and easy. For last 4 weeks, change 'last week' to 'last month'. /usr/ports/archivers/p5-Compress-Zlib /usr/ports/databases/p5-DBD-mSQL /usr/ports/databases/p5-DBI /usr/ports/databases/p5-Msql /usr/ports/databases/p5-Pg /usr/ports/devel/cxref /usr/ports/devel/p5-BSD-Resource /usr/ports/devel/p5-C-Scan /usr/ports/devel/p5-ConfigReader /usr/ports/devel/p5-Curses /usr/ports/devel/p5-Data-Dumper /usr/ports/devel/p5-Data-Flow /usr/ports/devel/p5-File-BasicFlock /usr/ports/devel/p5-File-Lock /usr/ports/devel/p5-File-Slurp /usr/ports/devel/p5-File-Tools /usr/ports/devel/p5-Include /usr/ports/devel/p5-IniConf /usr/ports/devel/p5-Ioctl /usr/ports/devel/p5-Time /usr/ports/graphics/p5-Image-Size /usr/ports/japanese/today /usr/ports/misc/p5-Array-PrintCols /usr/ports/misc/p5-Business-CreditCard /usr/ports/misc/p5-Convert-UU /usr/ports/misc/p5-Search /usr/ports/net/p5-Archie /usr/ports/net/p5-IO /usr/ports/net/p5-Net /usr/ports/security/p5-Crypt-DES /usr/ports/security/p5-Crypt-IDEA /usr/ports/security/p5-MD5 /usr/ports/security/p5-PGP --Wolfram Schneider From owner-freebsd-ports Mon Oct 28 13:10:06 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id NAA03064 for ports-outgoing; Mon, 28 Oct 1996 13:10:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id NAA03058; Mon, 28 Oct 1996 13:10:03 -0800 (PST) Resent-Date: Mon, 28 Oct 1996 13:10:03 -0800 (PST) Resent-Message-Id: <199610282110.NAA03058@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, jkh@red.asis.com Received: from red.asis.com (red.asis.com [206.99.112.176]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id NAA02907 for ; Mon, 28 Oct 1996 13:06:26 -0800 (PST) Received: (from jkh@localhost) by red.asis.com (8.8.2/8.7.3) id NAA28059; Mon, 28 Oct 1996 13:06:33 -0800 (PST) Message-Id: <199610282106.NAA28059@red.asis.com> Date: Mon, 28 Oct 1996 13:06:33 -0800 (PST) From: Jordan Hubbard Reply-To: jkh@red.asis.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/1917: Apache/SSL port installs incorrect version Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 1917 >Category: ports >Synopsis: Apache/SSL port installs incorrect version >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 28 13:10:01 PST 1996 >Last-Modified: >Originator: Jordan Hubbard >Organization: ASIS Internet Services >Release: FreeBSD 2.2-CURRENT i386 >Environment: The usual -current. >Description: When installing the Apache/SSL port with SECURE_SERVER on, the install rule attempts to install httpd still instead of httpsd, which is what is built. >How-To-Repeat: See above. >Fix: Make install rule conditionalize on SECURE_SERVER to install either httpsd or httpd. >Audit-Trail: >Unformatted: Jordan Hubbard From owner-freebsd-ports Mon Oct 28 14:47:57 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id OAA09330 for ports-outgoing; Mon, 28 Oct 1996 14:47:57 -0800 (PST) Received: from fallout.campusview.indiana.edu (fallout.campusview.indiana.edu [149.159.1.1]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id OAA09308 for ; Mon, 28 Oct 1996 14:47:52 -0800 (PST) Received: from localhost (jfieber@localhost) by fallout.campusview.indiana.edu (8.7.6/8.7.3) with SMTP id RAA08650; Mon, 28 Oct 1996 17:46:34 -0500 (EST) Date: Mon, 28 Oct 1996 17:46:33 -0500 (EST) From: John Fieber To: Wolfram Schneider cc: ports@freebsd.org, wosch@de.freebsd.org Subject: Re: www.freebsd.org/ports/index.html In-Reply-To: <199610282040.VAA00635@campa.panke.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Mon, 28 Oct 1996, Wolfram Schneider wrote: > No problem. We are running Unix ;-) > > cvs -Q co -p ports/INDEX | > awk -F'|' '{print $2}'| sort > /tmp/now > cvs -Q co -p -D'last week' ports/INDEX | > awk -F'|' '{print $2}' | sort > /tmp/lastweek > comm -13 /tmp/lastweek /tmp/now > > This print all ports which was added last 7 days. It is fast > and easy. For last 4 weeks, change 'last week' to 'last month'. Except that the INDEX file is updated on a very ad-hoc basis. But, if I have a copy of the ports tree checked out on freefall, then I can generate a new INDEX on a regular basis. Because of the current irregularity, I may opt for this anyway. However, just using the INDEX file will fail in detecting many updates because only a few selected bits of the Makefile are reflected the INDEX. With a checked out ports tree, I'll have to dig through the CVS directories to discover the most recent date change. Maybe the Makefile target that generates INDEX could do this? Hmmm.... -john == jfieber@indiana.edu =========================================== == http://fallout.campusview.indiana.edu/~jfieber ================ From owner-freebsd-ports Mon Oct 28 15:23:43 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id PAA14275 for ports-outgoing; Mon, 28 Oct 1996 15:23:43 -0800 (PST) Received: from idiom.com (root@idiom.com [140.174.82.4]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id PAA14262 for ; Mon, 28 Oct 1996 15:23:37 -0800 (PST) Received: (from muir@localhost) by idiom.com (8.8.2/8.8.2) id PAA12157; Mon, 28 Oct 1996 15:22:15 -0800 (PST) Date: Mon, 28 Oct 1996 15:22:15 -0800 (PST) From: David Muir Sharnoff Message-Id: <199610282322.PAA12157@idiom.com> To: James FitzGibbon Cc: freebsd-ports@freebsd.org In-Reply-To: <5449qi$g8d@idiom.com> Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk I'm very happy to hear you're doing this! I was tempted to do it myself, but lacked the round toits. The naming scheme that I was going to use was simply to copy the name of the module as it is stored in CPAN. Put them all in a separate directory (/usr/ports/perl). CPAN's Time-modules-96.100201.tar.gz becomes /usr/ports/perl/Time-modules. It appears that there aren't many modules that have :'s in their name as they are stored in CPAN. In fact, there might not be any. If you combine this thread with with one about porting the ports to other architectures, the obvious thing would be to mirror this ports directory back into CPAN (along with a ports-installer module) so that everyone in the perl community can take advantage of them too! Anyway, good luck and thanks! -Dave * I'm about to commit a dozen perl5 ports, with many more to come. I'd like * comments on the naming scheme I should use for both the directory and * PKGNAME. * * Perl5 references it's modules. using double colons, an allowable character * in a filename. The module that deals with routines mimicking ctime() * would be called Time::CTime. This is how you include them in source, and * it's how module authors refer to them in dependancy lists. * * I would like to use this in the package, and preferably the directory * name, prefixed by perl5: * * So, the above module's PKGNAME would be perl5:Time::CTime. It looks ugly, * but with the possibilty of 100+ ports, they need to be sectioned off * somehow . Making a new directory for them is out, so this is the next * best thing. * * In the case of collections of modules (such as one that includes multiple * sub-modules of Time::, the port would just be called "perl5::Time". In * the case of ones that span multiple modules (including URL:: and URI:: and * Net:: for example), I'd suggest using "perl5::libwww" (in this case * derived from the distfile, libwww-perl. * * I'd also like to call the directory the same thing, but this one I'm sure * I'll catch flack on. Suggestions are welcome - I can't think of a good * alternative. * * So, please cut up everything I've suggested. I'd like to make everyone * happy here, but I doubt it's going to happen, so let's get all ideas in * the open now. * * Thank-you for your time. From owner-freebsd-ports Mon Oct 28 18:01:54 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id SAA14943 for ports-outgoing; Mon, 28 Oct 1996 18:01:54 -0800 (PST) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id SAA14937; Mon, 28 Oct 1996 18:01:51 -0800 (PST) Received: from time.cdrom.com (localhost [127.0.0.1]) by time.cdrom.com (8.7.6/8.6.9) with ESMTP id SAA04044; Mon, 28 Oct 1996 18:01:14 -0800 (PST) To: John Fieber cc: Stefan Franziskus , www@freebsd.org, ports@freebsd.org Subject: Re: www.freebsd.org/ports/index.html In-reply-to: Your message of "Mon, 28 Oct 1996 10:01:53 EST." Date: Mon, 28 Oct 1996 18:01:13 -0800 Message-ID: <4042.846554473@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > This is something I want very much, in addition to recently > changed/updated ports. Unfortunately, the current mechanism for > generating the ports pages doesn't easily lend itself to such > features. I have a little perl program that reads the ports > INDEX file and spits out HTML, but the INDEX file contains no Hmmm. This seems like one of those problems which might be better served through a cron job. Why not simply cache the previous day's and previous week's INDEX files, doing a running diff each day which generates the HTML? Jordan From owner-freebsd-ports Mon Oct 28 19:00:08 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id TAA18064 for ports-outgoing; Mon, 28 Oct 1996 19:00:08 -0800 (PST) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id TAA18042 for ; Mon, 28 Oct 1996 19:00:03 -0800 (PST) Received: from time.cdrom.com (localhost [127.0.0.1]) by time.cdrom.com (8.7.6/8.6.9) with ESMTP id SAA04200; Mon, 28 Oct 1996 18:59:46 -0800 (PST) To: Jake Hamby cc: Chuck Robey , ports@FreeBSD.org Subject: Re: Question about PLIST In-reply-to: Your message of "Mon, 28 Oct 1996 09:38:29 PST." Date: Mon, 28 Oct 1996 18:59:46 -0800 Message-ID: <4198.846557986@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-ports@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk > The @dirrm directive will only cause pkg_delete to delete EMPTY > subdirectories. However, when the user clicks "Update Tuner", it will > cause additional files to be dumped into /usr/local/lib/castanet/tuner > that the package utility won't know about. I could write a shell script > for uninstall to forcably remove /usr/local/lib/castanet, but that seems > excessive. @unexec is your friend. :-) Jordan From owner-freebsd-ports Mon Oct 28 21:12:50 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id VAA25876 for ports-outgoing; Mon, 28 Oct 1996 21:12:50 -0800 (PST) Received: from ingenieria ([168.176.15.11]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id VAA25869 for ; Mon, 28 Oct 1996 21:12:43 -0800 (PST) Received: by ingenieria (SMI-8.6/SMI-SVR4) id AAA18185; Tue, 29 Oct 1996 00:12:46 +0600 Date: Tue, 29 Oct 1996 00:12:46 +0600 (GMT) From: Pedro Giffuni To: ports@freebsd.org Subject: Spice package? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hi, Why are there some packages missing, including Spice2g6? thanks, Pedro. m230761@ingenieria.ingsala.unal.edu.co From owner-freebsd-ports Mon Oct 28 23:21:41 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA02988 for ports-outgoing; Mon, 28 Oct 1996 23:21:41 -0800 (PST) Received: from irz301.inf.tu-dresden.de (irz301.inf.tu-dresden.de [141.76.1.11]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id XAA02958 for ; Mon, 28 Oct 1996 23:21:35 -0800 (PST) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by irz301.inf.tu-dresden.de (8.6.12/8.6.12-s1) with ESMTP id IAA23361; Tue, 29 Oct 1996 08:21:14 +0100 Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id IAA00694; Tue, 29 Oct 1996 08:21:14 +0100 Received: (from j@localhost) by uriah.heep.sax.de (8.8.2/8.6.9) id IAA04208; Tue, 29 Oct 1996 08:17:38 +0100 (MET) From: J Wunsch Message-Id: <199610290717.IAA04208@uriah.heep.sax.de> Subject: Re: Spice package? To: m230761@ingenieria.ingsala.unal.edu.co (Pedro Giffuni) Date: Tue, 29 Oct 1996 08:17:38 +0100 (MET) Cc: ports@freebsd.org Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: from Pedro Giffuni at "Oct 29, 96 00:12:46 am" X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E X-Mailer: ELM [version 2.4ME+ PL17 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk As Pedro Giffuni wrote: > Why are there some packages missing, including Spice2g6? Simply look into the Makefile of the ports: RESTRICTED= "export restrictions" (Spice is something like (ick!) COCOM-restricted, i think.) -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-ports Mon Oct 28 23:57:53 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA03913 for ports-outgoing; Mon, 28 Oct 1996 23:57:53 -0800 (PST) Received: from ghpc6.ihf.rwth-aachen.de (ghpc6.ihf.RWTH-Aachen.DE [134.130.90.6]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id XAA03908 for ; Mon, 28 Oct 1996 23:57:50 -0800 (PST) Received: (from thomas@localhost) by ghpc6.ihf.rwth-aachen.de (8.6.12/8.6.9) id IAA03545; Tue, 29 Oct 1996 08:57:12 +0100 From: Thomas Gellekum Message-Id: <199610290757.IAA03545@ghpc6.ihf.rwth-aachen.de> Subject: Re: Spice package? To: m230761@ingenieria.ingsala.unal.edu.co (Pedro Giffuni) Date: Tue, 29 Oct 1996 08:57:11 +0100 (MET) Cc: ports@freebsd.org In-Reply-To: from Pedro Giffuni at "Oct 29, 96 00:12:46 am" Organization: Institut f. Hochfrequenztechnik, RWTH Aachen X-Mailer: ELM [version 2.4ME+ PL11 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Pedro Giffuni wrote: > Hi, > Why are there some packages missing, including Spice2g6? We don't have 2g6 in the ports tree; the version there is 3f4. Unfortunately, spice has some nasty export restrictions so we don't put it on the CD. If you want 2g6 you'll have to port it yourself, I'm afraid. Please submit your port afterwards ;-). tg From owner-freebsd-ports Tue Oct 29 02:04:17 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id CAA12495 for ports-outgoing; Tue, 29 Oct 1996 02:04:17 -0800 (PST) Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [128.120.56.38]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id CAA12487 for ; Tue, 29 Oct 1996 02:04:14 -0800 (PST) Received: (from obrien@localhost) by relay.nuxi.com (8.7.5/8.6.12) id CAA06046; Tue, 29 Oct 1996 02:04:13 -0800 (PST) Message-Id: <199610291004.CAA06046@relay.nuxi.com> Date: Tue, 29 Oct 1996 02:04:11 -0800 From: obrien@NUXI.cs.ucdavis.edu (David E. O'Brien) To: ports@FreeBSD.org Subject: Re: Spice package? References: <199610290717.IAA04208@uriah.heep.sax.de> X-Mailer: Mutt 0.48.1-PL0 Mime-Version: 1.0 X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 In-Reply-To: <199610290717.IAA04208@uriah.heep.sax.de>; from J Wunsch on Oct 29, 1996 08:17:38 +0100 Sender: owner-ports@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk > RESTRICTED= "export restrictions" > > (Spice is something like (ick!) COCOM-restricted, i think.) Ok, I'll byte. What's "COCOM"? -- -- David (obrien@cs.ucdavis.edu) From owner-freebsd-ports Tue Oct 29 03:20:06 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id DAA18290 for ports-outgoing; Tue, 29 Oct 1996 03:20:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id DAA18282; Tue, 29 Oct 1996 03:20:04 -0800 (PST) Resent-Date: Tue, 29 Oct 1996 03:20:04 -0800 (PST) Resent-Message-Id: <199610291120.DAA18282@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, Received:"from dfw-ix4.ix.netcom.com (dfw-ix4.ix.netcom.com [206.214.98.4]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id DAA17573 for" ; Tue, 29 Oct 1996 03:11:28.-0800 (PST) Received: from silvia.HIP.Berkeley.EDU (wck-ca8-22.ix.netcom.com [204.31.231.86]) by dfw-ix4.ix.netcom.com (8.6.13/8.6.12) with ESMTP id DAA28168 for ; Tue, 29 Oct 1996 03:10:36 -0800 Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.2/8.6.9) id DAA14587; Tue, 29 Oct 1996 03:10:34 -0800 (PST) Message-Id: <199610291110.DAA14587@silvia.HIP.Berkeley.EDU> Date: Tue, 29 Oct 1996 03:10:34 -0800 (PST) From: asami@freebsd.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/1921: fetchmail doesn't rewrite multi-line RFC-822 headers correctly Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 1921 >Category: ports >Synopsis: fetchmail doesn't rewrite multi-line RFC-822 headers correctly >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 29 03:20:02 PST 1996 >Last-Modified: >Originator: Satoshi Asami >Organization: The FreeBSD Project >Release: FreeBSD 2.2-CURRENT i386 >Environment: fetchmail-1.9 port from -current >Description: If you run fetchmail without -n, it is supposed to rewrite RFC-822 headers so the mail can be correctly replied to. However, it doesn't take into account continuous lines, so something like To: asami, root, postmaster would become To: asami@freefall.freebsd.org, root@freefall.freebsd.org, postmaster Note the "postmaster" is unchanged. >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-ports Tue Oct 29 04:21:52 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id EAA23087 for ports-outgoing; Tue, 29 Oct 1996 04:21:52 -0800 (PST) Received: from po2.glue.umd.edu (po2.glue.umd.edu [129.2.128.45]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id EAA23081 for ; Tue, 29 Oct 1996 04:21:48 -0800 (PST) Received: from skipper.eng.umd.edu (skipper.eng.umd.edu [129.2.103.24]) by po2.glue.umd.edu (8.8.2/8.7.3) with ESMTP id HAA01052; Tue, 29 Oct 1996 07:21:45 -0500 (EST) Received: from localhost (chuckr@localhost) by skipper.eng.umd.edu (8.7.5/8.7.3) with SMTP id HAA18275; Tue, 29 Oct 1996 07:21:44 -0500 (EST) X-Authentication-Warning: skipper.eng.umd.edu: chuckr owned process doing -bs Date: Tue, 29 Oct 1996 07:21:27 -0500 (EST) From: Chuck Robey X-Sender: chuckr@skipper.eng.umd.edu To: Pedro Giffuni cc: ports@freebsd.org Subject: Re: Spice package? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Tue, 29 Oct 1996, Pedro Giffuni wrote: > Hi, > Why are there some packages missing, including Spice2g6? Missing implies they were there to begin with. Spice has not been changed, it is at the 3f4 level. There has never been a FreeBSD package of Spice at 2g6. > > thanks, > > Pedro. > m230761@ingenieria.ingsala.unal.edu.co > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@eng.umd.edu | communications topic, C programming, and Unix. 9120 Edmonston Ct #302 | Greenbelt, MD 20770 | I run Journey2 and n3lxx, both FreeBSD (301) 220-2114 | version 2.2 current -- and great FUN! ----------------------------+----------------------------------------------- From owner-freebsd-ports Tue Oct 29 06:16:29 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id GAA29724 for ports-outgoing; Tue, 29 Oct 1996 06:16:29 -0800 (PST) Received: from fallout.campusview.indiana.edu (fallout.campusview.indiana.edu [149.159.1.1]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id GAA29716 for ; Tue, 29 Oct 1996 06:16:26 -0800 (PST) Received: from localhost (jfieber@localhost) by fallout.campusview.indiana.edu (8.7.6/8.7.3) with SMTP id JAA10299; Tue, 29 Oct 1996 09:16:21 -0500 (EST) Date: Tue, 29 Oct 1996 09:16:20 -0500 (EST) From: John Fieber To: "Jordan K. Hubbard" cc: ports@freebsd.org Subject: Re: www.freebsd.org/ports/index.html In-Reply-To: <4042.846554473@time.cdrom.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Mon, 28 Oct 1996, Jordan K. Hubbard wrote: > > This is something I want very much, in addition to recently > > changed/updated ports. Unfortunately, the current mechanism for > > generating the ports pages doesn't easily lend itself to such > > features. I have a little perl program that reads the ports > > INDEX file and spits out HTML, but the INDEX file contains no > > Hmmm. This seems like one of those problems which might be better > served through a cron job. Why not simply cache the previous day's > and previous week's INDEX files, doing a running diff each day which > generates the HTML? The problem is that a diff of the INDEX file is insufficient for detecting changed ports. (And personally I think this is at least as important as flagging new ports.) The only way I can think of for accurately representing changed ports is to dig through the entire ports tree. Of course, the easy solution would be to assume that a change should only be flagged if it represents an update version of a port, which will be reflected in the INDEX file, as opposed to a tweak. But what if a tweak fixes a critical bug such as a security hole? As far as the creation date, that information only has to be put in once and it *already is* standard practice to put it in. For new ports, there is no added cost, only a slight procedure change. For old ports, well, we can assume they are not new. -john == jfieber@indiana.edu =========================================== == http://fallout.campusview.indiana.edu/~jfieber ================ From owner-freebsd-ports Tue Oct 29 07:53:48 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id HAA03715 for ports-outgoing; Tue, 29 Oct 1996 07:53:48 -0800 (PST) Received: from irz301.inf.tu-dresden.de (irz301.inf.tu-dresden.de [141.76.1.11]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id HAA03672 for ; Tue, 29 Oct 1996 07:53:22 -0800 (PST) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by irz301.inf.tu-dresden.de (8.6.12/8.6.12-s1) with ESMTP id QAA23831; Tue, 29 Oct 1996 16:52:30 +0100 Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id QAA07400; Tue, 29 Oct 1996 16:52:25 +0100 Received: (from j@localhost) by uriah.heep.sax.de (8.8.2/8.6.9) id QAA05341; Tue, 29 Oct 1996 16:43:55 +0100 (MET) From: J Wunsch Message-Id: <199610291543.QAA05341@uriah.heep.sax.de> Subject: Re: Spice package? To: chuckr@glue.umd.edu (Chuck Robey) Date: Tue, 29 Oct 1996 16:43:55 +0100 (MET) Cc: m230761@ingenieria.ingsala.unal.edu.co, ports@freebsd.org In-Reply-To: from Chuck Robey at "Oct 29, 96 07:21:27 am" X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E X-Mailer: ELM [version 2.4ME+ PL17 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk As Chuck Robey wrote: > > Why are there some packages missing, including Spice2g6? > > Missing implies they were there to begin with. Spice has not been > changed, it is at the 3f4 level. There has never been a FreeBSD package > of Spice at 2g6. Is there any point in a spice 2 port now that we've got spice 3? (I've only used the latter, but saw references how many of the things that are there now must have been missing in spice 2.) -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-ports Tue Oct 29 08:50:04 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id IAA07814 for ports-outgoing; Tue, 29 Oct 1996 08:50:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id IAA07792; Tue, 29 Oct 1996 08:50:01 -0800 (PST) Resent-Date: Tue, 29 Oct 1996 08:50:01 -0800 (PST) Resent-Message-Id: <199610291650.IAA07792@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, jdli@FreeBSD.csie.NCTU.edu.tw Received: from phoenix.csie.nctu.edu.tw (root@phoenix.csie.nctu.edu.tw [140.113.17.171]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id IAA07625 for ; Tue, 29 Oct 1996 08:46:28 -0800 (PST) Received: from FreeBSD.csie.NCTU.edu.tw (freebsd.csie.nctu.edu.tw [140.113.235.250]) by phoenix.csie.nctu.edu.tw (8.7.5/8.7.5) with ESMTP id AAA17966 for ; Wed, 30 Oct 1996 00:44:08 +0800 (CST) Received: (from jdli@localhost) by FreeBSD.csie.NCTU.edu.tw (8.7.6/8.7.3) id AAA10308; Wed, 30 Oct 1996 00:45:14 +0800 (CST) Message-Id: <199610291645.AAA10308@FreeBSD.csie.NCTU.edu.tw> Date: Wed, 30 Oct 1996 00:45:14 +0800 (CST) From: jdli@FreeBSD.csie.NCTU.edu.tw Reply-To: jdli@FreeBSD.csie.NCTU.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/1923: xsysinfo updated Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 1923 >Category: ports >Synopsis: ports updated, xsysinfo >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Oct 29 08:50:00 PST 1996 >Last-Modified: >Originator: Jian-Da Li >Organization: NCTU CSIE FreeBSD Server >Release: FreeBSD 2.2-961014-SNAP i386 >Environment: n/a >Description: xsysinfo-1.3 has been released, please change the 1.2->1.3. no patch is required. >How-To-Repeat: n/a >Fix: change 1.2->1.3 >Audit-Trail: >Unformatted: From owner-freebsd-ports Tue Oct 29 09:22:49 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA09931 for ports-outgoing; Tue, 29 Oct 1996 09:22:49 -0800 (PST) Received: (from jfitz@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA09898; Tue, 29 Oct 1996 09:22:43 -0800 (PST) Date: Tue, 29 Oct 1996 09:22:43 -0800 (PST) From: James FitzGibbon Message-Id: <199610291722.JAA09898@freefall.freebsd.org> To: jfitz, freebsd-ports, jfitz Subject: Re: ports/1923 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: ports updated, xsysinfo Responsible-Changed-From-To: freebsd-ports->jfitz Responsible-Changed-By: jfitz Responsible-Changed-When: Tue Oct 29 09:22:15 PST 1996 Responsible-Changed-Why: From owner-freebsd-ports Tue Oct 29 09:28:53 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA10603 for ports-outgoing; Tue, 29 Oct 1996 09:28:53 -0800 (PST) Received: (from jfitz@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA10579; Tue, 29 Oct 1996 09:28:50 -0800 (PST) Date: Tue, 29 Oct 1996 09:28:50 -0800 (PST) From: James FitzGibbon Message-Id: <199610291728.JAA10579@freefall.freebsd.org> To: jfitz, freebsd-ports, jfitz Subject: Re: ports/1883 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Fixed port : crack-4.1f Responsible-Changed-From-To: freebsd-ports->jfitz Responsible-Changed-By: jfitz Responsible-Changed-When: Tue Oct 29 09:28:22 PST 1996 Responsible-Changed-Why: From owner-freebsd-ports Tue Oct 29 09:32:37 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA11036 for ports-outgoing; Tue, 29 Oct 1996 09:32:37 -0800 (PST) Received: from ingenieria ([168.176.15.11]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id JAA11031 for ; Tue, 29 Oct 1996 09:32:32 -0800 (PST) Received: by ingenieria (SMI-8.6/SMI-SVR4) id MAA18832; Tue, 29 Oct 1996 12:25:50 +0600 Date: Tue, 29 Oct 1996 12:25:49 +0600 (GMT) From: Pedro Giffuni To: Thomas Gellekum cc: ports@freebsd.org Subject: Re: Spice package? In-Reply-To: <199610290757.IAA03545@ghpc6.ihf.rwth-aachen.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Tue, 29 Oct 1996, Thomas Gellekum wrote: > Pedro Giffuni wrote: > > Hi, > > Why are there some packages missing, including Spice2g6? >=20 > We don't have 2g6 in the ports tree; the version there is > 3f4. Unfortunately, spice has some nasty export restrictions so we > don't put it on the CD. > Thanks, I mistyped, I meant 3f4. I saw the "export restrictions" on the=20 Makefile, but I always thought they are the same Berkeley restrictions=20 BSD has (..please dont=B4port to Iran, Lybia or Cuba). Now, Berkeley has even made publicly available the original code at: http://www-cad.eecs.berkeley.edu/Software/software.html and they don't even WARN about such restriction ! > If you want 2g6 you'll have to port it yourself, I'm afraid. Please > submit your port afterwards ;-). > Better than that, I'm putting my own CD, I got a permit to distribute=20 Netscape internally, so I will add exportable DES and other importable=20 stuff on a nice CD for my campus. The netscape permit was very easy to obtain, just a fax, it is highly=20 recomendable for educational institutions. Pedro. > tg >=20 From owner-freebsd-ports Tue Oct 29 09:33:50 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA11177 for ports-outgoing; Tue, 29 Oct 1996 09:33:50 -0800 (PST) Received: (from jfitz@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA11151; Tue, 29 Oct 1996 09:33:45 -0800 (PST) Date: Tue, 29 Oct 1996 09:33:45 -0800 (PST) From: James FitzGibbon Message-Id: <199610291733.JAA11151@freefall.freebsd.org> To: jfitz, freebsd-ports, jfitz Subject: Re: ports/1884 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Fixed port : qvwm (x11 window_manager) Responsible-Changed-From-To: freebsd-ports->jfitz Responsible-Changed-By: jfitz Responsible-Changed-When: Tue Oct 29 09:32:25 PST 1996 Responsible-Changed-Why: From owner-freebsd-ports Tue Oct 29 09:41:08 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA11822 for ports-outgoing; Tue, 29 Oct 1996 09:41:08 -0800 (PST) Received: from ingenieria ([168.176.15.11]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id JAA11816 for ; Tue, 29 Oct 1996 09:40:59 -0800 (PST) Received: by ingenieria (SMI-8.6/SMI-SVR4) id MAA18842; Tue, 29 Oct 1996 12:40:44 +0600 Date: Tue, 29 Oct 1996 12:40:43 +0600 (GMT) From: Pedro Giffuni To: J Wunsch cc: Chuck Robey , ports@freebsd.org Subject: Re: Spice package? In-Reply-To: <199610291543.QAA05341@uriah.heep.sax.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Tue, 29 Oct 1996, J Wunsch wrote: > As Chuck Robey wrote: >=20 >=20 > Is there any point in a spice 2 port now that we've got spice 3? > Not really, I mistyped, Spice 2G6 was written on FORTRAN and someone ran=20 f2c on it, it has a value as the last release in fortran and has no=20 exporting restrictions.=20 3E2 had a BSD deamon for remote use... 3F4 has an X interface, and is being distributed directly by Berkeley. I=20 am reading the README to see if I find exporting restrictions. 3F5 is restricted, a comercial unexportable product, it=B4 supposed to use= =20 "high" technology. =20 > (I've only used the latter, but saw references how many of the things > that are there now must have been missing in spice 2.) >=20 > --=20 > cheers, J"org >=20 > joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-= RIPE > Never trust an operating system you don't have sources for. ;-) >=20 From owner-freebsd-ports Tue Oct 29 10:21:56 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id KAA14775 for ports-outgoing; Tue, 29 Oct 1996 10:21:56 -0800 (PST) Received: from mail.cs.tu-berlin.de (mail.cs.tu-berlin.de [130.149.17.13]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id KAA14768 for ; Tue, 29 Oct 1996 10:21:51 -0800 (PST) Received: from campa.panke.de (anonymous214.ppp.cs.tu-berlin.de [130.149.17.214]) by mail.cs.tu-berlin.de (8.6.13/8.6.12) with ESMTP id TAA26199; Tue, 29 Oct 1996 19:01:06 +0100 Received: (from wosch@localhost) by campa.panke.de (8.6.12/8.6.12) id QAA03247; Tue, 29 Oct 1996 16:51:12 +0100 Date: Tue, 29 Oct 1996 16:51:12 +0100 From: Wolfram Schneider Message-Id: <199610291551.QAA03247@campa.panke.de> To: John Fieber Cc: ports@freebsd.org Subject: Re: www.freebsd.org/ports/index.html In-Reply-To: References: <199610282040.VAA00635@campa.panke.de> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk John Fieber writes: >However, just using the INDEX file will fail in detecting many >updates because only a few selected bits of the Makefile are >reflected the INDEX. With a checked out ports tree, I'll have to >dig through the CVS directories to discover the most recent date >change. Maybe the Makefile target that generates INDEX could do >this? Hmmm.... cvs -q rdiff -D'last week' -Dtoday ports | sed -n 's/^Index: //p' Print all files, which have been changed last week. Of course it is slow, ~20 min. Wolfram From owner-freebsd-ports Tue Oct 29 13:18:27 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id NAA24391 for ports-outgoing; Tue, 29 Oct 1996 13:18:27 -0800 (PST) Received: from po1.glue.umd.edu (po1.glue.umd.edu [129.2.128.44]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id NAA24386 for ; Tue, 29 Oct 1996 13:18:23 -0800 (PST) Received: from packet.eng.umd.edu (packet.eng.umd.edu [129.2.98.184]) by po1.glue.umd.edu (8.8.2/8.7.3) with ESMTP id QAA23762; Tue, 29 Oct 1996 16:16:51 -0500 (EST) Received: from localhost (chuckr@localhost) by packet.eng.umd.edu (8.7.5/8.7.3) with SMTP id QAA06643; Tue, 29 Oct 1996 16:16:47 -0500 (EST) X-Authentication-Warning: packet.eng.umd.edu: chuckr owned process doing -bs Date: Tue, 29 Oct 1996 16:16:47 -0500 (EST) From: Chuck Robey X-Sender: chuckr@packet.eng.umd.edu To: J Wunsch cc: m230761@ingenieria.ingsala.unal.edu.co, ports@freebsd.org Subject: Re: Spice package? In-Reply-To: <199610291543.QAA05341@uriah.heep.sax.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Tue, 29 Oct 1996, J Wunsch wrote: > As Chuck Robey wrote: > > > > Why are there some packages missing, including Spice2g6? > > > > Missing implies they were there to begin with. Spice has not been > > changed, it is at the 3f4 level. There has never been a FreeBSD package > > of Spice at 2g6. > > Is there any point in a spice 2 port now that we've got spice 3? > > (I've only used the latter, but saw references how many of the things > that are there now must have been missing in spice 2.) I don't think so. All the spice 2 functionality is in spice 3. I've never seen a spice 2 port offered, so I think it's a dead question, anyways. > > -- > cheers, J"org > > joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE > Never trust an operating system you don't have sources for. ;-) > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@eng.umd.edu | communications topic, C programming, and Unix. 9120 Edmonston Ct #302 | Greenbelt, MD 20770 | I run Journey2 and n3lxx, both FreeBSD (301) 220-2114 | version 2.2 current -- and great FUN! ----------------------------+----------------------------------------------- From owner-freebsd-ports Tue Oct 29 13:20:05 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id NAA24492 for ports-outgoing; Tue, 29 Oct 1996 13:20:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id NAA24485; Tue, 29 Oct 1996 13:20:03 -0800 (PST) Date: Tue, 29 Oct 1996 13:20:03 -0800 (PST) Message-Id: <199610292120.NAA24485@freefall.freebsd.org> To: freebsd-ports Cc: From: "=?KOI8-R?Q?=E1=CE=C4=D2=C5=CA_=FE=C5=D2=CE=CF=D7?=" (Andrey A. Chernov) Subject: Re: ports/1921: fetchmail doesn't rewrite multi-line RFC-822 headers correctly Reply-To: "=?KOI8-R?Q?=E1=CE=C4=D2=C5=CA_=FE=C5=D2=CE=CF=D7?=" (Andrey A. Chernov) Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR ports/1921; it has been noted by GNATS. From: "=?KOI8-R?Q?=E1=CE=C4=D2=C5=CA_=FE=C5=D2=CE=CF=D7?=" (Andrey A. Chernov) To: asami@freebsd.org Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/1921: fetchmail doesn't rewrite multi-line RFC-822 headers correctly Date: Wed, 30 Oct 1996 00:04:43 +0300 (MSK) > >Synopsis: fetchmail doesn't rewrite multi-line RFC-822 headers correctly I think this sort of errors must be reported directly to fetchmail maintainer, not to FreeBSD pr database. It is definitely not porter mistake and probably nobody here want to be actively involved in fetchmail development. -- Andrey A. Chernov http://www.nagual.ru/~ache/ From owner-freebsd-ports Tue Oct 29 14:46:45 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id OAA04593 for ports-outgoing; Tue, 29 Oct 1996 14:46:45 -0800 (PST) Received: from news1.gtn.com (news1.gtn.com [192.109.159.3]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id OAA04585 for ; Tue, 29 Oct 1996 14:46:41 -0800 (PST) Received: (from uucp@localhost) by news1.gtn.com (8.7.2/8.7.2) with UUCP id AAA09713; Wed, 30 Oct 1996 00:30:29 +0100 (MET) Received: from localhost (localhost [127.0.0.1]) by klemm.gtn.com (8.8.2/8.8.2) with SMTP id VAA01382; Tue, 29 Oct 1996 21:42:23 +0100 (MET) Date: Tue, 29 Oct 1996 21:42:23 +0100 (MET) From: Andreas Klemm To: Crossfire Mailing List cc: ports@FreeBSD.org Subject: Re: Can't play crossfire using FreeBSD-current, because passwords , doesn't match In-Reply-To: Message-ID: X-try-apsfilter: ftp://sunsite.unc.edu/pub/Linux/system/Printing/aps-491.tgz X-Fax: +49 2137 2018 X-Phone: +49 2137 2020 MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk On Sun, 27 Oct 1996, Andreas Klemm wrote: > The password isn't validated correctly... The dialogue is as follows: > > What is your name? > : andreas > What is your password? > ?????? > Please type your password again? > ?????? > The passwords did not match. > > And so on and so on. A crude hack, so that it simply works is, to do a return(1) in check_password, but then you don't have password protection :-( -- andreas@klemm.gtn.com /\/\___ Wiechers & Partner Datentechnik GmbH Andreas Klemm ___/\/\/ Support Unix -- andreas.klemm@wup.de pgp p-key http://www-swiss.ai.mit.edu/~bal/pks-toplev.html >>> powered by <<< ftp://sunsite.unc.edu/pub/Linux/system/Printing/aps-491.tgz >>> FreeBSD <<< From owner-freebsd-ports Tue Oct 29 23:05:33 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA09577 for ports-outgoing; Tue, 29 Oct 1996 23:05:33 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA09558; Tue, 29 Oct 1996 23:05:30 -0800 (PST) Date: Tue, 29 Oct 1996 23:05:30 -0800 (PST) From: Satoshi Asami Message-Id: <199610300705.XAA09558@freefall.freebsd.org> To: asami@freebsd.org, asami, freebsd-ports Subject: Re: ports/1921 Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Synopsis: fetchmail doesn't rewrite multi-line RFC-822 headers correctly State-Changed-From-To: open-closed State-Changed-By: asami State-Changed-When: Tue Oct 29 23:02:07 PST 1996 State-Changed-Why: Well, I thought maybe the porter would like to filter all the problems for the author. However, it that doesn't seem the case, so I sent this (as well as two other problems) directly to the author. From owner-freebsd-ports Tue Oct 29 23:35:43 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA11988 for ports-outgoing; Tue, 29 Oct 1996 23:35:43 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA11969; Tue, 29 Oct 1996 23:35:40 -0800 (PST) Date: Tue, 29 Oct 1996 23:35:40 -0800 (PST) From: Satoshi Asami Message-Id: <199610300735.XAA11969@freefall.freebsd.org> To: sanpei@yy.cs.keio.ac.jp, asami, freebsd-ports Subject: Re: ports/1898 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: [packages-current]jp-ghostscript300-2.6 is not in packages-current State-Changed-From-To: open-closed State-Changed-By: asami State-Changed-When: Tue Oct 29 23:34:30 PST 1996 State-Changed-Why: Sorry, I just built it and put it on the ftp site. From owner-freebsd-ports Wed Oct 30 02:20:38 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id CAA28620 for ports-outgoing; Wed, 30 Oct 1996 02:20:38 -0800 (PST) Received: from innocence.interface-business.de (innocence.interface-business.de [193.101.57.202]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id CAA28603 for ; Wed, 30 Oct 1996 02:20:32 -0800 (PST) Received: from ida.interface-business.de (ida.interface-business.de [193.101.57.203]) by innocence.interface-business.de (8.6.11/8.6.9) with SMTP id LAA06686 for ; Wed, 30 Oct 1996 11:19:08 +0100 Received: (from j@localhost) by ida.interface-business.de (8.7.5/8.7.3) id LAA28675 for ports@freebsd.org; Wed, 30 Oct 1996 11:21:24 +0100 (MET) From: J Wunsch Message-Id: <199610301021.LAA28675@ida.interface-business.de> Subject: Re: Question about PORTS installation. (fwd) To: ports@freebsd.org Date: Wed, 30 Oct 1996 11:21:23 +0100 (MET) Reply-To: joerg_wunsch@interface-business.de (Joerg Wunsch) X-Phone: +49-351-31809-14 X-Fax: +49-351-3361187 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E X-Mailer: ELM [version 2.4ME+ PL15 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hi, is somebody tempted to deal with this? Looks like an interesting idea to me. Or should i send-pr it? :-) ----- Forwarded message from Phillip Musumeci ----- Date: Wed, 30 Oct 1996 21:10:00 +1100 (EST) Message-Id: <199610301010.VAA22006@mirriwinni.cse.rmit.edu.au> From: Phillip Musumeci To: joerg_wunsch@interface-business.de (Joerg Wunsch) Subject: Re: Question about PORTS installation. Hi, We had a chat about miniscule-C for the 68HC11 some time ago. About this problem of file name changing when installing packages via a DOS 8+3 file system, can you put the following script somewhere official for people to use. It essentially grabs the package, looks inside it to figure out the name, and then goes ahead and installs it. Perhaps the pkg_add command should also look inside the package to get the "real" name. Regards, phillip #! /bin/sh # # Script dpa # URL = ftp://pm.cse.rmit.edu.au/ftp/pub/FreeBSD/misc/dpa # # The current pkg_add command cannot process packages in files that have # incorrect names e.g. packages that are being read off a DOS file system # where a shortened name is required. Shell script dpa (Dos Package Add) # figures out the real name of a package so it can be temporarily copied # across to $DEST (with its original name) and have pkg_add run on it. # # The user is prompted to have all packages available in the source # directory installed. # # Parameter 1 is taken as the directory holding the 8+3 named packages, # otherwise we look for a directory named /dos/packages or /dosc/packages # or /dosd/packages, # otherwise we ask where the hell these packages are supposed to be. # # Note: if you had chosen to mount a dos partition as /dos during the # installation, and used the DOS batch file fbsdmove.bat to copy some # initial packages into area \PACKAGES on the DOS disk, then this # script will figure out where your packages are hiding. # # Use: dpa (assumes packages in /dos/packages etc.) # dpa SRCDIR # # phillip@rmit.edu.au 1v0 15-feb-1996 DEST=/root # if a /home is present, we store temporary package copies there # (we assume that a large file system is available at /home) if [ -d /home ] ; then if [ ! -d /home/tmp ] ; then mkdir /home/tmp fi export PKG_TMPDIR=/home/tmp # pkg_add needs lots of space sometimes DEST=$PKG_TMPDIR fi ########################################################################### # take parameter 1 as the source directory containing the packages if [ "x$1" != x ] ; then SRC=$1 # otherwise, attempt to guess where the DOS file system is that contains # the FreeBSD packages else SRC= echo if [ x$SRC = x -a -d /dos/packages/all ] ; then SRC=/dos/packages/all fi if [ x$SRC = x -a -d /dosc/packages/all ] ; then SRC=/dosc/packages/all fi if [ x$SRC = x -a -d /dosd/packages/all ] ; then SRC=/dosd/packages/all fi # otherwise we just ask where the FreeBSD packages are if [ "x$SRC" = x ] ; then echo "Please enter the directory where the packages are kept" read x if [ -d $x ] ; then SRC=$x else echo That does not seem to be a directory... exit fi fi fi echo "Using packages in $SRC" ########################################################################### # Procedure: # # a) examine each file to see if it is a gzip compressed file # b) if it is, we assume it is a .tgz package file and extract the +CONTENTS # file in which a line commencing with the string "@name" is used to give # us the original package's name # c) the user is then prompted to see if this package should be copied and # installed. cd $SRC for x in * ; do if [ -n "`file $x | grep gzip`" ] ; then # non-empty string --> GZIP data echo y=`tar xzOf $x +CONTENTS | grep @name | cut -d' ' -f2`.tgz # get real name echo "File $x is really $y; install (n/y)? " read a case $a in y*|Y*) # we install cp $x $DEST/$y # copy to eal name echo "Executing: pkg_add $DEST/$y" pkg_add $DEST/$y # and install /bin/rm $DEST/$y # then delete tmp copy ;; q*|Q*) exit 0 ;; # quit *) echo "Ignoring: $y" ;; esac fi done ########################################################################### ----- End of forwarded message from Phillip Musumeci ----- -- J"org Wunsch Unix support engineer joerg_wunsch@interface-business.de http://www.interface-business.de/~j From owner-freebsd-ports Wed Oct 30 03:03:01 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id DAA02981 for ports-outgoing; Wed, 30 Oct 1996 03:03:01 -0800 (PST) Received: (from jfitz@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id DAA02956; Wed, 30 Oct 1996 03:02:58 -0800 (PST) Date: Wed, 30 Oct 1996 03:02:58 -0800 (PST) From: James FitzGibbon Message-Id: <199610301102.DAA02956@freefall.freebsd.org> To: jfitz, freebsd-ports, jfitz Subject: Re: ports/1911 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: New port: GIFTool Responsible-Changed-From-To: freebsd-ports->jfitz Responsible-Changed-By: jfitz Responsible-Changed-When: Wed Oct 30 03:02:36 PST 1996 Responsible-Changed-Why: From owner-freebsd-ports Wed Oct 30 06:00:15 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id GAA23855 for ports-outgoing; Wed, 30 Oct 1996 06:00:15 -0800 (PST) Received: from ghpc6.ihf.rwth-aachen.de (ghpc6.ihf.RWTH-Aachen.DE [134.130.90.6]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id GAA23835 for ; Wed, 30 Oct 1996 06:00:09 -0800 (PST) Received: (from thomas@localhost) by ghpc6.ihf.rwth-aachen.de (8.6.12/8.6.9) id OAA05686; Wed, 30 Oct 1996 14:58:37 +0100 From: Thomas Gellekum Message-Id: <199610301358.OAA05686@ghpc6.ihf.rwth-aachen.de> Subject: Re: Spice package? To: m230761@ingenieria.ingsala.unal.edu.co (Pedro Giffuni) Date: Wed, 30 Oct 1996 14:58:35 +0100 (MET) Cc: thomas@ghpc8.ihf.rwth-aachen.de, ports@freebsd.org In-Reply-To: from Pedro Giffuni at "Oct 29, 96 12:25:49 pm" Organization: Institut f. Hochfrequenztechnik, RWTH Aachen X-Mailer: ELM [version 2.4ME+ PL11 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Pedro Giffuni wrote: > > Now, Berkeley has even made publicly available the original code at: > http://www-cad.eecs.berkeley.edu/Software/software.html > and they don't even WARN about such restriction ! Last time I looked (when I imported the port) spice3f4 was _not_ publicly available from ILB. I have downloaded the package now; I'll see if we can update our port and don't have to use the pre-patched stuff from sunsite. tg From owner-freebsd-ports Wed Oct 30 06:36:42 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id GAA00168 for ports-outgoing; Wed, 30 Oct 1996 06:36:42 -0800 (PST) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id GAA00138 for ; Wed, 30 Oct 1996 06:36:39 -0800 (PST) Received: from time.cdrom.com (localhost [127.0.0.1]) by time.cdrom.com (8.7.6/8.6.9) with ESMTP id GAA08385; Wed, 30 Oct 1996 06:36:41 -0800 (PST) To: Satoshi Asami cc: ports@freebsd.org, cvs-ports@freefall.freebsd.org Subject: Re: cvs commit: ports INDEX In-reply-to: Your message of "Wed, 30 Oct 1996 01:16:03 PST." <199610300916.BAA19835@freefall.freebsd.org> Date: Wed, 30 Oct 1996 06:36:40 -0800 Message-ID: <8383.846686200@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Yay, a fine milestone! Congratulations to the ports team! Jordan > asami 96/10/30 01:16:00 > > Modified: . INDEX > Log: > If you miss the commit I made, > you will know that I am gone, > you will hear James' perl ports fill the tree, > 600 ports, 600 ports, 600 ports, 600 ports, > we now have 600 ports in the tree. > > Revision Changes Path > 1.91 +25 -16 ports/INDEX From owner-freebsd-ports Wed Oct 30 09:13:18 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA08435 for ports-outgoing; Wed, 30 Oct 1996 09:13:18 -0800 (PST) Received: from battra.telebase.com (root@battra.telebase.com [192.132.57.100]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id JAA08374 for ; Wed, 30 Oct 1996 09:13:09 -0800 (PST) From: freebsd-ports@wormhole.telebase.com Received: by battra.telebase.com id MAA23096; Wed, 30 Oct 1996 12:12:59 -0500 (EST) Date: Wed, 30 Oct 1996 12:12:59 -0500 (EST) Message-Id: <199610301712.MAA23096@> To: freebsd-ports@freebsd.org, bmc@battra.telebase.com Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk unsubscribe freebsd-ports From owner-freebsd-ports Wed Oct 30 13:29:44 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id NAA01614 for ports-outgoing; Wed, 30 Oct 1996 13:29:44 -0800 (PST) Received: (from ache@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id NAA01592; Wed, 30 Oct 1996 13:29:39 -0800 (PST) Date: Wed, 30 Oct 1996 13:29:39 -0800 (PST) From: "Andrey A. Chernov" Message-Id: <199610302129.NAA01592@freefall.freebsd.org> To: jkh@red.asis.com, ache, freebsd-ports Subject: Re: ports/1917 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Apache/SSL port installs incorrect version State-Changed-From-To: open-closed State-Changed-By: ache State-Changed-When: Wed Oct 30 13:29:09 PST 1996 State-Changed-Why: Fixed in SSL PLIST v1.3 From owner-freebsd-ports Wed Oct 30 13:38:54 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id NAA02364 for ports-outgoing; Wed, 30 Oct 1996 13:38:54 -0800 (PST) Received: from dfw-ix2.ix.netcom.com (dfw-ix2.ix.netcom.com [206.214.98.2]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id NAA02359; Wed, 30 Oct 1996 13:38:50 -0800 (PST) Received: from silvia.HIP.Berkeley.EDU (ala-ca18-20.ix.netcom.com [204.32.168.212]) by dfw-ix2.ix.netcom.com (8.6.13/8.6.12) with ESMTP id NAA12078; Wed, 30 Oct 1996 13:38:07 -0800 Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.2/8.6.9) id NAA21271; Wed, 30 Oct 1996 13:38:03 -0800 (PST) Date: Wed, 30 Oct 1996 13:38:03 -0800 (PST) Message-Id: <199610302138.NAA21271@silvia.HIP.Berkeley.EDU> To: peter@spinner.DIALix.COM CC: chuckr@glue.umd.edu, ports@freebsd.org Subject: expect build failure From: asami@freebsd.org (Satoshi Asami) Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk I have itcl installed (there is a "libtk41i" shared library in /usr/local/lib), could it be causing the confusion? Satoshi ------- ===> Extracting for expect-5.21 ===> expect-5.21 depends on shared library: tk41\.1\. - found (cd /usr/ports/x11/tk41 && make extract) Checksums OK. ===> Extracting for tk-4.1 ln -s /usr/ports/x11/tk41/work/tk* /a/ports/lang/expect/work ===> Patching for expect-5.21 ===> Applying FreeBSD patches for expect-5.21 ===> Configuring for expect-5.21 configuring Expect 5.21.3 checking host system type... i386-unknown-freebsd2.2 checking target system type... i386-unknown-freebsd2.2 checking build system type... i386-unknown-freebsd2.2 checking for Tcl configuration... found /usr/libdata/tcl/tclConfig.sh checking for Tk configuration... found /a/local/lib/tkConfig.sh checking for gcc... cc checking whether we are using GNU C... yes checking whether the compiler (cc) actually works... yes checking for a BSD compatible install... /usr/bin/install -c -o bin -g bin checking how to run the C preprocessor... cc -E checking if running LynxOS... no checking whether cross-compiling... no checking for ANSI C header files... yes checking for pid_t... yes checking return type of signal handlers... void 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 if running Mach... no checking if running MachTen... no checking if on Pyramid... no checking if on Apollo... no checking if on Interactive... no checking if stty reads stdout... no checking if running Solaris... no checking for sin... no checking for Tcl private headers... found in /usr/include/tcl/generic checking if generating shared or nonshared library... creating cache .././config.cache checking for Tcl configuration... found /usr/libdata/tcl/tclConfig.sh checking for gcc... cc checking whether we are using GNU C... yes checking whether the compiler (cc) actually works... yes checking for a BSD compatible install... /usr/bin/install -c -o bin -g bin checking how to run the C preprocessor... cc -E checking if running LynxOS... no checking for Tcl private headers... found in /usr/include/tcl/generic checking if we are running Linux... no checking for strchr... yes checking for stdlib.h... yes checking if generating shared or nonshared library... both shared and nonshared updating cache .././config.cache creating ./config.status creating Makefile creating Dbg_cf.h Begin tests for function/library dependencies. Tests may be repeated up to three times. First test is for building Expect's shared library. Second set is for building with Tcl. Third is for building with Tk. checking for gethostname... yes checking for gethostname... yes checking for gethostname... yes checking for socket... yes checking for socket... yes checking for socket... yes checking for select... yes checking for select... yes checking for select... yes checking for getpseudotty... no checking for -lseq... no checking for getpseudotty... no checking for -lseq... no checking for getpseudotty... no checking for -lseq... no checking for openpty... no checking for -lutil... yes checking for openpty... no checking for -lutil... yes checking for openpty... no checking for -lutil... yes checking for sys/sysmacros.h... no checking for stdlib.h... yes checking for varargs.h... yes checking for unistd.h... yes checking for sys/stropts.h... no checking for sys/sysconfig.h... no checking for sys/fcntl.h... yes checking for sys/select.h... yes checking for sys/time.h... yes checking for sys/ptem.h... no checking for sys/strredir.h... no checking for sys/strpty.h... no checking for sys/bsdtypes.h... no checking for memmove... yes checking for sysconf... yes checking for strftime... yes checking for strchr... yes checking for timezone... yes checking for memcpy... yes checking if WNOHANG requires _POSIX_SOURCE... no checking if any value exists for WNOHANG... yes checking mask type of select... none checking if signals need to be re-armed... no checking if on Convex... no checking if on NeXT... no checking if on HP... no checking sane default stty arguments... checking for HP style pty allocation... no checking for HP style pty trapping... no checking for AIX new-style pty allocation... no checking for SGI old-style pty allocation... no checking for SCO style pty allocation... no checking for SVR4 style pty allocation... no checking for OSF/1 style pty allocation... no checking for tcgetattr... yes checking for tcsetattr... yes checking for struct sgttyb... yes checking for struct termio... no checking for struct termios... yes checking if TCGETS or TCGETA in termios.h... no checking if TIOCGWINSZ in termios.h... yes checking for Cray-style ptys... no checking for select... yes checking for poll... no checking event handling... via select checking for _getpty... no checking for getpty... no checking for SV-style timezone... yes checking for Tk private headers... found in /a/ports/x11/tk41/work/tk4.1/generic both shared and nonshared creating ./config.status creating Makefile creating pkgIndex creating expect_cf.h configuring in testsuite running /bin/sh ./configure --enable-shared --with-tclconfig=/usr/libdata/tcl --with-tclinclude=/usr/include/tcl --prefix=/usr/local --cache-file=.././config.cache --srcdir=. loading cache .././config.cache checking for Tcl configuration... (cached) found /usr/libdata/tcl/tclConfig.sh checking for gcc... (cached) cc checking whether we are using GNU C... (cached) yes checking whether the compiler (cc) actually works... yes checking how to run the C preprocessor... (cached) cc -E checking if running LynxOS... (cached) no checking for Tcl private headers... (cached) found in /usr/include/tcl/generic creating ./config.status creating Makefile ===> Building for expect-5.21 cc -c -I. -I. -I/usr/include/tcl/generic -I/a/ports/x11/tk41/work/tk4.1/generic -I/usr/X11R6/include -DEXP_VERSION=\"5.21.3\" -DSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DEXECSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DTCL_DEBUGGER -O2 -pipe -g -fPIC -DDFLT_STTY="\"sane\"" ./exp_main_exp.c cc -c -I. -I. -I/usr/include/tcl/generic -I/a/ports/x11/tk41/work/tk4.1/generic -I/usr/X11R6/include -DEXP_VERSION=\"5.21.3\" -DSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DEXECSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DTCL_DEBUGGER -O2 -pipe -g -fPIC -DDFLT_STTY="\"sane\"" ./exp_command.c cc -c -I. -I. -I/usr/include/tcl/generic -I/a/ports/x11/tk41/work/tk4.1/generic -I/usr/X11R6/include -DEXP_VERSION=\"5.21.3\" -DSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DEXECSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DTCL_DEBUGGER -O2 -pipe -g -fPIC -DDFLT_STTY="\"sane\"" ./expect.c cc -c -I. -I. -I/usr/include/tcl/generic -I/a/ports/x11/tk41/work/tk4.1/generic -I/usr/X11R6/include -DEXP_VERSION=\"5.21.3\" -DSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DEXECSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DTCL_DEBUGGER -O2 -pipe -g -fPIC -DDFLT_STTY="\"sane\"" ./pty_termios.c cc -c -I. -I. -I/usr/include/tcl/generic -I/a/ports/x11/tk41/work/tk4.1/generic -I/usr/X11R6/include -DEXP_VERSION=\"5.21.3\" -DSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DEXECSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DTCL_DEBUGGER -O2 -pipe -g -fPIC -DDFLT_STTY="\"sane\"" ./exp_inter.c cc -c -I. -I. -I/usr/include/tcl/generic -I/a/ports/x11/tk41/work/tk4.1/generic -I/usr/X11R6/include -DEXP_VERSION=\"5.21.3\" -DSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DEXECSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DTCL_DEBUGGER -O2 -pipe -g -fPIC -DDFLT_STTY="\"sane\"" ./exp_regexp.c cc -c -I. -I. -I/usr/include/tcl/generic -I/a/ports/x11/tk41/work/tk4.1/generic -I/usr/X11R6/include -DEXP_VERSION=\"5.21.3\" -DSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DEXECSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DTCL_DEBUGGER -O2 -pipe -g -fPIC -DDFLT_STTY="\"sane\"" ./exp_tty.c cc -c -I. -I. -I/usr/include/tcl/generic -I/a/ports/x11/tk41/work/tk4.1/generic -I/usr/X11R6/include -DEXP_VERSION=\"5.21.3\" -DSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DEXECSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DTCL_DEBUGGER -O2 -pipe -g -fPIC -DDFLT_STTY="\"sane\"" ./exp_log.c cc -c -I. -I. -I/usr/include/tcl/generic -I/a/ports/x11/tk41/work/tk4.1/generic -I/usr/X11R6/include -DEXP_VERSION=\"5.21.3\" -DSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DEXECSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DTCL_DEBUGGER -O2 -pipe -g -fPIC -DDFLT_STTY="\"sane\"" ./exp_main_sub.c cc -c -I. -I. -I/usr/include/tcl/generic -I/a/ports/x11/tk41/work/tk4.1/generic -I/usr/X11R6/include -DEXP_VERSION=\"5.21.3\" -DSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DEXECSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DTCL_DEBUGGER -O2 -pipe -g -fPIC -DDFLT_STTY="\"sane\"" ./exp_pty.c cc -c -I. -I. -I/usr/include/tcl/generic -I/a/ports/x11/tk41/work/tk4.1/generic -I/usr/X11R6/include -DEXP_VERSION=\"5.21.3\" -DSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DEXECSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DTCL_DEBUGGER -O2 -pipe -g -fPIC -DDFLT_STTY="\"sane\"" ./exp_printify.c cc -c -I. -I. -I/usr/include/tcl/generic -I/a/ports/x11/tk41/work/tk4.1/generic -I/usr/X11R6/include -DEXP_VERSION=\"5.21.3\" -DSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DEXECSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DTCL_DEBUGGER -O2 -pipe -g -fPIC -DDFLT_STTY="\"sane\"" ./exp_trap.c cc -c -I. -I. -I/usr/include/tcl/generic -I/a/ports/x11/tk41/work/tk4.1/generic -I/usr/X11R6/include -DEXP_VERSION=\"5.21.3\" -DSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DEXECSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DTCL_DEBUGGER -O2 -pipe -g -fPIC -DDFLT_STTY="\"sane\"" exp_console.c cc -c -I. -I. -I/usr/include/tcl/generic -I/a/ports/x11/tk41/work/tk4.1/generic -I/usr/X11R6/include -DEXP_VERSION=\"5.21.3\" -DSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DEXECSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DTCL_DEBUGGER -O2 -pipe -g -fPIC -DDFLT_STTY="\"sane\"" ./exp_strf.c cc -c -I. -I. -I/usr/include/tcl/generic -I/a/ports/x11/tk41/work/tk4.1/generic -I/usr/X11R6/include -DEXP_VERSION=\"5.21.3\" -DSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DEXECSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DTCL_DEBUGGER -O2 -pipe -g -fPIC -DDFLT_STTY="\"sane\"" exp_glob.c cc -c -I. -I. -I/usr/include/tcl/generic -I/a/ports/x11/tk41/work/tk4.1/generic -I/usr/X11R6/include -DEXP_VERSION=\"5.21.3\" -DSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DEXECSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DTCL_DEBUGGER -O2 -pipe -g -fPIC -DDFLT_STTY="\"sane\"" ./exp_win.c cc -c -I. -I. -I/usr/include/tcl/generic -I/a/ports/x11/tk41/work/tk4.1/generic -I/usr/X11R6/include -DEXP_VERSION=\"5.21.3\" -DSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DEXECSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DTCL_DEBUGGER -O2 -pipe -g -fPIC -DDFLT_STTY="\"sane\"" ./Dbg.c cc -c -I. -I. -I/usr/include/tcl/generic -I/a/ports/x11/tk41/work/tk4.1/generic -I/usr/X11R6/include -DEXP_VERSION=\"5.21.3\" -DSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DEXECSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DTCL_DEBUGGER -O2 -pipe -g -fPIC -DDFLT_STTY="\"sane\"" exp_clib.c cc -c -I. -I. -I/usr/include/tcl/generic -I/a/ports/x11/tk41/work/tk4.1/generic -I/usr/X11R6/include -DEXP_VERSION=\"5.21.3\" -DSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DEXECSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DTCL_DEBUGGER -O2 -pipe -g -fPIC -DDFLT_STTY="\"sane\"" exp_closetcl.c cc -c -I. -I. -I/usr/include/tcl/generic -I/a/ports/x11/tk41/work/tk4.1/generic -I/usr/X11R6/include -DEXP_VERSION=\"5.21.3\" -DSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DEXECSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DTCL_DEBUGGER -O2 -pipe -g -fPIC -DDFLT_STTY="\"sane\"" exp_memmove.c cc -c -I. -I. -I/usr/include/tcl/generic -I/a/ports/x11/tk41/work/tk4.1/generic -I/usr/X11R6/include -DEXP_VERSION=\"5.21.3\" -DSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DEXECSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DTCL_DEBUGGER -O2 -pipe -g -fPIC -DDFLT_STTY="\"sane\"" exp_tty_comm.c cc -c -I. -I. -I/usr/include/tcl/generic -I/a/ports/x11/tk41/work/tk4.1/generic -I/usr/X11R6/include -DEXP_VERSION=\"5.21.3\" -DSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DEXECSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DTCL_DEBUGGER -O2 -pipe -g -fPIC -DDFLT_STTY="\"sane\"" ./exp_select.c cc -c -I. -I. -I/usr/include/tcl/generic -I/a/ports/x11/tk41/work/tk4.1/generic -I/usr/X11R6/include -DEXP_VERSION=\"5.21.3\" -DSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DEXECSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DTCL_DEBUGGER -O2 -pipe -g -fPIC -DDFLT_STTY="\"sane\"" ./exp_event.c rm -f libexpect521.so.1.0 ld -Bshareable -x -o libexpect521.so.1.0 exp_command.o expect.o pty_termios.o exp_inter.o exp_regexp.o exp_tty.o exp_log.o exp_main_sub.o exp_pty.o exp_printify.o exp_trap.o exp_console.o exp_strf.o exp_glob.o exp_win.o Dbg.o exp_clib.o exp_closetcl.o exp_memmove.o exp_tty_comm.o exp_select.o exp_event.o cc -O2 -pipe -g -fPIC -o expect exp_main_exp.o -L/a/ports/lang/expect/work/expect-5.21 -lexpect521 -ltcl75 -lutil -lm : expect rm -f libexpect521.a ar cr libexpect521.a exp_command.o expect.o pty_termios.o exp_inter.o exp_regexp.o exp_tty.o exp_log.o exp_main_sub.o exp_pty.o exp_printify.o exp_trap.o exp_console.o exp_strf.o exp_glob.o exp_win.o Dbg.o exp_clib.o exp_closetcl.o exp_memmove.o exp_tty_comm.o exp_select.o exp_event.o : libexpect521.a cc -c -DHAVE_UNISTD_H=1 -DHAVE_LIMITS_H=1 -DSTDC_HEADERS=1 -I. -I. -I/usr/include/tcl/generic -I/a/ports/x11/tk41/work/tk4.1/generic -I/usr/X11R6/include -DEXP_VERSION=\"5.21.3\" -DSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DEXECSCRIPTDIR=\"/usr/local/lib/expect5.21\" -DTCL_DEBUGGER -O2 -pipe -g -fPIC ./exp_main_tk.c cc -O2 -pipe -g -fPIC -o expectk exp_main_tk.o -L/a/ports/lang/expect/work/expect-5.21 -lexpect521 -LNONE/lib/itcl -ltk41i -ltcl75 -lutil -L/usr/X11R6/lib -lX11 -lm ld: -ltk41i: no match *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. From owner-freebsd-ports Wed Oct 30 13:57:52 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id NAA03492 for ports-outgoing; Wed, 30 Oct 1996 13:57:52 -0800 (PST) Received: from spinner.DIALix.COM (root@spinner.DIALix.COM [192.203.228.67]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id NAA03487; Wed, 30 Oct 1996 13:57:44 -0800 (PST) Received: from spinner.DIALix.COM (peter@localhost.DIALix.oz.au [127.0.0.1]) by spinner.DIALix.COM (8.8.2/8.8.2) with ESMTP id FAA01248; Thu, 31 Oct 1996 05:57:39 +0800 (WST) Message-Id: <199610302157.FAA01248@spinner.DIALix.COM> X-Mailer: exmh version 1.6.9 8/22/96 To: asami@freebsd.org (Satoshi Asami) cc: chuckr@glue.umd.edu, ports@freebsd.org Subject: Re: expect build failure In-reply-to: Your message of "Wed, 30 Oct 1996 13:38:03 PST." <199610302138.NAA21271@silvia.HIP.Berkeley.EDU> Date: Thu, 31 Oct 1996 05:57:37 +0800 From: Peter Wemm Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Satoshi Asami wrote: > I have itcl installed (there is a "libtk41i" shared library in > /usr/local/lib), could it be causing the confusion? > > Satoshi > ------- > ===> Extracting for expect-5.21 > ===> expect-5.21 depends on shared library: tk41\.1\. - found > (cd /usr/ports/x11/tk41 && make extract) > Checksums OK. > ===> Extracting for tk-4.1 > ln -s /usr/ports/x11/tk41/work/tk* /a/ports/lang/expect/work > ===> Patching for expect-5.21 [...] > cc -O2 -pipe -g -fPIC -o expectk exp_main_tk.o -L/a/ports/lang/expect/work/e xpect-5.21 -lexpect521 -LNONE/lib/itcl -ltk41i -ltcl75 -lutil -L/usr/X11R 6/lib -lX11 -lm > ld: -ltk41i: no match > *** Error code 1 Hmm, it's getting the itcl stuff from somewhere, but it's not showing it up in the config output.. Have a look through the config.status file and see what values it's picked up for TCL_LIB_SPEC, TCL_BUILD_LIB_SPEC etc. Hmm, no, that would be in the tclConfig.sh and tkConfig.sh files. Hmm... The tkConfig.sh file hasn't been overwritten by any chance, has it? Cheers, -Peter From owner-freebsd-ports Wed Oct 30 15:20:55 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id PAA08922 for ports-outgoing; Wed, 30 Oct 1996 15:20:55 -0800 (PST) Received: from sovcom.kiae.su (sovcom.kiae.su [193.125.152.1]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id PAA08915; Wed, 30 Oct 1996 15:20:46 -0800 (PST) Received: by sovcom.kiae.su id AA24690 (5.65.kiae-1 ); Thu, 31 Oct 1996 02:17:41 +0300 Received: by sovcom.KIAE.su (UUMAIL/2.0); Thu, 31 Oct 96 02:17:40 +0300 Received: (from ache@localhost) by nagual.ru (8.8.2/8.8.2) id CAA01403; Thu, 31 Oct 1996 02:16:40 +0300 (MSK) Message-Id: <199610302316.CAA01403@nagual.ru> Subject: We need to place WWW note that ports are for -current only In-Reply-To: <199610302305.VAA11346@srv1-bsb.GNS.com.br> from "Mario Sergio Fujikawa Ferreira" at "Oct 30, 96 09:05:31 pm" To: lioux@GNS.com.br (Mario Sergio Fujikawa Ferreira) Date: Thu, 31 Oct 1996 02:16:40 +0300 (MSK) Cc: www@freebsd.org, ports@freebsd.org From: "=?KOI8-R?Q?=E1=CE=C4=D2=C5=CA_=FE=C5=D2=CE=CF=D7?=" (Andrey A. Chernov) Organization: self X-Class: Fast X-Mailer: ELM [version 2.4ME+ PL28 (25)] Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Could we please mention with VERY BIG LETTERS somewhere on our WWW that PORTS ARE FOR -CURRENT ONLY! I receive tooooooooooo many similar questions in the last times... > There is a little problem with the ncftp-2.4.1 port. > The makefile is a little bit troubled. > In the install part: instead of doing what it was supposed to, the makefile starts ncftp. > There goes a patch to fix the behavior: > > 20,21c20,21 > < $(INSTALL_PROGRAM) $(WRKSRC)/ncftp $(PREFIX)/bin/ncftp2 > < $(INSTALL_MAN) $(WRKSRC)/ncftp.1 $(PREFIX)/man/man1/ncftp2.1 > --- > > $(INSTALL) -c $(STRIP) -o $(BINOWN) -g $(BINGRP) -m $(BINMODE) $(WRKSRC)/ncftp $(PREFIX)/bin/ncftp2 > > $(INSTALL) -c -o $(BINOWN) -g $(BINGRP) -m 644 $(WRKSRC)/ncftp.1 $(PREFIX)/man/man1/ncftp2.1 -- Andrey A. Chernov http://www.nagual.ru/~ache/ From owner-freebsd-ports Wed Oct 30 15:34:34 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id PAA09591 for ports-outgoing; Wed, 30 Oct 1996 15:34:34 -0800 (PST) Received: from dfw-ix5.ix.netcom.com (dfw-ix5.ix.netcom.com [206.214.98.5]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id PAA09586 for ; Wed, 30 Oct 1996 15:34:28 -0800 (PST) Received: from silvia.HIP.Berkeley.EDU (wck-ca5-20.ix.netcom.com [199.35.213.180]) by dfw-ix5.ix.netcom.com (8.6.13/8.6.12) with ESMTP id PAA11830; Wed, 30 Oct 1996 15:32:56 -0800 Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.2/8.6.9) id PAA22047; Wed, 30 Oct 1996 15:32:50 -0800 (PST) Date: Wed, 30 Oct 1996 15:32:50 -0800 (PST) Message-Id: <199610302332.PAA22047@silvia.HIP.Berkeley.EDU> To: peter@spinner.DIALix.COM CC: chuckr@glue.umd.edu, ports@freebsd.org In-reply-to: <199610302157.FAA01248@spinner.DIALix.COM> (message from Peter Wemm on Thu, 31 Oct 1996 05:57:37 +0800) Subject: Re: expect build failure From: asami@freebsd.org (Satoshi Asami) Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk * Have a look through the config.status file and see what values it's picked * up for TCL_LIB_SPEC, TCL_BUILD_LIB_SPEC etc. Hmm, no, that would be in * the tclConfig.sh and tkConfig.sh files. Hmm... The tkConfig.sh file * hasn't been overwritten by any chance, has it? Ding! It looks like the itcl port overwrote it. I re-installed tk-4.1 and the expect port build fine. Chuck, seems like yet another thing we need to teach the itcl port.... :( Satoshi From owner-freebsd-ports Wed Oct 30 16:18:28 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id QAA11778 for ports-outgoing; Wed, 30 Oct 1996 16:18:28 -0800 (PST) Received: from po2.glue.umd.edu (po2.glue.umd.edu [129.2.128.45]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id QAA11771; Wed, 30 Oct 1996 16:18:26 -0800 (PST) Received: from downlink.eng.umd.edu (downlink.eng.umd.edu [129.2.98.182]) by po2.glue.umd.edu (8.8.2/8.7.3) with ESMTP id TAA29562; Wed, 30 Oct 1996 19:18:17 -0500 (EST) Received: from localhost (chuckr@localhost) by downlink.eng.umd.edu (8.7.5/8.7.3) with SMTP id TAA16506; Wed, 30 Oct 1996 19:18:16 -0500 (EST) X-Authentication-Warning: downlink.eng.umd.edu: chuckr owned process doing -bs Date: Wed, 30 Oct 1996 19:18:11 -0500 (EST) From: Chuck Robey X-Sender: chuckr@downlink.eng.umd.edu To: Satoshi Asami cc: peter@spinner.DIALix.COM, ports@freebsd.org Subject: Re: expect build failure In-Reply-To: <199610302332.PAA22047@silvia.HIP.Berkeley.EDU> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Wed, 30 Oct 1996, Satoshi Asami wrote: > * Have a look through the config.status file and see what values it's picked > * up for TCL_LIB_SPEC, TCL_BUILD_LIB_SPEC etc. Hmm, no, that would be in > * the tclConfig.sh and tkConfig.sh files. Hmm... The tkConfig.sh file > * hasn't been overwritten by any chance, has it? > > Ding! It looks like the itcl port overwrote it. I re-installed > tk-4.1 and the expect port build fine. > > Chuck, seems like yet another thing we need to teach the itcl > port.... :( I thought I'd taken that particular piece of evil out before, maybe not. I'll check again. I downloaded the beta.tar.gz from (something).nist.gov and found it unpacked into expect-5.20 (I was trying to help). Where'd you get the 5.21 sources from? > > Satoshi > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@eng.umd.edu | communications topic, C programming, and Unix. 9120 Edmonston Ct #302 | Greenbelt, MD 20770 | I run Journey2 and n3lxx, both FreeBSD (301) 220-2114 | version 2.2 current -- and great FUN! ----------------------------+----------------------------------------------- From owner-freebsd-ports Wed Oct 30 16:42:03 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id QAA13013 for ports-outgoing; Wed, 30 Oct 1996 16:42:03 -0800 (PST) Received: from spinner.DIALix.COM (root@spinner.DIALix.COM [192.203.228.67]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id QAA13008; Wed, 30 Oct 1996 16:41:56 -0800 (PST) Received: from spinner.DIALix.COM (peter@localhost.DIALix.oz.au [127.0.0.1]) by spinner.DIALix.COM (8.8.2/8.8.2) with ESMTP id IAA02250; Thu, 31 Oct 1996 08:41:40 +0800 (WST) Message-Id: <199610310041.IAA02250@spinner.DIALix.COM> X-Mailer: exmh version 1.6.9 8/22/96 To: Chuck Robey cc: Satoshi Asami , ports@freebsd.org Subject: Re: expect build failure In-reply-to: Your message of "Wed, 30 Oct 1996 19:18:11 EST." Date: Thu, 31 Oct 1996 08:41:39 +0800 From: Peter Wemm Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Chuck Robey wrote: > On Wed, 30 Oct 1996, Satoshi Asami wrote: > > * Have a look through the config.status file and see what values it's pick ed > > * up for TCL_LIB_SPEC, TCL_BUILD_LIB_SPEC etc. Hmm, no, that would be in > > * the tclConfig.sh and tkConfig.sh files. Hmm... The tkConfig.sh file > > * hasn't been overwritten by any chance, has it? > > > > Ding! It looks like the itcl port overwrote it. I re-installed > > tk-4.1 and the expect port build fine. > > > > Chuck, seems like yet another thing we need to teach the itcl > > port.... :( > > I thought I'd taken that particular piece of evil out before, maybe not. > I'll check again. I downloaded the beta.tar.gz from (something).nist.gov > and found it unpacked into expect-5.20 (I was trying to help). Where'd > you get the 5.21 sources from? The ftp.cme.nist.gov site where we used to fetch the distfile from only seems to have older stuff on it now. :-( The primary dist point now is from http://expect.nist.gov, but there is a huge long pathname for an alternative ftp pathname if needed. Yeah, I did an update based on beta 5 (?) some months ago and forgot about it. I was about to commit it when I thught I'd better check the http page first, just in case. I'm glad I did, because I'd have missed the 5.21 release from a few weeks back. > > Satoshi Cheers, -Peter From owner-freebsd-ports Wed Oct 30 16:56:56 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id QAA14155 for ports-outgoing; Wed, 30 Oct 1996 16:56:56 -0800 (PST) Received: from kavemachine.magna.com.au (kavemachine.magna.com.au [203.4.215.219]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id QAA14149 for ; Wed, 30 Oct 1996 16:56:51 -0800 (PST) Received: (from kaveman@localhost) by kavemachine.magna.com.au (8.6.12/8.6.12) id JAA19843; Thu, 31 Oct 1996 09:42:53 +1100 Date: Thu, 31 Oct 1996 09:42:52 +1100 (EST) From: Julian Jenkins To: Thomas Gellekum cc: Pedro Giffuni , ports@freebsd.org Subject: Re: Spice package? In-Reply-To: <199610301358.OAA05686@ghpc6.ihf.rwth-aachen.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Wed, 30 Oct 1996, Thomas Gellekum wrote: > Pedro Giffuni wrote: > > > > Now, Berkeley has even made publicly available the original code at: > > http://www-cad.eecs.berkeley.edu/Software/software.html > > and they don't even WARN about such restriction ! > > Last time I looked (when I imported the port) spice3f4 was _not_ > publicly available from ILB. I have downloaded the package now; I'll > see if we can update our port and don't have to use the pre-patched > stuff from sunsite. I was planning to do this but cannot until the end of next week, after my thesis is due. Kaveman kaveman@magna.com.au From owner-freebsd-ports Wed Oct 30 18:23:29 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id SAA18364 for ports-outgoing; Wed, 30 Oct 1996 18:23:29 -0800 (PST) Received: from dfw-ix4.ix.netcom.com (dfw-ix4.ix.netcom.com [206.214.98.4]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id SAA18355; Wed, 30 Oct 1996 18:23:25 -0800 (PST) Received: from silvia.HIP.Berkeley.EDU (ala-ca13-08.ix.netcom.com [204.32.168.40]) by dfw-ix4.ix.netcom.com (8.6.13/8.6.12) with ESMTP id SAA28909; Wed, 30 Oct 1996 18:22:16 -0800 Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.2/8.6.9) id SAA01266; Wed, 30 Oct 1996 18:21:26 -0800 (PST) Date: Wed, 30 Oct 1996 18:21:26 -0800 (PST) Message-Id: <199610310221.SAA01266@silvia.HIP.Berkeley.EDU> To: max@wide.ad.jp CC: ports@FreeBSD.org, gibbs@FreeBSD.org In-reply-to: <199610191712.CAA04347@mail.tky007.tth.expo96.ad.jp> (message from Masafumi NAKANE/=?ISO-2022-JP?B?GyRCQ2Y6LDJtSjgbKEI=?= on Sun, 20 Oct 1996 02:12:06 +0900) Subject: Re: Do we still need ports/net/sup? From: asami@FreeBSD.org (Satoshi Asami) Sender: owner-ports@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk * Is there any reason why we still have ports/net/sup? I think it * doesn't have to be in the ports collection since it's already * installed in /usr/sbin on standard systems. I think you are quite right, in fact I brought it up to Justin Gibbs and he said "Hmmm. I'd rather see it get removed from the main source tree actually." While that may be better, it is in /usr/src currently and I don't recally any discussion about deleting it. So I will remove it from the ports tree in a few days if noone objects. Satoshi From owner-freebsd-ports Wed Oct 30 18:46:55 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id SAA19372 for ports-outgoing; Wed, 30 Oct 1996 18:46:55 -0800 (PST) Received: from dfw-ix6.ix.netcom.com (dfw-ix6.ix.netcom.com [206.214.98.6]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id SAA19354; Wed, 30 Oct 1996 18:46:51 -0800 (PST) Received: from silvia.HIP.Berkeley.EDU (ala-ca13-08.ix.netcom.com [204.32.168.40]) by dfw-ix6.ix.netcom.com (8.6.13/8.6.12) with ESMTP id SAA29693; Wed, 30 Oct 1996 18:46:10 -0800 Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.2/8.6.9) id SAA01463; Wed, 30 Oct 1996 18:46:07 -0800 (PST) Date: Wed, 30 Oct 1996 18:46:07 -0800 (PST) Message-Id: <199610310246.SAA01463@silvia.HIP.Berkeley.EDU> To: markm@freebsd.org CC: ports@freebsd.org, peter@spinner.DIALix.COM Subject: tclX75 build failure From: asami@freebsd.org (Satoshi Asami) Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk I swear this thing used to build before. In fact, I have a package built on Oct. 17 to prove it. Satoshi ------- ## make Checksums OK. ===> Extracting for tclX-7.5.2 ===> tclX-7.5.2 depends on shared library: tk41\.1 - found ===> tclX-7.5.2 depends on: /usr/ports/x11/tk41 ===> Verifying build for /usr/ports/x11/tk41 Checksums OK. ===> Returning to build of tclX-7.5.2 ===> Patching for tclX-7.5.2 ===> Configuring for tclX-7.5.2 cd /a/ports/lang/tclX75/work/tclX7.5.2/unix ; mv Config.mk Config.mk.orig2 && sed -e 's;TCL_SRC=${srcbasedir}/../tcl7.5;TCL_SRC=/usr/src/contrib/tcl;' -e 's;TCL_BUILD=${bldbasedir}/../tcl7.5;TCL_BUILD=/usr/src/contrib/tcl;' -e 's;TCL_CONFIG=${TCL_BUILD}/unix/tclConfig.sh;TCL_CONFIG=/usr/libdata/tcl/tclConfig.sh;' -e 's;TCL_LIB=${TCL_BUILD_LIB_SPEC};TCL_LIB=${TCL_LIB_SPEC};' -e 's;TCL_SHLIB_DIR=${bldbasedir};TCL_SHLIB_DIR=/usr/src/contrib/tcl;' -e 's;TK_SRC=${srcbasedir};TK_SRC=/usr/ports/x11/tk41/work/tk4.1;' -e 's;TK_BUILD=${bldbasedir};TK_BUILD=/usr/ports/x11/tk41/work/tk4.1;' -e 's;TK_LIB=${bldbasedir};TK_LIB=/usr/ports/x11/tk41/work/tk4.1;' -e 's;TK_SHLIB_DIR=${bldbasedir};TK_SHLIB_DIR=/usr/ports/x11/tk41/work/tk4.1;' Config.mk.orig2 >Config.mk creating cache ./config.cache Will build Tk specific code and wishx No architecture suffix will be used checking TclX versions... 7.5.2 checking macro values from Config.mk... ok Will build shared libraries checking which C compiler to use... using C compiler specified in by CC env var checking for ranlib... ranlib configure: error: do not know how to build shared libraries for this Unix system *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. From owner-freebsd-ports Wed Oct 30 18:46:56 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id SAA19384 for ports-outgoing; Wed, 30 Oct 1996 18:46:56 -0800 (PST) Received: from po1.glue.umd.edu (po1.glue.umd.edu [129.2.128.44]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id SAA19370; Wed, 30 Oct 1996 18:46:54 -0800 (PST) Received: from baud.eng.umd.edu (baud.eng.umd.edu [129.2.98.183]) by po1.glue.umd.edu (8.8.2/8.7.3) with ESMTP id VAA10010; Wed, 30 Oct 1996 21:46:44 -0500 (EST) Received: from localhost (chuckr@localhost) by baud.eng.umd.edu (8.7.5/8.7.3) with SMTP id VAA14220; Wed, 30 Oct 1996 21:46:42 -0500 (EST) X-Authentication-Warning: baud.eng.umd.edu: chuckr owned process doing -bs Date: Wed, 30 Oct 1996 21:46:41 -0500 (EST) From: Chuck Robey X-Sender: chuckr@baud.eng.umd.edu To: Peter Wemm cc: Satoshi Asami , ports@FreeBSD.org Subject: Re: expect build failure In-Reply-To: <199610310041.IAA02250@spinner.DIALix.COM> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk On Thu, 31 Oct 1996, Peter Wemm wrote: > Chuck Robey wrote: > > On Wed, 30 Oct 1996, Satoshi Asami wrote: > > > * Have a look through the config.status file and see what values it's pick > ed > > > * up for TCL_LIB_SPEC, TCL_BUILD_LIB_SPEC etc. Hmm, no, that would be in > > > * the tclConfig.sh and tkConfig.sh files. Hmm... The tkConfig.sh file > > > * hasn't been overwritten by any chance, has it? > > > > > > Ding! It looks like the itcl port overwrote it. I re-installed > > > tk-4.1 and the expect port build fine. > > > > > > Chuck, seems like yet another thing we need to teach the itcl > > > port.... :( > > > > I thought I'd taken that particular piece of evil out before, maybe not. > > I'll check again. I downloaded the beta.tar.gz from (something).nist.gov > > and found it unpacked into expect-5.20 (I was trying to help). Where'd > > you get the 5.21 sources from? > > The ftp.cme.nist.gov site where we used to fetch the distfile from only > seems to have older stuff on it now. :-( The primary dist point now is > from http://expect.nist.gov, but there is a huge long pathname for an > alternative ftp pathname if needed. > > Yeah, I did an update based on beta 5 (?) some months ago and forgot about > it. I was about to commit it when I thught I'd better check the http page > first, just in case. I'm glad I did, because I'd have missed the 5.21 > release from a few weeks back. Oh, I see. Until recently, anything named "expect.tar.gz" was an oldie. The moved 5.21 into expect.tar.gz, without making any kind of announcment, or any indication whatsoever on the web page. I'd seen this page before, but passed it up, thinking they'd marked it sanely. OK, I've got it now. Where's the port of expect? I will go and DEFINITELY clean out itcl this weekend, and I want to prove it with the new port (unless you're going to commit it quickly, then I'll get it from cvs, thanks). I've just got past 2 more exams, I have time for 15 quick breaths. I've gotta do something in a functional language for a class (I really don't care for functional languages!) It was probably a mistake to go for 2 degrees, I see that now. > > > > Satoshi > > Cheers, > -Peter > > > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@eng.umd.edu | communications topic, C programming, and Unix. 9120 Edmonston Ct #302 | Greenbelt, MD 20770 | I run Journey2 and n3lxx, both FreeBSD (301) 220-2114 | version 2.2 current -- and great FUN! ----------------------------+----------------------------------------------- From owner-freebsd-ports Wed Oct 30 20:43:03 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id UAA25482 for ports-outgoing; Wed, 30 Oct 1996 20:43:03 -0800 (PST) Received: from who.cdrom.com (who.cdrom.com [204.216.27.3]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id UAA25477; Wed, 30 Oct 1996 20:42:59 -0800 (PST) Received: from dfw-ix7.ix.netcom.com (dfw-ix7.ix.netcom.com [206.214.98.7]) by who.cdrom.com (8.7.5/8.6.11) with SMTP id UAA29638 ; Wed, 30 Oct 1996 20:42:55 -0800 (PST) Received: from silvia.HIP.Berkeley.EDU (ala-ca13-08.ix.netcom.com [204.32.168.40]) by dfw-ix7.ix.netcom.com (8.6.13/8.6.12) with ESMTP id UAA04906; Wed, 30 Oct 1996 20:40:38 -0800 Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.2/8.6.9) id UAA01773; Wed, 30 Oct 1996 20:40:25 -0800 (PST) Date: Wed, 30 Oct 1996 20:40:25 -0800 (PST) Message-Id: <199610310440.UAA01773@silvia.HIP.Berkeley.EDU> To: erich@freebsd.org CC: ports@freebsd.org, peter@spinner.DIALix.COM Subject: scotty build failure From: asami@freebsd.org (Satoshi Asami) Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Here's another one that just broke. The file in question in /usr/local/lib is named "tnm2.1.3.so.1.0". (But don't we need a "lib" in front of library names?) Satoshi ------- : ===> Installing for scotty-2.1.3 Installing ntping Installing straps Making directory /usr/local/lib/tnm2.1.3 Installing scotty2.1.3 and tnm2.1.3.so.1.0 Making directory /usr/local/lib/tnm2.1.3/library Installing ./../tnm/library/README Installing ./../tnm/library/dialog.tcl Installing ./../tnm/library/output.tcl Installing ./../tnm/library/snmp.tcl Installing ./../tnm/library/monitor.tcl Installing ./../tnm/library/obsolete.tcl Installing ./../tnm/library/init.tcl initialization failed: couldn't load file "/usr/local/lib/tnm2.1.3.so": cannot s tat "/usr/local/lib/tnm2.1.3.so" : No such file or directory This usually means that you have to define the TCLLIBPATH environment variable to point to the tnm library directory or you have to include the path to the tnm library directory in Tcl's auto_path variable. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. From owner-freebsd-ports Wed Oct 30 21:18:39 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id VAA27426 for ports-outgoing; Wed, 30 Oct 1996 21:18:39 -0800 (PST) Received: from mail.webspan.net (mail.webspan.net [206.154.70.7]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id VAA27412 for ; Wed, 30 Oct 1996 21:18:31 -0800 (PST) Received: from orion.webspan.net (orion.webspan.net [206.154.70.5]) by mail.webspan.net (8.7.5/8.7.3) with ESMTP id AAA04987; Thu, 31 Oct 1996 00:17:32 -0500 (EST) Received: from orion.webspan.net (localhost [127.0.0.1]) by orion.webspan.net (8.7.5/8.7.3) with ESMTP id AAA28283; Thu, 31 Oct 1996 00:17:31 -0500 (EST) To: Paul Richards cc: Chuck Robey , ports From: "Gary Palmer" Subject: Re: missing cvs directories In-reply-to: Your message of "28 Oct 1996 16:15:20 GMT." <57683vysiv.fsf@tees.elsevier.co.uk> Date: Thu, 31 Oct 1996 00:17:31 -0500 Message-ID: <28280.846739051@orion.webspan.net> Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Paul Richards wrote in message ID <57683vysiv.fsf@tees.elsevier.co.uk>: > Chuck Robey writes: > > > I just checked zip and xemacs, they do have the patches dir missing, but > > they both build fine, regardless. > > That's not the issue. Someone/something has deleted these directories > from the *repository*. You can no longer check out code that once > existed. That's not supposed to happen (particularly not on this > scale, it was quite a list by the time I'd finished). Because there is no need to keep around old Attic entries (the ports tree is never tagged), Peter goes through occasionally with a broom and cleans them out. He normally waits a month or so so that most people who use copies of the repository manage miss the dreaded CVS errors. I guess you just waited too long. Gary -- Gary Palmer FreeBSD Core Team Member FreeBSD: Turning PC's into workstations. See http://www.FreeBSD.ORG/ for info From owner-freebsd-ports Wed Oct 30 23:49:35 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA06966 for ports-outgoing; Wed, 30 Oct 1996 23:49:35 -0800 (PST) Received: from ghpc6.ihf.rwth-aachen.de (ghpc6.ihf.RWTH-Aachen.DE [134.130.90.6]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id XAA06956 for ; Wed, 30 Oct 1996 23:49:02 -0800 (PST) Received: (from thomas@localhost) by ghpc6.ihf.rwth-aachen.de (8.6.12/8.6.9) id IAA06777; Thu, 31 Oct 1996 08:43:23 +0100 From: Thomas Gellekum Message-Id: <199610310743.IAA06777@ghpc6.ihf.rwth-aachen.de> Subject: Re: Spice package? To: kaveman@magna.com.au (Julian Jenkins) Date: Thu, 31 Oct 1996 08:43:20 +0100 (MET) Cc: thomas@ghpc8.ihf.rwth-aachen.de, m230761@ingenieria.ingsala.unal.edu.co, ports@freebsd.org In-Reply-To: from Julian Jenkins at "Oct 31, 96 09:42:52 am" Organization: Institut f. Hochfrequenztechnik, RWTH Aachen X-Mailer: ELM [version 2.4ME+ PL11 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Julian Jenkins wrote: > > I have downloaded the package now; I'll > > see if we can update our port and don't have to use the pre-patched > > stuff from sunsite. > > I was planning to do this but cannot until the end of next week, after my > thesis is due. I'll leave this to you, then. tg From owner-freebsd-ports Thu Oct 31 03:30:04 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id DAA20246 for ports-outgoing; Thu, 31 Oct 1996 03:30:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id DAA20237; Thu, 31 Oct 1996 03:30:02 -0800 (PST) Resent-Date: Thu, 31 Oct 1996 03:30:02 -0800 (PST) Resent-Message-Id: <199610311130.DAA20237@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, Received: (from nobody@localhost)by.freefall.freebsd.org.id.DAA19971;Thu; (8.7.5/8.7.3);, 31 Oct 1996 03:27:36.-0800 (PST) Message-Id: <199610311127.DAA19971@freefall.freebsd.org> Date: Thu, 31 Oct 1996 03:27:36 -0800 (PST) From: Nakai@Mlab.t.u-tokyo.ac.jp To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/1934: New port: Virtual GameBoy Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 1934 >Category: ports >Synopsis: New port: Virtual GameBoy >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Oct 31 03:30:01 PST 1996 >Last-Modified: >Originator: Yukihiro Nakai >Organization: University of Tokyo >Release: 2.2-1014SNAP >Environment: >Description: I have just uploaded new port 'Virtual Game Boy'. ftp://ftp.noc.titech.ac.jp/pub/tmp/aki/in.coming/vgb.tgz It needs some against-law cartridge files even when core team people or so test this port, so I show some sites(illegal) includes GameBoy cartridges. http://consider.ferris.edu:8000/gameboy/gameboy.html http://mail.bcpl.lib.md.us/~dstrickl/gbgames/ http://www.worldonline.nl/~terdudio/gameboy/ Nintendo GameBoy is the world-wide famous handy -type game machine. It use only little monocrome displat but it shows very various games. Please take a look. Yukihiro Nakai >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-ports Thu Oct 31 04:21:48 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id EAA25852 for ports-outgoing; Thu, 31 Oct 1996 04:21:48 -0800 (PST) Received: from silvia.HIP.Berkeley.EDU (silvia.HIP.Berkeley.EDU [136.152.64.181]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id EAA25841 for ; Thu, 31 Oct 1996 04:21:42 -0800 (PST) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.2/8.6.9) id EAA03809; Thu, 31 Oct 1996 04:21:40 -0800 (PST) Date: Thu, 31 Oct 1996 04:21:40 -0800 (PST) Message-Id: <199610311221.EAA03809@silvia.HIP.Berkeley.EDU> To: ports@freebsd.org Subject: exodos build failure From: asami@freebsd.org (Satoshi Asami) Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Could this be one of those g++-2.7.x things? Satoshi ------- ===> Building for sm-3.1 for i in `echo include common config client admin serverlib server formatvolume diskproc`;\ do (cd $i; dmake -S workspace.mod); done; workspace.mod is up to date. for i in `echo error options include list lm pool trace util`;\ do (cd $i; dmake -S -S workspace.mod); done; rm -f error.C g++ -I../../include -I../../common/include -O2 -Dsparc -DMMAP_BUFFER_POOL -c error.C In file included from error.C:5: errorCodeString.c:46: warning: type qualifiers for `int sys_nerr' /usr/include/stdio.h:244: warning: conflict with previous decl `int const sys_nerr' errorCodeString.c: In function `char * errorCodeString(int)': errorCodeString.c:81: warning: converting `const char *' to `char *' is a contravariance violation errorCodeString.c:81: warning: return to `char *' from `const char *' discards const g++ -I../../include -I../../common/include -O2 -Dsparc -DMMAP_BUFFER_POOL -c -fpic error.C -o error.so In file included from error.C:5: errorCodeString.c:46: warning: type qualifiers for `int sys_nerr' /usr/include/stdio.h:244: warning: conflict with previous decl `int const sys_nerr' errorCodeString.c: In function `char * errorCodeString(int)': errorCodeString.c:81: warning: converting `const char *' to `char *' is a contravariance violation errorCodeString.c:81: warning: return to `char *' from `const char *' discards const rm -f options.C g++ -I../../include -I../../common/include -O2 -Dsparc -DMMAP_BUFFER_POOL -c options.C g++ -I../../include -I../../common/include -O2 -Dsparc -DMMAP_BUFFER_POOL -c -fpic options.C -o options.so include.o is up to date. g++ -I../../include -I../../common/include -O2 -Dsparc -DMMAP_BUFFER_POOL -c -fpic include.C -o include.so workspace.mod is up to date. g++ -I../../include -I../../common/include -O2 -Dsparc -DMMAP_BUFFER_POOL -c list.C g++ -I../../include -I../../common/include -O2 -Dsparc -DMMAP_BUFFER_POOL -c -fpic list.C -o list.so rm -f lm.C g++ -I../../include -I../../common/include -O2 -Dsparc -DMMAP_BUFFER_POOL -c lm.C g++ -I../../include -I../../common/include -O2 -Dsparc -DMMAP_BUFFER_POOL -c -fpic lm.C -o lm.so g++ -I../../include -I../../common/include -O2 -Dsparc -DMMAP_BUFFER_POOL -c pool.C g++ -I../../include -I../../common/include -O2 -Dsparc -DMMAP_BUFFER_POOL -c -fpic pool.C -o pool.so g++ -I../../include -I../../common/include -O2 -Dsparc -DMMAP_BUFFER_POOL -c trace.C g++ -I../../include -I../../common/include -O2 -Dsparc -DMMAP_BUFFER_POOL -c -fpic trace.C -o trace.so rm -f util.C g++ -I../../include -I../../common/include -O2 -Dsparc -DMMAP_BUFFER_POOL -c util.C g++ -I../../include -I../../common/include -O2 -Dsparc -DMMAP_BUFFER_POOL -c -fpic util.C -o util.so ld -x -r `find error options include list lm pool trace util -name "*.o" -print` \ -o common.o rm -f libcommon.a ar cr libcommon.a `find error options include list lm pool trace util -name "*.o" -print` ranlib libcommon.a ld -Bshareable -x -r `find error options include list lm pool trace util -name "*.so" -print` \ -o common.so g++ -I../include -I../common/include -O2 -Dsparc -DMMAP_BUFFER_POOL -c config.C making sm_staff.h making sm_client.h for i in `echo bf btree clog fi include io lg lhash lm msg sm smint trace trans util version`;\ do (cd $i; dmake -S -S workspace.mod); done; rm -f bf.C g++ -I../../../src/client/include -I../../include -I../../common/include -O2 -Dsparc -DMMAP_BUFFER_POOL -c bf.C In file included from bf.C:6: space.c:95: warning: overflow in implicit constant conversion ../../include/HashTable.c: In method `class PAGEHASH * HashTable::Find(const class PID *)': ../../include/HashTable.c:159: bad argument 2 for function `class PID * PAGEHASH::keylocation(int, class PID **)' (type was const class PID **) dmake: Error code 1, while making 'bf.o' dmake: Error code 255, while making 'workspace.mod.recursive' dmake: Error code 255, while making 'workspace.mod.recursive' *** Error code 255 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. From owner-freebsd-ports Thu Oct 31 06:05:24 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id GAA06757 for ports-outgoing; Thu, 31 Oct 1996 06:05:24 -0800 (PST) Received: from bacall.lodgenet.com (bacall.lodgenet.com [205.138.147.242]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id GAA06745; Thu, 31 Oct 1996 06:05:20 -0800 (PST) Received: (from mail@localhost) by bacall.lodgenet.com (8.6.12/8.6.12) id IAA05115; Thu, 31 Oct 1996 08:05:11 -0600 Received: from garbo.lodgenet.com(204.124.123.250) by bacall via smap (V1.3) id sma005104; Thu Oct 31 08:04:45 1996 Received: from jake.lodgenet.com (jake.lodgenet.com [204.124.120.30]) by garbo.lodgenet.com (8.6.12/8.6.9) with ESMTP id IAA15406; Thu, 31 Oct 1996 08:04:48 -0600 Received: from jake.lodgenet.com (localhost [127.0.0.1]) by jake.lodgenet.com (8.7.6/8.6.12) with ESMTP id IAA28331; Thu, 31 Oct 1996 08:04:27 -0600 (CST) Message-Id: <199610311404.IAA28331@jake.lodgenet.com> X-Mailer: exmh version 1.6.9 8/22/96 To: asami@freebsd.org (Satoshi Asami) cc: erich@freebsd.org, ports@freebsd.org, peter@spinner.DIALix.COM Subject: Re: scotty build failure In-reply-to: Your message of "Wed, 30 Oct 1996 20:40:25 PST." <199610310440.UAA01773@silvia.HIP.Berkeley.EDU> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 31 Oct 1996 08:04:27 -0600 From: "Eric L. Hernes" Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Satoshi Asami writes: >Here's another one that just broke. The file in question in >/usr/local/lib is named "tnm2.1.3.so.1.0". (But don't we need a "lib" >in front of library names?) If the linker operates on it, yes. As far as I recall, only tcl's `load' operates on this one. The author's idea was to install this stuff and use it by setting the env var TCLLIBPATH to point to the tnm2.1.3/ and tkined1.4.3/ directories. My `solution' was to make a shell wrapper to set this crap. I'll fix the build. The library name crap was/is the brainchild of the author and it appears that no one is supposed to link against it, just use it as tcl library. Is this something that I should look into and try to fix; or just let it be as `flawed by design', but working as the author intended? > >Satoshi >------- > : eric. -- erich@lodgenet.com http://rrnet.com/~erich erich@rrnet.com From owner-freebsd-ports Thu Oct 31 06:33:19 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id GAA10080 for ports-outgoing; Thu, 31 Oct 1996 06:33:19 -0800 (PST) Received: from spinner.DIALix.COM (root@spinner.DIALix.COM [192.203.228.67]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id GAA10071; Thu, 31 Oct 1996 06:33:13 -0800 (PST) Received: from spinner.DIALix.COM (peter@localhost.DIALix.oz.au [127.0.0.1]) by spinner.DIALix.COM (8.8.2/8.8.2) with ESMTP id WAA09452; Thu, 31 Oct 1996 22:33:01 +0800 (WST) Message-Id: <199610311433.WAA09452@spinner.DIALix.COM> X-Mailer: exmh version 1.6.9 8/22/96 To: "Eric L. Hernes" cc: asami@freebsd.org (Satoshi Asami), ports@freebsd.org Subject: Re: scotty build failure In-reply-to: Your message of "Thu, 31 Oct 1996 08:04:27 CST." <199610311404.IAA28331@jake.lodgenet.com> Date: Thu, 31 Oct 1996 22:33:01 +0800 From: Peter Wemm Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk "Eric L. Hernes" wrote: > Satoshi Asami writes: > >Here's another one that just broke. The file in question in > >/usr/local/lib is named "tnm2.1.3.so.1.0". (But don't we need a "lib" > >in front of library names?) > > If the linker operates on it, yes. As far as I recall, only tcl's > `load' operates on this one. The author's idea was to install this > stuff and use it by setting the env var TCLLIBPATH to point > to the tnm2.1.3/ and tkined1.4.3/ directories. My `solution' was > to make a shell wrapper to set this crap. > > I'll fix the build. The library name crap was/is the brainchild of > the author and it appears that no one is supposed to link against it, > just use it as tcl library. Is this something that I should look into > and try to fix; or just let it be as `flawed by design', but working > as the author intended? Hmm, please look more closely at the impact of the change that I did to TCL_SHLIB_SUFFIX='.so.1.0' in tclConfig.sh. To my mind, this is unambigious since it's "SHLIB", meaning library, not "shared object". I was trying to avoid having to do a large, ugly patch to the expect configure script which was expecting TCL_SHLIB_SUFFIX to mean "the bit you whack on the end of a shared library filename so that ld/rtld can link with it". There are other mechanisms to generate the shared library name, if the change that I made to tclConfig.sh is wrong, it needs to come out and expect needs to be fixed to use the alternate mechanism that knows about shlib versioning. IMHO, the naming and documentation of the intent of the variables in tclConfig.sh could be a lot better. Cheers, -Peter From owner-freebsd-ports Thu Oct 31 08:17:27 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id IAA17767 for ports-outgoing; Thu, 31 Oct 1996 08:17:27 -0800 (PST) Received: from bacall.lodgenet.com (bacall.lodgenet.com [205.138.147.242]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id IAA17757; Thu, 31 Oct 1996 08:17:20 -0800 (PST) Received: (from mail@localhost) by bacall.lodgenet.com (8.6.12/8.6.12) id KAA15819; Thu, 31 Oct 1996 10:16:53 -0600 Received: from garbo.lodgenet.com(204.124.123.250) by bacall via smap (V1.3) id sma015813; Thu Oct 31 10:16:49 1996 Received: from jake.lodgenet.com (jake.lodgenet.com [204.124.120.30]) by garbo.lodgenet.com (8.6.12/8.6.9) with ESMTP id KAA18902; Thu, 31 Oct 1996 10:16:50 -0600 Received: from jake.lodgenet.com (localhost [127.0.0.1]) by jake.lodgenet.com (8.7.6/8.6.12) with ESMTP id KAA01236; Thu, 31 Oct 1996 10:16:30 -0600 (CST) Message-Id: <199610311616.KAA01236@jake.lodgenet.com> X-Mailer: exmh version 1.6.9 8/22/96 To: Peter Wemm cc: "Eric L. Hernes" , asami@freebsd.org (Satoshi Asami), ports@freebsd.org Subject: Re: scotty build failure In-reply-to: Your message of "Thu, 31 Oct 1996 22:33:01 +0800." <199610311433.WAA09452@spinner.DIALix.COM> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 31 Oct 1996 10:16:30 -0600 From: "Eric L. Hernes" Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Peter Wemm writes: > >Hmm, please look more closely at the impact of the change that I did to >TCL_SHLIB_SUFFIX='.so.1.0' in tclConfig.sh. To my mind, this is >unambigious since it's "SHLIB", meaning library, not "shared object". I yea, but I have mixed feelings about gratitiously picking 1.0 for the version of whatever uses it. >was trying to avoid having to do a large, ugly patch to the expect >configure script which was expecting TCL_SHLIB_SUFFIX to mean "the bit you >whack on the end of a shared library filename so that ld/rtld can link >with it". > >There are other mechanisms to generate the shared library name, if the >change that I made to tclConfig.sh is wrong, it needs to come out and >expect needs to be fixed to use the alternate mechanism that knows about >shlib versioning. IMHO, the naming and documentation of the intent of the >variables in tclConfig.sh could be a lot better. > scotty needs to be fixed too. It's using TCL_SHLIB_SUFFIX, maybe it needs TCL_SHARED_LIB_SUFFIX. What's the difference between these two? TCL_SHARED_LIB_SUFFIX is currently set to ${VERSION}.so.1.0, could this be set to .so.${VERSION}? Will 3 digit version numbers confuse the linker? Inquiring minds want to know... ;-) This whole tcl configuration crap looks pretty ugly^H^H^H^Hambigious :( >Cheers, >-Peter > > eric. -- erich@lodgenet.com http://rrnet.com/~erich erich@rrnet.com From owner-freebsd-ports Thu Oct 31 14:10:21 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id OAA11827 for ports-outgoing; Thu, 31 Oct 1996 14:10:21 -0800 (PST) Received: from plaut.de (inet.plaut.de [194.39.177.166]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id OAA11816 for ; Thu, 31 Oct 1996 14:10:14 -0800 (PST) Received: from totum.plaut.de (totum.plaut.de [194.39.177.9]) by plaut.de (8.6.12/8.6.12) with ESMTP id XAA03835 for ; Thu, 31 Oct 1996 23:10:11 +0100 Received: from localhost (root@localhost) by totum.plaut.de (8.8.2/8.7.3) with SMTP id XAA15428 for ; Thu, 31 Oct 1996 23:10:12 +0100 (MET) Date: Thu, 31 Oct 1996 23:10:11 +0100 (MET) From: Michael Reifenberger To: FreeBSD-Ports Subject: amanda 2.3.0 anyone under current? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hi, The subject says it. I tried it with no success. I suspect a changed DUMP format but before digging into it I would like to ask If anyone had success... Thanks. Bye! ---- Michael Reifenberger Plaut Software GmbH, R/3 Basis From owner-freebsd-ports Thu Oct 31 14:17:29 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id OAA12453 for ports-outgoing; Thu, 31 Oct 1996 14:17:29 -0800 (PST) Received: from alpha.xerox.com (alpha.Xerox.COM [13.1.64.93]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id OAA12444 for ; Thu, 31 Oct 1996 14:17:17 -0800 (PST) Received: from crevenia.parc.xerox.com ([13.2.116.11]) by alpha.xerox.com with SMTP id <17542(1)>; Thu, 31 Oct 1996 14:16:33 PST Received: by crevenia.parc.xerox.com id <177476>; Thu, 31 Oct 1996 14:16:21 -0800 From: Bill Fenner To: ports@freebsd.org Subject: Where to get MAXINT? Message-Id: <96Oct31.141621pst.177476@crevenia.parc.xerox.com> Date: Thu, 31 Oct 1996 14:16:11 PST Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk I'm trying to port a program that wants to use MAXINT. It wants to get it from , but our complains loudly that it's obsoleted. It's also the only place we define MAXINT. Help? Thanks, Bill From owner-freebsd-ports Thu Oct 31 14:47:54 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id OAA14095 for ports-outgoing; Thu, 31 Oct 1996 14:47:54 -0800 (PST) Received: from mail.cs.tu-berlin.de (root@mail.cs.tu-berlin.de [130.149.17.13]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id OAA14003 for ; Thu, 31 Oct 1996 14:46:04 -0800 (PST) Received: from campa.panke.de (anonymous215.ppp.cs.tu-berlin.de [130.149.17.215]) by mail.cs.tu-berlin.de (8.6.13/8.6.12) with ESMTP id XAA05319; Thu, 31 Oct 1996 23:43:12 +0100 Received: (from wosch@localhost) by campa.panke.de (8.6.12/8.6.12) id XAA00522; Thu, 31 Oct 1996 23:36:00 +0100 Date: Thu, 31 Oct 1996 23:36:00 +0100 From: Wolfram Schneider Message-Id: <199610312236.XAA00522@campa.panke.de> To: "=?KOI8-R?Q?=E1=CE=C4=D2=C5=CA_=FE=C5=D2=CE=CF=D7?=" (Andrey A. Chernov) Cc: ports@freebsd.org Subject: We need to place WWW note that ports are for -current only In-Reply-To: <199610302316.CAA01403@nagual.ru> References: <199610302305.VAA11346@srv1-bsb.GNS.com.br> <199610302316.CAA01403@nagual.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk KOI8-R writes: >Could we please mention with VERY BIG LETTERS somewhere on our WWW that > >PORTS ARE FOR -CURRENT ONLY! I think we should have two ports trees on our web server for -current ports http://www.freebsd.org/ports-current for last official release http://www.freebsd.org/ports-release alias http://www.freebsd.org/ports-2.1.5R The 'Application Software' link on the homepage should point to http://www.freebsd.org/ports-release. Wolfram From owner-freebsd-ports Thu Oct 31 15:14:24 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id PAA15720 for ports-outgoing; Thu, 31 Oct 1996 15:14:24 -0800 (PST) Received: from alpha.xerox.com (alpha.Xerox.COM [13.1.64.93]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id PAA15706 for ; Thu, 31 Oct 1996 15:14:18 -0800 (PST) Received: from crevenia.parc.xerox.com ([13.2.116.11]) by alpha.xerox.com with SMTP id <17105(8)>; Thu, 31 Oct 1996 15:13:46 PST Received: by crevenia.parc.xerox.com id <177476>; Thu, 31 Oct 1996 15:13:40 -0800 From: Bill Fenner To: ports@freebsd.org Subject: Review port? Message-Id: <96Oct31.151340pst.177476@crevenia.parc.xerox.com> Date: Thu, 31 Oct 1996 15:13:28 PST Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Could someone review my port of nte, the Network text Editor? It's in ~fenner/nteport on freefall. Thanks, Bill (P.S. I figured out -DMAXINT=INT_MAX, duh...) From owner-freebsd-ports Thu Oct 31 19:40:10 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id TAA12215 for ports-outgoing; Thu, 31 Oct 1996 19:40:10 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id TAA12201; Thu, 31 Oct 1996 19:40:06 -0800 (PST) Resent-Date: Thu, 31 Oct 1996 19:40:06 -0800 (PST) Resent-Message-Id: <199611010340.TAA12201@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, Received:"from silvia.HIP.Berkeley.EDU (ala-ca8-36.ix.netcom.com [207.93.141.164]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id TAA11996 for" ; Thu, 31 Oct 1996 19:36:07.-0800 (PST) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.2/8.6.9) id TAA16009; Thu, 31 Oct 1996 19:36:04 -0800 (PST) Message-Id: <199611010336.TAA16009@silvia.HIP.Berkeley.EDU> Date: Thu, 31 Oct 1996 19:36:04 -0800 (PST) From: asami@freebsd.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/1938: iv port doesn't build ibuild Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 1938 >Category: ports >Synopsis: iv port doesn't build ibuild >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Oct 31 19:40:03 PST 1996 >Last-Modified: >Originator: Satoshi Asami >Organization: The FreeBSD ports team >Release: FreeBSD 2.2-CURRENT i386 >Environment: FreeBSD-current as of 10/31/96 >Description: Here's the log: /usr/bin/c++ -I../../../.././src/include -DCC_SUFFIX='".c"' -Dcplusplus_2_1 -Div2_6_compatible -I../../../.././src/include/IV-2_6 -I../../../.././src/include -I/usr/X11R6/include -c ../ibcmds.c ../ibcmds.c: In method `void ToolsCmd::Execute()': ../ibcmds.c:2415: warning: variable `i' shadows local ../ibcmds.c:2410: warning: this is the shadowed declaration ../ibcmds.c:2418: warning: name lookup of `i' changed ../ibcmds.c:2410: warning: matches this `i' under current ANSI rules ../ibcmds.c:2415: warning: matches this `i' under old rules ../ibcmds.c:2418: bad argument 1 for function `class ivIterator & ivIterator::operator =(class ivIterator &)' (type was int) ../ibcmds.c:2418: no match for `operator <(class ivIterator, int)' ../ibcmds.c:2418: no post-increment operator for type ../ibcmds.c:2419: no matching function for call to `ivEditorInfo::GetName (ivIterator)' ../../../.././src/include/Unidraw/editorinfo.h:46: candidates are: ivEditorInfo::GetName(int) ../../../.././src/include/Unidraw/editorinfo.h:45: ivEditorInfo::GetName(const char *) *** Error code 1 Stop. >How-To-Repeat: cd /usr/ports/x11/iv; make >Fix: port iv to g++-2.7.x >Audit-Trail: >Unformatted: From owner-freebsd-ports Thu Oct 31 20:47:18 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id UAA15366 for ports-outgoing; Thu, 31 Oct 1996 20:47:18 -0800 (PST) Received: from rover.village.org (rover.village.org [204.144.255.49]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id UAA15348 for ; Thu, 31 Oct 1996 20:47:12 -0800 (PST) Received: from rover.village.org [127.0.0.1] by rover.village.org with esmtp (Exim 0.56 #1) id E0vJBVZ-0002V9-00; Thu, 31 Oct 1996 21:47:05 -0700 To: ports@freebsd.org Subject: Re: ports/1934: New port: Virtual GameBoy In-reply-to: Your message of "Thu, 31 Oct 1996 03:27:36 PST." <199610311127.DAA19971@freefall.freebsd.org> References: <199610311127.DAA19971@freefall.freebsd.org> Date: Thu, 31 Oct 1996 21:47:05 -0700 From: Warner Losh Message-Id: Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk In message <199610311127.DAA19971@freefall.freebsd.org> Nakai@Mlab.t.u-tokyo.ac.jp writes: : >Synopsis: New port: Virtual GameBoy I think we may want to give this one a miss. Warner From owner-freebsd-ports Thu Oct 31 21:25:02 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id VAA17432 for ports-outgoing; Thu, 31 Oct 1996 21:25:02 -0800 (PST) Received: from superior.truenorth.org (ppp021-sm2.sirius.com [205.134.231.21]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id VAA17416 for ; Thu, 31 Oct 1996 21:24:56 -0800 (PST) Received: (from jgrosch@localhost) by superior.truenorth.org (8.7.5/8.7.3) id VAA12496; Thu, 31 Oct 1996 21:24:08 -0800 (PST) From: Josef Grosch Message-Id: <199611010524.VAA12496@superior.truenorth.org> Subject: Re: Where to get MAXINT? To: fenner@parc.xerox.com (Bill Fenner) Date: Thu, 31 Oct 1996 21:24:06 +1600 (PST) Cc: ports@freebsd.org Reply-To: jgrosch@sirius.com In-Reply-To: <96Oct31.141621pst.177476@crevenia.parc.xerox.com> from Bill Fenner at "Oct 31, 96 02:16:11 pm" X-Mailer: ELM [version 2.4ME+ PL13 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >I'm trying to port a program that wants to use MAXINT. It wants to get >it from , but our complains loudly that it's >obsoleted. It's also the only place we define MAXINT. Help? > >Thanks, > Bill > You may want to replace MAXINT with INT_MAX which is defined in machine/limits.h. You should include limits.h which will bring along machine/limits.h. The comments in machine.limits.h seem to indicate that INT_MAX is the ANSI way. Josef -- Josef Grosch | Laugh while you can, monkey boy ! | FreeBSD 2.1.5 jgrosch@sirius.com | - John Warfin - | UNIX for the masses From owner-freebsd-ports Thu Oct 31 21:52:13 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id VAA20505 for ports-outgoing; Thu, 31 Oct 1996 21:52:13 -0800 (PST) Received: from genesis.atrad.adelaide.edu.au (genesis.atrad.adelaide.edu.au [129.127.96.120]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id VAA20497 for ; Thu, 31 Oct 1996 21:52:04 -0800 (PST) Received: from msmith@localhost by genesis.atrad.adelaide.edu.au (8.6.12/8.6.9) id QAA03860 for ports@freebsd.org; Fri, 1 Nov 1996 16:21:59 +1030 From: Michael Smith Message-Id: <199611010551.QAA03860@genesis.atrad.adelaide.edu.au> Subject: New PC-Emu To: ports@freebsd.org Date: Fri, 1 Nov 1996 16:21:57 +1030 (CST) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk As usual with anything you undertake that you plan to get done quickly, this has mushroomed 8) After sitting down and looking at the huge pile of patches that we apply to PC-Emu, plus Luigi and Serge's extras, etc. it became clear that what we had on our hands was the makings of a fairly substantial upgrade, and that it would be a Real Pain in the Butt to maintain this many slowly-overlapping sets of changes. So anyway, what it boils down to is that David Hedley is quite happy for me to roll a new PC-Emu release and take over looking after it. I can't promise to do any serious development on it, although I can see some places where it would win greatly from the DOScmd code, but I'll undertake to accept patches and coordinate releases. Blah blah blah. I have something that vaguely approximates a cut at this here (very ragged still though 8( ), and what I'm looking for is a small set of testers (perferably ones that are using PC-Emu already) to check that I've correctly merged things and that the result is mildly cohesive. If/when this proves the case, I'll release the result in comp.emulators.misc and make a 'real' port out of it. If you're interested, have a look at ftp://gsoft.com.au/pub/pcemu1.9pre.tar.gz and let me know how you go. -- ]] Mike Smith, Software Engineer msmith@gsoft.com.au [[ ]] Genesis Software genesis@gsoft.com.au [[ ]] High-speed data acquisition and (GSM mobile) 0411-222-496 [[ ]] realtime instrument control. (ph) +61-8-8267-3493 [[ ]] Unix hardware collector. "Where are your PEZ?" The Tick [[ From owner-freebsd-ports Thu Oct 31 22:20:04 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id WAA21925 for ports-outgoing; Thu, 31 Oct 1996 22:20:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id WAA21903; Thu, 31 Oct 1996 22:20:02 -0800 (PST) Date: Thu, 31 Oct 1996 22:20:02 -0800 (PST) Message-Id: <199611010620.WAA21903@freefall.freebsd.org> To: freebsd-ports Cc: From: asami@freebsd.org (Satoshi Asami) Subject: Re: ports/1934: New port: Virtual GameBoy Reply-To: asami@freebsd.org (Satoshi Asami) Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR ports/1934; it has been noted by GNATS. From: asami@freebsd.org (Satoshi Asami) To: FreeBSD-gnats-submit@freefall.freebsd.org Cc: Subject: Re: ports/1934: New port: Virtual GameBoy Date: Thu, 31 Oct 1996 22:16:21 -0800 (PST) * so I show some sites(illegal) includes GameBoy cartridges. ^^^^^^^ * http://consider.ferris.edu:8000/gameboy/gameboy.html * http://mail.bcpl.lib.md.us/~dstrickl/gbgames/ * http://www.worldonline.nl/~terdudio/gameboy/ What is the legality of this port? I mean, can it be used without using any of the files from those "illegal" sites? Satoshi From owner-freebsd-ports Thu Oct 31 22:30:03 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id WAA22511 for ports-outgoing; Thu, 31 Oct 1996 22:30:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id WAA22504; Thu, 31 Oct 1996 22:30:01 -0800 (PST) Resent-Date: Thu, 31 Oct 1996 22:30:01 -0800 (PST) Resent-Message-Id: <199611010630.WAA22504@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, Received:"from dfw-ix2.ix.netcom.com (dfw-ix2.ix.netcom.com [206.214.98.2]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id WAA21859 for" ; Thu, 31 Oct 1996 22:20:00.-0800 (PST) Received: from silvia.HIP.Berkeley.EDU (ala-ca19-01.ix.netcom.com [205.187.212.33]) by dfw-ix2.ix.netcom.com (8.6.13/8.6.12) with ESMTP id WAA13481 for ; Thu, 31 Oct 1996 22:19:28 -0800 Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.2/8.6.9) id WAA06911; Thu, 31 Oct 1996 22:19:26 -0800 (PST) Message-Id: <199611010619.WAA06911@silvia.HIP.Berkeley.EDU> Date: Thu, 31 Oct 1996 22:19:26 -0800 (PST) From: asami@freebsd.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/1939: exodus port doesn't build with new g++-2.7.2.1 Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 1939 >Category: ports >Synopsis: exodus port doesn't build with new g++-2.7.2.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Oct 31 22:30:00 PST 1996 >Last-Modified: >Originator: Satoshi Asami >Organization: The awesome FreeBSD ports team >Release: FreeBSD 2.2-CURRENT i386 >Environment: FreeBSD-current after import of g++-2.7.2.1 >Description: : g++ -I../../../src/client/include -I../../include -I../../common/include -O2 -Dsparc -DMMAP_BUFFER_POOL -c bf.C In file included from bf.C:6: space.c:95: warning: overflow in implicit constant conversion ../../include/HashTable.c: In method `class PAGEHASH * HashTable::Find(const class PID *)': ../../include/HashTable.c:159: bad argument 2 for function `class PID * PAGEHASH::keylocation(int, class PID **)' (type was const class PID **) dmake: Error code 1, while making 'bf.o' dmake: Error code 255, while making 'workspace.mod.recursive' dmake: Error code 255, while making 'workspace.mod.recursive' *** Error code 255 Stop. >How-To-Repeat: >Fix: I'd fix it myself if I were a C++ hacker. :( >Audit-Trail: >Unformatted: From owner-freebsd-ports Thu Oct 31 23:24:33 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA25859 for ports-outgoing; Thu, 31 Oct 1996 23:24:33 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA25838; Thu, 31 Oct 1996 23:24:31 -0800 (PST) Date: Thu, 31 Oct 1996 23:24:31 -0800 (PST) From: Satoshi Asami Message-Id: <199611010724.XAA25838@freefall.freebsd.org> To: obrien@NUXI.cs.ucdavis.edu, asami, freebsd-ports Subject: Re: ports/1901 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: change to MKDIR in bsd.port.mk State-Changed-From-To: open-closed State-Changed-By: asami State-Changed-When: Thu Oct 31 23:22:53 PST 1996 State-Changed-Why: Fixed in bsd.port.mk rev. 1.227. From owner-freebsd-ports Thu Oct 31 23:33:13 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA27284 for ports-outgoing; Thu, 31 Oct 1996 23:33:13 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA27258; Thu, 31 Oct 1996 23:33:11 -0800 (PST) Date: Thu, 31 Oct 1996 23:33:11 -0800 (PST) From: Satoshi Asami Message-Id: <199611010733.XAA27258@freefall.freebsd.org> To: shanee@rabbit.augusta.de, asami, asami, freebsd-ports Subject: Re: ports/1524 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: New port -- xtem-5.18beta State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: New port, there is more to the ports team than only me. :) Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:34:10 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA27564 for ports-outgoing; Thu, 31 Oct 1996 23:34:10 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA27552; Thu, 31 Oct 1996 23:34:08 -0800 (PST) Date: Thu, 31 Oct 1996 23:34:08 -0800 (PST) From: Satoshi Asami Message-Id: <199611010734.XAA27552@freefall.freebsd.org> To: shanee@rabbit.augusta.de, asami, asami, freebsd-ports Subject: Re: ports/1525 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: xvnews-2.3.2 State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: New port, there is more to the ports team than only me. :) Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:35:12 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA27928 for ports-outgoing; Thu, 31 Oct 1996 23:35:12 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA27889; Thu, 31 Oct 1996 23:35:09 -0800 (PST) Date: Thu, 31 Oct 1996 23:35:09 -0800 (PST) From: Satoshi Asami Message-Id: <199611010735.XAA27889@freefall.freebsd.org> To: shanee@rabbit.augusta.de, asami, asami, freebsd-ports Subject: Re: ports/1526 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: xtar-1.4 State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: New port, there is more to the ports team than only me. :) Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:35:34 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA28044 for ports-outgoing; Thu, 31 Oct 1996 23:35:34 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA28021; Thu, 31 Oct 1996 23:35:32 -0800 (PST) Date: Thu, 31 Oct 1996 23:35:32 -0800 (PST) From: Satoshi Asami Message-Id: <199611010735.XAA28021@freefall.freebsd.org> To: shanee@rabbit.augusta.de, asami, asami, freebsd-ports Subject: Re: ports/1527 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: xmaddressbook-1.5.3 State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: New port, there is more to the ports team than only me. :) Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:36:05 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA28198 for ports-outgoing; Thu, 31 Oct 1996 23:36:05 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA28181; Thu, 31 Oct 1996 23:36:02 -0800 (PST) Date: Thu, 31 Oct 1996 23:36:02 -0800 (PST) From: Satoshi Asami Message-Id: <199611010736.XAA28181@freefall.freebsd.org> To: shanee@rabbit.augusta.de, asami, asami, freebsd-ports Subject: Re: ports/1529 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: New port -- bricons-3.0 State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: New port, there is more to the ports team than only me. :) Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:36:35 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA28413 for ports-outgoing; Thu, 31 Oct 1996 23:36:35 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA28377; Thu, 31 Oct 1996 23:36:32 -0800 (PST) Date: Thu, 31 Oct 1996 23:36:32 -0800 (PST) From: Satoshi Asami Message-Id: <199611010736.XAA28377@freefall.freebsd.org> To: andrew@ugh.net.au, asami, asami, freebsd-ports Subject: Re: ports/1530 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: New port of poppassd State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: New port, there is more to the ports team than only me. :) Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:37:04 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA28558 for ports-outgoing; Thu, 31 Oct 1996 23:37:04 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA28512; Thu, 31 Oct 1996 23:36:57 -0800 (PST) Date: Thu, 31 Oct 1996 23:36:57 -0800 (PST) From: Satoshi Asami Message-Id: <199611010736.XAA28512@freefall.freebsd.org> To: msmith@cain.atrad.adelaide.edu.au, asami, asami, freebsd-ports Subject: Re: ports/1549 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Port submission for gdbtk State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: New port, there is more to the ports team than only me. :) Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:37:25 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA28669 for ports-outgoing; Thu, 31 Oct 1996 23:37:25 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA28655; Thu, 31 Oct 1996 23:37:22 -0800 (PST) Date: Thu, 31 Oct 1996 23:37:22 -0800 (PST) From: Satoshi Asami Message-Id: <199611010737.XAA28655@freefall.freebsd.org> To: oly@world.std.com, asami, asami, freebsd-ports Subject: Re: ports/1553 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: submittal of cops port State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: New port, there is more to the ports team than only me. :) Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:38:10 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA28884 for ports-outgoing; Thu, 31 Oct 1996 23:38:10 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA28867; Thu, 31 Oct 1996 23:38:07 -0800 (PST) Date: Thu, 31 Oct 1996 23:38:07 -0800 (PST) From: Satoshi Asami Message-Id: <199611010738.XAA28867@freefall.freebsd.org> To: obrien@Nuxi.cs.ucdavis.edu, asami, asami, freebsd-ports Subject: Re: ports/1631 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: new port, lprps -- PS printing lpr filters State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: New port, there is more to the ports team than only me. :) Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:39:29 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA29193 for ports-outgoing; Thu, 31 Oct 1996 23:39:29 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA29159; Thu, 31 Oct 1996 23:39:26 -0800 (PST) Date: Thu, 31 Oct 1996 23:39:26 -0800 (PST) From: Satoshi Asami Message-Id: <199611010739.XAA29159@freefall.freebsd.org> To: moeding@bn.DeTeMobil.de, asami, asami, freebsd-ports Subject: Re: ports/1646 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Port of lclint - a better lint replacement State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: New port, there is more to the ports team than only me. :) Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:40:16 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA29445 for ports-outgoing; Thu, 31 Oct 1996 23:40:16 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA29415; Thu, 31 Oct 1996 23:40:14 -0800 (PST) Date: Thu, 31 Oct 1996 23:40:14 -0800 (PST) From: Satoshi Asami Message-Id: <199611010740.XAA29415@freefall.freebsd.org> To: proff@suburbia.net, asami, asami, freebsd-ports Subject: Re: ports/1663 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: strobe-port State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: New port, there is more to the ports team than only me. :) Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:41:58 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA29895 for ports-outgoing; Thu, 31 Oct 1996 23:41:58 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA29858; Thu, 31 Oct 1996 23:41:56 -0800 (PST) Date: Thu, 31 Oct 1996 23:41:56 -0800 (PST) From: Satoshi Asami Message-Id: <199611010741.XAA29858@freefall.freebsd.org> To: obrien@Nuxi.cs.ucdavis.edu, asami, asami, freebsd-ports Subject: Re: ports/1719 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: new port, xlbiff State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: It didn't change. I don't know what's wrong with you. Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:42:37 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA00177 for ports-outgoing; Thu, 31 Oct 1996 23:42:37 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA00147; Thu, 31 Oct 1996 23:42:35 -0800 (PST) Date: Thu, 31 Oct 1996 23:42:35 -0800 (PST) From: Satoshi Asami Message-Id: <199611010742.XAA00147@freefall.freebsd.org> To: tom@tompc.sos.bangor.ac.uk, asami, asami, freebsd-ports Subject: Re: ports/1742 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Various bugs in xview-3.2.1 State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: It didn't change. I don't know what's wrong with you. Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:43:45 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA00397 for ports-outgoing; Thu, 31 Oct 1996 23:43:45 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA00379; Thu, 31 Oct 1996 23:43:42 -0800 (PST) Date: Thu, 31 Oct 1996 23:43:42 -0800 (PST) From: Satoshi Asami Message-Id: <199611010743.XAA00379@freefall.freebsd.org> To: rhwang@bigpanda.com, asami, asami, freebsd-ports Subject: Re: ports/1743 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: submission of new port (tiff-3.4) State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: It's still open, dummy. Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:44:17 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA00573 for ports-outgoing; Thu, 31 Oct 1996 23:44:17 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA00558; Thu, 31 Oct 1996 23:44:15 -0800 (PST) Date: Thu, 31 Oct 1996 23:44:15 -0800 (PST) From: Satoshi Asami Message-Id: <199611010744.XAA00558@freefall.freebsd.org> To: deischen@iworks.InterWorks.org, asami, asami, freebsd-ports Subject: Re: ports/1752 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Update of nedit port State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: It's still open, dummy. Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:45:12 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA00836 for ports-outgoing; Thu, 31 Oct 1996 23:45:12 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA00809; Thu, 31 Oct 1996 23:45:06 -0800 (PST) Date: Thu, 31 Oct 1996 23:45:06 -0800 (PST) From: Satoshi Asami Message-Id: <199611010745.XAA00809@freefall.freebsd.org> To: Nakai@Mlab.t.u-tokyo.ac.jp, asami, asami, freebsd-ports Subject: Re: ports/1761 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Fixed port: gifmerge 1.33 State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: Ok, so you say "open" is different from "open". Just what language is that??? Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:45:54 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA01043 for ports-outgoing; Thu, 31 Oct 1996 23:45:54 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA01012; Thu, 31 Oct 1996 23:45:52 -0800 (PST) Date: Thu, 31 Oct 1996 23:45:52 -0800 (PST) From: Satoshi Asami Message-Id: <199611010745.XAA01012@freefall.freebsd.org> To: Nakai@Mlab.t.u-tokyo.ac.jp, asami, asami, freebsd-ports Subject: Re: ports/1763 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Fixed port: txtmerge State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: Open is same as open. Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:46:15 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA01154 for ports-outgoing; Thu, 31 Oct 1996 23:46:15 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA01139; Thu, 31 Oct 1996 23:46:13 -0800 (PST) Date: Thu, 31 Oct 1996 23:46:13 -0800 (PST) From: Satoshi Asami Message-Id: <199611010746.XAA01139@freefall.freebsd.org> To: Nakai@Mlab.t.u-tokyo.ac.jp, asami, asami, freebsd-ports Subject: Re: ports/1764 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Fixed port: whirlgif State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: Open is same as open. Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:46:44 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA01295 for ports-outgoing; Thu, 31 Oct 1996 23:46:44 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA01267; Thu, 31 Oct 1996 23:46:42 -0800 (PST) Date: Thu, 31 Oct 1996 23:46:42 -0800 (PST) From: Satoshi Asami Message-Id: <199611010746.XAA01267@freefall.freebsd.org> To: Nakai@Mlab.t.u-tokyo.ac.jp, asami, asami, freebsd-ports Subject: Re: ports/1765 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Fixed port: xgas State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: Open is same as open. Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:47:06 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA01415 for ports-outgoing; Thu, 31 Oct 1996 23:47:06 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA01400; Thu, 31 Oct 1996 23:47:05 -0800 (PST) Date: Thu, 31 Oct 1996 23:47:05 -0800 (PST) From: Satoshi Asami Message-Id: <199611010747.XAA01400@freefall.freebsd.org> To: Nakai@Mlab.t.u-tokyo.ac.jp, asami, asami, freebsd-ports Subject: Re: ports/1767 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: New port: xmascot State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:47:26 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA01574 for ports-outgoing; Thu, 31 Oct 1996 23:47:26 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA01539; Thu, 31 Oct 1996 23:47:24 -0800 (PST) Date: Thu, 31 Oct 1996 23:47:24 -0800 (PST) From: Satoshi Asami Message-Id: <199611010747.XAA01539@freefall.freebsd.org> To: Nakai@Mlab.t.u-tokyo.ac.jp, asami, asami, freebsd-ports Subject: Re: ports/1768 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: New port: xshisen State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:47:54 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA01729 for ports-outgoing; Thu, 31 Oct 1996 23:47:54 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA01707; Thu, 31 Oct 1996 23:47:52 -0800 (PST) Date: Thu, 31 Oct 1996 23:47:52 -0800 (PST) From: Satoshi Asami Message-Id: <199611010747.XAA01707@freefall.freebsd.org> To: root@world.std.com, asami, asami, freebsd-ports Subject: Re: ports/1770 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: port of the xripple program State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:48:14 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA01867 for ports-outgoing; Thu, 31 Oct 1996 23:48:14 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA01851; Thu, 31 Oct 1996 23:48:12 -0800 (PST) Date: Thu, 31 Oct 1996 23:48:12 -0800 (PST) From: Satoshi Asami Message-Id: <199611010748.XAA01851@freefall.freebsd.org> To: Nakai@Mlab.t.u-tokyo.ac.jp, asami, asami, freebsd-ports Subject: Re: ports/1772 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Fix to a wrong description in FreeBSD port: xshisen State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:48:53 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA01996 for ports-outgoing; Thu, 31 Oct 1996 23:48:53 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA01981; Thu, 31 Oct 1996 23:48:51 -0800 (PST) Date: Thu, 31 Oct 1996 23:48:51 -0800 (PST) From: Satoshi Asami Message-Id: <199611010748.XAA01981@freefall.freebsd.org> To: obrien@Nuxi.cs.ucdavis.edu, asami, asami, freebsd-ports Subject: Re: ports/1792 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: new port, splitvt State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:49:15 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA02107 for ports-outgoing; Thu, 31 Oct 1996 23:49:15 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA02076; Thu, 31 Oct 1996 23:49:13 -0800 (PST) Date: Thu, 31 Oct 1996 23:49:13 -0800 (PST) From: Satoshi Asami Message-Id: <199611010749.XAA02076@freefall.freebsd.org> To: Nakai@Mlab.t.u-tokyo.ac.jp, asami, asami, freebsd-ports Subject: Re: ports/1795 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: New port : xcubes State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:49:33 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA02201 for ports-outgoing; Thu, 31 Oct 1996 23:49:33 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA02184; Thu, 31 Oct 1996 23:49:32 -0800 (PST) Date: Thu, 31 Oct 1996 23:49:32 -0800 (PST) From: Satoshi Asami Message-Id: <199611010749.XAA02184@freefall.freebsd.org> To: Nakai@Mlab.t.u-tokyo.ac.jp, asami, asami, freebsd-ports Subject: Re: ports/1796 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: New port : xdino State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:49:54 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA02329 for ports-outgoing; Thu, 31 Oct 1996 23:49:54 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA02300; Thu, 31 Oct 1996 23:49:51 -0800 (PST) Date: Thu, 31 Oct 1996 23:49:51 -0800 (PST) From: Satoshi Asami Message-Id: <199611010749.XAA02300@freefall.freebsd.org> To: Nakai@Mlab.t.u-tokyo.ac.jp, asami, asami, freebsd-ports Subject: Re: ports/1797 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: New port : gnushogi State-Changed-From-To: closed-closed State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:50:18 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA02483 for ports-outgoing; Thu, 31 Oct 1996 23:50:18 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA02449; Thu, 31 Oct 1996 23:50:16 -0800 (PST) Date: Thu, 31 Oct 1996 23:50:16 -0800 (PST) From: Satoshi Asami Message-Id: <199611010750.XAA02449@freefall.freebsd.org> To: Nakai@Mlab.t.u-tokyo.ac.jp, asami, asami, freebsd-ports Subject: Re: ports/1799 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: New port : xbakuzan State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:50:37 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA02565 for ports-outgoing; Thu, 31 Oct 1996 23:50:37 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA02549; Thu, 31 Oct 1996 23:50:36 -0800 (PST) Date: Thu, 31 Oct 1996 23:50:36 -0800 (PST) From: Satoshi Asami Message-Id: <199611010750.XAA02549@freefall.freebsd.org> To: Nakai@Mlab.t.u-tokyo.ac.jp, asami, asami, freebsd-ports Subject: Re: ports/1800 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: New port : xmold State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:51:09 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA02689 for ports-outgoing; Thu, 31 Oct 1996 23:51:09 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA02675; Thu, 31 Oct 1996 23:51:08 -0800 (PST) Date: Thu, 31 Oct 1996 23:51:08 -0800 (PST) From: Satoshi Asami Message-Id: <199611010751.XAA02675@freefall.freebsd.org> To: Nakai@Mlab.t.u-tokyo.ac.jp, asami, asami, freebsd-ports Subject: Re: ports/1801 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: New port : xsokoban State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:51:27 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA02807 for ports-outgoing; Thu, 31 Oct 1996 23:51:27 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA02778; Thu, 31 Oct 1996 23:51:25 -0800 (PST) Date: Thu, 31 Oct 1996 23:51:25 -0800 (PST) From: Satoshi Asami Message-Id: <199611010751.XAA02778@freefall.freebsd.org> To: Nakai@Mlab.t.u-tokyo.ac.jp, asami, asami, freebsd-ports Subject: Re: ports/1802 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: New port : xtriangles State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:51:43 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA02894 for ports-outgoing; Thu, 31 Oct 1996 23:51:43 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA02880; Thu, 31 Oct 1996 23:51:42 -0800 (PST) Date: Thu, 31 Oct 1996 23:51:42 -0800 (PST) From: Satoshi Asami Message-Id: <199611010751.XAA02880@freefall.freebsd.org> To: Nakai@Mlab.t.u-tokyo.ac.jp, asami, asami, freebsd-ports Subject: Re: ports/1816 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: New port for FreeBSD: xpuyo State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:52:08 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA03050 for ports-outgoing; Thu, 31 Oct 1996 23:52:08 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA03037; Thu, 31 Oct 1996 23:52:07 -0800 (PST) Date: Thu, 31 Oct 1996 23:52:07 -0800 (PST) From: Satoshi Asami Message-Id: <199611010752.XAA03037@freefall.freebsd.org> To: jhs@freebsd.org, asami, asami, freebsd-ports Subject: Re: ports/1834 Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Synopsis: COMMENT may be amusing but is not informative State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: Not my port. From owner-freebsd-ports Thu Oct 31 23:52:43 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA03195 for ports-outgoing; Thu, 31 Oct 1996 23:52:43 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA03162; Thu, 31 Oct 1996 23:52:41 -0800 (PST) Date: Thu, 31 Oct 1996 23:52:41 -0800 (PST) From: Satoshi Asami Message-Id: <199611010752.XAA03162@freefall.freebsd.org> To: obrien@NUXI.cs.ucdavis.edu, asami, asami, freebsd-ports Subject: Re: ports/1844 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: new port, zmtx-zmrx (zmodem xfer prog) State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:53:00 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA03270 for ports-outgoing; Thu, 31 Oct 1996 23:53:00 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA03254; Thu, 31 Oct 1996 23:52:58 -0800 (PST) Date: Thu, 31 Oct 1996 23:52:58 -0800 (PST) From: Satoshi Asami Message-Id: <199611010752.XAA03254@freefall.freebsd.org> To: obrien@NUXI.cs.ucdavis.edu, asami, asami, freebsd-ports Subject: Re: ports/1845 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: new port, lrzsz (ZMODEM file xfer) State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:53:16 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA03383 for ports-outgoing; Thu, 31 Oct 1996 23:53:16 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA03349; Thu, 31 Oct 1996 23:53:13 -0800 (PST) Date: Thu, 31 Oct 1996 23:53:13 -0800 (PST) From: Satoshi Asami Message-Id: <199611010753.XAA03349@freefall.freebsd.org> To: lukin@ns.okbmei.msk.su, asami, asami, freebsd-ports Subject: Re: ports/1846 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Port of FileRunner 2.0 uploaded State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Thu Oct 31 23:53:39 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA03469 for ports-outgoing; Thu, 31 Oct 1996 23:53:39 -0800 (PST) Received: (from asami@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA03455; Thu, 31 Oct 1996 23:53:38 -0800 (PST) Date: Thu, 31 Oct 1996 23:53:38 -0800 (PST) From: Satoshi Asami Message-Id: <199611010753.XAA03455@freefall.freebsd.org> To: oly@russ.harvard.edu, asami, asami, freebsd-ports Subject: Re: ports/1867 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: port upload State-Changed-From-To: open-open State-Changed-By: asami State-Changed-When: Thu Oct 31 23:26:50 PST 1996 State-Changed-Why: Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Thu Oct 31 23:26:50 PST 1996 Responsible-Changed-Why: New port, there is more to the ports team than only me. :) From owner-freebsd-ports Fri Nov 1 01:32:37 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id BAA12149 for ports-outgoing; Fri, 1 Nov 1996 01:32:37 -0800 (PST) Received: from freenet.hamilton.on.ca (main.freenet.hamilton.on.ca [199.212.94.65]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id BAA12142 for ; Fri, 1 Nov 1996 01:32:32 -0800 (PST) Received: from james.freenet.hamilton.on.ca (james.freenet.hamilton.on.ca [199.212.94.66]) by freenet.hamilton.on.ca (8.7.5/8.7.3) with ESMTP id EAA26054; Fri, 1 Nov 1996 04:32:43 -0500 (EST) Received: from localhost (ac199@localhost) by james.freenet.hamilton.on.ca (8.7.5/8.7.3) with SMTP id EAA02219; Fri, 1 Nov 1996 04:34:33 -0500 (EST) X-Authentication-Warning: james.freenet.hamilton.on.ca: ac199 owned process doing -bs Date: Fri, 1 Nov 1996 04:34:32 -0500 (EST) From: Tim Vanderhoek To: Warner Losh cc: ports@freebsd.org Subject: Re: ports/1934: New port: Virtual GameBoy In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Thu, 31 Oct 1996, Warner Losh wrote: > In message <199610311127.DAA19971@freefall.freebsd.org> > Nakai@Mlab.t.u-tokyo.ac.jp writes: > : >Synopsis: New port: Virtual GameBoy > > I think we may want to give this one a miss. Reading pkg/DESCR, it seems like the package is fine. This is, of course, the thing where you're allowed to make backup copies of software (copyPROTECTED or not) for your own personal use. If I remember correctly, this means that someone can't say "You are not allowed to make backup copies of this software for your own personal use" in the license.... As an aside... Hmm... MS gives MSIExp away for free. The license, if you read it, says that you are only allowed to use it if you actually own a MS operating system or product, though. I wonder how enforcable that is? -- Outnumbered? Maybe. Outspoken? Never! tIM...HOEk From owner-freebsd-ports Fri Nov 1 03:02:38 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id DAA17807 for ports-outgoing; Fri, 1 Nov 1996 03:02:38 -0800 (PST) Received: from dfw-ix9.ix.netcom.com (dfw-ix9.ix.netcom.com [206.214.98.9]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id DAA17802; Fri, 1 Nov 1996 03:02:35 -0800 (PST) Received: from silvia.HIP.Berkeley.EDU (ala-ca19-01.ix.netcom.com [205.187.212.33]) by dfw-ix9.ix.netcom.com (8.6.13/8.6.12) with ESMTP id DAA04657; Fri, 1 Nov 1996 03:02:03 -0800 Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.2/8.6.9) id DAA01664; Fri, 1 Nov 1996 03:02:01 -0800 (PST) Date: Fri, 1 Nov 1996 03:02:01 -0800 (PST) Message-Id: <199611011102.DAA01664@silvia.HIP.Berkeley.EDU> To: markm@freebsd.org, ports@freebsd.org, peter@spinner.DIALix.COM In-reply-to: <199610310246.SAA01463@silvia.HIP.Berkeley.EDU> (asami@freebsd.org) Subject: Re: tclX75 build failure From: asami@freebsd.org (Satoshi Asami) Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk * I swear this thing used to build before. In fact, I have a package * built on Oct. 17 to prove it. Just to let you know this one works now. I guess it was that tclConfig.sh fix. Satoshi From owner-freebsd-ports Fri Nov 1 03:09:22 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id DAA18323 for ports-outgoing; Fri, 1 Nov 1996 03:09:22 -0800 (PST) Received: from dfw-ix7.ix.netcom.com (dfw-ix7.ix.netcom.com [206.214.98.7]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id DAA18296; Fri, 1 Nov 1996 03:09:14 -0800 (PST) Received: from silvia.HIP.Berkeley.EDU (ala-ca19-01.ix.netcom.com [205.187.212.33]) by dfw-ix7.ix.netcom.com (8.6.13/8.6.12) with ESMTP id DAA10367; Fri, 1 Nov 1996 03:08:31 -0800 Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.2/8.6.9) id DAA01754; Fri, 1 Nov 1996 03:08:28 -0800 (PST) Date: Fri, 1 Nov 1996 03:08:28 -0800 (PST) Message-Id: <199611011108.DAA01754@silvia.HIP.Berkeley.EDU> To: thomas@ghpc8.ihf.rwth-aachen.de, jmz@freebsd.org, wollman@freebsd.org, asami@freebsd.org, mr@freebsd.org, jkh@freebsd.org, pst@freebsd.org CC: ports@freebsd.org, current@freebsd.org Reply-to: ports@silvia.hip.berkeley.edu Subject: Re: tcl/tk based ports based on obsolete stuff From: asami@freebsd.org (Satoshi Asami) Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk A followup on this: games/tksol/Makefile tk4.0 -> updated misc/ctk/Makefile tcl7.4 thomas@ghpc8.ihf.rwth-aachen.de misc/tkman/Makefile tk4.0 -> updated audio/xcd/Makefile tk3.6 jmz emulators/tkhfs/Makefile tk3.6 jmz net/imm/Makefile tk3.6 wollman net/nv/Makefile tk3.6 wollman misc/kp/Makefile tk3.6 -> updated www/tkWWW/Makefile tk3.6 asami -> will be deleted lang/expect/Makefile tcl7.3 -> updated print/xtexshell/Makefile tclX3.6 mr (ancient) www/wwwish/Makefile tk3.6 jkh (ancient) Of course, I'm not counting tcl/tk themselves (English/Japanese) and tclX, which are already "updated" in a sense. I am planning to remove all these within two weeks if they are not updated. (Or at least mark them "broken", they just cause too much trouble building packages.) Satoshi From owner-freebsd-ports Fri Nov 1 09:06:12 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA26257 for ports-outgoing; Fri, 1 Nov 1996 09:06:12 -0800 (PST) Received: from fog.xinside.com (fog.xinside.com [199.164.187.39]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id JAA26244 for ; Fri, 1 Nov 1996 09:06:07 -0800 (PST) Received: (from smap@localhost) by fog.xinside.com (8.7.6/8.7.3) id KAA25880 for ; Fri, 1 Nov 1996 10:06:05 -0700 (MST) X-Authentication-Warning: fog.xinside.com: smap set sender to using -f Received: from landru.xinside.com(199.164.187.210) by fog.xinside.com via smap (V1.3) id sma025875; Fri Nov 1 10:05:44 1996 Received: from localhost (localhost.xinside.com [127.0.0.1]) by landru.xinside.com (8.7.5/8.7.3) with SMTP id KAA06718 for ; Fri, 1 Nov 1996 10:05:02 -0700 (MST) Date: Fri, 1 Nov 1996 10:05:02 -0700 (MST) From: Jon Trulson Reply-To: jon@xinside.com To: freebsd-ports@freebsd.org Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk unsubscribe -- Jon Trulson work: jon@xinside.com, home: jon@radscan.com PGP ID: 1A9A2B09, Fingerprint: C23F328A721264E7 B6188192EC733962 PGP public key at finger:trulson@rainbow.rmii.com or keyserver We are Grey. We stand between the Candle and the Star. #include From owner-freebsd-ports Fri Nov 1 09:24:05 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA28762 for ports-outgoing; Fri, 1 Nov 1996 09:24:05 -0800 (PST) Received: (from jfitz@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA28707; Fri, 1 Nov 1996 09:24:01 -0800 (PST) Date: Fri, 1 Nov 1996 09:24:01 -0800 (PST) From: James FitzGibbon Message-Id: <199611011724.JAA28707@freefall.freebsd.org> To: jfitz, freebsd-ports, jfitz Subject: Re: ports/1719 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: new port, xlbiff Responsible-Changed-From-To: freebsd-ports->jfitz Responsible-Changed-By: jfitz Responsible-Changed-When: Fri Nov 1 09:22:57 PST 1996 Responsible-Changed-Why: From owner-freebsd-ports Fri Nov 1 09:25:16 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA29223 for ports-outgoing; Fri, 1 Nov 1996 09:25:16 -0800 (PST) Received: (from jfitz@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA29178; Fri, 1 Nov 1996 09:25:09 -0800 (PST) Date: Fri, 1 Nov 1996 09:25:09 -0800 (PST) From: James FitzGibbon Message-Id: <199611011725.JAA29178@freefall.freebsd.org> To: jfitz, freebsd-ports, jfitz Subject: Re: ports/1846 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Port of FileRunner 2.0 uploaded Responsible-Changed-From-To: freebsd-ports->jfitz Responsible-Changed-By: jfitz Responsible-Changed-When: Fri Nov 1 09:24:52 PST 1996 Responsible-Changed-Why: From owner-freebsd-ports Fri Nov 1 09:26:31 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA29718 for ports-outgoing; Fri, 1 Nov 1996 09:26:31 -0800 (PST) Received: (from jfitz@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA29677; Fri, 1 Nov 1996 09:26:28 -0800 (PST) Date: Fri, 1 Nov 1996 09:26:28 -0800 (PST) From: James FitzGibbon Message-Id: <199611011726.JAA29677@freefall.freebsd.org> To: jfitz, freebsd-ports, jfitz Subject: Re: ports/1772 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Fix to a wrong description in FreeBSD port: xshisen Responsible-Changed-From-To: freebsd-ports->jfitz Responsible-Changed-By: jfitz Responsible-Changed-When: Fri Nov 1 09:26:18 PST 1996 Responsible-Changed-Why: From owner-freebsd-ports Fri Nov 1 09:27:23 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA00113 for ports-outgoing; Fri, 1 Nov 1996 09:27:23 -0800 (PST) Received: (from jfitz@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA29980; Fri, 1 Nov 1996 09:27:19 -0800 (PST) Date: Fri, 1 Nov 1996 09:27:19 -0800 (PST) From: James FitzGibbon Message-Id: <199611011727.JAA29980@freefall.freebsd.org> To: jfitz, freebsd-ports, jfitz Subject: Re: ports/1530 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: New port of poppassd Responsible-Changed-From-To: freebsd-ports->jfitz Responsible-Changed-By: jfitz Responsible-Changed-When: Fri Nov 1 09:27:07 PST 1996 Responsible-Changed-Why: From owner-freebsd-ports Fri Nov 1 09:28:34 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA00636 for ports-outgoing; Fri, 1 Nov 1996 09:28:34 -0800 (PST) Received: (from jfitz@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA00607; Fri, 1 Nov 1996 09:28:31 -0800 (PST) Date: Fri, 1 Nov 1996 09:28:31 -0800 (PST) From: James FitzGibbon Message-Id: <199611011728.JAA00607@freefall.freebsd.org> To: jfitz, freebsd-ports, jfitz Subject: Re: ports/1553 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: submittal of cops port Responsible-Changed-From-To: freebsd-ports->jfitz Responsible-Changed-By: jfitz Responsible-Changed-When: Fri Nov 1 09:28:16 PST 1996 Responsible-Changed-Why: From owner-freebsd-ports Fri Nov 1 10:08:59 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id KAA07865 for ports-outgoing; Fri, 1 Nov 1996 10:08:59 -0800 (PST) Received: from haywire.DIALix.COM (haywire.DIALix.COM [192.203.228.65]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id KAA07849 for ; Fri, 1 Nov 1996 10:08:53 -0800 (PST) Received: (from news@localhost) by haywire.DIALix.COM (8.8.2/8.8.2) id CAA27187 for freebsd-ports@freebsd.org; Sat, 2 Nov 1996 02:08:49 +0800 (WST) X-Authentication-Warning: haywire.DIALix.COM: news set sender to usenet-request@haywire.dialix.com using -f Received: from GATEWAY by haywire.DIALix.COM with netnews for freebsd-ports@freebsd.org (problems to: usenet@haywire.dialix.com) To: freebsd-ports@freebsd.org Date: 1 Nov 1996 18:08:44 GMT From: peter@spinner.DIALix.COM (Peter Wemm) Message-ID: <55debc$nu8$1@haywire.DIALix.COM> Organization: DIALix Services, Perth, Australia. References: <57683vysiv.fsf@tees.elsevier.co.uk> Subject: Re: missing cvs directories Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk In article <28280.846739051@orion.webspan.net>, gpalmer@freebsd.org (Gary Palmer) writes: > Paul Richards wrote in message ID > <57683vysiv.fsf@tees.elsevier.co.uk>: >> Chuck Robey writes: >> >> > I just checked zip and xemacs, they do have the patches dir missing, but >> > they both build fine, regardless. >> >> That's not the issue. Someone/something has deleted these directories >> from the *repository*. You can no longer check out code that once >> existed. That's not supposed to happen (particularly not on this >> scale, it was quite a list by the time I'd finished). > > Because there is no need to keep around old Attic entries (the ports > tree is never tagged), Peter goes through occasionally with a broom > and cleans them out. He normally waits a month or so so that most > people who use copies of the repository manage miss the dreaded CVS > errors. I guess you just waited too long. Some details about what periodically has been done in the past.. 1: Somebody complains that doing a 'cvs update' on the ports tree is taking forever, since cvs processes all these "empty" directories by creating them, putting a CVS dir in them, and then removing them once it's decided it doesn't need it, so it goes through all those sync metadata writes again to back out. 2: I go through with find and make a list of all files in Attics. 3: I take a snapshot of the files. They are presently stored in /f/alt_ncvs on freefall, in case somebody needs them. (ports.Attic.960816.tar.gz was the last one) 4: I do a 'find' to find all ports dirs with an mtime > 1 week. 5: I delete the list of files in Attics, and then the empty attics. (this touches directories, hence the find above.) 6: I do a 'rmdir' on all the directories that were > 1 week old. Those that are empty disappear, those with files stay. This usually cuts the 'cvs -q update -d -P' time by between 25% and 50%, depending on how much cruft was in there. It gives a week's grace on now-empty directories. Those that are < 1 week stay around for next time. CVS really sucks when dealing with lots of directories. The main src tree is an order of magnitude or so bigger than the ports tree, yet the ports tree takes longer to do a 'cvs update' on here. -Peter > Gary > -- > Gary Palmer FreeBSD Core Team Member > FreeBSD: Turning PC's into workstations. See http://www.FreeBSD.ORG/ for info From owner-freebsd-ports Fri Nov 1 14:33:10 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id OAA09596 for ports-outgoing; Fri, 1 Nov 1996 14:33:10 -0800 (PST) Received: from dfw-ix7.ix.netcom.com (dfw-ix7.ix.netcom.com [206.214.98.7]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id OAA09546 for ; Fri, 1 Nov 1996 14:32:59 -0800 (PST) Received: from silvia.HIP.Berkeley.EDU (silvia.HIP.Berkeley.EDU [136.152.64.181]) by dfw-ix7.ix.netcom.com (8.6.13/8.6.12) with ESMTP id OAA16486 for ; Fri, 1 Nov 1996 14:28:52 -0800 Received: from mole.mole.org (marmot.mole.org [204.216.57.191]) by silvia.HIP.Berkeley.EDU (8.8.2/8.6.9) with SMTP id OAA00913 for ; Fri, 1 Nov 1996 14:27:29 -0800 (PST) Received: (from mail@localhost) by mole.mole.org (8.6.12/8.6.12) id TAA11922 for ; Fri, 1 Nov 1996 19:07:36 GMT Received: from meerkat.mole.org(206.197.192.110) by mole.mole.org via smap (V1.3) id sma011918; Fri Nov 1 19:07:18 1996 Received: (from mrm@localhost) by meerkat.mole.org (8.6.11/8.6.9) id LAA26697 for ports@silvia.hip.berkeley.edu; Fri, 1 Nov 1996 11:04:42 -0800 Date: Fri, 1 Nov 1996 11:04:42 -0800 From: "M.R.Murphy" Message-Id: <199611011904.LAA26697@meerkat.mole.org> To: ports@silvia.hip.berkeley.edu Subject: Re: tcl/tk based ports based on obsolete stuff Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > > A followup on this: > > games/tksol/Makefile tk4.0 -> updated > misc/ctk/Makefile tcl7.4 thomas@ghpc8.ihf.rwth-aachen.de > misc/tkman/Makefile tk4.0 -> updated > audio/xcd/Makefile tk3.6 jmz > emulators/tkhfs/Makefile tk3.6 jmz > net/imm/Makefile tk3.6 wollman > net/nv/Makefile tk3.6 wollman > misc/kp/Makefile tk3.6 -> updated > www/tkWWW/Makefile tk3.6 asami -> will be deleted > lang/expect/Makefile tcl7.3 -> updated > print/xtexshell/Makefile tclX3.6 mr (ancient) > www/wwwish/Makefile tk3.6 jkh (ancient) > > Of course, I'm not counting tcl/tk themselves (English/Japanese) and > tclX, which are already "updated" in a sense. > > I am planning to remove all these within two weeks if they are not > updated. (Or at least mark them "broken", they just cause too much > trouble building packages.) > Be careful. There is a bunch of stuff out there which depends upon the internals of previous versions of Tcl/Tk, e.g., OT from OSF. Bad practice, but that's the way it is. I/O changed significantly between tcl7.3 and the latest released version. -- Mike Murphy mrm@Mole.ORG +1 619 598 5874 Better is the enemy of Good From owner-freebsd-ports Fri Nov 1 14:39:18 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id OAA11952 for ports-outgoing; Fri, 1 Nov 1996 14:39:18 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id OAA11902; Fri, 1 Nov 1996 14:39:11 -0800 (PST) Date: Fri, 1 Nov 1996 14:39:11 -0800 (PST) From: "David E. O'Brien" Message-Id: <199611012239.OAA11902@freefall.freebsd.org> To: obrien, freebsd-ports, obrien Subject: Re: ports/1631 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: new port, lprps -- PS printing lpr filters Responsible-Changed-From-To: freebsd-ports->obrien Responsible-Changed-By: obrien Responsible-Changed-When: Fri Nov 1 14:37:22 PST 1996 Responsible-Changed-Why: Now able to commit this. From owner-freebsd-ports Fri Nov 1 14:42:28 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id OAA13198 for ports-outgoing; Fri, 1 Nov 1996 14:42:28 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id OAA13136; Fri, 1 Nov 1996 14:42:23 -0800 (PST) Date: Fri, 1 Nov 1996 14:42:23 -0800 (PST) From: "David E. O'Brien" Message-Id: <199611012242.OAA13136@freefall.freebsd.org> To: obrien, freebsd-ports, obrien Subject: Re: ports/1792 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: new port, splitvt Responsible-Changed-From-To: freebsd-ports->obrien Responsible-Changed-By: obrien Responsible-Changed-When: Fri Nov 1 14:42:05 PST 1996 Responsible-Changed-Why: Now able to commit this. From owner-freebsd-ports Fri Nov 1 14:42:58 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id OAA13495 for ports-outgoing; Fri, 1 Nov 1996 14:42:58 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id OAA13459; Fri, 1 Nov 1996 14:42:55 -0800 (PST) Date: Fri, 1 Nov 1996 14:42:55 -0800 (PST) From: "David E. O'Brien" Message-Id: <199611012242.OAA13459@freefall.freebsd.org> To: obrien, freebsd-ports, obrien Subject: Re: ports/1844 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: new port, zmtx-zmrx (zmodem xfer prog) Responsible-Changed-From-To: freebsd-ports->obrien Responsible-Changed-By: obrien Responsible-Changed-When: Fri Nov 1 14:42:40 PST 1996 Responsible-Changed-Why: Now able to commit this. From owner-freebsd-ports Fri Nov 1 14:43:27 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id OAA13732 for ports-outgoing; Fri, 1 Nov 1996 14:43:27 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id OAA13696; Fri, 1 Nov 1996 14:43:24 -0800 (PST) Date: Fri, 1 Nov 1996 14:43:24 -0800 (PST) From: "David E. O'Brien" Message-Id: <199611012243.OAA13696@freefall.freebsd.org> To: obrien, freebsd-ports, obrien Subject: Re: ports/1845 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: new port, lrzsz (ZMODEM file xfer) Responsible-Changed-From-To: freebsd-ports->obrien Responsible-Changed-By: obrien Responsible-Changed-When: Fri Nov 1 14:43:09 PST 1996 Responsible-Changed-Why: Now able to commit this. From owner-freebsd-ports Fri Nov 1 15:07:18 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id PAA22905 for ports-outgoing; Fri, 1 Nov 1996 15:07:18 -0800 (PST) Received: from dfw-ix4.ix.netcom.com (dfw-ix4.ix.netcom.com [206.214.98.4]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id PAA22866 for ; Fri, 1 Nov 1996 15:07:10 -0800 (PST) Received: from silvia.HIP.Berkeley.EDU (silvia.HIP.Berkeley.EDU [136.152.64.181]) by dfw-ix4.ix.netcom.com (8.6.13/8.6.12) with ESMTP id PAA25620 for ; Fri, 1 Nov 1996 15:06:23 -0800 Received: from plaut.de (inet.plaut.de [194.39.177.166]) by silvia.HIP.Berkeley.EDU (8.8.2/8.6.9) with SMTP id PAA00966 for ; Fri, 1 Nov 1996 15:05:50 -0800 (PST) Received: from totum.plaut.de (totum.plaut.de [194.39.177.9]) by plaut.de (8.6.12/8.6.12) with ESMTP id NAA04653 for ; Fri, 1 Nov 1996 13:49:29 +0100 Received: from localhost (root@localhost) by totum.plaut.de (8.8.2/8.7.3) with SMTP id NAA18375 for ; Fri, 1 Nov 1996 13:49:31 +0100 (MET) Date: Fri, 1 Nov 1996 13:49:31 +0100 (MET) From: Michael Reifenberger To: ports@silvia.hip.berkeley.edu Subject: Re: tcl/tk based ports based on obsolete stuff In-Reply-To: <199611011108.DAA01754@silvia.HIP.Berkeley.EDU> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Fri, 1 Nov 1996, Satoshi Asami wrote: ... > print/xtexshell/Makefile tclX3.6 mr (ancient) I have looked around and it seems that XTeXShell isn't maintained anylonger. Best we should delete it from Ports. Bye! ---- Michael Reifenberger Plaut Software GmbH, R/3 Basis From owner-freebsd-ports Sat Nov 2 12:38:11 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id MAA20845 for ports-outgoing; Sat, 2 Nov 1996 12:38:11 -0800 (PST) Received: from hydra.RoBIN.de (root@hydra.RoBIN.de [193.174.7.1]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id MAA20828 for ; Sat, 2 Nov 1996 12:38:00 -0800 (PST) Received: from marvin.RoBIN.de (uucp@localhost) by hydra.RoBIN.de (8.6.13/8.6.12) with UUCP id VAA24484 for ports@freebsd.org; Sat, 2 Nov 1996 21:20:02 +0100 Received: from marvin.RoBIN.de (uucp@localhost) by layla.RoBIN.de (8.6.12/8.6.12) with UUCP id TAA08824 for ports@freebsd.org; Sat, 2 Nov 1996 19:07:05 +0100 Received: (from andreas@localhost) by marvin.RoBIN.de (8.6.12/8.6.12) id TAA01635 for ports@freebsd.org; Sat, 2 Nov 1996 19:01:31 +0100 From: Andreas Lohr Message-Id: <199611021801.TAA01635@marvin.RoBIN.de> Subject: xmandel, mgdiff To: ports@freebsd.org Date: Sat, 2 Nov 1996 19:01:29 +0100 (MET) X-Mailer: ELM [version 2.4 PL23] Content-Type: text Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hello everybody, I have uploaded my first attempts to contribute to the ports collections to ftp://ftp.freebsd.org/pub/FreeBSD/incoming. The files are: xmandel.tar.gz - Window based interface to Mandelbrot sets and Julia sets mgdiff.tar.gz - Graphical front end to the Unix diff command Andreas -- andreas@marvin.robin.de (home) | "Beware of programmers carrying screwdrivers!" al@rtsffm.com (work) | From owner-freebsd-ports Sat Nov 2 13:38:13 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id NAA25940 for ports-outgoing; Sat, 2 Nov 1996 13:38:13 -0800 (PST) Received: from alpha.xerox.com (alpha.Xerox.COM [13.1.64.93]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id NAA25934 for ; Sat, 2 Nov 1996 13:38:11 -0800 (PST) Received: from crevenia.parc.xerox.com ([13.2.116.11]) by alpha.xerox.com with SMTP id <17923(2)>; Sat, 2 Nov 1996 13:37:39 PST Received: by crevenia.parc.xerox.com id <177476>; Sat, 2 Nov 1996 13:37:33 -0800 From: Bill Fenner To: ports@freebsd.org Subject: USE_X11 Message-Id: <96Nov2.133733pst.177476@crevenia.parc.xerox.com> Date: Sat, 2 Nov 1996 13:37:33 PST Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Should I set USE_X11 on a port if it uses tk? The tk port doesn't set USE_X11, is this an oversight or a trend? Bill From owner-freebsd-ports Sat Nov 2 17:47:25 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id RAA12228 for ports-outgoing; Sat, 2 Nov 1996 17:47:25 -0800 (PST) Received: from who.cdrom.com (who.cdrom.com [204.216.27.3]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id RAA12221 for ; Sat, 2 Nov 1996 17:47:22 -0800 (PST) Received: from alpha.xerox.com (alpha.Xerox.COM [13.1.64.93]) by who.cdrom.com (8.7.5/8.6.11) with SMTP id RAA06844 for ; Sat, 2 Nov 1996 17:47:21 -0800 (PST) Received: from crevenia.parc.xerox.com ([13.2.116.11]) by alpha.xerox.com with SMTP id <14480(1)>; Sat, 2 Nov 1996 17:45:28 PST Received: by crevenia.parc.xerox.com id <177476>; Sat, 2 Nov 1996 17:45:17 -0800 From: Bill Fenner To: ports@freebsd.org Subject: Compressed or uncompressed man pages in PLIST? Message-Id: <96Nov2.174517pst.177476@crevenia.parc.xerox.com> Date: Sat, 2 Nov 1996 17:45:12 PST Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hi, Should I put the name of the compressed or the uncompressed man pages in the PLIST? Thanks, Bill From owner-freebsd-ports Sat Nov 2 18:15:40 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id SAA14088 for ports-outgoing; Sat, 2 Nov 1996 18:15:40 -0800 (PST) Received: from mail.tky007.tth.expo96.ad.jp (root@tky007.tth.expo96.ad.jp [133.246.32.58]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id SAA14074 for ; Sat, 2 Nov 1996 18:15:30 -0800 (PST) Received: from tky007.tth.expo96.ad.jp (masafumi@localhost [127.0.0.1]) by mail.tky007.tth.expo96.ad.jp (8.8.2/3.4W4-SMTP) with ESMTP id LAA06226; Sun, 3 Nov 1996 11:14:51 +0900 (JST) Message-Id: <199611030214.LAA06226@mail.tky007.tth.expo96.ad.jp> To: freebsd-ports@freebsd.org, fenner@parc.xerox.com Cc: max@wide.ad.jp Subject: Re: Compressed or uncompressed man pages in PLIST? From: Masafumi NAKANE/=?ISO-2022-JP?B?GyRCQ2Y6LDJtSjgbKEI=?= X-Mailer: Mew version 1.06 on Emacs 19.28.1, Mule 2.3 Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Date: Sun, 03 Nov 1996 11:14:51 +0900 Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Bill> Should I put the name of the compressed or the Bill> uncompressed man pages in the PLIST? If the man pages are to be compressed without NOMANCOMPRESS undefined, put compressed name into the packing list. Don't worry about the situation with NOMANCOMPRESS defined. ----------------------------------------------------------------------- Masafumi NAKANE, Keio Univ., Dept. of Environmental Information E-Mail : max@wide.ad.jp / max@FreeBSD.ORG [URL] : http://www.sfc.wide.ad.jp/~max/ From owner-freebsd-ports Sat Nov 2 19:42:24 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id TAA19147 for ports-outgoing; Sat, 2 Nov 1996 19:42:24 -0800 (PST) Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [128.120.56.38]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id TAA19137 for ; Sat, 2 Nov 1996 19:42:21 -0800 (PST) Received: (from obrien@localhost) by relay.nuxi.com (8.7.5/8.6.12) id TAA27192 for freebsd-ports@freebsd.org; Sat, 2 Nov 1996 19:42:36 -0800 (PST) From: "David E. O'Brien" Message-Id: <199611030342.TAA27192@relay.nuxi.com> Subject: suggested changes for manpage processesing To: freebsd-ports@freebsd.org (FreeBSD ports list) Date: Sat, 2 Nov 1996 19:42:35 -0800 (PST) X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 X-Mailer: ELM [version 2.4ME+ PL22 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk I was looking at the new COMPRESS_MAN macro. It's use will look like: post-install: ${COMPRESS_MAN} \ ${PREFIX}/man/man1/foo.1 \ ${PREFIX}/man/man5/bar.5 I was thinking maybe compressing the man pages could like more like they way we do distfiles and patchfiles: MANPAGES+= man/man1/foo.1 \ man/man5/bar.5 And have bsd.port.mk deal with the details. Here is a patch that would do this: --- bsd.port.mk Sat Nov 2 08:06:22 1996 +++ bsd.port.mk.deo Sat Nov 2 19:40:13 1996 @@ -792,7 +792,14 @@ @(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} install.man) .endif .endif +.if defined(MANPAGES) +.if !defined(NOMANCOMPRESS) +.for manpage in ${MANPAGES} + @gzip -9nf ${PREFIX}/${manpage} .endif +.endif +.endif #def'ed MANPAGES +.endif #if not do-install target # Package Thoughts? -- David (obrien@nuxi.com) From owner-freebsd-ports Sat Nov 2 20:11:51 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id UAA20947 for ports-outgoing; Sat, 2 Nov 1996 20:11:51 -0800 (PST) Received: from dfw-ix4.ix.netcom.com (dfw-ix4.ix.netcom.com [206.214.98.4]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id UAA20941 for ; Sat, 2 Nov 1996 20:11:47 -0800 (PST) Received: from silvia.HIP.Berkeley.EDU (silvia.HIP.Berkeley.EDU [136.152.64.181]) by dfw-ix4.ix.netcom.com (8.6.13/8.6.12) with ESMTP id UAA10777; Sat, 2 Nov 1996 20:11:09 -0800 Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.2/8.6.9) id UAA06997; Sat, 2 Nov 1996 20:11:05 -0800 (PST) Date: Sat, 2 Nov 1996 20:11:05 -0800 (PST) Message-Id: <199611030411.UAA06997@silvia.HIP.Berkeley.EDU> To: fenner@parc.xerox.com CC: ports@freebsd.org In-reply-to: <96Nov2.133733pst.177476@crevenia.parc.xerox.com> (message from Bill Fenner on Sat, 2 Nov 1996 13:37:33 PST) Subject: Re: USE_X11 From: asami@freebsd.org (Satoshi Asami) Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk * Should I set USE_X11 on a port if it uses tk? The tk port doesn't set * USE_X11, is this an oversight or a trend? USE_X11 essentially means "set PREFIX to /usr/X11R6". It's only necessary if your port installs in /usr/X11R6. Satoshi P.S. If your port uses imake, USE_IMAKE already implies it so you don't need USE_X11. From owner-freebsd-ports Sat Nov 2 20:19:55 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id UAA21283 for ports-outgoing; Sat, 2 Nov 1996 20:19:55 -0800 (PST) Received: from alpha.xerox.com (alpha.Xerox.COM [13.1.64.93]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id UAA21277; Sat, 2 Nov 1996 20:19:52 -0800 (PST) Received: from crevenia.parc.xerox.com ([13.2.116.11]) by alpha.xerox.com with SMTP id <14558(2)>; Sat, 2 Nov 1996 20:19:20 PST Received: from localhost by crevenia.parc.xerox.com with SMTP id <177642>; Sat, 2 Nov 1996 20:19:12 -0800 To: asami@freebsd.org (Satoshi Asami) cc: fenner@parc.xerox.com, ports@freebsd.org Subject: Re: USE_X11 In-reply-to: Your message of "Sat, 02 Nov 96 20:11:05 PST." <199611030411.UAA06997@silvia.HIP.Berkeley.EDU> Date: Sat, 2 Nov 1996 20:19:04 PST From: Bill Fenner Message-Id: <96Nov2.201912pst.177642@crevenia.parc.xerox.com> Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk In message <199611030411.UAA06997@silvia.HIP.Berkeley.EDU> you write: >It's only necessary if your port installs in /usr/X11R6. Well, which ports should install in /usr/X11R6? bsd.port.mk says "set this if your port uses X11", which not all ports that use X11 do (e.g. tk). I'm porting and/or updating the MBone tools, which aren't *primarily* X applications, although they of course use X (well, tk) as their user interface. According to bsd.port.mk, I should set USE_X11 to yes, but I'm not sure that I feel that sdr, vat, vic, nte, wb, rtpmon, and mbone_vcr belong in /usr/X11R6. Bill From owner-freebsd-ports Sat Nov 2 21:16:45 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id VAA23803 for ports-outgoing; Sat, 2 Nov 1996 21:16:45 -0800 (PST) Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [128.120.56.38]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id VAA23798 for ; Sat, 2 Nov 1996 21:16:42 -0800 (PST) Received: (from obrien@localhost) by relay.nuxi.com (8.7.5/8.6.12) id VAA27586; Sat, 2 Nov 1996 21:17:01 -0800 (PST) Message-Id: <199611030517.VAA27586@relay.nuxi.com> Date: Sat, 2 Nov 1996 21:17:00 -0800 From: obrien@NUXI.com (David E. O'Brien) To: ports@freebsd.org Subject: Re: Compressed or uncompressed man pages in PLIST? References: <96Nov2.174517pst.177476@crevenia.parc.xerox.com> X-Mailer: Mutt 0.48.1-PL0 Mime-Version: 1.0 X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 In-Reply-To: <96Nov2.174517pst.177476@crevenia.parc.xerox.com>; from Bill Fenner on Nov 2, 1996 17:45:12 -0800 Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Bill Fenner writes: > > Should I put the name of the compressed or the uncompressed man pages in > the PLIST? Compressed. It is assumed most people will take the default setting of having their manpages compressed. -- -- David (obrien@cs.ucdavis.edu) From owner-freebsd-ports Sat Nov 2 21:25:52 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id VAA24135 for ports-outgoing; Sat, 2 Nov 1996 21:25:52 -0800 (PST) Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [128.120.56.38]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id VAA24130 for ; Sat, 2 Nov 1996 21:25:50 -0800 (PST) Received: (from obrien@localhost) by relay.nuxi.com (8.7.5/8.6.12) id VAA27612; Sat, 2 Nov 1996 21:26:08 -0800 (PST) Message-Id: <199611030526.VAA27612@relay.nuxi.com> Date: Sat, 2 Nov 1996 21:26:07 -0800 From: obrien@NUXI.com (David E. O'Brien) To: ports@freebsd.org Subject: Re: xmandel, mgdiff References: <199611021801.TAA01635@marvin.RoBIN.de> X-Mailer: Mutt 0.48.1-PL0 Mime-Version: 1.0 X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 In-Reply-To: <199611021801.TAA01635@marvin.RoBIN.de>; from Andreas Lohr on Nov 2, 1996 19:01:29 +0100 Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Andreas Lohr writes: > > I have uploaded my first attempts to contribute to the ports collections > to ftp://ftp.freebsd.org/pub/FreeBSD/incoming. The files are: > > mgdiff.tar.gz - Graphical front end to the Unix diff command As a followup, mgdiff requires Motif. So only checkout this port if you have it. -- -- David (obrien@cs.ucdavis.edu) From owner-freebsd-ports Sat Nov 2 23:03:00 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA01716 for ports-outgoing; Sat, 2 Nov 1996 23:03:00 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA01697; Sat, 2 Nov 1996 23:02:58 -0800 (PST) Date: Sat, 2 Nov 1996 23:02:58 -0800 (PST) From: "David E. O'Brien" Message-Id: <199611030702.XAA01697@freefall.freebsd.org> To: obrien, freebsd-ports, asami Subject: Re: ports/1902 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: additional clean targets for bsd.port.mk Responsible-Changed-From-To: freebsd-ports->asami Responsible-Changed-By: obrien Responsible-Changed-When: Sat Nov 2 23:02:25 PST 1996 Responsible-Changed-Why: This level of change really needs to approved by Satoshi.