Postfix 2.5.2

2008-05-21 Thread Jack Raats
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

When will postif 2.5.2 be ported or are there any problems?
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.7 (MingW32) - GPGrelay v0.959

iD8DBQFIM+Z3Ph5RwW/NzC4RAnrnAKCPybK+9OLNdDmLSGQwHtq1ar6FMQCfYUYF
zyaMiBB30TUPBl/KAOhuk38=
=blWq
-END PGP SIGNATURE-
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Error message when running 'portsdb -Uu'

2008-05-21 Thread Scot Hetzel
On 5/21/08, Gerard [EMAIL PROTECTED] wrote:
 I usually run 'portsdb -Uu' prior to updating my ports. Usually, some
  sort of error or warning message is displayed. Not a fatal one, just
  more of a warning. This is the one produced last night.

:
  /usr/ports/print/ghostscript-gpl-nox11/../ghostscript-gpl/Makefile,
  line 132: warning: drivers incompatible with WITHOUT_X11 will be
  removed automatically Warning: Duplicate INDEX entry:
  ghostscript-gpl-8.62_2

The warning about WITHOUT_X11 can be ignored.

The reason for the Duplicate INDEX entry is that both ports
print/ghostscript-gpl and print/ghostscript-gpl-nox11 have the same
pkg name:

$ pwd
/usr/ports/print/ghostscript-gpl
$ make -V PKGNAME
ghostscript-gpl-8.62_2
$ cd ../ghostscript-gpl-nox11
$ make -V PKGNAME
/usr/ports/print/ghostscript-gpl-nox11/../ghostscript-gpl/Makefile,
line 132: warning: drivers incompatible with WITHOUT_X11 will be
removed automatically
ghostscript-gpl-8.62_2

The cause of PKGNAMESUFFIX not adding -nox11 for
print/ghostscript-gpl-nox11 is due to both ports are using the same
OPTIONSFILE, and the OPTIONSFILE has at least one of these defined:

 WITH_GS_x11
 WITH_GS_x11alpha
 WITH_GS_x11cmyk
 WITH_GS_x11cmyk2
 WITH_GS_x11cmyk4
 WITH_GS_x11cmyk8
 WITH_GS_x11gray2
 WITH_GS_x11gray4
 WITH_GS_x11mono
 WITH_GS_x11rg16x
 WITH_GS_x11rg32x

hp010# pwd
/usr/ports/print/ghostscript-gpl-nox11
hp010# make -V OPTIONSFILE
/var/db/ports/ghostscript/options

The attached patch fixes the WITHOUT_X11 case and has been sent as PR 123859:

http://www.freebsd.org/cgi/query-pr.cgi?pr=123859

Scot
Index: Makefile
===
RCS file: /home/ncvs/ports/print/ghostscript-gpl/Makefile,v
retrieving revision 1.167
diff -u -r1.167 Makefile
--- Makefile	8 May 2008 18:54:22 -	1.167
+++ Makefile	21 May 2008 12:32:07 -
@@ -117,7 +117,8 @@
 . endif
 .endif
 
-.if defined(WITH_GS_x11) \
+.if defined(WITHOUT_X11)
+. if defined(WITH_GS_x11) \
 	|| defined(WITH_GS_x11alpha) \
 	|| defined(WITH_GS_x11cmyk) \
 	|| defined(WITH_GS_x11cmyk2) \
@@ -128,7 +129,6 @@
 	|| defined(WITH_GS_x11mono) \
 	|| defined(WITH_GS_x11rg16x) \
 	|| defined(WITH_GS_x11rg32x)
-. if defined(WITHOUT_X11)
 . warning drivers incompatible with WITHOUT_X11 will be removed automatically
 . undef WITH_GS_x11
 . undef WITH_GS_x11alpha
@@ -142,13 +142,27 @@
 . undef WITH_GS_x11rg16x
 . undef WITH_GS_x11rg32x
 . endif
+PKGNAMESUFFIX:= ${PKGNAMESUFFIX}-nox11
+CONFIGURE_ARGS+=--without-x
+.else
+. if defined(WITH_GS_x11) \
+	|| defined(WITH_GS_x11alpha) \
+	|| defined(WITH_GS_x11cmyk) \
+	|| defined(WITH_GS_x11cmyk2) \
+	|| defined(WITH_GS_x11cmyk4) \
+	|| defined(WITH_GS_x11cmyk8) \
+	|| defined(WITH_GS_x11gray2) \
+	|| defined(WITH_GS_x11gray4) \
+	|| defined(WITH_GS_x11mono) \
+	|| defined(WITH_GS_x11rg16x) \
+	|| defined(WITH_GS_x11rg32x)
 USE_XORG=	xt xext
 CONFIGURE_ARGS+=--with-x \
 		--x-includes=${X11BASE}/include \
 		--x-libraries=${X11BASE}/lib
-.else
-PKGNAMESUFFIX:=	${PKGNAMESUFFIX}-nox11
+. else
 CONFIGURE_ARGS+=--without-x
+. endif
 .endif
 
 .if defined(WITH_GS_oprp) \
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]

FreeBSD ports which are currently marked broken

2008-05-21 Thread linimon
As part of an ongoing effort to reduce the number of problems in
the FreeBSD ports system, we periodically notify users of ports
that are marked as broken in their Makefiles.  In many cases
these ports are failing to compile on some subset of the FreeBSD
build environments.  The most common problem is that recent versions
of -CURRENT include gcc4.2, which is much stricter than older versions.
The next most common problem is that compiles succeed on the i386
architecture (e.g. the common Intel PC), but fail on one or more
of the other architectures due to assumptions about things such as
size of various types, byte-alignment issues, and so forth.

In occasional cases we see that the same port may have different
errors in different build environments.  The script that runs on the
build cluster uses heuristics to try to 'guess' the error type to
help you isolate problems, but it is only a rough guide.

One more note: on occasion, there are transient build errors seen
on the build farm.  Unfortunately, there is not yet any way for this
algorithm to tell the difference (humans are much, much better at
this kind of thing.)

