From owner-svn-ports-all@freebsd.org Wed Nov 11 21:04:38 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CB74BA2AC69; Wed, 11 Nov 2015 21:04:38 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7CBBB19AC; Wed, 11 Nov 2015 21:04:38 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tABL4b0F045860; Wed, 11 Nov 2015 21:04:37 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tABL4b3j045859; Wed, 11 Nov 2015 21:04:37 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201511112104.tABL4b3j045859@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Wed, 11 Nov 2015 21:04:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r401297 - head/databases/firebird25-server X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Nov 2015 21:04:38 -0000 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