From owner-freebsd-ports@FreeBSD.ORG Sun May 2 00:03:59 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B06916A4CE for ; Sun, 2 May 2004 00:03:59 -0700 (PDT) Received: from smtp.dkm.cz (smtp.dkm.cz [62.24.64.34]) by mx1.FreeBSD.org (Postfix) with SMTP id 37D1B43D2D for ; Sun, 2 May 2004 00:03:58 -0700 (PDT) (envelope-from neuhauser@chello.cz) Received: (qmail 92250 invoked by uid 0); 2 May 2004 07:03:57 -0000 Received: from r3al16.mistral.cz (HELO isis.wad.cz) (213.220.229.16) by smtp.dkm.cz with SMTP; 2 May 2004 07:03:56 -0000 Received: by isis.wad.cz (Postfix, from userid 1001) id 90C282FDA01; Sun, 2 May 2004 09:03:55 +0200 (CEST) Date: Sun, 2 May 2004 09:03:55 +0200 From: Roman Neuhauser To: Pete Fritchman Message-ID: <20040502070355.GA345@isis.wad.cz> Mail-Followup-To: Pete Fritchman , freebsd-ports References: <20040502050806.C12FB177CB@sirius.firepipe.net> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="IS0zKkzwUGydFO0o" Content-Disposition: inline In-Reply-To: <20040502050806.C12FB177CB@sirius.firepipe.net> User-Agent: Mutt/1.5.6i cc: freebsd-ports Subject: Re: [PATCH] small speedups in Mk/bsd.port.mk X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 May 2004 07:03:59 -0000 --IS0zKkzwUGydFO0o Content-Type: text/plain; charset=us-ascii Content-Disposition: inline # petef@absolutbsd.org / 2004-05-02 00:08:06 -0500: > * Sat, 01 May 2004 17:04:29 CDT - Pete Fritchman: > | Nope, that seems to be fixed. I'll run with this version and let you > | know if I run into any trouble. > > Found a bug with make checksum: > > skull(/usr/ports/devel/libsigc++12) [1410] > cat distinfo > MD5 (gnome2/libsigc++-1.2.5.tar.gz) = d0d1ffcae0eced97ef4f17ce0ba81352 > SIZE (gnome2/libsigc++-1.2.5.tar.gz) = 408276 > skull(/usr/ports/devel/libsigc++12) [1411] > make -V DISTFILES > libsigc++-1.2.5.tar.gz > skull(/usr/ports/devel/libsigc++12) [1412] > make -V DIST_SUBDIR > gnome2 > skull(/usr/ports/devel/libsigc++12) [1413] > make checksum > ===> Vulnerability check disabled > >> No checksum recorded for gnome2/libsigc++-1.2.5.tar.gz. > *** Error code 1 > > Stop in /usr/ports/devel/libsigc++12. > skull(/usr/ports/devel/libsigc++12) [1414] > Hrmph, right, dot is just one of regexp metacharacters. This version uses plain string comparisons in DISTINFO_SIZE_AWK and DISTINFO_CKSUM_AWK. Thanks again for testing! This would have taken weeks if I submitted the patch right away. -- If you cc me or remove the list(s) completely I'll most likely ignore your message. see http://www.eyrie.org./~eagle/faqs/questions.html --IS0zKkzwUGydFO0o Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="Mk::bsd.port.mk-speedups,3.patch" Index: Mk/bsd.port.mk =================================================================== RCS file: /home/ncvs/ports/Mk/bsd.port.mk,v retrieving revision 1.488 diff -u -u -r1.488 bsd.port.mk --- Mk/bsd.port.mk 19 Apr 2004 23:39:52 -0000 1.488 +++ Mk/bsd.port.mk 2 May 2004 06:37:18 -0000 @@ -2173,6 +2173,9 @@ . endif .endfor +DISTINFO_SIZE_AWK= 'BEGIN { p = sprintf("SIZE (%s)", distinfo); l = length(p); } { if (substr($$0, 1, l) == p) { print $$4; } }' +DISTINFO_CKSUM_AWK= 'BEGIN { p = sprintf("MD5 (%s)", distinfo); l = length(p); } { if (substr($$0, 1, l) == p) { print $$4; } }' + # # Hackery to enable simple fetch targets with several dynamic MASTER_SITES # @@ -2859,7 +2862,8 @@ for site in `eval $$SORTED_MASTER_SITES_CMD_TMP ${_RANDOMIZE_SITES}`; do \ ${ECHO_MSG} ">> Attempting to fetch from $${site}."; \ DIR=${DIST_SUBDIR}; \ - CKSIZE=`${GREP} "^SIZE ($${DIR:+$$DIR/}$$file)" ${MD5_FILE} | ${AWK} '{print $$4}'`; \ + CKSIZE=`${AWK} -v distinfo="$${DIR:+$$DIR/}$$file" \ + ${DISTINFO_SIZE_AWK} ${MD5_FILE}`; \ case $${file} in \ */*) ${MKDIR} $${file%/*}; \ args="-o $${file} $${site}$${file}";; \ @@ -2912,8 +2916,8 @@ for site in `eval $$SORTED_PATCH_SITES_CMD_TMP`; do \ ${ECHO_MSG} ">> Attempting to fetch from $${site}."; \ DIR=${DIST_SUBDIR}; \ - pattern="$${DIR:+$$DIR/}`${ECHO_CMD} $$file | ${SED} -e 's/\./\\\\./g'`"; \ - CKSIZE=`${GREP} "^SIZE ($$pattern)" ${MD5_FILE} | ${AWK} '{print $$4}'`; \ + CKSIZE=`${AWK} -v distinfo="$${DIR:+$$DIR/}$$file" \ + ${DISTINFO_SIZE_AWK} ${MD5_FILE}`; \ case $${file} in \ */*) ${MKDIR} $${file%/*}; \ args="-o $${file} $${site}$${file}";; \ @@ -2997,7 +3001,7 @@ if ${PATCH} ${PATCH_ARGS} < $$i ; then \ PATCHES_APPLIED="$$PATCHES_APPLIED $$i" ; \ else \ - ${ECHO_MSG} `${ECHO_CMD} ">> Patch $$i failed to apply cleanly." | ${SED} "s|${PATCHDIR}/||"` ; \ + ${ECHO_MSG} ">> Patch $${i#${PATCHDIR}} failed to apply cleanly." ; \ if [ x"$$PATCHES_APPLIED" != x"" ]; then \ ${ECHO_MSG} `${ECHO_CMD} ">> Patch(es) $$PATCHES_APPLIED applied cleanly." | ${SED} "s|${PATCHDIR}/||g"` ; \ fi; \ @@ -3380,9 +3384,8 @@ /usr/bin/objdump -R ${PREFIX}/$$i > \ ${WRKDIR}/.PLIST.objdump 2> /dev/null; \ if [ -s ${WRKDIR}/.PLIST.objdump ] ; then \ - ${EGREP} " $$stupid_functions_regexp" \ - ${WRKDIR}/.PLIST.objdump | ${AWK} '{print " " $$3}' | ${TR} -d '\n' \ - > ${WRKDIR}/.PLIST.stupid; \ + ${AWK} '/ '"$$stupid_functions_regexp"'/ {printf " %s" $$3}' \ + ${WRKDIR}/.PLIST.objdump > ${WRKDIR}/.PLIST.stupid; \ if [ -n "`${EGREP} ' (accept|recvfrom)$$' ${WRKDIR}/.PLIST.objdump`" ] ; then \ if [ -s ${WRKDIR}/.PLIST.stupid ]; then \ ${ECHO_CMD} -n "${PREFIX}/$$i (USES POSSIBLY INSECURE FUNCTIONS:" >> ${WRKDIR}/.PLIST.network; \ @@ -3803,7 +3806,8 @@ fi ; \ for site in `eval $$SORTED_MASTER_SITES_CMD_TMP ${_RANDOMIZE_SITES}`; do \ DIR=${DIST_SUBDIR}; \ - CKSIZE=`${GREP} "^SIZE ($${DIR:+$$DIR/}$$file)" ${MD5_FILE} | ${AWK} '{print $$4}'`; \ + CKSIZE=`${AWK} -v distinfo="$${DIR:+$$DIR/}$$file" \ + ${DISTINFO_SIZE_AWK} ${MD5_FILE}`; \ case $${file} in \ */*) args="-o $${file} $${site}$${file}";; \ *) args=$${site}$${file};; \ @@ -3835,7 +3839,8 @@ fi ; \ for site in `eval $$SORTED_PATCH_SITES_CMD_TMP ${_RANDOMIZE_SITES}`; do \ DIR=${DIST_SUBDIR}; \ - CKSIZE=`${GREP} "^SIZE ($${DIR:+$$DIR/}$$file)" ${MD5_FILE} | ${AWK} '{print $$4}'`; \ + CKSIZE=`${AWK} -v distinfo="$${DIR:+$$DIR/}$$file" \ + ${DISTINFO_SIZE_AWK} ${MD5_FILE}`; \ case $${file} in \ */*) args="-o $${file} $${site}$${file}";; \ *) args=$${site}$${file};; \ @@ -3886,9 +3891,8 @@ @if [ -f ${MD5_FILE} ]; then \ (cd ${DISTDIR}; OK=""; \ for file in ${_CKSUMFILES}; do \ - pattern="`${ECHO_CMD} $$file | ${SED} -e 's/\./\\\\./g'`"; \ CKSUM=`${MD5} < $$file`; \ - CKSUM2=`${GREP} "^MD5 ($$pattern)" ${MD5_FILE} | ${AWK} '{print $$4}'`; \ + CKSUM2=`${AWK} -v distinfo="$$file" ${DISTINFO_CKSUM_AWK} ${MD5_FILE}`; \ if [ -z "$$CKSUM2" ]; then \ ${ECHO_MSG} ">> No checksum recorded for $$file."; \ OK="false"; \ @@ -3914,8 +3918,7 @@ fi; \ done; \ for file in ${_IGNOREFILES}; do \ - pattern="`${ECHO_CMD} $$file | ${SED} -e 's/\./\\\\./g'`"; \ - CKSUM2=`${GREP} "($$pattern)" ${MD5_FILE} | ${AWK} '{if(NR<2)print $$4}'`; \ + CKSUM2=`${AWK} -v distinfo="$$file" ${DISTINFO_CKSUM_AWK} ${MD5_FILE}`; \ if [ "$$CKSUM2" = "" ]; then \ ${ECHO_MSG} ">> No checksum recorded for $$file, file is in "'$$'"{IGNOREFILES} list."; \ OK="false"; \ @@ -4004,8 +4007,8 @@ prog=`${ECHO_CMD} $$i | ${SED} -e 's/:.*//'`; \ dir=`${ECHO_CMD} $$i | ${SED} -e 's/[^:]*://'`; \ if ${EXPR} "$$dir" : '.*:' > /dev/null; then \ - target=`${ECHO_CMD} $$dir | ${SED} -e 's/.*://'`; \ - dir=`${ECHO_CMD} $$dir | ${SED} -e 's/:.*//'`; \ + target=$${dir##*:}; \ + dir=$${dir%%:*}; \ else \ target="${DEPENDS_TARGET}"; \ depends_args="${DEPENDS_ARGS}"; \ @@ -4129,8 +4132,8 @@ .if !defined(NO_DEPENDS) @for dir in ${DEPENDS}; do \ if ${EXPR} "$$dir" : '.*:' > /dev/null; then \ - target=`${ECHO_CMD} $$dir | ${SED} -e 's/.*://'`; \ - dir=`${ECHO_CMD} $$dir | ${SED} -e 's/:.*//'`; \ + target=$${dir##*:}; \ + dir=$${dir%%:*}; \ else \ target="${DEPENDS_TARGET}"; \ depends_args="${DEPENDS_ARGS}"; \ @@ -4160,7 +4163,7 @@ ALL-DEPENDS-LIST= \ checked="${PARENT_CHECKED}"; \ - for dir in $$(${ECHO_CMD} "${EXTRACT_DEPENDS} ${PATCH_DEPENDS} ${FETCH_DEPENDS} ${BUILD_DEPENDS} ${LIB_DEPENDS} ${RUN_DEPENDS}" | ${SED} -e 'y/ /\n/' | ${CUT} -f 2 -d ':') $$(${ECHO_CMD} ${DEPENDS} | ${SED} -e 'y/ /\n/' | ${CUT} -f 1 -d ':'); do \ + for dir in $$(${ECHO_CMD} "${EXTRACT_DEPENDS} ${PATCH_DEPENDS} ${FETCH_DEPENDS} ${BUILD_DEPENDS} ${LIB_DEPENDS} ${RUN_DEPENDS}" | ${AWK} -v RS=' ' -v FS=: '{print $$2}') $$(${ECHO_CMD} ${DEPENDS} | ${AWK} -v RS=' ' -v FS=: '{print $$1}'); do \ if [ -d $$dir ]; then \ if (${ECHO_CMD} $$checked | ${GREP} -qwv "$$dir"); then \ child=$$(cd $$dir; ${MAKE} PARENT_CHECKED="$$checked" run-depends-list); \ @@ -4419,7 +4422,7 @@ www-site: .if exists(${DESCR}) - @${GREP} '^WWW:[ ]' ${DESCR} | ${AWK} '{print $$2}' | ${HEAD} -1 + @${AWK} '/^WWW:[ ]/ {print $$2; exit;}' ${DESCR} .else @${ECHO_CMD} .endif @@ -4465,7 +4468,7 @@ defined(FETCH_DEPENDS) || defined(BUILD_DEPENDS) || \ defined(LIB_DEPENDS) || defined(DEPENDS) @${ECHO_CMD} -n 'This port requires package(s) "' - @${ECHO_CMD} -n `${GREP} '^${PKGNAME}|' ${PORTSDIR}/${INDEXFILE} | ${AWK} -F\| '{print $$8;}'` + @${ECHO_CMD} -n `${AWK} -F\| '/^${PKGNAME}|/ {print $$8;}' ${PORTSDIR}/${INDEXFILE}` @${ECHO_CMD} '" to build.' .endif .endif @@ -4474,7 +4477,7 @@ pretty-print-run-depends-list: .if defined(RUN_DEPENDS) || defined(LIB_DEPENDS) || defined(DEPENDS) @${ECHO_CMD} -n 'This port requires package(s) "' - @${ECHO_CMD} -n `${GREP} '^${PKGNAME}|' ${PORTSDIR}/${INDEXFILE} | ${AWK} -F\| '{print $$9;}'` + @${ECHO_CMD} -n `${AWK} -F\| '/^${PKGNAME}|/ {print $$9;}' ${PORTSDIR}/${INDEXFILE}` @${ECHO_CMD} '" to run.' .endif .endif @@ -4487,10 +4490,9 @@ @${ECHO_MSG} "===> Generating temporary packing list" @${MKDIR} `${DIRNAME} ${TMPPLIST}` @if [ ! -f ${DESCR} ]; then ${ECHO_CMD} "** Missing pkg-descr for ${PKGNAME}."; exit 1; fi - @>${TMPPLIST} @for file in ${PLIST_FILES}; do \ - ${ECHO_CMD} $${file} | ${SED} ${PLIST_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} >> ${TMPPLIST}; \ - done + ${ECHO_CMD} $${file}; \ + done | ${SED} ${PLIST_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} > ${TMPPLIST} @for man in ${__MANPAGES}; do \ ${ECHO_CMD} $${man} >> ${TMPPLIST}; \ done @@ -4529,9 +4531,9 @@ @if [ -f ${PLIST} ]; then \ ${SED} ${PLIST_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} ${PLIST} >> ${TMPPLIST}; \ fi -.for dir in ${PLIST_DIRS} - @${ECHO_CMD} ${dir} | ${SED} ${PLIST_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} | ${SED} -e 's,^,@dirrm ,' >> ${TMPPLIST} -.endfor + @for dir in ${PLIST_DIRS}; do \ + ${ECHO_CMD} $${dir}; \ + done | ${SED} ${PLIST_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} | ${SED} -e 's,^,@dirrm ,' >> ${TMPPLIST} .if !defined(NO_MTREE) @${ECHO_CMD} "@unexec if [ -f %D/info/dir ]; then if sed -e '1,/Menu:/d' %D/info/dir | grep -q '^[*] '; then true; else rm %D/info/dir; fi; fi" >> ${TMPPLIST} .endif @@ -4558,10 +4560,15 @@ .if !target(add-plist-docs) add-plist-docs: .if defined(PORTDOCS) - @if ${EGREP} -qe '^@cw?d' ${TMPPLIST} && \ - [ "`${SED} -En -e '/^@cw?d[ ]*/s,,,p' ${TMPPLIST} | ${TAIL} -n 1`" != "${PREFIX}" ]; then \ - ${ECHO_CMD} "@cwd ${PREFIX}" >> ${TMPPLIST}; \ - fi + @${AWK} -v found=0 -v cwd='' -v prefix='${PREFIX}' \ + 'match($$0, /^@cw?d[ ]*/) { \ + found = 1; cwd = substr($$0, RSTART + RLENGTH); \ + } \ + END { \ + if (found && cwd != prefix) { \ + print "@cwd " prefix >> "${TMPPLIST}"; \ + } \ + }' ${TMPPLIST}; \ @${FIND} -P ${PORTDOCS:S/^/${DOCSDIR}\//} ! -type d 2>/dev/null | \ ${SED} -ne 's,^${PREFIX}/,,p' >> ${TMPPLIST} @${FIND} -P -d ${PORTDOCS:S/^/${DOCSDIR}\//} -type d 2>/dev/null | \ @@ -4646,7 +4653,7 @@ if [ -f ${PKGMESSAGE} ]; then \ ${CP} ${PKGMESSAGE} ${PKG_DBDIR}/${PKGNAME}/+DISPLAY; \ fi; \ - for dep in `${PKG_INFO} -qf ${PKGNAME} | ${GREP} -w ^@pkgdep | ${AWK} '{print $$2}' | sort -u`; do \ + for dep in `${PKG_INFO} -qf ${PKGNAME} | ${AWK} '/^@pkgdep\>/ {print $$2}' | sort -u`; do \ if [ -d ${PKG_DBDIR}/$$dep -a -z `${ECHO_CMD} $$dep | ${GREP} -E ${PKG_IGNORE_DEPENDS}` ]; then \ if ! ${GREP} ^${PKGNAME}$$ ${PKG_DBDIR}/$$dep/+REQUIRED_BY \ >/dev/null 2>&1; then \ @@ -4750,7 +4757,7 @@ ${ECHO_MSG} "===> No user-specified options to save for ${PKGNAME}"; \ exit 0; \ fi; \ - SELOPTIONS=$$(${CAT} $${TMPOPTIONSFILE}); \ + SELOPTIONS=$$(${SED} -e 's/"//g' $${TMPOPTIONSFILE}); \ ${RM} -f $${TMPOPTIONSFILE}; \ TMPOPTIONSFILE=$$(mktemp -t portoptions); \ trap "${RM} -f $${TMPOPTIONSFILE}; exit 1" 1 2 3 5 10 13 15; \ @@ -4758,14 +4765,23 @@ ${ECHO_CMD} "# No user-servicable parts inside!" >> $${TMPOPTIONSFILE}; \ ${ECHO_CMD} "# Options for ${PKGNAME}" >> $${TMPOPTIONSFILE}; \ ${ECHO_CMD} "_OPTIONS_READ=${PKGNAME}" >> $${TMPOPTIONSFILE}; \ - for i in $${OPTIONSLIST}; do \ - ${ECHO_CMD} $${SELOPTIONS} | ${GREP} -qw $${i}; \ - if [ $$? -eq 0 ]; then \ - ${ECHO_CMD} WITH_$${i}=true >> $${TMPOPTIONSFILE}; \ - else \ - ${ECHO_CMD} WITHOUT_$${i}=true >> $${TMPOPTIONSFILE}; \ - fi; \ - done; \ + ${ECHO_CMD} $${OPTIONSLIST} | ${AWK} \ + 'BEGIN { \ + getline; \ + sub(/[\r\n]+/, ""); \ + split($$0, ol); \ + split("'"$${SELOPTIONS}"'", sl); \ + for (o in ol) { \ + found = 0; \ + for (s in sl) { \ + if (ol[o] == sl[s]) { \ + found = 1; \ + break; \ + } \ + } \ + printf("WITH%s_%s=true\n", found ? "" : "OUT", ol[o]); \ + } \ + }' >> $${TMPOPTIONSFILE}; \ if [ `${ID} -u` != 0 -a "x${INSTALL_AS_USER}" = "x" ]; then \ ${ECHO_MSG} "===> Switching to root credentials to write ${_OPTIONSFILE}"; \ ${SU_CMD} "${CAT} $${TMPOPTIONSFILE} > ${_OPTIONSFILE}"; \ --IS0zKkzwUGydFO0o-- From owner-freebsd-ports@FreeBSD.ORG Sun May 2 01:58:03 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6755316A4CE for ; Sun, 2 May 2004 01:58:03 -0700 (PDT) Received: from pythagoras.zen.co.uk (pythagoras.zen.co.uk [212.23.3.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2475943D45 for ; Sun, 2 May 2004 01:58:03 -0700 (PDT) (envelope-from zen13038@zen.co.uk) Received: from [217.155.133.118] (helo=yashin.myname.mydomain) by pythagoras.zen.co.uk with esmtp (Exim 4.30) id 1BKCnS-0002zu-2P; Sun, 02 May 2004 08:58:02 +0000 Received: by yashin.myname.mydomain (Postfix, from userid 1001) id 1265520AEA; Sun, 2 May 2004 10:02:43 +0100 (BST) Date: Sun, 2 May 2004 10:02:42 +0100 From: Aleksandar Simic To: Oliver Eikemeier Message-ID: <20040502090242.GA85884@yashin.myname.mydomain> References: <20040501235333.GA84676@yashin.myname.mydomain> <40943C5B.4040501@fillmore-labs.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <40943C5B.4040501@fillmore-labs.com> User-Agent: Mutt/1.4.2.1i X-Originating-Pythagoras-IP: [217.155.133.118] cc: ports@FreeBSD.org Subject: Re: Improving /usr/ports/Makefile ? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 May 2004 08:58:03 -0000 On Sun, May 02, 2004 at 02:10:03AM +0200, Oliver Eikemeier wrote: > Aleksandar Simic wrote: > > >Hello, > > > >from time to time you see people asking on questions why is it that > >their 'make index' is failing after they cvsup-ed all but excluded > >some region specific ports directories, most commonly: > > > >arabic, chinese, hebrew, hungarian, japanese, korean, polish, > >portuguese, russian, ukrainian, vietnamese > > > >Could a check be added to see if the above directories, or any other > >'undesirable' ones are non existant and if they are, that they should > >be ignored ? > > > >Something like this: > > > > > >*** /usr/ports/Makefile Sat May 1 14:20:36 2004 > >--- /tmp/Makefile Sat May 1 09:27:44 2004 > >*************** > >*** 1,66 **** > >--- 1,186 ---- > > # $FreeBSD: ports/Makefile,v 1.82 2004/04/02 07:25:23 kris Exp $ > > # > > > >+ .if exists (${.CURDIR}/accessibility) > > SUBDIR += accessibility > >+ .endif > > ... it's not that easy, because ports from one category need ports from > another, so the INDEx generation fails anyway. I tested a script that > calculated complete subsets, but they were not very useful. OK, but how about doing this check just for the non-english language ports, already listed above ? 'Cos, as far as I can tell they take ports from the 'main' ports and just add localisation. Aleksandar From owner-freebsd-ports@FreeBSD.ORG Sun May 2 03:28:18 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 227F216A4CE; Sun, 2 May 2004 03:28:18 -0700 (PDT) Received: from smtp.tal.de (work5.tal.de [81.92.0.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E3EF43D1F; Sun, 2 May 2004 03:28:17 -0700 (PDT) (envelope-from markus@brueffer.de) Received: from ramses.kicks-ass.net (unknown [82.139.198.15]) by smtp.tal.de (TAL.DE) with ESMTP id BA91D100E32; Sun, 2 May 2004 12:31:46 +0200 (CEST) Received: from cheops.phoenix (cheops.phoenix [192.168.1.3]) by ramses.kicks-ass.net (Postfix) with ESMTP id 237E1B81A; Sun, 2 May 2004 12:30:27 +0200 (CEST) From: Markus Brueffer To: ports@FreeBSD.org, FunOne Date: Sun, 2 May 2004 12:28:47 +0200 User-Agent: KMail/1.6.2 References: <1458211383.20040501230556@tyler.net> In-Reply-To: <1458211383.20040501230556@tyler.net> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_x1MlAgV/eZF+pKZ"; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200405021229.05235.markus@brueffer.de> cc: demon@FreeBSD.org Subject: Re: FreeBSD Port: umbrello-1.1.1_2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 May 2004 10:28:18 -0000 --Boundary-02=_x1MlAgV/eZF+pKZ Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Sunday 02 May 2004 05:05, FunOne wrote: > Umbrello has had a 1.2.1 release out for several months now, when > will the FreeBSD port catch-up? Or is there something broken in the > port that prevents update? You can use devel/kdesdk3 which includes the latest version of Umbrello=20 (1.2.2). Markus =2D-=20 Markus Brueffer | GPG-Key: http://people.FreeBSD.org/~markus/markus.asc markus@brueffer.de | FP: 3F9B EBE8 F290 E5CC 1447 8760 D48D 1072 78F8 A8D4 markus@FreeBSD.org | FreeBSD: The Power to Serve! --Boundary-02=_x1MlAgV/eZF+pKZ Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQBAlM1x1I0Qcnj4qNQRArXAAKDUKAl+HlnCKQMwVvIWCJ2p6xKwDgCeKX22 y9X8R6LEI6bHZgvbJs3Jj9k= =uCoH -----END PGP SIGNATURE----- --Boundary-02=_x1MlAgV/eZF+pKZ-- From owner-freebsd-ports@FreeBSD.ORG Sun May 2 03:48:59 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ECB8016A4CE for ; Sun, 2 May 2004 03:48:58 -0700 (PDT) Received: from fillmore.dyndns.org (port-212-202-49-130.reverse.qsc.de [212.202.49.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D09F43D5E for ; Sun, 2 May 2004 03:48:58 -0700 (PDT) (envelope-from eikemeier@fillmore-labs.com) Received: from [172.16.0.2] (helo=fillmore-labs.com) by fillmore.dyndns.org with esmtp (Exim 4.32; FreeBSD) id 1BKEWj-0007U7-UO; Sun, 02 May 2004 12:48:57 +0200 Message-ID: <4094D213.9030600@fillmore-labs.com> Date: Sun, 02 May 2004 12:48:51 +0200 From: Oliver Eikemeier Organization: Fillmore Labs GmbH - http://www.fillmore-labs.com/ MIME-Version: 1.0 To: Aleksandar Simic References: <20040501235333.GA84676@yashin.myname.mydomain> <40943C5B.4040501@fillmore-labs.com> <20040502090242.GA85884@yashin.myname.mydomain> In-Reply-To: <20040502090242.GA85884@yashin.myname.mydomain> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: ports@FreeBSD.org Subject: Re: Improving /usr/ports/Makefile ? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 May 2004 10:48:59 -0000 Aleksandar Simic wrote: > On Sun, May 02, 2004 at 02:10:03AM +0200, Oliver Eikemeier wrote: > >>Aleksandar Simic wrote: >> >>>Hello, >>> >> >>>from time to time you see people asking on questions why is it that >> >>>their 'make index' is failing after they cvsup-ed all but excluded >>>some region specific ports directories, most commonly: >>> >>>arabic, chinese, hebrew, hungarian, japanese, korean, polish, >>>portuguese, russian, ukrainian, vietnamese >>> >>>Could a check be added to see if the above directories, or any other >>>'undesirable' ones are non existant and if they are, that they should >>>be ignored ? >>> >>>Something like this: >>> >>>*** /usr/ports/Makefile Sat May 1 14:20:36 2004 >>>--- /tmp/Makefile Sat May 1 09:27:44 2004 >>>*************** >>>*** 1,66 **** >>>--- 1,186 ---- >>> # $FreeBSD: ports/Makefile,v 1.82 2004/04/02 07:25:23 kris Exp $ >>> # >>> >>>+ .if exists (${.CURDIR}/accessibility) >>> SUBDIR += accessibility >>>+ .endif >> >>... it's not that easy, because ports from one category need ports from >>another, so the INDEx generation fails anyway. I tested a script that >>calculated complete subsets, but they were not very useful. > > OK, but how about doing this check just for the non-english language > ports, already listed above ? > > 'Cos, as far as I can tell they take ports from the 'main' ports and > just add localisation. Nope. As you can see, many language categories are referenced by misc (kde3-i18n, koffice-i18n), which in turn is needed for most other categories: Category accessibility is referenced by arabic (2), archivers (2), astro (10), audio (35), biology (4), cad (3), chinese (5), comms (4), databases (7), deskutils (57), devel (34), editors (28), emulators (2), finance (1), french (1), ftp (2), games (31), german (1), graphics (30), hungarian (1), irc (3), japanese (9), java (7), korean (6), mail (17), math (5), misc (20), multimedia (19), net (47), net-mgmt (1), news (1), palm (4), polish (3), portuguese (2), print (6), russian (2), science (10), security (9), sysutils (38), textproc (11), www (30), x11 (52), x11-clocks (10), x11-fm (8), x11-toolkits (76), x11- wm (14) Category arabic is referenced by misc (2) Category archivers is referenced by audio (2), biology (1), chinese (5), converters (1), databases (6), deskutils (6), devel (120), dns (1), ftp (4), games (6), graphics (5), irc (2), japanese (2), lang (1), mail (33), misc (7), multimedia (1), net (17), net-mgmt (1), news (6), print (1), security (50), sysutils (6), textproc (11), www (82), x11 (4), x11-wm (1) Category astro is referenced by deskutils (1), net (1), science (1) Category audio is referenced by accessibility (10), arabic (12), archivers (2), astro (32), biology (1), cad (12), chinese (38), comms (27), converters (6), databases (28), deskutils (152), devel (136), editors (78), emulators (14), finance (29), french (12), ftp (22), games (411), german (25), graphics (176), hebrew (12), hungarian (12), irc (28), japanese (61), korean (8), lang (19), mail (52), math (31), mbone (3), misc (652), multimedia (242), net (158), net-mgmt (2), news (10), palm (12), polish (14), portuguese (24), print (38), russian (23), science (21), security (25), shells (1), sysutils (135), textproc (24), ukrainian (12), vietnamese (6), www (51), x11 (122), x11-clocks (19), x11-fm (12), x11-toolkits (93), x11-wm (74) Category benchmarks is referenced by no other category. Category biology is referenced by no other category. Category cad is referenced by audio (1), french (9) Category chinese is referenced by misc (3) Category comms is referenced by audio (2), devel (1), korean (1), net (2), security (1) Category converters is referenced by accessibility (10), arabic (4), archivers (10), astro (24), audio (154), benchmarks (2), biology (10), cad (17), chinese (30), comms (18), databases (101), deskutils (74), devel (240), dns (17), editors (88), emulators (14), finance (14), french (11), ftp (24), games (112), german (10), graphics (145), hebrew (2), hungarian (6), irc (17), japanese (94), java (71), korean (16), lang (38), mail (136), math (25), misc (184), multimedia (72), net (207), net-mgmt (23), news (21), palm (19), polish (8), portuguese (9), print (31), rookies (2), russian (9), science (14), security (94), shells (1), sysutils (102), textproc (139), ukrainian (3), vietnamese (1), www (231), x11 (86), x11-clocks (14), x11-fm (19), x11-fonts (1), x11-toolkits (136), x11-wm (41) Category databases is referenced by archivers (4), audio (15), biology (3), cad (3), chinese (21), comms (10), deskutils (13), devel (85), dns (5), editors (16), emulators (3), finance (7), french (4), ftp (4), games (23), german (1), graphics (9), irc (3), japanese (18), java (2), lang (33), mail (65), math (17), misc (15), net (51), net-mgmt (4), news (6), polish (1), print (7), rookies (2), science (3), security (19), sysutils (31), textproc (12), ukrainian (1), www (120), x11 (15), x11-fm (1), x11-toolkits (36), x11- wm (14) Category deskutils is referenced by astro (3), audio (2), editors (2), mail (4), misc (3), net (9), palm (1), sysutils (5), x11 (9), x11-clocks (4) Category devel is referenced by accessibility (81), arabic (35), archivers (51), astro (202), audio (980), benchmarks (20), biology (65), cad (125), chinese (244), comms (167), converters (30), databases (664), deskutils (725), dns (35), editors (657), emulators (214), finance (99), french (67), ftp (108), games (1543), german (70), graphics (1171), hebrew (22), hungarian (37), irc (120), japanese (707), java (367), korean (117), lang (211), mail (598), math (303), mbone (26), misc (1274), multimedia (499), net (1083), net- mgmt (91), news (63), palm (98), polish (46), portuguese (61), print (331), rookies (22), russian (67), science (120), security (288), shells (4), sysutils (743), textproc (612), ukrainian (24), vietnamese (16), www (1230), x11 (908), x11-clocks (175), x11-fm (161), x11-fonts (90), x11-servers (20), x11-themes (38), x11-toolkits (1125), x11-wm (391) Category dns is referenced by audio (1), chinese (1), devel (2), mail (18), net (7), security (3), sysutils (1), textproc (3), www (6) Category editors is referenced by cad (2), chinese (5), converters (2), databases (4), deskutils (6), devel (21), finance (1), french (3), ftp (1), games (1), graphics (1), hungarian (1), irc (14), japanese (84), java (4), korean (1), lang (5), mail (48), misc (6), net (2), net-mgmt (1), news (20), print (2), security (1), textproc (5), ukrainian (1), www (15), x11 (3), x11- fm (1) Category emulators is referenced by accessibility (1), archivers (2), astro (1), audio (8), biology (1), cad (1), chinese (4), devel (11), editors (4), french (3), games (51), german (6), graphics (11), japanese (9), java (13), korean (4), lang (8), mail (1), math (5), misc (6), multimedia (7), net (11), palm (1), portuguese (1), print (25), russian (2), sysutils (2), textproc (3), www (18), x11 (3), x11-fm (1), x11-fonts (2), x11-toolkits (4) Category finance is referenced by no other category. Category french is referenced by misc (2) Category ftp is referenced by archivers (1), audio (17), databases (1), deskutils (2), devel (1), lang (2), mail (3), misc (7), multimedia (1), net (8), print (2), security (4), sysutils (1), textproc (3), www (5), x11 (2) Category games is referenced by misc (3), net (2), x11 (3), x11-wm (1) Category german is referenced by misc (2) Category graphics is referenced by accessibility (35), arabic (22), archivers (12), astro (112), audio (359), benchmarks (1), biology (38), cad (66), chinese (116), comms (77), converters (11), databases (119), deskutils (342), devel (484), editors (386), emulators (82), finance (57), french (41), ftp (39), games (903), german (48), hebrew (14), hungarian (23), irc (55), japanese (320), java (31), korean (76), lang (77), mail (204), math (174), mbone (2), misc (948), multimedia (316), net (493), net-mgmt (31), news (29), palm (48), polish (41), portuguese (56), print (281), rookies (7), russian (46), science (86), security (85), shells (3), sysutils (329), textproc (172), ukrainian (22), vietnamese (11), www (354), x11 (374), x11-clocks (43), x11-fm (74), x11-fonts (11), x11-servers (2), x11-toolkits (563), x11-wm (238) Category hebrew is referenced by misc (2) Category hungarian is referenced by misc (2) Category irc is referenced by x11 (1) Category japanese is referenced by comms (2), converters (1), databases (4), games (3), graphics (1), korean (1), math (2), misc (3), print (1), textproc (3), www (15) Category java is referenced by archivers (2), astro (2), audio (5), benchmarks (4), biology (4), comms (4), databases (15), devel (22), dns (2), editors (4), finance (2), french (4), ftp (4), games (10), german (2), graphics (4), hungarian (4), irc (2), japanese (2), lang (12), mail (3), math (5), net (30), net-mgmt (4), print (2), rookies (2), science (2), sysutils (2), textproc (47), www (31), x11 (2), x11-toolkits (2) Category korean is referenced by no other category. Category lang is referenced by accessibility (9), arabic (4), archivers (11), astro (14), audio (92), benchmarks (4), biology (10), cad (19), chinese (18), comms (20), converters (8), databases (117), deskutils (82), devel (335), dns (5), editors (51), emulators (12), finance (15), french (15), ftp (12), games (126), german (6), graphics (149), hebrew (2), hungarian (3), irc (21), japanese (55), java (8), korean (7), mail (75), math (60), mbone (14), misc (172), multimedia (47), net (170), net-mgmt (12), news (7), palm (15), polish (5), portuguese (6), print (43), rookies (9), russian (5), science (22), security (56), shells (3), sysutils (89), textproc (152), ukrainian (2), vietnamese (1), www (217), x11 (60), x11-clocks (8), x11-fm (18), x11-fonts (2), x11-toolkits (161), x11-wm (36) Category mail is referenced by biology (3), chinese (4), converters (2), databases (1), deskutils (21), devel (9), editors (11), graphics (1), irc (2), japanese (16), lang (1), misc (6), net (18), news (5), print (1), russian (3), security (9), sysutils (7), textproc (8), ukrainian (1), www (53) Category math is referenced by archivers (1), astro (3), audio (20), benchmarks (2), biology (2), cad (3), chinese (3), comms (2), databases (7), deskutils (20), devel (32), editors (5), finance (1), french (27), ftp (1), games (13), graphics (19), japanese (3), java (2), korean (1), lang (13), mail (15), misc (8), multimedia (19), net (19), net-mgmt (4), news (4), print (2), science (44), security (10), sysutils (7), textproc (5), www (9), x11 (8), x11-clocks (4), x11-fm (1), x11-toolkits (15), x11-wm (1) Category mbone is referenced by no other category. Category misc is referenced by accessibility (21), arabic (5), archivers (9), astro (29), audio (106), biology (8), cad (8), chinese (20), comms (21), databases (28), deskutils (182), devel (131), editors (80), emulators (9), finance (12), french (2), ftp (5), games (116), german (2), graphics (97), hungarian (2), irc (9), japanese (34), java (20), korean (14), lang (5), mail (58), math (28), multimedia (69), net (155), net-mgmt (6), news (5), palm (19), polish (6), portuguese (5), print (31), russian (2), science (23), security (35), sysutils (120), textproc (48), www (114), x11 (152), x11-clocks (26), x11-fm (28), x11-toolkits (241), x11-wm (47) Category multimedia is referenced by audio (68), devel (8), games (73), graphics (40), japanese (3), lang (2), math (2), misc (10), net (11), palm (1), print (5), russian (1), science (4), sysutils (7), textproc (2), www (7), x11 (14), x11-clocks (1), x11-toolkits (1), x11-wm (1) Category net is referenced by accessibility (4), arabic (2), archivers (3), astro (17), audio (16), benchmarks (1), biology (3), cad (2), chinese (9), comms (4), converters (2), databases (14), deskutils (61), devel (66), dns (3), editors (15), emulators (2), finance (11), french (3), ftp (12), games (42), german (5), graphics (29), hebrew (2), hungarian (2), irc (4), japanese (8), korean (2), lang (4), mail (94), math (7), misc (127), multimedia (22), net-mgmt (19), news (8), palm (7), polish (2), portuguese (4), print (8), rookies (2), russian (3), science (3), security (33), sysutils (55), textproc (41), ukrainian (2), vietnamese (1), www (206), x11 (51), x11-clocks (5), x11- fm (6), x11-toolkits (30), x11-wm (13) Category net-mgmt is referenced by dns (1), french (2), graphics (1), lang (1), mail (5), misc (2), net (13), security (2), sysutils (1), textproc (1), www (2), x11 (2) Category news is referenced by mail (1), misc (1), x11 (1) Category palm is referenced by japanese (1) Category polish is referenced by misc (2) Category portuguese is referenced by misc (4) Category print is referenced by accessibility (9), arabic (10), archivers (4), astro (51), audio (226), benchmarks (6), biology (23), cad (41), chinese (80), comms (42), converters (7), databases (68), deskutils (133), devel (211), dns (2), editors (177), emulators (75), finance (24), french (19), ftp (21), games (479), german (19), graphics (422), hebrew (7), hungarian (8), irc (26), japanese (268), java (78), korean (54), lang (60), mail (105), math (100), mbone (14), misc (344), multimedia (101), net (211), net-mgmt (18), news (15), palm (16), polish (13), portuguese (16), rookies (11), russian (22), science (37), security (45), shells (1), sysutils (166), textproc (110), ukrainian (8), vietnamese (7), www (126), x11 (226), x11-clocks (49), x11-fm (36), x11- fonts (44), x11-servers (10), x11-themes (19), x11-toolkits (250), x11-wm (132) Category rookies is referenced by no other category. Category russian is referenced by misc (2) Category science is referenced by biology (1), devel (1), graphics (2), print (1) Category security is referenced by accessibility (2), archivers (2), astro (17), audio (15), biology (6), chinese (8), comms (2), converters (3), databases (15), deskutils (38), devel (91), dns (53), editors (6), finance (29), french (6), ftp (9), games (17), german (2), graphics (13), japanese (11), korean (2), lang (5), mail (194), math (2), misc (20), multimedia (12), net (160), net-mgmt (45), news (13), palm (6), print (4), russian (1), science (2), sysutils (51), textproc (55), www (325), x11 (30), x11-clocks (4), x11-fm (2), x11-toolkits (19) Category shells is referenced by archivers (1), biology (1), cad (2), converters (1), databases (2), editors (1), finance (2), french (3), ftp (1), games (2), graphics (2), japanese (1), mail (6), math (1), misc (3), multimedia (1), net-mgmt (1), print (2), security (1), textproc (3), x11-wm (1) Category sysutils is referenced by archivers (2), astro (4), audio (16), chinese (2), comms (1), databases (13), deskutils (11), devel (33), dns (7), emulators (2), finance (1), french (3), ftp (2), games (9), graphics (5), irc (2), japanese (50), korean (1), lang (5), mail (48), misc (33), multimedia (7), net (48), net-mgmt (12), print (1), security (21), textproc (2), www (209), x11 (16), x11-clocks (2), x11-wm (5) Category textproc is referenced by accessibility (49), arabic (14), archivers (23), astro (117), audio (493), benchmarks (5), biology (35), cad (52), chinese (124), comms (103), converters (13), databases (241), deskutils (495), devel (760), dns (9), editors (323), emulators (111), finance (95), french (23), ftp (48), games (833), german (28), graphics (585), hebrew (9), hungarian (14), irc (39), japanese (314), java (85), korean (54), lang (100), mail (298), math (174), mbone (13), misc (565), multimedia (252), net (629), net-mgmt (45), news (41), palm (49), polish (16), portuguese (20), print (203), rookies (10), russian (27), science (63), security (158), shells (2), sysutils (430), ukrainian (9), vietnamese (7), www (791), x11 (541), x11- clocks (108), x11-fm (76), x11-fonts (44), x11-servers (10), x11-themes (19), x11-toolkits (670), x11-wm (204) Category ukrainian is referenced by misc (2) Category vietnamese is referenced by misc (1) Category www is referenced by archivers (1), astro (16), audio (7), benchmarks (1), biology (3), chinese (14), comms (8), databases (24), deskutils (32), devel (83), dns (3), editors (7), finance (20), french (3), ftp (3), games (16), graphics (18), japanese (44), java (6), korean (19), lang (4), mail (76), math (9), misc (33), net (60), net-mgmt (11), news (3), palm (3), portuguese (1), print (48), rookies (4), russian (2), security (22), sysutils (29), textproc (87), vietnamese (1), x11 (32), x11-clocks (4), x11-toolkits (20), x11-wm (10) Category x11 is referenced by accessibility (13), arabic (10), archivers (6), astro (66), audio (241), benchmarks (5), biology (19), cad (37), chinese (82), comms (41), converters (7), databases (63), deskutils (205), devel (217), dns (2), editors (183), emulators (85), finance (29), french (17), ftp (20), games (516), german (19), graphics (347), hebrew (7), hungarian (8), irc (26), japanese (252), java (75), korean (55), lang (54), mail (126), math (86), mbone (13), misc (347), multimedia (114), net (253), net-mgmt (13), news (14), palm (25), polish (11), portuguese (14), print (114), rookies (8), russian (19), science (30), security (49), shells (1), sysutils (219), textproc (94), ukrainian (6), vietnamese (9), www (122), x11-clocks (64), x11-fm (47), x11- fonts (50), x11-servers (10), x11-themes (19), x11-toolkits (309), x11-wm (156) Category x11-clocks is referenced by misc (1), x11 (2), x11-wm (2) Category x11-fm is referenced by archivers (1), astro (3), audio (3), deskutils (15), devel (2), editors (1), games (2), graphics (1), korean (1), mail (3), multimedia (2), net (7), security (1), sysutils (7), textproc (1), x11 (7), x11-clocks (4), x11-toolkits (1), x11-wm (2) Category x11-fonts is referenced by accessibility (29), arabic (20), archivers (11), astro (73), audio (324), benchmarks (7), biology (35), cad (50), chinese (102), comms (50), converters (9), databases (94), deskutils (264), devel (312), dns (3), editors (252), emulators (91), finance (29), french (29), ftp (33), games (598), german (30), graphics (446), hebrew (11), hungarian (17), irc (44), japanese (270), java (166), korean (68), lang (62), mail (143), math (98), mbone (13), misc (575), multimedia (164), net (347), net-mgmt (16), news (15), palm (30), polish (25), portuguese (28), print (126), rookies (9), russian (29), science (51), security (67), shells (2), sysutils (269), textproc (138), ukrainian (10), vietnamese (11), www (186), x11 (326), x11- clocks (65), x11-fm (60), x11-servers (12), x11-themes (19), x11-toolkits (445), x11-wm (189) Category x11-servers is referenced by emulators (2), x11 (3) Category x11-themes is referenced by no other category. Category x11-toolkits is referenced by accessibility (18), arabic (7), archivers (10), astro (65), audio (239), benchmarks (4), biology (29), cad (37), chinese (37), comms (37), converters (4), databases (82), deskutils (307), devel (242), dns (2), editors (197), emulators (25), finance (21), french (45), ftp (23), games (243), german (17), graphics (252), hebrew (2), hungarian (10), irc (25), japanese (94), java (84), korean (26), lang (32), mail (129), math (74), mbone (14), misc (243), multimedia (110), net (321), net-mgmt (15), news (15), palm (30), polish (13), portuguese (14), print (80), rookies (4), russian (12), science (47), security (61), shells (2), sysutils (202), textproc (90), ukrainian (3), vietnamese (1), www (137), x11 (222), x11-clocks (57), x11-fm (49), x11-fonts (5), x11-wm (77) Category x11-wm is referenced by astro (1), audio (6), deskutils (1), games (2), graphics (2), mail (1), misc (7), print (1), sysutils (8), x11 (15), x11- clocks (1), x11-fm (1), x11-toolkits (1) This is base on an old INDEX, but gives you a general idea what to look for. Be aware that specifiy build options to ports may change dependencies. -Oliver From owner-freebsd-ports@FreeBSD.ORG Sun May 2 07:35:47 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DADD216A4CE for ; Sun, 2 May 2004 07:35:47 -0700 (PDT) Received: from endif.cjb.net (65-101-229-205.dnvr.qwest.net [65.101.229.205]) by mx1.FreeBSD.org (Postfix) with SMTP id 3468443D48 for ; Sun, 2 May 2004 07:35:47 -0700 (PDT) (envelope-from end@endif.cjb.net) Received: (qmail 6236 invoked from network); 2 May 2004 14:35:46 -0000 Received: from localhost (127.0.0.1) by localhost with SMTP; 2 May 2004 14:35:46 -0000 Date: Sun, 2 May 2004 08:35:46 -0600 From: Robin Schoonover To: Kris Kennaway In-Reply-To: <6556B8F8-9BFB-11D8-9787-00306541AD3A@obsecurity.org> References: <20040501235333.GA84676@yashin.myname.mydomain> <20040502002248.1E0ED43D39@mx1.FreeBSD.org> <6556B8F8-9BFB-11D8-9787-00306541AD3A@obsecurity.org> X-Mailer: Sylpheed version 0.9.10claws (GTK+ 1.2.10; i386-portbld-freebsd5.2.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Message-Id: <20040502143547.3468443D48@mx1.FreeBSD.org> cc: ports@FreeBSD.org cc: Aleksandar Simic Subject: Re: Improving /usr/ports/Makefile ? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 May 2004 14:35:48 -0000 On Sat, 01 May 2004 22:41:44 -0700, Kris Kennaway wrote: > On May 1, 2004, at 5:22 PM, Robin Schoonover wrote: > > I'd rather have something like > > > > .for TCAT in ${SUBDIR} > > . if exists (${.CURDIR}/${TCAT}) > > _SUBDIR_C+= ${TCAT} > > . endif > > .endfor > > SUBDIR=${_SUBDIR_C} > > > > attached after all the SUBDIR lines instead because it adds less > > clutter > > to the actual SUBDIR listing, which makes it a little eaiser (IMO) to > > read. > > Are you sure this will actually do anything? Without referring to the > code I would expect bsd.port.subdir.mk to ignore (with warning) > categories that are listed but nonexistent. > You're right. Now it is even more worthless. :P The only use it has now that I can see is that make -V SUBDIR doesn't show nonexistant directories. (I don't think we need that very much.) -- Robin Schoonover (aka End) # /* And you'll never guess what the dog had */ # /* in its mouth... */ # --Larry Wall in stab.c from the perl source code From owner-freebsd-ports@FreeBSD.ORG Sun May 2 09:19:05 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F31516A4CE; Sun, 2 May 2004 09:19:05 -0700 (PDT) Received: from fillmore.dyndns.org (port-212-202-49-130.reverse.qsc.de [212.202.49.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B84B43D39; Sun, 2 May 2004 09:18:40 -0700 (PDT) (envelope-from eikemeier@fillmore-labs.com) Received: from [172.16.0.2] (helo=fillmore-labs.com) by fillmore.dyndns.org with esmtp (Exim 4.32; FreeBSD) id 1BKJfp-0008GU-2p; Sun, 02 May 2004 18:18:39 +0200 Message-ID: <40951F5C.1050709@fillmore-labs.com> Date: Sun, 02 May 2004 18:18:36 +0200 From: Oliver Eikemeier Organization: Fillmore Labs GmbH - http://www.fillmore-labs.com/ MIME-Version: 1.0 To: Aleksandar Simic References: <20040501235333.GA84676@yashin.myname.mydomain> <40943C5B.4040501@fillmore-labs.com> <20040502090242.GA85884@yashin.myname.mydomain> <4094D213.9030600@fillmore-labs.com> In-Reply-To: <4094D213.9030600@fillmore-labs.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: ports@FreeBSD.org cc: Kris Kennaway cc: Robin Schoonover Subject: New category `lingo'? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 May 2004 16:19:05 -0000 of Oliver Eikemeier wrote: > Aleksandar Simic wrote: > >> On Sun, May 02, 2004 at 02:10:03AM +0200, Oliver Eikemeier wrote: >> >>> Aleksandar Simic wrote: >>> >>>> Hello, >>>> >>> >>>> from time to time you see people asking on questions why is it that >>> >>> >>>> their 'make index' is failing after they cvsup-ed all but excluded >>>> some region specific ports directories, most commonly: >>>> >>>> arabic, chinese, hebrew, hungarian, japanese, korean, polish, >>>> portuguese, russian, ukrainian, vietnamese >>>> >>>> Could a check be added to see if the above directories, or any other >>>> 'undesirable' ones are non existant and if they are, that they should >>>> be ignored ? One thing that you can do though is to create a new category `lingo' which will host all ports that refer to an port of another language, and then leave out this category togehter with all other language ports. The might help category misc too, which has too many ports anyway. Since this seems to be an often requested feature, I can compile a list of ports the move if there is enough interest. -Oliver From owner-freebsd-ports@FreeBSD.ORG Sun May 2 10:00:38 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 593F516A4CF for ; Sun, 2 May 2004 10:00:38 -0700 (PDT) Received: from graf.pompo.net (graf.pompo.net [81.56.186.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0325143D39 for ; Sun, 2 May 2004 10:00:22 -0700 (PDT) (envelope-from thierry@pompo.net) Received: by graf.pompo.net (Postfix, from userid 1001) id BB2B47668; Sun, 2 May 2004 18:58:07 +0200 (CEST) Date: Sun, 2 May 2004 18:58:07 +0200 From: Thierry Thomas To: Liste FreeBSD-ports Message-ID: <20040502165807.GB39858@graf.pompo.net> Mail-Followup-To: Liste FreeBSD-ports , Timur Valiullin Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="UugvWAfsgieZRqgk" Content-Disposition: inline X-Face: (hRbQnK~Pt7$ct`!fupO(`y_WL4^-Iwn4@ly-.,[4xC4xc; y=\ipKMNm<1J>lv@PP~7Z<.t KjAnXLs: User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD 4.10-BETA i386 Organization: Kabbale Eros X-PGP: 0xC71405A2 cc: Timur Valiullin Subject: TORCS-1.2.2: testers needed. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 May 2004 17:00:38 -0000 --UugvWAfsgieZRqgk Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello, I have upgraded the port games/torcs to 1.2.2, but I have some problem to test it. The diff is available at . The full port is also available as a .tar.bz2. Thanks for your reviews. --=20 Th. Thomas. --UugvWAfsgieZRqgk Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAlSifc95pjMcUBaIRAriOAKCXL6ZLtIbcEVfI1Z7J3+QRtnnmrACg/wco IW588wiq0NBM59CKVda0seo= =yFVt -----END PGP SIGNATURE----- --UugvWAfsgieZRqgk-- From owner-freebsd-ports@FreeBSD.ORG Sun May 2 12:30:39 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A92516A4CE for ; Sun, 2 May 2004 12:30:39 -0700 (PDT) Received: from usgrant.trismegistus.net (wbar19.dal1-4.26.171.138.dal1.dsl-verizon.net [4.26.171.138]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C61F43D3F for ; Sun, 2 May 2004 12:30:38 -0700 (PDT) (envelope-from hermes@trismegistus.net) Received: from sherman (sherman.trismegistus.net [192.168.0.12]) by usgrant.trismegistus.net (Postfix) with ESMTP id 97FCB725 for ; Sun, 2 May 2004 14:30:37 -0500 (CDT) Date: Sun, 2 May 2004 14:30:37 -0500 (CDT) From: Hermes Trismegistus To: ports@freebsd.org Message-ID: <20040502142816.M30069@sherman.trismegistus.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: make index X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 May 2004 19:30:39 -0000 Just completed cvsup: [root@sherman ports]> make index Generating INDEX-5 - please wait..make_index: mftrace-1.0.29: no entry for /usr/ports/print/pfaedit J. Craig Woods UNIX/Linux Network/System Administration http://www.trismegistus.net/resume.htm Entropy requires no maintenance. From owner-freebsd-ports@FreeBSD.ORG Sun May 2 14:04:55 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CDCC816A4CE for ; Sun, 2 May 2004 14:04:55 -0700 (PDT) Received: from smtp.owt.com (smtp.owt.com [204.118.6.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 37EBE43D54 for ; Sun, 2 May 2004 14:04:55 -0700 (PDT) (envelope-from kstewart@owt.com) Received: from [207.41.94.233] (owt-207-41-94-233.owt.com [207.41.94.233]) by smtp.owt.com (8.12.8/8.12.8) with ESMTP id i42L4Rjw004545; Sun, 2 May 2004 14:04:27 -0700 From: Kent Stewart To: freebsd-ports@freebsd.org Date: Sun, 2 May 2004 14:04:53 -0700 User-Agent: KMail/1.6.2 References: <20040502142816.M30069@sherman.trismegistus.net> In-Reply-To: <20040502142816.M30069@sherman.trismegistus.net> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200405021404.53654.kstewart@owt.com> cc: Hermes Trismegistus Subject: Re: make index X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 May 2004 21:04:55 -0000 On Sunday 02 May 2004 12:30 pm, Hermes Trismegistus wrote: > Just completed cvsup: > > [root@sherman ports]> make index > Generating INDEX-5 - please wait..make_index: mftrace-1.0.29: no > entry for /usr/ports/print/pfaedit Something is out of date on your system because pfaedit has been called fontforge for about 33 hours. I would recvsup ports-all ,re-make index, and see if it disappears. Kent -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html From owner-freebsd-ports@FreeBSD.ORG Sun May 2 14:06:36 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F16716A4CE for ; Sun, 2 May 2004 14:06:36 -0700 (PDT) Received: from sirius.firepipe.net (sirius.firepipe.net [69.13.116.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2449043D2D for ; Sun, 2 May 2004 14:06:36 -0700 (PDT) (envelope-from will@csociety.org) Received: by sirius.firepipe.net (Postfix, from userid 1000) id 815B417DC2; Sun, 2 May 2004 16:06:35 -0500 (EST) Date: Sun, 2 May 2004 16:06:35 -0500 From: Will Andrews To: Oliver Eikemeier Message-ID: <20040502210635.GN34693@sirius.firepipe.net> Mail-Followup-To: Oliver Eikemeier , ports@FreeBSD.org References: <20040501235333.GA84676@yashin.myname.mydomain> <40943C5B.4040501@fillmore-labs.com> <20040502090242.GA85884@yashin.myname.mydomain> <4094D213.9030600@fillmore-labs.com> <40951F5C.1050709@fillmore-labs.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="grb+5QKeMfpTKipq" Content-Disposition: inline In-Reply-To: <40951F5C.1050709@fillmore-labs.com> User-Agent: Mutt/1.4.1i cc: ports@FreeBSD.org Subject: Re: New category `lingo'? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 May 2004 21:06:36 -0000 --grb+5QKeMfpTKipq Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, May 02, 2004 at 06:18:36PM +0200, Oliver Eikemeier wrote: > One thing that you can do though is to create a new category `lingo' which > will host all ports that refer to an port of another language, and then > leave out this category togehter with all other language ports. The might > help category misc too, which has too many ports anyway. >=20 > Since this seems to be an often requested feature, I can compile a list > of ports the move if there is enough interest. I don't think this is a good idea... we're always going to have some exceptions. We should simply require people to sync the whole tree... it's not that big of a deal to do this. regards, --=20 wca --grb+5QKeMfpTKipq Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQFAlWLaF47idPgWcsURAuOFAJ9NkGWaxj3rCzwl1pjzE1z2uHNqCACfcPgE WG6TVos+w7qzaweKHtydaXk= =2z9M -----END PGP SIGNATURE----- --grb+5QKeMfpTKipq-- From owner-freebsd-ports@FreeBSD.ORG Sun May 2 14:18:42 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2235916A4CE for ; Sun, 2 May 2004 14:18:42 -0700 (PDT) Received: from fillmore.dyndns.org (port-212-202-49-130.reverse.qsc.de [212.202.49.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB64443D41 for ; Sun, 2 May 2004 14:18:41 -0700 (PDT) (envelope-from eikemeier@fillmore-labs.com) Received: from [172.16.0.2] (helo=fillmore-labs.com) by fillmore.dyndns.org with esmtp (Exim 4.32; FreeBSD) id 1BKOMB-000ArP-BU; Sun, 02 May 2004 23:18:41 +0200 Message-ID: <409565AE.4020609@fillmore-labs.com> Date: Sun, 02 May 2004 23:18:38 +0200 From: Oliver Eikemeier Organization: Fillmore Labs GmbH - http://www.fillmore-labs.com/ MIME-Version: 1.0 To: Will Andrews References: <20040501235333.GA84676@yashin.myname.mydomain> <40943C5B.4040501@fillmore-labs.com> <20040502090242.GA85884@yashin.myname.mydomain> <4094D213.9030600@fillmore-labs.com> <40951F5C.1050709@fillmore-labs.com> <20040502210635.GN34693@sirius.firepipe.net> In-Reply-To: <20040502210635.GN34693@sirius.firepipe.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: ports@FreeBSD.org Subject: Re: New category `lingo'? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 May 2004 21:18:42 -0000 Will Andrews wrote: > On Sun, May 02, 2004 at 06:18:36PM +0200, Oliver Eikemeier wrote: > >>One thing that you can do though is to create a new category `lingo' which >>will host all ports that refer to an port of another language, and then >>leave out this category togehter with all other language ports. The might >>help category misc too, which has too many ports anyway. >> >>Since this seems to be an often requested feature, I can compile a list >>of ports the move if there is enough interest. > > I don't think this is a good idea... we're always going to have > some exceptions. We should simply require people to sync the > whole tree... it's not that big of a deal to do this. Anyway, it might make sense to move textproc/??-aspell, misc/koffice-i18n-?? and misc/kde3-i18n-??, maybe editors/openoffice-1.0- and www/frontpage-?? too. -Oliver From owner-freebsd-ports@FreeBSD.ORG Sun May 2 14:33:26 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 525E816A4CE for ; Sun, 2 May 2004 14:33:26 -0700 (PDT) Received: from graf.pompo.net (graf.pompo.net [81.56.186.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC1A343D2F for ; Sun, 2 May 2004 14:33:25 -0700 (PDT) (envelope-from thierry@pompo.net) Received: by graf.pompo.net (Postfix, from userid 1001) id 7B6DD7668; Sun, 2 May 2004 23:31:09 +0200 (CEST) Date: Sun, 2 May 2004 23:31:09 +0200 From: Thierry Thomas To: Liste FreeBSD-ports Message-ID: <20040502213109.GG39858@graf.pompo.net> Mail-Followup-To: Liste FreeBSD-ports , Timur Valiullin References: <20040502165807.GB39858@graf.pompo.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="BRE3mIcgqKzpedwo" Content-Disposition: inline In-Reply-To: <20040502165807.GB39858@graf.pompo.net> X-Face: (hRbQnK~Pt7$ct`!fupO(`y_WL4^-Iwn4@ly-.,[4xC4xc; y=\ipKMNm<1J>lv@PP~7Z<.t KjAnXLs: User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD 4.10-BETA i386 Organization: Kabbale Eros X-PGP: 0xC71405A2 cc: Timur Valiullin Subject: Re: TORCS-1.2.2: testers needed. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 May 2004 21:33:26 -0000 --BRE3mIcgqKzpedwo Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Le Dim 2 mai 04 =E0 18:58:07 +0200, Thierry Thomas =E9crivait=A0: > I have upgraded the port games/torcs to 1.2.2, but I have some problem > to test it. Please forget this request, the problem was with my configuration. --=20 Th. Thomas. --BRE3mIcgqKzpedwo Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAlWidc95pjMcUBaIRAgpmAKD3RT/gFsoOiWw3ashk+A6BzZwoRACgx3UQ eI8edgKY8yA5FhI60BZ3SgA= =g870 -----END PGP SIGNATURE----- --BRE3mIcgqKzpedwo-- From owner-freebsd-ports@FreeBSD.ORG Sun May 2 23:38:39 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2DB8716A4CF for ; Sun, 2 May 2004 23:38:39 -0700 (PDT) Received: from sakura.ninth-nine.com (sakura.ninth-nine.com [219.127.74.120]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99A3743D46 for ; Sun, 2 May 2004 23:38:38 -0700 (PDT) (envelope-from nork@FreeBSD.org) Received: from melfina.ninth-nine.com ([IPv6:2002:d312:f91e::1]) (authenticated bits=0) by sakura.ninth-nine.com (8.12.11/8.12.11/NinthNine) with ESMTP id i436cZGI048390 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 3 May 2004 15:38:36 +0900 (JST) (envelope-from nork@FreeBSD.org) Date: Mon, 3 May 2004 15:38:35 +0900 From: Norikatsu Shigemura To: Kent Stewart Message-Id: <20040503153835.1a5279e5.nork@FreeBSD.org> In-Reply-To: <200405021404.53654.kstewart@owt.com> References: <20040502142816.M30069@sherman.trismegistus.net> <200405021404.53654.kstewart@owt.com> X-Mailer: Sylpheed version 0.9.9-gtk2-20040229 (GTK+ 2.4.0; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: hermes@trismegistus.net cc: freebsd-ports@FreeBSD.org Subject: Re: make index X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 06:38:39 -0000 On Sun, 2 May 2004 14:04:53 -0700 Kent Stewart wrote: > > [root@sherman ports]> make index > > Generating INDEX-5 - please wait..make_index: mftrace-1.0.29: no > > entry for /usr/ports/print/pfaedit > Something is out of date on your system because pfaedit has been called > fontforge for about 33 hours. I would recvsup ports-all ,re-make index, > and see if it disappears. Yes, but no. I forgot to chase pfaedit -> fontforge. I'll change all ports depended on pfaedit. Please wait. From owner-freebsd-ports@FreeBSD.ORG Sun May 2 23:52:12 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60F3216A4CE for ; Sun, 2 May 2004 23:52:12 -0700 (PDT) Received: from mta4.rcsntx.swbell.net (mta4.rcsntx.swbell.net [151.164.30.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 04FD643D1D for ; Sun, 2 May 2004 23:52:12 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (62359567a4a1010c01e150fb4beae619@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128])i436qA4a017829; Mon, 3 May 2004 01:52:10 -0500 (CDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id E53E55183F; Sun, 2 May 2004 23:52:09 -0700 (PDT) Date: Sun, 2 May 2004 23:52:09 -0700 From: Kris Kennaway To: Pete Fritchman , freebsd-ports Message-ID: <20040503065209.GA92943@xor.obsecurity.org> References: <20040502050806.C12FB177CB@sirius.firepipe.net> <20040502070355.GA345@isis.wad.cz> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="azLHFNyN32YCQGCU" Content-Disposition: inline In-Reply-To: <20040502070355.GA345@isis.wad.cz> User-Agent: Mutt/1.4.2.1i Subject: Re: [PATCH] small speedups in Mk/bsd.port.mk X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 06:52:12 -0000 --azLHFNyN32YCQGCU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, May 02, 2004 at 09:03:55AM +0200, Roman Neuhauser wrote: > Hrmph, right, dot is just one of regexp metacharacters. > This version uses plain string comparisons in DISTINFO_SIZE_AWK and > DISTINFO_CKSUM_AWK. >=20 > Thanks again for testing! This would have taken weeks if I submitted > the patch right away. But that's why you should always test patches thoroughly before submitting them, right? ;-) Kris --azLHFNyN32YCQGCU Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD4DBQFAlewZWry0BWjoQKURAgQoAJ9a1xDfBngA1ghgLGogQ+KjPEYuNwCY25i7 gPLnaazGO9lx3LnJCzvYog== =e7ci -----END PGP SIGNATURE----- --azLHFNyN32YCQGCU-- From owner-freebsd-ports@FreeBSD.ORG Mon May 3 01:09:56 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4D5416A4CE for ; Mon, 3 May 2004 01:09:56 -0700 (PDT) Received: from smtp.dkm.cz (smtp.dkm.cz [62.24.64.34]) by mx1.FreeBSD.org (Postfix) with SMTP id 5D8F643D4C for ; Mon, 3 May 2004 01:09:55 -0700 (PDT) (envelope-from neuhauser@chello.cz) Received: (qmail 18068 invoked by uid 0); 3 May 2004 08:09:53 -0000 Received: from r3al16.mistral.cz (HELO isis.wad.cz) (213.220.229.16) by smtp.dkm.cz with SMTP; 3 May 2004 08:09:53 -0000 Received: by isis.wad.cz (Postfix, from userid 1001) id 816932FDA01; Mon, 3 May 2004 10:09:53 +0200 (CEST) Date: Mon, 3 May 2004 10:09:53 +0200 From: Roman Neuhauser To: Kris Kennaway Message-ID: <20040503080953.GA12341@isis.wad.cz> Mail-Followup-To: Kris Kennaway , Pete Fritchman , freebsd-ports References: <20040502050806.C12FB177CB@sirius.firepipe.net> <20040502070355.GA345@isis.wad.cz> <20040503065209.GA92943@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040503065209.GA92943@xor.obsecurity.org> User-Agent: Mutt/1.5.6i cc: Pete Fritchman cc: freebsd-ports Subject: Re: [PATCH] small speedups in Mk/bsd.port.mk X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 08:09:56 -0000 # kris@obsecurity.org / 2004-05-02 23:52:09 -0700: > On Sun, May 02, 2004 at 09:03:55AM +0200, Roman Neuhauser wrote: > > > Hrmph, right, dot is just one of regexp metacharacters. > > This version uses plain string comparisons in DISTINFO_SIZE_AWK and > > DISTINFO_CKSUM_AWK. > > > > Thanks again for testing! This would have taken weeks if I submitted > > the patch right away. > > But that's why you should always test patches thoroughly before > submitting them, right? ;-) Yes, and I didn't mean to imply anything except that dealing with portmgr@ is slow business. As I said, my box has cooling problems, e. g. it couldn't finish two consecutive builds of mod_php4 yesterday. Plus, testing can't prove absence of bugs, and I of course tested all changes, but missed some things, like the fact that there are more RE metacharacters than just the dot. That's what public testing is good for, right? :) BTW any progress with ports/40699? Average response time from portmgr@ 7 months, and it's been suspended ("the patch doesn't apply anymore"; no wonder two years after it's been submitted :) for more than month despite three new versions of the patch? -- If you cc me or remove the list(s) completely I'll most likely ignore your message. see http://www.eyrie.org./~eagle/faqs/questions.html From owner-freebsd-ports@FreeBSD.ORG Mon May 3 01:14:26 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F8B616A4CE for ; Mon, 3 May 2004 01:14:26 -0700 (PDT) Received: from mta4.rcsntx.swbell.net (mta4.rcsntx.swbell.net [151.164.30.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0002D43D39 for ; Mon, 3 May 2004 01:14:25 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (0f919c03bdf29ef3be16d1b6e629d930@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128])i438EO4a000235; Mon, 3 May 2004 03:14:24 -0500 (CDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 699F051FCA; Mon, 3 May 2004 01:14:23 -0700 (PDT) Date: Mon, 3 May 2004 01:14:23 -0700 From: Kris Kennaway To: Kris Kennaway , Pete Fritchman , freebsd-ports Message-ID: <20040503081423.GA99522@xor.obsecurity.org> References: <20040502050806.C12FB177CB@sirius.firepipe.net> <20040502070355.GA345@isis.wad.cz> <20040503065209.GA92943@xor.obsecurity.org> <20040503080953.GA12341@isis.wad.cz> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="5mCyUwZo2JvN/JJP" Content-Disposition: inline In-Reply-To: <20040503080953.GA12341@isis.wad.cz> User-Agent: Mutt/1.4.2.1i Subject: Re: [PATCH] small speedups in Mk/bsd.port.mk X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 08:14:26 -0000 --5mCyUwZo2JvN/JJP Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, May 03, 2004 at 10:09:53AM +0200, Roman Neuhauser wrote: > # kris@obsecurity.org / 2004-05-02 23:52:09 -0700: > > On Sun, May 02, 2004 at 09:03:55AM +0200, Roman Neuhauser wrote: > >=20 > > > Hrmph, right, dot is just one of regexp metacharacters. > > > This version uses plain string comparisons in DISTINFO_SIZE_AWK a= nd > > > DISTINFO_CKSUM_AWK. > > >=20 > > > Thanks again for testing! This would have taken weeks if I submit= ted > > > the patch right away. > >=20 > > But that's why you should always test patches thoroughly before > > submitting them, right? ;-) >=20 > Yes, and I didn't mean to imply anything except that dealing with > portmgr@ is slow business. > =20 > As I said, my box has cooling problems, e. g. it couldn't finish two > consecutive builds of mod_php4 yesterday. Plus, testing can't prove > absence of bugs, and I of course tested all changes, but missed some > things, like the fact that there are more RE metacharacters than > just the dot. That's what public testing is good for, right? :) >=20 > BTW any progress with ports/40699? Average response time from > portmgr@ 7 months, and it's been suspended ("the patch doesn't apply > anymore"; no wonder two years after it's been submitted :) for more > than month despite three new versions of the patch? We'll be able to look at it once 4.10 is out the door. Kris --5mCyUwZo2JvN/JJP Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAlf9eWry0BWjoQKURArWwAJ9fC7bxlr9PaZH2L01Sj8ZcahPD0QCg0Pg7 X+4eHub+VoRd7f9L/8+qvY8= =klT6 -----END PGP SIGNATURE----- --5mCyUwZo2JvN/JJP-- From owner-freebsd-ports@FreeBSD.ORG Mon May 3 01:24:57 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 091BB16A4CE for ; Mon, 3 May 2004 01:24:57 -0700 (PDT) Received: from smtp.dkm.cz (smtp.dkm.cz [62.24.64.34]) by mx1.FreeBSD.org (Postfix) with SMTP id 1B9DD43D2F for ; Mon, 3 May 2004 01:24:56 -0700 (PDT) (envelope-from neuhauser@chello.cz) Received: (qmail 11728 invoked by uid 0); 3 May 2004 08:24:55 -0000 Received: from r3al16.mistral.cz (HELO isis.wad.cz) (213.220.229.16) by smtp.dkm.cz with SMTP; 3 May 2004 08:24:55 -0000 Received: by isis.wad.cz (Postfix, from userid 1001) id F112E2FDA01; Mon, 3 May 2004 10:24:54 +0200 (CEST) Date: Mon, 3 May 2004 10:24:54 +0200 From: Roman Neuhauser To: Kris Kennaway Message-ID: <20040503082454.GB12341@isis.wad.cz> Mail-Followup-To: Kris Kennaway , Pete Fritchman , freebsd-ports References: <20040502050806.C12FB177CB@sirius.firepipe.net> <20040502070355.GA345@isis.wad.cz> <20040503065209.GA92943@xor.obsecurity.org> <20040503080953.GA12341@isis.wad.cz> <20040503081423.GA99522@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040503081423.GA99522@xor.obsecurity.org> User-Agent: Mutt/1.5.6i cc: Pete Fritchman cc: freebsd-ports Subject: Re: [PATCH] small speedups in Mk/bsd.port.mk X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 08:24:57 -0000 # kris@obsecurity.org / 2004-05-03 01:14:23 -0700: > On Mon, May 03, 2004 at 10:09:53AM +0200, Roman Neuhauser wrote: > > BTW any progress with ports/40699? > > We'll be able to look at it once 4.10 is out the door. Great, thanks! -- If you cc me or remove the list(s) completely I'll most likely ignore your message. see http://www.eyrie.org./~eagle/faqs/questions.html From owner-freebsd-ports@FreeBSD.ORG Mon May 3 05:20:25 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD2AD16A4CE for ; Mon, 3 May 2004 05:20:25 -0700 (PDT) Received: from atlas.informatik.rwth-aachen.de (atlas.informatik.RWTH-Aachen.DE [137.226.194.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87FB643D49 for ; Mon, 3 May 2004 05:20:24 -0700 (PDT) (envelope-from stolz@i2.informatik.rwth-aachen.de) Received: from menelaos.informatik.rwth-aachen.de (menelaos.informatik.RWTH-Aachen.DE [137.226.194.73]) 8.11.1-0.5-michaelw-20030918) with ESMTP id i43CKN412849 for ; Mon, 3 May 2004 14:20:23 +0200 Received: (from stolz@localhost)i43CKNJF030356 for ports@freebsd.org; Mon, 3 May 2004 14:20:23 +0200 (CEST) (envelope-from stolz) Date: Mon, 3 May 2004 14:20:23 +0200 From: Volker Stolz To: ports@freebsd.org Message-ID: <20040503122023.GF27940@i2.informatik.rwth-aachen.de> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline Content-Transfer-Encoding: 8bit X-PGP-Key: finger vs@foldr.org X-PGP-Id: 0x3FD1B6B5 User-Agent: Mutt/1.5.4i Subject: USE_QT_VER after including bsd.port.pre.mk? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 12:20:25 -0000 For one of my ports, portlint now complaints: FATAL: Makefile [61]: USE_QT_VER is set after including bsd.port.pre.mk. I'm really at a loss on how to fix this, since USE_QT_VER depends on OPTIONS in my case. Is there something like an approved workaround? E.g. splitting this in master/slave(s)? Volker -- http://www-i2.informatik.rwth-aachen.de/stolz/ *** PGP *** S/MIME Neu! Ändern Sie den Anfangstag Ihrer Woche From owner-freebsd-ports@FreeBSD.ORG Mon May 3 05:45:05 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0508E16A4CE; Mon, 3 May 2004 05:45:05 -0700 (PDT) Received: from fillmore.dyndns.org (port-212-202-49-130.reverse.qsc.de [212.202.49.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id B9C4643D5C; Mon, 3 May 2004 05:45:04 -0700 (PDT) (envelope-from eikemeier@fillmore-labs.com) Received: from [172.16.0.2] (helo=fillmore-labs.com) by fillmore.dyndns.org with esmtp (Exim 4.32; FreeBSD) id 1BKcof-00042t-Hp; Mon, 03 May 2004 14:45:04 +0200 Message-ID: <40963ECD.6030901@fillmore-labs.com> Date: Mon, 03 May 2004 14:45:01 +0200 From: Oliver Eikemeier Organization: Fillmore Labs GmbH - http://www.fillmore-labs.com/ MIME-Version: 1.0 To: Volker Stolz References: <20040503122023.GF27940@i2.informatik.rwth-aachen.de> In-Reply-To: <20040503122023.GF27940@i2.informatik.rwth-aachen.de> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: ports@freebsd.org Subject: Re: USE_QT_VER after including bsd.port.pre.mk? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 12:45:05 -0000 Volker Stolz wrote: > For one of my ports, portlint now complaints: > FATAL: Makefile [61]: USE_QT_VER is set after including bsd.port.pre.mk. > > I'm really at a loss on how to fix this, since USE_QT_VER depends on > OPTIONS in my case. Is there something like an approved workaround? > E.g. splitting this in master/slave(s)? A fix would be son-of-PR 64233, but currently that's far behind in my queue, because it's absolutely no fun to work on it. From owner-freebsd-ports@FreeBSD.ORG Mon May 3 06:24:23 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A38316A4CE for ; Mon, 3 May 2004 06:24:23 -0700 (PDT) Received: from mail1.atl.registeredsite.com (mail1.atl.registeredsite.com [64.224.219.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 229AB43D62 for ; Mon, 3 May 2004 06:24:23 -0700 (PDT) (envelope-from ask-reply@kiwifilm.com) Received: from kiwifilm.com (kiwifilm.com [216.122.250.15]) i43DOMcp016707 for ; Mon, 3 May 2004 13:24:22 GMT Received: (from daemon@localhost) by kiwifilm.com (8.11.6/8.11.0) id i43DOMN00899 for ports@freebsd.org; Mon, 3 May 2004 21:24:22 +0800 (HKT) (envelope-from ask-reply@kiwifilm.com) Date: Mon, 3 May 2004 21:24:22 +0800 (HKT) From: ask-reply@kiwifilm.com Message-Id: <200405031324.i43DOMN00899@kiwifilm.com> To: ports@freebsd.org Subject: Thanks! We've received your request X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: ask-reply@kiwifilm.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 13:24:23 -0000 Thank you for your enquiry. This "autoreply" message is to say we have received your message and we'll get back to you shortly. Kiwi Film Limited 20A Loyong Court 212 Lockhart Road Wanchai Hong Kong http://kiwifilm.com Ph: +(852) 2851 0181 Fax: +(852) 2581 9761 From owner-freebsd-ports@FreeBSD.ORG Mon May 3 06:41:24 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB1ED16A4CE; Mon, 3 May 2004 06:41:24 -0700 (PDT) Received: from fillmore.dyndns.org (port-212-202-49-130.reverse.qsc.de [212.202.49.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 98CB943D4C; Mon, 3 May 2004 06:41:24 -0700 (PDT) (envelope-from eikemeier@fillmore-labs.com) Received: from [172.16.0.2] (helo=fillmore-labs.com) by fillmore.dyndns.org with esmtp (Exim 4.32; FreeBSD) id 1BKdhB-0004Jt-OK; Mon, 03 May 2004 15:41:23 +0200 Message-ID: <40964C01.5080200@fillmore-labs.com> Date: Mon, 03 May 2004 15:41:21 +0200 From: Oliver Eikemeier Organization: Fillmore Labs GmbH - http://www.fillmore-labs.com/ MIME-Version: 1.0 To: chris@shagged.org, ports@FreeBSD.org References: <40905239.40400@fillmore-labs.com> In-Reply-To: <40905239.40400@fillmore-labs.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: mikeh@FreeBSD.org cc: dougb@FreeBSD.org Subject: FYI: OpenLDAP 2.0 is removed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 13:41:25 -0000 This breaks LDAP support of the following ports: chris@shagged.org: - mail/tpop3d ports@FreeBSD.org: - net/samba - net-mgmt/netsaint-plugins - security/cyrus-sasl I advise to use USE_OPENLDAP instead of depending on the openldap2x-client port directly. FWIIW, the removal of OpenLDAP 1.2 broke LDAP support of: dougb@FreeBSD.org: - mail/pine4 mikeh@FreeBSD.org: - mail/xfmail ports@FreeBSD.org: - www/mod_php3 -Oliver From owner-freebsd-ports@FreeBSD.ORG Mon May 3 06:56:52 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 03D5316A4CE for ; Mon, 3 May 2004 06:56:52 -0700 (PDT) Received: from c0mailgw02.prontomail.com (c0mailgwalt.prontomail.com [207.183.238.110]) by mx1.FreeBSD.org (Postfix) with ESMTP id A4BEB43D2F for ; Mon, 3 May 2004 06:56:51 -0700 (PDT) (envelope-from pmaloney@canoemail.com) Received: from c0web102 (c0mailgwalt.prontomail.com [207.183.238.110]) by c0mailgw02.prontomail.com (8.11.6/8.11.6) with SMTP id i43DupX28269 for ; Mon, 3 May 2004 06:56:51 -0700 X-Version: canoe 6.2.2329.0 From: pmaloney@canoemail.com Message-Id: <89A99D36114F2C54394C0B2D1FCDFA75@pmaloney.canoemail.com> Date: Mon, 3 May 2004 09:56:50 -0400 X-Priority: 3 Priority: Normal X-MSMail-Priority: Normal Content-Type: text/plain; charset=iso-8859-1 To: ports@FreeBSD.org X-Mailer: Web Based Pronto Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: A typo X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 13:56:52 -0000 To the Ports Keeper: I've notice a typo in the Hydra-2.2_1 port description on the following page: http://www.freebsd.org/cgi/ports.cgi?query=attack&stype=all&release=5.2-RELEASE%2Fi386 *********** hydra-2.2_1 Bruce Force Attack Utility working on multiple network services Maintained by: llevier@argosnet.com Description : Sources : Package : Changes : Download *********** Bruce force should read BRUTE force. Thanks for the corrections. Patrick Maloney Sign up today for your Free E-mail at: http://www.canoe.ca/CanoeMail From owner-freebsd-ports@FreeBSD.ORG Mon May 3 07:09:09 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BE4716A4CE for ; Mon, 3 May 2004 07:09:09 -0700 (PDT) Received: from mail-kv.alkar.net (mail-kv.alkar.net [195.248.176.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id C272A43D2D for ; Mon, 3 May 2004 07:09:08 -0700 (PDT) (envelope-from vasallia@ukr.net) Received: from 238-162.dialup.alkar.net ([212.86.238.162] helo=santinel.home.ua) by mail-kv.alkar.net with esmtp id 1BKe6y-000OIQ-UT for freebsd-ports@freebsd.org; Mon, 03 May 2004 17:08:01 +0300 Received: from anray by santinel.home.ua with local (Exim) id 1BKe6j-000J13-1J for ; Mon, 03 May 2004 17:07:45 +0300 To: freebsd-ports@freebsd.org Organization: Santinel From: Andrey Slusar Date: Mon, 03 May 2004 17:07:44 +0300 Message-ID: <86isfdwqmn.fsf@santinel.home.ua> User-Agent: Gnus/5.110003 (No Gnus v0.3) XEmacs/21.4 (Security Through Obscurity) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: nvidia-driver and freebsd5.2-CURRENT X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Andrey Slusar List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 14:09:09 -0000 Hello. I am install x11/nvidia-driver on freebsd 5.2-CURRENT. WITH_FREEBSD_AGP=yes and agp_load=YES. In /var/log/messgages: --8<---------------cut here---------------start------------->8--- May 2 10:32:15 santinel kernel: malloc() of "64" with the following non-sleepable locks held: May 2 10:32:15 santinel kernel: exclusive sleep mutex dev.mtx_api r = 0 (0xc1cb6c7c) locked @ /usr/ports/x11/nvidia-driver/work/NVIDIA-FreeBSD-x86-1.0-4365/src/nvidia_subr.c:753 May 2 10:32:15 santinel kernel: malloc() of "VM OBJECT" with the following non-sleepable locks held: May 2 10:32:15 santinel kernel: exclusive sleep mutex dev.mtx_api r = 0 (0xc1cb6c7c) locked @ /usr/ports/x11/nvidia-driver/work/NVIDIA-FreeBSD-x86-1.0-4365/src/nvidia_subr.c:753 May 2 10:37:53 santinel kernel: malloc() of "64" with the following non-sleepable locks held: May 2 10:37:53 santinel kernel: exclusive sleep mutex dev.mtx_api r = 0 (0xc1cb6c7c) locked @ /usr/ports/x11/nvidia-driver/work/NVIDIA-FreeBSD-x86-1.0-4365/src/nvidia_subr.c:753 May 2 10:37:53 santinel kernel: malloc() of "VM OBJECT" with the following non-sleepable locks held: May 2 10:37:53 santinel kernel: exclusive sleep mutex dev.mtx_api r = 0 (0xc1cb6c7c) locked @ /usr/ports/x11/nvidia-driver/work/NVIDIA-FreeBSD-x86-1.0-4365/src/nvidia_subr.c:753 May 2 10:38:20 santinel kernel: malloc() of "64" with the following non-sleepable locks held: May 2 10:38:20 santinel kernel: exclusive sleep mutex dev.mtx_api r = 0 (0xc1cb6c7c) locked @ /usr/ports/x11/nvidia-driver/work/NVIDIA-FreeBSD-x86-1.0-4365/src/nvidia_subr.c:753 May 2 10:38:20 santinel kernel: malloc() of "VM OBJECT" with the following non-sleepable locks held: --8<---------------cut here---------------end--------------->8--- If WITH_FREEBSD_AGP not enable, XFree is not start. Why? --anray From owner-freebsd-ports@FreeBSD.ORG Mon May 3 07:23:22 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 21FF316A4CE for ; Mon, 3 May 2004 07:23:22 -0700 (PDT) Received: from rwcrmhc13.comcast.net (rwcrmhc13.comcast.net [204.127.198.39]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8901F43D45 for ; Mon, 3 May 2004 07:23:20 -0700 (PDT) (envelope-from DougB@dougbarton.net) Received: from dougbarton.net (dhcp-9-152.ripemtg.ripe.net[193.0.9.152]) by comcast.net (rwcrmhc13) with ESMTP id <2004050314231801500hap6le> (Authid: domain_name_tsar); Mon, 3 May 2004 14:23:19 +0000 Message-ID: <409655D1.9000502@dougbarton.net> Date: Mon, 03 May 2004 16:23:13 +0200 From: Doug Barton User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.6) Gecko/20040113 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Oliver Eikemeier References: <40905239.40400@fillmore-labs.com> <40964C01.5080200@fillmore-labs.com> In-Reply-To: <40964C01.5080200@fillmore-labs.com> X-Enigmail-Version: 0.83.6.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: Re: FYI: OpenLDAP 2.0 is removed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 14:23:22 -0000 Oliver Eikemeier wrote: > dougb@FreeBSD.org: > - mail/pine4 I have no access to an LDAP server, and therefore don't use it with Pine. If someone who does wants to provide patches, I'll be glad to give them a look. :) Doug -- If you're never wrong, you're not trying hard enough From owner-freebsd-ports@FreeBSD.ORG Mon May 3 08:28:40 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B5B9916A4CE; Mon, 3 May 2004 08:28:40 -0700 (PDT) Received: from meitner.wh.uni-dortmund.de (meitner.wh.uni-dortmund.de [129.217.129.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4119A43D31; Mon, 3 May 2004 08:28:40 -0700 (PDT) (envelope-from michaelnottebrock@gmx.net) Received: from lofi.dyndns.org (pc2-105.intern.meitner [10.3.12.105]) by meitner.wh.uni-dortmund.de (Postfix) with ESMTP id 478A6167522; Mon, 3 May 2004 17:28:39 +0200 (CEST) Received: from [192.168.8.4] (kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.10/8.12.10) with ESMTP id i43FSavo058999 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Mon, 3 May 2004 17:28:37 +0200 (CEST) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: freebsd-ports@freebsd.org Date: Mon, 3 May 2004 17:28:33 +0200 User-Agent: KMail/1.6.2 References: <20040503122023.GF27940@i2.informatik.rwth-aachen.de> <40963ECD.6030901@fillmore-labs.com> In-Reply-To: <40963ECD.6030901@fillmore-labs.com> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_kUmlABVL6OmrSlx"; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200405031728.36587.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new cc: Volker Stolz cc: Oliver Eikemeier Subject: Re: USE_QT_VER after including bsd.port.pre.mk? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 15:28:40 -0000 --Boundary-02=_kUmlABVL6OmrSlx Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Monday 03 May 2004 14:45, Oliver Eikemeier wrote: > Volker Stolz wrote: > > For one of my ports, portlint now complaints: > > FATAL: Makefile [61]: USE_QT_VER is set after including bsd.port.pre.mk. > > > > I'm really at a loss on how to fix this, since USE_QT_VER depends on > > OPTIONS in my case. Is there something like an approved workaround? > > E.g. splitting this in master/slave(s)? > > A fix would be son-of-PR 64233, but currently that's far behind in my > queue, because it's absolutely no fun to work on it. So why was portlint changed prematurely? Surely confusing port maintainers= =20 serves no purpose? =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --Boundary-02=_kUmlABVL6OmrSlx Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQBAlmUkXhc68WspdLARAuMmAKChnKXFKBhxkO0+OzjXyS9ERtrVbQCgmP+c XbDWxjBSjDQesD6MmZKjmEU= =vWs6 -----END PGP SIGNATURE----- --Boundary-02=_kUmlABVL6OmrSlx-- From owner-freebsd-ports@FreeBSD.ORG Mon May 3 08:43:51 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AEE5C16A4CE; Mon, 3 May 2004 08:43:51 -0700 (PDT) Received: from fillmore.dyndns.org (port-212-202-49-130.reverse.qsc.de [212.202.49.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 652C443D1F; Mon, 3 May 2004 08:43:51 -0700 (PDT) (envelope-from eikemeier@fillmore-labs.com) Received: from [172.16.0.2] (helo=fillmore-labs.com) by fillmore.dyndns.org with esmtp (Exim 4.32; FreeBSD) id 1BKfbg-0004a0-NA; Mon, 03 May 2004 17:43:50 +0200 Message-ID: <409668B4.30901@fillmore-labs.com> Date: Mon, 03 May 2004 17:43:48 +0200 From: Oliver Eikemeier Organization: Fillmore Labs GmbH - http://www.fillmore-labs.com/ MIME-Version: 1.0 To: Michael Nottebrock References: <20040503122023.GF27940@i2.informatik.rwth-aachen.de> <40963ECD.6030901@fillmore-labs.com> <200405031728.36587.michaelnottebrock@gmx.net> In-Reply-To: <200405031728.36587.michaelnottebrock@gmx.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: ports@freebsd.org cc: Volker Stolz Subject: Re: USE_QT_VER after including bsd.port.pre.mk? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 15:43:51 -0000 Michael Nottebrock wrote: > On Monday 03 May 2004 14:45, Oliver Eikemeier wrote: > >>Volker Stolz wrote: >> >>>For one of my ports, portlint now complaints: >>>FATAL: Makefile [61]: USE_QT_VER is set after including bsd.port.pre.mk. >>> >>>I'm really at a loss on how to fix this, since USE_QT_VER depends on >>>OPTIONS in my case. Is there something like an approved workaround? >>>E.g. splitting this in master/slave(s)? >> >>A fix would be son-of-PR 64233, but currently that's far behind in my >>queue, because it's absolutely no fun to work on it. > > So why was portlint changed prematurely? Surely confusing port maintainers > serves no purpose? It wasn't changed prematurely. You have to specify USE_QT_VER *before* including bsd.port.pre.mk, using OPTIONS or not. OTOH, you can only check OPTIONS *after* including bsd.port.pre.mk. IMHO both are bugs in bsd.port.mk, see also the discussion in PR 57496. As a workaround I (personally) refrain from using OPTIONS in my ports until the problems are fixed. -Oliver From owner-freebsd-ports@FreeBSD.ORG Mon May 3 08:51:05 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 65C1916A4CE; Mon, 3 May 2004 08:51:05 -0700 (PDT) Received: from meitner.wh.uni-dortmund.de (meitner.wh.uni-dortmund.de [129.217.129.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 171A343D6B; Mon, 3 May 2004 08:51:05 -0700 (PDT) (envelope-from michaelnottebrock@gmx.net) Received: from lofi.dyndns.org (pc2-105.intern.meitner [10.3.12.105]) by meitner.wh.uni-dortmund.de (Postfix) with ESMTP id 1B46B167522; Mon, 3 May 2004 17:51:04 +0200 (CEST) Received: from [192.168.8.4] (kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.10/8.12.10) with ESMTP id i43Fp1vo059398 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Mon, 3 May 2004 17:51:02 +0200 (CEST) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: Oliver Eikemeier Date: Mon, 3 May 2004 17:51:00 +0200 User-Agent: KMail/1.6.2 References: <20040503122023.GF27940@i2.informatik.rwth-aachen.de> <200405031728.36587.michaelnottebrock@gmx.net> <409668B4.30901@fillmore-labs.com> In-Reply-To: <409668B4.30901@fillmore-labs.com> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_kpmlA3p4R5kbGs+"; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200405031751.00676.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new cc: ports@freebsd.org cc: Volker Stolz Subject: Re: USE_QT_VER after including bsd.port.pre.mk? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 15:51:05 -0000 --Boundary-02=_kpmlA3p4R5kbGs+ Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Monday 03 May 2004 17:43, Oliver Eikemeier wrote: > Michael Nottebrock wrote: > > So why was portlint changed prematurely? Surely confusing port > > maintainers serves no purpose? > > It wasn't changed prematurely. You have to specify USE_QT_VER *before* > including bsd.port.pre.mk, using OPTIONS or not.=20 No, you don't. I've been sucessfully using USE_QT_VER in security/pinentry= =20 *after* for a long time. =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --Boundary-02=_kpmlA3p4R5kbGs+ Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQBAlmpkXhc68WspdLARAsAlAJ9vBl8/mUVwSSjHypXB0YJC8eDhyACeKEr9 mzRE+Qw8pqGs+qsz0Z7AWJw= =ZE/1 -----END PGP SIGNATURE----- --Boundary-02=_kpmlA3p4R5kbGs+-- From owner-freebsd-ports@FreeBSD.ORG Mon May 3 09:02:57 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A936516A4CE; Mon, 3 May 2004 09:02:57 -0700 (PDT) Received: from fillmore.dyndns.org (port-212-202-49-130.reverse.qsc.de [212.202.49.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6742B43D1D; Mon, 3 May 2004 09:02:57 -0700 (PDT) (envelope-from eikemeier@fillmore-labs.com) Received: from [172.16.0.2] (helo=fillmore-labs.com) by fillmore.dyndns.org with esmtp (Exim 4.32; FreeBSD) id 1BKfu9-0004gc-7O; Mon, 03 May 2004 18:02:56 +0200 Message-ID: <40966D2C.3050206@fillmore-labs.com> Date: Mon, 03 May 2004 18:02:52 +0200 From: Oliver Eikemeier Organization: Fillmore Labs GmbH - http://www.fillmore-labs.com/ MIME-Version: 1.0 To: Michael Nottebrock References: <20040503122023.GF27940@i2.informatik.rwth-aachen.de> <200405031728.36587.michaelnottebrock@gmx.net> <409668B4.30901@fillmore-labs.com> <200405031751.00676.michaelnottebrock@gmx.net> In-Reply-To: <200405031751.00676.michaelnottebrock@gmx.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: ports@freebsd.org cc: Volker Stolz Subject: Re: USE_QT_VER after including bsd.port.pre.mk? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 16:02:57 -0000 Michael Nottebrock wrote: > On Monday 03 May 2004 17:43, Oliver Eikemeier wrote: > >>Michael Nottebrock wrote: > > >>>So why was portlint changed prematurely? Surely confusing port >>>maintainers serves no purpose? >> >>It wasn't changed prematurely. You have to specify USE_QT_VER *before* >>including bsd.port.pre.mk, using OPTIONS or not. > > No, you don't. I've been sucessfully using USE_QT_VER in security/pinentry > *after* for a long time. I'm impressed. From owner-freebsd-ports@FreeBSD.ORG Mon May 3 09:20:59 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2201616A4CF; Mon, 3 May 2004 09:20:59 -0700 (PDT) Received: from meitner.wh.uni-dortmund.de (meitner.wh.uni-dortmund.de [129.217.129.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id A90D243D5A; Mon, 3 May 2004 09:20:58 -0700 (PDT) (envelope-from michaelnottebrock@gmx.net) Received: from lofi.dyndns.org (pc2-105.intern.meitner [10.3.12.105]) by meitner.wh.uni-dortmund.de (Postfix) with ESMTP id 0CCCF16778E; Mon, 3 May 2004 18:20:57 +0200 (CEST) Received: from [192.168.8.4] (kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.10/8.12.10) with ESMTP id i43GKtvo060046 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Mon, 3 May 2004 18:20:56 +0200 (CEST) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: Oliver Eikemeier Date: Mon, 3 May 2004 18:20:55 +0200 User-Agent: KMail/1.6.2 References: <20040503122023.GF27940@i2.informatik.rwth-aachen.de> <409668B4.30901@fillmore-labs.com> <200405031751.00676.michaelnottebrock@gmx.net> In-Reply-To: <200405031751.00676.michaelnottebrock@gmx.net> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_nFnlAJkUrAOcw/b"; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200405031820.55622.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new cc: ports@freebsd.org cc: Volker Stolz Subject: Re: USE_QT_VER after including bsd.port.pre.mk? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 16:20:59 -0000 --Boundary-02=_nFnlAJkUrAOcw/b Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Monday 03 May 2004 17:51, Michael Nottebrock wrote: > On Monday 03 May 2004 17:43, Oliver Eikemeier wrote: > > Michael Nottebrock wrote: > > > So why was portlint changed prematurely? Surely confusing port > > > maintainers serves no purpose? > > > > It wasn't changed prematurely. You have to specify USE_QT_VER *before* > > including bsd.port.pre.mk, using OPTIONS or not. > > No, you don't. I've been sucessfully using USE_QT_VER in security/pinentry > *after* for a long time. =2E..at least this _used_ to work when I made the port, it doesn't anymore.= :-/ =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --Boundary-02=_nFnlAJkUrAOcw/b Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQBAlnFnXhc68WspdLARAkLqAJ0athSMhqz2zay9Cw6OZ7TPYN5cgACgg5QN Uuv7YXoqe27nLTJmoHbnbxg= =3u1j -----END PGP SIGNATURE----- --Boundary-02=_nFnlAJkUrAOcw/b-- From owner-freebsd-ports@FreeBSD.ORG Mon May 3 09:22:21 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BBF5016A4CE; Mon, 3 May 2004 09:22:21 -0700 (PDT) Received: from hermes.webtent.net (hermes.webtent.net [192.216.106.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0215843D41; Mon, 3 May 2004 09:22:21 -0700 (PDT) (envelope-from robert@webtent.com) Received: from [192.168.1.11] (webtent.org [198.79.127.235]) by hermes.webtent.net (8.10.2/8.10.2) with ESMTP id i43GMCR04436; Mon, 3 May 2004 12:22:12 -0400 From: Robert Fitzpatrick To: FreeBSD Ports Content-Type: text/plain Organization: WebTent Networking, Inc. Message-Id: <1083601378.5252.6.camel@columbus> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Mon, 03 May 2004 12:22:59 -0400 Content-Transfer-Encoding: 7bit cc: nectar@freebsd.org Subject: Kerberized services after Heimdal port install X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 16:22:21 -0000 I did the port install of Heimdal-0.6 and now find my /usr/bin/login and /usr/bin/su are no longer present. Getting an error when trying to login on the FreeBSD 5.2.1 box because it cannot find the /usr/bin/login. I did a symbolic link to /usr/local/bin/login and that fix it. Also, startup scripts, such as amavisd.sh, is prompting for a Kerberos password. I assume this is because the port installed Kerberized versions of these files including 'su'. Is there are way to get back the non-Kerberized version for use with startup scripts, etc? How can I get the startup script for amavisd-new, for instance, to not prompt for a Kerberos password when starting? Or is there some other way I should handle this? -- Robert From owner-freebsd-ports@FreeBSD.ORG Mon May 3 09:31:24 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AFD5E16A4CE; Mon, 3 May 2004 09:31:24 -0700 (PDT) Received: from fillmore.dyndns.org (port-212-202-49-130.reverse.qsc.de [212.202.49.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 66FF443D1D; Mon, 3 May 2004 09:31:24 -0700 (PDT) (envelope-from eikemeier@fillmore-labs.com) Received: from [172.16.0.2] (helo=fillmore-labs.com) by fillmore.dyndns.org with esmtp (Exim 4.32; FreeBSD) id 1BKgLg-0004lm-N0; Mon, 03 May 2004 18:31:23 +0200 Message-ID: <409673D8.6080807@fillmore-labs.com> Date: Mon, 03 May 2004 18:31:20 +0200 From: Oliver Eikemeier Organization: Fillmore Labs GmbH - http://www.fillmore-labs.com/ MIME-Version: 1.0 To: Michael Nottebrock References: <20040503122023.GF27940@i2.informatik.rwth-aachen.de> <409668B4.30901@fillmore-labs.com> <200405031751.00676.michaelnottebrock@gmx.net> <200405031820.55622.michaelnottebrock@gmx.net> In-Reply-To: <200405031820.55622.michaelnottebrock@gmx.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: ports@freebsd.org cc: Volker Stolz Subject: Re: USE_QT_VER after including bsd.port.pre.mk? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 16:31:24 -0000 Michael Nottebrock wrote: > On Monday 03 May 2004 17:51, Michael Nottebrock wrote: > >>On Monday 03 May 2004 17:43, Oliver Eikemeier wrote: >> >>>Michael Nottebrock wrote: >>> >>>>So why was portlint changed prematurely? Surely confusing port >>>>maintainers serves no purpose? >>> >>>It wasn't changed prematurely. You have to specify USE_QT_VER *before* >>>including bsd.port.pre.mk, using OPTIONS or not. >> >>No, you don't. I've been sucessfully using USE_QT_VER in security/pinentry >>*after* for a long time. > > ...at least this _used_ to work when I made the port, it doesn't anymore. :-/ From owner-freebsd-ports@FreeBSD.ORG Mon May 3 10:17:40 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 009B216A4CE; Mon, 3 May 2004 10:17:39 -0700 (PDT) Received: from oxyd.caraldi.com (caraldi.com [195.137.249.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 824AB43D45; Mon, 3 May 2004 10:17:39 -0700 (PDT) (envelope-from jbq@anyware-tech.com) Received: from anyware12.anyware (unknown [217.112.237.100]) by oxyd.caraldi.com (Postfix) with ESMTP id C19E122C3; Mon, 3 May 2004 19:17:38 +0200 (CEST) Received: by anyware12.anyware (Postfix, from userid 615) id AA0F46640; Mon, 3 May 2004 19:17:38 +0200 (CEST) Date: Mon, 3 May 2004 19:17:38 +0200 From: Jean-Baptiste Quenot To: Kris Kennaway Message-ID: <20040503171736.GA68597@anyware12.anyware> Mail-Followup-To: Kris Kennaway , clement@FreeBSD.org, freebsd-ports References: <20040503063519.GA92747@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="+QahgC5+KEYLbs62" Content-Disposition: inline In-Reply-To: <20040503063519.GA92747@xor.obsecurity.org> User-Agent: Mutt/1.5.6i cc: clement@FreeBSD.org cc: freebsd-ports Subject: Re: [ports-i386@FreeBSD.org: efax-gtk-2.2.5 failed on i386 4] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 17:17:40 -0000 --+QahgC5+KEYLbs62 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable * Kris Kennaway: > FYI; can you please investigate and/or report to the developers? See http://www.freebsd.org/cgi/query-pr.cgi?pr=3D66212 Thanks in advance, --=20 Jean-Baptiste Quenot http://caraldi.com/jbq/ --+QahgC5+KEYLbs62 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAln6w9xx3BCMc9gsRAkeyAKCY90oHhyJo8QT4L6E8FDN5BCIdSwCeJga8 Cr1BFAD4NJ48M4KtzofOXCs= =GFlw -----END PGP SIGNATURE----- --+QahgC5+KEYLbs62-- From owner-freebsd-ports@FreeBSD.ORG Mon May 3 10:28:46 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EB0E716A4CE; Mon, 3 May 2004 10:28:46 -0700 (PDT) Received: from sakura.ninth-nine.com (sakura.ninth-nine.com [219.127.74.120]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A52343D4C; Mon, 3 May 2004 10:28:46 -0700 (PDT) (envelope-from nork@FreeBSD.org) Received: from nadesico.ninth-nine.com (nadesico.ninth-nine.com [219.127.74.122]) by sakura.ninth-nine.com (8.12.11/8.12.11/NinthNine) with SMTP id i43HSim7030287; Tue, 4 May 2004 02:28:45 +0900 (JST) (envelope-from nork@FreeBSD.org) Date: Tue, 4 May 2004 02:28:44 +0900 (JST) Message-Id: <200405031728.i43HSim7030287@sakura.ninth-nine.com> From: Norikatsu Shigemura To: clement@FreeBSD.org X-Mailer: Sylpheed version 0.9.9-gtk2-20040229 (GTK+ 2.4.1; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org cc: ume@FreeBSD.org Subject: rcNG-fy www/apache2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 17:28:47 -0000 Hi. I made a patch which rcNG-fy www/apache2. Please review my patch. Requested by: ume - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Index: Makefile =================================================================== RCS file: /home/ncvs/ports/www/apache2/Makefile,v retrieving revision 1.175 diff -u -r1.175 Makefile --- Makefile 20 Mar 2004 12:27:45 -0000 1.175 +++ Makefile 3 May 2004 17:25:03 -0000 @@ -9,6 +9,7 @@ PORTNAME= apache PORTVERSION= 2.0.49 +PORTREVISION= 1 CATEGORIES= www ipv6 MASTER_SITES= ${MASTER_SITE_APACHE_HTTPD} \ http://sheepkiller.nerim.net/ports/${PORTNAME}/:powerlogo @@ -49,6 +50,7 @@ USE_LIBTOOL_VER= 13 USE_PERL5= yes USE_REINPLACE= yes +USE_RC_SUBR= yes LIBTOOLFILES= configure CONFIGURE_ARGS= --prefix=${PREFIX_RELDEST} \ @@ -65,7 +67,8 @@ LOCALBASE="${LOCALBASE}" PREFIX_RELDEST= ${PREFIX:S,^${DESTDIR},,} -RC_SUB= -e 's,@@PREFIX@@,${PREFIX_RELDEST},g' +RC_SCRIPTS_SUB= PREFIX_RELDEST=${PREFIX_RELDEST} RC_SUBR=${RC_SUBR} + MAKE_ENV+= DESTDIR=${DESTDIR} EXPR_COMPAT=yes WITH_MPM?= prefork # or worker, perchild @@ -167,7 +170,8 @@ ALT="[Powered by FreeBSD]"> /dev/null && echo -n ' apache2' - ;; -stop) - [ -r /var/run/httpd.pid ] && ${PREFIX}/sbin/apachectl stop > /dev/null && echo -n ' apache2' - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - ;; -esac +# PROVIDE: apache +# REQUIRE: DAEMON +# BEFORE: LOGIN +# KEYWORD: FreeBSD shutdown -exit 0 +# Define these apache_* variables in one of these files: +# /etc/rc.conf +# /etc/rc.conf.local +# /etc/rc.conf.d/apache +# +# DO NOT CHANGE THESE DEFAULT VALUES HERE +# +apache_enable="NO" +apache_flags="" +apache_pidfile="/var/run/httpd.pid" + +. %%RC_SUBR%% + +name="apache" +rcvar=`set_rcvar` +command="%%PREFIX%%/sbin/httpd" + +load_rc_config $name + +pidfile="${apache_pidfile}" + +run_rc_command "$1" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - From owner-freebsd-ports@FreeBSD.ORG Mon May 3 10:32:51 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EDF1216A4CE; Mon, 3 May 2004 10:32:50 -0700 (PDT) Received: from sakura.ninth-nine.com (sakura.ninth-nine.com [219.127.74.120]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C36A43D1F; Mon, 3 May 2004 10:32:50 -0700 (PDT) (envelope-from nork@FreeBSD.org) Received: from nadesico.ninth-nine.com (nadesico.ninth-nine.com [219.127.74.122]) by sakura.ninth-nine.com (8.12.11/8.12.11/NinthNine) with SMTP id i43HWnPV030391; Tue, 4 May 2004 02:32:49 +0900 (JST) (envelope-from nork@FreeBSD.org) Date: Tue, 4 May 2004 02:32:49 +0900 (JST) Message-Id: <200405031732.i43HWnPV030391@sakura.ninth-nine.com> From: Norikatsu Shigemura To: clement@FreeBSD.org In-Reply-To: <200405031728.i43HSim7030287@sakura.ninth-nine.com> References: <200405031728.i43HSim7030287@sakura.ninth-nine.com> X-Mailer: Sylpheed version 0.9.9-gtk2-20040229 (GTK+ 2.4.1; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org cc: ume@FreeBSD.org Subject: Re: rcNG-fy www/apache2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 17:32:51 -0000 On Tue, 4 May 2004 02:28:44 +0900 (JST) Norikatsu Shigemura wrote: > I made a patch which rcNG-fy www/apache2. > Please review my patch. > Requested by: ume Oops, I missed. This port requires PREFIX_RELDEST instead of PREFIX. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Index: Makefile =================================================================== RCS file: /home/ncvs/ports/www/apache2/Makefile,v retrieving revision 1.175 diff -u -r1.175 Makefile --- Makefile 20 Mar 2004 12:27:45 -0000 1.175 +++ Makefile 3 May 2004 17:25:03 -0000 @@ -9,6 +9,7 @@ PORTNAME= apache PORTVERSION= 2.0.49 +PORTREVISION= 1 CATEGORIES= www ipv6 MASTER_SITES= ${MASTER_SITE_APACHE_HTTPD} \ http://sheepkiller.nerim.net/ports/${PORTNAME}/:powerlogo @@ -49,6 +50,7 @@ USE_LIBTOOL_VER= 13 USE_PERL5= yes USE_REINPLACE= yes +USE_RC_SUBR= yes LIBTOOLFILES= configure CONFIGURE_ARGS= --prefix=${PREFIX_RELDEST} \ @@ -65,7 +67,8 @@ LOCALBASE="${LOCALBASE}" PREFIX_RELDEST= ${PREFIX:S,^${DESTDIR},,} -RC_SUB= -e 's,@@PREFIX@@,${PREFIX_RELDEST},g' +RC_SCRIPTS_SUB= PREFIX_RELDEST=${PREFIX_RELDEST} RC_SUBR=${RC_SUBR} + MAKE_ENV+= DESTDIR=${DESTDIR} EXPR_COMPAT=yes WITH_MPM?= prefork # or worker, perchild @@ -167,7 +170,8 @@ ALT="[Powered by FreeBSD]"> /dev/null && echo -n ' apache2' - ;; -stop) - [ -r /var/run/httpd.pid ] && ${PREFIX}/sbin/apachectl stop > /dev/null && echo -n ' apache2' - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - ;; -esac +# PROVIDE: apache +# REQUIRE: DAEMON +# BEFORE: LOGIN +# KEYWORD: FreeBSD shutdown -exit 0 +# Define these apache_* variables in one of these files: +# /etc/rc.conf +# /etc/rc.conf.local +# /etc/rc.conf.d/apache +# +# DO NOT CHANGE THESE DEFAULT VALUES HERE +# +apache_enable="NO" +apache_flags="" +apache_pidfile="/var/run/httpd.pid" + +. %%RC_SUBR%% + +name="apache" +rcvar=`set_rcvar` +command="%%PREFIX_RELDEST%%/sbin/httpd" + +load_rc_config $name + +pidfile="${apache_pidfile}" + +run_rc_command "$1" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - From owner-freebsd-ports@FreeBSD.ORG Mon May 3 10:42:17 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA22916A4CE for ; Mon, 3 May 2004 10:42:17 -0700 (PDT) Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.131.111.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DCCE43D3F for ; Mon, 3 May 2004 10:42:17 -0700 (PDT) (envelope-from gerald@pfeifer.com) Received: from [128.131.111.60] (acrux [128.131.111.60]) by vexpert.dbai.tuwien.ac.at (Postfix) with ESMTP id 9687113787; Mon, 3 May 2004 19:42:10 +0200 (CEST) Date: Mon, 3 May 2004 19:42:13 +0200 (CEST) From: Gerald Pfeifer To: Etienne Robillard In-Reply-To: <40897F17.5060502@videotron.ca> Message-ID: References: <200402271110.i1RBArT5061902@freefall.freebsd.org> <20040324022723.GA4544@moo.holy.cow> <40798C91.1040708@videotron.ca> <40897F17.5060502@videotron.ca> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: Kris Kennaway cc: freebsd-ports@freebsd.org Subject: Re: ports/63427: [lang/gcc33] Disabling the Java frontend at compile time X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 17:42:17 -0000 On Fri, 23 Apr 2004, Etienne Robillard wrote: > This morning before going to work I've launched 'make build' for gcc > 2004-04-11. There were no makefile manipulation nor any cflags in the > way except the standards -O -g. Its quite a show-stopper, but since > we're at it, I'll just copy-paste the error msg below. Frankly, at this point I really think we should close this topic and not add such a knob. It adds an additional level of complexity, and the benefit really does not seem sufficient. I have suspended the Gnats entry for now. Gerald -- Gerald Pfeifer (Jerry) gerald@pfeifer.com http://www.pfeifer.com/gerald/ From owner-freebsd-ports@FreeBSD.ORG Mon May 3 10:50:17 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EFA7616A4CE; Mon, 3 May 2004 10:50:16 -0700 (PDT) Received: from meitner.wh.uni-dortmund.de (meitner.wh.uni-dortmund.de [129.217.129.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7CA4143D48; Mon, 3 May 2004 10:50:16 -0700 (PDT) (envelope-from michaelnottebrock@gmx.net) Received: from lofi.dyndns.org (pc2-105.intern.meitner [10.3.12.105]) by meitner.wh.uni-dortmund.de (Postfix) with ESMTP id 52F52167587; Mon, 3 May 2004 19:50:15 +0200 (CEST) Received: from [192.168.8.4] (kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.10/8.12.10) with ESMTP id i43HoDvo061354 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Mon, 3 May 2004 19:50:14 +0200 (CEST) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: Oliver Eikemeier Date: Mon, 3 May 2004 19:50:11 +0200 User-Agent: KMail/1.6.2 References: <20040503122023.GF27940@i2.informatik.rwth-aachen.de> <200405031820.55622.michaelnottebrock@gmx.net> <409673D8.6080807@fillmore-labs.com> In-Reply-To: <409673D8.6080807@fillmore-labs.com> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200405031950.13007.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new cc: ports@freebsd.org cc: Volker Stolz Subject: Re: USE_QT_VER after including bsd.port.pre.mk? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 17:50:17 -0000 On Monday 03 May 2004 18:31, Oliver Eikemeier wrote: > Michael Nottebrock wrote: > > On Monday 03 May 2004 17:51, Michael Nottebrock wrote: > >>On Monday 03 May 2004 17:43, Oliver Eikemeier wrote: > >>>Michael Nottebrock wrote: > >>>>So why was portlint changed prematurely? Surely confusing port > >>>>maintainers serves no purpose? > >>> > >>>It wasn't changed prematurely. You have to specify USE_QT_VER *before* > >>>including bsd.port.pre.mk, using OPTIONS or not. > >> > >>No, you don't. I've been sucessfully using USE_QT_VER in > >> security/pinentry *after* for a long time. > > > > ...at least this _used_ to work when I made the port, it doesn't anymore. > > :-/ > > *sigh* *fetches the pointy hat* Fun stuff nobody ever complained (except arved@ on IRC, heh). I'm going to turn pinentry into a masterport with slaves for the individual pinentry-s. -- ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org From owner-freebsd-ports@FreeBSD.ORG Mon May 3 11:00:59 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B42316A4D2 for ; Mon, 3 May 2004 11:00:59 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9D4043D53 for ; Mon, 3 May 2004 11:00:58 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.11/8.12.11) with ESMTP id i43I0w3I027525 for ; Mon, 3 May 2004 11:00:58 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i43I0vCX027514 for freebsd-ports@freebsd.org; Mon, 3 May 2004 11:00:57 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 3 May 2004 11:00:57 -0700 (PDT) Message-Id: <200405031800.i43I0vCX027514@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD ports list Subject: Current unassigned ports problem reports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 18:00:59 -0000 Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The problem is understood and a solution is being sought. f - feedback Further work requires additional information from the originator or the community - possibly confirmation of the effectiveness of a proposed solution. p - patched A patch has been committed, but some issues (MFC and / or confirmation from originator) are still open. s - suspended The problem is not being worked on, due to lack of information or resources. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested -- or when fixing the problem is abandoned. Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2004/02/29] ports/63545 ports-bugs Today's portupgrade of linux-flashplugin f [2004/04/24] ports/65929 ports-bugs BROKEN PORT UPDATE: games/fuhquake: to re o [2004/05/01] ports/66150 ports-bugs [PATCH] SECURITY UPDATE ports/www/phpbb f o [2004/05/03] ports/66201 ports-bugs Samba 3.0.3 don't show homedir share when o [2004/05/03] ports/66213 ports-bugs Unable to portupgade lha - Marked as FORB 5 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2001/02/21] ports/25272 ports-bugs Using lang/eperl as cgi/nph binary execut s [2002/04/07] ports/36846 ports-bugs fxtv 1.03 freezes the system when $LANG=d s [2002/12/17] ports/46338 ports-bugs security/cyrus-sasl 1.5.27_7 mysql_verify f [2003/01/31] ports/47768 ports-bugs print/ghostscript-afpl gv (3.5.8_1) can't s [2003/04/10] ports/50795 ports-bugs audio/solfege does not function s [2003/05/11] ports/52079 ports-bugs vmware3 hangs when nmdm(4) is used as COM s [2003/06/17] ports/53414 ports-bugs port security/amavis-perl open filedescri o [2003/08/15] kern/55617 ports-bugs Accessing an nsmb-mounted drive via a smb o [2003/09/21] ports/57056 ports-bugs libsm and libsmutil not installed -> fail o [2003/10/12] ports/57897 ports-bugs multimedia/mplayer: gmplayer doesn't work o [2003/12/21] ports/60479 ports-bugs x11-toolkits/p5-Tk800 f [2003/12/24] ports/60540 ports-bugs teamspeak is not litening on port 14534 f s [2003/12/29] ports/60700 ports-bugs squid cannot be built with transparent-ip o [2004/02/02] ports/62283 ports-bugs New Port: editors/jedit-devel f [2004/02/05] ports/62377 ports-bugs strace hangs when running programs from c o [2004/02/23] ports/63280 ports-bugs new port: x11-wm/fluxdocs-html, fluxbox d o [2004/02/23] ports/63282 ports-bugs [NEW PORT] x11-toolkits/gtk-qt-engine f [2004/02/24] ports/63314 ports-bugs fix shells/bash-completion hard coded pat f [2004/03/04] ports/63747 ports-bugs vmmon is not performing o [2004/03/12] ports/64181 ports-bugs MAINTAINER-UPDATE: pflogstats to 1.0.1 f [2004/03/14] ports/64269 ports-bugs The port py-wsdllib does not install f [2004/03/14] ports/64284 ports-bugs [PATCH] Fix audio/id3lib compilation with a [2004/03/26] ports/64753 ports-bugs ports/misc/pdmenu doesn't install anythin o [2004/03/28] ports/64838 ports-bugs new port: chinese/msttf o [2004/04/09] ports/65376 ports-bugs p5-XML-Xerces fails to compile o [2004/04/19] ports/65793 ports-bugs SEGV in isakmpd, esp when associating wit f [2004/04/19] ports/65799 ports-bugs Port update: audio/slimserver o [2004/04/20] ports/65815 ports-bugs Fixing broken pkg-plist and make it build o [2004/04/20] ports/65824 ports-bugs sysutils/LPRng and sysutils/LPRngTool - a o [2004/04/20] ports/65835 ports-bugs ports sciense/hdf and math/netcdf conflic o [2004/04/21] ports/65849 ports-bugs Can't create package from security/amavis o [2004/04/23] ports/65917 ports-bugs New port: sysutils/portmanager easy FreeB o [2004/04/25] ports/65976 ports-bugs [MAINTAINER] Update for samba-devel to 3. o [2004/04/26] ports/66003 ports-bugs security/cyrus-sasl - un-terminated quote o [2004/04/27] ports/66017 ports-bugs [PATCH] net/wmnet2: code cleanup for 64-b f [2004/04/29] ports/66080 ports-bugs New port: net/cnupm The BPF Traffic Colle o [2004/05/03] ports/66197 ports-bugs [MAINTAINER] mail/MailScanner: update to o [2004/05/03] ports/66205 ports-bugs editors/vim updated to p521 unbuildable o [2004/05/03] ports/66212 ports-bugs comms/efax-gtk fails to build on RELENG_4 39 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2000/07/08] kern/19782 ports-bugs mkisofs 1.12.1 (i386-unknown-freebsd4.0) s [2001/01/12] ports/24299 ports-bugs New port sysutils/tpconfig: configure the s [2001/10/02] ports/30993 ports-bugs xxgdb cannot open source file s [2002/03/01] ports/35459 ports-bugs portupgrade doesn't clean up dependencies o [2002/03/30] ports/36560 ports-bugs bug fix for the eperl package s [2002/04/17] ports/37186 ports-bugs Dbview contains an error, because of whic s [2002/06/18] ports/39476 ports-bugs profxp will run but when you fxp a file i s [2002/07/16] ports/40659 ports-bugs php3 and GD problem s [2002/09/29] ports/43484 ports-bugs Update port net/arla to 0.35.9 s [2002/10/07] ports/43771 ports-bugs LaTeX ports mixed between print and textp s [2002/11/29] ports/45843 ports-bugs sysutils/3dm - needs to detect and create s [2002/12/02] ports/45911 ports-bugs GEOM-related problem sysutils/diskcheckd s [2002/12/25] ports/46522 ports-bugs xtraceroute-0.9.0 fails with "OpenGL not s [2003/02/12] ports/48217 ports-bugs New Port: www/mod_frontpage13 and www/mod o [2003/02/18] ports/48426 ports-bugs [PATCH] digger-vgl does not support conso s [2003/03/02] ports/48832 ports-bugs New port: print/foomatic-db-hpijs o [2003/04/08] bin/50724 ports-bugs [PATCH] make /usr/sbin/pkg_fetch save ful f [2003/05/29] ports/52793 ports-bugs Samba 2.2.8a printing woes o [2003/06/02] ports/52859 ports-bugs Samba 2.2.8a (2.2.8)- broken support for o [2003/06/23] ports/53636 ports-bugs Suggestion for rc.d style startup scripts s [2003/07/02] ports/54048 ports-bugs wml fails o [2003/07/10] ports/54352 ports-bugs Conversion rc.d scripts to RC_NG s [2003/08/08] ports/55371 ports-bugs xfig dumps core (unaligned access), if US o [2003/08/23] ports/55896 ports-bugs [NEW PORT] www/mozplugger s [2003/08/28] ports/56091 ports-bugs hp220 driver for print/ghostscript-gnu do o [2003/09/09] ports/56658 ports-bugs Convert security/amavisd startup scripts s [2003/09/10] ports/56677 ports-bugs qmailanalog port does not install to corr s [2003/09/23] ports/57143 ports-bugs modules in flash shell broken s [2003/09/27] ports/57289 ports-bugs teamspeak-server port is broken in 3 ways o [2003/10/14] ports/58015 ports-bugs [NEW PORT] www/apache-forrest: A tool for o [2003/11/07] ports/59047 ports-bugs [NEW PORT] multimedia/freevo: Freevo is a o [2003/11/12] ports/59221 ports-bugs New port: news/fidogate-ds. A fresh branc s [2003/11/12] ports/59239 ports-bugs new port audio/tse3, a midi library s [2003/11/12] ports/59243 ports-bugs new port audio/anthem, a KDE midi sequenc o [2003/11/17] ports/59371 ports-bugs new port: net/smb4k, KDE SMB network brow o [2003/12/12] ports/60185 ports-bugs [New Port] www/w3-emacs21 WWW browser bas o [2003/12/18] ports/60361 ports-bugs [PATCH] Samba 2.2.8a (2.2.8)- broken supp o [2003/12/21] ports/60472 ports-bugs [New Port] devel/doxymacs Doxymacs is Dox o [2004/01/15] ports/61383 ports-bugs New port: net/t38modem, H.323 compliant f o [2004/01/15] ports/61384 ports-bugs NEW PORT: textproc/htmlize.el (turn emacs s [2004/01/17] ports/61471 ports-bugs Suggested mini-patch to ports/graphics/sa o [2004/01/18] ports/61525 ports-bugs Update port: net/linphone o [2004/01/22] ports/61745 ports-bugs New port: devel/syntax_tools-devel, unsta f [2004/01/26] ports/61943 ports-bugs New port: chinese/cce o [2004/01/27] ports/61987 ports-bugs new port: hungarian/hunspell version 0.9. o [2004/01/27] ports/62016 ports-bugs New port: graphics/demeter A C++ library o [2004/01/28] ports/62045 ports-bugs [NEW PORT] www/formication: Formular proc o [2004/01/29] ports/62078 ports-bugs print/ghostscript-gnu: apply patches to f f [2004/01/30] ports/62124 ports-bugs sysutils/xosview broken in -CURRENT f [2004/01/31] ports/62170 ports-bugs [NEW PORT] databases/oracle-enterprise da o [2004/01/31] ports/62175 ports-bugs New perl5 port for POE to manage child pr f [2004/01/31] ports/62180 ports-bugs new port submission: mail/mailfilter o [2004/02/02] ports/62256 ports-bugs New port: chinese/mozilla-sclp f [2004/02/02] ports/62286 ports-bugs New port: chinese/mozilla-tclp o [2004/02/02] ports/62297 ports-bugs New port: graphics/oglext A library for e o [2004/02/03] ports/62313 ports-bugs New port: audio/modplugplay and audio/lib o [2004/02/04] ports/62335 ports-bugs Updated port: add russian lang to nagios o [2004/02/05] ports/62393 ports-bugs New Port:mail/qmailmrtg7 o [2004/02/05] ports/62411 ports-bugs New port: graphics/smoke Vector graphics o [2004/02/06] ports/62455 ports-bugs New port: lang/ecl An embeddable (ANSI) C o [2004/02/06] ports/62465 ports-bugs New port: ftp/urlget - download manager ( o [2004/02/07] ports/62486 ports-bugs [NEW PORT] x11-wm/ion-2: Ion is a tiling a [2004/02/07] ports/62516 ports-bugs hostsenty port is unusable as packaged o [2004/02/08] ports/62546 ports-bugs [NEW PORT] devel/ja-bugzilla: Bug-trackin o [2004/02/08] ports/62557 ports-bugs [patch] WITH_POSTGRES -> WITH_POSTGRESQL o [2004/02/09] ports/62583 ports-bugs [NEW PORT] sysutils/usermatic: Scripts to o [2004/02/09] ports/62585 ports-bugs New port: net/mu-conference (Multi-User C o [2004/02/09] ports/62617 ports-bugs qpage port runs as wrong user by default o [2004/02/10] ports/62654 ports-bugs [new port] x11/expocity: A metacity spin- f [2004/02/10] ports/62660 ports-bugs [NEW PORT] databases/adodb-ext o [2004/02/11] ports/62680 ports-bugs [NEW PORT] print/cups-samba o [2004/02/12] ports/62763 ports-bugs [NEW PORT] www/plugger-plugins-hubbe o [2004/02/12] ports/62767 ports-bugs Update ports/Tools/scripts/mkptools/mkpsk o [2004/02/14] ports/62840 ports-bugs New Port: dns/bind9-sdb-ldap, bind9 patch o [2004/02/14] ports/62851 ports-bugs UPDATE PORT kwin_bluecurve: path to fix M o [2004/02/15] ports/62881 ports-bugs [NEW PORT] irc/kvirc-devel: "IRC client f o [2004/02/15] ports/62883 ports-bugs New port: net/bb-client (Big Brother moni o [2004/02/16] ports/62936 ports-bugs new port: devel/p5-ParseLex o [2004/02/17] ports/62960 ports-bugs new port: sysutils/mapchan, utility "mapc o [2004/02/17] ports/62979 ports-bugs New Port: devel/p5-Config-Objective Perl o [2004/02/18] ports/63024 ports-bugs New port: comms/pstngw, Simple H.323-PSTN o [2004/02/18] ports/63050 ports-bugs portsdb -uU after 02182004.2054 CVSUP get o [2004/02/20] ports/63120 ports-bugs New port: devel/slb_rf60 s [2004/02/20] ports/63145 ports-bugs move some themes from x11-tookits to x11- s [2004/02/20] ports/63146 ports-bugs move themes from x11-wm to x11-themes o [2004/02/20] ports/63153 ports-bugs New port: misc/phpgedview Online genealog o [2004/02/20] ports/63154 ports-bugs New Port: net/p5-Net-Rendezvous -- a set o [2004/02/21] ports/63176 ports-bugs [patch] WITH_PGSQL -> WITH_POSTGRESQL acr f [2004/02/22] ports/63241 ports-bugs Version bump for www/pglogd f [2004/02/23] ports/63279 ports-bugs New port:math/webwork used to create prob f [2004/02/24] ports/63324 ports-bugs port mail/smtpclient: smtpclient -c comma o [2004/02/25] ports/63349 ports-bugs New port: mail/openwebmail-current Open o [2004/02/25] ports/63354 ports-bugs bcwipe does not act successfully on raw d o [2004/02/25] ports/63357 ports-bugs [patch] www/linux-mozillafirefox port cre o [2004/02/26] ports/63401 ports-bugs [new port] irc/erc: an Emacs IRC client o [2004/02/27] ports/63465 ports-bugs [new port] devel/cedet: Collection of Ema o [2004/02/29] ports/63543 ports-bugs New port: chinese/phpbb-zh_TW o [2004/03/01] ports/63580 ports-bugs New port: net/ng_daphne - A netgraph modu o [2004/03/01] ports/63592 ports-bugs New port: sysutils/mmkeys - multimedia ke o [2004/03/01] ports/63611 ports-bugs new port java/eclipse-cdt o [2004/03/01] ports/63624 ports-bugs New port security/dazuko "interface for 3 f [2004/03/03] ports/63698 ports-bugs [PATCH] databases/postgresql73: update to o [2004/03/03] ports/63701 ports-bugs [NEW PORT] devel/monotone: A distributed o [2004/03/03] ports/63715 ports-bugs Maintainer update: astro/seti-applet (2.1 f [2004/03/04] ports/63767 ports-bugs [MAINTAINER] irc/eggdrop: Add SSL support f [2004/03/04] ports/63773 ports-bugs freevrrpd not working on 5.2.1-RELEASE-p1 o [2004/03/05] ports/63823 ports-bugs New port net/xbone-gui o [2004/03/06] ports/63856 ports-bugs update ports/www/p5-Apache-AuthCookie to f [2004/03/07] ports/63872 ports-bugs patch for games/fuhquake and games/quake2 o [2004/03/08] ports/63936 ports-bugs New port: security/aimsniff A perl script o [2004/03/09] ports/63979 ports-bugs new port: devel/linux-libunicode -- A uni o [2004/03/09] ports/63980 ports-bugs new port: graphics/linux-png12 - rpm of t f [2004/03/09] ports/63983 ports-bugs Maintainer update: database/mysql-gui (st f [2004/03/09] ports/63999 ports-bugs mod_perl2 port fails to build on 4.X syst f [2004/03/09] ports/64010 ports-bugs print/cups: cupsd paths wrong o [2004/03/10] ports/64041 ports-bugs new port net/rp-pppoe, user-space client o [2004/03/10] ports/64077 ports-bugs New port: audio/mt-daapd o [2004/03/11] ports/64102 ports-bugs New port: security/fakeroot simulate root o [2004/03/12] ports/64148 ports-bugs [NEW PORT] palm/synce-kde: SynCE KDE Util o [2004/03/13] ports/64202 ports-bugs New Port: x11/kde_api_reference_32, the k o [2004/03/14] ports/64264 ports-bugs New port: mail/libsrs - A SRS library and o [2004/03/14] ports/64265 ports-bugs New port: mail/libspf - A SPF library and o [2004/03/14] ports/64266 ports-bugs New port: mail/libspf_alt - An alternativ o [2004/03/14] ports/64274 ports-bugs [maintainer-update] mail/qmail-scanner : o [2004/03/14] ports/64277 ports-bugs [NEW PORT] russian/fidogateds: Russian Fi f [2004/03/14] ports/64279 ports-bugs New port: sysutils/autostart f [2004/03/15] ports/64307 ports-bugs [NEW PORT] databases/linux-unixODBC: RPM o [2004/03/15] ports/64308 ports-bugs [NEW PORT] graphics/linux-libmng: RPM of s [2004/03/18] ports/64425 ports-bugs [NEW PORT]: net/netatalk-devel o [2004/03/22] ports/64585 ports-bugs new port: devel/libpreps gui part stable o [2004/03/22] ports/64586 ports-bugs new port: devel/preps-devel-gui stable re f [2004/03/23] ports/64612 ports-bugs maintainer update of emulators/vba f [2004/03/23] ports/64613 ports-bugs Maintainer update of emulators/linux-geep o [2004/03/24] ports/64686 ports-bugs [NEW PORTS] x11-toolkits/qtc-qtsharp qtsh o [2004/03/24] ports/64687 ports-bugs [New Port] games/dotgnu-mahjongg/ -- QT# f [2004/03/26] ports/64744 ports-bugs [PATCH] devel/svk: fix dependencies and S o [2004/03/27] ports/64796 ports-bugs [NEW PORT] news/leafnode-devel: leafnode, f [2004/03/27] ports/64815 ports-bugs New port: Simple perl script that lists r o [2004/03/28] ports/64836 ports-bugs Ports: japanese/mutt-devel knob for --dis f [2004/03/29] ports/64898 ports-bugs new port: misc/heyu2 for X10 control o [2004/03/29] ports/64915 ports-bugs [NEW PORT] vietnamese/x-unikey f [2004/03/31] ports/65009 ports-bugs Maintainer update: lang/gforth (build fix o [2004/03/31] ports/65022 ports-bugs new port: www/parser (www templating lang o [2004/03/31] ports/65023 ports-bugs new port: www/parser-mysql (mysql driver o [2004/03/31] ports/65024 ports-bugs new port: www/parser-pgsql (postgresql dr o [2004/04/01] ports/65033 ports-bugs New port: net-mgmt/netmond network monito f [2004/04/02] ports/65067 ports-bugs [PATCH] textproc/xp: USE_JAVA, (NO)PORTDO o [2004/04/02] ports/65076 ports-bugs New Port: net/xpvm (A Graphical Console a o [2004/04/02] ports/65102 ports-bugs [NEW PORT] comms/bforce-kst-devel: Develo f [2004/04/02] ports/65108 ports-bugs Update port: devel/p5-POE-Component-EasyD o [2004/04/03] ports/65126 ports-bugs [New Port] sysutils/kdar: backup-utility o [2004/04/03] ports/65139 ports-bugs New port: devel/p5-POE-Component-Server-H o [2004/04/04] ports/65164 ports-bugs [NEW PORT] devel/cocktail o [2004/04/04] ports/65174 ports-bugs [UPDATED PORT] multimedia/mmpython to 0.4 f [2004/04/04] ports/65177 ports-bugs update irc/psybnc port Makefile (updated o [2004/04/04] ports/65184 ports-bugs [New Port] audio/xmms-weasel: XMMS-Weasel o [2004/04/05] ports/65197 ports-bugs bpft package changes modes of /usr/local/ o [2004/04/05] ports/65207 ports-bugs [NEW PORT FIX]vietnamese/xvnkb build fix o [2004/04/05] ports/65231 ports-bugs [Patch] port: converters/libutf-8 o [2004/04/05] ports/65238 ports-bugs [NEW-PORT] A port of samba-vscan for samb o [2004/04/06] ports/65250 ports-bugs New port: sysutils/dvdrtools Dvdrecord an o [2004/04/06] ports/65279 ports-bugs [NEW PORT] www/kazehakase: Kazehakase is o [2004/04/07] ports/65288 ports-bugs Update Port: lang/squeak3 - advance squea o [2004/04/07] ports/65309 ports-bugs pop-before-smtp 1.33 to 1.35 update -- in o [2004/04/07] ports/65310 ports-bugs security/SAVI-Perl: Submission of new por o [2004/04/08] ports/65318 ports-bugs New port: games/noegnud* an ASCII/2D/3D U o [2004/04/08] ports/65345 ports-bugs new port: www/amphetadesk o [2004/04/09] ports/65372 ports-bugs Update port: x11-wm/fvwm-themes to 0.6.2 f [2004/04/09] ports/65383 ports-bugs New port: ZendStudio o [2004/04/09] ports/65384 ports-bugs [PATCH] mail/dspam: fix pkg-plist; fix bu o [2004/04/09] ports/65390 ports-bugs restore helpful pkg-message to cups-base o [2004/04/09] ports/65391 ports-bugs correct "usually located in" directories f [2004/04/10] ports/65395 ports-bugs Hydra 3.1 port upgrade o [2004/04/10] ports/65396 ports-bugs New port: java/rxtx: Native interface to o [2004/04/10] ports/65423 ports-bugs [NEW PORT] net/p5-Gopher-Server: Backend o [2004/04/12] ports/65452 ports-bugs new port: sysutils/i8xxwd (Intel i8xx TCO o [2004/04/12] ports/65469 ports-bugs [NEW PORT] databases/p5-SQL-Translator: M o [2004/04/12] ports/65470 ports-bugs [PATCH] devel/p5-Module-CoreList: update o [2004/04/14] ports/65545 ports-bugs [NEW PORT] devel/p5-Proc-PID-File: A modu f [2004/04/15] ports/65583 ports-bugs gdb in this release is extremely old o [2004/04/15] ports/65594 ports-bugs [New Port] net/verlihub (Verlihub Direct f [2004/04/16] ports/65640 ports-bugs [NEW PORT] math/geonext: Interactive (dyn o [2004/04/17] ports/65681 ports-bugs [NEW PORT] www/formication: Formular proc o [2004/04/18] ports/65697 ports-bugs ports/net-mgmt/p5-SNMP upgrade to module o [2004/04/18] ports/65703 ports-bugs [patch]update devel/maven to 1.0-rc2 o [2004/04/18] ports/65709 ports-bugs [NEW PORT] www/p5-HTML-TokeParser-Simple: o [2004/04/18] ports/65710 ports-bugs [NEW PORT] www/p5-HTML-LinkExtractor: HTM o [2004/04/18] ports/65740 ports-bugs net/gq: GQ-1.0b1_1 + FBSD-5.2.1_RELEASE + o [2004/04/19] ports/65770 ports-bugs New port: / 2.24 o [2004/04/25] ports/65974 ports-bugs [maintainer-update] mail/qmail-scanner : o [2004/04/25] ports/65977 ports-bugs New port: comms/xdx TCP/IP DX-cluster cli o [2004/04/26] ports/65981 ports-bugs [NEW PORT] databases/p5-Class-DBI-Untaint o [2004/04/26] ports/65983 ports-bugs update: ports/security/drweb o [2004/04/26] ports/66005 ports-bugs New port: mail/p5-SpamAssassin-devel - po o [2004/04/27] ports/66026 ports-bugs New port: misc/gkrellm-reminder2 gkrellm o [2004/04/27] ports/66028 ports-bugs misc/gkx86info2 gkrellm2 plugin that show o [2004/04/27] ports/66031 ports-bugs [NEW PORT] science/mcstas - neutron ray-t o [2004/04/27] ports/66033 ports-bugs Update port: emulators/fceu 0.97.5 -> 0.9 o [2004/04/28] ports/66042 ports-bugs new port: www/suexec13 (standalone suexec o [2004/04/28] ports/66069 ports-bugs [MAINTAINER UPDATE] devel/antlr f [2004/04/29] ports/66090 ports-bugs [PATCH] news/nn: update to 6.6.5 o [2004/04/30] ports/66111 ports-bugs [Maintainer update] databases/mysql-conne f [2004/05/01] ports/66138 ports-bugs [maintainer-update] www/snownews to 1.5.2 o [2004/05/01] ports/66145 ports-bugs ports/mail/spamass-milter has unnecessary o [2004/05/01] ports/66146 ports-bugs ports/mail/spamass-milter should setsid() o [2004/05/01] ports/66147 ports-bugs ports/mail/spamass-milter startup script f [2004/05/01] ports/66149 ports-bugs [patch] astro/wmspaceweather 1.04 o [2004/05/01] ports/66154 ports-bugs [New port] net/phpldapadmin o [2004/05/02] ports/66164 ports-bugs new port: lang/qsa o [2004/05/02] ports/66168 ports-bugs [NEW PORT] www/mknmz-wwwoffle: WWWOFFLE c o [2004/05/02] ports/66173 ports-bugs [PATCH] mail/messagewall: [SUMMARIZE CHAN o [2004/05/02] ports/66176 ports-bugs [MAINTAINER] databases/p5-DBIx-SQLEngine: o [2004/05/02] ports/66177 ports-bugs [NEW PORT] net/libpcapnav: A libpcap wrap o [2004/05/02] ports/66178 ports-bugs [NEW PORT] net/libnetdude: A library for o [2004/05/02] ports/66179 ports-bugs port linux_base-debian cannot download ut o [2004/05/02] ports/66186 ports-bugs [PATCH] multimedia/totem: [Knob for GSTRE o [2004/05/02] ports/66187 ports-bugs [MAINTAINER] games/supertux: update to 0. o [2004/05/02] ports/66190 ports-bugs Alsaplayer-0.99.75 compile fails under FB o [2004/05/03] ports/66194 ports-bugs maintainer update of www/gallery to 1.4.3 o [2004/05/03] ports/66198 ports-bugs [PATCH] net/netdude: update to 0.4.5, tak o [2004/05/03] ports/66199 ports-bugs Update mail/dspam to 2.10.6 o [2004/05/03] ports/66202 ports-bugs [maintainer-update] security/vpnc o [2004/05/03] ports/66203 ports-bugs Update security/clamav-devel to latest sn o [2004/05/03] ports/66204 ports-bugs New port: GKrellM2 plugin that monitors a o [2004/05/03] ports/66206 ports-bugs [maintainer-update]: x11-fm/emelfm2 versi o [2004/05/03] ports/66208 ports-bugs Update port: lang/spidermonkey o [2004/05/03] ports/66210 ports-bugs [MAINTAINER] net/py23-BitTornado: set POR o [2004/05/03] ports/66214 ports-bugs add db4.2 option to postfix-current 253 problems total. From owner-freebsd-ports@FreeBSD.ORG Mon May 3 11:14:29 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7829116A4E2 for ; Mon, 3 May 2004 11:14:28 -0700 (PDT) Received: from atlas.informatik.rwth-aachen.de (atlas.informatik.RWTH-Aachen.DE [137.226.194.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A19443D45 for ; Mon, 3 May 2004 11:14:27 -0700 (PDT) (envelope-from stolz@i2.informatik.rwth-aachen.de) Received: from menelaos.informatik.rwth-aachen.de (menelaos.informatik.RWTH-Aachen.DE [137.226.194.73]) 8.11.1-0.5-michaelw-20030918) with ESMTP id i43IEQ424019 for ; Mon, 3 May 2004 20:14:26 +0200 Received: (from stolz@localhost)i43IEQkA053692 for ports@FreeBSD.org; Mon, 3 May 2004 20:14:26 +0200 (CEST) (envelope-from stolz) Date: Mon, 3 May 2004 20:14:26 +0200 From: Volker Stolz To: ports@FreeBSD.org Message-ID: <20040503181426.GB12673@i2.informatik.rwth-aachen.de> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline Content-Transfer-Encoding: 8bit X-PGP-Key: finger vs@foldr.org X-PGP-Id: 0x3FD1B6B5 User-Agent: Mutt/1.5.4i Subject: Failing cc -pipe nevertheless generates object file? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 18:14:29 -0000 A port compiles a program which, if build successfully, serves as a kind of configuration-option. Therefore it uses a separate CC and a LD-phase. If it doesn't build, the port simply uses a different set of options. Additionally, the port checks if the binary works. Now, if I compile with -pipe, and since the port links with a library which provides it's own main(), the following will happen: cc -pipe fails, but creates an object file, LD will happily provide main() from the library and it looks as though things worked! Adapted sample: work@menelaos [20:03:24]> rm foo work@menelaos [20:03:27]> cc -pipe -c -O -g -I/usr/local/include -DMACHTYPE_ -I src/ -I build/FreeBSD/ -I external/src/ progs/taucs_cilk_test.c -ofoo progs/taucs_cilk_test.c:8: cilk.h: No such file or directory progs/taucs_cilk_test.c:12: syntax error before `int' progs/taucs_cilk_test.c:17: syntax error before `int' progs/taucs_cilk_test.c: In function `main': progs/taucs_cilk_test.c:22: `spawn' undeclared (first use in this function) progs/taucs_cilk_test.c:22: (Each undeclared identifier is reported only once progs/taucs_cilk_test.c:22: for each function it appears in.) progs/taucs_cilk_test.c:22: syntax error before `f' progs/taucs_cilk_test.c:24: `sync' undeclared (first use in this function) work@menelaos [20:03:29]> file foo foo: ELF 32-bit LSB relocatable, Intel 80386, version 1 (FreeBSD), not stripped work@menelaos [20:03:30]> rm foo work@menelaos [20:03:35]> cc -c -O -g -I/usr/local/include -DMACHTYPE_ -I src/ -I build/FreeBSD/ -I external/src/ progs/taucs_cilk_test.c -ofoo progs/taucs_cilk_test.c:8: cilk.h: No such file or directory work@menelaos [20:03:40]> file foo foo: can't stat `foo' (No such file or directory). Is this expected behaviour? I'm currently working around this by adding " || rm foo" to the offending invocation so that LD will fail. -- http://www-i2.informatik.rwth-aachen.de/stolz/ *** PGP *** S/MIME Neu! Ändern Sie den Anfangstag Ihrer Woche From owner-freebsd-ports@FreeBSD.ORG Mon May 3 11:22:26 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49C4A16A4F2 for ; Mon, 3 May 2004 11:22:26 -0700 (PDT) Received: from mailhost.frm2.tum.de (mailhost.frm2.tum.de [129.187.179.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id C99D343D58 for ; Mon, 3 May 2004 11:22:22 -0700 (PDT) (envelope-from Joerg.Pulz@frm2.tum.de) Received: from localhost (mailhost.frm2.tum.de [129.187.179.12]) i43ILrfS007031; Mon, 3 May 2004 20:21:53 +0200 (CEST) (envelope-from jpulz@frm2.tum.de) Received: from hades.admin.frm2 (hades.admin.frm2 [172.25.1.10]) by mailhost.frm2.tum.de (8.12.10/8.12.10) with ESMTP id i43ILnSk007027 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Mon, 3 May 2004 20:21:49 +0200 (CEST) (envelope-from jpulz@frm2.tum.de) Received: from hades.admin.frm2 (localhost [127.0.0.1]) by hades.admin.frm2 (8.12.10/8.12.10) with ESMTP id i43ILnLo010589; Mon, 3 May 2004 20:21:49 +0200 (CEST) (envelope-from jpulz@frm2.tum.de) Received: (from jpulz@localhost) by hades.admin.frm2 (8.12.10/8.12.10/Submit) id i43ILmxV010588; Mon, 3 May 2004 20:21:48 +0200 (CEST) (envelope-from jpulz) Date: Mon, 3 May 2004 20:21:46 +0200 (CEST) From: Joerg Pulz To: Doug Barton In-Reply-To: <409655D1.9000502@dougbarton.net> Message-ID: <20040503201231.Q57999@hades.admin.frm2> References: <40905239.40400@fillmore-labs.com> <40964C01.5080200@fillmore-labs.com> <409655D1.9000502@dougbarton.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: at mailhost.frm2.tum.de cc: ports@freebsd.org cc: Oliver Eikemeier Subject: Re: FYI: OpenLDAP 2.0 is removed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 18:22:26 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Mon, 3 May 2004, Doug Barton wrote: > Oliver Eikemeier wrote: > > > dougb@FreeBSD.org: > > - mail/pine4 > > I have no access to an LDAP server, and therefore don't use it with > Pine. If someone who does wants to provide patches, I'll be glad to give > them a look. :) i used pine a very long time with OpenLDAP-2.1.x and use it since OpenLDAP-2.2.5 with the 2.2.x series (currently 2.2.10) build and run - without problems simply replace the BUILD_DEPENDS line (line 32 Makefile v 1.72) with USE_OPENLDAP=yes Joerg -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAlo28SPOsGF+KA+MRAg5LAJwJepK4e+Tv2M7LaVxgIDY5jsapkwCgnbGQ TasOJk2lya6bH/Fr9wnDWsM= =j1WZ -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Mon May 3 12:37:03 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2911016A4CE for ; Mon, 3 May 2004 12:37:03 -0700 (PDT) Received: from mail.seekingfire.com (coyote.seekingfire.com [24.72.10.212]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8776E43D5E for ; Mon, 3 May 2004 12:37:02 -0700 (PDT) (envelope-from tillman@seekingfire.com) Received: by mail.seekingfire.com (Postfix, from userid 500) id 7BE2028D; Mon, 3 May 2004 13:37:01 -0600 (CST) Date: Mon, 3 May 2004 13:37:01 -0600 From: Tillman Hodgson To: Heimdal Message-ID: <20040503193701.GG80676@seekingfire.com> References: <1083340545.13018.48.camel@columbus> <409288AC.2E7BB16B@saeab.se> <1083608221.5295.20.camel@columbus> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1083608221.5295.20.camel@columbus> X-Habeas-SWE-1: winter into spring X-Habeas-SWE-2: brightly anticipated X-Habeas-SWE-3: like Habeas SWE (tm) X-Habeas-SWE-4: Copyright 2002 Habeas (tm) X-Habeas-SWE-5: Sender Warranted Email (SWE) (tm). The sender of this X-Habeas-SWE-6: email in exchange for a license for this Habeas X-Habeas-SWE-7: warrant mark warrants that this is a Habeas Compliant X-Habeas-SWE-8: Message (HCM) and not spam. Please report use of this X-Habeas-SWE-9: mark in spam to . X-GPG-Key-ID: 828AFC7B X-GPG-Fingerprint: 5584 14BA C9EB 1524 0E68 F543 0F0A 7FBC 828A FC7B X-GPG-Key: http://www.seekingfire.com/gpg_key.asc X-Urban-Legend: There is lots of hidden information in headers User-Agent: Mutt/1.5.6i cc: FreeBSD-Ports Subject: Re: Login prompt when starting services after FreeBSD port install X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 19:37:03 -0000 On Mon, May 03, 2004 at 02:17:04PM -0400, Robert Fitzpatrick wrote: > On Fri, 2004-04-30 at 13:11, Thomas Nystrom wrote: > > Check which 'su' command the scripts are using! Probably they are trying > > to use an kerberized su and that one will try to get tickets for the new > > user. You probably want to use the original /usr/bin/su. > > > > Yes, this seems to be the problem. But since installing the FreeBSD port > of Heimdal, the /usr/bin/su is no longer there, nor others like > /usr/bin/login, etc. Do you know how I can get these back. I have posted > to the FreeBSD ports list this morning, but no answer as of yet. The > port seems to have installed Kerberized services in /usr/local/bin. I don't believe the FreeBSD security/heimdal shouldn't have removed any system files. I've been over the port Makefile, and I can't see anything that would be doing that ... the whole idea of installing them in /usr/local/ is to make sure they don't clobber the system files. However .... check the contents of your /etc/make.conf. If you've redefined the location of some of the "HOME" variables (like HEIMDAL_HOME), that might be causing a problem. -T -- Belief gets in the way of learning. - Robert Heinlein From owner-freebsd-ports@FreeBSD.ORG Mon May 3 12:47:08 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFA0F16A4CF for ; Mon, 3 May 2004 12:47:08 -0700 (PDT) Received: from mail.lovett.com (core.lovett.com [216.168.8.20]) by mx1.FreeBSD.org (Postfix) with ESMTP id A15DF43D58 for ; Mon, 3 May 2004 12:47:08 -0700 (PDT) (envelope-from ade@FreeBSD.org) Received: from ts46-02-qdr1249.mdfrd.or.charter.com ([66.169.242.225] helo=[192.168.1.101]) by mail.lovett.com with asmtp (Exim 4.30; FreeBSD) id 1BKjPA-0003qt-Hn; Mon, 03 May 2004 19:47:08 +0000 In-Reply-To: <20040501144552.GA30512@dragon.roe.ch> References: <20040428150137.GA74586@iib.unsam.edu.ar> <20040501144552.GA30512@dragon.roe.ch> Mime-Version: 1.0 (Apple Message framework v613) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Ade Lovett Date: Mon, 3 May 2004 12:47:09 -0700 To: Daniel Roethlisberger X-Mailer: Apple Mail (2.613) cc: FreeBSD Ports Subject: Re: autoconf/automake guru wanted [gnuplot-4.0 with patches] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 19:47:09 -0000 On May 01, 2004, at 07:45, Daniel Roethlisberger wrote: > However, I think there might be a bug in the automake17 port which > causes calls to `automake-1.7' to appear in generated Makefiles. Yup. Haven't tracked it down yet, but I'm in the midst of the infrastructural changes relating to autotools, rather than the ports themselves right now. I have one relatively large-sweeping patch in ports/66037 waiting for a 4-exp run (then fixes, and another). Next step after that is to kill off the "default" autoconf and automake, (without version suffix), moving all of them to version numbered setups (as has already been done with libtool), so that ports really do have to use the appropriate Makefile knobs, rather than relying on current behavior. Then, of course, after that, though this can run in parallel after 66037 is committed, is to migrate ports over to the latest and greatest (?!:) versions of libtool/autoconf/automake. Whilst there are a whole slew of backwards incompatibilities, certainly migrating anything from automake17->18, and autoconf257->259 should be relatively straightforward. -aDe From owner-freebsd-ports@FreeBSD.ORG Mon May 3 13:18:24 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0790E16A4CE; Mon, 3 May 2004 13:18:24 -0700 (PDT) Received: from hoemail2.firewall.lucent.com (hoemail2.lucent.com [192.11.226.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7CDE43D31; Mon, 3 May 2004 13:18:22 -0700 (PDT) (envelope-from rrajarajan@lucent.com) Received: from nj7460exch001h.wins.lucent.com (h135-17-42-36.lucent.com [135.17.42.36])ESMTP id i43KIFn27425; Mon, 3 May 2004 15:18:17 -0500 (CDT) Received: by nj7460exch001h.ho.lucent.com with Internet Mail Service (5.5.2657.72) id ; Mon, 3 May 2004 16:18:14 -0400 Message-ID: <1B8C2E08B21B8743A2B3AED07407DA76039F9AEF@nj7460exch002u.ho.lucent.com> From: "Rajamani, Rajarajan (Rajarajan)" To: "'obrien@FreeBSD.org'" Date: Mon, 3 May 2004 16:18:08 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2657.72) Content-Type: text/plain; charset="iso-8859-1" cc: "'ports@FreeBSD.org'" Subject: portupgrade failure for vim-6.2.521 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 20:18:24 -0000 I have vim-6.2.383 and am using portupgrade to upgrade to 6.2.251 and am getting the error given below. Is it due the space after prefix= ? Did anyone else see a problem similar to this ? Thanks, Rajarajan ------------------------------------ ===> Patching for vim-6.2.521 ===> Applying distribution patches for vim-6.2.521 ===> Applying FreeBSD patches for vim-6.2.521 ===> vim-6.2.521 depends on executable: pkg-config - found ===> vim-6.2.521 depends on shared library: iconv.3 - found ===> vim-6.2.521 depends on shared library: glib12.3 - found ===> vim-6.2.521 depends on shared library: gtk12.2 - found ===> Configuring for vim-6.2.521 cd testdir; make -f Makefile clean rm -rf *.out *.rej *.orig test.log tiny.vim small.vim mbyte.vim test.ok X* rm -f *.o objects/* core vim.core vim xxd/*.o rm -f xxd/xxd auto/osdef.h auto/pathdef.c auto/if_perl.c rm -f conftest* *~ auto/link.sed if test -d po; then cd po; make prefix= clean; fi make: don't know how to make clean. Stop *** Error code 2 Stop in /usr/ports/editors/vim/work/vim62/src. *** Error code 1 Stop in /usr/ports/editors/vim. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade86145.0 mak e ** Fix the problem and try again. ** Listing the failed packages (*:skipped / !:failed) ! editors/vim (vim-6.2.383) (unknown build error) ---> Packages processed: 0 done, 0 ignored, 0 skipped and 1 failed From owner-freebsd-ports@FreeBSD.ORG Mon May 3 13:42:54 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A33F16A4CE for ; Mon, 3 May 2004 13:42:54 -0700 (PDT) Received: from meitner.wh.uni-dortmund.de (meitner.wh.uni-dortmund.de [129.217.129.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id A792F43D5A for ; Mon, 3 May 2004 13:42:53 -0700 (PDT) (envelope-from michaelnottebrock@gmx.net) Received: from lofi.dyndns.org (pc2-105.intern.meitner [10.3.12.105]) by meitner.wh.uni-dortmund.de (Postfix) with ESMTP id 7BB9E1675B9 for ; Mon, 3 May 2004 22:42:52 +0200 (CEST) Received: from [192.168.8.4] (kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.10/8.12.10) with ESMTP id i43Kgpvo063734 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO) for ; Mon, 3 May 2004 22:42:52 +0200 (CEST) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: ports@freebsd.org Date: Mon, 3 May 2004 22:42:45 +0200 User-Agent: KMail/1.6.2 MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_K7qlAssNer1nORF"; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <200405032242.50902.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new Subject: Can't update png X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 20:42:54 -0000 --Boundary-02=_K7qlAssNer1nORF Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline =2D--> Upgrading 'png-1.2.5_3' to 'png-1.2.5_4' (graphics/png) =2D--> Building '/usr/ports/graphics/png' =3D=3D=3D> Cleaning for png-1.2.5_4 =3D=3D=3D> png-1.2.5_4 has known vulnerabilities: >> libpng denial-of-service. Reference:=20 >> Please update your ports tree and try again. *** Error code 1 If I read VuXML right, 1.2.5_4 should be okay - what's missing here? =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --Boundary-02=_K7qlAssNer1nORF Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQBAlq7KXhc68WspdLARAnlFAJsG6ru1+kjJk/Vc7rJnwcrthqWkqACcCm0u KIwvKwb0V1HTBkt1erWz92Y= =IiqD -----END PGP SIGNATURE----- --Boundary-02=_K7qlAssNer1nORF-- From owner-freebsd-ports@FreeBSD.ORG Mon May 3 13:44:56 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7333A16A4CE; Mon, 3 May 2004 13:44:56 -0700 (PDT) Received: from meitner.wh.uni-dortmund.de (meitner.wh.uni-dortmund.de [129.217.129.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BDE343D49; Mon, 3 May 2004 13:44:56 -0700 (PDT) (envelope-from michaelnottebrock@gmx.net) Received: from lofi.dyndns.org (pc2-105.intern.meitner [10.3.12.105]) by meitner.wh.uni-dortmund.de (Postfix) with ESMTP id 737001675B9; Mon, 3 May 2004 22:44:55 +0200 (CEST) Received: from [192.168.8.4] (kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.10/8.12.10) with ESMTP id i43Kirvo063761 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Mon, 3 May 2004 22:44:54 +0200 (CEST) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: freebsd-ports@freebsd.org Date: Mon, 3 May 2004 22:44:53 +0200 User-Agent: KMail/1.6.2 References: <1B8C2E08B21B8743A2B3AED07407DA76039F9AEF@nj7460exch002u.ho.lucent.com> In-Reply-To: <1B8C2E08B21B8743A2B3AED07407DA76039F9AEF@nj7460exch002u.ho.lucent.com> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_F9qlAPhJkfcvxEb"; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200405032244.53607.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new cc: "Rajamani, Rajarajan \(Rajarajan\)" Subject: Re: portupgrade failure for vim-6.2.521 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 20:44:56 -0000 --Boundary-02=_F9qlAPhJkfcvxEb Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Monday 03 May 2004 22:18, Rajamani, Rajarajan (Rajarajan) wrote: > I have vim-6.2.383 and am using portupgrade to upgrade to > 6.2.251 and am getting the error given below. > Is it due the space after prefix=3D ? > > Did anyone else see a problem similar to this ? Yes, same here. =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --Boundary-02=_F9qlAPhJkfcvxEb Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQBAlq9FXhc68WspdLARAsgdAKCASNBqDIepXFxmfM4//IbSzHhUQgCeIZI9 k+QkpeUW4wnLE7+5GGL3qsc= =NIlH -----END PGP SIGNATURE----- --Boundary-02=_F9qlAPhJkfcvxEb-- From owner-freebsd-ports@FreeBSD.ORG Mon May 3 13:47:14 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D948016A4CE for ; Mon, 3 May 2004 13:47:14 -0700 (PDT) Received: from meitner.wh.uni-dortmund.de (meitner.wh.uni-dortmund.de [129.217.129.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 22A0243D1D for ; Mon, 3 May 2004 13:47:13 -0700 (PDT) (envelope-from michaelnottebrock@gmx.net) Received: from lofi.dyndns.org (pc2-105.intern.meitner [10.3.12.105]) by meitner.wh.uni-dortmund.de (Postfix) with ESMTP id 5B6FF1675B9; Mon, 3 May 2004 22:47:12 +0200 (CEST) Received: from [192.168.8.4] (kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.10/8.12.10) with ESMTP id i43KlBvo063884 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Mon, 3 May 2004 22:47:11 +0200 (CEST) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: freebsd-ports@freebsd.org Date: Mon, 3 May 2004 22:47:10 +0200 User-Agent: KMail/1.6.2 MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_O/qlAIssOKhKRFV"; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <200405032247.10996.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new cc: dyeske@yahoo.com Subject: reallyslick failing X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 20:47:15 -0000 --Boundary-02=_O/qlAIssOKhKRFV Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline This has been consistently failing to upgrade here: c++ -DHAVE_CONFIG_H -I. -I. -I../.. -I../../include -I../../src =20 =2DI/usr/X11R6/include -I/usr/local/include -O -pipe -c -o=20 skyrocket_textures.o `test -f 'skyrocket_textures.cpp' || echo=20 './'`skyrocket_textures.cpp c++ -O -pipe -o skyrocket driver.o skyrocket.o skyrocket_flare.o=20 skyrocket_particle.o skyrocket_shockwave.o skyrocket_smoke.o=20 skyrocket_sound.o skyrocket_world.o skyrocket_textures.o rsVec.o rsMatrix.o= =20 rsQuat.o -lbz2 -lMagick -lGLU -lGL -L/usr/X11R6/lib -lSM -lICE -lX11 =20 =2DL/usr/X11R6/lib -lSM -lICE -lX11 -lm -L/usr/local/lib -lXext /usr/local/lib/libjasper.so.4: warning: tmpnam() possibly used unsafely;=20 consider using mkstemp() skyrocket_sound.o: In function `initSound(void)': skyrocket_sound.o(.text+0x4a): undefined reference to `alutInit' skyrocket_sound.o(.text+0x57): undefined reference to `alDistanceModel' skyrocket_sound.o(.text+0x68): undefined reference to `alDopplerVelocity' skyrocket_sound.o(.text+0x87): undefined reference to `alListenerf' skyrocket_sound.o(.text+0x99): undefined reference to `alGenBuffers' skyrocket_sound.o(.text+0xa8): undefined reference to `alGenSources' skyrocket_sound.o(.text+0xb4): undefined reference to `launch1SoundData_siz= e' skyrocket_sound.o(.text+0xc8): undefined reference to=20 `launch1SoundData_compressedsize' skyrocket_sound.o(.text+0xce): undefined reference to `launch1SoundData' skyrocket_sound.o(.text+0xd3): undefined reference to `launch1SoundData_siz= e' skyrocket_sound.o(.text+0xeb): undefined reference to `launch1SoundData_siz= e' skyrocket_sound.o(.text+0x102): undefined reference to `launch1SoundData_si= ze' skyrocket_sound.o(.text+0x113): undefined reference to `alBufferData' skyrocket_sound.o(.text+0x128): undefined reference to `launch2SoundData_si= ze' skyrocket_sound.o(.text+0x13f): undefined reference to=20 `launch2SoundData_compressedsize' skyrocket_sound.o(.text+0x145): undefined reference to `launch2SoundData' skyrocket_sound.o(.text+0x14a): undefined reference to `launch2SoundData_si= ze' skyrocket_sound.o(.text+0x161): undefined reference to `launch2SoundData_si= ze' skyrocket_sound.o(.text+0x178): undefined reference to `launch2SoundData_si= ze' skyrocket_sound.o(.text+0x189): undefined reference to `alBufferData' skyrocket_sound.o(.text+0x19e): undefined reference to `boom1SoundData_size' skyrocket_sound.o(.text+0x1b5): undefined reference to=20 `boom1SoundData_compressedsize' skyrocket_sound.o(.text+0x1bb): undefined reference to `boom1SoundData' skyrocket_sound.o(.text+0x1c0): undefined reference to `boom1SoundData_size' skyrocket_sound.o(.text+0x1d7): undefined reference to `boom1SoundData_size' skyrocket_sound.o(.text+0x1ee): undefined reference to `boom1SoundData_size' skyrocket_sound.o(.text+0x1ff): undefined reference to `alBufferData' skyrocket_sound.o(.text+0x214): undefined reference to `boom2SoundData_size' skyrocket_sound.o(.text+0x22b): undefined reference to=20 `boom2SoundData_compressedsize' skyrocket_sound.o(.text+0x231): undefined reference to `boom2SoundData' skyrocket_sound.o(.text+0x236): undefined reference to `boom2SoundData_size' skyrocket_sound.o(.text+0x24d): undefined reference to `boom2SoundData_size' skyrocket_sound.o(.text+0x264): undefined reference to `boom2SoundData_size' skyrocket_sound.o(.text+0x275): undefined reference to `alBufferData' skyrocket_sound.o(.text+0x28a): undefined reference to `boom3SoundData_size' skyrocket_sound.o(.text+0x2a1): undefined reference to=20 `boom3SoundData_compressedsize' skyrocket_sound.o(.text+0x2a7): undefined reference to `boom3SoundData' skyrocket_sound.o(.text+0x2ac): undefined reference to `boom3SoundData_size' skyrocket_sound.o(.text+0x2c3): undefined reference to `boom3SoundData_size' skyrocket_sound.o(.text+0x2da): undefined reference to `boom3SoundData_size' skyrocket_sound.o(.text+0x2eb): undefined reference to `alBufferData' skyrocket_sound.o(.text+0x300): undefined reference to `boom4SoundData_size' skyrocket_sound.o(.text+0x317): undefined reference to=20 `boom4SoundData_compressedsize' skyrocket_sound.o(.text+0x31d): undefined reference to `boom4SoundData' skyrocket_sound.o(.text+0x322): undefined reference to `boom4SoundData_size' skyrocket_sound.o(.text+0x339): undefined reference to `boom4SoundData_size' skyrocket_sound.o(.text+0x350): undefined reference to `boom4SoundData_size' skyrocket_sound.o(.text+0x361): undefined reference to `alBufferData' skyrocket_sound.o(.text+0x376): undefined reference to `popperSoundData_siz= e' skyrocket_sound.o(.text+0x38d): undefined reference to=20 `popperSoundData_compressedsize' skyrocket_sound.o(.text+0x393): undefined reference to `popperSoundData' skyrocket_sound.o(.text+0x398): undefined reference to `popperSoundData_siz= e' skyrocket_sound.o(.text+0x3af): undefined reference to `popperSoundData_siz= e' skyrocket_sound.o(.text+0x3c6): undefined reference to `popperSoundData_siz= e' skyrocket_sound.o(.text+0x3d7): undefined reference to `alBufferData' skyrocket_sound.o(.text+0x3ec): undefined reference to `suckSoundData_size' skyrocket_sound.o(.text+0x403): undefined reference to=20 `suckSoundData_compressedsize' skyrocket_sound.o(.text+0x409): undefined reference to `suckSoundData' skyrocket_sound.o(.text+0x40e): undefined reference to `suckSoundData_size' skyrocket_sound.o(.text+0x425): undefined reference to `suckSoundData_size' skyrocket_sound.o(.text+0x43c): undefined reference to `suckSoundData_size' skyrocket_sound.o(.text+0x44d): undefined reference to `alBufferData' skyrocket_sound.o(.text+0x462): undefined reference to `nukeSoundData_size' skyrocket_sound.o(.text+0x479): undefined reference to=20 `nukeSoundData_compressedsize' skyrocket_sound.o(.text+0x47f): undefined reference to `nukeSoundData' skyrocket_sound.o(.text+0x484): undefined reference to `nukeSoundData_size' skyrocket_sound.o(.text+0x49b): undefined reference to `nukeSoundData_size' skyrocket_sound.o(.text+0x4b2): undefined reference to `nukeSoundData_size' skyrocket_sound.o(.text+0x4c3): undefined reference to `alBufferData' skyrocket_sound.o(.text+0x4d8): undefined reference to `whistleSoundData_si= ze' skyrocket_sound.o(.text+0x4ef): undefined reference to=20 `whistleSoundData_compressedsize' skyrocket_sound.o(.text+0x4f5): undefined reference to `whistleSoundData' skyrocket_sound.o(.text+0x4fa): undefined reference to `whistleSoundData_si= ze' skyrocket_sound.o(.text+0x511): undefined reference to `whistleSoundData_si= ze' skyrocket_sound.o(.text+0x528): undefined reference to `whistleSoundData_si= ze' skyrocket_sound.o(.text+0x539): undefined reference to `alBufferData' skyrocket_sound.o: In function `updateSound(float *, float *, float *)': skyrocket_sound.o(.text+0x856): undefined reference to `alListenerfv' skyrocket_sound.o(.text+0x864): undefined reference to `alListenerfv' skyrocket_sound.o(.text+0x875): undefined reference to `alListenerfv' skyrocket_sound.o(.text+0x8f3): undefined reference to `alSourceStop' skyrocket_sound.o(.text+0x91d): undefined reference to `alSourcei' skyrocket_sound.o(.text+0x93b): undefined reference to `alSourcef' skyrocket_sound.o(.text+0x999): undefined reference to `alSourcef' skyrocket_sound.o(.text+0x9bb): undefined reference to `alSourcefv' skyrocket_sound.o(.text+0x9d5): undefined reference to `alSourcei' skyrocket_sound.o(.text+0xa1c): undefined reference to `alSourcef' skyrocket_sound.o(.text+0xa35): undefined reference to `alSourcePlay' gmake[3]: *** [skyrocket] Fehler 1 gmake[3]: Leaving directory=20 `/usr/ports/graphics/reallyslick/work/rss-glx_0.7.6/reallyslick/cpp_src' gmake[2]: *** [all-recursive] Fehler 1 gmake[2]: Leaving directory=20 `/usr/ports/graphics/reallyslick/work/rss-glx_0.7.6/reallyslick' gmake[1]: *** [all-recursive] Fehler 1 gmake[1]: Leaving directory=20 `/usr/ports/graphics/reallyslick/work/rss-glx_0.7.6' gmake: *** [all] Fehler 2 *** Error code 2 Anyone else seeing this? =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --Boundary-02=_O/qlAIssOKhKRFV Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQBAlq/OXhc68WspdLARAsbhAKCKQJO2oGov56xoZ2/b8RHb+3348wCglAkm 1p3gXtPo2wZPM25oPFqZ2Mk= =228l -----END PGP SIGNATURE----- --Boundary-02=_O/qlAIssOKhKRFV-- From owner-freebsd-ports@FreeBSD.ORG Mon May 3 14:09:17 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2FCD316A4CE for ; Mon, 3 May 2004 14:09:17 -0700 (PDT) Received: from smtp.dkm.cz (smtp.dkm.cz [62.24.64.34]) by mx1.FreeBSD.org (Postfix) with SMTP id C715A43D3F for ; Mon, 3 May 2004 14:09:15 -0700 (PDT) (envelope-from neuhauser@chello.cz) Received: (qmail 65658 invoked by uid 0); 3 May 2004 21:09:14 -0000 Received: from r3al16.mistral.cz (HELO isis.wad.cz) (213.220.229.16) by smtp.dkm.cz with SMTP; 3 May 2004 21:09:14 -0000 Received: by isis.wad.cz (Postfix, from userid 1001) id 74C0C2FDA01; Mon, 3 May 2004 23:09:14 +0200 (CEST) Date: Mon, 3 May 2004 23:09:14 +0200 From: Roman Neuhauser To: Michael Nottebrock Message-ID: <20040503210914.GA485@isis.wad.cz> Mail-Followup-To: Michael Nottebrock , freebsd-ports@freebsd.org, dyeske@yahoo.com References: <200405032247.10996.michaelnottebrock@gmx.net> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="M9NhX3UHpAaciwkO" Content-Disposition: inline In-Reply-To: <200405032247.10996.michaelnottebrock@gmx.net> User-Agent: Mutt/1.5.6i cc: dyeske@yahoo.com cc: freebsd-ports@freebsd.org Subject: Re: reallyslick failing X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 21:09:17 -0000 --M9NhX3UHpAaciwkO Content-Type: text/plain; charset=us-ascii Content-Disposition: inline # michaelnottebrock@gmx.net / 2004-05-03 22:47:10 +0200: > This has been consistently failing to upgrade here: > > c++ -DHAVE_CONFIG_H -I. -I. -I../.. -I../../include -I../../src > -I/usr/X11R6/include -I/usr/local/include -O -pipe -c -o > skyrocket_textures.o `test -f 'skyrocket_textures.cpp' || echo > './'`skyrocket_textures.cpp > c++ -O -pipe -o skyrocket driver.o skyrocket.o skyrocket_flare.o > skyrocket_particle.o skyrocket_shockwave.o skyrocket_smoke.o > skyrocket_sound.o skyrocket_world.o skyrocket_textures.o rsVec.o rsMatrix.o > rsQuat.o -lbz2 -lMagick -lGLU -lGL -L/usr/X11R6/lib -lSM -lICE -lX11 > -L/usr/X11R6/lib -lSM -lICE -lX11 -lm -L/usr/local/lib -lXext > /usr/local/lib/libjasper.so.4: warning: tmpnam() possibly used unsafely; > consider using mkstemp() > skyrocket_sound.o: In function `initSound(void)': > skyrocket_sound.o(.text+0x4a): undefined reference to `alutInit' Does it get better with this patch? -- If you cc me or remove the list(s) completely I'll most likely ignore your message. see http://www.eyrie.org./~eagle/faqs/questions.html --M9NhX3UHpAaciwkO Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="graphics::reallyslick::Makefile-openal.patch" Index: graphics/reallyslick/Makefile =================================================================== RCS file: /home/ncvs/ports/graphics/reallyslick/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- graphics/reallyslick/Makefile 17 Apr 2004 13:53:06 -0000 1.5 +++ graphics/reallyslick/Makefile 3 May 2004 21:07:23 -0000 @@ -15,6 +15,8 @@ MAINTAINER= dyeske@yahoo.com COMMENT= OpenGL screensaver collection +LIB_DEPENDS= openal.0:${PORTSDIR}/audio/openal + USE_X_PREFIX= yes USE_BZIP2= yes USE_GL= yes --M9NhX3UHpAaciwkO-- From owner-freebsd-ports@FreeBSD.ORG Mon May 3 14:13:27 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5EC9D16A4CE for ; Mon, 3 May 2004 14:13:27 -0700 (PDT) Received: from hermes.webtent.net (hermes.webtent.net [192.216.106.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8CCAE43D2D for ; Mon, 3 May 2004 14:13:26 -0700 (PDT) (envelope-from robert@webtent.com) Received: from [192.168.1.11] (webtent.org [198.79.127.235]) by hermes.webtent.net (8.10.2/8.10.2) with ESMTP id i43LDIR12547; Mon, 3 May 2004 17:13:18 -0400 From: Robert Fitzpatrick To: Tillman Hodgson In-Reply-To: <20040503193701.GG80676@seekingfire.com> References: <1083340545.13018.48.camel@columbus> <409288AC.2E7BB16B@saeab.se> <1083608221.5295.20.camel@columbus> <20040503193701.GG80676@seekingfire.com> Content-Type: text/plain Organization: WebTent Networking, Inc. Message-Id: <1083618848.5293.36.camel@columbus> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Mon, 03 May 2004 17:14:08 -0400 Content-Transfer-Encoding: 7bit cc: Heimdal cc: FreeBSD Ports Subject: Re: Login prompt when starting services after FreeBSD port install X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 21:13:27 -0000 On Mon, 2004-05-03 at 15:37, Tillman Hodgson wrote: > However .... check the contents of your /etc/make.conf. If you've > redefined the location of some of the "HOME" variables (like > HEIMDAL_HOME), that might be causing a problem. > Right again! How would this cause the problem? And how can I get back those system files? -- Robert From owner-freebsd-ports@FreeBSD.ORG Mon May 3 14:29:23 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 630F516A4CF for ; Mon, 3 May 2004 14:29:23 -0700 (PDT) Received: from meitner.wh.uni-dortmund.de (meitner.wh.uni-dortmund.de [129.217.129.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 15B3743D31 for ; Mon, 3 May 2004 14:29:23 -0700 (PDT) (envelope-from michaelnottebrock@gmx.net) Received: from lofi.dyndns.org (pc2-105.intern.meitner [10.3.12.105]) by meitner.wh.uni-dortmund.de (Postfix) with ESMTP id 248D2167587; Mon, 3 May 2004 23:29:22 +0200 (CEST) Received: from [192.168.8.4] (kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.10/8.12.10) with ESMTP id i43LTIvo064285 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Mon, 3 May 2004 23:29:18 +0200 (CEST) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: Roman Neuhauser Date: Mon, 3 May 2004 23:29:12 +0200 User-Agent: KMail/1.6.2 References: <200405032247.10996.michaelnottebrock@gmx.net> <20040503210914.GA485@isis.wad.cz> In-Reply-To: <20040503210914.GA485@isis.wad.cz> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_tmrlAQ1uxTJtZ4j"; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Message-Id: <200405032329.17875.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new cc: dyeske@yahoo.com cc: freebsd-ports@FreeBSD.org Subject: Re: reallyslick failing X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 21:29:23 -0000 --Boundary-02=_tmrlAQ1uxTJtZ4j Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Monday 03 May 2004 23:09, Roman Neuhauser wrote: > > skyrocket_sound.o: In function `initSound(void)': > > skyrocket_sound.o(.text+0x4a): undefined reference to `alutInit' > > Does it get better with this patch? No, but openal actually is the culprit - I already had it installed - I=20 removed it and now reallyslick compiles. It seems reallyslick's build syste= m=20 has a bug in the openal support. =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --Boundary-02=_tmrlAQ1uxTJtZ4j Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQBAlrmtXhc68WspdLARAsMYAJ9APzViAPqjDNdJrn1EasYD7RbR3gCdFwib bzmS+iBw78IRjhzUPw9GoUc= =EhmV -----END PGP SIGNATURE----- --Boundary-02=_tmrlAQ1uxTJtZ4j-- From owner-freebsd-ports@FreeBSD.ORG Mon May 3 14:46:07 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE67B16A4CE; Mon, 3 May 2004 14:46:07 -0700 (PDT) Received: from basement.kutulu.org (pcp03610121pcs.longhl01.md.comcast.net [68.49.239.235]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4359A43D5E; Mon, 3 May 2004 14:46:07 -0700 (PDT) (envelope-from kutulu@kutulu.org) Received: from wombat.localnet (wombat.localnet [192.168.69.3]) by basement.kutulu.org (Postfix) with ESMTP id 126E4A93E; Mon, 3 May 2004 17:46:06 -0400 (EDT) Received: by wombat.localnet (Postfix, from userid 1001) id D2F23B86E; Mon, 3 May 2004 17:46:05 -0400 (EDT) Date: Mon, 3 May 2004 17:46:05 -0400 From: Michael Edenfield To: "Rajamani, Rajarajan (Rajarajan)" Message-ID: <20040503214605.GA40628@wombat.localnet> Mail-Followup-To: "Rajamani, Rajarajan (Rajarajan)" , "'obrien@FreeBSD.org'" , "'ports@FreeBSD.org'" References: <1B8C2E08B21B8743A2B3AED07407DA76039F9AEF@nj7460exch002u.ho.lucent.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="IJpNTDwzlM2Ie8A6" Content-Disposition: inline In-Reply-To: <1B8C2E08B21B8743A2B3AED07407DA76039F9AEF@nj7460exch002u.ho.lucent.com> X-Mailer: Mutt http://www.mutt.org/ X-Accept-Language: en X-PGP-Key: http://www.kutulu.org/pgp/kutulu.asc X-PGP-Fingerprint: 1CE0 3C31 7013 D529 406D 37DC 09CC CD84 A46C 878F User-Agent: Mutt/1.5.6i cc: "'ports@FreeBSD.org'" cc: "'obrien@FreeBSD.org'" Subject: Re: portupgrade failure for vim-6.2.521 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 21:46:07 -0000 --IJpNTDwzlM2Ie8A6 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable * Rajamani, Rajarajan (Rajarajan) [040503 16:18]: > I have vim-6.2.383 and am using portupgrade to upgrade to=20 > 6.2.251 and am getting the error given below. > Is it due the space after prefix=3D ? >=20 > Did anyone else see a problem similar to this ? The problem is that the src/po directory has no Makefile in it, but the configure process for vim tries to "cd po ; make clean". It's possible to build the port (without portupgrade) by doing a 'make patc && rm -rf work/vim62/src/p && make'. Don't forget whatever WITH_* flags you want vim built with. The problem looks like it was introduced by the official patch from 501 -> 502, where blank language files are created in an otherwise non-existant po/ directory regardless of any other options you select. The "clean" option then checks for the existance of po/ and tries to recurse into it to clean it out. Everywhere else in the Makefile it explicitly does a [test -f $(PODIR)/Makefile] but in the clean: target it doesn't. *shrug* (BTW: I'm sure other people already know the answer to this but why doesn't the author EVER reroll the distribution tarball? 538 patches is just a bit nuts :x ) --Mike --IJpNTDwzlM2Ie8A6 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAlr2dCczNhKRsh48RAuPlAJ9ASWmkzPSmO2GO6vk5JGWnzPyMqACfRv6c zNhALo81dc6pGEaerc4+pHc= =9KEq -----END PGP SIGNATURE----- --IJpNTDwzlM2Ie8A6-- From owner-freebsd-ports@FreeBSD.ORG Mon May 3 15:14:21 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB0AC16A4CF for ; Mon, 3 May 2004 15:14:21 -0700 (PDT) Received: from web13524.mail.yahoo.com (web13524.mail.yahoo.com [216.136.174.162]) by mx1.FreeBSD.org (Postfix) with SMTP id C977243D39 for ; Mon, 3 May 2004 15:14:21 -0700 (PDT) (envelope-from dyeske@yahoo.com) Message-ID: <20040503221421.74761.qmail@web13524.mail.yahoo.com> Received: from [68.114.32.23] by web13524.mail.yahoo.com via HTTP; Mon, 03 May 2004 15:14:21 PDT Date: Mon, 3 May 2004 15:14:21 -0700 (PDT) From: David Yeske To: freebsd-ports@freebsd.org In-Reply-To: <20040503210914.GA485@isis.wad.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: reallyslick failing X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 22:14:22 -0000 I will try and update to the most recent version of reallyslick soon. Openal has matured some so this issue will probably go away with the upgrade. > > +LIB_DEPENDS= openal.0:${PORTSDIR}/audio/openal > + > USE_X_PREFIX= yes > USE_BZIP2= yes > USE_GL= yes > From owner-freebsd-ports@FreeBSD.ORG Mon May 3 16:17:53 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F38716A4CE for ; Mon, 3 May 2004 16:17:53 -0700 (PDT) Received: from mtaw6.prodigy.net (mtaw6.prodigy.net [64.164.98.56]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D40C43D39 for ; Mon, 3 May 2004 16:17:53 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (ebc2fbcbc949a0490d7973fa27c1a01f@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128]) by mtaw6.prodigy.net (8.12.10/8.12.10) with ESMTP id i43NGXT1003916; Mon, 3 May 2004 16:16:34 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 0384F528DF; Mon, 3 May 2004 16:17:47 -0700 (PDT) Date: Mon, 3 May 2004 16:17:47 -0700 From: Kris Kennaway To: pmaloney@canoemail.com Message-ID: <20040503231747.GB50489@xor.obsecurity.org> References: <89A99D36114F2C54394C0B2D1FCDFA75@pmaloney.canoemail.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="XOIedfhf+7KOe/yw" Content-Disposition: inline In-Reply-To: <89A99D36114F2C54394C0B2D1FCDFA75@pmaloney.canoemail.com> User-Agent: Mutt/1.4.2.1i cc: ports@FreeBSD.org Subject: Re: A typo X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 23:17:53 -0000 --XOIedfhf+7KOe/yw Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, May 03, 2004 at 09:56:50AM -0400, pmaloney@canoemail.com wrote: >=20 > To the Ports Keeper: >=20 > I've notice a typo in the Hydra-2.2_1 port description on the > following page: >=20 > http://www.freebsd.org/cgi/ports.cgi?query=3Dattack&stype=3Dall&release= =3D5.2-RELEASE%2Fi386 >=20 > *********** > hydra-2.2_1 > Bruce Force Attack Utility working on multiple network services > Maintained by: llevier@argosnet.com > Description : Sources : Package : Changes : Download > *********** >=20 > Bruce force should read BRUTE force. Please submit a PR if someone doesn't get to this straight away. Kris --XOIedfhf+7KOe/yw Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAltMYWry0BWjoQKURAgdUAKCUWVCXS1dKYgPNLadHSCkdLoCB7gCglH3g JUL7YSvicbGNje8TPW4uyV4= =eP0I -----END PGP SIGNATURE----- --XOIedfhf+7KOe/yw-- From owner-freebsd-ports@FreeBSD.ORG Mon May 3 16:21:58 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E3B416A4CE for ; Mon, 3 May 2004 16:21:58 -0700 (PDT) Received: from zaphod.nitro.dk (port324.ds1-khk.adsl.cybercity.dk [212.242.113.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7BCAA43D41 for ; Mon, 3 May 2004 16:21:57 -0700 (PDT) (envelope-from simon@zaphod.nitro.dk) Received: by zaphod.nitro.dk (Postfix, from userid 3000) id 9F850119AA; Tue, 4 May 2004 01:21:55 +0200 (CEST) Date: Tue, 4 May 2004 01:21:55 +0200 From: "Simon L. Nielsen" To: Kris Kennaway Message-ID: <20040503232155.GG814@zaphod.nitro.dk> References: <89A99D36114F2C54394C0B2D1FCDFA75@pmaloney.canoemail.com> <20040503231747.GB50489@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="LYw3s/afESlflPpp" Content-Disposition: inline In-Reply-To: <20040503231747.GB50489@xor.obsecurity.org> User-Agent: Mutt/1.5.6i cc: ports@FreeBSD.org cc: pmaloney@canoemail.com Subject: Re: A typo X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 23:21:58 -0000 --LYw3s/afESlflPpp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2004.05.03 16:17:47 -0700, Kris Kennaway wrote: > On Mon, May 03, 2004 at 09:56:50AM -0400, pmaloney@canoemail.com wrote: > >=20 > > To the Ports Keeper: > >=20 > > I've notice a typo in the Hydra-2.2_1 port description on the > > following page: > >=20 > > http://www.freebsd.org/cgi/ports.cgi?query=3Dattack&stype=3Dall&release= =3D5.2-RELEASE%2Fi386 > >=20 > > *********** > > hydra-2.2_1 > > Bruce Force Attack Utility working on multiple network services > > Maintained by: llevier@argosnet.com > > Description : Sources : Package : Changes : Download > > *********** > >=20 > > Bruce force should read BRUTE force. >=20 > Please submit a PR if someone doesn't get to this straight away. I just checked, this has been fixed after 5.2-RELEASE. --=20 Simon L. Nielsen FreeBSD Documentation Team --LYw3s/afESlflPpp Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAltQTh9pcDSc1mlERArSiAJ9QtwjErgW3CZmfkDgTE0wdC2tIuACghFN0 RlVySIYhabJNp1ynushH5mY= =hsPf -----END PGP SIGNATURE----- --LYw3s/afESlflPpp-- From owner-freebsd-ports@FreeBSD.ORG Mon May 3 16:26:46 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B18716A4D3; Mon, 3 May 2004 16:26:46 -0700 (PDT) Received: from mta4.rcsntx.swbell.net (mta4.rcsntx.swbell.net [151.164.30.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 276FB43D49; Mon, 3 May 2004 16:26:46 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (706194f9f3b7b4ae08eaa19d29597774@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128])i43NQFYS028075; Mon, 3 May 2004 18:26:42 -0500 (CDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 5A9DE528DF; Mon, 3 May 2004 16:26:14 -0700 (PDT) Date: Mon, 3 May 2004 16:26:14 -0700 From: Kris Kennaway To: "Simon L. Nielsen" Message-ID: <20040503232614.GC50489@xor.obsecurity.org> References: <89A99D36114F2C54394C0B2D1FCDFA75@pmaloney.canoemail.com> <20040503231747.GB50489@xor.obsecurity.org> <20040503232155.GG814@zaphod.nitro.dk> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="vOmOzSkFvhd7u8Ms" Content-Disposition: inline In-Reply-To: <20040503232155.GG814@zaphod.nitro.dk> User-Agent: Mutt/1.4.2.1i cc: ports@FreeBSD.org cc: pmaloney@canoemail.com cc: Kris Kennaway Subject: Re: A typo X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 23:26:46 -0000 --vOmOzSkFvhd7u8Ms Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, May 04, 2004 at 01:21:55AM +0200, Simon L. Nielsen wrote: > On 2004.05.03 16:17:47 -0700, Kris Kennaway wrote: > > On Mon, May 03, 2004 at 09:56:50AM -0400, pmaloney@canoemail.com wrote: > > >=20 > > > To the Ports Keeper: > > >=20 > > > I've notice a typo in the Hydra-2.2_1 port description on the > > > following page: > > >=20 > > > http://www.freebsd.org/cgi/ports.cgi?query=3Dattack&stype=3Dall&relea= se=3D5.2-RELEASE%2Fi386 > > >=20 > > > *********** > > > hydra-2.2_1 > > > Bruce Force Attack Utility working on multiple network services > > > Maintained by: llevier@argosnet.com > > > Description : Sources : Package : Changes : Download > > > *********** > > >=20 > > > Bruce force should read BRUTE force. > >=20 > > Please submit a PR if someone doesn't get to this straight away. >=20 > I just checked, this has been fixed after 5.2-RELEASE. Great, thanks. Kris --vOmOzSkFvhd7u8Ms Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAltUWWry0BWjoQKURAmzSAKDeDoFPtGcXpZs1QyV3kBXN5VZIqQCfZ5tN CS4oN1U9qNYFb6TbHExnzY4= =MIae -----END PGP SIGNATURE----- --vOmOzSkFvhd7u8Ms-- From owner-freebsd-ports@FreeBSD.ORG Mon May 3 16:52:35 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A72F16A4D0; Mon, 3 May 2004 16:52:35 -0700 (PDT) Received: from c0mailgw05.prontomail.com (c0mailgwalt.prontomail.com [207.183.238.110]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14E4843D3F; Mon, 3 May 2004 16:52:33 -0700 (PDT) (envelope-from pmaloney@canoemail.com) Received: from c0web103 (c0mailgwalt.prontomail.com [207.183.238.110]) i43NqTl11985; Mon, 3 May 2004 16:52:29 -0700 X-Version: canoe 6.2.2329.0 From: pmaloney@canoemail.com Message-Id: Date: Mon, 3 May 2004 19:52:31 -0400 X-Priority: 3 Priority: Normal X-MSMail-Priority: Normal Content-Type: text/plain; charset=iso-8859-1 To: kris@obsecurity.org, "simon l. nielsen" X-Mailer: Web Based Pronto Mime-Version: 1.0 Content-Transfer-Encoding: 7bit cc: ports@freebsd.org cc: pmaloney@canoemail.com cc: kris kennaway Subject: Re: Re: A typo X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 23:52:35 -0000 Kris and Simon: Thank you for your quick response yet if you look here, under Hydra, you will see that it reads Bruce force not Brute force. http://www.freebsd.org/cgi/ports.cgi?query=attack&stype=all&release=5.2-RELEASE%2Fi386 Cheers, Patrick Maloney Sign up today for your Free E-mail at: http://www.canoe.ca/CanoeMail From owner-freebsd-ports@FreeBSD.ORG Mon May 3 16:55:05 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B26CE16A4CF for ; Mon, 3 May 2004 16:55:05 -0700 (PDT) Received: from mail.seekingfire.com (coyote.seekingfire.com [24.72.10.212]) by mx1.FreeBSD.org (Postfix) with ESMTP id 25E9A43D31 for ; Mon, 3 May 2004 16:55:05 -0700 (PDT) (envelope-from tillman@seekingfire.com) Received: by mail.seekingfire.com (Postfix, from userid 500) id 3BFAB28D; Mon, 3 May 2004 17:55:04 -0600 (CST) Date: Mon, 3 May 2004 17:55:04 -0600 From: Tillman Hodgson To: Heimdal , FreeBSD Ports Message-ID: <20040503235504.GN80676@seekingfire.com> References: <1083340545.13018.48.camel@columbus> <409288AC.2E7BB16B@saeab.se> <1083608221.5295.20.camel@columbus> <20040503193701.GG80676@seekingfire.com> <1083618848.5293.36.camel@columbus> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1083618848.5293.36.camel@columbus> X-Habeas-SWE-1: winter into spring X-Habeas-SWE-2: brightly anticipated X-Habeas-SWE-3: like Habeas SWE (tm) X-Habeas-SWE-4: Copyright 2002 Habeas (tm) X-Habeas-SWE-5: Sender Warranted Email (SWE) (tm). The sender of this X-Habeas-SWE-6: email in exchange for a license for this Habeas X-Habeas-SWE-7: warrant mark warrants that this is a Habeas Compliant X-Habeas-SWE-8: Message (HCM) and not spam. Please report use of this X-Habeas-SWE-9: mark in spam to . X-GPG-Key-ID: 828AFC7B X-GPG-Fingerprint: 5584 14BA C9EB 1524 0E68 F543 0F0A 7FBC 828A FC7B X-GPG-Key: http://www.seekingfire.com/gpg_key.asc X-Urban-Legend: There is lots of hidden information in headers User-Agent: Mutt/1.5.6i Subject: Re: Login prompt when starting services after FreeBSD port install X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 23:55:05 -0000 On Mon, May 03, 2004 at 05:14:08PM -0400, Robert Fitzpatrick wrote: > On Mon, 2004-05-03 at 15:37, Tillman Hodgson wrote: > > However .... check the contents of your /etc/make.conf. If you've > > redefined the location of some of the "HOME" variables (like > > HEIMDAL_HOME), that might be causing a problem. > > Right again! Which part was right? :-) > How would this cause the problem? And how can I get back those system > files? Because those variable control where the port installs files, it's possible for it to clobber the system files. If you then uninstall the files, they'll be removed. That's one possibility I can see for how your system files might've been removed. A good default is to simply not set a HEIMDAL_HOME (or any other _HOME variable for that matter) in /etc/make.conf unless you have a specific reason to change it and understand the implications of that change. Ports generally do "the right thing" if left to their defaults. Restoring your files can be done from a backup or from something like a "make installworld"[1]. Rebuilding the port after cleaning up /etc/make.conf can install the Heimdal port files in the "normal" location. Note that Heimdal is more-or-less integrated into FreeBSD already -- the port isn't necessary (though it does provide some shiny bits over the integrated version). See the Handbook chapter for details.[2] -T 1. http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html 2. http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kerberos5.html -- Page xxviii: More than any other computer system today, Unix will repay every moment that you spend learning and experimenting. - Harley Hahn, _The Unix Companion_ From owner-freebsd-ports@FreeBSD.ORG Mon May 3 16:56:59 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A7F8516A4CF; Mon, 3 May 2004 16:56:59 -0700 (PDT) Received: from mtaw6.prodigy.net (mtaw6.prodigy.net [64.164.98.56]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8270C43D48; Mon, 3 May 2004 16:56:59 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (370373688dbf03d19cd813158e562f59@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128]) by mtaw6.prodigy.net (8.12.10/8.12.10) with ESMTP id i43NthT1008152; Mon, 3 May 2004 16:55:43 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id C3707528E1; Mon, 3 May 2004 16:56:57 -0700 (PDT) Date: Mon, 3 May 2004 16:56:57 -0700 From: Kris Kennaway To: pmaloney@canoemail.com Message-ID: <20040503235657.GA50977@xor.obsecurity.org> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="3V7upXqbjpZ4EhLz" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i cc: ports@freebsd.org cc: "simon l. nielsen" cc: kris@obsecurity.org Subject: Re: Re: A typo X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 23:56:59 -0000 --3V7upXqbjpZ4EhLz Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, May 03, 2004 at 07:52:31PM -0400, pmaloney@canoemail.com wrote: >=20 > Kris and Simon: >=20 > Thank you for your quick response yet if you look here, under Hydra, > you will see that it reads Bruce force not Brute force. >=20 > http://www.freebsd.org/cgi/ports.cgi?query=3Dattack&stype=3Dall&release= =3D5.2-RELEASE%2Fi386 That's 5.2-RELEASE, which is old, and as Simon noted, it was fixed after that came out. Kris --3V7upXqbjpZ4EhLz Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAltxJWry0BWjoQKURAuPMAJ49RjWT+81TsXo2j1TGeIqCWRKLAACcDySi m/WF9hYpCao4mOVXOPuXhj0= =d1eo -----END PGP SIGNATURE----- --3V7upXqbjpZ4EhLz-- From owner-freebsd-ports@FreeBSD.ORG Mon May 3 19:06:56 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 475B316A4CE for ; Mon, 3 May 2004 19:06:56 -0700 (PDT) Received: from argo.bas.bg (argo.bas.bg [195.96.224.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2577943D2F for ; Mon, 3 May 2004 19:06:54 -0700 (PDT) (envelope-from alexb@ibl.bas.bg) Received: from mail.ibl.bas.bg ([195.96.255.106]) by argo.bas.bg (8.12.6/8.12.6/Debian-8) with ESMTP id i4426oYh008159 for ; Tue, 4 May 2004 05:06:50 +0300 Received: from localhost (localhost.ibl.bas.bg [127.0.0.1]) by mail.ibl.bas.bg (Postfix) with ESMTP id 36D611CC3C for ; Tue, 4 May 2004 05:06:35 +0300 (EEST) Received: from mail.ibl.bas.bg ([127.0.0.1]) by localhost (gate.ibl.bas.bg [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10431-08 for ; Tue, 4 May 2004 05:06:34 +0300 (EEST) Received: from ibl.bas.bg (localhost.ibl.bas.bg [127.0.0.1]) by mail.ibl.bas.bg (Postfix) with ESMTP id 4F0D51CC36 for ; Tue, 4 May 2004 05:06:34 +0300 (EEST) From: "alexander botov" To: "ports" Date: Tue, 4 May 2004 05:06:34 +0200 Message-Id: <20040504020512.M95873@ibl.bas.bg> X-Mailer: Open WebMail 2.30 20040103 X-OriginatingIP: 83.97.31.63 (alexb) MIME-Version: 1.0 Content-Type: text/plain; charset=windows-1251 X-Virus-Scanned: by amavisd-new at ibl.bas.bg X-MScanner: Found to be clean Subject: openwebmail fails with SpeedyCGI X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 May 2004 02:06:56 -0000 Hi to all I use openwebmail from the ports tree and recently i've upgraded it to 2.30 version with portupgrade . The default compiling options have SpeedyCGI perl support (www/p5-CGI-SpeedyCGI). When I tried to test the web interface i got following error in httpd-error.log : [error]Premature end of script headers: /usr/local/www/cgi- bin/openwebmail/openwebmail-main.pl speedy_backend[81640]: open temp file: Permission denied I reinstalled the port without SpeedyCGI support and everything went fine but i lose performance without it. Any ideas how to fix this ? Thanks From owner-freebsd-ports@FreeBSD.ORG Mon May 3 20:09:50 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BFE1116A4CE for ; Mon, 3 May 2004 20:09:50 -0700 (PDT) Received: from TRANG.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B02D43D2F for ; Mon, 3 May 2004 20:09:50 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by TRANG.nuxi.com (8.12.11/8.12.10) with ESMTP id i4439khJ044601; Mon, 3 May 2004 20:09:47 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.11/8.12.11/Submit) id i4439kL2044600; Mon, 3 May 2004 20:09:46 -0700 (PDT) (envelope-from obrien) Date: Mon, 3 May 2004 20:09:46 -0700 From: "David O'Brien" To: "Rajamani, Rajarajan (Rajarajan)" Message-ID: <20040504030946.GA44550@dragon.nuxi.com> References: <1B8C2E08B21B8743A2B3AED07407DA76039F9AEF@nj7460exch002u.ho.lucent.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1B8C2E08B21B8743A2B3AED07407DA76039F9AEF@nj7460exch002u.ho.lucent.com> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 5.2-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 cc: "'ports@FreeBSD.org'" Subject: Re: portupgrade failure for vim-6.2.521 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 May 2004 03:09:50 -0000 On Mon, May 03, 2004 at 04:18:08PM -0400, Rajamani, Rajarajan (Rajarajan) wrote: > I have vim-6.2.383 and am using portupgrade to upgrade to > 6.2.251 and am getting the error given below. > Is it due the space after prefix= ? > > Did anyone else see a problem similar to this ? *sigh* Would SOMEONE PLEASE TEST THIS PATCH AND GET BACK TO ME??? This is the 5th time I've sent it out today and no responce from anyone who has the skills to apply the patch and test. (it adds 502 to the BADPATCHES list). I can't reproduce it locally. I'm starting to think it is a 4.x-only problem. Index: Makefile =================================================================== RCS file: /home/pcvs/ports/editors/vim/Makefile,v retrieving revision 1.252 diff -u -u -0 -r1.252 Makefile --- Makefile 2 May 2004 23:36:15 -0000 1.252 +++ Makefile 3 May 2004 17:51:10 -0000 @@ -21 +21 @@ -BADPATCHES= 009 013 019 022 023 024 033 036 038 039 041 042 047 056 057 060 066 090 099 103 107 115 116 118 121 123 124 125 127 128 130 131 132 134 138 140 141 142 156 161 173 177 179 188 194 199 205 210 211 212 214 215 225 226 227 230 233 235 236 243 252 267 271 275 288 290 291 294 296 299 304 306 307 319 324 330 332 333 334 337 341 342 344 345 347 353 354 355 358 361 362 365 367 369 370 376 378 380 385 391 393 394 395 398 402 404 407 417 419 427 431 432 434 446 448 449 450 451 456 460 463 464 466 467 469 473 474 481 483 487 495 496 497 500 501 503 506 507 510 511 513 516 520 +BADPATCHES= 009 013 019 022 023 024 033 036 038 039 041 042 047 056 057 060 066 090 099 103 107 115 116 118 121 123 124 125 127 128 130 131 132 134 138 140 141 142 156 161 173 177 179 188 194 199 205 210 211 212 214 215 225 226 227 230 233 235 236 243 252 267 271 275 288 290 291 294 296 299 304 306 307 319 324 330 332 333 334 337 341 342 344 345 347 353 354 355 358 361 362 365 367 369 370 376 378 380 385 391 393 394 395 398 402 404 407 417 419 427 431 432 434 446 448 449 450 451 456 460 463 464 466 467 469 473 474 481 483 487 495 496 497 500 501 502 503 506 507 510 511 513 516 520 From owner-freebsd-ports@FreeBSD.ORG Mon May 3 20:31:48 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A48D316A4CE; Mon, 3 May 2004 20:31:48 -0700 (PDT) Received: from seed.net.tw (sn13.seed.net.tw [139.175.54.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F48843D2D; Mon, 3 May 2004 20:31:48 -0700 (PDT) (envelope-from leafy@leafy.idv.tw) Received: from [61.59.121.140] (port=49694 helo=chihiro.leafy.idv.tw) by seed.net.tw with esmtp (Seednet 4.23:1) id 1BKqej-000L7G-6U; Tue, 04 May 2004 11:31:41 +0800 Received: from localhost (localhost [127.0.0.1]) by chihiro.leafy.idv.tw (Postfix) with ESMTP id 6A5982F5; Tue, 4 May 2004 11:31:46 +0800 (CST) Received: from chihiro.leafy.idv.tw ([127.0.0.1]) by localhost (chihiro.leafy.idv.tw [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00642-02; Tue, 4 May 2004 11:31:45 +0800 (CST) Received: by chihiro.leafy.idv.tw (Postfix, from userid 1000) id 9383929F; Tue, 4 May 2004 11:31:45 +0800 (CST) Date: Tue, 4 May 2004 11:31:45 +0800 From: leafy To: David O'Brien Message-ID: <20040504033145.GA33237@chihiro.leafy.idv.tw> References: <1B8C2E08B21B8743A2B3AED07407DA76039F9AEF@nj7460exch002u.ho.lucent.com> <20040504030946.GA44550@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=big5 Content-Disposition: inline In-Reply-To: <20040504030946.GA44550@dragon.nuxi.com> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new at leafy.idv.tw cc: "'ports@FreeBSD.org'" cc: "Rajamani, Rajarajan \(Rajarajan\)" Subject: Re: portupgrade failure for vim-6.2.521 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 May 2004 03:31:48 -0000 On Mon, May 03, 2004 at 08:09:46PM -0700, David O'Brien wrote: > *sigh* Would SOMEONE PLEASE TEST THIS PATCH AND GET BACK TO ME??? > > This is the 5th time I've sent it out today and no responce from anyone > who has the skills to apply the patch and test. (it adds 502 to the > BADPATCHES list). I can't reproduce it locally. I'm starting to think > it is a 4.x-only problem. Ok, this works for me on a -stable system. Jiawei -- "Without the userland, the kernel is useless." --inspired by The Tao of Programming From owner-freebsd-ports@FreeBSD.ORG Mon May 3 21:19:07 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A645516A4CF for ; Mon, 3 May 2004 21:19:07 -0700 (PDT) Received: from avgw.bjut.edu.cn (avgw.bjut.edu.cn [202.112.78.85]) by mx1.FreeBSD.org (Postfix) with SMTP id 5A70843D49 for ; Mon, 3 May 2004 21:19:06 -0700 (PDT) (envelope-from liukang@bjpu.edu.cn) Received: from bjpu.edu.cn ([202.112.78.226]) by avgw.bjut.edu.cn (SAVSMTP 3.1.5.43) with SMTP id M2004050412182021818 for ; Tue, 04 May 2004 12:18:20 +0800 Received: (eyou send program); Tue, 04 May 2004 12:08:41 +0800 Message-ID: <283643721.08978@bjpu.edu.cn> X-EYOUMAIL-SMTPAUTH: liukang@bjpu.edu.cn Received: from unknown (HELO ssc) (unknown@221.218.18.148) by 202.112.78.226 with SMTP; Tue, 04 May 2004 12:08:41 +0800 From: "Kang Liu" To: , "'Rajamani, Rajarajan (Rajarajan)'" Date: Tue, 4 May 2004 12:28:43 +0800 X-Mailer: Microsoft Office Outlook, Build 11.0.5510 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 In-Reply-To: <283639664.28415@bjpu.edu.cn> Thread-Index: AcQxhAmdDaPVhorvRR6GQoF3CUbZcQACwH7A cc: ports@FreeBSD.org Subject: RE: portupgrade failure for vim-6.2.521 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 May 2004 04:19:07 -0000 Tested on FreeBSD 4.9-STABLE #69: Mon Mar 29 04:01:06 CST 2004 Seems ok :-) From owner-freebsd-ports@FreeBSD.ORG Mon May 3 21:21:44 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DEBA416A4CE for ; Mon, 3 May 2004 21:21:44 -0700 (PDT) Received: from usgrant.trismegistus.net (wbar19.dal1-4.26.171.138.dal1.dsl-verizon.net [4.26.171.138]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8439F43D1F for ; Mon, 3 May 2004 21:21:42 -0700 (PDT) (envelope-from hermes@trismegistus.net) Received: from sherman (sherman.trismegistus.net [192.168.0.12]) by usgrant.trismegistus.net (Postfix) with ESMTP id 1D64A753 for ; Mon, 3 May 2004 23:21:34 -0500 (CDT) Date: Mon, 3 May 2004 23:21:34 -0500 (CDT) From: Hermes Trismegistus To: FreeBSD ports Message-ID: <20040503231924.K68751@sherman.trismegistus.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: make index X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 May 2004 04:21:45 -0000 cvsup at 2300 (CDT) [root@sherman ports]> make index Generating INDEX-5 - please wait..Warning: Duplicate INDEX entry: freeciv-gtk-1.14.1 Cheers, J. Craig Woods UNIX/Linux Network/System Administration http://www.trismegistus.net/resume.htm Entropy requires no maintenance. From owner-freebsd-ports@FreeBSD.ORG Mon May 3 21:45:16 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 832DC16A4CE; Mon, 3 May 2004 21:45:16 -0700 (PDT) Received: from mail.daemonground.de (daemonground.de [217.160.129.149]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D04D43D41; Mon, 3 May 2004 21:45:16 -0700 (PDT) (envelope-from sascha@daemonground.de) Received: from localhost (localhost.localdomain [127.0.0.1]) by mail.daemonground.de (Postfix) with ESMTP id 9BCA18A000; Tue, 4 May 2004 06:45:14 +0200 (CEST) Received: from mail.daemonground.de ([127.0.0.1]) by localhost (daemonground.de [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 23776-03; Tue, 4 May 2004 06:45:13 +0200 (CEST) Received: from [172.17.52.8] (p4b23e3d4.np.schlund.de [212.227.35.75]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.daemonground.de (Postfix) with ESMTP id 0EC5389FFF; Tue, 4 May 2004 06:45:13 +0200 (CEST) From: Sascha Holzleiter To: David O'Brien In-Reply-To: <20040504030946.GA44550@dragon.nuxi.com> References: <1B8C2E08B21B8743A2B3AED07407DA76039F9AEF@nj7460exch002u.ho.lucent.com> <20040504030946.GA44550@dragon.nuxi.com> Content-Type: text/plain Message-Id: <1083645912.10944.8.camel@area51.cc-web.ma.schlund.de> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Tue, 04 May 2004 06:45:12 +0200 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at daemonground.de cc: ports@FreeBSD.org Subject: Re: portupgrade failure for vim-6.2.521 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 May 2004 04:45:16 -0000 On Tue, 2004-05-04 at 05:09, David O'Brien wrote: > On Mon, May 03, 2004 at 04:18:08PM -0400, Rajamani, Rajarajan (Rajarajan) wrote: > > I have vim-6.2.383 and am using portupgrade to upgrade to > > 6.2.251 and am getting the error given below. > > Is it due the space after prefix= ? > > > > Did anyone else see a problem similar to this ? > > *sigh* Would SOMEONE PLEASE TEST THIS PATCH AND GET BACK TO ME??? > > This is the 5th time I've sent it out today and no responce from anyone > who has the skills to apply the patch and test. (it adds 502 to the > BADPATCHES list). I can't reproduce it locally. I'm starting to think > it is a 4.x-only problem. > I had the same problem on a 5.2-CURRENT, so this wasn't 4.x only, but the patch fixed it. Thanks! -- Sascha From owner-freebsd-ports@FreeBSD.ORG Mon May 3 22:20:31 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F80916A4CE for ; Mon, 3 May 2004 22:20:31 -0700 (PDT) Received: from mtaw4.prodigy.net (mtaw4.prodigy.net [64.164.98.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6084F43D1D for ; Mon, 3 May 2004 22:20:31 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (a9e223a20acbc2818a7974e11b2536ad@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128]) by mtaw4.prodigy.net (8.12.10/8.12.10) with ESMTP id i445KTfj011156; Mon, 3 May 2004 22:20:30 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 5FDFB528DF; Mon, 3 May 2004 22:20:28 -0700 (PDT) Date: Mon, 3 May 2004 22:20:28 -0700 From: Kris Kennaway To: Hermes Trismegistus Message-ID: <20040504052028.GA71201@xor.obsecurity.org> References: <20040503231924.K68751@sherman.trismegistus.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="sdtB3X0nJg68CQEu" Content-Disposition: inline In-Reply-To: <20040503231924.K68751@sherman.trismegistus.net> User-Agent: Mutt/1.4.2.1i cc: FreeBSD ports Subject: Re: make index X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 May 2004 05:20:31 -0000 --sdtB3X0nJg68CQEu Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, May 03, 2004 at 11:21:34PM -0500, Hermes Trismegistus wrote: > cvsup at 2300 (CDT) >=20 > [root@sherman ports]> make index > Generating INDEX-5 - please wait..Warning: Duplicate INDEX entry: > freeciv-gtk-1.14.1 That's a warning, not an error...it comes because you have gtk installed, and the freeciv port detects this and changes its name. Kris --sdtB3X0nJg68CQEu Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAlygbWry0BWjoQKURAku6AKDduKtXFTLX0wZolqECnkzJAnPodQCgjeEs p4BcK9Qz+lUHPg4KQY5Io9k= =udqV -----END PGP SIGNATURE----- --sdtB3X0nJg68CQEu-- From owner-freebsd-ports@FreeBSD.ORG Tue May 4 00:40:33 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2878316A4CE; Tue, 4 May 2004 00:40:33 -0700 (PDT) Received: from carrick.bishnet.net (carrick.bishnet.net [217.204.9.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3E1343D2D; Tue, 4 May 2004 00:40:32 -0700 (PDT) (envelope-from tdb@carrick.bishnet.net) Received: from tdb by carrick.bishnet.net with local (Exim 4.32; FreeBSD) id 1BKuXU-0009tp-R8; Tue, 04 May 2004 08:40:28 +0100 Date: Tue, 4 May 2004 08:40:28 +0100 From: Tim Bishop To: David O'Brien Message-ID: <20040504074028.GA1748@carrick.bishnet.net> References: <1B8C2E08B21B8743A2B3AED07407DA76039F9AEF@nj7460exch002u.ho.lucent.com> <20040504030946.GA44550@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040504030946.GA44550@dragon.nuxi.com> User-Agent: Mutt/1.4.2.1i X-PGP-Key: 0x5AE7D984 X-PGP-Fingerprint: 1453 086E 9376 1A50 ECF6 AE05 7DCE D659 5AE7 D984 Sender: "T.D.Bishop" X-Bishnet-MailScanner-Information: Contact postmaster@bishnet.net X-Bishnet-MailScanner-VirusCheck: Found to be clean X-Bishnet-MailScanner-From: tdb@carrick.bishnet.net cc: ports@freebsd.org Subject: Re: portupgrade failure for vim-6.2.521 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 May 2004 07:40:33 -0000 On Mon, May 03, 2004 at 08:09:46PM -0700, David O'Brien wrote: > *sigh* Would SOMEONE PLEASE TEST THIS PATCH AND GET BACK TO ME??? > > This is the 5th time I've sent it out today and no responce from anyone > who has the skills to apply the patch and test. (it adds 502 to the > BADPATCHES list). I can't reproduce it locally. I'm starting to think > it is a 4.x-only problem. I can confirm the problem on a 5.2.1-RELEASE-p1 system with a current ports tree. I can also confirm that the patch fixes the problem. Cheers, Tim. > Index: Makefile > =================================================================== > RCS file: /home/pcvs/ports/editors/vim/Makefile,v > retrieving revision 1.252 > diff -u -u -0 -r1.252 Makefile > --- Makefile 2 May 2004 23:36:15 -0000 1.252 > +++ Makefile 3 May 2004 17:51:10 -0000 > @@ -21 +21 @@ > -BADPATCHES= 009 013 019 022 023 024 033 036 038 039 041 042 047 056 057 060 066 090 099 103 107 115 116 118 121 123 124 125 127 128 130 131 132 134 138 140 141 142 156 161 173 177 179 188 194 199 205 210 211 212 214 215 225 226 227 230 233 235 236 243 252 267 271 275 288 290 291 294 296 299 304 306 307 319 324 330 332 333 334 337 341 342 344 345 347 353 354 355 358 361 362 365 367 369 370 376 378 380 385 391 393 394 395 398 402 404 407 417 419 427 431 432 434 446 448 449 450 451 456 460 463 464 466 467 469 473 474 481 483 487 495 496 497 500 501 503 506 507 510 511 513 516 520 > +BADPATCHES= 009 013 019 022 023 024 033 036 038 039 041 042 047 056 057 060 066 090 099 103 107 115 116 118 121 123 124 125 127 128 130 131 132 134 138 140 141 142 156 161 173 177 179 188 194 199 205 210 211 212 214 215 225 226 227 230 233 235 236 243 252 267 271 275 288 290 291 294 296 299 304 306 307 319 324 330 332 333 334 337 341 342 344 345 347 353 354 355 358 361 362 365 367 369 370 376 378 380 385 391 393 394 395 398 402 404 407 417 419 427 431 432 434 446 448 449 450 451 456 460 463 464 466 467 469 473 474 481 483 487 495 496 497 500 501 502 503 506 507 510 511 513 516 520 -- Tim Bishop http://www.bishnet.net/tim PGP Key: 0x5AE7D984 From owner-freebsd-ports@FreeBSD.ORG Tue May 4 01:09:16 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BBE6316A4CE for ; Tue, 4 May 2004 01:09:16 -0700 (PDT) Received: from smtp.web.de (smtp08.web.de [217.72.192.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4796343D4C for ; Tue, 4 May 2004 01:09:16 -0700 (PDT) (envelope-from kay_lehmann@web.de) Received: from lehmann.in-dsl.de ([212.42.238.240] helo=web.de) by smtp.web.de with asmtp (TLSv1:RC4-MD5:128) (WEB.DE 4.101 #91) id 1BKuzJ-0008VY-00; Tue, 04 May 2004 10:09:14 +0200 Message-ID: <40975004.1040308@web.de> Date: Tue, 04 May 2004 10:10:44 +0200 From: Kay Lehmann User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; de-AT; rv:1.6) Gecko/20040405 X-Accept-Language: de-de, de, en-us, en MIME-Version: 1.0 To: Michael Nottebrock References: <200405032242.50902.michaelnottebrock@gmx.net> In-Reply-To: <200405032242.50902.michaelnottebrock@gmx.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: kay_lehmann@web.de cc: ports@freebsd.org Subject: Re: Can't update png X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 May 2004 08:09:16 -0000 Michael Nottebrock wrote: > ---> Upgrading 'png-1.2.5_3' to 'png-1.2.5_4' (graphics/png) > ---> Building '/usr/ports/graphics/png' > ===> Cleaning for png-1.2.5_4 > ===> png-1.2.5_4 has known vulnerabilities: > >>>libpng denial-of-service. > > Reference: > > >>>Please update your ports tree and try again. > > *** Error code 1 > > If I read VuXML right, 1.2.5_4 should be okay - what's missing here? > Running portaudit -F -d fixed this for me. greets, Kay From owner-freebsd-ports@FreeBSD.ORG Tue May 4 02:09:30 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C0AF16A4CE for ; Tue, 4 May 2004 02:09:30 -0700 (PDT) Received: from ctb-mesg6.saix.net (ctb-mesg6.saix.net [196.25.240.78]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E54143D2D for ; Tue, 4 May 2004 02:09:29 -0700 (PDT) (envelope-from reg@lantic.net) Received: from local (wpaw-ip-nas-1-p10.telkom-ipnet.co.za [155.239.120.10]) by ctb-mesg6.saix.net (Postfix) with ESMTP id EFA8455E0; Tue, 4 May 2004 11:09:20 +0200 (SAST) Received: from local (shale.local [192.168.0.1]) by local (8.12.11/8.12.11) with ESMTP id i449AiQK007923; Tue, 4 May 2004 11:10:44 +0200 (SAT) (envelope-from reg@local) Received: (from reg@localhost) by local (8.12.11/8.12.11/Submit) id i449AhGH007922; Tue, 4 May 2004 11:10:43 +0200 (SAT) (envelope-from reg) Date: Tue, 4 May 2004 11:10:43 +0200 From: Jeremy Lea To: freebsd-ports@FreeBSD.org Message-ID: <20040504091043.GA1051@shale.local> Mail-Followup-To: Jeremy Lea , freebsd-ports@FreeBSD.org, fpkg-devel@lists.sourceforge.net Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.1i cc: fpkg-devel@lists.sourceforge.net Subject: FreePKG: An alternative to the pkg_* tools X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 May 2004 09:09:30 -0000 Hi, Some time ago, I began to work on adding some features to the pkg_install tools. This work was mostly ignored by the FreeBSD community (except for the bits stolen and committed without attribution). There was some interest from openpackages.org, but that project has died... I have continued to work on these tools however, and have now registered a SourceForge project, as FreePKG. FreePKG is an almost complete re-write of the pkg_* tools, aimed at restructuring the code so that it is understandable and easy to use... It has the following features which are not available in the pkg_* tools. 1. Uses LIB_DEPEND and RUN_DEPEND style dependencies in packages, so that you can run alternate versions, of say ghostscript, without problems. 2. Can upgrade packages from one version to another. (So you don't have to reinstall when someone bumps a revision of something like glib). This should also allow the tools to be used to install parts of /usr/src as packages, which are automatically upgraded during an installworld, removing old files. (sendmail comes to mind). 3. Has a fairly carefully defined API to libfpkg, so that other programs can link with it and use it to install packages. I'm hoping to start work on a GTK+ based package tool soon. 4. Additional features such as NetBSD's file.db support, so that the tools can quickly detect conflicts. There is a patch for bsd.port.mk to. I intend moving nearly all of the INSTALL_SEQ and INSTALL_SU_SEQ targets into fpkg_create(1), so that it can do all of the munging in /var/db/pkg, and all of the plist processing. I have no intention of initiating any attempt to get these tools imported into FreeBSD. I've decided on a very different approach to the Ports/Packages collection to the way that things appear to be going. However, these tools are functional, and some people might find them useful. Additional developers/testers would be most welcome. I've been able to spend some time working on them in the past few weeks, and so they are currently in an alpha state, because I've changed a lot of things around. I am hoping to do a tarball release as soon as I figure out the SourceForge system for doing that ;-)... More info can be found at: http://sourceforge.net/projects/fpkg/ http://fpkg.sourceforge.net/ Regards, -Jeremy -- | What will people think when they hear that I'm a Jesus freak? --+-- What will people do when they find that it's true? | I don't really care if they label me a Jesus Freak, | There ain't no disguising the truth. - d c Talk From owner-freebsd-ports@FreeBSD.ORG Tue May 4 02:15:52 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61EA416A4CE for ; Tue, 4 May 2004 02:15:52 -0700 (PDT) Received: from pegasus.siol.net (pegasus.siol.net [193.189.160.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2484143D60 for ; Tue, 4 May 2004 02:15:51 -0700 (PDT) (envelope-from luka182@siol.net) Received: from kudu.siol.net ([10.10.10.22]) by pegasus.siol.net 1cbf71897a39210db31154c99f0b4628) with ESMTP id <20040504085720.HXYO797.pegasus@kudu.siol.net> for ; Tue, 4 May 2004 10:57:20 +0200 Received: from siol.net ([193.77.157.157]) by kudu.siol.net 1cbf71897a39210db31154c99f0b4628) with ESMTP id <20040504085612.LVDT8409.kudu@siol.net> for ; Tue, 4 May 2004 10:56:12 +0200 Message-ID: <40975ADF.4020401@siol.net> Date: Tue, 04 May 2004 10:57:03 +0200 From: Luka Kodric User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.6) Gecko/20040426 X-Accept-Language: en-us, en MIME-Version: 1.0 To: ports@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: vim-lite port -- BROKEN X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 May 2004 09:15:52 -0000 Hi! I try to upgrade vim-lite and i get this error: ===> Configuring for vim-lite-6.2.521 cd testdir; make -f Makefile clean rm -rf *.out *.rej *.orig test.log tiny.vim small.vim mbyte.vim test.ok X* rm -f *.o objects/* core vim.core vim xxd/*.o rm -f xxd/xxd auto/osdef.h auto/pathdef.c auto/if_perl.c rm -f conftest* *~ auto/link.sed if test -d po; then cd po; make prefix= clean; fi make: don't know how to make clean. Stop *** Error code 2 Stop in /usr/ports/editors/vim-lite/work/vim62/src. *** Error code 1 Stop in /usr/ports/editors/vim-lite. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade24491.7 make ** Fix the problem and try again. ** Listing the failed packages (*:skipped / !:failed) ! editors/vim-lite (vim-lite-6.2.383) (unknown build error) ---> Packages processed: 0 done, 179 ignored, 0 skipped and 1 failed I try to upgrade it on my server which runs FreeBSD 4.9 and on my desktop which is 5.2.1 and both faild... please fix this port Best regards -- Luka Kodric From owner-freebsd-ports@FreeBSD.ORG Tue May 4 02:42:48 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B19216A4CE for ; Tue, 4 May 2004 02:42:48 -0700 (PDT) Received: from mail0.jaist.ac.jp (mail0.jaist.ac.jp [150.65.5.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5058743D49 for ; Tue, 4 May 2004 02:42:42 -0700 (PDT) (envelope-from zrelli@jaist.ac.jp) Received: from smtp.jaist.ac.jp (proxy-isc.jaist.ac.jp [150.65.5.30]) by mail0.jaist.ac.jp (3.7W-jaist_mail) with ESMTP id i449gf520451 for ; Tue, 4 May 2004 18:42:41 +0900 (JST) Received: from kt-dhcp07.jaist.ac.jp (kt-dhcp07.jaist.ac.jp [150.65.239.70]) by smtp.jaist.ac.jp (3.7W-smtp) with ESMTP id i449gL204515 for ; Tue, 4 May 2004 18:42:21 +0900 (JST) From: Saber Organization: JAIST To: freebsd-ports@freebsd.org Date: Tue, 4 May 2004 18:42:16 +0000 User-Agent: KMail/1.5.4 MIME-Version: 1.0 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Content-Description: clearsigned data Content-Disposition: inline Message-Id: <200405041842.36656.zrelli@jaist.ac.jp> Subject: patch failure X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 May 2004 09:42:48 -0000 =2D----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 hello group , I installed FreeBSD-5.2.1 , last week , and i'm still discovering this new= =20 OS , i like the ports mechanism , but i'm still not experienced yet to=20 understand and manage errors related to this tool , about error messages ; i was installing "cryptplug" to use the=20 "gpgme-openpgp.so" plugin for managing signing and cryptoraphy in K-mail , i runned make build in the directory /usr/ports/security/cryptplug , and after some downloading and compliation i had this error message :=20 =2D -----------------------------------------------------------------------= =2D--------------- =3D=3D=3D> cryptplug-0.3.16 depends on executable: gpgme-config - found =3D=3D=3D> cryptplug-0.3.16 depends on executable: gpg-agent - not found =3D=3D=3D> Verifying install for gpg-agent in /usr/ports/security/newpg =3D=3D=3D> newpg-0.9.4_3 depends on executable: gmake - found =3D=3D=3D> newpg-0.9.4_3 depends on file: /usr/local/bin/autoconf - not f= ound =3D=3D=3D> Verifying install for /usr/local/bin/autoconf in /usr/ports/d= evel/ autoconf =3D=3D=3D> autoconf-2.53_1 depends on executable: gm4 - found =3D=3D=3D> autoconf-2.53_1 depends on executable: help2man - not found =3D=3D=3D> Verifying install for help2man in /usr/ports/misc/help2man =3D=3D=3D> Patching for help2man-1.29 =3D=3D=3D> Applying FreeBSD patches for help2man-1.29 Ignoring previously applied (or reversed) patch. 2 out of 2 hunks ignored--saving rejects to Makefile.in.rej >> Patch patch-Makefile.in failed to apply cleanly. *** Error code 1 Stop in /usr/ports/misc/help2man. *** Error code 1 Stop in /usr/ports/devel/autoconf. *** Error code 1 Stop in /usr/ports/security/newpg. *** Error code 1 Stop in /usr/ports/security/cryptplug. =2D -----------------------------------------------------------------------= =2D----------- It looks like the patch of the dependency help2man-1.29 failed . i would like to know what is the reasonfor that , and what can i do to corr= ect=20 and have this dependency patched correctly. Any Help or Comments are greately appreciated. Regards. =2D----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAl+QJuo0pq+On7GwRAnajAJ92ApkpL+BnKncsNm3YUoe1cGI8NgCcCwQM rf4yDTe4S0m6VJxTwFxp5R8=3D =3D1vCi =2D----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Tue May 4 02:56:48 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 02E0916A4CE for ; Tue, 4 May 2004 02:56:48 -0700 (PDT) Received: from avgw.bjut.edu.cn (avgw.bjut.edu.cn [202.112.78.85]) by mx1.FreeBSD.org (Postfix) with SMTP id 40A6443D49 for ; Tue, 4 May 2004 02:56:47 -0700 (PDT) (envelope-from liukang@bjpu.edu.cn) Received: from bjpu.edu.cn ([202.112.78.226]) by avgw.bjut.edu.cn (SAVSMTP 3.1.5.43) with SMTP id M2004050417564325206 for ; Tue, 04 May 2004 17:56:43 +0800 Received: (eyou send program); Tue, 04 May 2004 17:47:06 +0800 Message-ID: <283664026.21080@bjpu.edu.cn> X-EYOUMAIL-SMTPAUTH: liukang@bjpu.edu.cn Received: from unknown (HELO bjutliukang) (unknown@202.112.78.229) by 202.112.78.226 with SMTP; Tue, 04 May 2004 17:47:06 +0800 From: "Kang Liu" To: "'Luka Kodric'" , Date: Tue, 4 May 2004 17:56:28 +0800 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.5510 Thread-Index: AcQxt6Yt0OIRePN4To+LYY/i1kitnwABdHnA In-Reply-To: <283661831.20201@bjpu.edu.cn> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 Subject: RE: vim-lite port -- BROKEN X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 May 2004 09:56:48 -0000 I think the patch provided by obrien@ can fix your problem :-) You may find it in this mailing-list; he posted the patch a few hours ago. Kang From owner-freebsd-ports@FreeBSD.ORG Tue May 4 03:48:25 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CA9116A4CE for ; Tue, 4 May 2004 03:48:25 -0700 (PDT) Received: from smtp-out5.xs4all.nl (smtp-out5.xs4all.nl [194.109.24.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id D29C843D31 for ; Tue, 4 May 2004 03:48:24 -0700 (PDT) (envelope-from mhellwig@xs4all.nl) Received: from xs4all.nl (xinagnet.xs4all.nl [80.126.243.229]) by smtp-out5.xs4all.nl (8.12.10/8.12.10) with ESMTP id i44AmNJM034762 for ; Tue, 4 May 2004 12:48:24 +0200 (CEST) Message-ID: <409774F5.70706@xs4all.nl> Date: Tue, 04 May 2004 12:48:21 +0200 From: "Martin P. Hellwig" User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.6) Gecko/20040424 X-Accept-Language: en-us, en MIME-Version: 1.0 Cc: ports References: <20040504020512.M95873@ibl.bas.bg> In-Reply-To: <20040504020512.M95873@ibl.bas.bg> Content-Type: text/plain; charset=windows-1251; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: openwebmail fails with SpeedyCGI X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 May 2004 10:48:25 -0000 alexander botov wrote: > I use openwebmail from the ports tree and recently i've upgraded it to > 2.30 version with portupgrade . The default compiling options have > SpeedyCGI perl support (www/p5-CGI-SpeedyCGI). When I tried to test > the web interface i got following error in httpd-error.log : > Eeh no idea because it works at my site: SOFTWARE OS FreeBSD 4.10-BETA i386 PERL 5.00503 WebMail Open WebMail 2.30 20040103 ( Persistence ) But I did a fresh install and not a upgrade from a previous version, because I installed it at a new mail server, maybe that I can assisted you with comparing you're install with mine? MPH From owner-freebsd-ports@FreeBSD.ORG Tue May 4 04:00:48 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C343616A4EB for ; Tue, 4 May 2004 04:00:48 -0700 (PDT) Received: from smtp.dkm.cz (smtp.dkm.cz [62.24.64.34]) by mx1.FreeBSD.org (Postfix) with SMTP id 7657643D62 for ; Tue, 4 May 2004 04:00:25 -0700 (PDT) (envelope-from neuhauser@chello.cz) Received: (qmail 71347 invoked by uid 0); 4 May 2004 11:00:23 -0000 Received: from r3al16.mistral.cz (HELO isis.wad.cz) (213.220.229.16) by smtp.dkm.cz with SMTP; 4 May 2004 11:00:23 -0000 Received: by isis.wad.cz (Postfix, from userid 1001) id 513F62FDA03; Tue, 4 May 2004 13:00:23 +0200 (CEST) Date: Tue, 4 May 2004 13:00:23 +0200 From: Roman Neuhauser To: Luka Kodric Message-ID: <20040504110023.GA25004@isis.wad.cz> Mail-Followup-To: Luka Kodric , ports@FreeBSD.org References: <40975ADF.4020401@siol.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <40975ADF.4020401@siol.net> User-Agent: Mutt/1.5.6i cc: ports@FreeBSD.org Subject: Re: vim-lite port -- BROKEN X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 May 2004 11:00:49 -0000 # luka182@siol.net / 2004-05-04 10:57:03 +0200: > Hi! > > I try to upgrade vim-lite and i get this error: > > ===> Configuring for vim-lite-6.2.521 > cd testdir; make -f Makefile clean > rm -rf *.out *.rej *.orig test.log tiny.vim small.vim mbyte.vim test.ok X* > rm -f *.o objects/* core vim.core vim xxd/*.o > rm -f xxd/xxd auto/osdef.h auto/pathdef.c auto/if_perl.c > rm -f conftest* *~ auto/link.sed > if test -d po; then cd po; make prefix= clean; fi > make: don't know how to make clean. Stop > *** Error code 2 already reported. adding 502 to BADPATCHES should fix it. -- If you cc me or remove the list(s) completely I'll most likely ignore your message. see http://www.eyrie.org./~eagle/faqs/questions.html From owner-freebsd-ports@FreeBSD.ORG Tue May 4 05:12:20 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1273016A4CE; Tue, 4 May 2004 05:12:20 -0700 (PDT) Received: from basement.kutulu.org (pcp03610121pcs.longhl01.md.comcast.net [68.49.239.235]) by mx1.FreeBSD.org (Postfix) with ESMTP id 904AB43D39; Tue, 4 May 2004 05:12:19 -0700 (PDT) (envelope-from kutulu@kutulu.org) Received: from wombat.localnet (wombat.localnet [192.168.69.3]) by basement.kutulu.org (Postfix) with ESMTP id 26391A93E; Tue, 4 May 2004 08:12:16 -0400 (EDT) Received: by wombat.localnet (Postfix, from userid 1001) id 9A865B86E; Tue, 4 May 2004 08:12:15 -0400 (EDT) Date: Tue, 4 May 2004 08:12:15 -0400 From: Michael Edenfield To: David O'Brien Message-ID: <20040504121215.GA61746@wombat.localnet> Mail-Followup-To: David O'Brien , "Rajamani, Rajarajan (Rajarajan)" , "'ports@FreeBSD.org'" References: <1B8C2E08B21B8743A2B3AED07407DA76039F9AEF@nj7460exch002u.ho.lucent.com> <20040504030946.GA44550@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="r5Pyd7+fXNt84Ff3" Content-Disposition: inline In-Reply-To: <20040504030946.GA44550@dragon.nuxi.com> X-Mailer: Mutt http://www.mutt.org/ X-Accept-Language: en X-PGP-Key: http://www.kutulu.org/pgp/kutulu.asc X-PGP-Fingerprint: 1CE0 3C31 7013 D529 406D 37DC 09CC CD84 A46C 878F User-Agent: Mutt/1.5.6i cc: "'ports@FreeBSD.org'" cc: "Rajamani, Rajarajan \(Rajarajan\)" Subject: Re: portupgrade failure for vim-6.2.521 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 May 2004 12:12:20 -0000 --r5Pyd7+fXNt84Ff3 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable * David O'Brien [040503 23:10]: > On Mon, May 03, 2004 at 04:18:08PM -0400, Rajamani, Rajarajan (Rajarajan)= wrote: > > I have vim-6.2.383 and am using portupgrade to upgrade to=20 > > 6.2.251 and am getting the error given below. > > Is it due the space after prefix=3D ? > >=20 > > Did anyone else see a problem similar to this ? >=20 > *sigh* Would SOMEONE PLEASE TEST THIS PATCH AND GET BACK TO ME??? >=20 > This is the 5th time I've sent it out today and no responce from anyone > who has the skills to apply the patch and test. (it adds 502 to the > BADPATCHES list). I can't reproduce it locally. I'm starting to think > it is a 4.x-only problem. It's definitely not a 4.x-only problem, as I was able to reproduce it on -CURRENT and 5.2-RELEASE. I'm running with your patch right now. I'm highly confident that your patch will fix things, as patch 502 is definitely where the problem came in. --Mike --r5Pyd7+fXNt84Ff3 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAl4ifCczNhKRsh48RAhqCAJ4moQu+l33zCAyobOO0aWonYXfJNwCfWKuJ NaILxZGr8ZhGe/BCJv5CtEs= =11Yn -----END PGP SIGNATURE----- --r5Pyd7+fXNt84Ff3-- From owner-freebsd-ports@FreeBSD.ORG Tue May 4 06:04:59 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B08D216A4CF; Tue, 4 May 2004 06:04:59 -0700 (PDT) Received: from basement.kutulu.org (pcp03610121pcs.longhl01.md.comcast.net [68.49.239.235]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5726E43D2F; Tue, 4 May 2004 06:04:59 -0700 (PDT) (envelope-from kutulu@kutulu.org) Received: from wombat.localnet (wombat.localnet [192.168.69.3]) by basement.kutulu.org (Postfix) with ESMTP id 2B926A93E; Tue, 4 May 2004 09:04:58 -0400 (EDT) Received: by wombat.localnet (Postfix, from userid 1001) id ED876B86E; Tue, 4 May 2004 09:04:57 -0400 (EDT) Date: Tue, 4 May 2004 09:04:57 -0400 From: Michael Edenfield To: David O'Brien , "Rajamani, Rajarajan (Rajarajan)" , "'ports@FreeBSD.org'" Message-ID: <20040504130457.GB40628@wombat.localnet> Mail-Followup-To: David O'Brien , "Rajamani, Rajarajan (Rajarajan)" , "'ports@FreeBSD.org'" References: <1B8C2E08B21B8743A2B3AED07407DA76039F9AEF@nj7460exch002u.ho.lucent.com> <20040504030946.GA44550@dragon.nuxi.com> <20040504121215.GA61746@wombat.localnet> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="+pHx0qQiF2pBVqBT" Content-Disposition: inline In-Reply-To: <20040504121215.GA61746@wombat.localnet> X-Mailer: Mutt http://www.mutt.org/ X-Accept-Language: en X-PGP-Key: http://www.kutulu.org/pgp/kutulu.asc X-PGP-Fingerprint: 1CE0 3C31 7013 D529 406D 37DC 09CC CD84 A46C 878F User-Agent: Mutt/1.5.6i Subject: Re: portupgrade failure for vim-6.2.521 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 May 2004 13:04:59 -0000 --+pHx0qQiF2pBVqBT Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable * Michael Edenfield [040504 08:19]: > * David O'Brien [040503 23:10]: > > On Mon, May 03, 2004 at 04:18:08PM -0400, Rajamani, Rajarajan (Rajaraja= n) wrote: > > > I have vim-6.2.383 and am using portupgrade to upgrade to=20 > > > 6.2.251 and am getting the error given below. > > > Is it due the space after prefix=3D ? > > >=20 > > > Did anyone else see a problem similar to this ? > >=20 > > *sigh* Would SOMEONE PLEASE TEST THIS PATCH AND GET BACK TO ME??? > >=20 > > This is the 5th time I've sent it out today and no responce from anyone > > who has the skills to apply the patch and test. (it adds 502 to the > > BADPATCHES list). I can't reproduce it locally. I'm starting to think > > it is a 4.x-only problem. >=20 > It's definitely not a 4.x-only problem, as I was able to reproduce it on > -CURRENT and 5.2-RELEASE. I'm running with your patch right now. I'm > highly confident that your patch will fix things, as patch 502 is > definitely where the problem came in. Yes, the patch fixed the problem for all of my machines. Thanks! --Mike --+pHx0qQiF2pBVqBT Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAl5T5CczNhKRsh48RAjGcAJ9vTsRc30RZZyUcEFvpvCdiIBYUpgCfebno vsShl+kpfzqIAeAIrk3m0eQ= =l35r -----END PGP SIGNATURE----- --+pHx0qQiF2pBVqBT-- From owner-freebsd-ports@FreeBSD.ORG Tue May 4 08:20:11 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C11C716A4D5 for ; Tue, 4 May 2004 08:20:11 -0700 (PDT) Received: from salvador.pacific.net.sg (salvador.pacific.net.sg [203.120.90.219]) by mx1.FreeBSD.org (Postfix) with SMTP id 1AF4E43DB7 for ; Tue, 4 May 2004 08:20:02 -0700 (PDT) (envelope-from oceanare@pacific.net.sg) Received: (qmail 10645 invoked from network); 4 May 2004 15:20:00 -0000 Received: from unknown (HELO maxwell6.pacific.net.sg) (203.120.90.212) by salvador with SMTP; 4 May 2004 15:20:00 -0000 Received: from pacific.net.sg ([210.24.202.28]) by maxwell6.pacific.net.sg with ESMTP id <20040504151959.RRLO1186.maxwell6.pacific.net.sg@pacific.net.sg>; Tue, 4 May 2004 23:19:59 +0800 Message-ID: <4097B31D.9080205@pacific.net.sg> Date: Tue, 04 May 2004 23:13:33 +0800 From: Erich Dollansky Organization: oceanare pte ltd User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7b) Gecko/20040409 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Jeremy Lea References: <20040504091043.GA1051@shale.local> In-Reply-To: <20040504091043.GA1051@shale.local> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-ports@FreeBSD.org cc: fpkg-devel@lists.sourceforge.net Subject: Re: FreePKG: An alternative to the pkg_* tools X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 May 2004 15:20:11 -0000 Hi, Jeremy Lea wrote: > Hi, > > Some time ago, I began to work on adding some features to the > pkg_install tools. This work was mostly ignored by the FreeBSD > community (except for the bits stolen and committed without This is life. > FreePKG is an almost complete re-write of the pkg_* tools, aimed at > restructuring the code so that it is understandable and easy to use... > It has the following features which are not available in the pkg_* > tools. > > 1. Uses LIB_DEPEND and RUN_DEPEND style dependencies in packages, so > that you can run alternate versions, of say ghostscript, without > problems. This would be a very useful thing. > I have no intention of initiating any attempt to get these tools > imported into FreeBSD. I've decided on a very different approach to the > Ports/Packages collection to the way that things appear to be going. > However, these tools are functional, and some people might find them > useful. Additional developers/testers would be most welcome. So, how can a normal FreeBSD user make use of the tools? Erich From owner-freebsd-ports@FreeBSD.ORG Tue May 4 08:51:21 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9AF016A51F; Tue, 4 May 2004 08:51:20 -0700 (PDT) Received: from imf23aec.mail.bellsouth.net (imf23aec.mail.bellsouth.net [205.152.59.71]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB03F43D66; Tue, 4 May 2004 08:51:17 -0700 (PDT) (envelope-from ursamax@bellsouth.net) Received: from bellsouth.net ([216.78.56.163]) by imf23aec.mail.bellsouth.netESMTP <20040504155112.KSEQ11640.imf23aec.mail.bellsouth.net@bellsouth.net>; Tue, 4 May 2004 11:51:12 -0400 Message-ID: <4097BB19.4070409@bellsouth.net> Date: Tue, 04 May 2004 11:47:37 -0400 From: amg User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7b) Gecko/20040323 X-Accept-Language: en-us, en MIME-Version: 1.0 To: gnome@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: FreeBSD Port: mozilla-1.7.b_1,2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 May 2004 15:51:21 -0000 OS: FreeBSD 4.9 App: mozilla-1.7b_1,2 Symptom: When writing emails, there is no cursor I've looked several times in the "preferences" menu for a toggle for the cursor. This is kind of a pain in the butt - anyone have any ideas on what I've neglected? Thanks. august ursamax@bellsouth.net From owner-freebsd-ports@FreeBSD.ORG Tue May 4 09:02:07 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC51C16A4E9 for ; Tue, 4 May 2004 09:02:07 -0700 (PDT) Received: from hermes.webtent.net (hermes.webtent.net [192.216.106.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id C8CE143D53 for ; Tue, 4 May 2004 09:02:06 -0700 (PDT) (envelope-from robert@webtent.com) Received: from [192.168.1.11] (webtent.org [198.79.127.235]) by hermes.webtent.net (8.10.2/8.10.2) with ESMTP id i44G1sL21955; Tue, 4 May 2004 12:01:55 -0400 From: Robert Fitzpatrick To: Tillman Hodgson In-Reply-To: <20040503235504.GN80676@seekingfire.com> References: <1083340545.13018.48.camel@columbus> <409288AC.2E7BB16B@saeab.se> <1083608221.5295.20.camel@columbus> <20040503193701.GG80676@seekingfire.com> <1083618848.5293.36.camel@columbus> <20040503235504.GN80676@seekingfire.com> Content-Type: text/plain Organization: WebTent Networking, Inc. Message-Id: <1083686562.2468.5.camel@columbus> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Tue, 04 May 2004 12:02:42 -0400 Content-Transfer-Encoding: 7bit cc: Heimdal cc: FreeBSD Ports Subject: Re: Login prompt when starting services after FreeBSD port install X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 May 2004 16:02:07 -0000 On Mon, 2004-05-03 at 19:55, Tillman Hodgson wrote: > Which part was right? :-) I had HEIMDAL_HOME set to /usr at one point when it seemed to not install correctly. After figuring out the issue, I set it to /usr/local. However, I think a deinstall must have removed those files. > Restoring your files can be done from a backup or from something like a > "make installworld"[1]. Rebuilding the port after cleaning up > /etc/make.conf can install the Heimdal port files in the "normal" > location. > > Note that Heimdal is more-or-less integrated into FreeBSD already -- the > port isn't necessary (though it does provide some shiny bits over the > integrated version). See the Handbook chapter for details.[2] > > -T > > > 1. http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html Unfortunately, I only have a weeks worth of backup and this problem is older than that. Do I need to go through all the steps in this document or maybe just the section '21.4.1 The Canonical Way to Update Your System'? Thanks for your help... -- Robert From owner-freebsd-ports@FreeBSD.ORG Tue May 4 09:04:15 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D11A16A4CE for ; Tue, 4 May 2004 09:04:15 -0700 (PDT) Received: from ctb-mesg2.saix.net (ctb-mesg2.saix.net [196.25.240.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86EFF43D54 for ; Tue, 4 May 2004 09:04:12 -0700 (PDT) (envelope-from reg@lantic.net) Received: from local (wpaw-ip-nas-1-p59.telkom-ipnet.co.za [155.239.120.59]) by ctb-mesg2.saix.net (Postfix) with ESMTP id 92C5D170F; Tue, 4 May 2004 18:04:07 +0200 (SAST) Received: from local (shale.local [192.168.0.1]) by local (8.12.11/8.12.11) with ESMTP id i44G46Ix010380; Tue, 4 May 2004 18:04:06 +0200 (SAT) (envelope-from reg@local) Received: (from reg@localhost) by local (8.12.11/8.12.11/Submit) id i44G45BB010379; Tue, 4 May 2004 18:04:05 +0200 (SAT) (envelope-from reg) Date: Tue, 4 May 2004 18:04:05 +0200 From: Jeremy Lea To: Erich Dollansky Message-ID: <20040504160405.GA10349@shale.local> Mail-Followup-To: Jeremy Lea , Erich Dollansky , freebsd-ports@FreeBSD.ORG, fpkg-devel@lists.sourceforge.net References: <20040504091043.GA1051@shale.local> <4097B31D.9080205@pacific.net.sg> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4097B31D.9080205@pacific.net.sg> User-Agent: Mutt/1.4.2.1i cc: freebsd-ports@FreeBSD.ORG cc: fpkg-devel@lists.sourceforge.net Subject: Re: FreePKG: An alternative to the pkg_* tools X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 May 2004 16:04:15 -0000 Hi, On Tue, May 04, 2004 at 11:13:33PM +0800, Erich Dollansky wrote: > >I have no intention of initiating any attempt to get these tools > >imported into FreeBSD. I've decided on a very different approach to the > >Ports/Packages collection to the way that things appear to be going. > >However, these tools are functional, and some people might find them > >useful. Additional developers/testers would be most welcome. > > So, how can a normal FreeBSD user make use of the tools? Yes, I suppose that would be useful information. :-) The following steps are needed. Since this is alpha quality at the moment, I would not use this on anything which you have to have... 1. Download and build a CVS version of the tools from: cvs -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/fpkg login [Enter blank password] cvs -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/fpkg co freepkg cd freepkg make && make install These tools currently install into /root/bin. I should change that to /usr/sbin or /usr/local/sbin. The tools are named fpkg* to not conflict with the FreeBSD versions. Change Makefile.inc to change the install path. 2. Download and patch bsd.port.mk cd /tmp fetch http://fpkg.sourceforge.net/bsd.port.mk-fpkg.patch cd /usr/ports/Mk/ patch -I < /tmp/bsd.port.mk-fpkg.patch Change the path to the tools (search for PKG_CMD) if you changed it above. 3. The bad news: Rebuild all your ports, so that the new tools are used... Regards, -Jeremy -- FreeBSD - Because the best things in life are free... http://www.freebsd.org/ From owner-freebsd-ports@FreeBSD.ORG Tue May 4 09:36:51 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 350FC16A4CE; Tue, 4 May 2004 09:36:51 -0700 (PDT) Received: from sirius.firepipe.net (sirius.firepipe.net [69.13.116.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 065F043D5C; Tue, 4 May 2004 09:36:51 -0700 (PDT) (envelope-from will@csociety.org) Received: by sirius.firepipe.net (Postfix, from userid 1000) id 71DD317F23; Tue, 4 May 2004 11:36:50 -0500 (EST) Date: Tue, 4 May 2004 11:36:50 -0500 From: Will Andrews To: David O'Brien Message-ID: <20040504163650.GD34693@sirius.firepipe.net> Mail-Followup-To: David O'Brien , ports@FreeBSD.org References: <1B8C2E08B21B8743A2B3AED07407DA76039F9AEF@nj7460exch002u.ho.lucent.com> <20040504030946.GA44550@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="B2qqeP0Q02yiX6Uc" Content-Disposition: inline In-Reply-To: <20040504030946.GA44550@dragon.nuxi.com> User-Agent: Mutt/1.4.1i cc: ports@FreeBSD.org Subject: Re: portupgrade failure for vim-6.2.521 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 May 2004 16:36:51 -0000 --B2qqeP0Q02yiX6Uc Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, May 03, 2004 at 08:09:46PM -0700, David O'Brien wrote: > *sigh* Would SOMEONE PLEASE TEST THIS PATCH AND GET BACK TO ME??? This patch fixes it for me. Thanks, --=20 wca --B2qqeP0Q02yiX6Uc Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQFAl8ahF47idPgWcsURAstEAJoCBFUTplcJzTHth+zj8C0RE+uoTACdGAbp MQPGul4VbkcYdXYy2d2pNG4= =jxuX -----END PGP SIGNATURE----- --B2qqeP0Q02yiX6Uc-- From owner-freebsd-ports@FreeBSD.ORG Tue May 4 10:08:27 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3215E16A4CE for ; Tue, 4 May 2004 10:08:27 -0700 (PDT) Received: from mail.fluidhosting.com (mail1.fluidhosting.com [66.150.201.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id B428343D48 for ; Tue, 4 May 2004 10:08:26 -0700 (PDT) (envelope-from alexander@turcic.com) Received: (qmail 49667 invoked from network); 4 May 2004 17:10:24 -0000 Received: from unknown (HELO ?192.168.0.3?) (80.128.161.66) by mail.fluidhosting.com with SMTP for ; 4 May 2004 17:10:24 -0000 X-Envelope-To: riggs@rrr.de Date: Tue, 04 May 2004 19:08:08 +0200 From: Alexander Turcic To: riggs@rrr.de Message-Id: <20040504190341.8228.ALEXANDER@turcic.com> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: Becky! ver. 2.07.04 [en] cc: ports@FreeBSD.org Subject: FreeBSD Port: mplayer-0.90.0.10 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 May 2004 17:08:27 -0000 Hello! I was curious if you could provide update instruction for a more recent version of mplayer. Mplayer 0.90.x is obsolete according to the developers. I tried installing Mplayer directly from CVS on my FreeBSD 5.1-stable machine, but that didn't work so well (codecs werent detected). I'd be very grateful for some instruction here. Thanks in advance, Alexander From owner-freebsd-ports@FreeBSD.ORG Tue May 4 12:09:17 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 229D816A4CE for ; Tue, 4 May 2004 12:09:17 -0700 (PDT) Received: from smtp.dkm.cz (smtp.dkm.cz [62.24.64.34]) by mx1.FreeBSD.org (Postfix) with SMTP id C8A4B43D5A for ; Tue, 4 May 2004 12:09:15 -0700 (PDT) (envelope-from neuhauser@chello.cz) Received: (qmail 27574 invoked by uid 0); 4 May 2004 19:09:14 -0000 Received: from r3al16.mistral.cz (HELO isis.wad.cz) (213.220.229.16) by smtp.dkm.cz with SMTP; 4 May 2004 19:09:14 -0000 Received: by isis.wad.cz (Postfix, from userid 1001) id 7C24F2FDA01; Tue, 4 May 2004 21:09:14 +0200 (CEST) Date: Tue, 4 May 2004 21:09:14 +0200 From: Roman Neuhauser To: Pete Fritchman , freebsd-ports Message-ID: <20040504190914.GA87472@isis.wad.cz> Mail-Followup-To: Pete Fritchman , freebsd-ports References: <20040502050806.C12FB177CB@sirius.firepipe.net> <20040502070355.GA345@isis.wad.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040502070355.GA345@isis.wad.cz> User-Agent: Mutt/1.5.6i Subject: Re: [PATCH] small speedups in Mk/bsd.port.mk X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 May 2004 19:09:17 -0000 # neuhauser@chello.cz / 2004-05-02 09:03:55 +0200: > # petef@absolutbsd.org / 2004-05-02 00:08:06 -0500: > > * Sat, 01 May 2004 17:04:29 CDT - Pete Fritchman: > > | Nope, that seems to be fixed. I'll run with this version and let you > > | know if I run into any trouble. > > > > Found a bug with make checksum: Pete, any updates on the v3 patch? Have you found any new bugs or is everything ok? I use it on two machines without any problems I could see so far. Thanks again for your effort. -- If you cc me or remove the list(s) completely I'll most likely ignore your message. see http://www.eyrie.org./~eagle/faqs/questions.html From owner-freebsd-ports@FreeBSD.ORG Tue May 4 12:12:41 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 669DA16A4CE for ; Tue, 4 May 2004 12:12:41 -0700 (PDT) Received: from sirius.firepipe.net (sirius.firepipe.net [69.13.116.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3714343D58 for ; Tue, 4 May 2004 12:12:41 -0700 (PDT) (envelope-from petef@sirius.firepipe.net) Received: from sirius.firepipe.net (localhost.firepipe.net [127.0.0.1]) by sirius.firepipe.net (Postfix) with ESMTP id B76D617DBD for ; Tue, 4 May 2004 14:12:40 -0500 (EST) From: Pete Fritchman To: freebsd-ports In-Reply-To: Message from Roman Neuhauser of "Tue, 04 May 2004 21:09:14 +0200." <20040504190914.GA87472@isis.wad.cz> Date: Tue, 04 May 2004 14:12:40 -0500 Sender: petef@sirius.firepipe.net Message-Id: <20040504191240.B76D617DBD@sirius.firepipe.net> Subject: Re: [PATCH] small speedups in Mk/bsd.port.mk X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 May 2004 19:12:41 -0000 * Tue, 04 May 2004 21:09:14 +0200 - Roman Neuhauser: | Pete, any updates on the v3 patch? Have you found any new bugs or | is everything ok? I use it on two machines without any problems I | could see so far. So far, so good. I'll let you know if anything else crops up, good work on the patch. --pete From owner-freebsd-ports@FreeBSD.ORG Tue May 4 12:18:32 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A93D16A4CE for ; Tue, 4 May 2004 12:18:32 -0700 (PDT) Received: from smtp.orbitel.bg (smtp.orbitel.bg [195.24.32.22]) by mx1.FreeBSD.org (Postfix) with SMTP id 2BC7143D2D for ; Tue, 4 May 2004 12:18:30 -0700 (PDT) (envelope-from martin@mtweb.org) Received: (qmail 31752 invoked from network); 4 May 2004 19:18:28 -0000 Received: from localhost (127.0.0.1) by smtp.orbitel.bg with SMTP; 4 May 2004 19:18:28 -0000 Received: from smtp.orbitel.bg ([127.0.0.1]) by localhost (goliampraz.orbitel.bg [127.0.0.1]) (amavisd-new, port 10024) with SMTP id 21336-41 for ; Tue, 4 May 2004 22:18:25 +0300 (EEST) Received: (qmail 31628 invoked from network); 4 May 2004 19:18:22 -0000 Received: from unknown (HELO mtv.lan) (shaggy%vip.bg@82.147.153.245) by smtp.orbitel.bg with SMTP; 4 May 2004 19:18:22 -0000 From: Martin Tsachev To: ports@FreeBSD.org Date: Tue, 4 May 2004 22:17:48 +0300 User-Agent: KMail/1.5.4 MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_cx+lAmwKE4s5Mhx" Message-Id: <200405042217.48939.martin@mtweb.org> X-Virus-Scanned: by amavisd-new at orbitel.bg Subject: portsdb: index generation error (resend) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 May 2004 19:18:32 -0000 --Boundary-00=_cx+lAmwKE4s5Mhx Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Description: clearsigned data Content-Disposition: inline -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello, I get this after running cvsup and then portsdb -uU FreeBSD mtb.lan 5.2.1-RELEASE-p3 FreeBSD 5.2.1-RELEASE-p3 #0: Thu Apr 1 22:16:06 EEST 2004 martin@mtb.lan:/usr/obj/usr/src/sys/FW i386 Updating the ports index ... Generating INDEX.tmp - please wait..===> java/jai failed: "Makefile", line 38: Malformed conditional (${JAVA_OS} == "FreeBSD") "Makefile", line 38: Need an operator "Makefile", line 41: if-less endif "Makefile", line 41: Need an operator make: fatal errors encountered -- cannot continue *** Error code 1 1 error ******************************************************************** Before reporting this error, verify that you are running a supported version of FreeBSD (see http://www.FreeBSD.org/ports/) and that you have a complete and up-to-date ports collection. If so, then report the failure to ports@FreeBSD.org together with relevant details of your ports configuration (including FreeBSD version, environment and /etc/make.conf settings). ******************************************************************** *** Error code 1 Stop in /usr/ports. *** Error code 1 Stop in /usr/ports. failed to generate INDEX! portsdb: index generation error - -- Martin Tsachev http://www.mtweb.org -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (GNU/Linux) iD8DBQFAl+xcypytlz9Py3wRAjPfAJsH8+y+NDUSjDo4hO2Kvo0mYbOrqwCfSFWk bSrJUqrSLbrxUnxbUgizp6Q= =vnud -----END PGP SIGNATURE----- --Boundary-00=_cx+lAmwKE4s5Mhx Content-Type: text/plain; charset="us-ascii"; name="make.conf" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="make.conf" # -- use.perl generated deltas -- # # Created: Sat Mar 6 14:15:56 2004 # Setting to use base perl from ports: PERL_VER=5.6.1 PERL_VERSION=5.6.1 PERL_ARCH=mach NOPERL=yo NO_PERL=yo NO_PERL_WRAPPER=yo # $FreeBSD: src/share/examples/etc/make.conf,v 1.218 2003/09/24 04:19:26 gshapiro Exp $ # # NOTE: Please would any committer updating this file also update the # make.conf(5) manual page, if necessary, which is located in # src/share/man/man5/make.conf.5. # # /etc/make.conf, if present, will be read by make (see # /usr/share/mk/sys.mk). It allows you to override macro definitions # to make without changing your source tree, or anything the source # tree installs. # # This file must be in valid Makefile syntax. # # There are additional things you can put into /etc/make.conf. # You have to find those in the Makefiles and documentation of # the source tree. # # # The CPUTYPE variable controls which processor should be targeted for # generated code. This controls processor-specific optimizations in # certain code (currently only OpenSSL) as well as modifying the value # of CFLAGS to contain the appropriate optimization directive to gcc. # The automatic setting of CFLAGS may be overridden using the # NO_CPU_CFLAGS variable below. # Currently the following CPU types are recognized: # Intel x86 architecture: # (AMD CPUs) athlon-mp athlon-xp athlon-4 athlon-tbird athlon k6-3 # k6-2 k6 k5 # (Intel CPUs) p4 p3 p2 i686 i586/mmx i586 i486 i386 # Alpha/AXP architecture: ev67 ev6 pca56 ev56 ev5 ev45 ev4 # Intel ia64 architecture: itanium # # (?= allows to buildworld for a different CPUTYPE.) # CPUTYPE=p3 #NO_CPU_CFLAGS= true # Don't add -march= to CFLAGS automatically #NO_CPU_COPTFLAGS=true # Don't add -march= to COPTFLAGS automatically # # CFLAGS controls the compiler settings used when compiling C code. # Note that optimization settings above -O (-O2, ...) are not recommended # or supported for compiling the world or the kernel - please revert any # nonstandard optimization settings to "-O" before submitting bug reports # to the developers. # Note also that at this time the -O2 setting is known to produce BROKEN # CODE on the Alpha platform. # CFLAGS= -O -pipe # # CXXFLAGS controls the compiler settings used when compiling C++ code. # Note that CXXFLAGS is initially set to the value of CFLAGS. If you wish # to add to CXXFLAGS value, "+=" must be used rather than "=". Using "=" # alone will remove the often needed contents of CFLAGS from CXXFLAGS. # #CXXFLAGS+= -fmemoize-lookups -fsave-memoized # # MAKE_SHELL controls the shell used internally by make(1) to process the # command scripts in makefiles. Three shells are supported, sh, ksh, and # csh. Using sh is most common, and advised. Using ksh *may* work, but is # not guaranteed to. Using csh is absurd. The default is to use sh. # #MAKE_SHELL?=sh # # BDECFLAGS are a set of gcc warning settings that Bruce Evans has suggested # for use in developing FreeBSD and testing changes. They can be used by # putting "CFLAGS+=${BDECFLAGS}" in /etc/make.conf. -Wconversion is not # included here due to compiler bugs, e.g., mkdir()'s mode_t argument. # #BDECFLAGS= -W -Wall -ansi -pedantic -Wbad-function-cast -Wcast-align \ # -Wcast-qual -Wchar-subscripts -Winline \ # -Wmissing-prototypes -Wnested-externs -Wpointer-arith \ # -Wredundant-decls -Wshadow -Wstrict-prototypes -Wwrite-strings # # To compile just the kernel with special optimizations, you should use # this instead of CFLAGS (which is not applicable to kernel builds anyway). # There is very little to gain by using higher optimization levels, and doing # so can cause problems. # COPTFLAGS= -O -pipe # # To build the system compiler such that it forces high optimization levels to # a lower one. GCC -O2+ is known to trigger known optimizer bugs at various # times -- this is worse on the Alpha platform. The value assigned here will # be the highest optimization value used. #WANT_FORCE_OPTIMIZATION_DOWNGRADE=1 # # Compare before install #INSTALL=install -C # # Mtree will follow symlinks #MTREE_FOLLOWS_SYMLINKS= -L # # To build ppp with normal permissions #PPP_NOSUID= true # # To enable installing ssh(1) with the setuid bit turned on #ENABLE_SUID_SSH= true # # To enable installing newgrp(1) with the setuid bit turned on. # Without the setuid bit, newgrp cannot change users' groups. #ENABLE_SUID_NEWGRP= true # # To avoid building various parts of the base system: #NO_CVS= true # do not build CVS #NO_CXX= true # do not build C++ and friends NO_BIND= true # do not build BIND #NO_FORTRAN= true # do not build g77 and related libraries #NO_GDB= true # do not build GDB #NO_I4B= true # do not build isdn4bsd package #NO_IPFILTER= true # do not build IP Filter package #NO_KERBEROS= true # do not build and install Kerberos 5 (KTH Heimdal) #NO_LPR= true # do not build lpr and related programs #NO_MAILWRAPPER=true # do not build the mailwrapper(8) MTA selector #NO_MODULES= true # do not build modules with the kernel #NO_OBJC= true # do not build Objective C support #NO_OPENSSH= true # do not build OpenSSH #NO_OPENSSL= true # do not build OpenSSL (implies NO_KERBEROS and # NO_OPENSSH) NO_SENDMAIL= true # do not build sendmail and related programs #NO_SHAREDOCS= true # do not build the 4.4BSD legacy docs NO_TCSH= true # do not build and install /bin/csh (which is tcsh) #NO_X= true # do not compile in XWindows support (e.g. doscmd) #NOCRYPT= true # do not build any crypto code NOGAMES= true # do not build games (games/ subdir) #NOINFO= true # do not make or install info files #NOLIBC_R= true # do not build libc_r (re-entrant version of libc) #NOMAN= true # do not build manual pages NOPROFILE= true # Avoid compiling profiled libraries #NOSHARE= true # do not go into the share subdir # # To build sys/modules when building the world (our old way of doing things) #MODULES_WITH_WORLD=true # do not build modules when building kernel # # The list of modules to build instead of all of them. #MODULES_OVERRIDE= linux ipfw # # If you always want to build the Linux ext2fs kernel module. WANT_EXT2FS_MODULE=yes # # The following controls building optional IDEA code in libcrypto and # certain ports. Patents are involved - you must not use this unless # you either have a license or fall within patent 'fair use' # provisions. # # *** It is YOUR RESPONSIBILITY to determine if you can use this! *** # # IDEA is patented in the USA and many European countries - thought to # be OK to use for any non-commercial use. This is optional. MAKE_IDEA= YES # IDEA (128 bit symmetric encryption) # # If you do not want unformatted manual pages to be compressed # when they are installed: # #NOMANCOMPRESS= true # # # If you want the "compat" shared libraries installed as part of your normal # builds, uncomment these: # #COMPAT1X= yes #COMPAT20= yes #COMPAT21= yes #COMPAT22= yes #COMPAT3X= yes COMPAT4X= yes # # # Default format for system documentation, depends on your printer. # Set this to "ascii" for simple printers or screen # #PRINTERDEVICE= ps # # # How long to wait for a console keypress before booting the default kernel. # This value is approximately in milliseconds. Keypresses are accepted by the # BIOS before booting from disk, making it possible to give custom boot # parameters even when this is set to 0. # #BOOTWAIT=0 #BOOTWAIT=30000 # # By default, the system will always use the keyboard/video card as system # console. However, the boot blocks may be dynamically configured to use a # serial port in addition to or instead of the keyboard/video console. # # By default we use COM1 as our serial console port *if* we're going to use # a serial port as our console at all. Alter as necessary. # # COM1: = 0x3F8, COM2: = 0x2F8, COM3: = 0x3E8, COM4: = 0x2E8 # #BOOT_COMCONSOLE_PORT= 0x3F8 # # The default serial console speed is 9600. Set the speed to a larger value # for better interactive response. # #BOOT_COMCONSOLE_SPEED= 115200 # # By default the 'pxeboot' loader retrieves the kernel via NFS. Defining # this and recompiling /usr/src/sys/boot will cause it to retrieve the kernel # via TFTP. This allows pxeboot to load a custom BOOTP diskless kernel yet # still mount the server's '/' (i.e. rather than load the server's kernel). # #LOADER_TFTP_SUPPORT= YES # # # Kerberos 5 su (k5su) # If you want to use the k5su utility, define this to have it installed # set-user-ID. #ENABLE_SUID_K5SU= yes # # # Kerberos5 # If you want to install MIT Kerberos5 port somewhere other than /usr/local, # define this (this is also used to tell ssh1 that kerberos is needed): # #KRB5_HOME= /usr/local # # # CVSup update flags. Edit SUPFILE settings to reflect whichever distribution # file(s) you use on your site (see /usr/share/examples/cvsup/README for more # information on CVSup and these files). To use, do "make update" in /usr/src. # #SUP_UPDATE= yes # #SUP= /usr/local/bin/cvsup #SUPFLAGS= -g -L 2 #SUPHOST= cvsup.uk.FreeBSD.org #SUPFILE= /usr/share/examples/cvsup/standard-supfile #PORTSSUPFILE= /usr/share/examples/cvsup/ports-supfile #DOCSUPFILE= /usr/share/examples/cvsup/doc-supfile # # top(1) uses a hash table for the user names. The size of this hash # can be tuned to match the number of local users. The table size should # be a prime number approximately twice as large as the number of lines in # /etc/passwd. The default number is 20011. # #TOP_TABLE_SIZE= 101 # # Documentation # # The list of languages and encodings to build and install # #DOC_LANG= en_US.ISO8859-1 ru_RU.KOI8-R # # # sendmail # # The following sets the default m4 configuration file to use at # install time. Use with caution as a make install will overwrite # any existing /etc/mail/sendmail.cf. Note that SENDMAIL_CF is now # deprecated. The value should be a fully qualified path name. # #SENDMAIL_MC=/etc/mail/myconfig.mc # # The following sets the default m4 configuration file for mail # submission to use at install time. Use with caution as a make # install will overwrite any existing /etc/mail/submit.cf. The # value should be a fully qualified path name. # #SENDMAIL_SUBMIT_MC=/etc/mail/mysubmit.mc # # If you need to build additional .cf files during a make buildworld, # include the full paths to the .mc files in SENDMAIL_ADDITIONAL_MC. # #SENDMAIL_ADDITIONAL_MC=/etc/mail/foo.mc /etc/mail/bar.mc # # The following overrides the default location for the m4 configuration # files used to build a .cf file from a .mc file. # #SENDMAIL_CF_DIR=/usr/local/share/sendmail/cf # # Setting the following variable modifies the flags passed to m4 when # building a .cf file from a .mc file. It can be used to enable # features disabled by default. # #SENDMAIL_M4_FLAGS= # # Setting the following variables modifies the build environment for # sendmail and its related utilities. For example, SASL support can be # added with settings such as: # # with SASLv1: # SENDMAIL_CFLAGS=-I/usr/local/include/sasl1 -DSASL # SENDMAIL_LDFLAGS=-L/usr/local/lib # SENDMAIL_LDADD=-lsasl # # with SASLv2: # SENDMAIL_CFLAGS=-I/usr/local/include -DSASL=2 # SENDMAIL_LDFLAGS=-L/usr/local/lib # SENDMAIL_LDADD=-lsasl2 # # Note: If you are using Cyrus SASL with other applications which require # access to the sasldb file, you should add the following to your # sendmail.mc file: # # define(`confDONT_BLAME_SENDMAIL',`GroupReadableSASLDBFile') # #SENDMAIL_CFLAGS= #SENDMAIL_LDFLAGS= #SENDMAIL_LDADD= #SENDMAIL_DPADD= # # Setting SENDMAIL_SET_USER_ID will install the sendmail binary as a # set-user-ID root binary instead of a set-group-ID smmsp binary and will # prevent the installation of /etc/mail/submit.cf. # This is a deprecated mode of operation. See etc/mail/README for more # information. # #SENDMAIL_SET_USER_ID= # # The permissions to use on alias and map databases generated using # /etc/mail/Makefile. Defaults to 0640. # #SENDMAIL_MAP_PERMS= WITHOUT_IPV6=1 # -- use.perl generated deltas -- # # Created: Tue Apr 20 13:14:19 2004 # Setting to use base perl from ports: PERL_VER=5.6.1 PERL_VERSION=5.6.1 PERL_ARCH=mach NOPERL=yo NO_PERL=yo NO_PERL_WRAPPER=yo --Boundary-00=_cx+lAmwKE4s5Mhx-- From owner-freebsd-ports@FreeBSD.ORG Tue May 4 12:36:59 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED9C316A4CE; Tue, 4 May 2004 12:36:58 -0700 (PDT) Received: from mtaw6.prodigy.net (mtaw6.prodigy.net [64.164.98.56]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA1C643D45; Tue, 4 May 2004 12:36:58 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (7b7947c07915460f4552d1b185ba9484@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128]) by mtaw6.prodigy.net (8.12.10/8.12.10) with ESMTP id i44JZfT1018612; Tue, 4 May 2004 12:35:41 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id AA45F521DA; Tue, 4 May 2004 12:36:56 -0700 (PDT) Date: Tue, 4 May 2004 12:36:56 -0700 From: Kris Kennaway To: amg Message-ID: <20040504193656.GD19436@xor.obsecurity.org> References: <4097BB19.4070409@bellsouth.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="KdquIMZPjGJQvRdI" Content-Disposition: inline In-Reply-To: <4097BB19.4070409@bellsouth.net> User-Agent: Mutt/1.4.2.1i cc: gnome@FreeBSD.org cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: mozilla-1.7.b_1,2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 May 2004 19:36:59 -0000 --KdquIMZPjGJQvRdI Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, May 04, 2004 at 11:47:37AM -0400, amg wrote: >=20 > OS: FreeBSD 4.9 > App: mozilla-1.7b_1,2 > Symptom: When writing emails, > there is no cursor >=20 >=20 > I've looked several times in the > "preferences" menu for a toggle > for the cursor. This is kind of a > pain in the butt - anyone have any > ideas on what I've neglected? Your system is in "TV and Movies" mode, suitable for displaying your screen on film [1] Kris [2] [1] Have you ever noticed that computers shown on TV almost never have a cursor when someone is "typing"? :-) [2] Seriously, I don't know why this would be happening. Try a non-development release of mozilla, e.g. from the www/mozilla port. --KdquIMZPjGJQvRdI Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAl/DYWry0BWjoQKURApeHAKCyCv5xfvw4NLLvevVKPt/f2UuNfwCgvdu4 B5bjqvsoCFrL59EeVKG9jXo= =RD0R -----END PGP SIGNATURE----- --KdquIMZPjGJQvRdI-- From owner-freebsd-ports@FreeBSD.ORG Tue May 4 12:41:01 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7DCE316A4CE for ; Tue, 4 May 2004 12:41:01 -0700 (PDT) Received: from mail.seekingfire.com (coyote.seekingfire.com [24.72.10.212]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE96B43D46 for ; Tue, 4 May 2004 12:41:00 -0700 (PDT) (envelope-from tillman@seekingfire.com) Received: by mail.seekingfire.com (Postfix, from userid 500) id CCDD428D; Tue, 4 May 2004 13:40:59 -0600 (CST) Date: Tue, 4 May 2004 13:40:59 -0600 From: Tillman Hodgson To: Heimdal , FreeBSD Ports Message-ID: <20040504194059.GF80676@seekingfire.com> References: <1083340545.13018.48.camel@columbus> <409288AC.2E7BB16B@saeab.se> <1083608221.5295.20.camel@columbus> <20040503193701.GG80676@seekingfire.com> <1083618848.5293.36.camel@columbus> <20040503235504.GN80676@seekingfire.com> <1083686562.2468.5.camel@columbus> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1083686562.2468.5.camel@columbus> X-Habeas-SWE-1: winter into spring X-Habeas-SWE-2: brightly anticipated X-Habeas-SWE-3: like Habeas SWE (tm) X-Habeas-SWE-4: Copyright 2002 Habeas (tm) X-Habeas-SWE-5: Sender Warranted Email (SWE) (tm). The sender of this X-Habeas-SWE-6: email in exchange for a license for this Habeas X-Habeas-SWE-7: warrant mark warrants that this is a Habeas Compliant X-Habeas-SWE-8: Message (HCM) and not spam. Please report use of this X-Habeas-SWE-9: mark in spam to . X-GPG-Key-ID: 828AFC7B X-GPG-Fingerprint: 5584 14BA C9EB 1524 0E68 F543 0F0A 7FBC 828A FC7B X-GPG-Key: http://www.seekingfire.com/gpg_key.asc X-Urban-Legend: There is lots of hidden information in headers User-Agent: Mutt/1.5.6i Subject: Re: Login prompt when starting services after FreeBSD port install X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 May 2004 19:41:01 -0000 On Tue, May 04, 2004 at 12:02:42PM -0400, Robert Fitzpatrick wrote: > On Mon, 2004-05-03 at 19:55, Tillman Hodgson wrote: > > Which part was right? :-) > > I had HEIMDAL_HOME set to /usr at one point when it seemed to not > install correctly. After figuring out the issue, I set it to /usr/local. > However, I think a deinstall must have removed those files. That definitely sounds like the problem then. > > Restoring your files can be done from a backup or from something like a > > "make installworld"[1]. Rebuilding the port after cleaning up > > /etc/make.conf can install the Heimdal port files in the "normal" > > location. > > > > Note that Heimdal is more-or-less integrated into FreeBSD already -- the > > port isn't necessary (though it does provide some shiny bits over the > > integrated version). See the Handbook chapter for details.[2] > > > > 1. http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html > > Unfortunately, I only have a weeks worth of backup and this problem is > older than that. Do I need to go through all the steps in this document > or maybe just the section '21.4.1 The Canonical Way to Update Your > System'? If you've on a "release" install, and arent' following -stable or -current, you might be able to get the files from your original installation media. > Thanks for your help... No problem. I'm rather fond of Kerberos :-) -T -- If you scramble about in search of inner peace, you will lose your inner peace. Lao-Tzu From owner-freebsd-ports@FreeBSD.ORG Tue May 4 13:16:11 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E06216A4CF for ; Tue, 4 May 2004 13:16:11 -0700 (PDT) Received: from pegasus.siol.net (pegasus.siol.net [193.189.160.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E0CD43D2D for ; Tue, 4 May 2004 13:16:06 -0700 (PDT) (envelope-from luka182@siol.net) Received: from kudu.siol.net ([10.10.10.22]) by pegasus.siol.net 1cbf71897a39210db31154c99f0b4628) with ESMTP id <20040504201601.PGBH797.pegasus@kudu.siol.net> for ; Tue, 4 May 2004 22:16:01 +0200 Received: from siol.net ([193.77.157.157]) by kudu.siol.net 1cbf71897a39210db31154c99f0b4628) with ESMTP id <20040504201601.BFFC8409.kudu@siol.net> for ; Tue, 4 May 2004 22:16:01 +0200 Message-ID: <4097FA31.3040502@siol.net> Date: Tue, 04 May 2004 22:16:49 +0200 From: Luka Kodric User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.6) Gecko/20040426 X-Accept-Language: en-us, en MIME-Version: 1.0 To: ports@FreeBSD.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Duplicate INDEX entry X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 May 2004 20:16:11 -0000 Hi! When i cvsup current ports tree and then run portsdb -Uu i always get this warinig: Warning: Duplicate INDEX entry: freeciv-gtk2-1.14.1 i wonder what is this warning all about and how i can fix it? best reagrds -- Luka Kodric From owner-freebsd-ports@FreeBSD.ORG Tue May 4 14:47:29 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E785016A4CE for ; Tue, 4 May 2004 14:47:29 -0700 (PDT) Received: from web13521.mail.yahoo.com (web13521.mail.yahoo.com [216.136.174.0]) by mx1.FreeBSD.org (Postfix) with SMTP id CFE4743D2D for ; Tue, 4 May 2004 14:47:29 -0700 (PDT) (envelope-from dyeske@yahoo.com) Message-ID: <20040504201227.61293.qmail@web13521.mail.yahoo.com> Received: from [68.114.32.23] by web13521.mail.yahoo.com via HTTP; Tue, 04 May 2004 13:12:27 PDT Date: Tue, 4 May 2004 13:12:27 -0700 (PDT) From: David Yeske To: freebsd-ports@freebsd.org In-Reply-To: <200405032247.10996.michaelnottebrock@gmx.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: dyeske@yahoo.com Subject: Re: reallyslick failing X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 May 2004 21:47:30 -0000 I have updated the reallyslick port to use openal, and I will submit it after more testing. Skyrocket appears to core dump every time on FreeBSD current. I haven't looked at the core though. Has anyone else seen this? Regards, David Yeske From owner-freebsd-ports@FreeBSD.ORG Tue May 4 14:58:51 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3AD4F16A4CE; Tue, 4 May 2004 14:58:51 -0700 (PDT) Received: from mail.relia.net (mail.relia.net [207.173.156.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11A5943D41; Tue, 4 May 2004 14:58:51 -0700 (PDT) (envelope-from joe@joe-lewis.com) Received: from customercare.relia.net ([207.173.156.19] helo=joe-lewis.com) by mail.relia.net (Exim 4.24 #1 (FreeBSD 4.7)) protocol: esmtp id 1BL7wA-0006yD-AF ; Tue, 04 May 2004 15:58:50 -0600 Message-ID: <4098138A.1080103@joe-lewis.com> Date: Tue, 04 May 2004 16:04:58 -0600 From: Joe Lewis User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.4b) Gecko/20030507 X-Accept-Language: en-us, en MIME-Version: 1.0 To: roger@FreeBSD.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: FreeBSD Port: pwlib-1.5.0_4 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 May 2004 21:58:51 -0000 I would like to install the net/asterisk port, which uses the pwlib port. On the pwlib port, I am getting a "pwlib-1.5.0_4 is forbidden:" error, and I believe this is due to vulnerabilities in the past. Is there an additional port version or pwlib due out soon that will allow me to install the asterisk port? (BTW, the ports I am trying from were fresh as of today, and it is on 5.2 RELEASE). Joe From owner-freebsd-ports@FreeBSD.ORG Tue May 4 15:08:40 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F2F6116A4CE for ; Tue, 4 May 2004 15:08:39 -0700 (PDT) Received: from meitner.wh.uni-dortmund.de (meitner.wh.Uni-Dortmund.DE [129.217.129.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93CAA43D31 for ; Tue, 4 May 2004 15:08:39 -0700 (PDT) (envelope-from michaelnottebrock@gmx.net) Received: from lofi.dyndns.org (pc2-105.intern.meitner [10.3.12.105]) by meitner.wh.uni-dortmund.de (Postfix) with ESMTP id 81DB51675ED; Wed, 5 May 2004 00:08:38 +0200 (CEST) Received: from [192.168.8.4] (kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.10/8.12.10) with ESMTP id i44M8XTd060078 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Wed, 5 May 2004 00:08:34 +0200 (CEST) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: freebsd-ports@freebsd.org Date: Wed, 5 May 2004 00:08:29 +0200 User-Agent: KMail/1.6.2 References: <20040504201227.61293.qmail@web13521.mail.yahoo.com> In-Reply-To: <20040504201227.61293.qmail@web13521.mail.yahoo.com> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_gRBmAWkon4XKUSG"; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200405050008.32966.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new cc: David Yeske Subject: Re: reallyslick failing X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 May 2004 22:08:40 -0000 --Boundary-02=_gRBmAWkon4XKUSG Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Tuesday 04 May 2004 22:12, David Yeske wrote: > I have updated the reallyslick port to use openal, and I will submit it > after more testing. Skyrocket appears to core dump every time on FreeBSD > current. I haven't looked at the core though. Has anyone else seen this? Here (4.10-Prerelease), practically every screensaver from reallyslick=20 segfaults at random - however, I recently got a second head going and since= =20 then, my XFree86 is DRI-disabled, so I can't do any really useful testing=20 right now. =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --Boundary-02=_gRBmAWkon4XKUSG Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQBAmBRgXhc68WspdLARAlOMAJ9bym9w7O9Zyk3gwIbkJoISkm6TYACcCslb J9HGbWc8GU8Mi8CmVd0wSzo= =zqzz -----END PGP SIGNATURE----- --Boundary-02=_gRBmAWkon4XKUSG-- From owner-freebsd-ports@FreeBSD.ORG Tue May 4 15:44:07 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0162916A4D1 for ; Tue, 4 May 2004 15:44:07 -0700 (PDT) Received: from ctb-mesg3.saix.net (ctb-mesg3.saix.net [196.25.240.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E1D943D5C for ; Tue, 4 May 2004 15:44:06 -0700 (PDT) (envelope-from reg@lantic.net) Received: from local (wpaw-ip-nas-1-p217.telkom-ipnet.co.za [155.239.120.217]) by ctb-mesg3.saix.net (Postfix) with ESMTP id 3B6E53E15 for ; Wed, 5 May 2004 00:44:02 +0200 (SAST) Received: from local (shale.local [192.168.0.1]) by local (8.12.11/8.12.11) with ESMTP id i44Mi0Au013917 for ; Wed, 5 May 2004 00:44:01 +0200 (SAT) (envelope-from reg@local) Received: (from reg@localhost) by local (8.12.11/8.12.11/Submit) id i44Mi0XR013916 for freebsd-ports@FreeBSD.org; Wed, 5 May 2004 00:44:00 +0200 (SAT) (envelope-from reg) Date: Wed, 5 May 2004 00:44:00 +0200 From: Jeremy Lea To: freebsd-ports@FreeBSD.org Message-ID: <20040504224400.GC10349@shale.local> Mail-Followup-To: Jeremy Lea , freebsd-ports@FreeBSD.org References: <20040504091043.GA1051@shale.local> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040504091043.GA1051@shale.local> User-Agent: Mutt/1.4.2.1i Subject: Re: FreePKG: An alternative to the pkg_* tools X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 May 2004 22:44:07 -0000 Hi, On Tue, May 04, 2004 at 11:10:43AM +0200, Jeremy Lea wrote: > Some time ago, I began to work on adding some features to the > pkg_install tools. This work was mostly ignored by the FreeBSD > community (except for the bits stolen and committed without > attribution). My apologies to the group and people concerned on this... It has been pointed out to me that I was CC'ed on the changes, and never responded... I don't recall ever reading the thread, so it is quite possible it got eaten by a mailing error. Apologies again, -Jeremy -- FreeBSD - Because the best things in life are free... http://www.freebsd.org/ From owner-freebsd-ports@FreeBSD.ORG Wed May 5 00:28:07 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A44C016A4CE for ; Wed, 5 May 2004 00:28:07 -0700 (PDT) Received: from sm.luth.se (lisa.sm.luth.se [130.240.3.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1669843D39 for ; Wed, 5 May 2004 00:28:06 -0700 (PDT) (envelope-from klockar@sm.luth.se) Received: from delta2.sm.luth.se (delta2.sm.luth.se [130.240.45.239]) by sm.luth.se (8.12.10/8.12.10) with ESMTP id i457S42g027479 for ; Wed, 5 May 2004 09:28:04 +0200 (MEST) Received: from delta2.sm.luth.se (localhost [127.0.0.1]) by delta2.sm.luth.se (8.12.8+Sun/8.12.7) with ESMTP id i457S4US021618 for ; Wed, 5 May 2004 09:28:04 +0200 (MEST) Received: (from klockar@localhost) by delta2.sm.luth.se (8.12.8+Sun/8.12.10/Submit) id i457S3CI021617 for ports@freebsd.org; Wed, 5 May 2004 09:28:03 +0200 (MEST) Date: Wed, 5 May 2004 09:28:03 +0200 From: Tomas Klockar To: ports@freebsd.org Message-ID: <20040505072803.GA21584@delta2.sm.luth.se> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i Subject: Comparisons always true/false While compiling libxml X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 May 2004 07:28:07 -0000 Hi, when I compiled libxml on my fresh Freebsd 5.2.1 system(installed yesterday) I got alot of warnings: comparison is always true or comparison is always false due to ... Just wanted you to know /Tomas -- Tomas Klockar From owner-freebsd-ports@FreeBSD.ORG Wed May 5 00:29:45 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 26B8916A4CE for ; Wed, 5 May 2004 00:29:45 -0700 (PDT) Received: from panther.mmj.dk (panther.mmj.dk [62.79.83.143]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B5D543D2D for ; Wed, 5 May 2004 00:29:44 -0700 (PDT) (envelope-from mmj@mmj.dk) Received: by panther.mmj.dk (Postfix, from userid 500) id 0412EF3285; Wed, 5 May 2004 09:29:43 +0200 (CEST) Date: Wed, 5 May 2004 09:29:42 +0200 From: Mads Martin Joergensen To: Tomas Klockar Message-ID: <20040505072942.GA66231@panther.mmj.dk> References: <20040505072803.GA21584@delta2.sm.luth.se> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040505072803.GA21584@delta2.sm.luth.se> User-Agent: Mutt/1.5.6i cc: ports@freebsd.org Subject: Re: Comparisons always true/false While compiling libxml X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 May 2004 07:29:45 -0000 * Tomas Klockar [May 05. 2004 09:28]: > Hi, > when I compiled libxml on my fresh Freebsd 5.2.1 system(installed > yesterday) I got alot of warnings: comparison is always true or > comparison is always false due to ... What system is this? -- Mads Martin Joergensen, http://mmj.dk "Why make things difficult, when it is possible to make them cryptic and totally illogical, with just a little bit more effort?" -- A. P. J. From owner-freebsd-ports@FreeBSD.ORG Wed May 5 01:00:04 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0409116A4CE for ; Wed, 5 May 2004 01:00:04 -0700 (PDT) Received: from mta7.pltn13.pbi.net (mta7.pltn13.pbi.net [64.164.98.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF35D43D45 for ; Wed, 5 May 2004 01:00:03 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (0eaf0e8702857dd877147f51d4115680@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128])i45801VW006846; Wed, 5 May 2004 01:00:01 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id EA2CE527B1; Wed, 5 May 2004 00:59:59 -0700 (PDT) Date: Wed, 5 May 2004 00:59:59 -0700 From: Kris Kennaway To: Tomas Klockar Message-ID: <20040505075959.GA60929@xor.obsecurity.org> References: <20040505072803.GA21584@delta2.sm.luth.se> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="liOOAslEiF7prFVr" Content-Disposition: inline In-Reply-To: <20040505072803.GA21584@delta2.sm.luth.se> User-Agent: Mutt/1.4.2.1i cc: ports@freebsd.org Subject: Re: Comparisons always true/false While compiling libxml X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 May 2004 08:00:04 -0000 --liOOAslEiF7prFVr Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Wed, May 05, 2004 at 09:28:03AM +0200, Tomas Klockar wrote: > Hi, > when I compiled libxml on my fresh Freebsd 5.2.1 system(installed yesterday) > I got alot of warnings: comparison is always true or comparison is always false due to ... Please report this to the software authors. Kris --liOOAslEiF7prFVr Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAmJ7/Wry0BWjoQKURAodeAJ95Xx0SEZeIXNjA8QmfBYIfMdgmNACbBs+w 2U5UFgqxrWEgmgKAKlm4ZDI= =Xs74 -----END PGP SIGNATURE----- --liOOAslEiF7prFVr-- From owner-freebsd-ports@FreeBSD.ORG Wed May 5 01:02:39 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D04916A4CE for ; Wed, 5 May 2004 01:02:39 -0700 (PDT) Received: from sm.luth.se (lisa.sm.luth.se [130.240.3.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0503C43D31 for ; Wed, 5 May 2004 01:02:38 -0700 (PDT) (envelope-from klockar@sm.luth.se) Received: from delta2.sm.luth.se (delta2.sm.luth.se [130.240.45.239]) by sm.luth.se (8.12.10/8.12.10) with ESMTP id i4582a2g016133; Wed, 5 May 2004 10:02:36 +0200 (MEST) Received: from delta2.sm.luth.se (localhost [127.0.0.1]) by delta2.sm.luth.se (8.12.8+Sun/8.12.7) with ESMTP id i4582aUS021870; Wed, 5 May 2004 10:02:36 +0200 (MEST) Received: (from klockar@localhost) by delta2.sm.luth.se (8.12.8+Sun/8.12.10/Submit) id i4582aUY021869; Wed, 5 May 2004 10:02:36 +0200 (MEST) Date: Wed, 5 May 2004 10:02:36 +0200 From: Tomas Klockar To: Mads Martin Joergensen Message-ID: <20040505080236.GB21584@delta2.sm.luth.se> References: <20040505072803.GA21584@delta2.sm.luth.se> <20040505072942.GA66231@panther.mmj.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040505072942.GA66231@panther.mmj.dk> User-Agent: Mutt/1.4i cc: ports@freebsd.org cc: Tomas Klockar Subject: Re: Comparisons always true/false While compiling libxml X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 May 2004 08:02:39 -0000 I downloaded the FreeBSD 5.2.1 RELEASE floppies and installed custom-> base did a cvsup on the portstree The machine is a HP vectra VL420 MT >From dmesg ------8<--------8<---------8<----------8<-------- ACPI APIC Table: Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: Intel(R) Pentium(R) 4 CPU 1.70GHz (1693.73-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0xf12 Stepping = 2 Features=0x3febfbff real memory = 805240832 (767 MB) avail memory = 772472832 (736 MB) ioapic0 irqs 0-23 on motherboard Pentium Pro MTRR support enabled npx0: [FAST] npx0: on motherboard npx0: INT 16 interface acpi0: on motherboard pcibios: BIOS version 2.10 Using $PIR table, 6 entries at 0xc00f7350 acpi0: Power Button (fixed) Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 ACPI-1287: *** Error: Method execution failed [\\_SB_.PCI0.MDET] (Node 0xc235bae0), AE_AML_REGION_LIMIT ---------8<-------8<--------8<--------8<-------- >From uname -a FreeBSD sm-pc321.sm.luth.se 5.2.1-RELEASE FreeBSD 5.2.1-RELEASE #0: Mon Feb 23 20:45:55 GMT 2004 root@wv1u.btc.adaptec.com:/usr/obj/usr/src/sys/GENERIC i386 On Wed, May 05, 2004 at 09:29:42AM +0200, Mads Martin Joergensen wrote: > * Tomas Klockar [May 05. 2004 09:28]: > > Hi, > > when I compiled libxml on my fresh Freebsd 5.2.1 system(installed > > yesterday) I got alot of warnings: comparison is always true or > > comparison is always false due to ... > > What system is this? > > -- > Mads Martin Joergensen, http://mmj.dk > "Why make things difficult, when it is possible to make them cryptic > and totally illogical, with just a little bit more effort?" > -- A. P. J. -- Tomas Klockar Room 3019 Phone 493064 From owner-freebsd-ports@FreeBSD.ORG Wed May 5 04:41:34 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 701E516A4CE for ; Wed, 5 May 2004 04:41:34 -0700 (PDT) Received: from hermes.webtent.net (hermes.webtent.net [192.216.106.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD5F643D48 for ; Wed, 5 May 2004 04:41:31 -0700 (PDT) (envelope-from robert@webtent.com) Received: from [192.168.1.11] (webtent.org [198.79.127.235]) by hermes.webtent.net (8.10.2/8.10.2) with ESMTP id i45BfOk07983; Wed, 5 May 2004 07:41:25 -0400 From: Robert Fitzpatrick To: Tillman Hodgson In-Reply-To: <20040504194059.GF80676@seekingfire.com> References: <1083340545.13018.48.camel@columbus> <409288AC.2E7BB16B@saeab.se> <1083608221.5295.20.camel@columbus> <20040503193701.GG80676@seekingfire.com> <1083618848.5293.36.camel@columbus><1083686562.2468.5.camel@columbus> <20040504194059.GF80676@seekingfire.com> Content-Type: text/plain Organization: WebTent Networking, Inc. Message-Id: <1083757322.2678.8.camel@columbus> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Wed, 05 May 2004 07:42:03 -0400 Content-Transfer-Encoding: 7bit cc: Heimdal cc: FreeBSD Ports Subject: Re: Login prompt when starting services after FreeBSD port install X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 May 2004 11:41:34 -0000 On Tue, 2004-05-04 at 15:40, Tillman Hodgson wrote: > If you've on a "release" install, and arent' following -stable or > -current, you might be able to get the files from your original > installation media. Yes, I am on 5.2.1-RELEASE. The files I know are missing so far are /usr/bin/login and /usr/bin/su. Do you know of other files that this would have cause a problem? Maybe I should restore all files to that directory. But would there be any files in other directories? Thanks again... -- Robert From owner-freebsd-ports@FreeBSD.ORG Wed May 5 06:03:33 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D98DF16A4CF for ; Wed, 5 May 2004 06:03:33 -0700 (PDT) Received: from www.citello.it (host170-131.pool80117.interbusiness.it [80.117.131.170]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2242843D45 for ; Wed, 5 May 2004 06:03:33 -0700 (PDT) (envelope-from molter@tin.it) Received: from gattaccio.codalunga (ANice-205-1-6-83.w81-53.abo.wanadoo.fr [81.53.77.83]) by www.citello.it (Postfix) with ESMTP id 57DEFD4C for ; Wed, 5 May 2004 15:03:27 +0200 (CEST) Received: by gattaccio.codalunga (Postfix, from userid 1001) id 58FCE412D; Wed, 5 May 2004 14:57:18 +0200 (CEST) Date: Wed, 5 May 2004 14:57:17 +0200 From: Marco Molteni To: freebsd-ports@freebsd.org Message-Id: <20040505145717.26d629bd@localhost> X-Mailer: Sylpheed version 0.9.9claws (GTK+ 1.2.10; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: easy PR to close: [UPDATE] misc/py-pexpect to latest version (0.99 -> 0.999) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 May 2004 13:03:34 -0000 Please have a look at UPDATE] misc/py-pexpect to latest version (0.99 -> 0.999) http://www.freebsd.org/cgi/query-pr.cgi?pr=ports%2F65846 thanks marco From owner-freebsd-ports@FreeBSD.ORG Wed May 5 07:22:44 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F30AC16A4CE for ; Wed, 5 May 2004 07:22:43 -0700 (PDT) Received: from mail.seekingfire.com (coyote.seekingfire.com [24.72.10.212]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8448243D31 for ; Wed, 5 May 2004 07:22:43 -0700 (PDT) (envelope-from tillman@seekingfire.com) Received: by mail.seekingfire.com (Postfix, from userid 500) id 93C0C216; Wed, 5 May 2004 08:22:42 -0600 (CST) Date: Wed, 5 May 2004 08:22:42 -0600 From: Tillman Hodgson To: Heimdal , FreeBSD Ports Message-ID: <20040505142242.GQ83957@seekingfire.com> References: <1083340545.13018.48.camel@columbus> <409288AC.2E7BB16B@saeab.se> <1083608221.5295.20.camel@columbus> <20040503193701.GG80676@seekingfire.com> <1083618848.5293.36.camel@columbus> <20040503235504.GN80676@seekingfire.com> <1083686562.2468.5.camel@columbus> <20040504194059.GF80676@seekingfire.com> <1083757322.2678.8.camel@columbus> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1083757322.2678.8.camel@columbus> X-Habeas-SWE-1: winter into spring X-Habeas-SWE-2: brightly anticipated X-Habeas-SWE-3: like Habeas SWE (tm) X-Habeas-SWE-4: Copyright 2002 Habeas (tm) X-Habeas-SWE-5: Sender Warranted Email (SWE) (tm). The sender of this X-Habeas-SWE-6: email in exchange for a license for this Habeas X-Habeas-SWE-7: warrant mark warrants that this is a Habeas Compliant X-Habeas-SWE-8: Message (HCM) and not spam. Please report use of this X-Habeas-SWE-9: mark in spam to . X-GPG-Key-ID: 828AFC7B X-GPG-Fingerprint: 5584 14BA C9EB 1524 0E68 F543 0F0A 7FBC 828A FC7B X-GPG-Key: http://www.seekingfire.com/gpg_key.asc X-Urban-Legend: There is lots of hidden information in headers User-Agent: Mutt/1.5.6i Subject: Re: Login prompt when starting services after FreeBSD port install X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 May 2004 14:22:44 -0000 On Wed, May 05, 2004 at 07:42:03AM -0400, Robert Fitzpatrick wrote: > Yes, I am on 5.2.1-RELEASE. The files I know are missing so far are > /usr/bin/login and /usr/bin/su. Do you know of other files that this > would have cause a problem? Maybe I should restore all files to that > directory. But would there be any files in other directories? /usr/ports/security/heimdal/pkg-plist is the list of files that you're looking for. Note that all paths are relative to where the port is told to be installed, not absolute. -T -- To enjoy the flavor of life, take big bites. Moderation is for monks. - Robert Heinlein From owner-freebsd-ports@FreeBSD.ORG Wed May 5 09:00:08 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D435116A4CE for ; Wed, 5 May 2004 09:00:08 -0700 (PDT) Received: from freebee.digiware.nl (dsl390.iae.nl [212.61.63.138]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DF8043D53 for ; Wed, 5 May 2004 09:00:08 -0700 (PDT) (envelope-from wjw@withagen.nl) Received: from dual (dual [212.61.27.71]) by freebee.digiware.nl (8.12.10/8.12.9) with SMTP id i45FrReL053278 for ; Wed, 5 May 2004 17:53:27 +0200 (CEST) (envelope-from wjw@withagen.nl) Message-ID: <0f4e01c432b9$c35b36d0$471b3dd4@dual> From: "Willem Jan Withagen" To: Date: Wed, 5 May 2004 17:58:09 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1409 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 Subject: KDE 3.2.1 from the recent 5.2.1 ISO disc 1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 May 2004 16:00:08 -0000 Hoi, I tried installing and running a fresh system with 5.2.1 running KDE 3.2.1. But when I do so it complains that libutil.so.3 libstdc++.so.3 are not available..... And if I trick things into softlinking it to *.so.4 I get complaints about object not available. What to do? Note that running KDE is a first for me... Or, how do I upgrade it to 3.2.2 with the same problems, other than just compiling it. Thanx, --WjW From owner-freebsd-ports@FreeBSD.ORG Wed May 5 10:12:01 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E3BDD16A4CE for ; Wed, 5 May 2004 10:12:01 -0700 (PDT) Received: from meitner.wh.uni-dortmund.de (meitner.wh.Uni-Dortmund.DE [129.217.129.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8AAAE43D54 for ; Wed, 5 May 2004 10:12:01 -0700 (PDT) (envelope-from michaelnottebrock@gmx.net) Received: from lofi.dyndns.org (pc2-105.intern.meitner [10.3.12.105]) by meitner.wh.uni-dortmund.de (Postfix) with ESMTP id 355C2167595; Wed, 5 May 2004 19:12:00 +0200 (CEST) Received: from [192.168.8.4] (kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.10/8.12.10) with ESMTP id i45HBxkA058445 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Wed, 5 May 2004 19:11:59 +0200 (CEST) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: freebsd-ports@freebsd.org Date: Wed, 5 May 2004 19:11:58 +0200 User-Agent: KMail/1.6.2 References: <0f4e01c432b9$c35b36d0$471b3dd4@dual> In-Reply-To: <0f4e01c432b9$c35b36d0$471b3dd4@dual> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_fBSmAu7uvyP+GLC"; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200405051911.59273.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new cc: Willem Jan Withagen Subject: Re: KDE 3.2.1 from the recent 5.2.1 ISO disc 1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 May 2004 17:12:02 -0000 --Boundary-02=_fBSmAu7uvyP+GLC Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Wednesday 05 May 2004 17:58, Willem Jan Withagen wrote: > Hoi, > > I tried installing and running a fresh system with 5.2.1 > running KDE 3.2.1. =46reeBSD 5.2.1-Release ships with KDE 3.1.4. > But when I do so it complains that > libutil.so.3 > libstdc++.so.3 > are not available..... What packages did you install? It seems you installed packages for=20 =46reeBSD-STABLE. =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --Boundary-02=_fBSmAu7uvyP+GLC Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQBAmSBfXhc68WspdLARAmm/AJ4wx4OwDwq/EMw4b8rDbCy9PywjXQCfYHSq WclZo3z/Dqxs9caX2qBLJuI= =7xpb -----END PGP SIGNATURE----- --Boundary-02=_fBSmAu7uvyP+GLC-- From owner-freebsd-ports@FreeBSD.ORG Wed May 5 10:19:03 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B39016A4CF for ; Wed, 5 May 2004 10:19:03 -0700 (PDT) Received: from mail4.speakeasy.net (mail4.speakeasy.net [216.254.0.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56B7A43D48 for ; Wed, 5 May 2004 10:19:03 -0700 (PDT) (envelope-from tomdean@speakeasy.org) Received: (qmail 26847 invoked from network); 5 May 2004 17:19:03 -0000 Received: from dsl081-020-229.sea1.dsl.speakeasy.net (HELO asus.tddhome) (tomdean@[64.81.20.229]) (envelope-sender )encrypted SMTP for ; 5 May 2004 17:19:03 -0000 Received: from asus.tddhome (localhost [127.0.0.1]) by asus.tddhome (8.12.10/8.12.10) with ESMTP id i45HJ2xj085658 for ; Wed, 5 May 2004 10:19:02 -0700 (PDT) (envelope-from tomdean@speakeasy.org) Received: (from tomdean@localhost) by asus.tddhome (8.12.10/8.12.10/Submit) id i45HJ2Ri085655; Wed, 5 May 2004 10:19:02 -0700 (PDT) (envelope-from tomdean@speakeasy.org) Date: Wed, 5 May 2004 10:19:02 -0700 (PDT) Message-Id: <200405051719.i45HJ2Ri085655@asus.tddhome> X-Authentication-Warning: asus.tddhome: tomdean set sender to tomdean@speakeasy.org using -f From: "Thomas D. Dean" To: ports@FreeBSD.org Subject: Build Failure palm/pilot-link X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 May 2004 17:19:03 -0000 The build of palm/pilot-link faile due to non-inclusion of -lm in the makefile. /usr/ports/palm/pilot-link/work/pilot-link-0.11.8/bindings/Tcl/Makefile LDFLAGS = -L/usr/local/lib -lgnugetopt -lm This comes from configure. tomdean From owner-freebsd-ports@FreeBSD.ORG Wed May 5 10:48:21 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 47AB516A4CE for ; Wed, 5 May 2004 10:48:21 -0700 (PDT) Received: from hermes.webtent.net (hermes.webtent.net [192.216.106.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95F4643D2F for ; Wed, 5 May 2004 10:48:20 -0700 (PDT) (envelope-from robert@webtent.com) Received: from [192.168.1.11] (webtent.org [198.79.127.235]) by hermes.webtent.net (8.10.2/8.10.2) with ESMTP id i45Hm0k27276; Wed, 5 May 2004 13:48:02 -0400 From: Robert Fitzpatrick To: Tillman Hodgson In-Reply-To: <20040505142242.GQ83957@seekingfire.com> References: <1083340545.13018.48.camel@columbus> <409288AC.2E7BB16B@saeab.se> <1083608221.5295.20.camel@columbus> <20040503193701.GG80676@seekingfire.com> <1083618848.5293.36.camel@columbus><1083686562.2468.5.camel@columbus> <1083757322.2678.8.camel@columbus> <20040505142242.GQ83957@seekingfire.com> Content-Type: text/plain Organization: WebTent Networking, Inc. Message-Id: <1083779323.4755.21.camel@columbus> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Wed, 05 May 2004 13:48:44 -0400 Content-Transfer-Encoding: 7bit cc: Heimdal cc: FreeBSD Ports Subject: Re: Login prompt when starting services after FreeBSD port install X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 May 2004 17:48:21 -0000 On Wed, 2004-05-05 at 10:22, Tillman Hodgson wrote: > On Wed, May 05, 2004 at 07:42:03AM -0400, Robert Fitzpatrick wrote: > > Yes, I am on 5.2.1-RELEASE. The files I know are missing so far are > > /usr/bin/login and /usr/bin/su. Do you know of other files that this > > would have cause a problem? Maybe I should restore all files to that > > directory. But would there be any files in other directories? > > /usr/ports/security/heimdal/pkg-plist is the list of files that you're > looking for. Note that all paths are relative to where the port is told > to be installed, not absolute. Wow, a bunch of them. Can you tell me how to restore these files from the CD? I looked for a document for this on the FreeBSD site, but haven't been able to find yet. Also, since you're a Heimdal guru and use FreeBSD yourself....just would like to understand what FreeBSD does by default. You said that it loads Heimdal by default and I now know why it seemed like it was already installed when I first started messing around with it. The reason I used the port system is because I was trying to get LDAP backend working, and still not working :( I'll worry about getting that going once I get things back to normal. I guess the default installation of Heimdal does not place Kerberized system files like the port does? Also, I noticed the /etc/rc.d/kerberos and /etc/rc.d/kadmind do not start anymore after the port install, now using /usr/local/etc/rc.d/kdc.sh and it starts fine. Are the other two not starting merely because the files are no longer present and they should start -or- are they replaced by the port version? I have this in my /etc/rc.conf: kerberos5_server_enable="YES" kadmind5_server_enable="YES" kerberos_stash="YES" Again, I really appreciate your guidance on this, I know I am close to correcting my previous mistakes. -- Robert From owner-freebsd-ports@FreeBSD.ORG Wed May 5 14:08:37 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4ACB416A4CF for ; Wed, 5 May 2004 14:08:37 -0700 (PDT) Received: from freebee.digiware.nl (dsl390.iae.nl [212.61.63.138]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F34443D31 for ; Wed, 5 May 2004 14:08:36 -0700 (PDT) (envelope-from wjw@withagen.nl) Received: from dual (dual [212.61.27.71]) by freebee.digiware.nl (8.12.10/8.12.9) with SMTP id i45L1seL057872 for ; Wed, 5 May 2004 23:01:54 +0200 (CEST) (envelope-from wjw@withagen.nl) Message-ID: <0ff301c432e4$db4f5c00$471b3dd4@dual> From: "Willem Jan Withagen" To: Date: Wed, 5 May 2004 23:06:38 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1409 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 Subject: Fw: KDE 3.2.1 from the recent 5.2.1 ISO disc 1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 May 2004 21:08:37 -0000 ----- Original Message ----- From: "Michael Nottebrock" To: Cc: "Willem Jan Withagen" Sent: Wednesday, May 05, 2004 7:11 PM Subject: Re: KDE 3.2.1 from the recent 5.2.1 ISO disc 1 >On Wednesday 05 May 2004 17:58, Willem Jan Withagen wrote: >> Hoi, >> >> I tried installing and running a fresh system with 5.2.1 >> running KDE 3.2.1. >FreeBSD 5.2.1-Release ships with KDE 3.1.4. >> But when I do so it complains that >> libutil.so.3 >> libstdc++.so.3 >> are not available..... > What packages did you install? It seems you installed packages for > FreeBSD-STABLE. You are correct. I was distract from reading the archives, and said 3.2.1 where it actually is 3.1.4 ..... What I did is fetch the ISO, and burn that on a CD. Freshly install the system from there. Get KDE and others from the packages on the CD. Config Xfree86 .... And in sysinstall set the desktop to KDE Then 'startx' >From the vtty: startkde: Starting up... Could not dlopen library dcopserver.la: /usr/local/lib/libkdeinit_dcopserver.so: Undefined symbol "metaObject__C15QSocketNotifier" Could not dlopen library klauncher.la: /usr/local/lib/libkdeinit_klauncher.so: U ndefined symbol "event__12QApplicationP6QEvent" Could not dlopen library kded.la: /usr/local/lib/libkdeinit_kded.so: Undefined s ymbol "__ti7QObject" kdeinit: Communication error with launcher. Exiting! I still have the softlinks in place, and I've installed compat4x which has the libstdc++.so.3. So Where do I go from here. (other than cleanup the links....) --WjW From owner-freebsd-ports@FreeBSD.ORG Wed May 5 14:36:24 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 64D3A16A4CE for ; Wed, 5 May 2004 14:36:24 -0700 (PDT) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A50743DBF for ; Wed, 5 May 2004 14:36:11 -0700 (PDT) (envelope-from kay.abendroth@raxion.net) Received: from [212.227.126.202] (helo=mrvnet.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 1BLU2U-0003kk-00; Wed, 05 May 2004 23:34:50 +0200 Received: from [172.23.4.133] (helo=config6.kundenserver.de) by mrvnet.kundenserver.de with esmtp (Exim 3.35 #1) id 1BLU2T-0000Kg-00; Wed, 05 May 2004 23:34:49 +0200 Received: from www-data by config6.kundenserver.de with local (Exim 3.35 #1 (Debian)) id 1BLU2T-0004il-00; Wed, 05 May 2004 23:34:49 +0200 To: holger@e-gitt.net From: kay.abendroth@raxion.net Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit MIME-Version: 1.0 X-Originating-From: 6333595 Received: from 80.144.166.21 by webmail.kundenserver.de via HTTP X-Binford: 6100 (more power) Message-Id: Date: Wed, 05 May 2004 23:34:49 +0200 X-Provags-ID: kundenserver.de abuse@kundenserver.de ident:@172.23.4.133 cc: ports@FreeBSD.org Subject: MLDonkey v2.5.21 is out X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 May 2004 21:36:24 -0000 Hello, I just recognized that MLDonkey version 2.5.21 (aka 2.6pre3) hits the road and only want to ask if you still maintain this port (and therefore will submit accordant changes to the ports tree). Kind regards. Kay From owner-freebsd-ports@FreeBSD.ORG Wed May 5 14:39:11 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E30E16A4CE; Wed, 5 May 2004 14:39:11 -0700 (PDT) Received: from meitner.wh.uni-dortmund.de (meitner.wh.Uni-Dortmund.DE [129.217.129.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62F2943D88; Wed, 5 May 2004 14:38:58 -0700 (PDT) (envelope-from michaelnottebrock@gmx.net) Received: from lofi.dyndns.org (pc2-105.intern.meitner [10.3.12.105]) by meitner.wh.uni-dortmund.de (Postfix) with ESMTP id 6B48C1675B7; Wed, 5 May 2004 23:36:38 +0200 (CEST) Received: from [192.168.8.4] (kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.10/8.12.10) with ESMTP id i45LaakA064014 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Wed, 5 May 2004 23:36:37 +0200 (CEST) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: freebsd-ports@freebsd.org Date: Wed, 5 May 2004 23:36:32 +0200 User-Agent: KMail/1.6.2 References: <0ff301c432e4$db4f5c00$471b3dd4@dual> In-Reply-To: <0ff301c432e4$db4f5c00$471b3dd4@dual> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_k5VmAXlibtExky4"; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200405052336.36318.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new cc: re@freebsd.org cc: Willem Jan Withagen Subject: Re: Fw: KDE 3.2.1 from the recent 5.2.1 ISO disc 1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 May 2004 21:39:11 -0000 --Boundary-02=_k5VmAXlibtExky4 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Wednesday 05 May 2004 23:06, Willem Jan Withagen wrote: > You are correct. I was distract from reading the archives, and said 3.2.1 > where it actually is 3.1.4 ..... > > What I did is fetch the ISO, and burn that on a CD. > Freshly install the system from there. Get KDE and others from the > packages on the CD. Config Xfree86 ... >> But when I do so it complains that >> =A0 =A0 libutil.so.3 >> =A0 =A0 libstdc++.so.3 >> are not available..... If that's really true and the packages are from the CD and the CD is burned= =20 from the ISO image from the ftp mirrors, then 5.2.1 ships with the wrong KD= E=20 packages. Can anyone from re@ comment on this? =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --Boundary-02=_k5VmAXlibtExky4 Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQBAmV5kXhc68WspdLARAl3JAJsFRVT5nSBcjMqlwF/r4iwGpVOxUwCgls/r 5r4704nGf/rrXZHMqaa7qoQ= =1S1U -----END PGP SIGNATURE----- --Boundary-02=_k5VmAXlibtExky4-- From owner-freebsd-ports@FreeBSD.ORG Wed May 5 14:51:16 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C23316A4CE; Wed, 5 May 2004 14:51:16 -0700 (PDT) Received: from freebee.digiware.nl (dsl390.iae.nl [212.61.63.138]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9505743D46; Wed, 5 May 2004 14:51:15 -0700 (PDT) (envelope-from wjw@withagen.nl) Received: from dual (dual [212.61.27.71]) by freebee.digiware.nl (8.12.10/8.12.9) with SMTP id i45LiXeL058689; Wed, 5 May 2004 23:44:33 +0200 (CEST) (envelope-from wjw@withagen.nl) Message-ID: <106301c432ea$d1161d40$471b3dd4@dual> From: "Willem Jan Withagen" To: "Michael Nottebrock" , References: <0ff301c432e4$db4f5c00$471b3dd4@dual> <200405052336.36318.michaelnottebrock@gmx.net> Date: Wed, 5 May 2004 23:49:17 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1409 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 cc: re@freebsd.org Subject: Re: Fw: KDE 3.2.1 from the recent 5.2.1 ISO disc 1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 May 2004 21:51:16 -0000 ----- Original Message ----- From: "Michael Nottebrock" On Wednesday 05 May 2004 23:06, Willem Jan Withagen wrote: >> You are correct. I was distract from reading the archives, and said 3.2.1 >> where it actually is 3.1.4 ..... >> >> What I did is fetch the ISO, and burn that on a CD. >> Freshly install the system from there. Get KDE and others from the >> packages on the CD. Config Xfree86 ... To be more precise: I choose the kern-developers + X setup KDE desktop no other packages >>> But when I do so it complains that >>> libutil.so.3 >>> libstdc++.so.3 >>> are not available..... > If that's really true and the packages are from the CD and the CD is burned > from the ISO image from the ftp mirrors, then 5.2.1 ships with the wrong KDE > packages. Can anyone from re@ comment on this? I checked again, and what I have burned on the CD's is actually what is now also available on: ftp://ftp.freebsd.org/pub/FreeBSD/ISO-IMAGES-i386/5.2.1 --WjW From owner-freebsd-ports@FreeBSD.ORG Wed May 5 15:57:18 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F25E16A4CE; Wed, 5 May 2004 15:57:18 -0700 (PDT) Received: from mtaw6.prodigy.net (mtaw6.prodigy.net [64.164.98.56]) by mx1.FreeBSD.org (Postfix) with ESMTP id 324E743D31; Wed, 5 May 2004 15:57:18 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (cc306c09f9fe301794a6e9f84745fad2@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128]) by mtaw6.prodigy.net (8.12.10/8.12.10) with ESMTP id i45Mu0T1025661; Wed, 5 May 2004 15:56:01 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 492A7521AC; Wed, 5 May 2004 15:57:15 -0700 (PDT) Date: Wed, 5 May 2004 15:57:15 -0700 From: Kris Kennaway To: Michael Nottebrock Message-ID: <20040505225715.GA12025@xor.obsecurity.org> References: <0ff301c432e4$db4f5c00$471b3dd4@dual> <200405052336.36318.michaelnottebrock@gmx.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="envbJBWh7q8WU6mo" Content-Disposition: inline In-Reply-To: <200405052336.36318.michaelnottebrock@gmx.net> User-Agent: Mutt/1.4.2.1i cc: re@freebsd.org cc: Willem Jan Withagen cc: freebsd-ports@freebsd.org Subject: Re: Fw: KDE 3.2.1 from the recent 5.2.1 ISO disc 1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 May 2004 22:57:18 -0000 --envbJBWh7q8WU6mo Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, May 05, 2004 at 11:36:32PM +0200, Michael Nottebrock wrote: > On Wednesday 05 May 2004 23:06, Willem Jan Withagen wrote: >=20 > > You are correct. I was distract from reading the archives, and said 3.2= .1 > > where it actually is 3.1.4 ..... > > > > What I did is fetch the ISO, and burn that on a CD. > > Freshly install the system from there. Get KDE and others from the > > packages on the CD. Config Xfree86 ... >=20 > >> But when I do so it complains that > >> ? ? libutil.so.3 > >> ? ? libstdc++.so.3 > >> are not available..... >=20 > If that's really true and the packages are from the CD and the CD is burn= ed=20 > from the ISO image from the ftp mirrors, then 5.2.1 ships with the wrong = KDE=20 > packages. Can anyone from re@ comment on this? You can verify the packages yourself from the ftp site. Kris --envbJBWh7q8WU6mo Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAmXFKWry0BWjoQKURAmYUAKCN8PwtkfaHg/MixbUQQ0Sp0j9nOgCeN7oY HMCY5hrWavBbz7buB7H7Xb4= =NfIs -----END PGP SIGNATURE----- --envbJBWh7q8WU6mo-- From owner-freebsd-ports@FreeBSD.ORG Wed May 5 20:03:39 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 571BE16A4CE; Wed, 5 May 2004 20:03:39 -0700 (PDT) Received: from outbox.allstream.net (outbox.allstream.net [207.245.244.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE21A43D54; Wed, 5 May 2004 20:03:38 -0700 (PDT) (envelope-from epilogue@allstream.net) Received: from localhost (unknown [216.123.133.32]) by outbox.allstream.net (Allstream MTA) with SMTP id 43F4D5EB0; Wed, 5 May 2004 23:03:37 -0400 (EDT) Date: Wed, 5 May 2004 23:03:37 -0400 From: epilogue@allstream.net To: freebsd-ports@freebsd.org, freebsd-questions@freebsd.org Message-Id: <20040505230337.3a21579e@localhost> X-Mailer: Sylpheed version 0.9.10claws (GTK+ 1.2.10; i386-portbld-freebsd4.10) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: building the talkfilters plugin for gaim X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 May 2004 03:03:39 -0000 hello all, just wondering if anyone can help me get the talkfilters gaim plugin working. i followed the instructions included in the talkfilters port (misc category) as well as those in the gaim README file, but i only end up with the error messages below. sadly, i am not able to troubleshoot these alone, given my highly non-existant programming skills... /usr/ports/net/gaim/work/gaim-0.77/plugins# make talkfilters.so /bin/sh ../libtool --silent --mode=compile cc -DHAVE_CONFIG_H -I.. -DDATADIR=\"/usr/X11R6/share/gnome\" -DVERSION=\"0.77\" -I../src -I/usr/local/include/atk-1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/X11R6/include/gtk-2.0 -I/usr/X11R6/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/X11R6/include/pango-1.0 -I/usr/local/include/freetype2 -I/usr/local/include -O -pipe -march=pentiumpro -Wall -g3 -c talkfilters.c -o tmptalkfilters.so.lo talkfilters.c: In function `translate_message': talkfilters.c:54: syntax error before `char' talkfilters.c:56: `tmp' undeclared (first use in this function) talkfilters.c:56: (Each undeclared identifier is reported only once talkfilters.c:56: for each function it appears in.)*** Error code 1 Stop in /usr/ports/net/gaim/work/gaim-0.77/plugins. any help would be very much appreciated. thanks, epi From owner-freebsd-ports@FreeBSD.ORG Thu May 6 00:36:32 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA41516A4CE; Thu, 6 May 2004 00:36:32 -0700 (PDT) Received: from freebee.digiware.nl (dsl390.iae.nl [212.61.63.138]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC95343D45; Thu, 6 May 2004 00:36:31 -0700 (PDT) (envelope-from wjw@withagen.nl) Received: from dual (dual [212.61.27.71]) by freebee.digiware.nl (8.12.10/8.12.9) with SMTP id i467TkeL066849; Thu, 6 May 2004 09:29:47 +0200 (CEST) (envelope-from wjw@withagen.nl) Message-ID: <112801c4333c$94351e60$471b3dd4@dual> From: "Willem Jan Withagen" To: "Kris Kennaway" , "Michael Nottebrock" References: <0ff301c432e4$db4f5c00$471b3dd4@dual><200405052336.36318.michaelnottebrock@gmx.net> <20040505225715.GA12025@xor.obsecurity.org> Date: Thu, 6 May 2004 09:34:34 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1409 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 cc: re@freebsd.org cc: freebsd-ports@freebsd.org Subject: Re: Fw: KDE 3.2.1 from the recent 5.2.1 ISO disc 1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 May 2004 07:36:32 -0000 > If that's really true and the packages are from the CD and the CD is burn= > ed=20 > > from the ISO image from the ftp mirrors, then 5.2.1 ships with the wrong = > KDE=20 > > packages. Can anyone from re@ comment on this? > > You can verify the packages yourself from the ftp site. I checked to see if it still is the same ISO, and the MD5-sig was still the same. Micheal helped me to a packaged KDE 3.2.2 and that "runs" without library problems thus far. Now I "just" need to get it configured and really running, Instead of a blank screen. --WjW From owner-freebsd-ports@FreeBSD.ORG Thu May 6 01:17:51 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 343DD16A4CE for ; Thu, 6 May 2004 01:17:51 -0700 (PDT) Received: from sccrmhc11.comcast.net (sccrmhc11.comcast.net [204.127.202.55]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3A3A43D1F for ; Thu, 6 May 2004 01:17:50 -0700 (PDT) (envelope-from clint@0lsen.net) Received: from 0lsen.net ([24.20.127.157]) by comcast.net (sccrmhc11) with ESMTP id <2004050608175001100k10cse>; Thu, 6 May 2004 08:17:50 +0000 Received: by 0lsen.net (Postfix, from userid 1001) id E40FA56D; Thu, 6 May 2004 01:17:48 -0700 (PDT) Date: Thu, 6 May 2004 01:17:48 -0700 From: Clint Olsen To: ports@freebsd.org Message-ID: <20040506081747.GA7969@0lsen.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.1i Organization: NULlsen Network X-Disclaimer: Mutt Bites! Subject: Ports gripe X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 May 2004 08:17:51 -0000 Riddle me this, Batman: So, why would the ports system (portupgrade for example) go to the trouble of building a port dependency and _then_ (and only then) would it check for a previously insalled version, bitch and gripe, and then exit? Portupgrade and friends do a clean every time, so this build process was a complete waste of time. -Clint From owner-freebsd-ports@FreeBSD.ORG Thu May 6 01:21:13 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9EBE916A4CE for ; Thu, 6 May 2004 01:21:13 -0700 (PDT) Received: from mtaw6.prodigy.net (mtaw6.prodigy.net [64.164.98.56]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85DAA43D60 for ; Thu, 6 May 2004 01:21:13 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (2d2b4b4479a320fa213fb391cff6964d@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128]) by mtaw6.prodigy.net (8.12.10/8.12.10) with ESMTP id i468JqT1011286; Thu, 6 May 2004 01:19:54 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 7E50F521DA; Thu, 6 May 2004 01:21:07 -0700 (PDT) Date: Thu, 6 May 2004 01:21:07 -0700 From: Kris Kennaway To: Clint Olsen Message-ID: <20040506082107.GA46385@xor.obsecurity.org> References: <20040506081747.GA7969@0lsen.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="HlL+5n6rz5pIUxbD" Content-Disposition: inline In-Reply-To: <20040506081747.GA7969@0lsen.net> User-Agent: Mutt/1.4.2.1i cc: ports@freebsd.org Subject: Re: Ports gripe X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 May 2004 08:21:13 -0000 --HlL+5n6rz5pIUxbD Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, May 06, 2004 at 01:17:48AM -0700, Clint Olsen wrote: > Riddle me this, Batman: >=20 > So, why would the ports system (portupgrade for example) go to the trouble > of building a port dependency and _then_ (and only then) would it check f= or > a previously insalled version, bitch and gripe, and then exit? Portupgra= de > and friends do a clean every time, so this build process was a complete > waste of time. Sounds like you forgot to do 'make all deinstall reinstall' to remove the old version first ;-) Kris --HlL+5n6rz5pIUxbD Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAmfVzWry0BWjoQKURAiiBAJ9fzxim1u0tNNSc/T9f+mVpDtkG8wCfZ1Si 9MBpqzNIFAeXUXE3fmB2t/M= =AGSX -----END PGP SIGNATURE----- --HlL+5n6rz5pIUxbD-- From owner-freebsd-ports@FreeBSD.ORG Thu May 6 01:34:40 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A80F16A4CE for ; Thu, 6 May 2004 01:34:40 -0700 (PDT) Received: from rwcrmhc11.comcast.net (rwcrmhc11.comcast.net [204.127.198.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id D7BF143D5F for ; Thu, 6 May 2004 01:34:39 -0700 (PDT) (envelope-from clint@0lsen.net) Received: from 0lsen.net ([24.20.127.157]) by comcast.net (rwcrmhc11) with ESMTP id <20040506083439013002hs1oe>; Thu, 6 May 2004 08:34:39 +0000 Received: by 0lsen.net (Postfix, from userid 1001) id F3066710; Thu, 6 May 2004 01:34:37 -0700 (PDT) Date: Thu, 6 May 2004 01:34:37 -0700 From: Clint Olsen To: Kris Kennaway Message-ID: <20040506083437.GA20499@0lsen.net> References: <20040506081747.GA7969@0lsen.net> <20040506082107.GA46385@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040506082107.GA46385@xor.obsecurity.org> User-Agent: Mutt/1.4.1i Organization: NULlsen Network X-Disclaimer: Mutt Bites! cc: ports@freebsd.org Subject: Re: Ports gripe X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 May 2004 08:34:40 -0000 On May 06, Kris Kennaway wrote: > > Sounds like you forgot to do 'make all deinstall reinstall' to remove the > old version first ;-) So, is there a way to do this via the port interface? Weaving in and out of make-land seems pretty clunky to me... Port this, pkg that. It's not what I would call 'intuitive'. If this is written down somewhere fairly concisely, please send me a cluepon in the form of a URL. Thanks, -Clint From owner-freebsd-ports@FreeBSD.ORG Thu May 6 01:41:43 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7CB9016A4CE for ; Thu, 6 May 2004 01:41:43 -0700 (PDT) Received: from mtaw4.prodigy.net (mtaw4.prodigy.net [64.164.98.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 515D743D64 for ; Thu, 6 May 2004 01:41:43 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (649d32bf9233c1eabe50bf4f95e35f41@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128]) by mtaw4.prodigy.net (8.12.10/8.12.10) with ESMTP id i468fdfj000136; Thu, 6 May 2004 01:41:40 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id CC8BE521DA; Thu, 6 May 2004 01:41:39 -0700 (PDT) Date: Thu, 6 May 2004 01:41:39 -0700 From: Kris Kennaway To: Clint Olsen Message-ID: <20040506084139.GA46638@xor.obsecurity.org> References: <20040506081747.GA7969@0lsen.net> <20040506082107.GA46385@xor.obsecurity.org> <20040506083437.GA20499@0lsen.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="0OAP2g/MAC+5xKAE" Content-Disposition: inline In-Reply-To: <20040506083437.GA20499@0lsen.net> User-Agent: Mutt/1.4.2.1i cc: ports@freebsd.org cc: Kris Kennaway Subject: Re: Ports gripe X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 May 2004 08:41:43 -0000 --0OAP2g/MAC+5xKAE Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, May 06, 2004 at 01:34:37AM -0700, Clint Olsen wrote: > On May 06, Kris Kennaway wrote: > >=20 > > Sounds like you forgot to do 'make all deinstall reinstall' to remove t= he > > old version first ;-) >=20 > So, is there a way to do this via the port interface? Weaving in and out > of make-land seems pretty clunky to me... >=20 > Port this, pkg that. It's not what I would call 'intuitive'. Um, what "port interface"? > If this is written down somewhere fairly concisely, please send me a > cluepon in the form of a URL. Using ports is documented in the Handbook (your canonical source of FreeBSD documentation): http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/ports-using.html See also http://www.freebsd.org/ports Kris --0OAP2g/MAC+5xKAE Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAmfpDWry0BWjoQKURAs7jAJ9hXgYLWp3TpW54+3pbDMe5fVSsYQCfem/e uK8iPP/q7RBvRIPAptw00Ao= =t5aP -----END PGP SIGNATURE----- --0OAP2g/MAC+5xKAE-- From owner-freebsd-ports@FreeBSD.ORG Thu May 6 01:54:29 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 80DFA16A4CE for ; Thu, 6 May 2004 01:54:29 -0700 (PDT) Received: from rwcrmhc11.comcast.net (rwcrmhc11.comcast.net [204.127.198.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 33BD343D48 for ; Thu, 6 May 2004 01:54:29 -0700 (PDT) (envelope-from clint@0lsen.net) Received: from 0lsen.net ([24.20.127.157]) by comcast.net (rwcrmhc11) with ESMTP id <20040506085428013002gvgee>; Thu, 6 May 2004 08:54:28 +0000 Received: by 0lsen.net (Postfix, from userid 1001) id 2439F6F2; Thu, 6 May 2004 01:54:28 -0700 (PDT) Date: Thu, 6 May 2004 01:54:27 -0700 From: Clint Olsen To: Kris Kennaway Message-ID: <20040506085427.GB20499@0lsen.net> References: <20040506081747.GA7969@0lsen.net> <20040506082107.GA46385@xor.obsecurity.org> <20040506083437.GA20499@0lsen.net> <20040506084139.GA46638@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040506084139.GA46638@xor.obsecurity.org> User-Agent: Mutt/1.4.1i Organization: NULlsen Network X-Disclaimer: Mutt Bites! cc: ports@freebsd.org Subject: Re: Ports gripe X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 May 2004 08:54:29 -0000 On May 06, Kris Kennaway wrote: > > Um, what "port interface"? Portupgrade and friends. > Using ports is documented in the Handbook (your canonical source of > FreeBSD documentation): > > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/ports-using.html Thanks for the links. It doesn't really cover the fundamental issues - explaining the relationship between a port, a package, when to use make or when it's better to use port{install,upgrade} etc. I have seen messages saying that portupgrade is preferred for a particular port over 'make install'. Some of the confusion stems from the fact that there's portinstall but no portdeinstall. There's pkg_deinstall, though, which appears to be a wrapper around pkg_delete. Intuitively you'd expect the dual of each command - or at least some explanation of why one exists and the other does not. In your original mail, you said I should have done "make all deinstall reinstall". However, the first question that came out of my mind was, what exactly does the 'all' target do in this case, and are you referring to all the ports or just this one port in particular? Thanks, -Clint From owner-freebsd-ports@FreeBSD.ORG Thu May 6 02:10:26 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7FC5316A4CE for ; Thu, 6 May 2004 02:10:26 -0700 (PDT) Received: from seed.net.tw (sn14.seed.net.tw [139.175.54.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29AE243D2D for ; Thu, 6 May 2004 02:10:26 -0700 (PDT) (envelope-from leafy@leafy.idv.tw) Received: from [61.59.121.140] (port=59628 helo=chihiro.leafy.idv.tw) by seed.net.tw with esmtp (Seednet 4.23:1) id 1BLetU-000OWB-RU; Thu, 06 May 2004 17:10:16 +0800 Received: from localhost (localhost [127.0.0.1]) by chihiro.leafy.idv.tw (Postfix) with ESMTP id AF43632E; Thu, 6 May 2004 17:10:23 +0800 (CST) Received: from chihiro.leafy.idv.tw ([127.0.0.1]) by localhost (chihiro.leafy.idv.tw [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16363-08; Thu, 6 May 2004 17:10:23 +0800 (CST) Received: by chihiro.leafy.idv.tw (Postfix, from userid 1000) id 2B56A274; Thu, 6 May 2004 17:10:23 +0800 (CST) Date: Thu, 6 May 2004 17:10:23 +0800 From: leafy To: Clint Olsen Message-ID: <20040506091023.GA19885@chihiro.leafy.idv.tw> References: <20040506081747.GA7969@0lsen.net> <20040506082107.GA46385@xor.obsecurity.org> <20040506083437.GA20499@0lsen.net> <20040506084139.GA46638@xor.obsecurity.org> <20040506085427.GB20499@0lsen.net> Mime-Version: 1.0 Content-Type: text/plain; charset=big5 Content-Disposition: inline In-Reply-To: <20040506085427.GB20499@0lsen.net> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new at leafy.idv.tw cc: ports@freebsd.org cc: Kris Kennaway Subject: Re: Ports gripe X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 May 2004 09:10:26 -0000 On Thu, May 06, 2004 at 01:54:27AM -0700, Clint Olsen wrote: > On May 06, Kris Kennaway wrote: > > > > Um, what "port interface"? > > Portupgrade and friends. portupgrade is also a port by itself. Not strictly the 'port interface' :) > Thanks for the links. It doesn't really cover the fundamental issues - > explaining the relationship between a port, a package, when to use make or > when it's better to use port{install,upgrade} etc. I have seen messages A package is just a pre-compiled port. It still adheres to the port infrastructure. > saying that portupgrade is preferred for a particular port over 'make > install'. portupgrade can specify port-specific make flags through ${localbase}/etc/pkgtools.conf, you can read on that one. I do agree it's better than just 'make install' for many ports. > In your original mail, you said I should have done "make all deinstall > reinstall". However, the first question that came out of my mind was, what > exactly does the 'all' target do in this case, and are you referring to all > the ports or just this one port in particular? 'all' applies to the particular port Makefile, with lots of different targets based on which .mk file it includes. Basically ports/Mk/bsd.port.mk lists the most common targets. They are also partially documented in the Porter's Handbook. Jiawei -- "Without the userland, the kernel is useless." --inspired by The Tao of Programming From owner-freebsd-ports@FreeBSD.ORG Thu May 6 02:11:26 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7354C16A4CE for ; Thu, 6 May 2004 02:11:26 -0700 (PDT) Received: from mta4.rcsntx.swbell.net (mta4.rcsntx.swbell.net [151.164.30.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02B8743D46 for ; Thu, 6 May 2004 02:11:26 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (43285db3b096a81ea492d6f6ca22f38f@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128])i469BMYS009037; Thu, 6 May 2004 04:11:23 -0500 (CDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 85392521DA; Thu, 6 May 2004 02:11:21 -0700 (PDT) Date: Thu, 6 May 2004 02:11:21 -0700 From: Kris Kennaway To: Clint Olsen Message-ID: <20040506091121.GA49928@xor.obsecurity.org> References: <20040506081747.GA7969@0lsen.net> <20040506082107.GA46385@xor.obsecurity.org> <20040506083437.GA20499@0lsen.net> <20040506084139.GA46638@xor.obsecurity.org> <20040506085427.GB20499@0lsen.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="AqsLC8rIMeq19msA" Content-Disposition: inline In-Reply-To: <20040506085427.GB20499@0lsen.net> User-Agent: Mutt/1.4.2.1i cc: ports@freebsd.org cc: Kris Kennaway Subject: Re: Ports gripe X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 May 2004 09:11:26 -0000 --AqsLC8rIMeq19msA Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, May 06, 2004 at 01:54:27AM -0700, Clint Olsen wrote: > On May 06, Kris Kennaway wrote: > >=20 > > Um, what "port interface"? > =20 > Portupgrade and friends. Strictly speaking portupgrade is a third party utility. It does a lot of things (like upgrades) better than the bare ports collection, which is why it's highly recommended. If you prefer to use portupgrade over the make-based ports collection, then by all means do so! > > Using ports is documented in the Handbook (your canonical source of > > FreeBSD documentation): > >=20 > > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/ports-using= .html >=20 > Thanks for the links. It doesn't really cover the fundamental issues - > explaining the relationship between a port, a package, when to use make or > when it's better to use port{install,upgrade} etc. I have seen messages > saying that portupgrade is preferred for a particular port over 'make > install'. >=20 > Some of the confusion stems from the fact that there's portinstall but no > portdeinstall. There's pkg_deinstall, though, which appears to be a > wrapper around pkg_delete. Intuitively you'd expect the dual of each > command - or at least some explanation of why one exists and the other do= es > not. Removing packages is simple, and there's no need for a whole new utility to do what pkg_delete does. It's upgrading that is hard, and that is the main role of the portupgrade suite. > In your original mail, you said I should have done "make all deinstall > reinstall". However, the first question that came out of my mind was, wh= at > exactly does the 'all' target do in this case, and are you referring to a= ll > the ports or just this one port in particular? 'all' is a synonym for 'build' in this case. See also the ports(7) manpage. Kris --AqsLC8rIMeq19msA Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAmgE5Wry0BWjoQKURAvOYAKDIWhCa5GnDXwPJjYuyW8H+ijAfqACfSQvB WvLFS0uEKluEaNwGtoUMOHY= =e/Iv -----END PGP SIGNATURE----- --AqsLC8rIMeq19msA-- From owner-freebsd-ports@FreeBSD.ORG Thu May 6 02:35:27 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 99C6016A4CF; Thu, 6 May 2004 02:35:27 -0700 (PDT) Received: from meitner.wh.uni-dortmund.de (meitner.wh.Uni-Dortmund.DE [129.217.129.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id C71E143D39; Thu, 6 May 2004 02:35:26 -0700 (PDT) (envelope-from michaelnottebrock@gmx.net) Received: from lofi.dyndns.org (pc2-105.intern.meitner [10.3.12.105]) by meitner.wh.uni-dortmund.de (Postfix) with ESMTP id D81391675B7; Thu, 6 May 2004 11:35:25 +0200 (CEST) Received: from [192.168.8.4] (kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.10/8.12.10) with ESMTP id i469ZOcH071757 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Thu, 6 May 2004 11:35:25 +0200 (CEST) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: Kris Kennaway Date: Thu, 6 May 2004 11:35:23 +0200 User-Agent: KMail/1.6.2 References: <0ff301c432e4$db4f5c00$471b3dd4@dual> <200405052336.36318.michaelnottebrock@gmx.net> <20040505225715.GA12025@xor.obsecurity.org> In-Reply-To: <20040505225715.GA12025@xor.obsecurity.org> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_bbgmAA/rc75TFyU"; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Message-Id: <200405061135.23951.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new cc: re@FreeBSD.org cc: freebsd-ports@FreeBSD.org Subject: Re: Fw: KDE 3.2.1 from the recent 5.2.1 ISO disc 1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 May 2004 09:35:27 -0000 --Boundary-02=_bbgmAA/rc75TFyU Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Thursday 06 May 2004 00:57, Kris Kennaway wrote: > On Wed, May 05, 2004 at 11:36:32PM +0200, Michael Nottebrock wrote: > > On Wednesday 05 May 2004 23:06, Willem Jan Withagen wrote: > > > You are correct. I was distract from reading the archives, and said > > > 3.2.1 where it actually is 3.1.4 ..... > > > > > > What I did is fetch the ISO, and burn that on a CD. > > > Freshly install the system from there. Get KDE and others from the > > > packages on the CD. Config Xfree86 ... > > > > > >> But when I do so it complains that > > >> ? ? libutil.so.3 > > >> ? ? libstdc++.so.3 > > >> are not available..... > > > > If that's really true and the packages are from the CD and the CD is > > burned from the ISO image from the ftp mirrors, then 5.2.1 ships with t= he > > wrong KDE packages. Can anyone from re@ comment on this? > > You can verify the packages yourself from the ftp site. =46WIW, I have checked both the packages on the ftp server as well as the o= nes=20 in the ISO image and they look fine. What's going here is inconclusive to m= e. =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --Boundary-02=_bbgmAA/rc75TFyU Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQBAmgbbXhc68WspdLARAjz6AKCdN5GUm8XsS81wpOGel+Hl+hBozwCgg5Ps IFe1VoZR6e+xa16VIboJ5F0= =j8o9 -----END PGP SIGNATURE----- --Boundary-02=_bbgmAA/rc75TFyU-- From owner-freebsd-ports@FreeBSD.ORG Thu May 6 03:15:08 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9773216A4CE; Thu, 6 May 2004 03:15:08 -0700 (PDT) Received: from freebee.digiware.nl (dsl390.iae.nl [212.61.63.138]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD9AD43D3F; Thu, 6 May 2004 03:15:07 -0700 (PDT) (envelope-from wjw@withagen.nl) Received: from dual (dual [212.61.27.71]) by freebee.digiware.nl (8.12.10/8.12.9) with SMTP id i46A8NeL069503; Thu, 6 May 2004 12:08:23 +0200 (CEST) (envelope-from wjw@withagen.nl) Message-ID: <11ea01c43352$bce49b90$471b3dd4@dual> From: "Willem Jan Withagen" To: "Michael Nottebrock" , "Kris Kennaway" References: <0ff301c432e4$db4f5c00$471b3dd4@dual><200405052336.36318.michaelnottebrock@gmx.net><20040505225715.GA12025@xor.obsecurity.org> <200405061135.23951.michaelnottebrock@gmx.net> Date: Thu, 6 May 2004 12:13:11 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1409 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 cc: re@freebsd.org cc: freebsd-ports@freebsd.org Subject: Re: Fw: KDE 3.2.1 from the recent 5.2.1 ISO disc 1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 May 2004 10:15:08 -0000 ----- Original Message ----- From: "Michael Nottebrock" On Thursday 06 May 2004 00:57, Kris Kennaway wrote: > > On Wed, May 05, 2004 at 11:36:32PM +0200, Michael Nottebrock wrote: > > > On Wednesday 05 May 2004 23:06, Willem Jan Withagen wrote: > > > > You are correct. I was distract from reading the archives, and said > > > > 3.2.1 where it actually is 3.1.4 ..... > > > > > > > > What I did is fetch the ISO, and burn that on a CD. > > > > Freshly install the system from there. Get KDE and others from the > > > > packages on the CD. Config Xfree86 ... > > > > > > > >> But when I do so it complains that > > > >> ? ? libutil.so.3 > > > >> ? ? libstdc++.so.3 > > > >> are not available..... > > > > > > If that's really true and the packages are from the CD and the CD is > > > burned from the ISO image from the ftp mirrors, then 5.2.1 ships with the > > > wrong KDE packages. Can anyone from re@ comment on this?> > > > > You can verify the packages yourself from the ftp site. > > FWIW, I have checked both the packages on the ftp server as well as the ones > in the ISO image and they look fine. What's going here is inconclusive to me. Well if I can help??? Let me know..... If you want I'll run another install, just tell me what sequence you'd like to see. --WjW From owner-freebsd-ports@FreeBSD.ORG Thu May 6 03:48:05 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D40416A4CE; Thu, 6 May 2004 03:48:05 -0700 (PDT) Received: from meitner.wh.uni-dortmund.de (meitner.wh.Uni-Dortmund.DE [129.217.129.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1070343D5F; Thu, 6 May 2004 03:48:03 -0700 (PDT) (envelope-from michaelnottebrock@gmx.net) Received: from lofi.dyndns.org (pc2-105.intern.meitner [10.3.12.105]) by meitner.wh.uni-dortmund.de (Postfix) with ESMTP id 117A61675B7; Thu, 6 May 2004 12:48:02 +0200 (CEST) Received: from [192.168.8.4] (kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.10/8.12.10) with ESMTP id i46AlvcH072951 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Thu, 6 May 2004 12:47:57 +0200 (CEST) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: "Willem Jan Withagen" Date: Thu, 6 May 2004 12:47:53 +0200 User-Agent: KMail/1.6.2 References: <0ff301c432e4$db4f5c00$471b3dd4@dual> <200405061135.23951.michaelnottebrock@gmx.net> <11ea01c43352$bce49b90$471b3dd4@dual> In-Reply-To: <11ea01c43352$bce49b90$471b3dd4@dual> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_cfhmACZnv4TZKLq"; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Message-Id: <200405061247.56910.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new cc: re@freebsd.org cc: freebsd-ports@freebsd.org cc: Kris Kennaway Subject: Re: Fw: KDE 3.2.1 from the recent 5.2.1 ISO disc 1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 May 2004 10:48:05 -0000 --Boundary-02=_cfhmACZnv4TZKLq Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Thursday 06 May 2004 12:13, Willem Jan Withagen wrote: > Well if I can help??? Let me know..... > If you want I'll run another install, just tell me what sequence you'd li= ke > to see. Just do the same you did previously, and if things fail again report=20 explicitly what binaries complain about missing libstdc++ versions and also= =20 post the output of ls /var/db/pkg. =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --Boundary-02=_cfhmACZnv4TZKLq Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQBAmhfcXhc68WspdLARAvcrAKCprhz/JQBst2E872BC/dOgxXZk0wCbBI/6 n45+qpflX74K3OFWrGI5P/8= =Eq+4 -----END PGP SIGNATURE----- --Boundary-02=_cfhmACZnv4TZKLq-- From owner-freebsd-ports@FreeBSD.ORG Thu May 6 04:38:47 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 491B716A4CE for ; Thu, 6 May 2004 04:38:47 -0700 (PDT) Received: from smtp.dkm.cz (smtp.dkm.cz [62.24.64.34]) by mx1.FreeBSD.org (Postfix) with SMTP id E42C843D46 for ; Thu, 6 May 2004 04:38:45 -0700 (PDT) (envelope-from neuhauser@chello.cz) Received: (qmail 76096 invoked by uid 0); 6 May 2004 11:38:44 -0000 Received: from r3al16.mistral.cz (HELO isis.wad.cz) (213.220.229.16) by smtp.dkm.cz with SMTP; 6 May 2004 11:38:44 -0000 Received: by isis.wad.cz (Postfix, from userid 1001) id 47BA42FDA01; Thu, 6 May 2004 13:38:44 +0200 (CEST) Date: Thu, 6 May 2004 13:38:44 +0200 From: Roman Neuhauser To: Michael Nottebrock Message-ID: <20040506113844.GD11529@isis.wad.cz> Mail-Followup-To: Michael Nottebrock , freebsd-ports@freebsd.org, Peter Ulrich Kruppa References: <20040327055857.C27345@pukruppa.net> <200403270623.29691.michaelnottebrock@gmx.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200403270623.29691.michaelnottebrock@gmx.net> User-Agent: Mutt/1.5.6i cc: Peter Ulrich Kruppa cc: freebsd-ports@freebsd.org Subject: Re: qt-3.3.1_1 build fails X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 May 2004 11:38:47 -0000 # michaelnottebrock@gmx.net / 2004-03-27 06:23:29 +0100: > On Saturday 27 March 2004 06:03, Peter Ulrich Kruppa wrote: > > Hi! > > > > I am running > > 5.2-CURRENT FreeBSD 5.2-CURRENT #0: Thu Mar 25 00:11:22 CET 2004 > > > > The qt-3.3.1_1 port fails with > > > > ------------------------------------------------------ > > Qt is now configured for building. Just run /usr/bin/make. > > To reconfigure, run /usr/bin/make confclean and configure. > > > > ===> Building for qt-3.3.1_1 > > cd src/moc && make > > make: no target to make. > > *** Error code 2 > > I can't guess what went wrong there from that... try using a package: > pkg_add -r qt. For the archives: Yesterday I encounterd the same problem on a year-old STABLE box that had qt-3.1 installed. there was something wrong with the old installation, or with the upgrade (I was installing x11/kde): I don't know the original problem, but one of subsequent pkg_deinstalls complained the installed files didn't match checksums recorded in +CONTENTS. I deleted all of them by hand, and qt33 installed without a hitch. HTH -- If you cc me or remove the list(s) completely I'll most likely ignore your message. see http://www.eyrie.org./~eagle/faqs/questions.html From owner-freebsd-ports@FreeBSD.ORG Thu May 6 11:03:05 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB15D16A4CE for ; Thu, 6 May 2004 11:03:05 -0700 (PDT) Received: from u15150078.onlinehome-server.com (devity.net [217.160.255.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FF2543D75 for ; Thu, 6 May 2004 11:03:03 -0700 (PDT) (envelope-from angelic@anope.org) Received: (qmail 19254 invoked from network); 6 May 2004 18:03:02 -0000 Received: from 82-38-161-128.cable.ubr03.roth.blueyonder.co.uk (HELO toni) (82.38.161.128) by devity.net with SMTP; 6 May 2004 18:03:02 -0000 Message-ID: <003f01c43394$5fd09ca0$1e0010ac@toni> From: "angelic" To: Date: Thu, 6 May 2004 19:02:31 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1409 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 cc: ports@FreeBSD.org Subject: FreeBSD Port: anope-1.6.2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 May 2004 18:03:05 -0000 Hi Matt, You seem to have the Anope development team quite excited by adding us to your port system. Firstly thank you for supporting and acknowledging the anope project. Secondly I would like to post an announcement about this on our website and wondered if you minded. Regards, Toni // angelic Anope Project Manager From owner-freebsd-ports@FreeBSD.ORG Thu May 6 11:22:08 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 286D016A4CE for ; Thu, 6 May 2004 11:22:08 -0700 (PDT) Received: from data-action.co.uk (82-35-108-32.cable.ubr06.dals.blueyonder.co.uk [82.35.108.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5AEEF43D41 for ; Thu, 6 May 2004 11:22:07 -0700 (PDT) (envelope-from dave@itserviceltd.com) Received: from itserviceltd.com ([192.168.1.11]) by data-action.co.uk with MailEnable ESMTP; Thu, 06 May 2004 19:22:04 +0100 Message-ID: <409A824B.8080405@itserviceltd.com> Date: Thu, 06 May 2004 19:22:03 +0100 From: David Rigler User-Agent: Mozilla Thunderbird 0.5 (Windows/20040207) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: postfix X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 May 2004 18:22:08 -0000 /usr/ports/mail/postfix on FreeBSD 5.2.1 should that work ?? it doesnt on my system or rather having chosen the replace sendmail option by editing rc.conf the /etc/rc.d/sendmail script only works for start, the stop,reload,restart etc dont work Dave From owner-freebsd-ports@FreeBSD.ORG Thu May 6 11:39:10 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9167116A4CE for ; Thu, 6 May 2004 11:39:10 -0700 (PDT) Received: from plouf.absolight.net (plouf.absolight.net [212.43.217.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 49B5143D3F for ; Thu, 6 May 2004 11:39:10 -0700 (PDT) (envelope-from mat@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by plouf.absolight.net (Postfix) with ESMTP id D7A08421C; Thu, 6 May 2004 20:39:08 +0200 (CEST) Received: from pouet.in.mat.cc (pouet.in.mat.cc [212.43.217.126]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by plouf.absolight.net (Postfix) with ESMTP id 783164136; Thu, 6 May 2004 20:39:07 +0200 (CEST) Date: Thu, 06 May 2004 20:39:01 +0200 From: Mathieu Arnold To: angelic Message-ID: In-Reply-To: <003f01c43394$5fd09ca0$1e0010ac@toni> References: <003f01c43394$5fd09ca0$1e0010ac@toni> X-Mailer: Mulberry/3.1.3 (Win32) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========4BBA19999A28A8D00E98==========" X-Virus-Scanned: by amavisd 0.1 cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: anope-1.6.2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 May 2004 18:39:10 -0000 --==========4BBA19999A28A8D00E98========== Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline +-Le 06/05/2004 19:02 +0100, angelic a dit : | Hi Matt, Only one t will do ;-) | You seem to have the Anope development team quite excited by adding us to | your port system. | | Firstly thank you for supporting and acknowledging the anope project. | | Secondly I would like to post an announcement about this on our website | and wondered if you minded. Not at all, go ahead. If you, or the anope community have any hints on how to make the FreeBSD anope port better, just tell me :-) I made this port because I run the langochat.net irc network and we use anope && freebsd :-) -- Mathieu Arnold --==========4BBA19999A28A8D00E98========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (MingW32) iQEVAwUBQJqGSFvROjYJ63c1AQJJVgf8CSUNMLFF4LDY+uRLOrC2VKqPCntPtpfQ wlKm4I6nQfWWKBlme18dJHRDtjQmTMzwwz81l8EMXDpbDRWF/bvIjUYRNm0yq2mI 6LWKjDrvtP1JY7pK9lU0Th7cZkaT6x1DttoO2xzbQWhfq0y21fgSDHqkx9Y01ij/ TuSKk4ytn4K6y+fNWq0q6Y5QJ1+TLM8hbpWGFXDnBId+DJfPopExqnSlZqAzFDz4 o7YDlg1EGoCKVRnAwPS4lTe3U5XalnMPoImYaO4e+KX59ZzFNYm+ba4ehbFdYZJ7 bj6Zx6gCt36AYhXJNzLvU3SE7AEpM2NT4pd6lmpPqTiI4JigjUenbQ== =OHX0 -----END PGP SIGNATURE----- --==========4BBA19999A28A8D00E98==========-- From owner-freebsd-ports@FreeBSD.ORG Thu May 6 12:36:33 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B52CD16A4CE for ; Thu, 6 May 2004 12:36:33 -0700 (PDT) Received: from mta7.pltn13.pbi.net (mta7.pltn13.pbi.net [64.164.98.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9516443D39 for ; Thu, 6 May 2004 12:36:33 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (3accc44c45aec0379a4ef0d53e97c5bc@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128])i46JaWVW000209; Thu, 6 May 2004 12:36:33 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id ED992540CD; Thu, 6 May 2004 12:36:31 -0700 (PDT) Date: Thu, 6 May 2004 12:36:31 -0700 From: Kris Kennaway To: David Rigler Message-ID: <20040506193631.GB86163@xor.obsecurity.org> References: <409A824B.8080405@itserviceltd.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="7iMSBzlTiPOCCT2k" Content-Disposition: inline In-Reply-To: <409A824B.8080405@itserviceltd.com> User-Agent: Mutt/1.4.2.1i cc: freebsd-ports@freebsd.org Subject: Re: postfix X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 May 2004 19:36:33 -0000 --7iMSBzlTiPOCCT2k Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, May 06, 2004 at 07:22:03PM +0100, David Rigler wrote: >=20 > /usr/ports/mail/postfix on FreeBSD 5.2.1 >=20 > should that work ?? it doesnt on my system >=20 > or rather having chosen the replace sendmail option by editing rc.conf=20 > the /etc/rc.d/sendmail script only works for start, the=20 > stop,reload,restart etc dont work You need to do more than this, see the pkg-message file, which would have been displayed to you when you installed the port. Kris --7iMSBzlTiPOCCT2k Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAmpO/Wry0BWjoQKURArBEAKDUKjqyxPZfcSXesVHjF10ByRDADgCfTtx5 xUjIurDdGpDFOnLJ2+FAzr0= =RyrS -----END PGP SIGNATURE----- --7iMSBzlTiPOCCT2k-- From owner-freebsd-ports@FreeBSD.ORG Thu May 6 13:45:24 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 27B6316A4CE for ; Thu, 6 May 2004 13:45:24 -0700 (PDT) Received: from smtp.des.no (flood.des.no [217.116.83.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5903743D39 for ; Thu, 6 May 2004 13:45:21 -0700 (PDT) (envelope-from des@des.no) Received: by smtp.des.no (Pony Express, from userid 666) id 85253530A; Thu, 6 May 2004 22:45:20 +0200 (CEST) Received: from dwp.des.no (des.no [80.203.228.37]) by smtp.des.no (Pony Express) with ESMTP id A6FC05309 for ; Thu, 6 May 2004 22:45:13 +0200 (CEST) Received: by dwp.des.no (Postfix, from userid 2602) id A89BD33C71; Thu, 6 May 2004 22:38:53 +0200 (CEST) To: ports@freebsd.org From: des@des.no (=?iso-8859-1?q?Dag-Erling_Sm=F8rgrav?=) Date: Thu, 06 May 2004 22:38:53 +0200 Message-ID: User-Agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on flood.des.no X-Spam-Level: X-Spam-Status: No, hits=0.0 required=5.0 tests=AWL autolearn=no version=2.63 Subject: 'make clean' cosmetic bug X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 May 2004 20:45:24 -0000 des@dwp /usr/ports/java/shujit% make clean =3D=3D=3D> Cleaning for gdbm-1.8.3 =3D=3D=3D> Cleaning for gettext-0.13.1_1 =3D=3D=3D> Cleaning for glib-1.2.10_10 =3D=3D=3D> Cleaning for gmake-3.80_2 =3D=3D=3D> Cleaning for nspr-4.4.1_1 =3D=3D=3D> Cleaning for javavmwrapper-1.5 =3D=3D=3D> Cleaning for jdk-1.3.1p8_2=3D=3D=3D> Cleaning for ruby-1.8.1.2= 004.05.02 =3D=3D=3D> Cleaning for urwfonts-1.0 =3D=3D=3D> Cleaning for gtk-1.2.10_12 =3D=3D=3D> Cleaning for open-motif-2.2.2_2 =3D=3D=3D> Cleaning for shujit-0.7.14_2 happens every time; I don't know what causes it. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-freebsd-ports@FreeBSD.ORG Thu May 6 14:08:40 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D778C16A4CE for ; Thu, 6 May 2004 14:08:40 -0700 (PDT) Received: from smtp.dkm.cz (smtp.dkm.cz [62.24.64.34]) by mx1.FreeBSD.org (Postfix) with SMTP id 3D75943D48 for ; Thu, 6 May 2004 14:08:39 -0700 (PDT) (envelope-from neuhauser@chello.cz) Received: (qmail 31165 invoked by uid 0); 6 May 2004 21:08:38 -0000 Received: from r3al16.mistral.cz (HELO isis.wad.cz) (213.220.229.16) by smtp.dkm.cz with SMTP; 6 May 2004 21:08:38 -0000 Received: by isis.wad.cz (Postfix, from userid 1001) id D2F7C2FDA01; Thu, 6 May 2004 23:08:37 +0200 (CEST) Date: Thu, 6 May 2004 23:08:37 +0200 From: Roman Neuhauser To: Dag-Erling Sm?rgrav Message-ID: <20040506210837.GB75357@isis.wad.cz> Mail-Followup-To: Dag-Erling Sm?rgrav , ports@freebsd.org References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.6i cc: ports@freebsd.org Subject: Re: 'make clean' cosmetic bug X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 May 2004 21:08:41 -0000 # des@des.no / 2004-05-06 22:38:53 +0200: > des@dwp /usr/ports/java/shujit% make clean > ===> Cleaning for gdbm-1.8.3 > ===> Cleaning for gettext-0.13.1_1 > ===> Cleaning for glib-1.2.10_10 > ===> Cleaning for gmake-3.80_2 > ===> Cleaning for nspr-4.4.1_1 > ===> Cleaning for javavmwrapper-1.5 > ===> Cleaning for jdk-1.3.1p8_2===> Cleaning for ruby-1.8.1.2004.05.02 > ===> Cleaning for urwfonts-1.0 > ===> Cleaning for gtk-1.2.10_12 > ===> Cleaning for open-motif-2.2.2_2 > ===> Cleaning for shujit-0.7.14_2 > > happens every time; I don't know what causes it. ECHO_MSG=/usr/bin/printf in 8 Makefiles in the java category. the ports have chatty IGNORE variables; I think this is usually solved by catting a file, isn't it? I can generate a patch to that effect if it's desired. -- If you cc me or remove the list(s) completely I'll most likely ignore your message. see http://www.eyrie.org./~eagle/faqs/questions.html From owner-freebsd-ports@FreeBSD.ORG Thu May 6 14:17:35 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C33A716A4CE for ; Thu, 6 May 2004 14:17:35 -0700 (PDT) Received: from smtp.dkm.cz (smtp.dkm.cz [62.24.64.34]) by mx1.FreeBSD.org (Postfix) with SMTP id 1EA4E43D54 for ; Thu, 6 May 2004 14:17:34 -0700 (PDT) (envelope-from neuhauser@chello.cz) Received: (qmail 41045 invoked by uid 0); 6 May 2004 21:17:33 -0000 Received: from r3al16.mistral.cz (HELO isis.wad.cz) (213.220.229.16) by smtp.dkm.cz with SMTP; 6 May 2004 21:17:32 -0000 Received: by isis.wad.cz (Postfix, from userid 1001) id 40F7C2FDA01; Thu, 6 May 2004 23:17:32 +0200 (CEST) Date: Thu, 6 May 2004 23:17:32 +0200 From: Roman Neuhauser To: Dag-Erling Sm?rgrav , ports@freebsd.org Message-ID: <20040506211732.GC75357@isis.wad.cz> Mail-Followup-To: Dag-Erling Sm?rgrav , ports@freebsd.org References: <20040506210837.GB75357@isis.wad.cz> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="3V7upXqbjpZ4EhLz" Content-Disposition: inline In-Reply-To: <20040506210837.GB75357@isis.wad.cz> User-Agent: Mutt/1.5.6i Subject: Re: 'make clean' cosmetic bug X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 May 2004 21:17:35 -0000 --3V7upXqbjpZ4EhLz Content-Type: text/plain; charset=us-ascii Content-Disposition: inline # neuhauser@chello.cz / 2004-05-06 23:08:37 +0200: > # des@des.no / 2004-05-06 22:38:53 +0200: > > des@dwp /usr/ports/java/shujit% make clean > > ===> Cleaning for gdbm-1.8.3 > > ===> Cleaning for gettext-0.13.1_1 > > ===> Cleaning for glib-1.2.10_10 > > ===> Cleaning for gmake-3.80_2 > > ===> Cleaning for nspr-4.4.1_1 > > ===> Cleaning for javavmwrapper-1.5 > > ===> Cleaning for jdk-1.3.1p8_2===> Cleaning for ruby-1.8.1.2004.05.02 > > ===> Cleaning for urwfonts-1.0 > > ===> Cleaning for gtk-1.2.10_12 > > ===> Cleaning for open-motif-2.2.2_2 > > ===> Cleaning for shujit-0.7.14_2 > > > > happens every time; I don't know what causes it. > > ECHO_MSG=/usr/bin/printf in 8 Makefiles in the java category. > the ports have chatty IGNORE variables; I think this is usually > solved by catting a file, isn't it? I can generate a patch to > that effect if it's desired. actually, taking a glance at bsd.port.mk, this should be done using IGNORE_CMD, does this help? (it does here, I want to know it has no side effects) -- If you cc me or remove the list(s) completely I'll most likely ignore your message. see http://www.eyrie.org./~eagle/faqs/questions.html --3V7upXqbjpZ4EhLz Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="ports::java-IGNORE_CMD.patch" Index: java/diablo-jdk13/Makefile =================================================================== RCS file: /home/ncvs/ports/java/diablo-jdk13/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- java/diablo-jdk13/Makefile 4 Feb 2004 05:21:26 -0000 1.6 +++ java/diablo-jdk13/Makefile 6 May 2004 21:14:44 -0000 @@ -65,7 +65,7 @@ .endif .if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) && !defined(PACKAGE_BUILDING) -ECHO_MSG=/usr/bin/printf +IGNORECMD= ${PRINTF} "===> ${PKGNAME} ${IGNORE}." IGNORE= :\n\ Because of licensing restrictions, you must fetch the distribution\n\ manually. Please access\n\ Index: java/diablo-jre13/Makefile =================================================================== RCS file: /home/ncvs/ports/java/diablo-jre13/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- java/diablo-jre13/Makefile 4 Feb 2004 05:21:26 -0000 1.6 +++ java/diablo-jre13/Makefile 6 May 2004 21:14:44 -0000 @@ -65,7 +65,7 @@ .endif .if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) && !defined(PACKAGE_BUILDING) -ECHO_MSG=/usr/bin/printf +IGNORECMD= ${PRINTF} "===> ${PKGNAME} ${IGNORE}." IGNORE= :\n\ Because of licensing restrictions, you must fetch the distribution\n\ manually. Please access\n\ Index: java/jdk12/Makefile =================================================================== RCS file: /home/ncvs/ports/java/jdk12/Makefile,v retrieving revision 1.32 diff -u -r1.32 Makefile --- java/jdk12/Makefile 6 Feb 2004 16:49:54 -0000 1.32 +++ java/jdk12/Makefile 6 May 2004 21:14:44 -0000 @@ -80,7 +80,7 @@ # Check for patchset .if !exists(${DISTDIR}/${PATCHSETFILE}) && !defined(PACKAGE_BUILDING) -ECHO_MSG=/usr/bin/printf +IGNORECMD= ${PRINTF} "===> ${PKGNAME} ${IGNORE}." IGNORE= :\n\ The source distribution exists on your system, but due to\n\ licensing restrictions you still need to download the\n\ @@ -91,7 +91,7 @@ # Check for JDK sources .if !exists(${DISTDIR}/${SRCFILE}) && !defined(PACKAGE_BUILDING) -ECHO_MSG=/usr/bin/printf +IGNORECMD= ${PRINTF} "===> ${PKGNAME} ${IGNORE}." IGNORE= :\n\ Because of licensing restrictions, you must fetch the source distribution\n\ manually. Please access http://www.sun.com/software/java2/download.html\n\ Index: java/jdk13/Makefile =================================================================== RCS file: /home/ncvs/ports/java/jdk13/Makefile,v retrieving revision 1.75 diff -u -r1.75 Makefile --- java/jdk13/Makefile 6 Feb 2004 17:03:09 -0000 1.75 +++ java/jdk13/Makefile 6 May 2004 21:14:44 -0000 @@ -145,7 +145,7 @@ # Check for patchset .if !exists(${DISTDIR}/${PATCHSETFILE}) && !defined(PACKAGE_BUILDING) -ECHO_MSG=/usr/bin/printf +IGNORECMD= ${PRINTF} "===> ${PKGNAME} ${IGNORE}." IGNORE= :\n\ The source distribution exists on your system, but due to\n\ licensing restrictions you still need to download the\n\ @@ -156,7 +156,7 @@ # Check for JDK sources .if !exists(${DISTDIR}/${SRCFILE}) && !defined(PACKAGE_BUILDING) -ECHO_MSG=/usr/bin/printf +IGNORECMD= ${PRINTF} "===> ${PKGNAME} ${IGNORE}." IGNORE= :\n\ Because of licensing restrictions, you must fetch the source distribution\n\ manually. Please access http://www.sun.com/software/java2/download.html\n\ @@ -170,7 +170,7 @@ # HotSpot and/or native threads require a recent version of FreeBSD .if ( defined(WITH_NATIVE_THREADS) || defined(WITH_HOTSPOT) ) && ( ${OSVERSION} < 470101 || ( ${OSVERSION} >= 500000 && ${OSVERSION} < 500043 ) ) -ECHO_MSG=/usr/bin/printf +IGNORECMD= ${PRINTF} "===> ${PKGNAME} ${IGNORE}." IGNORE= :\n\ You must have a version of FreeBSD later than 4.7-STABLE February 2003\n\ or 5-CURRENT February 2003 to use either native threads or HotSpot.\n Index: java/jdk14/Makefile =================================================================== RCS file: /home/ncvs/ports/java/jdk14/Makefile,v retrieving revision 1.78 diff -u -r1.78 Makefile --- java/jdk14/Makefile 5 Mar 2004 13:43:40 -0000 1.78 +++ java/jdk14/Makefile 6 May 2004 21:14:44 -0000 @@ -137,7 +137,7 @@ # Check for JDK sources .if !exists(${DISTDIR}/${SCSL_SRCFILE}) && !defined(PACKAGE_BUILDING) -ECHO_MSG=/usr/bin/printf +IGNORECMD= ${PRINTF} "===> ${PKGNAME} ${IGNORE}." IGNORE= :\n\ Because of licensing restrictions, you must fetch the source distribution\n\ manually. Please access http://www.sun.com/software/java2/download.html\n\ @@ -149,7 +149,7 @@ ${DISTDIR}.\n .endif .if !exists(${DISTDIR}/${SCSL_BINFILE}) && !defined(PACKAGE_BUILDING) -ECHO_MSG=/usr/bin/printf +IGNORECMD= ${PRINTF} "===> ${PKGNAME} ${IGNORE}." IGNORE= :\n\ Because of licensing restrictions, you must fetch the source distribution\n\ manually. Please access http://www.sun.com/software/java2/download.html\n\ @@ -163,7 +163,7 @@ # Check for patchset .if !exists(${DISTDIR}/${PATCHSETFILE}) && !defined(PACKAGE_BUILDING) -ECHO_MSG=/usr/bin/printf +IGNORECMD= ${PRINTF} "===> ${PKGNAME} ${IGNORE}." IGNORE= :\n\ The source distribution exists on your system, but due to\n\ licensing restrictions you still need to download the\n\ Index: java/jmf/Makefile =================================================================== RCS file: /home/ncvs/ports/java/jmf/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- java/jmf/Makefile 9 Feb 2004 16:22:27 -0000 1.1 +++ java/jmf/Makefile 6 May 2004 21:14:44 -0000 @@ -36,7 +36,7 @@ # Check for JMF sources .if !exists(${DISTDIR}/${DISTFILES}) && !defined(PACKAGE_BUILDING) -ECHO_MSG=/usr/bin/printf +IGNORECMD= ${PRINTF} "===> ${PKGNAME} ${IGNORE}." IGNORE= :\n\ Because of licensing restrictions, you must fetch the source distribution\n\ manually. Please access:\n\ Index: java/linux-ibm-jdk14/Makefile =================================================================== RCS file: /home/ncvs/ports/java/linux-ibm-jdk14/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- java/linux-ibm-jdk14/Makefile 15 Apr 2004 22:55:14 -0000 1.8 +++ java/linux-ibm-jdk14/Makefile 6 May 2004 21:14:44 -0000 @@ -39,7 +39,7 @@ .include .if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) && !defined(PACKAGE_BUILDING) -ECHO_MSG=/usr/bin/printf +IGNORECMD= ${PRINTF} "===> ${PKGNAME} ${IGNORE}." IGNORE=:\n\ Because of licensing restrictions, you must manually fetch the IBM Java SDK\n\ ${JDK_VERSION} for Linux archive (${DISTNAME}${EXTRACT_SUFX}). Please access\n\ Index: java/poseidon/Makefile =================================================================== RCS file: /home/ncvs/ports/java/poseidon/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- java/poseidon/Makefile 9 Apr 2004 21:48:02 -0000 1.2 +++ java/poseidon/Makefile 6 May 2004 21:14:44 -0000 @@ -25,7 +25,7 @@ .include .if !exists(${DISTDIR}/${DISTFILES}) -ECHO_MSG=/usr/bin/printf +IGNORECMD= ${PRINTF} "===> ${PKGNAME} ${IGNORE}." IGNORE= :\n\ Because of licensing restrictions, you must fetch the source distribution\n\ manually. Please access http://www.gentleware.com/products/download.php4\n\ --3V7upXqbjpZ4EhLz-- From owner-freebsd-ports@FreeBSD.ORG Thu May 6 14:22:33 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8BD9716A4CE for ; Thu, 6 May 2004 14:22:33 -0700 (PDT) Received: from mta4.rcsntx.swbell.net (mta4.rcsntx.swbell.net [151.164.30.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2CEF143D48 for ; Thu, 6 May 2004 14:22:33 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (14622799d11d8c11dad19e701761d651@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128])i46LMJYS001583; Thu, 6 May 2004 16:22:30 -0500 (CDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id ED385521DA; Thu, 6 May 2004 14:22:16 -0700 (PDT) Date: Thu, 6 May 2004 14:22:16 -0700 From: Kris Kennaway To: Dag-Erling Sm?rgrav , ports@freebsd.org Message-ID: <20040506212216.GB93216@xor.obsecurity.org> References: <20040506210837.GB75357@isis.wad.cz> <20040506211732.GC75357@isis.wad.cz> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="oC1+HKm2/end4ao3" Content-Disposition: inline In-Reply-To: <20040506211732.GC75357@isis.wad.cz> User-Agent: Mutt/1.4.2.1i Subject: Re: 'make clean' cosmetic bug X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 May 2004 21:22:33 -0000 --oC1+HKm2/end4ao3 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, May 06, 2004 at 11:17:32PM +0200, Roman Neuhauser wrote: > > ECHO_MSG=3D/usr/bin/printf in 8 Makefiles in the java category. > > the ports have chatty IGNORE variables; I think this is usually > > solved by catting a file, isn't it? I can generate a patch to > > that effect if it's desired. >=20 > actually, taking a glance at bsd.port.mk, this should be done > using IGNORE_CMD, does this help? (it does here, I want to know > it has no side effects) This patch looks good to me. These ports were also a problem case when I tried to impose consistent quoting on IGNORE and BROKEN strings, this should also address that particular hurdle. Kris --oC1+HKm2/end4ao3 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAmqyIWry0BWjoQKURAu7zAJ9C1xh914hd3257lO05dwdZb7cT5QCg7LNp zRMYkzdF/GCzrllLonxQtuo= =Cxn0 -----END PGP SIGNATURE----- --oC1+HKm2/end4ao3-- From owner-freebsd-ports@FreeBSD.ORG Thu May 6 15:59:22 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3761616A4CE; Thu, 6 May 2004 15:59:22 -0700 (PDT) Received: from freebee.digiware.nl (dsl390.iae.nl [212.61.63.138]) by mx1.FreeBSD.org (Postfix) with ESMTP id 782C743D41; Thu, 6 May 2004 15:59:21 -0700 (PDT) (envelope-from wjw@withagen.nl) Received: from dual (dual [212.61.27.71]) by freebee.digiware.nl (8.12.10/8.12.9) with SMTP id i46MqYeL080903; Fri, 7 May 2004 00:52:35 +0200 (CEST) (envelope-from wjw@withagen.nl) Message-ID: <13cb01c433bd$7b9c68a0$471b3dd4@dual> From: "Willem Jan Withagen" To: "Michael Nottebrock" References: <0ff301c432e4$db4f5c00$471b3dd4@dual><200405061135.23951.michaelnottebrock@gmx.net><11ea01c43352$bce49b90$471b3dd4@dual> <200405061247.56910.michaelnottebrock@gmx.net> Date: Fri, 7 May 2004 00:57:18 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1409 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 cc: re@freebsd.org cc: freebsd-ports@freebsd.org cc: Kris Kennaway Subject: Re: Fw: KDE 3.2.1 from the recent 5.2.1 ISO disc 1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 May 2004 22:59:22 -0000 ----- Original Message ----- From: "Michael Nottebrock" > On Thursday 06 May 2004 12:13, Willem Jan Withagen wrote: > > > Well if I can help??? Let me know..... > > If you want I'll run another install, just tell me what sequence you'd like > > to see. > > Just do the same you did previously, and if things fail again report > explicitly what binaries complain about missing libstdc++ versions and also > post the output of ls /var/db/pkg. After fiddling with KDE the whole day, I reformated the system, and reinstalled this time there are no problems with KDE 3.1.4. So I'm really baffled.... KDE still does not work, but that does not seem to be a ports/ISO problem. And I've posted questions about this in freebsd-KDE@ --WjW From owner-freebsd-ports@FreeBSD.ORG Thu May 6 17:12:26 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6102F16A4CE for ; Thu, 6 May 2004 17:12:26 -0700 (PDT) Received: from smtp.dkm.cz (smtp.dkm.cz [62.24.64.34]) by mx1.FreeBSD.org (Postfix) with SMTP id 3E8BB43D41 for ; Thu, 6 May 2004 17:12:25 -0700 (PDT) (envelope-from neuhauser@chello.cz) Received: (qmail 5524 invoked by uid 0); 7 May 2004 00:12:24 -0000 Received: from r3al16.mistral.cz (HELO isis.wad.cz) (213.220.229.16) by smtp.dkm.cz with SMTP; 7 May 2004 00:12:24 -0000 Received: by isis.wad.cz (Postfix, from userid 1001) id EB6292FDA01; Fri, 7 May 2004 02:12:23 +0200 (CEST) Date: Fri, 7 May 2004 02:12:23 +0200 From: Roman Neuhauser To: Kris Kennaway Message-ID: <20040507001223.GD75357@isis.wad.cz> Mail-Followup-To: Kris Kennaway , Dag-Erling Sm?rgrav , ports@freebsd.org References: <20040506210837.GB75357@isis.wad.cz> <20040506211732.GC75357@isis.wad.cz> <20040506212216.GB93216@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040506212216.GB93216@xor.obsecurity.org> User-Agent: Mutt/1.5.6i cc: ports@freebsd.org cc: Dag-Erling Sm?rgrav Subject: Re: 'make clean' cosmetic bug X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 May 2004 00:12:26 -0000 # kris@obsecurity.org / 2004-05-06 14:22:16 -0700: > On Thu, May 06, 2004 at 11:17:32PM +0200, Roman Neuhauser wrote: > > > > ECHO_MSG=/usr/bin/printf in 8 Makefiles in the java category. > > > the ports have chatty IGNORE variables; I think this is usually > > > solved by catting a file, isn't it? I can generate a patch to > > > that effect if it's desired. > > > > actually, taking a glance at bsd.port.mk, this should be done > > using IGNORE_CMD, does this help? (it does here, I want to know > > it has no side effects) > > This patch looks good to me. These ports were also a problem case > when I tried to impose consistent quoting on IGNORE and BROKEN > strings, this should also address that particular hurdle. ok, filed as ports/66342 -- If you cc me or remove the list(s) completely I'll most likely ignore your message. see http://www.eyrie.org./~eagle/faqs/questions.html From owner-freebsd-ports@FreeBSD.ORG Thu May 6 21:08:05 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F3C3416A4CF for ; Thu, 6 May 2004 21:08:04 -0700 (PDT) Received: from mail.mcneil.com (rrcs-west-24-199-45-54.biz.rr.com [24.199.45.54]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9053543D5A for ; Thu, 6 May 2004 21:08:02 -0700 (PDT) (envelope-from sean@mcneil.com) Received: from localhost (localhost.mcneil.com [127.0.0.1]) by mail.mcneil.com (Postfix) with ESMTP id 2108AFD0D2; Thu, 6 May 2004 21:08:02 -0700 (PDT) Received: from mail.mcneil.com ([127.0.0.1]) by localhost (server.mcneil.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 83870-01; Thu, 6 May 2004 21:08:01 -0700 (PDT) Received: from [24.199.45.54] (mcneil.com [24.199.45.54]) by mail.mcneil.com (Postfix) with ESMTP id B4E12FD09D; Thu, 6 May 2004 21:08:01 -0700 (PDT) From: Sean McNeil To: freebsd-ports@freebsd.org, gldisater@gldis.ca Content-Type: text/plain Message-Id: <1083902881.86736.5.camel@server.mcneil.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Thu, 06 May 2004 21:08:01 -0700 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at mcneil.com Subject: Eclipse CDT port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 May 2004 04:08:05 -0000 I saw the posting of a shar to add the Eclipse C/C++ Tools to the ports collection. Unfortunately, I can only see it in html and would like very much to install it. Could you please send me the shar directly? Alternatively, it could get added to ports and I'd be very happy :) Thanks, Sean From owner-freebsd-ports@FreeBSD.ORG Thu May 6 23:18:07 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BEF1B16A4CE for ; Thu, 6 May 2004 23:18:07 -0700 (PDT) Received: from reah.alib.jp (tky3-ppp-195-144.alib.jp [202.224.195.144]) by mx1.FreeBSD.org (Postfix) with ESMTP id C8B9A43D1F for ; Thu, 6 May 2004 23:18:06 -0700 (PDT) (envelope-from kazuhiro@alib.jp) Received: from reah.alib.jp (kazuhiro@reah.alib.jp [IPv6:2001:2c0:40e:2002::1]) (authenticated bits=0) by reah.alib.jp (8.12.11/8.12.9) with ESMTP id i476HnuG045387 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 7 May 2004 15:17:50 +0900 (JST) (envelope-from kazuhiro@alib.jp) Date: Fri, 7 May 2004 15:17:47 +0900 From: "KONDOU, Kazuhiro" To: gcross@fastmail.fm Message-Id: <20040507151747.65ee510b.kazuhiro@alib.jp> X-Mailer: Sylpheed version 0.9.10 (GTK+ 1.2.10; i386-portbld-freebsd5.2) X-URL: http://www.alib.jp/ X-PGP-Public-Key: http://www.alib.jp/public_key.txt X-Operating-System: FreeBSD 5.1-CURRENT i386 Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=0.0 required=3.5 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on reah.alib.jp cc: ports@FreeBSD.org Subject: please update cppunit to 1.9.14 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 May 2004 06:18:07 -0000 Hi, maintainer. CppUnit 1.8.0 test suite cannot build GCC 3. (written in BUGS file) FreeBSD 5.x has GCC 3 on base system. Actually, C++ programmers are not able to use CppUnit's easy test suite on FreeBSD 5.x box. Please update to CppUnit 1.9.14. This problem is already fixed with newer version. If you want to maintain only stable version on devel/cppunit, I want devel/cppunit-devel. Regards, -- KONDOU, Kazuhiro @ Ancient library site top URL : http://www.alib.jp/ mail address : kazuhiro@alib.jp fingerprint = 18CA 90A9 FDEE FBE1 F69A D124 9F95 9289 E665 4D2B From owner-freebsd-ports@FreeBSD.ORG Thu May 6 23:31:46 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D609A16A4CE; Thu, 6 May 2004 23:31:46 -0700 (PDT) Received: from sccrmhc11.comcast.net (sccrmhc11.comcast.net [204.127.202.55]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6353A43D39; Thu, 6 May 2004 23:31:46 -0700 (PDT) (envelope-from merkurie@comcast.net) Received: from comcast.net (pcp09089411pcs.flint01.mi.comcast.net[68.62.24.145]) by comcast.net (sccrmhc11) with SMTP id <2004050706314501100k0mafe> (Authid: merkurie); Fri, 7 May 2004 06:31:46 +0000 Message-ID: <409B2DAE.9090605@comcast.net> Date: Fri, 07 May 2004 02:33:18 -0400 From: Marc Smith User-Agent: Mozilla/5.0 (X11; U; Linux i386; en-US; rv:1.4) Gecko/20030624 Netscape/7.1 X-Accept-Language: en-us, en MIME-Version: 1.0 To: lioux@FreeBSD.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: FreeBSD Port: mjpegtools-1.6.1_2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 May 2004 06:31:46 -0000 Hi, I am trying to use mjpegtools with transcode and it can not find 'export_mpeg2enc.so' or 'export_mp2enc.so' and I was under the impression these came with mjpegtools. I poked around on Google a little bit and it seems RedHat users have the same problem with these libs not coming with the RPM of mjpegtools. I was wondering if this is also true for FreeBSD and if so, is there a way to make it so it does install these? Thanks for your time. Marc From owner-freebsd-ports@FreeBSD.ORG Thu May 6 23:42:29 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 200D716A4CE for ; Thu, 6 May 2004 23:42:29 -0700 (PDT) Received: from cl-mailhost.FernUni-Hagen.de (sycamore.fernuni-hagen.de [132.176.114.84]) by mx1.FreeBSD.org (Postfix) with ESMTP id 988F143D58 for ; Thu, 6 May 2004 23:42:28 -0700 (PDT) (envelope-from jfh@es-i2.FernUni-Hagen.de) Received: from es-i2.fernuni-hagen.de ([132.176.7.81]) by cl-mailhost.FernUni-Hagen.de with esmtp (Exim 4.24) id 1BLz3z-0006hm-Td; Fri, 07 May 2004 08:42:27 +0200 Received: from jfh00.fernuni-hagen.de (jfh00.fernuni-hagen.de [132.176.7.6]) by es-i2.fernuni-hagen.de (Postfix) with ESMTP id BA2BF5A17; Fri, 7 May 2004 08:42:22 +0200 (CEST) From: Fritz Heinrichmeyer Organization: fernuni To: kwm@rainbow-runner.nl Date: Fri, 7 May 2004 08:42:22 +0200 User-Agent: KMail/1.6.2 MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Message-Id: <200405070842.22987.fritz.heinrichmeyer@fernuni-hagen.de> cc: ports@freebsd.org Subject: samba-libsmbclient and samba should not be conflicting ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 May 2004 06:42:29 -0000 Hi, there are so many ports that depend on libsmbclient and all dual boot FreeBSD/Linux PCs (allmost all FreeBSD/Linux-PCs) as far as i can see here export files to local windows clients by means of samba. So when using samba *server* (what i consider normal) portupgrade and portinstall does not stop to nag me about missing dependency for samba-libsmbclient. -- Fritz Heinrichmeyer FernUniversitaet, LG ES, 58084 Hagen (Germany) tel:+49 2331/987-1166 fax:987-355 http://www-es.fernuni-hagen.de/~jfh From owner-freebsd-ports@FreeBSD.ORG Fri May 7 00:04:45 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5598F16A4CE for ; Fri, 7 May 2004 00:04:45 -0700 (PDT) Received: from mail.ciam.ru (mail.ciam.ru [213.147.57.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 78A0C43D2D for ; Fri, 7 May 2004 00:04:44 -0700 (PDT) (envelope-from sem@ciam.ru) Received: from sem.ciam.ru ([192.168.45.10] helo=ciam.ru) by mail.ciam.ru with esmtp (Exim 4.x) id 1BLzPS-0007XC-RL; Fri, 07 May 2004 11:04:38 +0400 Message-ID: <409B356D.1040700@ciam.ru> Date: Fri, 07 May 2004 11:06:21 +0400 From: Sergey Matveychuk User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.6) Gecko/20040113 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Fritz Heinrichmeyer References: <200405070842.22987.fritz.heinrichmeyer@fernuni-hagen.de> In-Reply-To: <200405070842.22987.fritz.heinrichmeyer@fernuni-hagen.de> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: ports@freebsd.org cc: kwm@rainbow-runner.nl Subject: Re: samba-libsmbclient and samba should not be conflicting ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 May 2004 07:04:45 -0000 Fritz Heinrichmeyer wrote: > Subject: samba-libsmbclient and samba should not be conflicting ports You meant samba-devel? > Hi, > there are so many ports that depend on libsmbclient and all dual boot > FreeBSD/Linux PCs (allmost all FreeBSD/Linux-PCs) as far as i can see here > export files to local windows clients by means of samba. > > So when using samba *server* (what i consider normal) portupgrade and > portinstall does not stop to nag me about missing dependency for > samba-libsmbclient. OK. It's a problem. But the ports are conflicted - they have the same files. So you can't just remove CONFLICTS. What is your offers? -- Sem. From owner-freebsd-ports@FreeBSD.ORG Fri May 7 00:29:47 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0518C16A4CF; Fri, 7 May 2004 00:29:47 -0700 (PDT) Received: from smtp.web.de (smtp07.web.de [217.72.192.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89BB343D39; Fri, 7 May 2004 00:29:46 -0700 (PDT) (envelope-from kay_lehmann@web.de) Received: from lehmann.in-dsl.de ([217.197.85.240] helo=web.de) by smtp.web.de with asmtp (TLSv1:RC4-MD5:128) (WEB.DE 4.101 #91) id 1BLznj-0005p4-00; Fri, 07 May 2004 09:29:44 +0200 Message-ID: <409B3B55.4070209@web.de> Date: Fri, 07 May 2004 09:31:33 +0200 From: Kay Lehmann User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; de-AT; rv:1.6) Gecko/20040405 X-Accept-Language: de-de, de, en-us, en MIME-Version: 1.0 To: Marc Smith References: <409B2DAE.9090605@comcast.net> In-Reply-To: <409B2DAE.9090605@comcast.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: kay_lehmann@web.de cc: ports@FreeBSD.org cc: lioux@FreeBSD.org Subject: Re: FreeBSD Port: mjpegtools-1.6.1_2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 May 2004 07:29:47 -0000 Hello, Marc Smith wrote: > Hi, I am trying to use mjpegtools with transcode and it can not find > 'export_mpeg2enc.so' or 'export_mp2enc.so' and I was under the > impression these came with mjpegtools. No, I think they come with transcode. Supporting mjpegtools is an option of transcode: Makefile ---snip--- .if exists(${LOCALBASE}/include/mjpegtools/yuv4mpeg.h) WITH_MJPEG= yes .endif ... .if defined(WITH_MJPEG) LIB_DEPENDS+= lavplay-1.6.1:${PORTSDIR}/multimedia/mjpegtools PLIST_SUB+= WITH_MJPEG="" .else PLIST_SUB+= WITH_MJPEG="@comment " .endif ---snip--- pkg-plist: ---snip--- %%WITH_MJPEG%%lib/transcode/export_mpeg2enc.so %%WITH_MJPEG%%lib/transcode/export_mp2enc.so ---snip--- > I poked around on Google a little > bit and it seems RedHat users have the same problem with these libs not > coming with the RPM of mjpegtools. I was wondering if this is also true > for FreeBSD and if so, is there a way to make it so it does install these? > Thanks for your time. > > Marc So you have two options to get it working: 1. Install mjpegtools and build transcode from ports 2. build transcode with 'make WITH_MJPEG=yes' greets, Kay From owner-freebsd-ports@FreeBSD.ORG Fri May 7 00:29:49 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6396916A4CF for ; Fri, 7 May 2004 00:29:49 -0700 (PDT) Received: from seed.net.tw (sn13.seed.net.tw [139.175.54.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA8A043D1F for ; Fri, 7 May 2004 00:29:48 -0700 (PDT) (envelope-from leafy@leafy.idv.tw) Received: from [61.59.121.140] (port=57140 helo=chihiro.leafy.idv.tw) by seed.net.tw with esmtp (Seednet 4.23:1) id 1BLznX-000FIj-VC; Fri, 07 May 2004 15:29:32 +0800 Received: from localhost (localhost [127.0.0.1]) by chihiro.leafy.idv.tw (Postfix) with ESMTP id 5DCDB644; Fri, 7 May 2004 15:29:37 +0800 (CST) Received: from chihiro.leafy.idv.tw ([127.0.0.1]) by localhost (chihiro.leafy.idv.tw [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00648-05; Fri, 7 May 2004 15:29:36 +0800 (CST) Received: by chihiro.leafy.idv.tw (Postfix, from userid 1000) id CCCC7640; Fri, 7 May 2004 15:29:36 +0800 (CST) Date: Fri, 7 May 2004 15:29:36 +0800 From: leafy To: Sergey Matveychuk Message-ID: <20040507072936.GA18966@chihiro.leafy.idv.tw> References: <200405070842.22987.fritz.heinrichmeyer@fernuni-hagen.de> <409B356D.1040700@ciam.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=big5 Content-Disposition: inline In-Reply-To: <409B356D.1040700@ciam.ru> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new at leafy.idv.tw cc: ports@freebsd.org cc: kwm@rainbow-runner.nl cc: Fritz Heinrichmeyer Subject: Re: samba-libsmbclient and samba should not be conflicting ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 May 2004 07:29:49 -0000 On Fri, May 07, 2004 at 11:06:21AM +0400, Sergey Matveychuk wrote: > OK. It's a problem. But the ports are conflicted - they have the same > files. So you can't just remove CONFLICTS. > > What is your offers? > > -- > Sem. How about really spllitting samba-devel into a smbclient part and a ~smbclient part and have the none smbclient part depend on the smbclient part. In this way, ports depending on the smbclient libs can co-exist with the server (which also depend of libsmbclient). Jiawei -- "Without the userland, the kernel is useless." --inspired by The Tao of Programming From owner-freebsd-ports@FreeBSD.ORG Fri May 7 01:45:29 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 631D716A4CE for ; Fri, 7 May 2004 01:45:29 -0700 (PDT) Received: from meitner.wh.uni-dortmund.de (meitner.wh.uni-dortmund.de [129.217.129.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id F029143D1D for ; Fri, 7 May 2004 01:45:28 -0700 (PDT) (envelope-from michaelnottebrock@gmx.net) Received: from lofi.dyndns.org (pc2-105.intern.meitner [10.3.12.105]) by meitner.wh.uni-dortmund.de (Postfix) with ESMTP id D9458167598; Fri, 7 May 2004 10:45:27 +0200 (CEST) Received: from [192.168.8.4] (kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.10/8.12.10) with ESMTP id i478j83U009199 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Fri, 7 May 2004 10:45:09 +0200 (CEST) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: freebsd-ports@freebsd.org Date: Fri, 7 May 2004 10:45:07 +0200 User-Agent: KMail/1.6.2 References: <200405070842.22987.fritz.heinrichmeyer@fernuni-hagen.de> <409B356D.1040700@ciam.ru> In-Reply-To: <409B356D.1040700@ciam.ru> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_Uy0mAbcirH4Cx8u"; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200405071045.08115.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new cc: Sergey Matveychuk cc: Fritz Heinrichmeyer cc: kwm@rainbow-runner.nl Subject: Re: samba-libsmbclient and samba should not be conflicting ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 May 2004 08:45:29 -0000 --Boundary-02=_Uy0mAbcirH4Cx8u Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Friday 07 May 2004 09:06, Sergey Matveychuk wrote: > OK. It's a problem. But the ports are conflicted - they have the same > files. So you can't just remove CONFLICTS. > > What is your offers? I have discussed this with the samba-devel maintainer some time ago=20 (http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/64523) and he has follo= wed=20 up with a PR that implements exactly what I proposed=20 (http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/65976). Now all that's= =20 needed is approval from the samba-libsmbclient maintainer and a commit. =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --Boundary-02=_Uy0mAbcirH4Cx8u Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQBAm0yUXhc68WspdLARAvsAAJ0UirBgSq1+6a1mxG5Tk9EblOspewCffA2E CTyfcxHPUIpZ1J/lH0YZQ8s= =UYqy -----END PGP SIGNATURE----- --Boundary-02=_Uy0mAbcirH4Cx8u-- From owner-freebsd-ports@FreeBSD.ORG Fri May 7 06:52:55 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2AFE216A4CE for ; Fri, 7 May 2004 06:52:55 -0700 (PDT) Received: from router.ua.pmmci.com (ua.pmmci.com [213.186.210.18]) by mx1.FreeBSD.org (Postfix) with SMTP id 0199343D2D for ; Fri, 7 May 2004 06:52:49 -0700 (PDT) (envelope-from mirya@ua.pmmci.com) Received: (qmail 72291 invoked from network); 7 May 2004 13:52:44 -0000 Received: from t-mirya.ua.pmmci.com (HELO TMirya) (10.9.4.7) by router.ua.pmmci.com with SMTP; 7 May 2004 13:52:44 -0000 From: "Kyryll Mirnenko" To: Date: Fri, 7 May 2004 16:52:48 +0300 MIME-Version: 1.0 X-Mailer: Microsoft Office Outlook, Build 11.0.5510 Thread-Index: AcQ0OpS7PLgrE8anQ+aUAIjiuqxWJw== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Message-Id: <20040507135249.0199343D2D@mx1.FreeBSD.org> Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: General binary packages issue: pkg-config *.pc has hadcoded base directory X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 May 2004 13:52:55 -0000 I use two harddrives & have to split the packages I install between them, so I has 2 default installation bases (/usr/local & /usr/X11R6) and one more for the 2nd drive: /usr2 . I found all packages contain pkg-config congifs (*.pc) hardcoded to package default location, not to the one specified with -p option to pkg-add From owner-freebsd-ports@FreeBSD.ORG Fri May 7 08:35:53 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD86216A4E1 for ; Fri, 7 May 2004 08:35:51 -0700 (PDT) Received: from creme-brulee.marcuscom.com (rrcs-midsouth-24-172-16-118.biz.rr.com [24.172.16.118]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5350D43D1F for ; Fri, 7 May 2004 08:35:50 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from shumai.marcuscom.com (shumai.marcuscom.com [192.168.1.4]) i47FYlnv061189; Fri, 7 May 2004 11:34:47 -0400 (EDT) (envelope-from marcus@marcuscom.com) Date: Fri, 7 May 2004 11:35:29 -0400 (EDT) From: Joe Marcus Clarke To: Michael Nottebrock In-Reply-To: <200405071045.08115.michaelnottebrock@gmx.net> Message-ID: <20040507113450.M27436@shumai.marcuscom.com> References: <200405070842.22987.fritz.heinrichmeyer@fernuni-hagen.de> <409B356D.1040700@ciam.ru> <200405071045.08115.michaelnottebrock@gmx.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: Sergey Matveychuk cc: Fritz Heinrichmeyer cc: freebsd-ports@freebsd.org cc: kwm@rainbow-runner.nl Subject: Re: samba-libsmbclient and samba should not be conflicting ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 May 2004 15:35:53 -0000 On Fri, 7 May 2004, Michael Nottebrock wrote: > On Friday 07 May 2004 09:06, Sergey Matveychuk wrote: > > > OK. It's a problem. But the ports are conflicted - they have the same > > files. So you can't just remove CONFLICTS. > > > > What is your offers? > > I have discussed this with the samba-devel maintainer some time ago > (http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/64523) and he has followed > up with a PR that implements exactly what I proposed > (http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/65976). Now all that's > needed is approval from the samba-libsmbclient maintainer and a commit. I have a strong feeling Koop would approve if he hasn't already. If you need a quick answer from him, he usually lurks on #freebsd-gnome on FreeNode under the nick kwm. Joe > > -- > ,_, | Michael Nottebrock | lofi@freebsd.org > (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org > \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org > PGP Key : http://www.marcuscom.com/pgp.asc From owner-freebsd-ports@FreeBSD.ORG Fri May 7 09:50:03 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BCD2C16A4CE for ; Fri, 7 May 2004 09:50:03 -0700 (PDT) Received: from bremen.shuttle.de (bremen.shuttle.de [194.95.249.251]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02A3343D3F for ; Fri, 7 May 2004 09:50:03 -0700 (PDT) (envelope-from schweikh@schweikhardt.net) Received: by bremen.shuttle.de (Postfix, from userid 10) id 4067D3BB5D; Fri, 7 May 2004 18:50:01 +0200 (CEST) Received: from hal9000.schweikhardt.net (localhost [127.0.0.1]) i47IhknV002600; Fri, 7 May 2004 20:43:46 +0200 (CEST) (envelope-from schweikh@hal9000.schweikhardt.net) Received: (from schweikh@localhost)i47Ihkqf002599; Fri, 7 May 2004 20:43:46 +0200 (CEST) (envelope-from schweikh) Date: Fri, 7 May 2004 20:43:46 +0200 From: Jens Schweikhardt To: Kris Kennaway Message-ID: <20040507184346.GA829@schweikhardt.net> References: <89A99D36114F2C54394C0B2D1FCDFA75@pmaloney.canoemail.com> <20040503231747.GB50489@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040503231747.GB50489@xor.obsecurity.org> User-Agent: Mutt/1.5.6i cc: ports@FreeBSD.org cc: pmaloney@canoemail.com Subject: Re: A typo X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 May 2004 16:50:03 -0000 On Mon, May 03, 2004 at 04:17:47PM -0700, Kris Kennaway wrote: # On Mon, May 03, 2004 at 09:56:50AM -0400, pmaloney@canoemail.com wrote: # > # > To the Ports Keeper: # > # > I've notice a typo in the Hydra-2.2_1 port description on the # > following page: # > # > http://www.freebsd.org/cgi/ports.cgi?query=attack&stype=all&release=5.2-RELEASE%2Fi386 # > # > *********** # > hydra-2.2_1 # > Bruce Force Attack Utility working on multiple network services # > Maintained by: llevier@argosnet.com # > Description : Sources : Package : Changes : Download # > *********** # > # > Bruce force should read BRUTE force. # # Please submit a PR if someone doesn't get to this straight away. This is most likely NOT a typo. googling for "bruce force" (including double quotes) turns up tons of password cracking stuff. It appears to be a jargon or technical term. Why not ask the creator/maintainer of the port? Regards, Jens -- Jens Schweikhardt http://www.schweikhardt.net/ SIGSIG -- signature too long (core dumped) From owner-freebsd-ports@FreeBSD.ORG Fri May 7 10:42:29 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F0FC816A4CE; Fri, 7 May 2004 10:42:29 -0700 (PDT) Received: from fillmore.dyndns.org (port-212-202-49-130.reverse.qsc.de [212.202.49.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 72D4F43D64; Fri, 7 May 2004 10:42:29 -0700 (PDT) (envelope-from eikemeier@fillmore-labs.com) Received: from [172.16.0.2] (helo=fillmore-labs.com) by fillmore.dyndns.org with esmtp (Exim 4.33; FreeBSD) id 1BM9Mh-000GeP-Hy; Fri, 07 May 2004 19:42:28 +0200 Message-ID: <409BCA83.6090403@fillmore-labs.com> Date: Fri, 07 May 2004 19:42:27 +0200 From: Oliver Eikemeier Organization: Fillmore Labs GmbH - http://www.fillmore-labs.com/ MIME-Version: 1.0 To: FreeBSD ports Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 Subject: Ports that are in MOVED, but exist X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 May 2004 17:42:30 -0000 The following ports are listed in MOVED, but do exist in the ports tree. AFAIK, they should have a resurrection line. 2002-11-17: www/netscape47-communicator -> www/netscape48-communicator Reason: security vulnerability 2002-11-17: www/netscape47-navigator -> www/netscape48-navigator Reason: security vulnerability 2003-04-17: devel/linux_devtools -> devel/linux_devtools-6 Reason: finished repocopy 2003-05-05: irc/kvirc deleted Reason: port was broken with no sign of a fix 2003-07-12: www/mod_log_mysql -> www/mod_log_sql Reason: renamed by author in new version 2003-07-30: misc/shc deleted Reason: broken for nearly a year 2003-08-06: net/cphone deleted Reason: port was marked broken for 3 months with no fix submitted 2003-08-07: devel/silc-toolkit deleted Reason: port was marked broken for 3 months with no fix submitted 2003-08-07: lang/pnet deleted Reason: port was marked broken for 3 months with no fix submitted 2003-08-07: net/qtella deleted Reason: port was marked broken for 3 months with no fix submitted 2003-08-07: www/slash deleted Reason: port was marked broken for 3 months with no fix submitted 2003-08-08: net/ruby-romp deleted Reason: discontinued 2003-08-12: astro/glunarclock deleted Reason: removed as part of GNOME 1.4 desktop phase out 2003-08-14: x11-toolkits/gtk-industrial-theme -> x11-toolkits/gnome-themes-extras Reason: gtk-industrial-theme is now included with gnome-themes-extras 2003-11-06: sysutils/prune -> sysutils/fileprune Reason: renamed because of conflict with graphviz 2004-02-01: math/ruby-gsl deleted Reason: Port broken for >2 months 2004-04-18: www/mod_jk2 -> www/mod_jk-apache2 Reason: prefer mod_jk2 for mod_jk 2.x branch www/netscape47-communicator|www/netscape47-communicator|YYYY-MM-DD|resurrected www/netscape47-navigator|www/netscape47-navigator|YYYY-MM-DD|resurrected devel/linux_devtools|devel/linux_devtools|YYYY-MM-DD|resurrected irc/kvirc|irc/kvirc|YYYY-MM-DD|resurrected www/mod_log_mysql|www/mod_log_mysql|YYYY-MM-DD|resurrected misc/shc|misc/shc|YYYY-MM-DD|resurrected net/cphone|net/cphone|YYYY-MM-DD|resurrected devel/silc-toolkit|devel/silc-toolkit|YYYY-MM-DD|resurrected lang/pnet|lang/pnet|YYYY-MM-DD|resurrected net/qtella|net/qtella|YYYY-MM-DD|resurrected www/slash|www/slash|YYYY-MM-DD|resurrected net/ruby-romp|net/ruby-romp|YYYY-MM-DD|resurrected astro/glunarclock|astro/glunarclock|YYYY-MM-DD|resurrected x11-toolkits/gtk-industrial-theme|x11-toolkits/gtk-industrial-theme|YYYY-MM-DD|resurrected sysutils/prune|sysutils/prune|YYYY-MM-DD|resurrected math/ruby-gsl|math/ruby-gsl|YYYY-MM-DD|resurrected www/mod_jk2|www/mod_jk2|YYYY-MM-DD|resurrected From owner-freebsd-ports@FreeBSD.ORG Fri May 7 11:02:42 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B19E16A4CE for ; Fri, 7 May 2004 11:02:42 -0700 (PDT) Received: from sulfateuse.babasse.net (sulfateuse.babasse.net [213.41.169.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6BB2A43D54 for ; Fri, 7 May 2004 11:02:41 -0700 (PDT) (envelope-from plonk-o-matic@teaser.fr) Received: from blackbox.babasse.net (sulfateuse.babasse.net [192.168.254.129]) i47I2d4e009182 for ; Fri, 7 May 2004 20:02:39 +0200 (CEST) (envelope-from plonk-o-matic@teaser.fr) Received: from blackbox.babasse.net (localhost [127.0.0.1]) by blackbox.babasse.net (8.12.11/8.12.11) with ESMTP id i47I2dRq009179 for ; Fri, 7 May 2004 20:02:39 +0200 (CEST) (envelope-from plonk-o-matic@teaser.fr) Received: (from cyril@localhost) by blackbox.babasse.net (8.12.11/8.12.11/Submit) id i47I2cR7009178; Fri, 7 May 2004 20:02:38 +0200 (CEST) (envelope-from plonk-o-matic@teaser.fr) X-Authentication-Warning: blackbox.babasse.net: cyril set sender to plonk-o-matic@teaser.fr using -f To: ports@freebsd.org In-Reply-To: <20040507184346.GA829@schweikhardt.net> (Jens Schweikhardt's message of "Fri, 7 May 2004 20:43:46 +0200") References: <89A99D36114F2C54394C0B2D1FCDFA75@pmaloney.canoemail.com> <20040503231747.GB50489@xor.obsecurity.org> <20040507184346.GA829@schweikhardt.net> From: Cyril Guibourg Organization: Home sweet home Date: Fri, 07 May 2004 20:02:38 +0200 Message-ID: <87r7twqfnl.fsf@blackbox.babasse.net> Lines: 9 User-Agent: Gnus/5.1002 (Gnus v5.10.2) XEmacs/21.1 (Cuyahoga Valley, berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: A typo X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 May 2004 18:02:42 -0000 Jens Schweikhardt writes: > This is most likely NOT a typo. It *was* a typo: http://www.freebsd.org/cgi/query-pr.cgi?pr=65395 Regards. Jens: apologies for Cc, got some mess with my fingers... From owner-freebsd-ports@FreeBSD.ORG Fri May 7 12:03:02 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7737016A4CE for ; Fri, 7 May 2004 12:03:02 -0700 (PDT) Received: from vanilla.depari.net (vanilla.depari.net [196.41.16.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id E71EB43D1D for ; Fri, 7 May 2004 12:03:00 -0700 (PDT) (envelope-from root@vanilla.depari.net) Received: from localhost (root@localhost) by vanilla.depari.net (8.11.6/8.11.6) with SMTP id i47J2tF02045 for ; Fri, 7 May 2004 21:02:55 +0200 Message-Id: <200405071902.i47J2tF02045@vanilla.depari.net> From: root@vanilla.depari.net To: freebsd-ports@freebsd.org Date: Fri, 07 May 2004 21:02:55 +0200 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Virus Alert X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 May 2004 19:03:02 -0000 The mail message (file: email-body) you sent to dustin@pilotfish.co.za contains a virus. (on vanilla.depari.net) From owner-freebsd-ports@FreeBSD.ORG Fri May 7 12:15:31 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CFC9416A4CF for ; Fri, 7 May 2004 12:15:31 -0700 (PDT) Received: from ptb-relay02.plus.net (ptb-relay02.plus.net [212.159.14.213]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D37343D66 for ; Fri, 7 May 2004 12:15:28 -0700 (PDT) (envelope-from tony@sequeira.com) Received: from [212.159.42.85] (helo=nova.sequestor.lan) by ptb-relay02.plus.net with esmtp (Exim) id 1BMAog-0001CX-Lp; Fri, 07 May 2004 19:15:26 +0000 Received: by nova.sequestor.lan (Postfix, from userid 1000) id 50ABF5B2; Fri, 7 May 2004 20:15:26 +0100 (BST) From: "S. Anthony Sequeira" To: ports@FreeBSD.org Content-Type: text/plain Content-Transfer-Encoding: 7bit Organization: Great Holm, Milton Keynes Message-Id: <1083957326.1575.31.camel@nova.sequestor.lan> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Date: Fri, 07 May 2004 20:15:26 +0100 cc: "Michael S. Peek" Subject: archivers/rvm-0.90.b X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 May 2004 19:15:31 -0000 I have been in correspondence with the author of the above package concerning slight problems and 1 bug I have discovered. He has offered me a patchfile, which I will try as soon as I can discover where the source files are. You will have gathered from this that I am a relative FreeBSD noob. However, he has also released a new version, Here are his words: If you do, you might let them know that I just put out 0.90.1-beta with this patch and more. (Hopefully I haven't just caused more bugs than I've fixed.) Michael Thanks. Please let me know if I am breaking any procedural protocol here by bypassing the ports team. Warm regards. -- "Not Hercules could have knock'd out his brains, for he had none." -- Shakespeare From owner-freebsd-ports@FreeBSD.ORG Fri May 7 12:15:54 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2CF916A4D8 for ; Fri, 7 May 2004 12:15:54 -0700 (PDT) Received: from mailhost.schluting.com (cheshire.cat.pdx.edu [131.252.214.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A15B43D31 for ; Fri, 7 May 2004 12:15:54 -0700 (PDT) (envelope-from charlie@schluting.com) Received: from localhost (localhost [127.0.0.1]) by mailhost.schluting.com (Postfix) with ESMTP id DD6FF2389 for ; Fri, 7 May 2004 12:15:53 -0700 (PDT) Received: from by localhost (amavisd-new, port ) id 2PlFixzG for ; Fri, 7 May 2004 12:15:47 -0700 (PDT) Received: from schluting.com (squirt.cat.pdx.edu [131.252.214.53]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailhost.schluting.com (Postfix) with ESMTP id D65A02134 for ; Fri, 7 May 2004 12:15:45 -0700 (PDT) Message-ID: <409BE060.1000101@schluting.com> Date: Fri, 07 May 2004 12:15:44 -0700 From: Charlie Schluting User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.5) Gecko/20031027 Thunderbird/0.3 X-Accept-Language: en-us, en MIME-Version: 1.0 To: ports@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by your mom at schluting.com Subject: Makefile for a perl-install X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 May 2004 19:15:55 -0000 Hi, Trying to make a port... but I have a perl install script. Does anyone know the best way to make this run? I've defined NO_BUILD and NO_INSTALL in the Makefile, and MAKEFILE= configure.pl, hoping that it will just run the script... This doesn't seem too graceful. Its an interactive perl script, and I really have to use it to do the install. Anyone have suggestions? Examples of existing ports that just run another script to do the install? Thanks :) -Charlie From owner-freebsd-ports@FreeBSD.ORG Fri May 7 14:00:05 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8FFF16A4CF for ; Fri, 7 May 2004 14:00:05 -0700 (PDT) Received: from prisma.rainbow-runner.nl (c7057.upc-c.chello.nl [212.187.7.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4AF6343D1F for ; Fri, 7 May 2004 14:00:05 -0700 (PDT) (envelope-from kwm@rainbow-runner.nl) Received: by prisma.rainbow-runner.nl (Postfix, from userid 26) id 0EEFC208A; Fri, 7 May 2004 22:59:52 +0200 (CEST) Received: from [192.168.1.5] (heater.rainbow-runner.nl [192.168.1.5]) by prisma.rainbow-runner.nl (Postfix) with ESMTP id E564A2077; Fri, 7 May 2004 22:59:49 +0200 (CEST) From: Koop Mast To: Joe Marcus Clarke In-Reply-To: <20040507113450.M27436@shumai.marcuscom.com> References: <200405070842.22987.fritz.heinrichmeyer@fernuni-hagen.de> <200405071045.08115.michaelnottebrock@gmx.net> <20040507113450.M27436@shumai.marcuscom.com> Content-Type: text/plain Message-Id: <1083963597.81903.9.camel@heater.rainbow-runner.nl> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.5.7FreeBSD GNOME Team Port Date: Fri, 07 May 2004 22:59:57 +0200 Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on prisma.rainbow-runner.nl X-Spam-Level: X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.63 cc: Sergey Matveychuk cc: Fritz Heinrichmeyer cc: freebsd-ports@freebsd.org Subject: Re: samba-libsmbclient and samba should not be conflicting ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 May 2004 21:00:06 -0000 On Fri, 2004-05-07 at 11:35 -0400, Joe Marcus Clarke wrote: > On Fri, 7 May 2004, Michael Nottebrock wrote: > > > On Friday 07 May 2004 09:06, Sergey Matveychuk wrote: > > > > > OK. It's a problem. But the ports are conflicted - they have the same > > > files. So you can't just remove CONFLICTS. > > > > > > What is your offers? > > > > I have discussed this with the samba-devel maintainer some time ago > > (http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/64523) and he has followed > > up with a PR that implements exactly what I proposed > > (http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/65976). Now all that's > > needed is approval from the samba-libsmbclient maintainer and a commit. > > I have a strong feeling Koop would approve if he hasn't already. If you > need a quick answer from him, he usually lurks on #freebsd-gnome on > FreeNode under the nick kwm. > > Joe I approve of the changes to libsmbclient. Timur send me a mail shortly after he submitted the pr. But it came at a bad time for me, and afterwards I forgot about it. Koop > > > > -- > > ,_, | Michael Nottebrock | lofi@freebsd.org > > (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org > > \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org > > > > PGP Key : http://www.marcuscom.com/pgp.asc > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" From owner-freebsd-ports@FreeBSD.ORG Fri May 7 14:07:00 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B919716A4CE; Fri, 7 May 2004 14:07:00 -0700 (PDT) Received: from smtp.unsam.edu.ar (smtp.unsam.edu.ar [170.210.48.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5513643D1F; Fri, 7 May 2004 14:06:54 -0700 (PDT) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (pi.iib.unsam.edu.ar [192.168.10.11]) by smtp.unsam.edu.ar (8.12.6/8.12.6) with ESMTP id i47LC3v0006944; Fri, 7 May 2004 18:12:03 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (localhost.iib.unsam.edu.ar [127.0.0.1]) by pi.iib.unsam.edu.ar (8.12.9p2/8.12.9) with ESMTP id i47Kta2h055720; Fri, 7 May 2004 17:55:36 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: (from fernan@localhost) by pi.iib.unsam.edu.ar (8.12.9p2/8.12.9/Submit) id i47KtW9f055719; Fri, 7 May 2004 17:55:32 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) X-Authentication-Warning: pi.iib.unsam.edu.ar: fernan set sender to fernan@iib.unsam.edu.ar using -f Date: Fri, 7 May 2004 17:55:32 -0300 From: Fernan Aguero To: FreeBSD Ports Message-ID: <20040507205532.GA6448@iib.unsam.edu.ar> Mail-Followup-To: FreeBSD Ports , ade@freebsd.org, daniel@roe.ch Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.4.1i cc: ade@FreeBSD.ORG cc: daniel@roe.ch Subject: gnuplot update: almost ready but ... how to deal with autotools? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 May 2004 21:07:00 -0000 Hi! I have an almost ready update to get gnuplot to the latest 4.0 version. For me, this all started because I needed some functionality that could only be obtained with a couple of patches. So I decided to include the patches in the port, if the user decides that he wants this functionality (by setting an appropriate WITH_HISTOGRAMS variable). The problem, as explained in a previous post is that after applying these patches I need to run autoconf. http://lists.freebsd.org/pipermail/freebsd-ports/2004-April/011943.html http://lists.freebsd.org/pipermail/freebsd-ports/2004-May/012010.html One of the responses to my post suggested creating symlinks of the kind autoconf -> autoconf259, automake -> automake18, and so on ... This helped me solve the problem. My port now builds fine, but this is clearly not the way that a decent port should behave, isn't it? :) Right now, the port is marked as BROKEN if WITH_HISTOGRAMS is set. But for testing you can comment this line of the Makefile. I am now using: WANT_AUTOCONF_VER= 253 WANT_AUTOMAKE_VER= 17 in my port, and this actually works (I have both 253 and 17 installed), even though the symlinks are actually autoconf->autoconf259 and automake->automake18. I have tried to set WANT_AUTOCONF_VER to 259 but it seems thæt this version has not been included into bsd.autotools.mk yet. My question: should I submit a PR with the port in its current state? (if nobody sets WITH_HISTOGRAM, the port is OK; and as I explained above, WITH_HISTOGRAM is new functionality that was not in the previous gnuplot, so there is really nothing lost). My request: I really need someone to show me how to work with autoconf from within the ports system. For some reason just setting WANT_AUTO*_VER was not enough and I had to create the symlinks for the port to build. Is this something that is being worked on? Perhaps I should wait for some large structural things to happen with autotools and try to fix this again in some near future? Thanks in advance for shedding any light on this. Fernan PS1: a gzipped tar archive of the updated port can be found in http://genoma.unsam.edu.ar/~fernan/freebsd/gnuplot.html PS2: I already contacted the maintainer on April 22nd but I got no reply yet. -- F e r n a n A g u e r o http://genoma.unsam.edu.ar/~fernan From owner-freebsd-ports@FreeBSD.ORG Fri May 7 14:15:25 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0489016A4CE for ; Fri, 7 May 2004 14:15:25 -0700 (PDT) Received: from mail.lovett.com (core.lovett.com [216.168.8.20]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E54143D46 for ; Fri, 7 May 2004 14:15:24 -0700 (PDT) (envelope-from ade@FreeBSD.org) Received: from ts46-02-qdr1249.mdfrd.or.charter.com ([66.169.242.225] helo=[192.168.1.101]) by mail.lovett.com with asmtp (Exim 4.30; FreeBSD) id 1BMCgl-000A26-KF; Fri, 07 May 2004 21:15:24 +0000 In-Reply-To: <20040507205532.GA6448@iib.unsam.edu.ar> References: <20040507205532.GA6448@iib.unsam.edu.ar> Mime-Version: 1.0 (Apple Message framework v613) Content-Type: text/plain; charset=ISO-8859-1; format=flowed Message-Id: Content-Transfer-Encoding: quoted-printable From: Ade Lovett Date: Fri, 7 May 2004 14:15:24 -0700 To: Fernan Aguero X-Mailer: Apple Mail (2.613) cc: FreeBSD Ports cc: daniel@roe.ch Subject: Re: gnuplot update: almost ready but ... how to deal with autotools? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 May 2004 21:15:25 -0000 As I have previously stated, time and time and time again on the ports@=20= mailing list, I am waiting on a major update to bsd.autotools.mk, with=20= widespread changes across the entire ports tree. This takes time to test, and is not likely to happen until (a) 4.10-REL=20= is out the door and (b) I get some quality time with bento and its=20 4-exp package run. User-created symlinks are absolutely NOT the way to go, you WILL hose=20 your system eventually, and is COMPLETELY UNSUPPORTED. I suggest that you hold off on this update until the next round of=20 autotools updates are completed, when autoconf259 and automake18 will=20 be available via the normal autotools Makefile-knobs. -aDe On May 07, 2004, at 13:55, Fernan Aguero wrote: > Hi! > > I have an almost ready update to get gnuplot to the latest > 4.0 version. > > For me, this all started because I needed some functionality > that could only be obtained with a couple of patches. So I > decided to include the patches in the port, if the user > decides that he wants this functionality (by setting an > appropriate WITH_HISTOGRAMS variable). > > The problem, as explained in a previous post is that after > applying these patches I need to run autoconf. > = http://lists.freebsd.org/pipermail/freebsd-ports/2004-April/011943.html > http://lists.freebsd.org/pipermail/freebsd-ports/2004-May/012010.html > > One of the responses to my post suggested creating symlinks > of the kind autoconf -> autoconf259, automake -> automake18, > and so on ... This helped me solve the problem. My port now > builds fine, but this is clearly not the way that a decent > port should behave, isn't it? :) > > Right now, the port is marked as BROKEN if WITH_HISTOGRAMS > is set. But for testing you can comment this line of the > Makefile. > > I am now using: > WANT_AUTOCONF_VER=3D 253 > WANT_AUTOMAKE_VER=3D 17 > in my port, and this actually works (I have both 253 and 17 > installed), even though the symlinks are actually > autoconf->autoconf259 and automake->automake18. > I have tried to set WANT_AUTOCONF_VER > to 259 but it seems th=E6t this version has not been included into > bsd.autotools.mk yet. > > My question: should I submit a PR with the port in its > current state? (if nobody sets WITH_HISTOGRAM, the port is > OK; and as I explained above, WITH_HISTOGRAM is new > functionality that was not in the previous gnuplot, so there > is really nothing lost). > > My request: I really need someone to show me how to work > with autoconf from within the ports system. For some reason > just setting WANT_AUTO*_VER was not enough and I had to > create the symlinks for the port to build. Is this something > that is being worked on? Perhaps I should wait for some > large structural things to happen with autotools and try to > fix this again in some near future? Thanks in advance for > shedding any light on this. > > Fernan > > PS1: a gzipped tar archive of the updated port can be found > in http://genoma.unsam.edu.ar/~fernan/freebsd/gnuplot.html > > PS2: I already contacted the maintainer on April 22nd but I > got no reply yet. > > --=20 > F e r n a n A g u e r o > http://genoma.unsam.edu.ar/~fernan > From owner-freebsd-ports@FreeBSD.ORG Fri May 7 15:30:28 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 80D7816A4CE for ; Fri, 7 May 2004 15:30:28 -0700 (PDT) Received: from mta7.pltn13.pbi.net (mta7.pltn13.pbi.net [64.164.98.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3240743D1D for ; Fri, 7 May 2004 15:30:28 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (45211f1e9c5fad3e8266a8e21b99f282@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128])i47MUQVW004618; Fri, 7 May 2004 15:30:27 -0700 (PDT) Received: from rot26.obsecurity.org (rot26.obsecurity.org [10.0.0.6]) by obsecurity.dyndns.org (Postfix) with ESMTP id 29F405183F; Fri, 7 May 2004 15:30:26 -0700 (PDT) Received: from obsecurity.org (rot26.obsecurity.org [10.0.0.6]) by rot26.obsecurity.org (Postfix) with ESMTP id 70129708; Fri, 7 May 2004 15:32:09 -0700 (PDT) Message-ID: <409C0E69.6070705@obsecurity.org> Date: Fri, 07 May 2004 15:32:09 -0700 From: Kris Kennaway User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.6) Gecko/20040502 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Kyryll Mirnenko References: <20040507135249.0199343D2D@mx1.FreeBSD.org> In-Reply-To: <20040507135249.0199343D2D@mx1.FreeBSD.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-ports@freebsd.org Subject: Re: General binary packages issue: pkg-config *.pc has hadcodedbase directory X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 May 2004 22:30:28 -0000 Kyryll Mirnenko wrote: > I use two harddrives & have to split the packages I install between them, > so I has 2 default installation bases (/usr/local & /usr/X11R6) and one more > for the 2nd drive: /usr2 . I found all packages contain pkg-config congifs > (*.pc) hardcoded to package default location, not to the one specified with > -p option to pkg-add Yes, it's set at compile time and cannot be changed at install time. -p is not generally useful for this reason. In your situation you need to use ports instead or make a symlink. Kris From owner-freebsd-ports@FreeBSD.ORG Fri May 7 15:56:56 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 00A3916A4CE for ; Fri, 7 May 2004 15:56:56 -0700 (PDT) Received: from cashmere.blitzed.org (cashmere.blitzed.org [82.195.232.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id 783F543D46 for ; Fri, 7 May 2004 15:56:55 -0700 (PDT) (envelope-from andy@strugglers.net) Received: by cashmere.blitzed.org (Postfix, from userid 10000) id 4217E111CEB; Fri, 7 May 2004 22:56:54 +0000 (GMT) Date: Fri, 7 May 2004 22:56:54 +0000 From: Andy Smith To: freebsd-ports@freebsd.org Message-ID: <20040507225654.GH38802@cashmere.blitzed.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="2E/hm+v6kSLEYT3h" Content-Disposition: inline X-Uptime: 49 days X-URL: http://freebsdwiki.org/User:Andy User-Agent: Mutt/1.5.6i Subject: lang/php4 and --enable-sysvmsg X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 May 2004 22:56:56 -0000 --2E/hm+v6kSLEYT3h Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello, This week I was looking at an application which uses sysv message queues from within PHP. So, I go to add this support to my PHP, and I can't seem to work out how. The port's configure script does have an --enable-sysvmsg option, but this is not provided as an option in the port configuration process, nor is it in the Makefile (in contrast to sysvshm or sysvsem): $ grep sysvmsg Makefile=20 $ grep sysvsem Makefile=20 CONFIGURE_ARGS+=3D--enable-sysvsem $ grep sysvshm Makefile=20 CONFIGURE_ARGS+=3D--enable-sysvshm Is there some reason for this (like maybe sysv message queues don't work on FreeBSD), or is it just that no one uses it? Thanks, Andy --2E/hm+v6kSLEYT3h Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD4DBQFAnBQ2IJm2TL8VSQsRAiBJAJjc6ZIxZ843d2vEjcYfDRMyJXvPAJ4uD8O9 LTp9PXe8D/zOuuQ7bcX3jg== =B6DH -----END PGP SIGNATURE----- --2E/hm+v6kSLEYT3h-- From owner-freebsd-ports@FreeBSD.ORG Fri May 7 16:32:10 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DDD716A4CE for ; Fri, 7 May 2004 16:32:10 -0700 (PDT) Received: from basement.kutulu.org (pcp03610121pcs.longhl01.md.comcast.net [68.49.239.235]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9991143D58 for ; Fri, 7 May 2004 16:32:09 -0700 (PDT) (envelope-from kutulu@kutulu.org) Received: from wombat.localnet (wombat.localnet [192.168.69.3]) by basement.kutulu.org (Postfix) with ESMTP id BFA2DA93E; Fri, 7 May 2004 19:32:06 -0400 (EDT) Received: by wombat.localnet (Postfix, from userid 1001) id 9B10DB86E; Fri, 7 May 2004 19:32:06 -0400 (EDT) Date: Fri, 7 May 2004 19:32:06 -0400 From: Michael Edenfield To: Andy Smith Message-ID: <20040507233206.GA58081@wombat.localnet> Mail-Followup-To: Andy Smith , freebsd-ports@freebsd.org References: <20040507225654.GH38802@cashmere.blitzed.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="zYM0uCDKw75PZbzx" Content-Disposition: inline In-Reply-To: <20040507225654.GH38802@cashmere.blitzed.org> X-Mailer: Mutt http://www.mutt.org/ X-Accept-Language: en X-PGP-Key: http://www.kutulu.org/pgp/kutulu.asc X-PGP-Fingerprint: 1CE0 3C31 7013 D529 406D 37DC 09CC CD84 A46C 878F User-Agent: Mutt/1.5.6i cc: freebsd-ports@freebsd.org Subject: Re: lang/php4 and --enable-sysvmsg X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 May 2004 23:32:10 -0000 --zYM0uCDKw75PZbzx Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable * Andy Smith [040507 18:57]: > Hello, >=20 > This week I was looking at an application which uses sysv message > queues from within PHP. So, I go to add this support to my PHP, and > I can't seem to work out how. >=20 > The port's configure script does have an --enable-sysvmsg option, > but this is not provided as an option in the port configuration > process, nor is it in the Makefile (in contrast to sysvshm or > sysvsem): >=20 > $ grep sysvmsg Makefile=20 > $ grep sysvsem Makefile=20 > CONFIGURE_ARGS+=3D--enable-sysvsem > $ grep sysvshm Makefile=20 > CONFIGURE_ARGS+=3D--enable-sysvshm >=20 > Is there some reason for this (like maybe sysv message queues don't > work on FreeBSD), or is it just that no one uses it? Probably the latter, as SysV messages do work on FreeBSD (assuming you have the support built/loaded into the kernel). Try: cd /usr/ports/lang/php4 ; CONFIUGRE_ARGS=3D--enable-sysvmsg make install and see if it gives you a working PHP. --Mike --zYM0uCDKw75PZbzx Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAnBx2CczNhKRsh48RAh4xAKColl2pQkk0DdGN1qC0tmojOquSWgCeKRCu qgWFMfbHpTUar30kP6VmgxM= =kkR4 -----END PGP SIGNATURE----- --zYM0uCDKw75PZbzx-- From owner-freebsd-ports@FreeBSD.ORG Fri May 7 16:33:25 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C26816A4CF for ; Fri, 7 May 2004 16:33:25 -0700 (PDT) Received: from server.alexdupre.com (host245-49.pool8288.interbusiness.it [82.88.49.245]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3AFDD43D53 for ; Fri, 7 May 2004 16:33:24 -0700 (PDT) (envelope-from ale@FreeBSD.org) Received: from FreeBSD.org (thunder.alexdupre.com [192.168.0.101]) i47NXMlN014257; Sat, 8 May 2004 01:33:23 +0200 (CEST) (envelope-from ale@FreeBSD.org) Message-ID: <409C1CC2.4070901@FreeBSD.org> Date: Sat, 08 May 2004 01:33:22 +0200 From: Alex Dupre User-Agent: Mozilla Thunderbird 0.6a (Windows/20040420) X-Accept-Language: en MIME-Version: 1.0 To: Andy Smith References: <20040507225654.GH38802@cashmere.blitzed.org> In-Reply-To: <20040507225654.GH38802@cashmere.blitzed.org> X-Enigmail-Version: 0.83.6.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-ports@FreeBSD.org Subject: Re: lang/php4 and --enable-sysvmsg X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 May 2004 23:33:25 -0000 Andy Smith wrote: > This week I was looking at an application which uses sysv message > queues from within PHP. So, I go to add this support to my PHP, and > I can't seem to work out how. Just committed support for the new extension. Run cvsup! -- Alex Dupre From owner-freebsd-ports@FreeBSD.ORG Fri May 7 20:25:15 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D315916A4CE for ; Fri, 7 May 2004 20:25:15 -0700 (PDT) Received: from minbar.b5.nu (minbar.b5.nu [203.43.74.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5BB043D5F for ; Fri, 7 May 2004 20:25:10 -0700 (PDT) (envelope-from claus@endresconsulting.com) Received: from endresconsulting.com (callisto.endresconsulting.com [203.43.74.101]) by minbar.b5.nu (8.9.3/8.9.3) with ESMTP id NAA87677; Sat, 8 May 2004 13:24:44 +1000 (AEST) (envelope-from claus@endresconsulting.com) Message-ID: <409C529D.7060700@endresconsulting.com> Date: Sat, 08 May 2004 13:23:09 +1000 From: Claus Endres User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20031015 X-Accept-Language: en-us, en MIME-Version: 1.0 To: boris@tagnet.ru Content-Type: multipart/mixed; boundary="------------000308050807000106030609" cc: ports@FreeBSD.org Subject: FreeBSD Port: quagga-0.96.4_5 to quagga-0.96.5 upgrade patch X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 May 2004 03:25:16 -0000 This is a multi-part message in MIME format. --------------000308050807000106030609 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Hi, The attached patch upgrades the quagga port to version 0.96.5. quagga-0.96.5 contains the new isis daemon, and lots of bug fixes. This is the first release where ospfd does not crash under 5.x-CURRENT. Regards, Claus. -- -------------------------------------------------------- Claus Endres | Phone: +61-3-5998 2310 Endres Consulting Pty. Ltd. | Mobile: +61-418-595 136 10 Facey Road | Fax: +61-3-5998 2540 Devon Meadows, VIC 3977 | claus@endresconsulting.com --------------000308050807000106030609 Content-Type: text/plain; name="quagga.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="quagga.patch" diff -u -r quagga/Makefile quagga-0.96.5/Makefile --- quagga/Makefile Fri Apr 23 15:08:06 2004 +++ quagga-0.96.5/Makefile Sat May 8 13:08:34 2004 @@ -6,14 +6,11 @@ # PORTNAME= quagga -PORTVERSION= 0.96.4 -PORTREVISION= 5 +PORTVERSION= 0.96.5 +PORTREVISION= 1 CATEGORIES= net ipv6 MASTER_SITES= http://quagga.net/download/ -PATCH_SITES= http://quagga.net/ -PATCHFILES= quagga-bgp_route-wspace.diff - MAINTAINER= boris@tagnet.ru COMMENT= Free RIPv1, RIPv2, OSPFv2, BGP4 route software (server/reflector) @@ -27,7 +24,7 @@ AUTOMAKE_ARGS= -a -i MAN1= vtysh.1 -MAN8= bgpd.8 ospf6d.8 ospfd.8 ripd.8 ripngd.8 zebra.8 +MAN8= bgpd.8 ospf6d.8 ospfd.8 ripd.8 ripngd.8 zebra.8 isisd.8 CONFIGURE_ARGS+=--includedir=${PREFIX}/include/quagga SCRIPTS_ENV= WRKDIRPREFIX=${WRKDIRPREFIX} WITH_SNMP_4=${WITH_SNMP_4} \ @@ -87,7 +84,7 @@ RC_SUFX= .sh .endif -QUAGGA_SCRIPTS= zebra ripd ripngd ospfd ospf6d bgpd +QUAGGA_SCRIPTS= zebra ripd ripngd ospfd ospf6d bgpd isisd SED_SCRIPT= -e 's,%%PREFIX%%,${PREFIX},g' \ -e 's,%%SYSCONF_DIR%%,${SYSCONF_DIR},g' \ @@ -144,7 +141,7 @@ @${ECHO} "quagga_enable=\"YES\"" @${ECHO} "Also You may want to set router_enable=\"NO\"" @${ECHO} "" - @${ECHO} "Note!!! Since 0.96_5 port uses new id for quagga user and group." + @${ECHO} "Note!!! Since 0.96.5_1 port uses new id for quagga user and group." @${ECHO} " So, You need to manually chown files:" @${ECHO} " in ${SYSCONF_DIR}" @${ECHO} " and ${LOCALSTATE_DIR}" diff -u -r quagga/distinfo quagga-0.96.5/distinfo --- quagga/distinfo Fri Apr 23 15:08:06 2004 +++ quagga-0.96.5/distinfo Sat May 8 12:50:45 2004 @@ -1,4 +1,2 @@ -MD5 (quagga-0.96.4.tar.gz) = 55f5a307c453f90d7dfcc13f0dabb83d -SIZE (quagga-0.96.4.tar.gz) = 1401066 -MD5 (quagga-bgp_route-wspace.diff) = 180682299947c8d7fe7d0ed1f540e5ae -SIZE (quagga-bgp_route-wspace.diff) = 687 +MD5 (quagga-0.96.5.tar.gz) = cc84ef15cf4c2823a36097fe01775dc3 +SIZE (quagga-0.96.5.tar.gz) = 1558033 diff -u -r quagga/files/quagga.sh quagga-0.96.5/files/quagga.sh --- quagga/files/quagga.sh Fri Apr 23 15:08:06 2004 +++ quagga-0.96.5/files/quagga.sh Sat May 8 12:45:09 2004 @@ -13,7 +13,7 @@ # # You may also use next flags to tune startup #quagga_flags="-d" -#quagga_daemons="zebra ripd ripng ospfd ospf6d bgpd" +#quagga_daemons="zebra ripd ripng ospfd ospf6d bgpd isisd" # . %%RC_SUBR%% @@ -33,7 +33,7 @@ quagga_enable=${quagga_enable:-"NO"} quagga_flags=${quagga_flags:-"-d"} -quagga_daemons=${quagga_daemons:-"zebra ripd ripng ospfd ospf6d bgpd"} +quagga_daemons=${quagga_daemons:-"zebra ripd ripng ospfd ospf6d bgpd isisd"} load_rc_config $name quagga_cmd=$1 diff -u -r quagga/pkg-descr quagga-0.96.5/pkg-descr --- quagga/pkg-descr Sun Sep 28 09:40:56 2003 +++ quagga-0.96.5/pkg-descr Sat May 8 13:01:40 2004 @@ -1,7 +1,7 @@ From the website: Quagga is a routing software suite, providing implementations of -OSPFv2, OSPFv3, RIP v1 and v2, RIPv3 and BGPv4 for Unix platforms, +OSPFv2, OSPFv3, RIP v1 and v2, RIPv3, BGPv4 and ISIS for Unix platforms, particularly FreeBSD and Linux and also NetBSD, to mention a few. Quagga is a fork of GNU Zebra which was developed by Kunihiro Ishiguro. The Quagga tree aims to build a more involved community diff -u -r quagga/pkg-plist quagga-0.96.5/pkg-plist --- quagga/pkg-plist Fri Apr 23 15:08:06 2004 +++ quagga-0.96.5/pkg-plist Sat May 8 13:05:41 2004 @@ -4,6 +4,7 @@ sbin/ospfd sbin/ospf6d sbin/bgpd +sbin/isisd lib/libzebra.a lib/libospf.a info/quagga.info-4 @@ -59,6 +60,7 @@ etc/quagga/ospf6d.conf.sample etc/quagga/bgpd.conf.sample2 etc/quagga/bgpd.conf.sample +etc/quagga/isisd.conf.sample bin/vtysh @unexec install-info --delete %D/info/quagga.info %D/info/dir @exec install-info %D/info/quagga.info %D/info/dir --------------000308050807000106030609-- From owner-freebsd-ports@FreeBSD.ORG Fri May 7 21:59:18 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 87B5016A4E9; Fri, 7 May 2004 21:59:16 -0700 (PDT) Received: from mx.nsu.ru (mx.nsu.ru [212.192.164.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 137DD43D48; Fri, 7 May 2004 21:59:16 -0700 (PDT) (envelope-from danfe@regency.nsu.ru) Received: from regency.nsu.ru ([193.124.210.26]) by mx.nsu.ru with esmtp (Exim 4.30) id 1BMK2v-0004Ux-38; Sat, 08 May 2004 12:06:45 +0700 Received: from regency.nsu.ru (localhost [127.0.0.1]) by regency.nsu.ru (8.12.10/8.12.10) with ESMTP id i4850VAT006663; Sat, 8 May 2004 12:00:31 +0700 (NOVST) (envelope-from danfe@regency.nsu.ru) Received: (from danfe@localhost) by regency.nsu.ru (8.12.10/8.12.10/Submit) id i4850VGX006625; Sat, 8 May 2004 12:00:31 +0700 (NOVST) (envelope-from danfe) Date: Sat, 8 May 2004 12:00:30 +0700 From: Alexey Dokuchaev To: Eric Anholt Message-ID: <20040508050030.GA4020@regency.nsu.ru> References: <200405072010.i47KAnoG032811@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200405072010.i47KAnoG032811@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i cc: ports@freebsd.org cc: cvs-ports@freebsd.org cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/x11 Makefile ports/x11/panoramixext Makefile distinfo pkg-descr pkg-plist X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 May 2004 04:59:18 -0000 On Fri, May 07, 2004 at 01:10:49PM -0700, Eric Anholt wrote: ... > New port: panoramixext 1.1 freedesktop.org: > X PanoramiX extension headers > > Testing is encouraged, but please do not use these ports as dependencies until > a plan is made for handling the transition from XFree86. What do you mean by "transition from XFree86" here, precisely? Is there intention to prefer FDo's bits over XFree86, or just provide a coherent way to choose between the two? If former, what's wrong with XFree86 so such transition is a concern? I assume that it's not related to recent license policy change in XFree86 camp, am I right? ./danfe From owner-freebsd-ports@FreeBSD.ORG Fri May 7 22:16:30 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4030716A4CE; Fri, 7 May 2004 22:16:30 -0700 (PDT) Received: from sccrmhc11.comcast.net (sccrmhc11.comcast.net [204.127.202.55]) by mx1.FreeBSD.org (Postfix) with ESMTP id 906B143D48; Fri, 7 May 2004 22:16:29 -0700 (PDT) (envelope-from anholt@freebsd.org) Received: from [192.168.0.103] (c-24-21-18-195.client.comcast.net[24.21.18.195]) by comcast.net (sccrmhc11) with SMTP id <2004050805162601100k1ahse>; Sat, 8 May 2004 05:16:28 +0000 From: Eric Anholt To: Alexey Dokuchaev In-Reply-To: <20040508050030.GA4020@regency.nsu.ru> References: <200405072010.i47KAnoG032811@repoman.freebsd.org> <20040508050030.GA4020@regency.nsu.ru> Content-Type: text/plain Message-Id: <1083993853.919.4.camel@leguin> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Fri, 07 May 2004 22:24:13 -0700 Content-Transfer-Encoding: 7bit cc: ports@freebsd.org cc: cvs-ports@freebsd.org cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/x11 Makefile ports/x11/panoramixext Makefile distinfo pkg-descr pkg-plist X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: eta@lclark.edu List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 May 2004 05:16:30 -0000 On Fri, 2004-05-07 at 22:00, Alexey Dokuchaev wrote: > On Fri, May 07, 2004 at 01:10:49PM -0700, Eric Anholt wrote: > ... > > > New port: panoramixext 1.1 freedesktop.org: > > X PanoramiX extension headers > > > > Testing is encouraged, but please do not use these ports as dependencies until > > a plan is made for handling the transition from XFree86. > > What do you mean by "transition from XFree86" here, precisely? Is there > intention to prefer FDo's bits over XFree86, or just provide a coherent > way to choose between the two? If former, what's wrong with XFree86 so > such transition is a concern? I assume that it's not related to recent > license policy change in XFree86 camp, am I right? No, it's not the license change. It's that active development of libraries is going on at fd.o/X.Org, not XFree86, these days. We can only really have a single source for libraries because of packaging, so fd.o/x.org is the way to go I believe. As far as the server, we should be able to provide XFree86-4-Server and the X.Org server side-by-side just fine. (I wasn't around for the big fighting over the license, but I have to say I'm surprised FreeBSD is okay with the licensing terms on the server these days. Anyway, I'm not worried about it myself since I don't plan on touching the XFree86 server any more). -- Eric Anholt eta@lclark.edu http://people.freebsd.org/~anholt/ anholt@FreeBSD.org From owner-freebsd-ports@FreeBSD.ORG Fri May 7 23:03:03 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 87A7316A4CE; Fri, 7 May 2004 23:03:03 -0700 (PDT) Received: from sirius.firepipe.net (sirius.firepipe.net [69.13.116.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 464F143D1F; Fri, 7 May 2004 23:03:03 -0700 (PDT) (envelope-from will@csociety.org) Received: by sirius.firepipe.net (Postfix, from userid 1000) id A053617FC9; Sat, 8 May 2004 01:03:02 -0500 (EST) Date: Sat, 8 May 2004 01:03:02 -0500 From: Will Andrews To: Eric Anholt Message-ID: <20040508060302.GF34693@sirius.firepipe.net> Mail-Followup-To: Eric Anholt , ports@freebsd.org References: <200405072010.i47KAnoG032811@repoman.freebsd.org> <20040508050030.GA4020@regency.nsu.ru> <1083993853.919.4.camel@leguin> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="AkLHf9T6B4f6sqTW" Content-Disposition: inline In-Reply-To: <1083993853.919.4.camel@leguin> User-Agent: Mutt/1.4.1i cc: ports@freebsd.org Subject: Re: cvs commit: ports/x11 Makefile ports/x11/panoramixext Makefile distinfo pkg-descr pkg-plist X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 May 2004 06:03:03 -0000 --AkLHf9T6B4f6sqTW Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, May 07, 2004 at 10:24:13PM -0700, Eric Anholt wrote: > (I wasn't around for the big fighting over the license, but I have to > say I'm surprised FreeBSD is okay with the licensing terms on the server > these days. Anyway, I'm not worried about it myself since I don't plan > on touching the XFree86 server any more). There wasn't any fighting, at least not in the FreeBSD camp. Regards, --=20 wca --AkLHf9T6B4f6sqTW Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQFAnHgVF47idPgWcsURAjkCAKCYHvST06QBGXBve4eWSi9Azd1EZACfeoqn 9XaTBay9+nzlQ8OuQ8L15B0= =U2Z6 -----END PGP SIGNATURE----- --AkLHf9T6B4f6sqTW-- From owner-freebsd-ports@FreeBSD.ORG Fri May 7 20:48:02 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 26D1E16A4CE; Fri, 7 May 2004 20:48:02 -0700 (PDT) Received: from smtp.rol.ru (smtp.rol.ru [194.67.21.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id 086A043D2F; Fri, 7 May 2004 20:48:01 -0700 (PDT) (envelope-from sales@swiftfax.co.uk) Received: from ts32-b35.Moscow.dial.rol.ru ([195.239.2.35]:43528 "EHLO mobile6200" smtp-auth: TLS-CIPHER: TLS-PEER-CN1: ) by gnome04.net.rol.ru with ESMTP id S17287136AbUEHDr6 (ORCPT + 1 other); Sat, 8 May 2004 07:47:58 +0400 Date: Sat, 08 May 2004 07:47:34 -0700 To: dinoex@FreeBSD.org From: "SWIFT Fax.net" Organization: SWIFT Fax.net Content-Type: text/plain; charset=US-ASCII; format=flowed MIME-Version: 1.0 Content-Transfer-Encoding: 7BIT Message-ID: User-Agent: Opera7.23/Win32 M2 build 3227 X-Mailman-Approved-At: Sat, 08 May 2004 05:20:42 -0700 cc: ports@FreeBSD.org Subject: FreeBSD Port: vsftpd-1.2.1_3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: sales@swiftfax.co.uk List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 May 2004 03:48:02 -0000 Dear Sir, As I know vsftpd-1.2.2 has been released. It fixes one bug for FreeBSD 5.1 and 5.2 (See change log at: ftp://vsftpd.beasts.org/users/cevans/untar/vsftpd-1.2.2/Changelog) On FreeBSD site I see vsftpd comes with 1.2.1_3. I would like to see the new 1.2.2. Please port new when possible. Thank you, -- SWIFT Fax.net http://www.swiftfax.co.uk From owner-freebsd-ports@FreeBSD.ORG Sat May 8 06:34:47 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 58CB416A4CE for ; Sat, 8 May 2004 06:34:47 -0700 (PDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 087BE43D66 for ; Sat, 8 May 2004 06:34:45 -0700 (PDT) (envelope-from tomonage2@gmx.de) Received: (qmail 13042 invoked by uid 65534); 8 May 2004 13:34:43 -0000 Received: from pD9E77B39.dip.t-dialin.net (EHLO [192.168.0.196]) (217.231.123.57) by mail.gmx.net (mp002) with SMTP; 08 May 2004 15:34:43 +0200 X-Authenticated: #7843803 User-Agent: Microsoft-Entourage/10.1.4.030702.0 Date: Sat, 08 May 2004 15:34:24 +0200 From: Jonathan Weiss To: Message-ID: Mime-version: 1.0 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit Subject: Make index || portsdb -uU fails after cvsup X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 May 2004 13:34:47 -0000 Hi folks, I cvsupped 30min ago and 1hour ago. Both times I tried to do a: ---------------------------------------------------------- #portsdb -uU This is what i got: Updating the ports index ... Generating INDEX.tmp - please wait..===> dns/weedns_sc failed: make: don't know how to make describe. Stop *** Error code 1 1 error ******************************************************************** Before reporting this error, verify that you are running a supported version of FreeBSD (see http://www.FreeBSD.org/ports/) and that you have a complete and up-to-date ports collection. If so, then report the failure to ports@FreeBSD.org together with relevant details of your ports configuration (including FreeBSD version, environment and /etc/make.conf settings). ******************************************************************** *** Error code 1 Stop in /usr/ports. *** Error code 1 Stop in /usr/ports. failed to generate INDEX! portsdb: index generation error ---------------------------------------------------------- More infos: # cat /etc/make.conf CPUTYPE?=athlon CFLAGS= -O -pipe # -- use.perl generated deltas -- # # Created: Sun Feb 15 21:33:39 2004 # Setting to use base perl from ports: PERL_VER=5.6.1 PERL_VERSION=5.6.1 PERL_ARCH=mach NOPERL=yo NO_PERL=yo NO_PERL_WRAPPER=yo # -- use.perl generated deltas -- # # Created: Sat Feb 28 14:37:51 2004 # Setting to use base perl from ports: PERL_VER=5.6.1 PERL_VERSION=5.6.1 PERL_ARCH=mach NOPERL=yo NO_PERL=yo NO_PERL_WRAPPER=yo #uname -a FreeBSD satan.nodomain 5.2.1-RELEASE-p6 FreeBSD 5.2.1-RELEASE-p6 #4: Thu May 6 10:42:37 CEST 2004 mille@satan.nodomain:/usr/obj/usr/src/sys/SATAN_SOUND i386 -------------------------------------------------------- Thanks, Jonathan From owner-freebsd-ports@FreeBSD.ORG Sat May 8 06:47:10 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9DAA516A4CF for ; Sat, 8 May 2004 06:47:10 -0700 (PDT) Received: from mta7.pltn13.pbi.net (mta7.pltn13.pbi.net [64.164.98.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7947443D41 for ; Sat, 8 May 2004 06:47:10 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (2f6a976ecd56d5e99d40fb4666d5121f@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128])i48Dl9VW002508; Sat, 8 May 2004 06:47:10 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 91D5F53F89; Sat, 8 May 2004 06:47:09 -0700 (PDT) Date: Sat, 8 May 2004 06:47:09 -0700 From: Kris Kennaway To: Jonathan Weiss Message-ID: <20040508134709.GA35555@xor.obsecurity.org> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="YZ5djTAD1cGYuMQK" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i cc: ports@freebsd.org Subject: Re: Make index || portsdb -uU fails after cvsup X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 May 2004 13:47:10 -0000 --YZ5djTAD1cGYuMQK Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, May 08, 2004 at 03:34:24PM +0200, Jonathan Weiss wrote: > Hi folks, >=20 >=20 > I cvsupped 30min ago and 1hour ago. Both times I tried to do a: >=20 > ---------------------------------------------------------- > #portsdb -uU >=20 > This is what i got: >=20 > Updating the ports index ... Generating INDEX.tmp - please wait..=3D=3D= =3D> > dns/weedns_sc failed: > make: don't know how to make describe. Stop > *** Error code 1 > 1 error Fixed, sorry. Kris --YZ5djTAD1cGYuMQK Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAnOTdWry0BWjoQKURAoTBAKC09tn0z9GPGslPCc65OV6WCXgVRgCg5qh+ 29854eTFqPmK4rTjjeSbQhA= =f7zg -----END PGP SIGNATURE----- --YZ5djTAD1cGYuMQK-- From owner-freebsd-ports@FreeBSD.ORG Sat May 8 09:52:07 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A518516A4CE for ; Sat, 8 May 2004 09:52:07 -0700 (PDT) Received: from out001.verizon.net (out001pub.verizon.net [206.46.170.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A51C43D1F for ; Sat, 8 May 2004 09:52:07 -0700 (PDT) (envelope-from cswiger@mac.com) Received: from mac.com ([68.161.84.3]) by out001.verizon.net (InterMail vM.5.01.06.06 201-253-122-130-106-20030910) with ESMTP id <20040508165206.ZUQH1464.out001.verizon.net@mac.com> for ; Sat, 8 May 2004 11:52:06 -0500 Message-ID: <409D1027.3040500@mac.com> Date: Sat, 08 May 2004 12:51:51 -0400 From: Chuck Swiger Organization: The Courts of Chaos User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7b) Gecko/20040421 X-Accept-Language: en-us, en MIME-Version: 1.0 To: FreeBSD ports Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Authentication-Info: Submitted using SMTP AUTH at out001.verizon.net from [68.161.84.3] at Sat, 8 May 2004 11:52:06 -0500 Subject: INDEX build failed on japanese/gd1...? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 May 2004 16:52:07 -0000 Hi, all-- Generating INDEX - please wait..===> japanese/gd1 failed: "Makefile", line 17: Could not find /usr/ports/japanese/gd1/../../graphics/gd1/Makefile make: fatal errors encountered -- cannot continue *** Error code 1 207-sec# uname -a FreeBSD sec.pkix.net 4.10-PRERELEASE FreeBSD 4.10-PRERELEASE #3: Thu Apr 29 01:20:39 EDT 2004 root@sec.pkix.net:/usr/obj/usr/src/sys/NORMAL i386 -- -Chuck From owner-freebsd-ports@FreeBSD.ORG Sat May 8 10:10:16 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCDD716A4CE for ; Sat, 8 May 2004 10:10:16 -0700 (PDT) Received: from fillmore.dyndns.org (port-212-202-49-130.reverse.qsc.de [212.202.49.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B55343D41 for ; Sat, 8 May 2004 10:10:16 -0700 (PDT) (envelope-from eikemeier@fillmore-labs.com) Received: from [172.16.0.2] (helo=fillmore-labs.com) by fillmore.dyndns.org with esmtp (Exim 4.33; FreeBSD) id 1BMVL0-0003L2-RW; Sat, 08 May 2004 19:10:15 +0200 Message-ID: <409D1472.2070102@fillmore-labs.com> Date: Sat, 08 May 2004 19:10:10 +0200 From: Oliver Eikemeier Organization: Fillmore Labs GmbH - http://www.fillmore-labs.com/ MIME-Version: 1.0 To: Chuck Swiger References: <409D1027.3040500@mac.com> In-Reply-To: <409D1027.3040500@mac.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: FreeBSD ports Subject: Re: INDEX build failed on japanese/gd1...? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 May 2004 17:10:17 -0000 Chuck Swiger wrote: > Hi, all-- > > Generating INDEX - please wait..===> japanese/gd1 failed: > "Makefile", line 17: Could not find > /usr/ports/japanese/gd1/../../graphics/gd1/Makefile > make: fatal errors encountered -- cannot continue > *** Error code 1 > > 207-sec# uname -a > FreeBSD sec.pkix.net 4.10-PRERELEASE FreeBSD 4.10-PRERELEASE #3: Thu Apr > 29 01:20:39 EDT 2004 root@sec.pkix.net:/usr/obj/usr/src/sys/NORMAL > i386 japanese/gd1 has been removed 2004-05-04. Perhaps category japanese isn't up to date on you machine? From owner-freebsd-ports@FreeBSD.ORG Sat May 8 10:15:39 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA1E216A4CE for ; Sat, 8 May 2004 10:15:39 -0700 (PDT) Received: from smtp.dkm.cz (smtp.dkm.cz [62.24.64.34]) by mx1.FreeBSD.org (Postfix) with SMTP id 9CBBC43D48 for ; Sat, 8 May 2004 10:15:38 -0700 (PDT) (envelope-from neuhauser@chello.cz) Received: (qmail 16707 invoked by uid 0); 8 May 2004 17:15:36 -0000 Received: from r3al16.mistral.cz (HELO isis.wad.cz) (213.220.229.16) by smtp.dkm.cz with SMTP; 8 May 2004 17:15:36 -0000 Received: by isis.wad.cz (Postfix, from userid 1001) id 5742C2FDA01; Sat, 8 May 2004 19:15:36 +0200 (CEST) Date: Sat, 8 May 2004 19:15:35 +0200 From: Roman Neuhauser To: Chuck Swiger Message-ID: <20040508171535.GD99630@isis.wad.cz> Mail-Followup-To: Chuck Swiger , FreeBSD ports References: <409D1027.3040500@mac.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <409D1027.3040500@mac.com> User-Agent: Mutt/1.5.6i cc: FreeBSD ports Subject: Re: INDEX build failed on japanese/gd1...? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 May 2004 17:15:40 -0000 # cswiger@mac.com / 2004-05-08 12:51:51 -0400: > Generating INDEX - please wait..===> japanese/gd1 failed: > "Makefile", line 17: Could not find > /usr/ports/japanese/gd1/../../graphics/gd1/Makefile > make: fatal errors encountered -- cannot continue > *** Error code 1 ls -ld /usr/ports/graphics{,/gd1} ls -l /usr/ports/graphics/gd1 -- If you cc me or remove the list(s) completely I'll most likely ignore your message. see http://www.eyrie.org./~eagle/faqs/questions.html From owner-freebsd-ports@FreeBSD.ORG Sat May 8 10:25:09 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 575FE16A4CE for ; Sat, 8 May 2004 10:25:09 -0700 (PDT) Received: from out009.verizon.net (out009pub.verizon.net [206.46.170.131]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC92543D3F for ; Sat, 8 May 2004 10:25:08 -0700 (PDT) (envelope-from cswiger@mac.com) Received: from mac.com ([68.161.84.3]) by out009.verizon.net (InterMail vM.5.01.06.06 201-253-122-130-106-20030910) with ESMTP id <20040508172508.MIE29216.out009.verizon.net@mac.com>; Sat, 8 May 2004 12:25:08 -0500 Message-ID: <409D17E4.7030203@mac.com> Date: Sat, 08 May 2004 13:24:52 -0400 From: Chuck Swiger Organization: The Courts of Chaos User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7b) Gecko/20040421 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Oliver Eikemeier References: <409D1027.3040500@mac.com> <409D1472.2070102@fillmore-labs.com> In-Reply-To: <409D1472.2070102@fillmore-labs.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Authentication-Info: Submitted using SMTP AUTH at out009.verizon.net from [68.161.84.3] at Sat, 8 May 2004 12:25:07 -0500 cc: FreeBSD ports Subject: Re: INDEX build failed on japanese/gd1...? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 May 2004 17:25:09 -0000 Oliver Eikemeier wrote: [ ... ] > japanese/gd1 has been removed 2004-05-04. Perhaps category japanese isn't > up to date on you machine? You're absolutely right. Sorry for the noise... -- -Chuck From owner-freebsd-ports@FreeBSD.ORG Sat May 8 13:08:46 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8768D16A4CE for ; Sat, 8 May 2004 13:08:46 -0700 (PDT) Received: from lakermmtao07.cox.net (lakermmtao07.cox.net [68.230.240.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id 192D143D5C for ; Sat, 8 May 2004 13:08:46 -0700 (PDT) (envelope-from dgstudios@cox.net) Received: from [68.101.84.30] by lakermmtao07.cox.net (InterMail vM.6.01.03.02 201-2131-111-104-20040324) with SMTP id <20040508200845.PKHD19459.lakermmtao07.cox.net@[68.101.84.30]> for ; Sat, 8 May 2004 16:08:45 -0400 From: dgstudios@cox.net To: ports@FreeBSD.org Sender: dgstudios@cox.net Mime-Version: 1.0 Content-Type: text/plain; charset="windows-1257" Date: Sat, 8 May 2004 16:09:38 -0400 Message-Id: <20040508200845.PKHD19459.lakermmtao07.cox.net@[68.101.84.30]> Subject: Looking for Multimedia Designers... X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 May 2004 20:08:46 -0000 Are you a Multimedia Designer? http://207.36.55.56/DG/dgdesk.htm From owner-freebsd-ports@FreeBSD.ORG Sat May 8 13:33:12 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4373616A4CE for ; Sat, 8 May 2004 13:33:12 -0700 (PDT) Received: from mail.babbleheaven.com (mail.babbleheaven.com [66.114.86.142]) by mx1.FreeBSD.org (Postfix) with ESMTP id A06EE43D2F for ; Sat, 8 May 2004 13:33:10 -0700 (PDT) (envelope-from o_sleep@babbleheaven.com) Received: from [10.0.1.207] (linksys.home.babbleheaven.com [10.0.1.1]) by mail.babbleheaven.com (Postfix) with ESMTP id A24AF2E835 for ; Sat, 8 May 2004 16:33:09 -0400 (EDT) Mime-Version: 1.0 (Apple Message framework v613) Content-Transfer-Encoding: 7bit Message-Id: Content-Type: text/plain; charset=US-ASCII; format=flowed To: freebsd-ports@freebsd.org From: Bjorn Nelson Date: Sat, 8 May 2004 16:33:09 -0400 X-Mailer: Apple Mail (2.613) Subject: /usr/include/sys/_types.h:100: conflicting types for `__mbstate_t' X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 May 2004 20:33:12 -0000 I am trying to install samba-2 on a recently upgraded Freebsd 4.9 machine. It fails on server.c. Any help would be appreciated. -Bjorn Nelson ===> Building for samba-2.2.8a_2 /bin/rm -fr /usr/ports/net/samba/work/samba-2.2.8a/source/include/proto.h (cd /usr/ports/net/samba/work/samba-2.2.8a/source && make proto) rebuilding include/proto.h Using FLAGS = -O -pipe -march=pentiumpro -I/usr/local/include -Iinclude -I./include -I./ubiqx -I./smbwrapper -I/usr/local/include -DLOGFILEBASE="/var/log" -DCONFIGFILE="/usr/local/etc/smb.conf" -DLMHOSTSFILE="/usr/local/etc/lmhosts" -DSWATDIR="/usr/local/share/swat" -DSBINDIR="/usr/local/sbin" -DLOCKDIR="/var/lock" -DCODEPAGEDIR="/usr/local/etc/codepages" -DDRIVERFILE="/usr/local/etc/printers.def" -DBINDIR="/usr/local/bin" -DPIDDIR="/var/run" -DLIBDIR="/usr/local/etc" -DHAVE_INCLUDES_H -DPASSWD_PROGRAM="/usr/bin/passwd" -DSMB_PASSWD_FILE="/usr/local/private/smbpasswd" -DTDB_PASSWD_FILE="/usr/local/private/smbpasswd.tdb" Using FLAGS32 = -O -pipe -march=pentiumpro -I/usr/local/include -Iinclude -I./include -I./ubiqx -I./smbwrapper -I/usr/local/include -DLOGFILEBASE="/var/log" -DCONFIGFILE="/usr/local/etc/smb.conf" -DLMHOSTSFILE="/usr/local/etc/lmhosts" -DSWATDIR="/usr/local/share/swat" -DSBINDIR="/usr/local/sbin" -DLOCKDIR="/var/lock" -DCODEPAGEDIR="/usr/local/etc/codepages" -DDRIVERFILE="/usr/local/etc/printers.def" -DBINDIR="/usr/local/bin" -DPIDDIR="/var/run" -DLIBDIR="/usr/local/etc" -DHAVE_INCLUDES_H -DPASSWD_PROGRAM="/usr/bin/passwd" -DSMB_PASSWD_FILE="/usr/local/private/smbpasswd" -DTDB_PASSWD_FILE="/usr/local/private/smbpasswd.tdb" Using LIBS = -lcups -lssl -lcrypto -lpam -lpopt Compiling smbd/server.c In file included from /usr/include/sys/_types.h:33, from /usr/include/sys/statvfs.h:36, from include/includes.h:302, from smbd/server.c:22: /usr/include/machine/_types.h:45: redefinition of `__int8_t' /usr/include/machine/ansi.h:130: `__int8_t' previously declared here /usr/include/machine/_types.h:46: redefinition of `__uint8_t' /usr/include/machine/ansi.h:131: `__uint8_t' previously declared here /usr/include/machine/_types.h:47: redefinition of `__int16_t' /usr/include/machine/ansi.h:132: `__int16_t' previously declared here /usr/include/machine/_types.h:48: redefinition of `__uint16_t' /usr/include/machine/ansi.h:133: `__uint16_t' previously declared here /usr/include/machine/_types.h:49: redefinition of `__int32_t' /usr/include/machine/ansi.h:134: `__int32_t' previously declared here /usr/include/machine/_types.h:50: redefinition of `__uint32_t' /usr/include/machine/ansi.h:135: `__uint32_t' previously declared here /usr/include/machine/_types.h:58: redefinition of `__int64_t' /usr/include/machine/ansi.h:118: `__int64_t' previously declared here /usr/include/machine/_types.h:59: redefinition of `__uint64_t' /usr/include/machine/ansi.h:119: `__uint64_t' previously declared here /usr/include/machine/_types.h:76: redefinition of `__intptr_t' /usr/include/machine/ansi.h:137: `__intptr_t' previously declared here /usr/include/machine/_types.h:93: redefinition of `__uintptr_t' /usr/include/machine/ansi.h:138: `__uintptr_t' previously declared here In file included from /usr/include/sys/statvfs.h:36, from include/includes.h:302, from smbd/server.c:22: /usr/include/sys/_types.h:100: conflicting types for `__mbstate_t' /usr/include/machine/ansi.h:147: previous declaration of `__mbstate_t' gmake: *** [smbd/server.o] Error 1 *** Error code 2 Stop in /usr/ports/net/samba. *** Error code 1 Stop in /usr/ports/net/samba. From owner-freebsd-ports@FreeBSD.ORG Sat May 8 13:44:56 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A51FB16A4CE for ; Sat, 8 May 2004 13:44:56 -0700 (PDT) Received: from mtiwmhc12.worldnet.att.net (mtiwmhc12.worldnet.att.net [204.127.131.116]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9579043D31 for ; Sat, 8 May 2004 13:44:55 -0700 (PDT) (envelope-from j.e.drews@worldnet.att.net) Received: from [12.74.143.243] (243.st.louis-109-110rs.mo.dial-access.att.net[12.74.143.243]) by worldnet.att.net (mtiwmhc12) with SMTP id <2004050820445311200bhd7oe>; Sat, 8 May 2004 20:44:53 +0000 From: Jonathan To: FreeBSD ports Content-Type: text/plain Message-Id: <1084049192.422.63.camel@mobile.silbsd.org> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Sat, 08 May 2004 15:46:33 -0500 Content-Transfer-Encoding: 7bit Subject: fixing fwbuilder port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 May 2004 20:44:56 -0000 FreeBSD 5.2-CURRENT #0: Thu Apr 29 23:05:11 Port: fwbuilder-1.1.2_2 (/usr/ports/security/fwbuilder) Compiled with: gcc version 3.3.3 [FreeBSD] 20031106 I installed fwbuilder (a GUI firewall configuration tool) and when I went to make a package I got this error: pkg_add: could not find package openssl-0.9.7 ! I looked at the dependencies and saw that it did need openssl-0.9.7 and that openssl-0.9.7 had not been installed (the userland openssl is installed): Port: fwbuilder-1.1.2_2 Path: /usr/ports/security/fwbuilder Info: Firewall Builder GUI and policy compilers Maint: vadim@fwbuilder.org Index: security B-deps: XFree86-libraries-4.3.0_7 expat-1.95.7 fontconfig-2.2.2,1 freetype2-2.1.7_3 gdk-pixbuf-0.22.0_1 ge ttext-0.13.1_1 glib-1.2.10_10 gmake-3.80_2 gtk-1.2.10_12 gtkmm-1.2.8_2 imake-4.3.0_2 jpeg-6b_2 libfwbuilder-1.0.2_3 libiconv-1.9.1_3 libsigc++-1.0.4 libtool-1.3.5_2 libxml2-2.6.9 libxslt-1.1.6 net-snmp-5.1.1_3 op enssl-0.9.7d pkgconfig-0.15.0_1 png-1.2.5_4 python-2.3.3_5 rc_subr-1.16 tiff-3.6.1_1 R-deps: XFree86-libraries-4.3.0_7 expat-1.95.7 fontconfig-2.2.2,1 freetype2-2.1.7_3 gdk-pixbuf-0.22.0_1 ge ttext-0.13.1_1 glib-1.2.10_10 gtk-1.2.10_12 gtkmm-1.2.8_2 imake-4.3.0_2 jpeg-6b_2 libfwbuilder-1.0.2_3 lib iconv-1.9.1_3 libsigc++-1.0.4 libxml2-2.6.9 libxslt-1.1.6 net-snmp-5.1.1_3 openssl-0.9.7d pkgconfig-0.15.0 _1 png-1.2.5_4 python-2.3.3_5 rc_subr-1.16 tiff-3.6.1_1 I went and modified my Makefile like so: --- Makefile.fwbuilder.original Sat May 8 14:11:34 2004 +++ Makefile.fwbuilder.new Sat May 8 14:19:22 2004 @@ -15,6 +15,10 @@ MAINTAINER= vadim@fwbuilder.org COMMENT= Firewall Builder GUI and policy compilers +BUILD_DEPENDS= openssl:${PORTSDIR}/security/openssl + +RUN_DEPENDS= openssl:${PORTSDIR}/security/openssl + LIB_DEPENDS= gtkmm.2:${PORTSDIR}/x11-toolkits/gtk-- \ gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf \ fwbuilder.5:${PORTSDIR}/security/libfwbuilder and recompiled. It still gave the same error. Sure enough openssl, from ports, was not installed despite including the run and build depends. I did see that and openssl was installed by default, as part of the userland. So I went to the Firewall Builder site, http://www.fwbuilder.org/, and saw that I might need to add --with-openssl-prefix=PREFIX - (specify prefix directory where openssl library is installed). The problem is that the openssl pkg-plist lists these entries for libssl: lib/libssl.a %%SHARED%%lib/libssl.so %%SHARED%%lib/libssl.so.%%SHLIBVER%% Question 1) do I need to specify CONFIGURE_ARGS+= --with-openssl-prefix=${LOCALBASE}/lib if so will it know whether to select the static (libssl.a) or the shared ( libssl.so ) library. Or should I just include it in the LIB_PEPENDS ? Question 2) Should I install the openssl port when the base system already includes it? Openssl is in the base system but it's not being detected by fwbuilder. Question 3) What are the %%SHARED%% for? I looked in /usr/ports/Mk/bsd.ports.mk and could not find an entry. I am quite new to porting and just wanted to fix this. -- Kind regards, Jonathan From owner-freebsd-ports@FreeBSD.ORG Sat May 8 14:14:07 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 31B9416A4CE for ; Sat, 8 May 2004 14:14:07 -0700 (PDT) Received: from web25004.mail.ukl.yahoo.com (web25004.mail.ukl.yahoo.com [217.12.10.40]) by mx1.FreeBSD.org (Postfix) with SMTP id 4B02F43D4C for ; Sat, 8 May 2004 14:14:06 -0700 (PDT) (envelope-from michaelrmgreen@yahoo.co.uk) Message-ID: <20040508211405.34232.qmail@web25004.mail.ukl.yahoo.com> Received: from [213.78.107.147] by web25004.mail.ukl.yahoo.com via HTTP; Sat, 08 May 2004 22:14:05 BST Date: Sat, 8 May 2004 22:14:05 +0100 (BST) From: =?iso-8859-1?q?michael=20green?= To: ports@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Subject: clip pkg_add error X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 May 2004 21:14:07 -0000 Hello and greetings. I am unable to pkg_add clip. Any advice you can offer woulkd be most welcome. Many thanks in anticipation. Regards, Michael Green. Error message follows: FreeBSD 4.9 release clip 1.1.9.1_1 # pkg_add -r clip Error: FTP Unable to get ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-4.9-release/Latest/clip.tgz: File unavailable (e.g., file not found, no access) pkg_add: unable to fetch 'ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-4.9-release/Latest/clip.tgz' by URL ____________________________________________________________ Yahoo! Messenger - Communicate instantly..."Ping" your friends today! Download Messenger Now http://uk.messenger.yahoo.com/download/index.html From owner-freebsd-ports@FreeBSD.ORG Sat May 8 14:23:54 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 87C0116A4CE for ; Sat, 8 May 2004 14:23:54 -0700 (PDT) Received: from hal.kabsi.at (bottom.kabsi.at [195.202.128.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id 724F643D46 for ; Sat, 8 May 2004 14:23:53 -0700 (PDT) (envelope-from robert.hutterer@univie.ac.at) Received: from virtual (h062040150223.kob.cm.kabsi.at [62.40.150.223]) by hal.kabsi.at (8.11.1/) with SMTP id i48LNpK0000787219; Sat, 8 May 2004 23:23:51 +0200 (CEST) Message-ID: <06ab01c43542$7af9a030$0b00a8c0@virtual> From: "Hutterer Robert" To: Date: Sat, 8 May 2004 23:21:46 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 cc: esn@x123.info Subject: FreeBSD Port: drupal-4.4.0 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 May 2004 21:23:54 -0000 PEAR-pachages ar only necessary with postgres, but not with mysql pear-Archive_Tar-1.1_1, pear-Console_Getopt-1.2, pear-DB-1.6.2,1, pear-PEAR-1.2.1_1, php4-4.3.6 From owner-freebsd-ports@FreeBSD.ORG Sat May 8 14:26:50 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24C6C16A4CE for ; Sat, 8 May 2004 14:26:50 -0700 (PDT) Received: from gldis.ca (constans.gldis.ca [66.11.169.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E88543D2F for ; Sat, 8 May 2004 14:26:49 -0700 (PDT) (envelope-from gldisater@gldis.ca) Received: from gldis.ca (localhost [127.0.0.1]) by gldis.ca (8.12.8p2/8.12.8) with ESMTP id i48LV2cj094556; Sat, 8 May 2004 17:31:07 -0400 (EDT) (envelope-from gldisater@gldis.ca) Message-ID: <409D5158.3030306@gldis.ca> Date: Sat, 08 May 2004 17:30:00 -0400 From: Jeremy Faulkner User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.6) Gecko/20040321 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Sean McNeil References: <1083902881.86736.5.camel@server.mcneil.com> In-Reply-To: <1083902881.86736.5.camel@server.mcneil.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV version 'clamd / ClamAV version 0.65', clamav-milter version '0.60p' cc: freebsd-ports@freebsd.org Subject: Re: Eclipse CDT port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 May 2004 21:26:50 -0000 Sean McNeil wrote: > I saw the posting of a shar to add the Eclipse C/C++ Tools to the ports > collection. Unfortunately, I can only see it in html and would like > very much to install it. Could you please send me the shar directly? > Alternatively, it could get added to ports and I'd be very happy :) > > Thanks, > Sean I don't know what problem you are encountering. The shar file is in the pr, http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/63611 All of the text in the Fix section *is* the shar file. From "--- eclipse-cdt.shar begins here ---" To... "--- eclipse-cdt.shar ends here ---" Cut and past everything from the begin marker, to the end marker inclusive into a file, then you too will have the shar file. -- Jeremy Faulkner http://www.gldis.ca From owner-freebsd-ports@FreeBSD.ORG Sat May 8 14:36:04 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A9AD16A4CE for ; Sat, 8 May 2004 14:36:04 -0700 (PDT) Received: from fillmore.dyndns.org (port-212-202-49-130.reverse.qsc.de [212.202.49.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id B3B8B43D3F for ; Sat, 8 May 2004 14:36:03 -0700 (PDT) (envelope-from eikemeier@fillmore-labs.com) Received: from [172.16.0.2] (helo=fillmore-labs.com) by fillmore.dyndns.org with esmtp (Exim 4.33; FreeBSD) id 1BMZUG-0003ey-Va; Sat, 08 May 2004 23:36:02 +0200 Message-ID: <409D52C0.7010902@fillmore-labs.com> Date: Sat, 08 May 2004 23:36:00 +0200 From: Oliver Eikemeier Organization: Fillmore Labs GmbH - http://www.fillmore-labs.com/ MIME-Version: 1.0 To: michael green References: <20040508211405.34232.qmail@web25004.mail.ukl.yahoo.com> In-Reply-To: <20040508211405.34232.qmail@web25004.mail.ukl.yahoo.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: ports@FreeBSD.org Subject: Re: clip pkg_add error X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 May 2004 21:36:04 -0000 michael green wrote: > Hello and greetings. I am unable to pkg_add clip. Any > advice you can offer woulkd be most welcome. Many > thanks in anticipation. Regards, Michael Green. Error > message follows: > > FreeBSD 4.9 release > clip 1.1.9.1_1 FreeBSD 4.9-release had clip 1.1.0. I can't tell excatly, but maybe this version did not build correcty, therfore there no 4.9-release package is available. Try installing from the port. Oliver From owner-freebsd-ports@FreeBSD.ORG Sat May 8 14:37:58 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0DE416A4CE for ; Sat, 8 May 2004 14:37:58 -0700 (PDT) Received: from smtp.owt.com (smtp.owt.com [204.118.6.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 338C743D39 for ; Sat, 8 May 2004 14:37:58 -0700 (PDT) (envelope-from kstewart@owt.com) Received: from [207.41.94.233] (owt-207-41-94-233.owt.com [207.41.94.233]) by smtp.owt.com (8.12.8/8.12.8) with ESMTP id i48LbtEX023247; Sat, 8 May 2004 14:37:55 -0700 From: Kent Stewart To: freebsd-ports@freebsd.org Date: Sat, 8 May 2004 14:37:56 -0700 User-Agent: KMail/1.6.2 References: <20040508211405.34232.qmail@web25004.mail.ukl.yahoo.com> In-Reply-To: <20040508211405.34232.qmail@web25004.mail.ukl.yahoo.com> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200405081437.56830.kstewart@owt.com> cc: michael green Subject: Re: clip pkg_add error X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 May 2004 21:37:58 -0000 On Saturday 08 May 2004 02:14 pm, michael green wrote: > Hello and greetings. I am unable to pkg_add clip. Any > advice you can offer woulkd be most welcome. Many > thanks in anticipation. Regards, Michael Green. Error > message follows: > That is probably because its name is clips. There is a clips.tgz on the server. Kent > > > FreeBSD 4.9 release > clip 1.1.9.1_1 > > # pkg_add -r clip > Error: FTP Unable to get > ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-4.9-release/Lat >est/clip.tgz: File unavailable (e.g., file not found, no access) > pkg_add: unable to fetch > 'ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-4.9-release/La >test/clip.tgz' by URL > > > > > > > ____________________________________________________________ > Yahoo! Messenger - Communicate instantly..."Ping" > your friends today! Download Messenger Now > http://uk.messenger.yahoo.com/download/index.html > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to > "freebsd-ports-unsubscribe@freebsd.org" -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html From owner-freebsd-ports@FreeBSD.ORG Sat May 8 14:52:23 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A058E16A4CE for ; Sat, 8 May 2004 14:52:23 -0700 (PDT) Received: from graf.pompo.net (graf.pompo.net [81.56.186.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id C6CCF43D1D for ; Sat, 8 May 2004 14:52:22 -0700 (PDT) (envelope-from thierry@pompo.net) Received: by graf.pompo.net (Postfix, from userid 1001) id CF4CE7668; Sat, 8 May 2004 23:48:59 +0200 (CEST) Date: Sat, 8 May 2004 23:48:59 +0200 From: Thierry Thomas To: michael green Message-ID: <20040508214859.GB65273@graf.pompo.net> Mail-Followup-To: michael green , ports@FreeBSD.org References: <20040508211405.34232.qmail@web25004.mail.ukl.yahoo.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="9zSXsLTf0vkW971A" Content-Disposition: inline In-Reply-To: <20040508211405.34232.qmail@web25004.mail.ukl.yahoo.com> X-Face: (hRbQnK~Pt7$ct`!fupO(`y_WL4^-Iwn4@ly-.,[4xC4xc; y=\ipKMNm<1J>lv@PP~7Z<.t KjAnXLs: User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD 4.10-BETA i386 Organization: Kabbale Eros X-PGP: 0xC71405A2 cc: ports@FreeBSD.org Subject: Re: clip pkg_add error X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 May 2004 21:52:23 -0000 --9zSXsLTf0vkW971A Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Le Sam 8 mai 04 =E0 23:14:05 +0200, michael green =E9crivait=A0: > Hello and greetings. I am unable to pkg_add clip. Any > advice you can offer woulkd be most welcome. Many > thanks in anticipation. Regards, Michael Green. Error > message follows: >=20 >=20 >=20 > FreeBSD 4.9 release > clip 1.1.9.1_1 >=20 > # pkg_add -r clip > Error: FTP Unable to get > ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-4.9-release/Latest/= clip.tgz: > File unavailable (e.g., file not found, no access) > pkg_add: unable to fetch > 'ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-4.9-release/Latest= /clip.tgz' > by URL You can grab it from (it was broken for 4.9-release, and has been fixed for 4.10). --=20 Th. Thomas. --9zSXsLTf0vkW971A Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAnVXLc95pjMcUBaIRAr2TAKCNelUQUSl1tKfflXOzRdoZD0gGNwCfRGdO 1Eii0wDLwJhkbU1MLo3TMMc= =Latt -----END PGP SIGNATURE----- --9zSXsLTf0vkW971A-- From owner-freebsd-ports@FreeBSD.ORG Sat May 8 17:05:02 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B647116A4CE for ; Sat, 8 May 2004 17:05:02 -0700 (PDT) Received: from fobos.ldc.net (fobos.ldc.net [213.160.128.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8A8A43D1D for ; Sat, 8 May 2004 17:05:01 -0700 (PDT) (envelope-from mirya@ukrpost.net) Received: from [213.160.133.158] (213.160.133.158.ldc.net [213.160.133.158] (may be forged)) by fobos.ldc.net (8.12.10/8.12.10) with ESMTP id i4900LDg017323 for ; Sun, 9 May 2004 03:04:52 +0300 (EEST) From: Kyryll A Mirnenko To: freebsd-ports@freebsd.org Date: Sun, 9 May 2004 03:05:29 +0300 User-Agent: KMail/1.6.1 References: <20040507135249.0199343D2D@mx1.FreeBSD.org> <409C0E69.6070705@obsecurity.org> In-Reply-To: <409C0E69.6070705@obsecurity.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="windows-1251" Content-Transfer-Encoding: 7bit Message-Id: <200405090305.29983.mirya@ukrpost.net> Subject: Re: General binary packages issue: pkg-config *.pc has hadcodedbase directory X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 May 2004 00:05:02 -0000 > > I use two harddrives & have to split the packages I install between > > them, so I has 2 default installation bases (/usr/local & /usr/X11R6) and > > one more for the 2nd drive: /usr2 . I found all packages contain > > pkg-config congifs (*.pc) hardcoded to package default location, not to > > the one specified with -p option to pkg-add > > Yes, it's set at compile time and cannot be changed at install time. -p > is not generally useful for this reason. In your situation you need to > use ports instead or make a symlink. > > Kris Yeah, I do understand -p won't help (my HDDs're covered with heavy cross-symlinks net), but my idea is that port-compilers should deal with this to make *.pc paths being configured at install time From owner-freebsd-ports@FreeBSD.ORG Sat May 8 17:17:58 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2711B16A4CF for ; Sat, 8 May 2004 17:17:58 -0700 (PDT) Received: from mta4.rcsntx.swbell.net (mta4.rcsntx.swbell.net [151.164.30.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id A044A43D31 for ; Sat, 8 May 2004 17:17:57 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (601cf8766617e8a896944278ce161e20@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128])i490HtkF014676; Sat, 8 May 2004 19:17:55 -0500 (CDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 95331527B1; Sat, 8 May 2004 17:17:54 -0700 (PDT) Date: Sat, 8 May 2004 17:17:54 -0700 From: Kris Kennaway To: Kyryll A Mirnenko Message-ID: <20040509001754.GA72555@xor.obsecurity.org> References: <20040507135249.0199343D2D@mx1.FreeBSD.org> <409C0E69.6070705@obsecurity.org> <200405090305.29983.mirya@ukrpost.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Kj7319i9nmIyA2yE" Content-Disposition: inline In-Reply-To: <200405090305.29983.mirya@ukrpost.net> User-Agent: Mutt/1.4.2.1i cc: freebsd-ports@freebsd.org Subject: Re: General binary packages issue: pkg-config *.pc has hadcodedbase directory X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 May 2004 00:17:58 -0000 --Kj7319i9nmIyA2yE Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, May 09, 2004 at 03:05:29AM +0300, Kyryll A Mirnenko wrote: > > > I use two harddrives & have to split the packages I install between > > > them, so I has 2 default installation bases (/usr/local & /usr/X11R6)= and > > > one more for the 2nd drive: /usr2 . I found all packages contain > > > pkg-config congifs (*.pc) hardcoded to package default location, not = to > > > the one specified with -p option to pkg-add > > > > Yes, it's set at compile time and cannot be changed at install time. -p > > is not generally useful for this reason. In your situation you need to > > use ports instead or make a symlink. > > > > Kris >=20 > Yeah, I do understand -p won't help (my HDDs're covered with heavy=20 > cross-symlinks net), but my idea is that port-compilers should deal with = this=20 > to make *.pc paths being configured at install time This is not a current goal of the Ports Collection. If you are interested, please feel free to work on it and submit patches as time permits. Kris --Kj7319i9nmIyA2yE Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAnXiyWry0BWjoQKURAkdaAJ9BWPkmNLwUemAoa6XZ7k2+jfP2jQCgq4+q PkawhkwTCBmDr9tpkPv5fsE= =O3+i -----END PGP SIGNATURE----- --Kj7319i9nmIyA2yE-- From owner-freebsd-ports@FreeBSD.ORG Sat May 8 17:32:39 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8395A16A4CE for ; Sat, 8 May 2004 17:32:39 -0700 (PDT) Received: from homeserver.ourplace.acc.hu (catv-5062db7d.catv.broadband.hu [80.98.219.125]) by mx1.FreeBSD.org (Postfix) with ESMTP id E6E4443D3F for ; Sat, 8 May 2004 17:32:35 -0700 (PDT) (envelope-from gabriel@acc.hu) Received: from INFINITY (infinity.ourplace.acc.hu [10.0.0.10]) i490U9Sw086613; Sun, 9 May 2004 02:30:13 +0200 (CEST) (envelope-from gabriel@acc.hu) Message-Id: <200405090030.i490U9Sw086613@homeserver.ourplace.acc.hu> From: "Gabriel Androczky" To: Date: Sun, 9 May 2004 02:32:28 +0200 MIME-Version: 1.0 X-Mailer: Microsoft Office Outlook, Build 11.0.5510 Thread-Index: AcQ1XRtRyOxFS56RTUmp6oHJOscylQ== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.1 cc: ports@FreeBSD.org Subject: FreeBSD Port: daapd-0.2.1d_1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 May 2004 00:32:39 -0000 Hi! I'd just like to ask when the new port of daapd supporting iTunes 4.5 will be available?? The current version available in the FreeBSD ports directory is 0.2.1d_1 but there is a newer release at the developer's site but no package for FreeBSD yet. Thank you for your time! Regards, Gabriel From owner-freebsd-ports@FreeBSD.ORG Sat May 8 19:36:51 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2658516A4CE for ; Sat, 8 May 2004 19:36:51 -0700 (PDT) Received: from smtp0.server.rpi.edu (smtp0.server.rpi.edu [128.113.53.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E7E943D4C for ; Sat, 8 May 2004 19:36:50 -0700 (PDT) (envelope-from drosih@rpi.edu) Received: from [128.113.24.47] (gilead.netel.rpi.edu [128.113.24.47]) by smtp0.server.rpi.edu (8.12.8/8.12.8) with ESMTP id i492amEd027611; Sat, 8 May 2004 22:36:49 -0400 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: In-Reply-To: <20040508134709.GA35555@xor.obsecurity.org> References: <20040508134709.GA35555@xor.obsecurity.org> Date: Sat, 8 May 2004 22:36:47 -0400 To: Kris Kennaway From: Garance A Drosihn Content-Type: text/plain; charset="us-ascii" ; format="flowed" X-Scanned-By: CanIt (www . canit . ca) cc: ports@freebsd.org Subject: Re: Make index || portsdb -uU fails after cvsup X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 May 2004 02:36:51 -0000 Hmm. Well, I am baffled here. This week I tried to do a `make index' for the first time in awhile, and it failed for me on both a 4.x and 5.x system. I do not understand why no one else seems to be seeing this. The error I see is: (10) make index Generating INDEX - please wait..make: don't know how to make _accessibility.describe. Stop *** Error code 2 make: don't know how to make _arabic.describe. Stop *** Error code 2 2 errors Now that I've made it to the weekend and no one else has reported this, I started to look into it. From what I can see, it seems to me that update v1.53 should break `make index' for everyone, the same way it's broken for me. And yet, that change was commited over a month ago. I can not believe I'm the first person to do a make index in over a month! I'll also admit that I do not quite understand what that section of the makefile is doing, but I changed it to something which seemed more understandable to me, and `make index' now seems to be working for me. The quick change I made was: --- bsd.port.subdir.mk.orig Fri Apr 2 02:25:23 2004 +++ bsd.port.subdir.mk Sat May 8 21:39:42 2004 @@ -209,7 +209,9 @@ .for i in ${SUBDIR} describe.$i: - @${MAKE} -B ${i:S/^/_/:S/$/.describe/} > ${INDEX_TMPDIR}/${INDEXFILE}.desc.${i} + @cd ${.CURDIR}/${i}; \ + echo "`date +%T` in `pwd`" ; \ + ${MAKE} -B describe > ${INDEX_TMPDIR}/${INDEXFILE}.desc.${i} .endfor .else describe: ${SUBDIR:S/^/_/:S/$/.describe/} (apologies if my email client mangles that...) Comparing the BUILDING_INDEX version of the "describe" target to the plain one, I could not see why one had to `cd' into each ports-subdirectory, and the other one didn't, so I added that. I also added the `echo' statement just for debugging purposes. So, which episode of Twilight Zone am I on that this only seem to be effecting me? -- Garance Alistair Drosehn = gad@gilead.netel.rpi.edu Senior Systems Programmer or gad@freebsd.org Rensselaer Polytechnic Institute or drosih@rpi.edu From owner-freebsd-ports@FreeBSD.ORG Sat May 8 20:13:14 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B86A16A4CE; Sat, 8 May 2004 20:13:14 -0700 (PDT) Received: from auk2.snu.ac.kr (auk2.snu.ac.kr [147.46.100.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F9FC43D46; Sat, 8 May 2004 20:13:13 -0700 (PDT) (envelope-from lahaye@snu.ac.kr) Received: from [147.46.44.181] (lahaye@snu.ac.kr) by auk2.snu.ac.kr (Terrace Internet Messaging Server) with ESMTP id 2004050912:00:02:771265.28674.2857368496 for ; Sun, 09 May 2004 12:00:02 +0900 (KST) Message-ID: <409DA1C8.7040108@snu.ac.kr> Date: Sun, 09 May 2004 12:13:12 +0900 From: Rob Lahaye User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.6) Gecko/20040507 X-Accept-Language: en-us, en MIME-Version: 1.0 To: oliver@FreeBSD.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-TERRACE-SPAMMARK: NO (SR:8.80) (by Terrace) cc: ports@FreeBSD.org Subject: FreeBSD Port: gtk-xfce-engine-2.1.9_2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 May 2004 03:13:14 -0000 # make ===> Vulnerability check disabled ===> Extracting for gtk-xfce-engine-2.1.9_2 >> Checksum mismatch for gtk-xfce-engine-2.1.9.tar.gz. ===> Refetch for 1 more times files: gtk-xfce-engine-2.1.9.tar.gz ===> Vulnerability check disabled >> gtk-xfce-engine-2.1.9.tar.gz doesn't seem to exist in /usr/ports/distfiles/. >> Attempting to fetch from ftp://ftp.berlios.de/pub/xfce-goodies/4.0.5/. fetch: ftp://ftp.berlios.de/pub/xfce-goodies/4.0.5/gtk-xfce-engine-2.1.9.tar.gz: Unknown FTP error >> Attempting to fetch from http://hannelore.f1.fhtw-berlin.de/mirrors/xfce4/xfce-4.0.5/src/. fetch: http://hannelore.f1.fhtw-berlin.de/mirrors/xfce4/xfce-4.0.5/src/gtk-xfce-engine-2.1.9.tar.gz: Requested Range Not Satisfiable >> Attempting to fetch from ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/. fetch: gtk-xfce-engine-2.1.9.tar.gz: local modification time does not match remote >> Couldn't fetch it - please try to retrieve this >> port manually into /usr/ports/distfiles/ and try again. *** Error code 1 Stop in /usr/ports/x11-toolkits/gtk-xfce-engine. *** Error code 1 Stop in /usr/ports/x11-toolkits/gtk-xfce-engine. From owner-freebsd-ports@FreeBSD.ORG Sat May 8 20:24:29 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 84E3116A4CF; Sat, 8 May 2004 20:24:29 -0700 (PDT) Received: from smtp.owt.com (smtp.owt.com [204.118.6.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DB5D43D2D; Sat, 8 May 2004 20:24:28 -0700 (PDT) (envelope-from kstewart@owt.com) Received: from [207.41.94.233] (owt-207-41-94-233.owt.com [207.41.94.233]) by smtp.owt.com (8.12.8/8.12.8) with ESMTP id i493ONEX030875; Sat, 8 May 2004 20:24:24 -0700 From: Kent Stewart To: freebsd-ports@freebsd.org Date: Sat, 8 May 2004 20:24:25 -0700 User-Agent: KMail/1.6.2 References: <20040508134709.GA35555@xor.obsecurity.org> In-Reply-To: MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200405082024.26051.kstewart@owt.com> cc: ports@freebsd.org cc: Garance A Drosihn cc: Kris Kennaway Subject: Re: Make index || portsdb -uU fails after cvsup X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 May 2004 03:24:29 -0000 On Saturday 08 May 2004 07:36 pm, Garance A Drosihn wrote: > Hmm. Well, I am baffled here. > > This week I tried to do a `make index' for the first time in > awhile, and it failed for me on both a 4.x and 5.x system. I > do not understand why no one else seems to be seeing this. The > error I see is: > > (10) make index > Generating INDEX - please wait..make: don't know how to make > _accessibility.describe. Stop > *** Error code 2 > make: don't know how to make _arabic.describe. Stop > *** Error code 2 > 2 errors > > Now that I've made it to the weekend and no one else has reported > this, I started to look into it. From what I can see, it seems to > me that update v1.53 should break `make index' for everyone, the > same way it's broken for me. And yet, that change was commited over > a month ago. I can not believe I'm the first person to do a make > index in over a month! > Just as a test, I tried doing a "make describe" from /usr/ports/arabic and had no problem. I did a rm -rf * and cvsup'ed and had no problem doing the make describe. So, the first questions that come to mind are did you cvsup ports-all and do you have any refuses. Kent > I'll also admit that I do not quite understand what that section > of the makefile is doing, but I changed it to something which > seemed more understandable to me, and `make index' now seems to > be working for me. > > The quick change I made was: > > --- bsd.port.subdir.mk.orig Fri Apr 2 02:25:23 2004 > +++ bsd.port.subdir.mk Sat May 8 21:39:42 2004 > @@ -209,7 +209,9 @@ > > .for i in ${SUBDIR} > describe.$i: > - @${MAKE} -B ${i:S/^/_/:S/$/.describe/} > > ${INDEX_TMPDIR}/${INDEXFILE}.desc.${i} > + @cd ${.CURDIR}/${i}; \ > + echo "`date +%T` in `pwd`" ; \ > + ${MAKE} -B describe > ${INDEX_TMPDIR}/${INDEXFILE}.desc.${i} > .endfor > .else > describe: ${SUBDIR:S/^/_/:S/$/.describe/} > > (apologies if my email client mangles that...) > Comparing the BUILDING_INDEX version of the "describe" target to > the plain one, I could not see why one had to `cd' into each > ports-subdirectory, and the other one didn't, so I added that. > I also added the `echo' statement just for debugging purposes. > > So, which episode of Twilight Zone am I on that this only seem > to be effecting me? -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html From owner-freebsd-ports@FreeBSD.ORG Sat May 8 20:24:29 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 84E3116A4CF; Sat, 8 May 2004 20:24:29 -0700 (PDT) Received: from smtp.owt.com (smtp.owt.com [204.118.6.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DB5D43D2D; Sat, 8 May 2004 20:24:28 -0700 (PDT) (envelope-from kstewart@owt.com) Received: from [207.41.94.233] (owt-207-41-94-233.owt.com [207.41.94.233]) by smtp.owt.com (8.12.8/8.12.8) with ESMTP id i493ONEX030875; Sat, 8 May 2004 20:24:24 -0700 From: Kent Stewart To: freebsd-ports@freebsd.org Date: Sat, 8 May 2004 20:24:25 -0700 User-Agent: KMail/1.6.2 References: <20040508134709.GA35555@xor.obsecurity.org> In-Reply-To: MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200405082024.26051.kstewart@owt.com> cc: ports@freebsd.org cc: Garance A Drosihn cc: Kris Kennaway Subject: Re: Make index || portsdb -uU fails after cvsup X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 May 2004 03:24:29 -0000 On Saturday 08 May 2004 07:36 pm, Garance A Drosihn wrote: > Hmm. Well, I am baffled here. > > This week I tried to do a `make index' for the first time in > awhile, and it failed for me on both a 4.x and 5.x system. I > do not understand why no one else seems to be seeing this. The > error I see is: > > (10) make index > Generating INDEX - please wait..make: don't know how to make > _accessibility.describe. Stop > *** Error code 2 > make: don't know how to make _arabic.describe. Stop > *** Error code 2 > 2 errors > > Now that I've made it to the weekend and no one else has reported > this, I started to look into it. From what I can see, it seems to > me that update v1.53 should break `make index' for everyone, the > same way it's broken for me. And yet, that change was commited over > a month ago. I can not believe I'm the first person to do a make > index in over a month! > Just as a test, I tried doing a "make describe" from /usr/ports/arabic and had no problem. I did a rm -rf * and cvsup'ed and had no problem doing the make describe. So, the first questions that come to mind are did you cvsup ports-all and do you have any refuses. Kent > I'll also admit that I do not quite understand what that section > of the makefile is doing, but I changed it to something which > seemed more understandable to me, and `make index' now seems to > be working for me. > > The quick change I made was: > > --- bsd.port.subdir.mk.orig Fri Apr 2 02:25:23 2004 > +++ bsd.port.subdir.mk Sat May 8 21:39:42 2004 > @@ -209,7 +209,9 @@ > > .for i in ${SUBDIR} > describe.$i: > - @${MAKE} -B ${i:S/^/_/:S/$/.describe/} > > ${INDEX_TMPDIR}/${INDEXFILE}.desc.${i} > + @cd ${.CURDIR}/${i}; \ > + echo "`date +%T` in `pwd`" ; \ > + ${MAKE} -B describe > ${INDEX_TMPDIR}/${INDEXFILE}.desc.${i} > .endfor > .else > describe: ${SUBDIR:S/^/_/:S/$/.describe/} > > (apologies if my email client mangles that...) > Comparing the BUILDING_INDEX version of the "describe" target to > the plain one, I could not see why one had to `cd' into each > ports-subdirectory, and the other one didn't, so I added that. > I also added the `echo' statement just for debugging purposes. > > So, which episode of Twilight Zone am I on that this only seem > to be effecting me? -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html From owner-freebsd-ports@FreeBSD.ORG Sat May 8 20:24:50 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BDA9316A4CE for ; Sat, 8 May 2004 20:24:50 -0700 (PDT) Received: from mproxy.gmail.com (mproxy.gmail.com [216.239.56.243]) by mx1.FreeBSD.org (Postfix) with SMTP id 92EBA43D31 for ; Sat, 8 May 2004 20:24:49 -0700 (PDT) (envelope-from vadimk@gmail.com) Received: by mproxy.gmail.com with SMTP id x17so26396cwb for ; Sat, 08 May 2004 20:24:46 -0700 (PDT) Received: by 10.11.98.44 with SMTP id v44mr66582cwb; Sat, 08 May 2004 20:24:46 -0700 (PDT) Message-ID: <4f30c27f040508202421664e26@mail.gmail.com> Date: Sat, 8 May 2004 20:24:46 -0700 From: Vadim Kurland To: Jonathan In-Reply-To: <1084049192.422.63.camel@mobile.silbsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <1084049192.422.63.camel@mobile.silbsd.org> cc: FreeBSD ports Subject: Re: fixing fwbuilder port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 May 2004 03:24:51 -0000 I am the author of Firewall Builder and port maintainer (currently). Unfortunately I do not know how to solve this problem. I hope gurus on this list provide an advice. One thing though. The code that depends on openssl is in fact in security/libfwbuilder. I have "crypto.3:${PORTSDIR}/security/openssl" listed in LIB_DEPENDS there. Did it compile for you ? This dependency is on openssl from ports, so I would expect build of that port to fail also. --vk On Sat, 08 May 2004 15:46:33 -0500, Jonathan wrote: > > FreeBSD 5.2-CURRENT #0: Thu Apr 29 23:05:11 > Port: fwbuilder-1.1.2_2 (/usr/ports/security/fwbuilder) > Compiled with: gcc version 3.3.3 [FreeBSD] 20031106 > > I installed fwbuilder (a GUI firewall configuration tool) and when I > went to make a package I got this error: > > pkg_add: could not find package openssl-0.9.7 ! > > I looked at the dependencies and saw that it did need openssl-0.9.7 and > that openssl-0.9.7 had not been installed (the userland openssl is > installed): > > Port: fwbuilder-1.1.2_2 > Path: /usr/ports/security/fwbuilder > Info: Firewall Builder GUI and policy compilers > Maint: vadim@fwbuilder.org > Index: security > B-deps: XFree86-libraries-4.3.0_7 expat-1.95.7 fontconfig-2.2.2,1 > freetype2-2.1.7_3 gdk-pixbuf-0.22.0_1 ge > ttext-0.13.1_1 glib-1.2.10_10 gmake-3.80_2 gtk-1.2.10_12 gtkmm-1.2.8_2 > imake-4.3.0_2 jpeg-6b_2 libfwbuilder-1.0.2_3 libiconv-1.9.1_3 > libsigc++-1.0.4 libtool-1.3.5_2 libxml2-2.6.9 libxslt-1.1.6 > net-snmp-5.1.1_3 op > enssl-0.9.7d pkgconfig-0.15.0_1 png-1.2.5_4 python-2.3.3_5 rc_subr-1.16 > tiff-3.6.1_1 > > R-deps: XFree86-libraries-4.3.0_7 expat-1.95.7 fontconfig-2.2.2,1 > freetype2-2.1.7_3 gdk-pixbuf-0.22.0_1 ge > ttext-0.13.1_1 glib-1.2.10_10 gtk-1.2.10_12 gtkmm-1.2.8_2 imake-4.3.0_2 > jpeg-6b_2 libfwbuilder-1.0.2_3 lib > iconv-1.9.1_3 libsigc++-1.0.4 libxml2-2.6.9 libxslt-1.1.6 > net-snmp-5.1.1_3 openssl-0.9.7d pkgconfig-0.15.0 > _1 png-1.2.5_4 python-2.3.3_5 rc_subr-1.16 tiff-3.6.1_1 > > I went and modified my Makefile like so: > > --- Makefile.fwbuilder.original Sat May 8 14:11:34 2004 > +++ Makefile.fwbuilder.new Sat May 8 14:19:22 2004 > @@ -15,6 +15,10 @@ > MAINTAINER= vadim@fwbuilder.org > COMMENT= Firewall Builder GUI and policy compilers > > +BUILD_DEPENDS= openssl:${PORTSDIR}/security/openssl > + > +RUN_DEPENDS= openssl:${PORTSDIR}/security/openssl > + > LIB_DEPENDS= gtkmm.2:${PORTSDIR}/x11-toolkits/gtk-- \ > gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf \ > fwbuilder.5:${PORTSDIR}/security/libfwbuilder > > and recompiled. It still gave the same error. Sure enough openssl, from > ports, was not installed despite including the run and build depends. I > did see that and openssl was installed by default, as part of the > userland. > So I went to the Firewall Builder site, http://www.fwbuilder.org/, and > saw that I might need to add --with-openssl-prefix=PREFIX - (specify > prefix directory where openssl library is installed). The problem is > that the openssl pkg-plist lists these entries for libssl: > > > lib/libssl.a > %%SHARED%%lib/libssl.so > %%SHARED%%lib/libssl.so.%%SHLIBVER%% > > > Question 1) do I need to specify > CONFIGURE_ARGS+= --with-openssl-prefix=${LOCALBASE}/lib > > if so will it know whether to select the static (libssl.a) or the shared > ( libssl.so ) library. Or should I just include it in the LIB_PEPENDS ? > > Question 2) Should I install the openssl port when the base system > already includes it? Openssl is in the base system but it's not being > detected by fwbuilder. > > Question 3) What are the %%SHARED%% for? I looked in > /usr/ports/Mk/bsd.ports.mk and could not find an entry. > > I am quite new to porting and just wanted to fix this. > -- > Kind regards, > Jonathan > > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" > From owner-freebsd-ports@FreeBSD.ORG Sat May 8 20:43:16 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B1BE216A4CF for ; Sat, 8 May 2004 20:43:16 -0700 (PDT) Received: from mta7.pltn13.pbi.net (mta7.pltn13.pbi.net [64.164.98.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D41543D69 for ; Sat, 8 May 2004 20:43:16 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (87a61cf121953126e1b4baff92130014@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128])i493hFNk021038; Sat, 8 May 2004 20:43:15 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id A668F52F41; Sat, 8 May 2004 19:42:26 -0700 (PDT) Date: Sat, 8 May 2004 19:42:26 -0700 From: Kris Kennaway To: Garance A Drosihn Message-ID: <20040509024226.GA79746@xor.obsecurity.org> References: <20040508134709.GA35555@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="cWoXeonUoKmBZSoM" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i cc: ports@freebsd.org cc: Kris Kennaway Subject: Re: Make index || portsdb -uU fails after cvsup X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 May 2004 03:43:16 -0000 --cWoXeonUoKmBZSoM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, May 08, 2004 at 10:36:47PM -0400, Garance A Drosihn wrote: > Hmm. Well, I am baffled here. >=20 > This week I tried to do a `make index' for the first time in > awhile, and it failed for me on both a 4.x and 5.x system. I > do not understand why no one else seems to be seeing this. The > error I see is: Do you have WRKDIRPREFIX set? This is known to fail. Kris --cWoXeonUoKmBZSoM Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAnZqSWry0BWjoQKURAjp6AKC9zhm005/D4Hz1utUVJXhMYlb4vwCfRvHp ks/zdg7pAdWptH8Lp5wMdmc= =sifb -----END PGP SIGNATURE----- --cWoXeonUoKmBZSoM-- From owner-freebsd-ports@FreeBSD.ORG Sat May 8 21:10:07 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A13C16A4CE for ; Sat, 8 May 2004 21:10:07 -0700 (PDT) Received: from out006.verizon.net (out006pub.verizon.net [206.46.170.106]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85E4F43D31 for ; Sat, 8 May 2004 21:10:06 -0700 (PDT) (envelope-from cswiger@mac.com) Received: from mac.com ([68.161.84.3]) by out006.verizon.net (InterMail vM.5.01.06.06 201-253-122-130-106-20030910) with ESMTP id <20040509041005.NTDI23663.out006.verizon.net@mac.com>; Sat, 8 May 2004 23:10:05 -0500 Message-ID: <409DAF0B.20703@mac.com> Date: Sun, 09 May 2004 00:09:47 -0400 From: Chuck Swiger Organization: The Courts of Chaos User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7b) Gecko/20040421 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Vadim Kurland References: <1084049192.422.63.camel@mobile.silbsd.org> <4f30c27f040508202421664e26@mail.gmail.com> In-Reply-To: <4f30c27f040508202421664e26@mail.gmail.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Authentication-Info: Submitted using SMTP AUTH at out006.verizon.net from [68.161.84.3] at Sat, 8 May 2004 23:10:05 -0500 cc: FreeBSD ports cc: Jonathan Subject: Re: fixing fwbuilder port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 May 2004 04:10:07 -0000 Vadim Kurland wrote: > One thing though. The code that depends on openssl is in fact in > security/libfwbuilder. I have "crypto.3:${PORTSDIR}/security/openssl" > listed in LIB_DEPENDS there. Did it compile for you ? This dependency > is on openssl from ports, so I would expect build of that port to fail > also. Consider something like: --- Makefile~ Thu Mar 18 16:32:45 2004 +++ Makefile Sun May 9 00:05:28 2004 @@ -17,10 +17,9 @@ LIB_DEPENDS= xml2.5:${PORTSDIR}/textproc/libxml2 \ xslt.2:${PORTSDIR}/textproc/libxslt \ netsnmp.6:${PORTSDIR}/net-mgmt/net-snmp \ - crypto.3:${PORTSDIR}/security/openssl USE_GNOME= glib12 - +USE_OPENSSL= yes USE_GMAKE= yes USE_LIBTOOL_VER=13 GNU_CONFIGURE= yes -- -Chuck From owner-freebsd-ports@FreeBSD.ORG Sat May 8 21:12:42 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 423CE16A4CE for ; Sat, 8 May 2004 21:12:42 -0700 (PDT) Received: from grouse.mail.pas.earthlink.net (grouse.mail.pas.earthlink.net [207.217.120.116]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C35843D5A for ; Sat, 8 May 2004 21:12:42 -0700 (PDT) (envelope-from mike@inbox.lv) Received: from pool0351.cvx26-bradley.dialup.earthlink.net ([209.179.223.96] helo=ringworm.mojavegreen.com) by grouse.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 1BMfg9-0000fA-00 for freebsd-ports@freebsd.org; Sat, 08 May 2004 21:12:41 -0700 Received: by ringworm.mojavegreen.com (Postfix, from userid 1000) id A58EF8541; Sat, 8 May 2004 21:02:15 -0700 (PDT) From: "Michael C. Shultz" Organization: Mojave Green Software co. To: freebsd-ports@freebsd.org Date: Sat, 8 May 2004 21:02:12 -0700 User-Agent: KMail/1.6.2 References: <20040508134709.GA35555@xor.obsecurity.org> In-Reply-To: MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200405082102.12734.ringworm@inbox.lv> Subject: Re: Make index || portsdb -uU fails after cvsup X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 May 2004 04:12:42 -0000 On Saturday 08 May 2004 07:36 pm, Garance A Drosihn wrote: > Hmm. Well, I am baffled here. > > This week I tried to do a `make index' for the first time in > awhile, and it failed for me on both a 4.x and 5.x system. I > do not understand why no one else seems to be seeing this. The > error I see is: > > (10) make index > Generating INDEX - please wait..make: don't know how to make > _accessibility.describe. Stop > *** Error code 2 > make: don't know how to make _arabic.describe. Stop > *** Error code 2 > 2 errors > The accessibility dir is fairly new, and the arabic also near the beginning, hmmm, are you sure all you are not missing any port directories? -mike From owner-freebsd-ports@FreeBSD.ORG Sat May 8 21:12:42 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA3EC16A4CE for ; Sat, 8 May 2004 21:12:42 -0700 (PDT) Received: from albatross.mail.pas.earthlink.net (albatross.mail.pas.earthlink.net [207.217.120.120]) by mx1.FreeBSD.org (Postfix) with ESMTP id 742AE43D1D for ; Sat, 8 May 2004 21:12:42 -0700 (PDT) (envelope-from mike@inbox.lv) Received: from pool0351.cvx26-bradley.dialup.earthlink.net ([209.179.223.96] helo=ringworm.mojavegreen.com) by albatross.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 1BMfg9-0000vG-00 for freebsd-ports@freebsd.org; Sat, 08 May 2004 21:12:42 -0700 Received: by ringworm.mojavegreen.com (Postfix, from userid 1000) id B533C8542; Sat, 8 May 2004 21:05:27 -0700 (PDT) From: "Michael C. Shultz" Organization: Mojave Green Software co. To: freebsd-ports@freebsd.org Date: Sat, 8 May 2004 21:05:26 -0700 User-Agent: KMail/1.6.2 References: <409DA1C8.7040108@snu.ac.kr> In-Reply-To: <409DA1C8.7040108@snu.ac.kr> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200405082105.26171.ringworm@inbox.lv> Subject: Re: FreeBSD Port: gtk-xfce-engine-2.1.9_2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 May 2004 04:12:43 -0000 On Saturday 08 May 2004 08:13 pm, Rob Lahaye wrote: > # make > ===> Vulnerability check disabled > ===> Extracting for gtk-xfce-engine-2.1.9_2 > > >> Checksum mismatch for gtk-xfce-engine-2.1.9.tar.gz. > > ===> Refetch for 1 more times files: gtk-xfce-engine-2.1.9.tar.gz > ===> Vulnerability check disabled > > >> gtk-xfce-engine-2.1.9.tar.gz doesn't seem to exist in > >> /usr/ports/distfiles/. Attempting to fetch from > >> ftp://ftp.berlios.de/pub/xfce-goodies/4.0.5/. > > fetch: > ftp://ftp.berlios.de/pub/xfce-goodies/4.0.5/gtk-xfce-engine-2.1.9.tar.gz: > Unknown FTP error > > >> Attempting to fetch from > >> http://hannelore.f1.fhtw-berlin.de/mirrors/xfce4/xfce-4.0.5/src/. > > fetch: > http://hannelore.f1.fhtw-berlin.de/mirrors/xfce4/xfce-4.0.5/src/gtk-xfce-en >gine-2.1.9.tar.gz: Requested Range Not Satisfiable > > >> Attempting to fetch from > >> ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/. > > fetch: gtk-xfce-engine-2.1.9.tar.gz: local modification time does not match > remote > > >> Couldn't fetch it - please try to retrieve this > >> port manually into /usr/ports/distfiles/ and try again. > > *** Error code 1 > > Stop in /usr/ports/x11-toolkits/gtk-xfce-engine. > *** Error code 1 > > Stop in /usr/ports/x11-toolkits/gtk-xfce-engine. > > > > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" Go into /usr/ports/distfiles and delete the portion of gtk-xfce-engine-2.1.9.tar.gz that you managed to download, then try again. -Mike From owner-freebsd-ports@FreeBSD.ORG Sat May 8 23:07:36 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E08616A4CE for ; Sat, 8 May 2004 23:07:36 -0700 (PDT) Received: from jchurch.neville-neil.com (jchurch.neville-neil.com [209.157.133.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1D1B43D39 for ; Sat, 8 May 2004 23:07:33 -0700 (PDT) (envelope-from gnn@neville-neil.com) Received: from jchurch.neville-neil.com.neville-neil.com (localhost.neville-neil.com [127.0.0.1])i4969SRb030211 for ; Sat, 8 May 2004 23:09:28 -0700 (PDT) (envelope-from gnn@neville-neil.com) Date: Sat, 08 May 2004 23:09:27 -0700 Message-ID: <877jvmrv1k.wl@jchurch.neville-neil.com.neville-neil.com> From: "George V. Neville-Neil" To: freebsd-ports@freebsd.org User-Agent: Wanderlust/2.10.1 (Watching The Wheels) SEMI/1.14.5 (Awara-Onsen) FLIM/1.14.5 (Demachiyanagi) APEL/10.6 Emacs/21.3 (i386--freebsd) MULE/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.5 - "Awara-Onsen") Content-Type: text/plain; charset=US-ASCII Subject: Modula 3? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 May 2004 06:07:36 -0000 Hi, The PM3 port is maked broken. Is anyone working on getting anything but ezm3 working? Thanks, George