The errors are listed below.  In the case where the same problem
exists on more than one build environment, the URL points to the
latest errorlog for that type.  (By 'build environment' here we
mean 'combination of 5.x/6.x/-current with target architecture'.)

(Note: the dates are included to help you to gauge whether or not
the error still applies to the latest version.  The program
that generates this report is not yet able to determine this
automatically.)

portname:   audio/Maaate
/home/linimon/portsbuild errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=audioportname=Maaate


portname:   audio/dream
/home/linimon/portsbuild errors:
http://pointyhat.FreeBSD.org/errorlogs/sparc64-errorlogs/e.7.2008022407/dream-1.6.25_1.log
 (Feb 25 08:38:18 UTC 2008)
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=audioportname=dream


portname:   audio/gogo
/home/linimon/portsbuild errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=audioportname=gogo


portname:   audio/gstreamer-plugins-spc
/home/linimon/portsbuild errors:
http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.6.2008050122/gstreamer-plugins-spc-0.10.7_2,3.log
 (nbsp;)
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=audioportname=gstreamer-plugins-spc


portname:   audio/raop_play
/home/linimon/portsbuild errors:
http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.6.2008050122/raop_play-0.5.1_1.log
 (nbsp;)
http://pointyhat.FreeBSD.org/errorlogs/sparc64-errorlogs/e.5.2006121119/raop_play-0.5.1.log
 (Dec 28 18:20:05 UTC 2006)
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=audioportname=raop_play


portname:   audio/ruby-xmms2-ecore
/home/linimon/portsbuild errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=audioportname=ruby-xmms2-ecore


portname:   audio/shellac
/home/linimon/portsbuild errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=audioportname=shellac


portname:   audio/snett
/home/linimon/portsbuild errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=audioportname=snett


portname:   audio/tse3
/home/linimon/portsbuild errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=audioportname=tse3


portname:   audio/xmms-imms
/home/linimon/portsbuild errors:
http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.6.2008050122/xmms-imms-1.2a_6.log
 (nbsp;)
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=audioportname=xmms-imms


portname:   cad/opencascade
/home/linimon/portsbuild errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=cadportname=opencascade


portname:   cad/oregano
/home/linimon/portsbuild errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=cadportname=oregano


portname:   chinese/iiimf-le-xcin
/home/linimon/portsbuild errors:
http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.5.2008041921/zh-iiimf-le-xcin-0.1.7_5.log
 (nbsp;)
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=chineseportname=iiimf-le-xcin


portname:   chinese/stardict2-dict-zh_TW
/home/linimon/portsbuild errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=chineseportname=stardict2-dict-zh_TW


portname:   comms/hcfmdm
/home/linimon/portsbuild errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=commsportname=hcfmdm


portname:   converters/mimelib
/home/linimon/portsbuild 

FreeBSD unmaintained ports which are currently scheduled for deletion

2008-05-21 Thread linimon
As part of an ongoing effort to reduce the number of problems in
the FreeBSD ports system, we periodically schedule removal of ports
that have been judged to have outlived their usefulness.  Often,
this is due to a better alternative having become available and/or
the cessation of development on the existing port.  In some cases,
ports are marked for removal because they fail to build and install
correctly from their sources, or otherwise fail in operation.

The ports, and the reason and date that they have been scheduled
for removal, are listed below.  If no one has stepped forward before
that time to propose a way to fix the problems (such as via a PR),
the ports will be deleted.



portname:   audio/Maaate
description:MPEG audio analysis toolkit
maintainer: [EMAIL PROTECTED]
status: BROKEN
deprecated because: 
expiration date:2008-07-29
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=audioportname=Maaate


portname:   audio/linux-mbrola
description:MBROLA voice synthesizer
maintainer: [EMAIL PROTECTED]
deprecated because: relies on forbidden port misc/compat3x; last release
2000
expiration date:2007-09-21
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=audioportname=linux-mbrola


portname:   audio/mbrola
description:MBROLA voice synthesizer
maintainer: [EMAIL PROTECTED]
deprecated because: relies on forbidden port misc/compat3x; last release
2000
expiration date:2007-09-21
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=audioportname=mbrola


portname:   devel/p5-Getopt-Mixed
description:Perl module for processing of both short and long
command line options
maintainer: [EMAIL PROTECTED]
deprecated because: Use devel/p5-Getopt-Long instead
expiration date:2007-04-23
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=develportname=p5-Getopt-Mixed


portname:   editors/sam
description:A unix version of Rob Pike's editor for plan9
maintainer: [EMAIL PROTECTED]
deprecated because: distfile and homepage disappeared
expiration date:2007-01-04
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=editorsportname=sam


portname:   emulators/linux-winetools
description:A setup and configuration tool for WINE
maintainer: [EMAIL PROTECTED]
deprecated because: Very old, discontinued, and replaced by
emulators/wine-doors
expiration date:2007-11-14
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=emulatorsportname=linux-winetools


portname:   games/linux-x-plane-net-installer
description:The X-Plane network installer
maintainer: [EMAIL PROTECTED]
status: BROKEN
deprecated because: Unfetchable
expiration date:2007-04-10
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=gamesportname=linux-x-plane-net-installer


portname:   japanese/lynx
description:A terminal-based World-Wide Web Client with multi-byte
modification
maintainer: [EMAIL PROTECTED]
status: BROKEN
deprecated because: Leaves behind config file on deinstall
expiration date:2007-07-01
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=japaneseportname=lynx


portname:   japanese/vje30
description:Modern intelligent Japanese input engine (purchase
version)
maintainer: [EMAIL PROTECTED]
deprecated because: depends on forbidden port misc/compat3x
expiration date:2007-09-21
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=japaneseportname=vje30


portname:   math/umfpack
description:Unsymmetric-pattern MultiFrontal Package
maintainer: [EMAIL PROTECTED]
deprecated because: Outdated subset of math/suitesparse
expiration date:2007-11-30
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=mathportname=umfpack


