Re: Stop SMTP attack with pam_abl

2013-06-03 Thread Lena
> I have different sendmail based servers deployed and all of them are, 
> more or less frequently, subject to dictionary attacks.

> P.S. I'm not sticking with pam_abl if a better solution exists...

In Exim this can be done without separate software,
just with additions to config:
https://github.com/Exim/exim/wiki/BlockCracking
(this blocks both using stolen passwords and dictionary attacks).
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: X11 screen grabber from cmd line

2013-05-09 Thread Lena
> Do we have something in the ports which could do a screen shoot
> of $DISPLAY, but from the cmd line of an alpha console,
> and save it as PNG or JPEG?

#!/bin/sh
xwd -display :0 | xwdtopnm | ppmtojpeg -optimize > $1.jpg

~ # pkg_which xwd
xwd-1.0.5
~ # pkg_which xwdtopnm
netpbm-10.35.89
~ # pkg_which ppmtojpeg
netpbm-10.35.89

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Youtube & Flash Videos broken?

2013-04-07 Thread Lena
More about complications and possible cause of this problem:
http://www.freebsd.org/cgi/query-pr.cgi?pr=misc/177404
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Client Authentication

2013-03-24 Thread Lena
Jerry  wrote:

> > > How about refusing to
> > > relay mail from addresses in a good DNSBL?
> > 
> > Bad idea. Legitimate users connecting from dynamic IP-addresses is normal.
>
> I disagree. There is no legitimate reason a user cannot use a bonafide
> ISP to send mail.

The talk is about RELAYING mail sent with authentication
when legitimate users travel and connect from another ISP.
When you send mail from a mobile, should your relay (you use Gmail)
block you because you connected from a dynamic IP-address?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Client Authentication

2013-03-24 Thread Lena
> How about refusing to
> relay mail from addresses in a good DNSBL?

Bad idea. Legitimate users connecting from dynamic IP-addresses is normal.
DNSBLs list a dynamic IP-address permanently
or for long time after a zombied Windows spewed spam from it.
Some DNSBLs warn about that explicitly, for example:
http://www.spamhaus.org/zen/

| Caution: Because ZEN includes the XBL and PBL lists, do not use ZEN
| on smarthosts or SMTP AUTH outbound servers for your own customers
| (or you risk blocking your own customers).
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Client Authentication

2013-03-24 Thread Lena
Doug Hardie wrote:

> my outgoing mail server is being systematically attacked to try
> passwords looking for one that works.  When they do find one,
> we get inundated by spam sent through that account throughout the world.

How such spam is injected into your mail relay - via SMTP?

> most of our users are older and their computer is a hand-me-down
> so they can talk to their grandchildren.

> our users tend to travel a lot and need to be able to access mail
> from anywhere.

I bet that most of your users use Windows, many are clueless. So,
many will click a link in a letter from a known sender if the letter
contains nothing more than a link and the sender's correct signature,
possibly with a correct sender name or a few very generic words
added in Subject or body. Links in such spam lead to
drive-by exploit kits such as Blackhole which silently
(without user consent) install password-stealing trojans
such as ZeuS or SpyEye in user's Windows. These trojans also are
stealing FTP passwords (many webmasters use Windows too),
it's how the felons make pages they link to (on legitimate websites),
so content-filtering of such spam fails.
Stolen yahoo, AOL, MSN webmail passwords are used for sending such spam
via the webmail interface (with correct hostname, SPF, DKIM)
to addresses harvested from the user's webmail interface's address book
and Sent and Inbox folders.

Also, some of your users will yield to phishing.

Strong (long, complicate, unique) passwords are stolen with
Windows trojans and phishing as easily as weak ones.

You can block brute-force password guessing, but you cannot prevent
password stealing by Windows trojans and phishing.
Unfortunately, you cannot force your users to use FreeBSD or
some other free operating system instead of Windows.

But travelling users do need to send mail via SMTP.
Passwords are stolen along with username, relay hostname and port.
Second factor authentication for SMTP is more difficult
in practice than for HTTP.

