aboutsummaryrefslogtreecommitdiffstats
path: root/databases/sqlite3
diff options
context:
space:
mode:
authorlwhsu <lwhsu@FreeBSD.org>2010-08-19 06:02:12 +0800
committerlwhsu <lwhsu@FreeBSD.org>2010-08-19 06:02:12 +0800
commit5ad835981d8ec373f37c0214066f78609a944906 (patch)
treea6e9f2a90e64854a9cc8e32dee93209119ad312f /databases/sqlite3
parent086a175e4b097c12120179c60c2fad04ea2c0be1 (diff)
downloadfreebsd-ports-gnome-5ad835981d8ec373f37c0214066f78609a944906.tar.gz
freebsd-ports-gnome-5ad835981d8ec373f37c0214066f78609a944906.tar.zst
freebsd-ports-gnome-5ad835981d8ec373f37c0214066f78609a944906.zip
- Fix 'make package' when NO_INSTALL_MANPAGES is defined
PR: ports/146083 Submitted by: Sunpoet Po-Chuan Hsieh <sunpoet AT sunpoet.net> Approved by: Pavel I Volkov <pol AT opk.ru> (maintainer)
Diffstat (limited to 'databases/sqlite3')
-rw-r--r--databases/sqlite3/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/databases/sqlite3/Makefile b/databases/sqlite3/Makefile
index 31d8c09b4113..d02bb57a0f47 100644
--- a/databases/sqlite3/Makefile
+++ b/databases/sqlite3/Makefile
@@ -27,8 +27,6 @@ CONFIGURE_ENV+= TCLSH_CMD="${TCLSH}" \
TCLLIBDIR="${PREFIX}/lib/${PORTNAME}" \
ac_cv_search_pthread_create=""
-MAN1= sqlite3.1
-
OPTIONS= DEBUG "Enable debugging & verbose explain" off \
FTS3 "Enable FTS3 (Full Text Search) module" off \
RTREE "Enable R*Tree module" off \
@@ -40,6 +38,10 @@ OPTIONS= DEBUG "Enable debugging & verbose explain" off \
.include <bsd.port.pre.mk>
+.if !defined(NO_INSTALL_MANPAGES)
+MAN1= sqlite3.1
+.endif
+
.if ${OSVERSION} < 700000
EXTRA_PATCHES+= ${FILESDIR}/pthread_equal_stub
.endif