portname:   net-mgmt/ap-utils
description:A set of utilities to configure and monitor wireless
access points
maintainer: [EMAIL PROTECTED]
status: BROKEN
deprecated because: Does not work with gcc4.2; appears to be abandoned
expiration date:2008-04-07
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=net-mgmtportname=ap-utils


portname:   net-mgmt/nsc
description:Netsaint Console monitor
maintainer: [EMAIL 

FreeBSD unmaintained ports which are currently marked forbidden

2008-05-21 Thread linimon
As part of an ongoing effort to reduce the number of problems in the
FreeBSD ports system, we periodically notify users about
ports that are marked as forbidden in their Makefiles.  Often,
these ports are so marked due to security concerns, such as known
exploits.

An overview of each port, including errors seen on the build farm,
is included below.

portname:   misc/compat3x
forbidden because:  FreeBSD-SA-03:05.xdr, FreeBSD-SA-03:08.realpath  - not
fixed / no lib available
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=miscportname=compat3x
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


FreeBSD ports which are currently marked forbidden

2008-05-21 Thread linimon
As part of an ongoing effort to reduce the number of problems in the
FreeBSD ports system, we periodically notify users about
ports that are marked as forbidden in their Makefiles.  Often,
these ports are so marked due to security concerns, such as known
exploits.

An overview of each port, including errors seen on the build farm,
is included below.

portname:   databases/gnats
forbidden because:  Security issues
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=databasesportname=gnats


portname:   misc/compat3x
forbidden because:  FreeBSD-SA-03:05.xdr, FreeBSD-SA-03:08.realpath  - not
fixed / no lib available
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=miscportname=compat3x


portname:   net-p2p/peercast
forbidden because:  arbitrary code execution,

http://www.vuxml.org/freebsd/402ae710-26a2-11dd-ae05-825f4c35000a.html
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=net-p2pportname=peercast


portname:   www/tdiary-devel
forbidden because:  contains a vulnerability:
http://www.tdiary.org/20071215.html written in
Japanese
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=wwwportname=tdiary-devel


portname:   www/zope
forbidden because:  contains cross-site scripting vulnerability

http://VuXML.FreeBSD.org/34414a1e-e377-11db-b8ab-000c76189c4c.html
build errors:   none.
overview:   
http://portsmon.FreeBSD.org/portoverview.py?category=wwwportname=zope
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


FreeBSD Port: linux-scim-libs-1.4.4

2008-05-21 Thread Joey Mingrone
Hi,

I'm having some trouble installing this port.  Here's the output:

*
[EMAIL PROTECTED]:/usr/ports/textproc/linux-scim-libs# make install clean
===  Vulnerability check disabled, database not found
===  Extracting for linux-scim-libs-1.4.4
= MD5 Checksum OK for rpm/i386/fedora/4/scim-libs-1.4.4-1.fc4.i386.rpm.
= SHA256 Checksum OK for rpm/i386/fedora/4/scim-libs-1.4.4-1.fc4.i386.rpm.
===   linux-scim-libs-1.4.4 depends on file: /usr/local/bin/rpm2cpio - found
===  Patching for linux-scim-libs-1.4.4
===  Configuring for linux-scim-libs-1.4.4
===  Installing for linux-scim-libs-1.4.4
===   linux-scim-libs-1.4.4 depends on file:
/compat/linux/usr/lib/libgtk-x11-2.0.so.0 - found
===   linux-scim-libs-1.4.4 depends on file:
/compat/linux/etc/fedora-release - found
===   Generating temporary packing list
===  Checking if textproc/linux-scim-libs already installed
cd /usr/ports/textproc/linux-scim-libs/work  /usr/bin/find * -type d
-exec /bin/mkdir -p /compat/linux/{} \;
cd /usr/ports/textproc/linux-scim-libs/work  /usr/bin/find * ! -type
d | /usr/bin/cpio -pm -R root:wheel /compat/linux
3802 blocks
/usr/bin/gtk-query-immodules-2.0-32: error while loading shared
libraries: libXrandr.so.2: cannot open shared object file: No such
file or directory
*** Error code 127

Stop in /usr/ports/textproc/linux-scim-libs.
[EMAIL PROTECTED]:/usr/ports/textproc/linux-scim-libs#
*

Also:
 ls -la /compat/linux/usr/X11R6/lib/libXr*
lrwxrwxrwx  1 root  wheel 16 May 16 19:23
/compat/linux/usr/X11R6/lib/libXrandr.so.2 - libXrandr.so.2.0
-rwxr-xr-x  1 root  wheel  10580 May 16 19:23
/compat/linux/usr/X11R6/lib/libXrandr.so.2.0
lrwxrwxrwx  1 root  wheel 19 May 16 19:23
/compat/linux/usr/X11R6/lib/libXrender.so.1 - libXrender.so.1.2.2
-rwxr-xr-x  1 root  wheel  30476 May 16 19:23
/compat/linux/usr/X11R6/lib/libXrender.so.1.2.2

Hopefully I provided all the relevant details, but if not, just let me know.

Thanks for any suggestions you may have,

Joey
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: fxload (ports/misc/ezload for usb firmware loading)

2008-05-21 Thread Steve Franks
On Wed, May 21, 2008 at 5:28 AM, bridd [EMAIL PROTECTED] wrote:
 Hi Steve,

 I saw your thread
 http://lists.freebsd.org/pipermail/freebsd-usb/2008-April/004753.html
 via googling for FreeBSD fxload equivalents.  Did you get any further
 with it?

 I'm wondering, because I've got an m-audio USB midi keyboard, and under
 linux it's possible to use it, using a combo of fxload, the firmware and
 a nice auto-detect script... It'd be great for me if I could get this up
 and running under FreeBSD.

 Anyway, I hope you don't mind the email out of the blue like this, I was
 wondering and figured it was easy enough to just ask :)

 Cheers,

 Dave // bridd



Dave,

