devel/linux-js does not work on recent RELENG_7

2007-12-18 Thread Marcus von Appen
Hi,

although installing devel/linux-js works fine, the module cannot be
loaded on RELENG_7 after installation. The affected joystick is USB
powered and clearly recognized by native ports.
uhid is compiled in as device.

Right after trying to load it, dmesg spits out a 
link_elf: symbol FILEDESC_UNLOCK undefined message.

# kldload linux_js
kldload: can't load linux_js: No such file or directory

# ls /boot/modules/linux*
/boot/modules/linux_js.ko

# tail /etc/rc.conf
[...]
linux_js_enable=YES
jscal_enable=YES

# dmesg |grep uhid
uhid0: Mega World USB 2-Axis 8-Button Gamepad, class 0/0, rev 1.10/1.01, addr 
3 on uhub5

# uname -a
FreeBSD medusa.sysfault.org 7.0-BETA4 FreeBSD 7.0-BETA4 #3: Sat Dec 15
19:50:53 CET 2007 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/MEDUSA  i386

Can someone verify this behaviour or is this a problem on my system
only?

Regards
Marcus


pgpD8pYQYYS4N.pgp
Description: PGP signature


Re: ports.conf: Is there a reason behind not being default?

2007-12-18 Thread Florent Thoumie
On Dec 18, 2007 1:54 AM, Xin LI [EMAIL PROTECTED] wrote:
 Hi,

 I think that ports-mgmt/portconf (a.k.a. /usr/local/etc/ports.conf) is a
 very handy feature that makes it much easier to store port options
 across upgrade.  Is there a reason behind not making it into
 bsd.ports.mk?  IMHO it's a big deal to take the script into
 ports/Tools/scripts, and move the configuration to somewhere like
 /etc/ports.conf...

I'd rather have ports.conf being the equivalent of src.conf for ports
and portconf configuration file being renamed. Whether it should be in
base or not is another matter, IMHO it's a handy hack but a hack
nonetheless :-)

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


Ports that use wget instead of fetch

2007-12-18 Thread Dag-Erling Smørgrav
A quick survey of ports that use wget instead of fetch to get the
distfile:

audio/ventrilo-server/Makefile

 - needs POST, which fetch does not support

biology/gmap/Makefile

 - distfile does not exist on master site, project web page also
   missing, unable to locate with Google

devel/looks/Makefile

 - distfile does not exist on master site, but other ports using the
   same master site work fine with fetch

devel/subclipse/Makefile

 - works fine with fetch

sysutils/sge/Makefile

 - needs cookies, which fetch does not support

textproc/javacc/Makefile

 - works fine with fetch

x11/rxvt-devel/Makefile

 - both master site work fine with fetch, but one of them doesn't have
   the distfile; should use sourceforge instead

x11/rxvt/Makefile

 - one master site (planetmirror.com) out of three is broken, the other
   two work fine; should use sourceforge instead

I've attached a patch for the ports that I've been able to verify work
correctly with fetch.  I'd appreciate it if the maintainers of the
remaining ports would add comments to the Makefile explaining why wget
is necessary.

DES
-- 
Dag-Erling Smørgrav - [EMAIL PROTECTED]

Index: devel/subclipse/Makefile
===
RCS file: /home/pcvs/ports/devel/subclipse/Makefile,v
retrieving revision 1.14
diff -u -r1.14 Makefile
--- devel/subclipse/Makefile	27 Sep 2007 20:56:48 -	1.14
+++ devel/subclipse/Makefile	18 Dec 2007 09:34:44 -
@@ -16,7 +16,6 @@
 COMMENT=	A subversion plugin for the Eclipse IDE Framework
 
 RUN_DEPENDS=	${LOCALBASE}/bin/eclipse:${PORTSDIR}/java/eclipse
-FETCH_DEPENDS=	${LOCALBASE}/bin/wget:${PORTSDIR}/ftp/wget
 
 CONFLICTS=	phpeclipse-[0-9]*
 