So, you need to block _using_ stolen passwords by spammers.
My implementation is for Exim (instead of Postfix or sendmail):
https://github.com/Exim/exim/wiki/BlockCracking
It also blocks brute-force password guessing via SMTP, but
that's a side benefit.

Lena
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Using svn to checkout a deprecated port.

2013-02-18 Thread Lena
Christopher Sean Hilton wrote:

> I need to use svn to checkout the old "security/cfs" port

> as it existed
> on October 1st, 2011 (the port was deprecated on November 1st 2011

You can download one file at a time from
http://www.freebsd.org/cgi/cvsweb.cgi/ports/security/cfs/Attic/
and
http://www.freebsd.org/cgi/cvsweb.cgi/ports/security/cfs/files/Attic/

I tried to find how to do that with svnweb or svn
but failed.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: denyhosts, fail2ban, or something else?

2012-11-27 Thread Lena
> Finally got sick of seeing tons of ssh break-in attempts in my logs.

I invoke sshd from inetd with limit 3 connections/min in /etc/inetd.conf:

ssh stream  tcp nowait/0/3  root/usr/sbin/sshd  sshd -i -4

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Mutt and openssl from port

2009-12-13 Thread Lena
On Sat, Dec 12, 2009 at 05:55:16PM -0600, Scott Bennett wrote:

> On Sat, 12 Dec 2009 21:46:27 +0200 Lena()lena.kiev.ua wrote:
> >7.1-PRERELEASE. I'd like Mutt to use zlib compression when connecting to 
> >pop3s.
> >openssl in base doesn't support zlib. I installed openssl port from package
> >(in the port zlib in on by default), wrote in make.conf:
> >
> >WITH_OPENSSL_PORT=yes
> >
> >and `portupgrade -f mutt`. However, Mutt still uses openssl from base:
> >
> >~ $ ldd /usr/local/bin/mutt
> >/usr/local/bin/mutt:
> >libncursesw.so.7 => /lib/libncursesw.so.7 (0x28103000)
> >libssl.so.5 => /usr/lib/libssl.so.5 (0x2814f000)
> >libcrypto.so.5 => /lib/libcrypto.so.5 (0x2819)
> >libintl.so.8 => /usr/local/lib/libintl.so.8 (0x282ea000)
> >libiconv.so.3 => /usr/local/lib/libiconv.so.3 (0x282f3000)
> >libc.so.7 => /lib/libc.so.7 (0x283ea000)
>
> Right.  We tor users just went through that, too.  The problem is that
> what WITH_OPENSSL_PORT=YES does is to add -L/usr/local/lib to the cc or gcc
> command that does the link edit step.  However, that adds the desired
> directory to the *end* of the list of directories to be searched, when what
> you want is to put it at the beginning of the list.  What I ended up doing
> was to add LDFLAGS="-rpath=/usr/local/lib" to the ./configure step for tor,
> so you may want to take a look at the "make config" target to see how best
> to do that for mutt.  Be careful that the use of -rpath won't cause it to
> include libraries from /usr/local/lib instead of from the base system for
> other stuff where you might not want that to happen.

Thanks, this seems to work:

===
--- Makefile.orig   2009-02-11 21:08:46.0 +0200
+++ Makefile2009-12-13 18:05:06.0 +0200
@@ -83,9 +83,9 @@
 GNU_CONFIGURE= yes
 USE_AUTOTOOLS= automake:19 autoconf:262
 LDFLAGS+=  -L${LOCALBASE}/lib
-CONFIGURE_ENV= CC="${CC} -I${LOCALBASE}/include" LDFLAGS="${LDFLAGS}"
+CONFIGURE_ENV= CC="${CC} -I${LOCALBASE}/include" 
LDFLAGS="-rpath=/usr/local/lib ${LDFLAGS}"
 CONFIGURE_ARGS=--enable-pop --enable-imap --disable-fcntl \
-   --with-ssl=${OPENSSLBASE} --sysconfdir=${PREFIX}/etc \
+   --with-ssl=/usr/local --sysconfdir=${PREFIX}/etc \
--with-sharedir=${PREFIX}/share/mutt \
--with-docdir=${DOCSDIR} --with-charmaps \
--enable-compressed
===

~ $ ldd /usr/local/bin/mutt
/usr/local/bin/mutt:
libncursesw.so.7 => /lib/libncursesw.so.7 (0x28103000)
libssl.so.5 => /usr/local/lib/libssl.so.5 (0x2814f000)
libcrypto.so.5 => /usr/local/lib/libcrypto.so.5 (0x28193000)
libintl.so.8 => /usr/local/lib/libintl.so.8 (0x282da000)
libiconv.so.3 => /usr/local/lib/libiconv.so.3 (0x282e3000)
libc.so.7 => /lib/libc.so.7 (0x283da000)
libz.so.4 => /lib/libz.so.4 (0x284d9000)
libthr.so.3 => /lib/libthr.so.3 (0x284eb000)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Mutt and openssl from port

2009-12-12 Thread Lena
Hi,

7.1-PRERELEASE. I'd like Mutt to use zlib compression when connecting to pop3s.
openssl in base doesn't support zlib. I installed openssl port from package
(in the port zlib in on by default), wrote in make.conf:

WITH_OPENSSL_PORT=yes

and `portupgrade -f mutt`. However, Mutt still uses openssl from base:

~ $ ldd /usr/local/bin/mutt
/usr/local/bin/mutt:
libncursesw.so.7 => /lib/libncursesw.so.7 (0x28103000)
libssl.so.5 => /usr/lib/libssl.so.5 (0x2814f000)
libcrypto.so.5 => /lib/libcrypto.so.5 (0x2819)
libintl.so.8 => /usr/local/lib/libintl.so.8 (0x282ea000)
libiconv.so.3 => /usr/local/lib/libiconv.so.3 (0x282f3000)
libc.so.7 => /lib/libc.so.7 (0x283ea000)

Then I patched /usr/ports/mail/mutt/Makefile :

 CONFIGURE_ARGS=--enable-pop --enable-imap --disable-fcntl \
-   --with-ssl=${OPENSSLBASE} --sysconfdir=${PREFIX}/etc \
+   --with-ssl=/usr/local --sysconfdir=${PREFIX}/etc \

but got the same. I suppose that OPENSSL_OVERWRITE_BASE doesn't work:
http://lists.freebsd.org/pipermail/freebsd-questions/2004-November/065565.html
What can I do?

Thanks!
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Firefox3 and dependencies on firefox2,libxul,xulrunner

2009-04-23 Thread Lena
Hi,

I uninstalled firefox 2, installed firefox 3 and use it. Later,
portupgrade of librsvg2 began to build firefox 2 (I aborted it with ^C).
Then I specified

"graphics/librsvg2" => "WITH_GECKO=xulrunner",

in MAKE_ARGS in /usr/local/etc/pkgtools.conf . Now I'm trying to portupgrade
mplayer-plugin, it also tried to build firefox 2. I tried

"www/mplayer-plugin" => "WITH_GECKO=xulrunner",

but that gave an error message (xulrunner isn't an option). So, I tried

"www/mplayer-plugin" => "WITH_GECKO=libxul",

then:

> ===>  libxul-1.9.0.7_3 conflicts with installed package(s):
>   xulrunner-1.8.0.4_15
>
>   They install files into the same place.
>   Please remove them first with pkg_delete(1).

What to do - to allow firefox2 to be installed along with firefox3?
Will they conflict?

Is Gecko a really necessary dependence of librsvg2 and mplayer-plugin
if they are invoked only from firefox3?  For what?

7.1-PRERELEASE (Oct 20) i386, linux_base-f8-8_11.

Thanks.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: PAM error: error in service module

2008-04-25 Thread Lena
P.S.  I posted:

> I'm trying to set up Exim in a jail to authenticate using the
> security/pam_pop3 port.

Exim runs not as root when authenticating, so neither Exim nor PAM it called
can read master.passwd, it's why I need pam_pop3.

> /etc/pam.d/exim contains one line:
> 
> auth required /usr/local/lib/pam_pop3.so hostname=localhost debug 
> pwprompt=Password: timeout=5

> How can I debug further?

I tried strace and truss unsuccessfully because mount_procfs
is forbidden inside the jail. Then I used ktrace and saw that
/etc/pam.d/other is read. Then I googled for `pam_pop3 pam.d`,
saw http://xmailforum.homelinux.net/index.php?showtopic=2354
and added second line to /etc/pam.d/exim :

account required pam_permit.so

That solved the problem.

Sorry for bothering the list. I hope that this recipe will be searchable.

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


PAM error: error in service module

2008-04-25 Thread Lena
Hi,

I'm trying to set up Exim in a jail to authenticate using the
security/pam_pop3 port. Exim authenticator:

plain:
  driver = plaintext
  public_name = PLAIN
  server_prompts = :
  server_condition = ${if pam{$auth2:${sg{$auth3}{:}{::
  server_set_id = $2

The jail hasn't /etc/pam.conf file, /etc/pam.d/exim contains one line:

auth required /usr/local/lib/pam_pop3.so hostname=localhost debug 
pwprompt=Password: timeout=5

Exim correctly passes the login (email address) and password to pam_pop3
(they are visible in /var/log/debug.log), pam_pop3 asks the POP3 server
and gets the +OK response (password correct):

Apr 25 17:22:41 lena PAM-pop3[24639]: Received Password Response: +OK^M
Apr 25 17:22:41 lena PAM-pop3[24639]: Sent QUITting: QUIT ^M
Apr 25 17:22:41 lena PAM-pop3[24639]: Authentication Succeeded for 
(username)@(domain) at server localhost port 110

But then Exim gets the error (output of `exim -d+auth -bh 62.80.174.195`,
I masked the login and password):

$auth1 =
$auth2 = (username)@(domain)
$auth3 = (password)
$1 =
$2 = (username)@(domain)
$3 = (password)
Running PAM authentication for user "(username)@(domain)"
PAM error: error in service module
expansion failed: error in service module
SMTP>> 435 Unable to authenticate at present

Nothing in /var/log/messages,auth.log.
uname -a
FreeBSD lena.kiev.ua 6.3-STABLE FreeBSD 6.3-STABLE #0: Mon Mar 24 08:01:01 CET 
2008 root()dione.ispsystem.net:/root/src/sys/i386/compile/ISPSYSTEM_PAE  
i386

On another machine - my 6.2-RELEASE-p1 workstation:
/usr/src # fgrep -r -B 1 'error in service module' *
contrib/openpam/lib/pam_strerror.c- case PAM_SERVICE_ERR:
contrib/openpam/lib/pam_strerror.c: return ("error in service 
module");
/usr/src # fgrep -r 'PAM_SERVICE_ERR' * | wc -l
  85

I have root access only inside the jail (it's VPS/VDS).
How can I debug futher?

Thanks,

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


Re: where to find old ports.tar.gz files

2008-02-03 Thread Lena
> I need to get wine 0.9.37 to 0.9.39 ports build structure, mainly the 
> ports/emulatoes/wine/Makefile

http://www.freebsd.org/cgi/cvsweb.cgi/ports/emulators/wine/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: where to find old ports.tar.gz files

2008-02-03 Thread Lena
> >>I need to get wine 0.9.37 to 0.9.39 ports build structure, mainly the 
> >>ports/emulatoes/wine/Makefile
> >
> >http://www.freebsd.org/cgi/cvsweb.cgi/ports/emulators/wine/
> >
> The page can select only tags with released FreeBSD version.
> Is there any way to select an intermediate version (tag)?

Don't select tags. Click the "Makefile" link.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: How to downgrade from xorg-7.3 to xorg-7.2 ...

2007-09-25 Thread Lena
> Date: Sat, 22 Sep 2007 15:38:25 +0200
> From: Mel <[EMAIL PROTECTED]>

> > I recently upgraded to xorg-7.3

> > how can I safely downgrade back to xorg-7.2?

> If you still have xorg-7.2 packages this is the fastest:
> (cd /usr/ports/x11/xorg && make all-depends-list)|xargs pkg_delete -f
> env PKGDIR=/path/to/packages/All pkg_add /path/to/packages/All/xorg-7.2.tbz

Will following work right?

cd /usr/ports/x11/xorg
make all-depends-list | xargs pkg_delete -f
cd /usr/ports/packages/All
fetch 
ftp://ftp2.ua.FreeBSD.org/pub/FreeBSD/ports/i386/packages-6-stable/All/xorg-7.2.tbz
pkg_add -r xorg-7.2.tbz

> Unfortunately since the xorg-modular joy[1] there's no good way to make 
> portupgrade ignore an upgrade via HOLD_PKGS, so you need to go back to manual 
> upgrading, deciding port by port what you can upgrade and don't use -R or -r 
> in case a dep on X is pulled in.

Thanks,

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


Re: How to downgrade from xorg-7.3 to xorg-7.2 ...

2007-09-25 Thread Lena
On Sat, 22 Sep,  Mel <[EMAIL PROTECTED]> wrote:

> > I recently upgraded to xorg-7.3

> > how can I safely downgrade back to xorg-7.2?

> If you still have xorg-7.2 packages this is the fastest:
> (cd /usr/ports/x11/xorg && make all-depends-list)|xargs pkg_delete -f
> env PKGDIR=/path/to/packages/All pkg_add /path/to/packages/All/xorg-7.2.tbz

Will following work right?

cd /usr/ports/x11/xorg
make all-depends-list | xargs pkg_delete -f
cd /usr/ports/packages/All
fetch 
ftp://ftp2.ua.FreeBSD.org/pub/FreeBSD/ports/i386/packages-6-stable/All/xorg-7.2.tbz
pkg_add -r xorg-7.2.tbz

> Unfortunately since the xorg-modular joy[1] there's no good way to make 
> portupgrade ignore an upgrade via HOLD_PKGS, so you need to go back to manual 
> upgrading, deciding port by port what you can upgrade and don't use -R or -r 
> in case a dep on X is pulled in.

Thanks,

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


Re: Conflict of linux-realplayer dependencies

2006-11-05 Thread Lena
> > after this commit (October 26) linux-realplayer depends on
> > linux-gtk2 and linux-gdk-pixbuf which _seem_ to conflict with each other.
> > What should I do?  I very much doubt that deleting linux-gtk2 is right
> > approach.

> I am experiencing the same problem. Deleting Linux-gtk2 definitely does not 
> appear to be the way to go. Let me know if you find a solution.

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

The PR is open and not commented by anybody yet.
So far I haven't tested it, I rarely need the linux-realplayer plugin,
just wanted to upgrade mplayerplug-in which depends on linux-realplayer.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Conflict of linux-realplayer dependencies

2006-11-04 Thread Lena
Hi,

On 6.1-RELEASE-p2 (i386) I'm trying  portupgrade -vR linux-realplayer
(just after cvsup of ports and 'make fetchindex') and get:

> ===>  Installing for linux-realplayer-10.0.7.785.20060201_1
> ===>   linux-realplayer-10.0.7.785.20060201_1 depends on file: 
> /compat/linux/usr/lib/libgtk-x11-2.0.so.0 - found
> ===>   linux-realplayer-10.0.7.785.20060201_1 depends on file: 
> /compat/linux/usr/lib/libpng12.so.0 - found
> ===>   linux-realplayer-10.0.7.785.20060201_1 depends on file: 
> /compat/linux/usr/lib/gdk-pixbuf/loaders/libpixbufloader-png.so - not found
> ===>Verifying reinstall for 
> /compat/linux/usr/lib/gdk-pixbuf/loaders/libpixbufloader-png.so in 
> /usr/ports/graphics/linux-gdk-pixbuf
> ===>  Vulnerability check disabled, database not found
> ===>  Extracting for linux-gdk-pixbuf-0.22.0.18.fc4.2
> => MD5 Checksum OK for rpm/i386/fedora/4/gdk-pixbuf-0.22.0-18.fc4.2.i386.rpm.
> => SHA256 Checksum OK for 
> rpm/i386/fedora/4/gdk-pixbuf-0.22.0-18.fc4.2.i386.rpm.
> ===>   linux-gdk-pixbuf-0.22.0.18.fc4.2 depends on file: 
> /usr/local/bin/rpm2cpio - found
> ===>  Patching for linux-gdk-pixbuf-0.22.0.18.fc4.2
> ===>  Configuring for linux-gdk-pixbuf-0.22.0.18.fc4.2
> ===>  Installing for linux-gdk-pixbuf-0.22.0.18.fc4.2
>
> ===>  linux-gdk-pixbuf-0.22.0.18.fc4.2 conflicts with installed package(s): 
>   linux-gtk2-2.6.10
>
>   They install files into the same place.
>   Please remove them first with pkg_delete(1).
> *** Error code 1
> Stop in /usr/ports/graphics/linux-gdk-pixbuf.

I found on
http://www.freebsd.org/cgi/getmsg.cgi?fetch=640942+0+/usr/local/www/db/text/2006/cvs-all/20061029.cvs-all

> mi  2006-10-26 19:51:56 UTC
>
>  FreeBSD ports repository
>
>  Modified files:
>multimedia/linux-realplayer Makefile 
>  Log:
>  Add two more run-time dependencies to ensure, the installed realplay
>  works "out of the box".
>  
>  Approved by:portmgr (erwin)
>  
>  Revision  ChangesPath
>  1.46  +3 -1  ports/multimedia/linux-realplayer/Makefile
http://cvsweb.FreeBSD.org//ports/multimedia/linux-realplayer/Makefile.diff?r1=1.45&r2=1.46

There:

> -RUN_DEPENDS= 
> ${LINUXBASE}/usr/lib/libgtk-x11-2.0.so.0:${PORTSDIR}/x11-toolkits/linux-gtk2
> +RUN_DEPENDS= 
> ${LINUXBASE}/usr/lib/libgtk-x11-2.0.so.0:${PORTSDIR}/x11-toolkits/linux-gtk2 \
> + 
> ${LINUXBASE}/usr/lib/libpng12.so.0:${PORTSDIR}/graphics/linux-png \
> + 
> ${LINUXBASE}/usr/lib/gdk-pixbuf/loaders/libpixbufloader-png.so:${PORTSDIR}/graphics/linux-gdk-pixbuf

So, after this commit (October 26) linux-realplayer depends on
linux-gtk2 and linux-gdk-pixbuf which _seem_ to conflict with each other.
What should I do?  I very much doubt that deleting linux-gtk2 is right approach.

Also, need I post this elsewhere (or send-pr)?

Thanks,

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


Obsolete packages

2006-04-24 Thread Lena
Hi,

A new version of a port (www/firefox) was released on April 14.

# portversion -v firefox
firefox-1.5.0.1,1   <  needs updating (port has 1.5.0.2,1)

But packages still (on April 24) are of previous version:

$ ftp ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/
ftp> dir packages-5-stable/All/firefox-1*
-rw-r--r--1 110  011188636 Apr 01 16:29 firefox-1.5.0.1_2,1.tbz
ftp> dir packages-6-stable/All/firefox-1*
-rw-r--r--1 110  011511879 Apr 02 10:21 firefox-1.5.0.1_2,1.tbz
ftp> dir packages-7-current/All/firefox-1*
-rw-r--r--1 110  011511428 Apr 03 04:40 firefox-1.5.0.1_2,1.tbz

Is something broken or is there insufficient computing power for
building new packages more often?

Thanks,

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


How to reinitialize psm0 without reboot?

2006-03-25 Thread Lena
Hi,

A hardware glitch of an (optical) PS/2 mouse can cause the mouse pointer
to freeze. Subsequent "killall -HUP moused" gives:

Mar 23 09:11:34 bedside kernel: psm0: failed to reset the aux device.
Mar 23 09:11:34 bedside kernel: psm0: the aux device has gone! (reinitialize).

or:

Mar 23 10:48:27 bedside kernel: psm0: failed to disable the device (psmclose).
Mar 23 10:48:28 bedside kernel: psm0: failed to get status (psmclose).
Mar 23 10:48:28 bedside kernel: psm0: failed to enable the device (doopen).
Mar 23 10:48:28 bedside moused: unable to open /dev/psm0: Input/output error

and attempts to start moused again fail:

Mar 23 09:13:04 bedside moused: unable to open /dev/psm0: Device not configured

How to reinitialize/configure /dev/psm0 without reboot?
5.4-RELEASE-p3 with some security patches.

Thanks,

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