From owner-svn-ports-all@FreeBSD.ORG Sun Mar 24 04:35:30 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 8AABF305; Sun, 24 Mar 2013 04:35:30 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 6E188BFD; Sun, 24 Mar 2013 04:35:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2O4ZUI4021864; Sun, 24 Mar 2013 04:35:30 GMT (envelope-from acm@svn.freebsd.org) Received: (from acm@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2O4ZTxY021857; Sun, 24 Mar 2013 04:35:29 GMT (envelope-from acm@svn.freebsd.org) Message-Id: <201303240435.r2O4ZTxY021857@svn.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Sun, 24 Mar 2013 04:35:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r315093 - in head/databases/firebird25-server: . files 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.14 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: Sun, 24 Mar 2013 04:35:30 -0000 Author: acm Date: Sun Mar 24 04:35:29 2013 New Revision: 315093 URL: http://svnweb.freebsd.org/changeset/ports/315093 Log: - Update to 2.0.7 - Move files/pkg-install.in to pkg-install - Add new warning message when it is building as root - Remove obsolete patch files - Fix installation of fbintl.conf to ${PREFIX}/etc/firebird [1]. PR: 176191 [1] Submitted by: Jose Jachuf Added: head/databases/firebird25-server/files/patch-builds-posix_empty.vers (contents, props changed) head/databases/firebird25-server/pkg-install - copied, changed from r315090, head/databases/firebird25-server/files/pkg-install.in Deleted: head/databases/firebird25-server/files/pkg-install.in Modified: head/databases/firebird25-server/Makefile head/databases/firebird25-server/distinfo Modified: head/databases/firebird25-server/Makefile ============================================================================== --- head/databases/firebird25-server/Makefile Sun Mar 24 04:30:30 2013 (r315092) +++ head/databases/firebird25-server/Makefile Sun Mar 24 04:35:29 2013 (r315093) @@ -2,12 +2,12 @@ # $FreeBSD$ PORTNAME= firebird -PORTVERSION= 2.5.1 -PORTREVISION?= 2 +PORTVERSION= 2.5.2 +PORTREVISION?= 0 CATEGORIES?= databases MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION:S/.0//}-Release/ PKGNAMESUFFIX?= -server -DISTNAME= ${PORTNAME:S/f/F/}-${PORTVERSION}.26351-0 +DISTNAME= ${PORTNAME:S/f/F/}-${PORTVERSION}.26539-0 DIST_SUBDIR= ${PORTNAME} MAINTAINER= acm@FreeBSD.org @@ -30,7 +30,7 @@ CONFIGURE_ARGS= --with-system-editline \ --with-fbconf=${CONFDIR} \ --with-fbglock=${LOCALSTATEDIR} \ --with-fbhelp=${LOCALSTATEDIR}/help \ - --with-fbintl=${LIBEXECDIR}/intl \ + --with-fbintl=${CONFDIR}/intl \ --with-fblog=${LOCALSTATEDIR} \ --with-fbmsg=${DATADIR} \ --with-fbplugins=${LIBEXECDIR}/plugins \ @@ -75,7 +75,7 @@ LIB_DEPENDS+= fbembed.2:${PORTSDIR}/data ALL_TARGET= firebird_embedded USE_RC_SUBR= firebird -SUB_FILES= pkg-install pkg-message +SUB_FILES= pkg-message UTIL_SBIN= fb_inet_server fb_lock_print fb_smp_server UTIL_BIN= fbguard fbsplit fbstat fbsvcmgr fbtracemgr gbak gdef gfix gsec \ @@ -129,9 +129,9 @@ post-install: .ifndef WITHOUT_IPC_CLEANUP pre-build: .ifndef PACKAGE_BUILDING - @if [ `${ID} -u` -eq 0 ]; then \ - ${ECHO_MSG} "==> Please do not build ${PORTNAME} as 'root' because this may cause conflicts with SysV semaphores of running services."; exit 1; fi + @${SETENV} PKG_PREFIX="${PREFIX}" ${SH} ${PKGINSTALL} ${PORTNAME} PRE-INSTALL .endif + ${MAKE} -C ${WRKSRC}/extern/btyacc [ -f ${WRKDIR}/ipcs.pre.build ] || ${IPCS_CMD} -s | ${TAIL} -n +3 | \ ${GREP} -F `${ID} -un` | ${CAT} > ${WRKDIR}/ipcs.pre.build Modified: head/databases/firebird25-server/distinfo ============================================================================== --- head/databases/firebird25-server/distinfo Sun Mar 24 04:30:30 2013 (r315092) +++ head/databases/firebird25-server/distinfo Sun Mar 24 04:35:29 2013 (r315093) @@ -1,2 +1,2 @@ -SHA256 (firebird/Firebird-2.5.1.26351-0.tar.bz2) = c4d236e7a9ab3ca00df3faca80f55175d11052637369c877b3e22cd377edb813 -SIZE (firebird/Firebird-2.5.1.26351-0.tar.bz2) = 13665242 +SHA256 (firebird/Firebird-2.5.2.26539-0.tar.bz2) = 6b90e5579f9dc3f527b7cf84ac869682aa9582a61f81c6288926c332a863abc8 +SIZE (firebird/Firebird-2.5.2.26539-0.tar.bz2) = 13708119 Added: head/databases/firebird25-server/files/patch-builds-posix_empty.vers ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/firebird25-server/files/patch-builds-posix_empty.vers Sun Mar 24 04:35:29 2013 (r315093) @@ -0,0 +1,11 @@ +--- builds/posix/empty.vers 2013-03-23 02:37:17.000000000 -0500 ++++ builds/posix/empty.vers 2013-03-23 02:37:33.000000000 -0500 +@@ -27,6 +27,8 @@ + { + global: + main; ++ __progname; ++ environ; + + local: + *; Copied and modified: head/databases/firebird25-server/pkg-install (from r315090, head/databases/firebird25-server/files/pkg-install.in) ============================================================================== --- head/databases/firebird25-server/files/pkg-install.in Sun Mar 24 03:08:36 2013 (r315090, copy source) +++ head/databases/firebird25-server/pkg-install Sun Mar 24 04:35:29 2013 (r315093) @@ -4,7 +4,27 @@ PATH=/bin:/usr/bin:/usr/sbin +buildwarning() { +cat <