@@ -33,15 +32,8 @@
 		plugins/${SUBCLIPSE}.mylyn_2.0.0 \
 		plugins/${SUBCLIPSE}.ui_${PORTVERSION}
 
-WGET?=		${LOCALBASE}/bin/wget
-
 .include bsd.port.pre.mk
 
-do-fetch:
-.if !exists(${DISTDIR}/${DIST_SUBDIR}/${DISTNAME}.zip)
-	${WGET} -P${DISTDIR}/${DIST_SUBDIR} ${MASTER_SITES}/${DISTNAME}.zip
-.endif
-
 post-extract:
 .for f in ${SUBCLIPSEFILES}
 	cd ${WRKSRC} \
Index: textproc/javacc/Makefile
===
RCS file: /home/pcvs/ports/textproc/javacc/Makefile,v
retrieving revision 1.14
diff -u -r1.14 Makefile
--- textproc/javacc/Makefile	29 Jun 2007 19:33:24 -	1.14
+++ textproc/javacc/Makefile	18 Dec 2007 09:52:01 -
@@ -15,13 +15,9 @@
 MAINTAINER=	[EMAIL PROTECTED]
 COMMENT=	Java parser generator and lexical analyzer
 
-FETCH_DEPENDS=	${LOCALBASE}/bin/wget:${PORTSDIR}/ftp/wget
-
 USE_JAVA=	yes
 USE_ANT=	yes
 DISABLE_SIZE=	yes
-FETCH_CMD=	${LOCALBASE}/bin/wget
-FETCH_BEFORE_ARGS=	--no-check-certificate
 WRKSRC=		${WRKDIR}/${PORTNAME}
 
 .include bsd.port.pre.mk
Index: x11/rxvt-devel/Makefile
===
RCS file: /home/pcvs/ports/x11/rxvt-devel/Makefile,v
retrieving revision 1.81
diff -u -r1.81 Makefile
--- x11/rxvt-devel/Makefile	19 May 2007 20:27:17 -	1.81
+++ x11/rxvt-devel/Makefile	18 Dec 2007 09:58:21 -
@@ -12,18 +12,12 @@
 PORTVERSION=	2.7.10
 PORTREVISION=	2
 CATEGORIES+=	x11
-MASTER_SITES=	\
-		http://slackware.osuosl.org/slackware_source/xap/rxvt/ \
-		ftp://ftp.fu-berlin.de/unix/X11/terms/rxvt/%SUBDIR%/
-MASTER_SITE_SUBDIR=	. old devel
+MASTER_SITES=	SF
 PKGNAMESUFFIX=	-devel
-DISTNAME=	rxvt-${PORTVERSION}
 
 MAINTAINER=	[EMAIL PROTECTED]
 COMMENT=	A low memory usage xterm replacement that supports color
 
-FETCH_DEPENDS=	wget:${PORTSDIR}/ftp/wget
-
 USE_AUTOTOOLS=	libtool:15
 USE_PERL5_BUILD=yes
 USE_X_PREFIX=	yes
@@ -33,17 +27,9 @@
 		--with-xpm --enable-xpm-background --enable-transparency \
 		--enable-shared
 INSTALLS_SHLIB=	yes
-USE_BZIP2=	yes
 
 MAN1=		rxvt.1
 
-# fetch(1) is misbehaving with these MASTER_SITES
-FETCH_CMD=	${LOCALBASE}/bin/wget
-FETCH_REGET=	0
-DISABLE_SIZE=	yes
-FETCH_BEFORE_ARGS=
-FETCH_AFTER_ARGS=
-
 # disable backspace key
 .if defined(WITHOUT_BACKSPACE_KEY)
 CONFIGURE_ARGS+=	--disable-backspace-key
