mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
3daef6eeef
Postgres-XL is an open source project to provide both write-scalability and massively parallel processing transparently to PostgreSQL. It is a collection of tightly coupled database components which can be installed on more than one system or virtual machine. Write-scalable means Postgres-XL can be configured with as many database servers as you want and handle many more writes (updating SQL statements) than a single standalone database server could otherwise do. You can have more than one database server that provides a single database view. Any database update from any database server is immediately visible to any other transactions running on different servers. Transparent means you do not necessarily need to worry about how your data is stored in more than one database servers internally. WWW: http://www.postgres-xl.org/ PR: 219164 Submitted by: Jov <amutu@amutu.com>
47 lines
1.1 KiB
Plaintext
47 lines
1.1 KiB
Plaintext
--- doc/src/sgml/Makefile.orig 2017-04-19 15:17:02 UTC
|
|
+++ doc/src/sgml/Makefile
|
|
@@ -15,7 +15,7 @@
|
|
|
|
# Make "html" the default target, since that is what most people tend
|
|
# to want to use.
|
|
-html:
|
|
+man:
|
|
|
|
NO_TEMP_INSTALL=yes
|
|
|
|
@@ -24,7 +24,7 @@ top_builddir = ../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
|
|
-all: html man
|
|
+all: man
|
|
|
|
distprep: html distprep-man
|
|
|
|
@@ -81,8 +81,6 @@ override SPFLAGS += -wall -wno-unused-pa
|
|
## Man pages
|
|
##
|
|
|
|
-man distprep-man: man-stamp
|
|
-
|
|
man-stamp: stylesheet-man.xsl postgres.xml
|
|
$(XMLLINT) --noout --valid postgres.xml
|
|
$(XSLTPROC) $(XSLTPROCFLAGS) $(XSLTPROC_MAN_FLAGS) $^
|
|
@@ -326,14 +324,14 @@ check: postgres.sgml $(ALMOSTALLSGML) ch
|
|
## Install
|
|
##
|
|
|
|
-install: install-html
|
|
+install: install-man
|
|
|
|
ifneq ($(PORTNAME), sco)
|
|
install: install-man
|
|
endif
|
|
|
|
installdirs:
|
|
- $(MKDIR_P) '$(DESTDIR)$(htmldir)'/html $(addprefix '$(DESTDIR)$(mandir)'/man, 1 3 $(sqlmansectnum))
|
|
+ $(MKDIR_P) $(addprefix '$(DESTDIR)$(mandir)'/man, 1 3 $(sqlmansectnum))
|
|
|
|
# If the install used a man directory shared with other applications, this will remove all files.
|
|
uninstall:
|