FreeBSD has an equivalent program in ports/misc called ezload.  I just
had to add one line to it to recognize the newer hardware and it works
like a charm.  Annoyingly, the installed binary is called ezdownload,
so it took awhile to find the thing after it installed.  Included is
the patch to add the line, tell me if you don't understand patches
(patch file.c  file.patch) - basically just open it and add the line
that starts with + manually to the mentioned file - everyone always
assumes everyone with a *nix box is a super-hacker, and I sure ain't.

I tried pestering the ezdownload maintainer/author (can't remember
which) to add my patch and make a new release, but I never heard back.
 Guess I will have to follow up on that - don't love patching 20
programs every time I bring up a new box, and I haven't heard of old
hardware in several years, making ezload pretty much irrelevant
without the patch - everything uses the fx2 cypress usb devices now.

I'll ask you a question in return - what software  drivers do you use
with the m-audio stuff?  I've got an m-audio UNO USB-MIDI dongle
I've never attempted to plug in - maybe you can point me in the
direction of the apps I need to make it go!

Steve
--- ./ezdownload-0.4.0/ezdownload.c	2004-12-23 16:14:43.0 -0700
+++ ezdownload.c	2008-04-07 13:49:10.0 -0700
@@ -96,7 +96,7 @@
 /* See http://www.anchorchips.com for the
  * EZ-USB Technical Reference Manual (EZUSB_TRM.pdf).
  */
-#define CPUCS 0x7f92
+static unsigned int CPUCS = 0x7f92;
 #define USBSC 0x7fd6
 
 /* This whole reading routine sucks. you could do it in
@@ -340,7 +340,7 @@
 char * progname;
 void usage() 
 {
-	fprintf(stderr, Syntax: %s [-r] [-v] [-f hexfile] device\n, progname);
+	fprintf(stderr, Syntax: %s [-r] [-v] [-2] [-f hexfile] device\n, progname);
 	exit(1);
 }
 
@@ -363,7 +363,7 @@
 	progname = argv[0];
 
 	/* handle the arguments */
-	while((ch = getopt(argc, argv, xrvf:)) != -1) 
+	while((ch = getopt(argc, argv, 2xrvf:)) != -1) 
 		switch (ch) {
 		case 'v':
 			verbose++;
@@ -374,6 +374,9 @@
 		case 'f':
 			hexfile = optarg;
 			break;
+		case '2':
+			CPUCS  = 0xe600;
+			break;
 		case 'x':
 			force = 1;
 			break;
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]

Gnome reference framework bsd.gnome-reference.mk VS [NO]PORTDOCS

2008-05-21 Thread Alexey Shuvaev
Hello list!

I am working on update to x11-toolkits/gtkdatabox2 and it has recently got
an html reference (built using gtk-doc). The gtkdatabox2 is a rather
rarely used port and its reference consists of app. 25 files (for now).
What is better,
- to create separate gtkdatabox-reference port, or
- to intstall documentation from the existing port, under the
  control of NOPORTDOCS variable?

The second question is about bsd.gnome-reference.mk framework discussed
recently[1]. Althoug gtkdatabox is not an official part of gnome,
it uses the same structure and therefore could be handled in the same way
as other official gnome components. Are there any reasons to use one of:
- devel/glib20-reference/bsd.gnome-reference.mk framework
- handling docs on one's own?

Thanks,
Alexey.

1. http://lists.freebsd.org/pipermail/freebsd-ports/2008-May/048645.html
   http://lists.freebsd.org/pipermail/freebsd-ports/2008-May/048647.html
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: ghostscript-gpl vs. ghostscript-gnu

2008-05-21 Thread Andreas Klemm
Hi,

I'm personally fine by this.

But my personal time at the moment doesn't allow me to perform this action.
If somebody could take this over, would be great.

Best regards

Andreas

On Fri, Apr 11, 2008 at 02:14:51PM -0400, Mikhail Teterin wrote:
 Whatever the reasons for having two different GS-ports, the apsfilter insists 
 on the version 7.x (ghostscript-gnu), which, indeed, seems to have a wider 
 selection of drivers:
 
  # ./SETUP 
  Found ghostscript version 8.61 ...
  You have to upgrade at least to gs version 6.50!
  But you should upgrade to gs 7.00 for full driver support
  prior installing printers with SETUP.
  Do you you want to continue? [Y/n] 
 
 Yet, some other port (teTeX?) installed ghostscript-gpl and I'm now forced to 
 replace one with the other to regain the use of printer (Brother-1270, using 
 the hl1250 driver)...
 
 Is it time for USE_GHOSTSCRIPT knob?
 
  -mi






Andreas ///

-- 
Andreas Klemm - Powered by FreeBSD 6
Need a magic printfilter today ? - http://www.apsfilter.org/
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Gnome reference framework bsd.gnome-reference.mk VS [NO]PORTDOCS

2008-05-21 Thread Jeremy Messenger
On Wed, 21 May 2008 11:56:59 -0500, Alexey Shuvaev  
[EMAIL PROTECTED] wrote:



Hello list!

I am working on update to x11-toolkits/gtkdatabox2 and it has recently  
got

an html reference (built using gtk-doc). The gtkdatabox2 is a rather
rarely used port and its reference consists of app. 25 files (for now).
What is better,
- to create separate gtkdatabox-reference port, or
- to intstall documentation from the existing port, under the
  control of NOPORTDOCS variable?


It's up to you. If it was my port, I would have chosen #2 option since  
it's very small and I dislike reference framework. If it's big then I  
possible would choice #1.



The second question is about bsd.gnome-reference.mk framework discussed
recently[1]. Althoug gtkdatabox is not an official part of gnome,
it uses the same structure and therefore could be handled in the same way
as other official gnome components. Are there any reasons to use one  
of:

- devel/glib20-reference/bsd.gnome-reference.mk framework
- handling docs on one's own?


It doesn't has to be only for GNOME. We have glib*-reference,  
cairo-reference and others that aren't part of GNOME.


Cheers,
Mezz


Thanks,
Alexey.