Index: x11/rxvt-devel/distinfo
===
RCS file: /home/pcvs/ports/x11/rxvt-devel/distinfo,v
retrieving revision 1.20
diff -u -r1.20 distinfo
--- x11/rxvt-devel/distinfo	11 Nov 2005 06:06:13 -	1.20
+++ x11/rxvt-devel/distinfo	18 Dec 2007 09:58:31 -
@@ -1,3 +1,3 @@
-MD5 (rxvt-2.7.10.tar.bz2) = 00dd774ee6e4e06d5a060266d7bb92f5
-SHA256 (rxvt-2.7.10.tar.bz2) = 81df129839edd2b5d569396043676875814115d9398e0dce6397f54a447f2fba
-SIZE (rxvt-2.7.10.tar.bz2) = 493199
+MD5 (rxvt-2.7.10.tar.gz) = 302c5c455e64047b02d1ef19ff749141
+SHA256 (rxvt-2.7.10.tar.gz) = 616ad56502820264e6933d07bc4eb752aa6940ec14add6e780ffccf15f38d449
+SIZE (rxvt-2.7.10.tar.gz) = 595073
Index: x11/rxvt/Makefile
===
RCS file: /home/pcvs/ports/x11/rxvt/Makefile,v
retrieving revision 1.62
diff -u -r1.62 Makefile
--- x11/rxvt/Makefile	19 May 2007 20:27:16 -	1.62
+++ x11/rxvt/Makefile	

Re: make config-conditional recursive ?

2007-12-18 Thread Andriy Gapon
on 17/12/2007 15:17 RW said the following:
 On Mon, 17 Dec 2007 13:59:53 +0200
 Andriy Gapon [EMAIL PROTECTED] wrote:
 
 on 14/12/2007 19:22 RW said the following:
 On Fri, 14 Dec 2007 15:57:12 +0200
 Andriy Gapon [EMAIL PROTECTED] wrote:

 Is make config-conditional recursive ?
 No, but config-recursive is conditional
 but it's not conditional :-)

 
 I'm not sure what you are trying to say here, but make
 config-recursive does a make config-conditional in the current port
 and all the current port's dependencies - so it is both recursive and
 conditional.

Oh, I wasn't aware that it does make config-conditional, I thought
that it was make config. Thank you for enlightening me!

 There is a slight problem though, that it determines the dependencies
 before doing the make config-conditional, so it may occasionally miss
 new dependencies. You can just run it twice though.

Yes. Thank you.

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


www/linux-flashplugin9

2007-12-18 Thread Sergey Matveychuk

FYI

= Attempting to fetch from 
http://fpdownload.macromedia.com/get/flashplayer/current/.
fetch: 
http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player_9_linux.tar.gz: 
size mismatch: expected 2608602, actual 3036127


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


clamav 0.92 port in the making ?

2007-12-18 Thread craig001
Hi All

I am just enquiring to see if anybody has started work porting 0.92 of clamav 
yet?

Freshclam is upset that clamav is out of date.

I have checked the pr's and can't see anything pending.

I have also tried to contact the maintainer Renato Botelho [EMAIL PROTECTED],
but received a referral.

--
Kind Regards


Craig Butler



This email has been handled by lerwick.hopto.org mail server
and has been scanned by 3 virus killers and spamassassin


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


Re: ports.conf: Is there a reason behind not being default?

2007-12-18 Thread Pav Lucistnik
On Mon, 17 Dec 2007 17:54:05 -0800, Xin LI wrote

 I think that ports-mgmt/portconf (a.k.a. /usr/local/etc/ports.conf)
  is a very handy feature that makes it much easier to store port options
 across upgrade.  Is there a reason behind not making it into
 bsd.ports.mk?  IMHO it's a big deal to take the script into
 ports/Tools/scripts, and move the configuration to somewhere like
 /etc/ports.conf...

I haven't checked it out yet. What can it do that can't be done in
/etc/make.conf with constructs like

.if ${.CURDIR} == /usr/ports/editors/vim
WITH_GTK2=yes
.endif

?

