svn commit: r401297 - head/databases/firebird25-server
Jung-uk Kim
jkim at FreeBSD.org
Wed Nov 11 21:04:38 UTC 2015
Author: jkim
Date: Wed Nov 11 21:04:37 2015
New Revision: 401297
URL: https://svnweb.freebsd.org/changeset/ports/401297
Log:
Fix dependencies again since r401229 partially reverted r398897, which was
my attempt to remove redundant libedit.so from dependencies for server.
However, it was incomplete because BUILD_DEPENDS was left for configure.
Now firebird25-server does not directly require devel/libedit any more.
Modified:
head/databases/firebird25-server/Makefile
Modified: head/databases/firebird25-server/Makefile
==============================================================================
--- head/databases/firebird25-server/Makefile Wed Nov 11 21:03:07 2015 (r401296)
+++ head/databases/firebird25-server/Makefile Wed Nov 11 21:04:37 2015 (r401297)
@@ -3,7 +3,7 @@
PORTNAME= firebird
PORTVERSION= 2.5.4
-PORTREVISION= 2
+PORTREVISION= 3
CATEGORIES?= databases
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION:S/.0//}-Release/
PKGNAMESUFFIX?= ${PORTVERSION:R:S/.//}-server
@@ -24,12 +24,11 @@ LICENSE_PERMS_IPL= dist-mirror dist-sell
LIB_DEPENDS= libicuuc.so:${PORTSDIR}/devel/icu
-USES= gmake libedit pkgconfig tar:bzip2
+USES= gmake pkgconfig tar:bzip2
GNU_CONFIGURE= yes
MAKE_JOBS_UNSAFE= yes
-CONFIGURE_ARGS= --with-system-editline \
- --with-system-icu \
+CONFIGURE_ARGS= --with-system-icu \
--prefix=${LOCALSTATEDIR} \
--exec-prefix=${PREFIX} \
--with-fbconf=${PREFIX}/${CONFDIR} \
@@ -44,8 +43,7 @@ CONFIGURE_ARGS= --with-system-editline \
--with-fbudf=${LIBEXECDIR}/UDF
CONFIGURE_ENV+= PTHREAD_LIBS="-lpthread" \
ac_cv_header_atomic_ops_h="no" \
- ac_cv_lib_atomic_ops_main="no" \
- ac_cv_lib_edit_readline="yes"
+ ac_cv_lib_atomic_ops_main="no"
LOCALSTATEDIR= /var/db/firebird
CONFDIR= etc/firebird
@@ -76,7 +74,7 @@ IGNORE= your system does not support sy
# Server part stuff
LIB_DEPENDS+= libfbembed.so:${PORTSDIR}/databases/firebird25-client
-CONFIGURE_ARGS+=--enable-superserver
+CONFIGURE_ARGS+=--enable-superserver --without-editline
ALL_TARGET= firebird_embedded firebird_server
@@ -92,6 +90,11 @@ UDF_SQL= src/extlib/ib_udf2.sql src/extl
PKGINSTALL?= ${PKGDIR}/pkg-install-server
.else
# Client part stuff
+LIB_DEPENDS+= libedit.so.0:${PORTSDIR}/devel/libedit
+
+CONFIGURE_ARGS+= --with-system-editline
+CONFIGURE_ENV+= ac_cv_lib_edit_readline="yes"
+
ALL_TARGET= firebird_basic libfbembed libfbclient embed_isql embed_gpre \
embed_gdef embed_qli extlib
More information about the svn-ports-head
mailing list