From owner-svn-ports-all@freebsd.org Mon Jan 16 12:55:00 2017 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 2A7DECB209A; Mon, 16 Jan 2017 12:55:00 +0000 (UTC) (envelope-from amdmi3@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 E79D01E08; Mon, 16 Jan 2017 12:54:59 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0GCsxaG047398; Mon, 16 Jan 2017 12:54:59 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0GCsxwY047397; Mon, 16 Jan 2017 12:54:59 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201701161254.v0GCsxwY047397@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 16 Jan 2017 12:54:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r431635 - head/databases/cego 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.23 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: Mon, 16 Jan 2017 12:55:00 -0000 Author: amdmi3 Date: Mon Jan 16 12:54:58 2017 New Revision: 431635 URL: https://svnweb.freebsd.org/changeset/ports/431635 Log: - Fix missed shebang - Add dependency on bash, the port installs bash scripts - Switch to USES=localbase - Switch to new test framework Approved by: portmgr blanket Modified: head/databases/cego/Makefile Modified: head/databases/cego/Makefile ============================================================================== --- head/databases/cego/Makefile Mon Jan 16 12:46:43 2017 (r431634) +++ head/databases/cego/Makefile Mon Jan 16 12:54:58 2017 (r431635) @@ -2,6 +2,7 @@ PORTNAME= cego PORTVERSION= 2.32.6 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= http://www.lemke-it.com/ @@ -13,15 +14,16 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= liblfcbase.so:devel/lfcbase \ liblfcxml.so:devel/lfcxml -RUN_DEPENDS= ${LOCALBASE}/bin/sudo:security/sudo +RUN_DEPENDS= ${LOCALBASE}/bin/sudo:security/sudo \ + bash:shells/bash GNU_CONFIGURE= yes -CPPFLAGS+= -I${LOCALBASE}/include +TEST_TARGET= check USE_LDCONFIG= yes -USES= libtool ncurses readline shebangfix -SHEBANG_FILES= tools/cgbackup tools/cgrecover +USES= libtool localbase ncurses readline shebangfix +SHEBANG_FILES= tools/cgbackup tools/cgrecover tools/cgsimload USERS= cego GROUPS= cego @@ -44,7 +46,4 @@ post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libcego.so.2.0.0 ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libcgwrap.so.2.0.0 -do-test: - cd ${WRKSRC} && ${MAKE} check - .include