diff options
author | cpiazza <cpiazza@FreeBSD.org> | 1999-08-25 13:18:43 +0800 |
---|---|---|
committer | cpiazza <cpiazza@FreeBSD.org> | 1999-08-25 13:18:43 +0800 |
commit | 64dd5c81c605e5f0d42a53885b6d99c64adc0964 (patch) | |
tree | 467d634506cd42436ecbe53f4181c21cb6ab2743 | |
parent | f266e39f7027ac51326098abda3b08fd06fa770d (diff) | |
download | freebsd-ports-gnome-64dd5c81c605e5f0d42a53885b6d99c64adc0964.tar.gz freebsd-ports-gnome-64dd5c81c605e5f0d42a53885b6d99c64adc0964.tar.zst freebsd-ports-gnome-64dd5c81c605e5f0d42a53885b6d99c64adc0964.zip |
Pass ${LOCALBASE}/(lib,include) as CPPFLAGS/LDFLAGS so installing
into another prefix will find libjpeg.
Most (if not all) of the kde ports will similarly have to be changed.
-rw-r--r-- | x11/kdelibs11/Makefile | 6 | ||||
-rw-r--r-- | x11/kdelibs2/Makefile | 6 | ||||
-rw-r--r-- | x11/kdelibs3/Makefile | 6 | ||||
-rw-r--r-- | x11/kdelibs4/Makefile | 6 |
4 files changed, 12 insertions, 12 deletions
diff --git a/x11/kdelibs11/Makefile b/x11/kdelibs11/Makefile index 7855bf2dac22..a767f61b5573 100644 --- a/x11/kdelibs11/Makefile +++ b/x11/kdelibs11/Makefile @@ -3,7 +3,7 @@ # Date created: 28 October 1997 # Whom: Stefan Eßer <se@freebsd.org> # -# $Id: Makefile,v 1.29 1999/02/28 21:48:09 asami Exp $ +# $Id: Makefile,v 1.30 1999/05/03 22:29:31 se Exp $ # DISTNAME= kdelibs-1.1.1 @@ -25,9 +25,9 @@ CONFIGURE_ARGS= "--prefix=$(PREFIX)" \ "--with-extra-includes=${PREFIX}/include" \ "--x-inc=$(X11BASE)/include" \ "--x-lib=$(X11BASE)/lib" -CONFIGURE_ENV= CXXFLAGS="${CFLAGS}" +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${PREFIX}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" USE_GMAKE= yes -CFLAGS+= "-I$(PREFIX)/include" .include <bsd.port.pre.mk> diff --git a/x11/kdelibs2/Makefile b/x11/kdelibs2/Makefile index 7855bf2dac22..a767f61b5573 100644 --- a/x11/kdelibs2/Makefile +++ b/x11/kdelibs2/Makefile @@ -3,7 +3,7 @@ # Date created: 28 October 1997 # Whom: Stefan Eßer <se@freebsd.org> # -# $Id: Makefile,v 1.29 1999/02/28 21:48:09 asami Exp $ +# $Id: Makefile,v 1.30 1999/05/03 22:29:31 se Exp $ # DISTNAME= kdelibs-1.1.1 @@ -25,9 +25,9 @@ CONFIGURE_ARGS= "--prefix=$(PREFIX)" \ "--with-extra-includes=${PREFIX}/include" \ "--x-inc=$(X11BASE)/include" \ "--x-lib=$(X11BASE)/lib" -CONFIGURE_ENV= CXXFLAGS="${CFLAGS}" +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${PREFIX}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" USE_GMAKE= yes -CFLAGS+= "-I$(PREFIX)/include" .include <bsd.port.pre.mk> diff --git a/x11/kdelibs3/Makefile b/x11/kdelibs3/Makefile index 7855bf2dac22..a767f61b5573 100644 --- a/x11/kdelibs3/Makefile +++ b/x11/kdelibs3/Makefile @@ -3,7 +3,7 @@ # Date created: 28 October 1997 # Whom: Stefan Eßer <se@freebsd.org> # -# $Id: Makefile,v 1.29 1999/02/28 21:48:09 asami Exp $ +# $Id: Makefile,v 1.30 1999/05/03 22:29:31 se Exp $ # DISTNAME= kdelibs-1.1.1 @@ -25,9 +25,9 @@ CONFIGURE_ARGS= "--prefix=$(PREFIX)" \ "--with-extra-includes=${PREFIX}/include" \ "--x-inc=$(X11BASE)/include" \ "--x-lib=$(X11BASE)/lib" -CONFIGURE_ENV= CXXFLAGS="${CFLAGS}" +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${PREFIX}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" USE_GMAKE= yes -CFLAGS+= "-I$(PREFIX)/include" .include <bsd.port.pre.mk> diff --git a/x11/kdelibs4/Makefile b/x11/kdelibs4/Makefile index 7855bf2dac22..a767f61b5573 100644 --- a/x11/kdelibs4/Makefile +++ b/x11/kdelibs4/Makefile @@ -3,7 +3,7 @@ # Date created: 28 October 1997 # Whom: Stefan Eßer <se@freebsd.org> # -# $Id: Makefile,v 1.29 1999/02/28 21:48:09 asami Exp $ +# $Id: Makefile,v 1.30 1999/05/03 22:29:31 se Exp $ # DISTNAME= kdelibs-1.1.1 @@ -25,9 +25,9 @@ CONFIGURE_ARGS= "--prefix=$(PREFIX)" \ "--with-extra-includes=${PREFIX}/include" \ "--x-inc=$(X11BASE)/include" \ "--x-lib=$(X11BASE)/lib" -CONFIGURE_ENV= CXXFLAGS="${CFLAGS}" +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${PREFIX}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" USE_GMAKE= yes -CFLAGS+= "-I$(PREFIX)/include" .include <bsd.port.pre.mk> |