diff options
author | R. Imura <imura@FreeBSD.org> | 2000-10-23 16:09:07 +0000 |
---|---|---|
committer | R. Imura <imura@FreeBSD.org> | 2000-10-23 16:09:07 +0000 |
commit | 9fbd04e5bf4c4fafb72c0e31d6f175f612c9a497 (patch) | |
tree | aa925fdff2f73da8688898e9ddcdea576e07ab8d /x11/kdebase11 | |
parent | Remove ruby-[qt/kde]-i18n, because kde-i18n is no longer exist. (diff) |
Make it PREFIX-safe.
Submitted by: will
Diffstat (limited to 'x11/kdebase11')
-rw-r--r-- | x11/kdebase11/Makefile | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/x11/kdebase11/Makefile b/x11/kdebase11/Makefile index 9720f2fd4906..5ca75955bf44 100644 --- a/x11/kdebase11/Makefile +++ b/x11/kdebase11/Makefile @@ -28,13 +28,23 @@ USE_BZIP2= yes USE_QT= yes USE_GMAKE= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-xdmdir=${X11BASE}/lib/X11/xdm +CONFIGURE_ARGS= --with-qt-includes=${QTDIR}/include/X11/qt \ + --with-extra-includes=${LOCALBASE}/include \ + --with-extra-libs=${LOCALBASE}/lib \ + --with-xdmdir=${X11BASE}/lib/X11/xdm CONFIGURE_ENV= CXXFLAGS="$(CFLAGS) -DHAVE_GETUSERSHELL -DTIME_WITH_SYS_TIME" \ INSTALL_SCRIPT="install -c -m 555" PATH="${PATH}:${X11BASE}/bin" \ - RUN_KAPPFINDER="no" + RUN_KAPPFINDER="no" \ + QTDIR=${QTDIR} MAKE_ENV= RM=${RM} CFLAGS+= "-I$(PREFIX)/include" +.if defined(PREFIX) +QTDIR?= ${PREFIX} +.else +QTDIR?= ${X11BASE} +.endif + pre-patch: @${CP} ${FILESDIR}/ja.kimap ${WRKSRC}/kikbd/maps |