svn commit: r354507 - in head/databases/dbow: . files

Vanilla I. Shu vanilla at FreeBSD.org
Mon May 19 07:49:34 UTC 2014


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


More information about the svn-ports-all mailing list