1. http://lists.freebsd.org/pipermail/freebsd-ports/2008-May/048645.html
   http://lists.freebsd.org/pipermail/freebsd-ports/2008-May/048647.html



--
[EMAIL PROTECTED]  -  [EMAIL PROTECTED]
FreeBSD GNOME Team
http://www.FreeBSD.org/gnome/  -  [EMAIL PROTECTED]
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


library symlink question

2008-05-21 Thread Frank
I'm creating a few new ports.  The main port has library dependencies on
two of the other ports.  These two ports install like:

/usr/local/lib/libfoo.la
/usr/local/lib/libfoo.so

but they don't create a libfoo.so.1 and make a symlink.  Therefore,
ldconfig doesn't pick them up and if I use LIB_DEPENDS to find them, it
fails.

What is the proper procedure to get around this?

Thanks,
Frank
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


KeePassX updated to 0.3.1

2008-05-21 Thread Greg Larkin
Hi folks,

A couple of months ago, someone posted about trouble getting
security/keepassx 0.3.1 to compile:

http://lists.freebsd.org/pipermail/freebsd-ports/2008-March/047471.html

I recently submitted a fix in a PR, so if you want to get an advance look at
the new version, grab the patch here:

http://www.freebsd.org/cgi/query-pr.cgi?prp=123649-1-txtn=/KeePassX-0.3.1.p
atch

If you have any feedback about the patch or problems with the new version,
let me know.

Regards,
Greg
SourceHosting.net, LLC
http://www.sourcehosting.net/



___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


INDEX build failed for 5.x

2008-05-21 Thread Erwin Lansing
INDEX build failed with errors:
Generating INDEX-5 - please 
wait../a/erwin/tindex/ports/chinese/links/../../www/links/Makefile, line 75: 
warning: duplicate script for target pre-configure ignored
sonata-1.5.1_1:  non-existent -- dependency list incomplete
=== audio/sonata failed
*** Error code 1
*** Error code 1

Stop in /a/erwin/tindex/ports.
*** Error code 1

Stop in /a/erwin/tindex/ports.
1 error

Committers on the hook:
anders araujo dinoex fjoe green hq maho mi miwi mm mnag nivit obrien pav rafan 
shaun sumikawa 

Most recent CVS update was:
U archivers/Makefile
U archivers/pear-PHP_Archiv/Makefile
U archivers/pear-PHP_Archiv/distinfo
U archivers/pear-PHP_Archiv/pkg-descr
U astro/starplot/Makefile
U astro/starplot/distinfo
U astro/starplot/pkg-plist
U audio/sonata/Makefile
U biology/tRNAscan-SE/Makefile
U biology/tRNAscan-SE/pkg-descr
U biology/tRNAscan-SE/pkg-plist
U comms/obexapp/files/patch-Makefile
U databases/libzdb/Makefile
U databases/libzdb/distinfo
U devel/cvs+ipv6/files/patch-freebsdlocal
U devel/epydoc/Makefile
U devel/epydoc/distinfo
U devel/epydoc/pkg-plist
U devel/gputils/Makefile
U devel/gputils/distinfo
U devel/linuxthreads/files/getlogin.c
U devel/linuxthreads/files/telldir.c
U devel/linuxthreads/files/ttyname.c
U devel/mcpp/Makefile
U devel/mcpp/distinfo
U devel/mcpp/pkg-descr
U devel/p5-BS-Event/Makefile
U devel/p5-BS-Event/distinfo
U devel/p5-BS-Event/pkg-descr
U devel/p5-BS-Event/pkg-plist
U devel/p5-TheSchwartz/Makefile
U devel/p5-TheSchwartz/distinfo
U devel/p5-TheSchwartz/pkg-descr
U devel/p5-TheSchwartz/pkg-plist
U devel/synfig/Makefile
U editors/openoffice.org-3-devel/Makefile
U editors/openoffice.org-3-devel/distinfo
U emulators/gxemul/Makefile
U emulators/gxemul/distinfo
U emulators/spim/Makefile
U emulators/spim/distinfo
U emulators/spim/pkg-descr
U emulators/spim/files/patch-spim_Makefile
U emulators/spim/files/patch-xspim_Imakefile
U emulators/twin/Makefile
U emulators/twin/files/patch-realC
U ftp/pear-Net_FTP/Makefile
U ftp/pear-Net_FTP/distinfo
U games/Makefile
U games/gnurobots/Makefile
U games/gnurobots/distinfo
U games/gnurobots/pkg-message
U games/gnurobots/pkg-plist
U games/tnl/Makefile
U games/tnl/distinfo
U games/tnl/pkg-descr
U games/tnl/pkg-plist
U games/tnl/files/tnl.in
U hebrew/he2/Makefile
U hebrew/he2/pkg-descr
U hebrew/he2/files/patch-realCxx
U mail/libspf/files/patch-respect_cflags_and_dont_create_spfmilter_Makefile
U mail/mutt-devel/Makefile
U mail/mutt-devel/distinfo
U mail/mutt-devel/files/extra-patch-aspell
U mail/mutt-devel/files/extra-patch-nodoc-contrib
U mail/mutt-devel/files/patch-02
U mail/mutt-devel/files/patch-08
U mail/mutt-devel/files/patch-Makefile.am
U mail/mutt-devel/files/patch-examples
U math/libqalculate/Makefile
U math/libqalculate/files/patch-configure
U math/libqalculate/files/patch-libqalculate-cl_abort.cc
U math/libqalculate/files/patch-src-Makefile.in
U math/py-gnuplot/Makefile
U math/py-gnuplot/distinfo
U math/py-gnuplot/pkg-plist
U math/qalculate/Makefile
U math/qalculate/files/patch-configure
U math/qalculate/files/patch-src-Makefile
U misc/cdcollect/Makefile
U misc/cdcollect/distinfo
U misc/cdcollect/pkg-descr
U misc/cdcollect/pkg-plist
U misc/heyu2/Makefile
U misc/heyu2/distinfo
U multimedia/Makefile
U multimedia/gnome-subtitles/Makefile
U multimedia/gnome-subtitles/distinfo
U multimedia/gnome-subtitles/pkg-plist
U 
multimedia/gnome-subtitles/files/patch-src_GnomeSubtitles_Execution_gnome-subtitles.in
U multimedia/sublib/Makefile
U multimedia/sublib/distinfo
U multimedia/sublib/pkg-descr
U multimedia/sublib/pkg-plist
U net-mgmt/netdisco/files/patch-netdisco
U net-mgmt/netdisco/files/patch-netdisco.conf
U net-mgmt/netdisco/files/patch-netdisco.crontab
U net-mgmt/netdisco/files/patch-netdisco_apache.conf
U net-mgmt/netdisco/files/patch-netdisco_apache_dir.conf
U net-mgmt/netdisco/files/pkg-install.in
U net-mgmt/netdisco/files/pkg-message.in
U net-mgmt/p5-Nagios-Plugins-Memcached/Makefile
U net-mgmt/p5-Nagios-Plugins-Memcached/distinfo
U net-mgmt/p5-Nagios-Plugins-Memcached/pkg-descr
U net-mgmt/p5-Nagios-Plugins-Memcached/pkg-plist
U net-mgmt/p5-Nagios-Plugins-Memcached/files/patch-Makefile.PL
U palm/synce-rra/files/patch-src-rra-timezone.c
U security/tor-devel/Makefile
U security/tor-devel/distinfo
U sysutils/lookupd/files/patch-modules-dns-resolv-getaddrinfo.c
U sysutils/mybashburn/Makefile
U sysutils/mybashburn/distinfo
U sysutils/mybashburn/pkg-descr
U sysutils/mybashburn/pkg-plist
U www/apache13-modssl/files/patch-apachectl
U www/cocoon/files/patch-src-blocks-ajax-samples
U www/cocoon/files/patch-src-blocks-forms-samples
U www/moodle/Makefile
U www/moodle/distinfo
U www/py-forgethtml/files/patch-lib-forgetHTML.py
U www/sakai/Makefile
U www/sakai/distinfo
U www/sakai/pkg-plist
U www/squid/Makefile
U www/squid/files/fix-kerberos.patch
U www/squid/files/icap-2.6-bootstrap.patch
U www/squid/files/patch-helpers-negotiate_auth-squid_kerb_auth-Makefile.in
U x11-wm/devilspie/Makefile
U x11-wm/devilspie/distinfo

