Date: Mon, 18 Dec 2006 11:09:03 +0000 From: Tim Bishop <tdb@FreeBSD.org> To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/106865: editors/koffice-kde3: Fix build when alternate LOCALBASE used Message-ID: <E1GwGMh-000PAM-Od@pendennis.kent.ac.uk> Resent-Message-ID: <200612181200.kBIC0ZKB097551@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 106865 >Category: ports >Synopsis: editors/koffice-kde3: Fix build when alternate LOCALBASE used >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 18 12:00:34 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Tim Bishop >Release: FreeBSD 6.2-PRERELEASE i386 >Organization: >Environment: System: FreeBSD pendennis.kent.ac.uk 6.2-PRERELEASE FreeBSD 6.2-PRERELEASE #3: Wed Nov 29 16:26:58 GMT 2006 tdb@pendennis.kent.ac.uk:/u2/obj/usr/src/sys/PENDENNIS i386 >Description: When an alternate LOCALBASE is used the configure script fails to detect the PostgreSQL C++ libraries. It has explicitly nailed paths to check which happen to include the default LOCALBASE, so this only happens when an alternate LOCALBASE is set. >How-To-Repeat: >Fix: Give paths for the PostgreSQL C++ libraries to the configure script, just like the PostgreSQL libraries. --- koffice-kde3.diff begins here --- Index: koffice-kde3/Makefile =================================================================== RCS file: /home/pcvs/ports/editors/koffice-kde3/Makefile,v retrieving revision 1.93 diff -u -r1.93 Makefile --- koffice-kde3/Makefile 12 Sep 2006 23:26:15 -0000 1.93 +++ koffice-kde3/Makefile 18 Dec 2006 00:24:14 -0000 @@ -46,7 +46,9 @@ .include <bsd.port.pre.mk> CONFIGURE_ARGS+=--with-pgsqlincdir=${LOCALBASE}/include \ - --with-pgsqllibdir=${LOCALBASE}/lib + --with-pgsqllibdir=${LOCALBASE}/lib \ + --with-pqxx-includes=${LOCALBASE}/include \ + --with-pqxx-libraries=${LOCALBASE}/lib .if ${OSVERSION} < 500035 EXTRA_PATCHES= ${PATCHDIR}/extrapatch-kexi-main-keximainwindowimpl.cpp --- koffice-kde3.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?E1GwGMh-000PAM-Od>