--
Pav Lucistnik [EMAIL PROTECTED]
  [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: ports.conf: Is there a reason behind not being default?

2007-12-18 Thread Sean C. Farley

On Tue, 18 Dec 2007, Pav Lucistnik wrote:


On Mon, 17 Dec 2007 17:54:05 -0800, Xin LI wrote


I think that ports-mgmt/portconf (a.k.a. /usr/local/etc/ports.conf)
is a very handy feature that makes it much easier to store port
options across upgrade.  Is there a reason behind not making it into
bsd.ports.mk?  IMHO it's a big deal to take the script into
ports/Tools/scripts, and move the configuration to somewhere like
/etc/ports.conf...


I haven't checked it out yet. What can it do that can't be done in
/etc/make.conf with constructs like

.if ${.CURDIR} == /usr/ports/editors/vim
WITH_GTK2=yes
.endif


I find it simpler to use:
editors/vim: WITH_GTK2

or for all vim ports:
editors/vim*: WITH_GTK2

Multiple ports on one line:
multimedia/mencoder multimedia/mplayer: WITH_NVIDIA

Defaults for all ports
*: BATCH|\
   SRC_BASE=/usr/FreeBSD/RELENG_7/src   |\
   SYSDIR=/usr/FreeBSD/RELENG_7/src/sys |\
   WITH_NVIDIA_GL

Sean
--
[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: ports.conf: Is there a reason behind not being default?

2007-12-18 Thread Dominic Fandrey
Pav Lucistnik wrote:
 On Mon, 17 Dec 2007 17:54:05 -0800, Xin LI wrote
 
 I think that ports-mgmt/portconf (a.k.a. /usr/local/etc/ports.conf)
  is a very handy feature that makes it much easier to store port options
 across upgrade.  Is there a reason behind not making it into
 bsd.ports.mk?  IMHO it's a big deal to take the script into
 ports/Tools/scripts, and move the configuration to somewhere like
 /etc/ports.conf...
 
 I haven't checked it out yet. What can it do that can't be done in
 /etc/make.conf with constructs like
 
 .if ${.CURDIR} == /usr/ports/editors/vim
 WITH_GTK2=yes
 .endif
 
 ?

Actually it can only do less than that (and it won't work if /usr/ports is a
symlink, at least the last time I checked). The only advantage is a more
compact (and simple) syntax.
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: mtx port

2007-12-18 Thread Martin Blapp


Hi,

Thanks for the heads up. I just didn't know about any upgrade.

No reason, but I should definitly
update it :-)

--
Martin

Martin Blapp, [EMAIL PROTECTED] [EMAIL PROTECTED]
--
ImproWare AG, UNIXSP  ISP, Zurlindenstrasse 29, 4133 Pratteln, CH
Phone: +41 61 826 93 00 Fax: +41 61 826 93 01
PGP: finger -l [EMAIL PROTECTED]
PGP Fingerprint: B434 53FC C87C FE7B 0A18 B84C 8686 EF22 D300 551E
--

On Tue, 18 Dec 2007, Nicki de Wet wrote:


Hi there,

The mtx port is currently sitting at 1.2.17rel, but the latest version is 
1.3.11. I picked this up when configuring bacula, and noticed the inability 
of 1.2.17 to identify from which slot the current tape in the drive was 
loaded. 1.3.11 fixes this, I did a source build.


It would be great to get this port up to date, is there a reason why it's 
outdated?


Thanks,
Nicki


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


www/linux-flashplugin9

2007-12-18 Thread Mark Nowiasz
Hi,

I've been unable to install linux-flashplugin9:

-8---
= install_flash_player_9_linux.tar.gz doesn't seem to exist 
in /usr/ports/distfiles/flashplugin/9.0r48.
= Attempting to fetch from 
http://fpdownload.macromedia.com/get/flashplayer/current/.
fetch: 
http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player_9_linux.tar.gz:
 
size mismatch: expected 2608602, actual 3036127
= Attempting to fetch from 
ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/flashplugin/9.0r48/.
fetch: 
ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/flashplugin/9.0r48/install_flash_player_9_linux.tar.gz:
 
File unavailable (e.g., file not found, no access)
= Couldn't fetch it - please try to retrieve this
= port manually into /usr/ports/distfiles/flashplugin/9.0r48 and try again.
---8

Do you have any ideas what to do?

Thanks in advance,
Mark
-- 
Why can't you be a non-conformist like everyone else?
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: www/linux-flashplugin9

2007-12-18 Thread David Wood

Hi Mark and everyone,

In message [EMAIL PROTECTED], Mark Nowiasz 
[EMAIL PROTECTED] writes

I've been unable to install linux-flashplugin9:

-8---
= install_flash_player_9_linux.tar.gz doesn't seem to exist
in /usr/ports/distfiles/flashplugin/9.0r48.
= Attempting to fetch from
http://fpdownload.macromedia.com/get/flashplayer/current/.
fetch:
http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_p
layer_9_linux.tar.gz:
size mismatch: expected 2608602, actual 3036127
= Attempting to fetch from
ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/flashplugin/9.0r48/.
fetch:
ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/flashplugin/9.0r48/ins
tall_flash_player_9_linux.tar.gz:
File unavailable (e.g., file not found, no access)
= Couldn't fetch it - please try to retrieve this
= port manually into /usr/ports/distfiles/flashplugin/9.0r48 and try again.
---8

Do you have any ideas what to do?


There's just been a point release of Flash CS3 Professional (one of the 
reasons I have a Windows box is to run Adobe Creative Suite 3 Design 
Premium). Either as part of that, or as a related project, Adobe have 
issued Flash Player 9 Update 3 - version 9.0.115.0. I suspect that the 
old distribution file has been withdrawn at the same time.


