mirror of
https://git.freebsd.org/ports.git
synced 2025-05-20 11:03:09 -04:00
release of PostgreSQL 9.5. This release adds UPSERT capability, Row Level Security, and multiple Big Data features, which will broaden the user base for the world's most advanced database. With these new capabilities, PostgreSQL will be the best choice for even more applications for startups, large corporations, and government agencies. Release Notes: http://www.postgresql.org/docs/current/static/release-9-5.html What's New in 9.5: https://wiki.postgresql.org/wiki/What%27s_new_in_PostgreSQL_9.5
46 lines
1 KiB
Text
46 lines
1 KiB
Text
--- doc/src/sgml/Makefile.orig 2015-10-05 21:09:44.000000000 +0200
|
|
+++ doc/src/sgml/Makefile 2015-10-09 01:02:37.164797000 +0200
|
|
@@ -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 @@
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
|
|
-all: html man
|
|
+all: man
|
|
|
|
distprep: html distprep-man
|
|
|
|
@@ -81,8 +81,6 @@
|
|
## 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 @@
|
|
## 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:
|