palm/pdbc

2008-05-21 Thread matt donovan
I've just tried to fix the checksum error but for some reason the SHA256 sum
does no match even though the MD5 one does. But since this is no longer
being developed that I have found since the author's site can no longer be
found. you can probably remove this or I can keep trying to fix the checksum
problem. Since the port is a bit out of date at least by time
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


INDEX build failed for 5.x

2008-05-21 Thread Erwin Lansing
INDEX build failed with errors:
Generating INDEX-5 - please 
wait../a/erwin/tindex/ports/chinese/links/../../www/links/Makefile, line 75: 
warning: duplicate script for target pre-configure ignored
sonata-1.5.1_1:  non-existent -- dependency list incomplete
=== audio/sonata failed
*** Error code 1
*** Error code 1

Stop in /a/erwin/tindex/ports.
*** Error code 1

Stop in /a/erwin/tindex/ports.
1 error

Committers on the hook:
anders araujo brd dinoex fjoe green hq maho mi miwi mm mnag nivit obrien pav 
rafan shaun sumikawa 

Most recent CVS update was:
U comms/obexapp/files/patch-Makefile
U devel/cvs+ipv6/files/patch-freebsdlocal
U devel/linuxthreads/files/getlogin.c
U devel/linuxthreads/files/telldir.c
U devel/linuxthreads/files/ttyname.c
U devel/p5-BS-Event/Makefile
U devel/p5-BS-Event/distinfo
U devel/p5-BS-Event/pkg-descr
U devel/p5-BS-Event/pkg-plist
U devel/p5-TheSchwartz/Makefile
U devel/p5-TheSchwartz/distinfo
U devel/p5-TheSchwartz/pkg-descr
U devel/p5-TheSchwartz/pkg-plist
U mail/libspf/files/patch-respect_cflags_and_dont_create_spfmilter_Makefile
U misc/cdcollect/Makefile
U misc/cdcollect/distinfo
U misc/cdcollect/pkg-descr
U misc/cdcollect/pkg-plist
U net-mgmt/netdisco/files/patch-netdisco
U net-mgmt/netdisco/files/patch-netdisco.conf
U net-mgmt/netdisco/files/patch-netdisco.crontab
U net-mgmt/netdisco/files/patch-netdisco_apache.conf
U net-mgmt/netdisco/files/patch-netdisco_apache_dir.conf
U net-mgmt/netdisco/files/pkg-install.in
U net-mgmt/netdisco/files/pkg-message.in
U net-mgmt/p5-Nagios-Plugins-Memcached/Makefile
U net-mgmt/p5-Nagios-Plugins-Memcached/distinfo
U net-mgmt/p5-Nagios-Plugins-Memcached/pkg-descr
U net-mgmt/p5-Nagios-Plugins-Memcached/pkg-plist
U net-mgmt/p5-Nagios-Plugins-Memcached/files/patch-Makefile.PL
U palm/synce-rra/files/patch-src-rra-timezone.c
U sysutils/lookupd/files/patch-modules-dns-resolv-getaddrinfo.c
U sysutils/mybashburn/Makefile
U sysutils/mybashburn/distinfo
U sysutils/mybashburn/pkg-descr
U sysutils/mybashburn/pkg-plist
U www/apache13-modssl/files/patch-apachectl
U www/cocoon/files/patch-src-blocks-ajax-samples
U www/cocoon/files/patch-src-blocks-forms-samples
U www/mod_evasive/Makefile
U www/mod_evasive/pkg-descr
U www/py-forgethtml/files/patch-lib-forgetHTML.py
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: hier 7 question

