diff options
author | itetcu <itetcu@FreeBSD.org> | 2009-06-04 17:05:11 +0800 |
---|---|---|
committer | itetcu <itetcu@FreeBSD.org> | 2009-06-04 17:05:11 +0800 |
commit | 2409785694344610b1fd13e324b6e5bb66940a0f (patch) | |
tree | d84e30c7bcbd8b69924bf2c537f29b8c950f0ea9 | |
parent | 6d27ae4826943817497f00abe291395107425e3a (diff) | |
download | freebsd-ports-gnome-2409785694344610b1fd13e324b6e5bb66940a0f.tar.gz freebsd-ports-gnome-2409785694344610b1fd13e324b6e5bb66940a0f.tar.zst freebsd-ports-gnome-2409785694344610b1fd13e324b6e5bb66940a0f.zip |
Fix build with custom LOCALBASE.
Reported by: QATty
-rw-r--r-- | deskutils/ktagebuch/Makefile | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/deskutils/ktagebuch/Makefile b/deskutils/ktagebuch/Makefile index 978cb05f173f..71b86b8efd09 100644 --- a/deskutils/ktagebuch/Makefile +++ b/deskutils/ktagebuch/Makefile @@ -6,7 +6,7 @@ PORTNAME= ktagebuch PORTVERSION= 0.74 -PORTREVISION= 5 +PORTREVISION= 5 CATEGORIES= deskutils kde MASTER_SITES= http://www.theblessing.net/programming/${PORTNAME}/ @@ -21,9 +21,13 @@ USE_KDELIBS_VER= 3 USE_BZIP2= yes USE_GMAKE= yes USE_AUTOTOOLS= libtool:15 -USE_LDCONFIG= yes -INSTALLS_ICONS= yes -USE_GETTEXT= yes +USE_LDCONFIG= yes +INSTALLS_ICONS= yes +USE_GETTEXT= yes + +CONFIGURE_ARGS+= --with-sqlite \ + --with-sqlite-incdir=${LOCALBASE}/include \ + --with-sqlite-libdir=${LOCALBASE}/lib DOCSDIR= share/doc/HTML |