http://tinyurl.com/39co9f has the release notes (found via the Flash CS3 
release notes on my Windows machine).



In other words - the port needs updating for the new Flash Player.



Best wishes,




David
--
David Wood
[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: logistics of re-engineering discussions/work

2007-12-18 Thread David Southwell
On Monday 17 December 2007 03:56:39 Aryeh M. Friedman wrote:
 By the end of today or tomorrow the ports re-engineering  team will
 have the following established for most future discussion of the project:

  * Mailing list
  * WWW site with Wiki

 I will be starting one final thread on the issue in -ports@ in later
 today on finalizing a initial feature list.

Hi

I have just seen this and am a bit concerned that people will be expecting 
action on this today but  I said I could not do the mail list and wiki/web 
site this until Thurs/Fri because I am out of town. I assume you still want 
me to do that on our behalf.

I applaud your approach but please check with the core team before making 
external  committments. In view of the jitterery behaviour of some idiots on 
ports@ I do not want anyone to be in a position to point a fingure and say we 
did not deliver when we said we would. I am sorry  I cannot do anything about 
this until later in the week.

Thanks

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


Re: clamav 0.92 port in the making ?

2007-12-18 Thread Maciej Suszko
[EMAIL PROTECTED] wrote:
 Hi All
 
 I am just enquiring to see if anybody has started work porting 0.92
 of clamav yet?
 
 Freshclam is upset that clamav is out of date.
 
 I have checked the pr's and can't see anything pending.
 
 I have also tried to contact the maintainer Renato Botelho
 [EMAIL PROTECTED], but received a referral.

If that's not a problem, you can try temporary solution - copy
daily.cvd from your closest mirror (http://db.XX.clamav.net/daily.cvd)
to clamav working directory, then reload clamd with -HUP signal. This
way you've got fresh virus signatures... but it's only temporary
solution as the next time they change, freshclam is going to tell you
your engine is too old.
-- 
regards, Maciej Suszko.


pgpyiJnFd9xgp.pgp
Description: PGP signature


Re: www/linux-flashplugin9

2007-12-18 Thread Sam Fourman Jr.
On Dec 18, 2007 10:24 AM, Mark Nowiasz [EMAIL PROTECTED] wrote:
 Hi,

 I've been unable to install linux-flashplugin9:

unless I am wrong, I do not know of anyone that can get flash9 working
stable with sound.

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


Re: libcaca and libslang

2007-12-18 Thread Jeremy Messenger

On Mon, 17 Dec 2007 10:52:35 -0600, Andriy Gapon [EMAIL PROTECTED] wrote:



It seems that libcaca grows unrecorded dependency on libslang if it is
present in a system. I recently upgraded slang to libslang2-2.1.3 and
the only dependency before the upgrade was 'most'.
Now, when I run mplayer I get:
/libexec/ld-elf.so.1: Shared object libslang.so.1 not found, required
by libcaca.so.0


I have committed a fix. Thanks for report!

Cheers,
Mezz


--
[EMAIL PROTECTED]  -  [EMAIL PROTECTED]
FreeBSD GNOME Team  -  FreeBSD Multimedia Hat (ports, not src)
http://www.FreeBSD.org/gnome/  -  [EMAIL PROTECTED]
http://wiki.freebsd.org/multimedia  -  [EMAIL PROTECTED]
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


mib2c broken in RELENG_6 net-snmp port

2007-12-18 Thread Sean Bruno

mib2c when run under RELENG_6 barfs about a dyn linker error:

/libexec/ld-elf.so.1: /usr/local/lib/libnetsnmp.so.9: Undefined symbol 
RAND_bytes



I _think_ that this is a failure to link in something from libssl, but 
don't quote me on that.


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


Re: adding enigmail to seamonkey

2007-12-18 Thread Robert Huff

Chuck Robey writes:

1) I don't have enigmail installed.
2) My copy of seamonkey uses .mozilla/huff/deleted.slt/ as
its config/data directory.


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