2008-05-21 Thread Marc Spitzer
On Wed, May 21, 2008 at 10:51 PM, Sahil Tandon [EMAIL PROTECTED] wrote:
 * Marc Spitzer [EMAIL PROTECTED] [05-21-2008]:

 On Sun, May 18, 2008 at 9:31 PM, Brooks Davis [EMAIL PROTECTED] wrote:
  On Sun, May 18, 2008 at 08:20:03PM -0400, Marc Spitzer wrote:
  Hello,
 
  I am porting ATF, http://www.netbsd.org/~jmmv/atf/, a unit testing
  framework for C, C++ and Shell.  The thing is is that it installs a
  bunch of self tests in ${PREFIX}/tests/atf.  Is this the right place
  for it?  From Hier(7) binaries should not go under share/.  Otherwise
  I think it is done.  Personally I think the tests/port could be a
  handy thing to have.  What is your opinion/advice on this?
 
  libexec/ seems like it might be the right place.
 

 Forgive me for an ignorant question but assuming I can not figure out
 how to add a knob onto the configure script,  what would be the proper
 way to move the files under libexec?  I could just move ${PREFIX}/test
 to ${PREFIX}/libexec but that seems extra hackish.  I do not want a
 solution but a pointer would be nice.

 It's not hackish to put executables in libexec.  See 5.14.5 of the Porter's
 Handbook and adjust your Makefile to install the file(s) there.


Forgive my poor explanation.  I do not have a problem with putting
things in libexec, especially if they actually belong there.  My
problem stems from ignorance in two ways:
1: I know almost nothing about autoconf and friends from a developer POV
2: My knowledge of ports is slightly better, getting better all the time though.

The configure script does not have a --testdir knob that I can set to
${PREFIX}/libexec/test to install the test programs their, although it
does have one for everything else.  I can just just do 'mv
${prefix}/test ${prefix}/libexec' to move it over, but that is what I
was saying looks very hackish.  So I guess my question is what would
be the correct way to move a directory tree over with out steping on
any preexisting directory there?

Thanks,

marc

-- 
Freedom is nothing but a chance to be better.
Albert Camus
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: hier 7 question

2008-05-21 Thread Sahil Tandon
* Marc Spitzer [EMAIL PROTECTED] [05-21-2008]:

 The configure script does not have a --testdir knob that I can set to
 ${PREFIX}/libexec/test to install the test programs their, although it
 does have one for everything else.  I can just just do 'mv
 ${prefix}/test ${prefix}/libexec' to move it over, but that is what I
 was saying looks very hackish.  So I guess my question is what would
 be the correct way to move a directory tree over with out steping on
 any preexisting directory there?

Do the files have to be in a 'test' directory?  Perhaps you can just copy 
them into libexec/ sans the 'test' dir.

-- 
Sahil Tandon [EMAIL PROTECTED]
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: hier 7 question

2008-05-21 Thread Marc Spitzer
On Wed, May 21, 2008 at 11:13 PM, Sahil Tandon [EMAIL PROTECTED] wrote:
 * Marc Spitzer [EMAIL PROTECTED] [05-21-2008]:

 The configure script does not have a --testdir knob that I can set to
 ${PREFIX}/libexec/test to install the test programs their, although it
 does have one for everything else.  I can just just do 'mv
 ${prefix}/test ${prefix}/libexec' to move it over, but that is what I
 was saying looks very hackish.  So I guess my question is what would
 be the correct way to move a directory tree over with out steping on
 any preexisting directory there?

 Do the files have to be in a 'test' directory?  Perhaps you can just copy
 them into libexec/ sans the 'test' dir.


The problem with that is that there is a tree under test/ with over
200 files/subdirs in it.  And I would like to do this cleanly.  I do
have a request for a knob in with the developer though.

Thanks,

marc
-- 
Freedom is nothing but a chance to be better.
Albert Camus
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Gnash 0.8.2

2008-05-21 Thread Carlos A. M. dos Santos
On Wed, May 21, 2008 at 11:09 PM, Dmitry Marakasov [EMAIL PROTECTED] wrote:
 * Carlos A. M. dos Santos ([EMAIL PROTECTED]) wrote:

 Yes, OpenGL renderer seems to be broken on 0.8.2.
 I think I've found the cause of this. May I ask what video card,
 video driver and xorg server version are you using? May be bug in
 either of those, I'll investigate further.

# pciconf  -lv
[EMAIL PROTECTED]:0:0:0:class=0x06 card=0x30aa103c chip=0x27a08086
rev=0x03 hdr=0x00
vendor = 'Intel Corporation'
device = '955XM/945GM/PM/GMS/940GML Express Processor to DRAM
Controller'
class  = bridge
subclass   = HOST-PCI

The driver is xf86-video-intel-2.2.1.

The relevant information given by the kernel is this:

vgapci0: VGA-compatible display port 0x6000-0x6007 mem
0xe840-0xe847,0xd000-0xdfff,0xe848-0xe84bff
ff irq 16 at device 2.0 on pci0
agp0: Intel 82945GM (945GM GMCH) SVGA controller on vgapci0
agp0: detected 7932k stolen memory
agp0: aperture size is 256M
drm0: Intel i945GM on vgapci0
info: [drm] AGP at 0xd000 256MB
info: [drm] Initialized i915 1.5.0 20060119
vgapci1: VGA-compatible display mem 0xe850-0xe857 at device
2.1 on pci0

-- 
Carlos A. M. dos Santos
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


INDEX build failed for 5.x

2008-05-21 Thread Erwin Lansing
INDEX build failed with errors:
Generating INDEX-5 - please 
wait../a/erwin/tindex/ports/chinese/links/../../www/links/Makefile, line 75: 
warning: duplicate script for target pre-configure ignored
sonata-1.5.1_1:  non-existent -- dependency list incomplete
=== audio/sonata failed
*** Error code 1
*** Error code 1

