Date: Wed, 29 Nov 2000 19:53:32 -0500 (EST) From: "Donald J. Maddox" <dmaddox@sc.rr.com> To: FreeBSD-gnats-submit@freebsd.org Subject: ports/23184: Fetchmail port has a broken dependency when WITH_X11 is defined Message-ID: <200011300053.eAU0rWp70958@cae88-102-101.sc.rr.com>
next in thread | raw e-mail | index | archive | help
>Number: 23184 >Category: ports >Synopsis: Fetchmail port has a broken dependency when WITH_X11 defined >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Nov 29 17:00:05 PST 2000 >Closed-Date: >Last-Modified: >Originator: Donald J. Maddox >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD cae88-102-101.sc.rr.com 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Tue Nov 21 10:21:43 EST 2000 root@cae88-102-101.sc.rr.com:/usr/src/sys/compile/RHIANNON i386 >Description: The fetchmail port has a RUN_DEPENDS on py-tkinter when WITH_X11 is defined. It checks for a py-tkinter installation by looking for ${LOCALBASE}/lib/python1.5/site-packages/_tkinter.so. Unfortunately, the py-tkinter port actually uses python-2.0, not python-1.5, so this dependency test can never succeed. >How-To-Repeat: $ cd /usr/ports/mail/fetchmail $ make -DWITH_X11 install >Fix: --- Makefile.orig Sun Nov 26 20:00:19 2000 +++ Makefile Wed Nov 29 19:37:16 2000 @@ -19,7 +19,7 @@ LIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext .if defined(WITH_X11) -RUN_DEPENDS= ${LOCALBASE}/lib/python1.5/site-packages/_tkinter.so:${PORTSDIR}/x11-toolkits/py-tkinter +RUN_DEPENDS= ${LOCALBASE}/lib/python2.0/site-packages/_tkinter.so:${PORTSDIR}/x11-toolkits/py-tkinter .endif GNU_CONFIGURE= yes >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200011300053.eAU0rWp70958>