mirror of
https://git.freebsd.org/ports.git
synced 2025-07-17 01:09:24 -04:00
Fix problem with database/fastdb port:
gigabase and fastdb pkg-plist's contain a cross-files Approved by: fjoe (implicit)
This commit is contained in:
parent
e435fe9f2c
commit
af6cbb9911
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=83316
3 changed files with 18 additions and 8 deletions
|
@ -7,6 +7,7 @@
|
|||
|
||||
PORTNAME= gigabase
|
||||
PORTVERSION= 2.90
|
||||
PORTREVISION?= 1
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= http://www.garret.ru/~knizhnik/
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
--- Makefile.in.orig Wed Nov 6 01:30:34 2002
|
||||
+++ Makefile.in Mon Nov 11 20:07:30 2002
|
||||
--- Makefile.in.orig Sat May 3 20:35:46 2003
|
||||
+++ Makefile.in Wed Jun 18 20:04:48 2003
|
||||
@@ -7,6 +7,8 @@
|
||||
VPATH = @srcdir@
|
||||
LIBTOOL = $(srcdir)/libtool
|
||||
|
@ -9,6 +9,15 @@
|
|||
|
||||
# Coment this for AIX/xlC 5.0
|
||||
LIBEXT=la
|
||||
@@ -41,7 +43,7 @@
|
||||
SUFF=@SUFF@
|
||||
|
||||
GB_LIB = libgigabase$(SUFF).${LIBEXT}
|
||||
-CLI_LIB = libcli$(SUFF).${LIBEXT}
|
||||
+CLI_LIB = libcligb$(SUFF).${LIBEXT}
|
||||
EXES = subsql
|
||||
|
||||
EXAMPLES = guess testdb testjoin testddl testperf testspat testperf2 testsync testiref testtrav testidx testidx2 clitest testblob testleak
|
||||
@@ -49,7 +51,7 @@
|
||||
|
||||
CXX = @CXX@
|
||||
|
@ -29,10 +38,10 @@
|
|||
mkdir -p $(bindir)
|
||||
if test -x .libs/subsql ; then \
|
||||
- cp .libs/subsql $(bindir); \
|
||||
+ $(INSTALL_PROGRAM) .libs/subsql $(bindir); \
|
||||
+ $(INSTALL_PROGRAM) .libs/subsql $(bindir)/subsql_gb; \
|
||||
else \
|
||||
- cp subsql $(bindir); \
|
||||
+ $(INSTALL_PROGRAM) subsql $(bindir); \
|
||||
+ $(INSTALL_PROGRAM) subsql $(bindir)/subsql_gb; \
|
||||
fi
|
||||
# strip $(bindir)/subsql
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
bin/subsql
|
||||
bin/subsql_gb
|
||||
include/gigabase/array.h
|
||||
include/gigabase/blob.h
|
||||
include/gigabase/btree.h
|
||||
|
@ -19,9 +19,9 @@ include/gigabase/selection.h
|
|||
include/gigabase/stdtp.h
|
||||
include/gigabase/sync.h
|
||||
include/gigabase/wwwapi.h
|
||||
lib/libcli_r.a
|
||||
lib/libcli_r.so
|
||||
lib/libcli_r.so.2
|
||||
lib/libcligb_r.a
|
||||
lib/libcligb_r.so
|
||||
lib/libcligb_r.so.2
|
||||
lib/libgigabase_r.a
|
||||
lib/libgigabase_r.so
|
||||
lib/libgigabase_r.so.2
|
||||
|
|
Loading…
Add table
Reference in a new issue