From owner-svn-ports-head@FreeBSD.ORG Mon May 19 07:49:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CC3A4838; Mon, 19 May 2014 07:49:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 B94F72AF0; Mon, 19 May 2014 07:49:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4J7nXtg017720; Mon, 19 May 2014 07:49:33 GMT (envelope-from vanilla@svn.freebsd.org) Received: (from vanilla@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4J7nWN5017714; Mon, 19 May 2014 07:49:32 GMT (envelope-from vanilla@svn.freebsd.org) Message-Id: <201405190749.s4J7nWN5017714@svn.freebsd.org> From: "Vanilla I. Shu" Date: Mon, 19 May 2014 07:49:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r354507 - in head/databases/dbow: . 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-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 May 2014 07:49:34 -0000 Author: vanilla Date: Mon May 19 07:49:32 2014 New Revision: 354507 URL: http://svnweb.freebsd.org/changeset/ports/354507 QAT: https://qat.redports.org/buildarchive/r354507/ Log: Support staging. Approved by: portmgr@ Added: head/databases/dbow/files/ head/databases/dbow/files/patch-doc__Makefile (contents, props changed) head/databases/dbow/files/patch-lib__Makefile (contents, props changed) head/databases/dbow/files/patch-m4__Makefile (contents, props changed) head/databases/dbow/files/patch-src__Makefile (contents, props changed) Modified: head/databases/dbow/Makefile head/databases/dbow/pkg-plist Modified: head/databases/dbow/Makefile ============================================================================== --- head/databases/dbow/Makefile Mon May 19 07:49:10 2014 (r354506) +++ head/databases/dbow/Makefile Mon May 19 07:49:32 2014 (r354507) @@ -15,9 +15,6 @@ MAKE_ENV+= MYSQL_INC=${LOCALBASE}/includ USE_MYSQL= yes -MAN1= dbow.1 - -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e "s|CFLAGS=|CFLAGS+=|g" \ -e "s|^MYSQL_INC=|MYSQL_INC?=|" \ Added: head/databases/dbow/files/patch-doc__Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/dbow/files/patch-doc__Makefile Mon May 19 07:49:32 2014 (r354507) @@ -0,0 +1,10 @@ +--- ./doc/Makefile.orig 2014-05-19 15:47:03.978020008 +0800 ++++ ./doc/Makefile 2014-05-19 15:47:12.697019517 +0800 +@@ -52,6 +52,6 @@ + all: + + install: +- install -C -m 444 dbow.1 $(PREFIX)/man/man1 ++ install -C -m 444 dbow.1 $(DESTDIR)$(PREFIX)/man/man1 + + clean: Added: head/databases/dbow/files/patch-lib__Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/dbow/files/patch-lib__Makefile Mon May 19 07:49:32 2014 (r354507) @@ -0,0 +1,15 @@ +--- ./lib/Makefile.orig 2014-05-19 15:46:37.044025162 +0800 ++++ ./lib/Makefile 2014-05-19 15:46:56.903021030 +0800 +@@ -65,9 +65,9 @@ + all: $(DBOWLIB) + + install: dbow.h $(DBOWLIB) +- install -d $(DBOWDIR) +- install -C -m 444 dbow.h $(PREFIX)/include +- install -C -m 444 $(DBOWLIB) $(PREFIX)/lib ++ install -d $(DESTDIR)$(DBOWDIR) ++ install -C -m 444 dbow.h $(DESTDIR)$(PREFIX)/include ++ install -C -m 444 $(DBOWLIB) $(DESTDIR)$(PREFIX)/lib + + clean: + rm -f $(DBOWLIB) $(OBJS) a.out errs core Added: head/databases/dbow/files/patch-m4__Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/dbow/files/patch-m4__Makefile Mon May 19 07:49:32 2014 (r354507) @@ -0,0 +1,13 @@ +--- ./m4/Makefile.orig 2014-05-19 15:47:33.700018790 +0800 ++++ ./m4/Makefile 2014-05-19 15:47:43.063018434 +0800 +@@ -49,8 +49,8 @@ + all: $(M4FILES) + + install: $(M4FILES) +- install -d $(DBOWDIR) +- install -C -m 444 $(M4FILES) $(DBOWDIR) ++ install -d $(DESTDIR)$(DBOWDIR) ++ install -C -m 444 $(M4FILES) $(DESTDIR)$(DBOWDIR) + + clean: + Added: head/databases/dbow/files/patch-src__Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/dbow/files/patch-src__Makefile Mon May 19 07:49:32 2014 (r354507) @@ -0,0 +1,13 @@ +--- ./src/Makefile.orig 2014-05-19 15:46:08.154023124 +0800 ++++ ./src/Makefile 2014-05-19 15:46:24.766023465 +0800 +@@ -71,8 +71,8 @@ + all: dbow + + install: dbow +- install -d $(DBOWDIR) +- install -C -m 555 dbow $(PREFIX)/bin ++ install -d $(DESTDIR)$(DBOWDIR) ++ install -C -m 555 dbow $(DESTDIR)$(PREFIX)/bin + + clean: + rm -f dbow $(OBJS) y.tab.h a.out errs core Modified: head/databases/dbow/pkg-plist ============================================================================== --- head/databases/dbow/pkg-plist Mon May 19 07:49:10 2014 (r354506) +++ head/databases/dbow/pkg-plist Mon May 19 07:49:32 2014 (r354507) @@ -1,6 +1,7 @@ bin/dbow include/dbow.h lib/libdbow.a +man/man1/dbow.1.gz %%DATADIR%%/c.m4 %%DATADIR%%/mysql.m4 %%DATADIR%%/perl.m4