Stop in /a/erwin/tindex/ports.
*** Error code 1

Stop in /a/erwin/tindex/ports.
1 error

Committers on the hook:
anders araujo brd dinoex fjoe green hq maho mi miwi mm mnag nivit obrien pav 
rafan shaun sumikawa tabthorpe 

Most recent CVS update was:
U comms/obexapp/files/patch-Makefile
U devel/cvs+ipv6/files/patch-freebsdlocal
U devel/linuxthreads/files/getlogin.c
U devel/linuxthreads/files/telldir.c
U devel/linuxthreads/files/ttyname.c
U devel/p5-BS-Event/Makefile
U devel/p5-BS-Event/distinfo
U devel/p5-BS-Event/pkg-descr
U devel/p5-BS-Event/pkg-plist
U devel/p5-TheSchwartz/Makefile
U devel/p5-TheSchwartz/distinfo
U devel/p5-TheSchwartz/pkg-descr
U devel/p5-TheSchwartz/pkg-plist
U mail/libspf/files/patch-respect_cflags_and_dont_create_spfmilter_Makefile
U misc/cdcollect/Makefile
U misc/cdcollect/distinfo
U misc/cdcollect/pkg-descr
U misc/cdcollect/pkg-plist
U net-mgmt/netdisco/files/patch-netdisco
U net-mgmt/netdisco/files/patch-netdisco.conf
U net-mgmt/netdisco/files/patch-netdisco.crontab
U net-mgmt/netdisco/files/patch-netdisco_apache.conf
U net-mgmt/netdisco/files/patch-netdisco_apache_dir.conf
U net-mgmt/netdisco/files/pkg-install.in
U net-mgmt/netdisco/files/pkg-message.in
U net-mgmt/p5-Nagios-Plugins-Memcached/Makefile
U net-mgmt/p5-Nagios-Plugins-Memcached/distinfo
U net-mgmt/p5-Nagios-Plugins-Memcached/pkg-descr
U net-mgmt/p5-Nagios-Plugins-Memcached/pkg-plist
U net-mgmt/p5-Nagios-Plugins-Memcached/files/patch-Makefile.PL
U palm/synce-rra/files/patch-src-rra-timezone.c
U shells/rssh/Makefile
U sysutils/lookupd/files/patch-modules-dns-resolv-getaddrinfo.c
U sysutils/mybashburn/Makefile
U sysutils/mybashburn/distinfo
U sysutils/mybashburn/pkg-descr
U sysutils/mybashburn/pkg-plist
U www/apache13-modssl/files/patch-apachectl
U www/cocoon/files/patch-src-blocks-ajax-samples
U www/cocoon/files/patch-src-blocks-forms-samples
U www/py-forgethtml/files/patch-lib-forgetHTML.py
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


INDEX build failed for 5.x

2008-05-21 Thread Erwin Lansing
INDEX build failed with errors:
Generating INDEX-5 - please 
wait../a/erwin/tindex/ports/chinese/links/../../www/links/Makefile, line 75: 
warning: duplicate script for target pre-configure ignored
sonata-1.5.1_1:  non-existent -- dependency list incomplete
=== audio/sonata failed
*** Error code 1
*** Error code 1

Stop in /a/erwin/tindex/ports.
*** Error code 1

Stop in /a/erwin/tindex/ports.
1 error

Committers on the hook:
anders araujo brd dinoex fjoe green hq maho mi miwi mm mnag nivit obrien pav 
rafan shaun sumikawa tabthorpe 

Most recent CVS update was:
U chinese/mutt/Makefile
U chinese/mutt/files/patch-zh-mutt
U comms/obexapp/files/patch-Makefile
U devel/cvs+ipv6/files/patch-freebsdlocal
U devel/libffi-devel/Makefile
U devel/linuxthreads/files/getlogin.c
U devel/linuxthreads/files/telldir.c
U devel/linuxthreads/files/ttyname.c
U devel/p5-BS-Event/Makefile
U devel/p5-BS-Event/distinfo
U devel/p5-BS-Event/pkg-descr
U devel/p5-BS-Event/pkg-plist
U devel/p5-TheSchwartz/Makefile
U devel/p5-TheSchwartz/distinfo
U devel/p5-TheSchwartz/pkg-descr
U devel/p5-TheSchwartz/pkg-plist
U mail/libspf/files/patch-respect_cflags_and_dont_create_spfmilter_Makefile
U misc/cdcollect/Makefile
U misc/cdcollect/distinfo
U misc/cdcollect/pkg-descr
U misc/cdcollect/pkg-plist
U net-mgmt/netdisco/files/patch-netdisco
U net-mgmt/netdisco/files/patch-netdisco.conf
U net-mgmt/netdisco/files/patch-netdisco.crontab
U net-mgmt/netdisco/files/patch-netdisco_apache.conf
U net-mgmt/netdisco/files/patch-netdisco_apache_dir.conf
U net-mgmt/netdisco/files/pkg-install.in
U net-mgmt/netdisco/files/pkg-message.in
U net-mgmt/p5-Nagios-Plugins-Memcached/Makefile
U net-mgmt/p5-Nagios-Plugins-Memcached/distinfo
U net-mgmt/p5-Nagios-Plugins-Memcached/pkg-descr
U net-mgmt/p5-Nagios-Plugins-Memcached/pkg-plist
U net-mgmt/p5-Nagios-Plugins-Memcached/files/patch-Makefile.PL
U palm/synce-rra/files/patch-src-rra-timezone.c
U sysutils/lookupd/files/patch-modules-dns-resolv-getaddrinfo.c
U sysutils/mybashburn/Makefile
U sysutils/mybashburn/distinfo
U sysutils/mybashburn/pkg-descr
U sysutils/mybashburn/pkg-plist
U www/apache13-modssl/files/patch-apachectl
U www/cocoon/files/patch-src-blocks-ajax-samples
U www/cocoon/files/patch-src-blocks-forms-samples
U www/py-forgethtml/files/patch-lib-forgetHTML.py
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]