Re: adding enigmail to seamonkey

2007-12-18 Thread Chuck Robey
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Robert Huff wrote:
 Chuck Robey writes:
 
  Well, the enigmail-seamonkey install has the same somewhat bare
  hint, so I went looking for the Tools-AddOns menu, but that's a
  lost cause, it's not there, although the install comment in the
  port tells you it is.  Well, sez I, go look into the .thunderbird
  file, figure out where the enigmail.xpt file went, and ciopy it
  to the same spot in .seamonkey ... that's not any good, because
  there isn't any .seamonkey directory in my homedir.  So, that
  might or might not work.
  
  I'm lost.  Anyone gotten the enigmail-seamonkey port to work?
 
   My seamonkey always looked in the same place Mozilla did; as
 far as I remember I don't have aything special set to make that
 happen.
Robert, do you remember how you went about installing your enigmail into
seamonkey?  Apparently, after you build the enigmail-seamonkey port, you still
have to take some action with the newly built seamonkey (as had to happen with
enigmail-firefox), but the hint given in the message listed in the
enigmail-seamonkey port gives me menu options to hit, that don't exist in
seamonkey.  So I need to know how you installed it.  I don't have a mozilla to
check.  I have a firefox; is the installation a mere option of locating the
enigmail.xpt file in the firefox config dir, and placing that came file in the
 seamonkey config dir?  And, do you know the name of the seamonkey config dir?
 Is it .mozilla?
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.4 (FreeBSD)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFHaCtHz62J6PPcoOkRAlWjAJ9da0Vg1Fa6+pdMyShzBbRXt9+9AgCdEVCO
9ELJkl2Gm6x+y1L0IzrvrHU=
=osUe
-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: FreeBSD Port: dream-1.6.25_1

2007-12-18 Thread Soeren Straarup
Hi,

On Fri, 14 Dec 2007 18:11:14 +0100
RISCH Gilles [EMAIL PROTECTED] wrote:

 I've installed dream from the ports. Under windows I can chose the
 serial port and the receiver (in my case the elektor drm receiver)
 and change the frequency. Where can I find this dialog?

Sorry for the late response.
But I haven't had time to look at dream lately. Last i played with
it I only used a soundcard.

But examples, patches and other good stuff are more than welcome.

/Soeren

-- 
Soeren Straarup   | aka OZ2DAK aka Xride
FreeBSD committer | FreeBSD since 2.2.6-R
  If a program is not working right, then send a patch
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]