aboutsummaryrefslogtreecommitdiffstats
path: root/databases
diff options
context:
space:
mode:
authorbapt <bapt@FreeBSD.org>2018-11-11 02:12:57 +0800
committerbapt <bapt@FreeBSD.org>2018-11-11 02:12:57 +0800
commit2ac1593fa40be912b93142f98d35818c05677bb3 (patch)
treef40cba2ed30c79b84c1d56a779b7139f24d6c36f /databases
parent28dc0b6c3fd1ffbcf0b28ff12bff8bcb148a8612 (diff)
downloadfreebsd-ports-gnome-2ac1593fa40be912b93142f98d35818c05677bb3.tar.gz
freebsd-ports-gnome-2ac1593fa40be912b93142f98d35818c05677bb3.tar.zst
freebsd-ports-gnome-2ac1593fa40be912b93142f98d35818c05677bb3.zip
Install texinfo files (GNU info) into ${PREFIX}/share/info
After a discussion on the mailing list on moving manpages to ${PREFIX}/share/man for consistency with base where it is installed in usr/share/man, it appeared the same should happen to GNU info files which were installed under share in base and not in ports. Now texinfo is not in base on any of the supported version of FreeBSD it is possible to proceed to this move and it is easier to do than the manpage change. Other benefit than consistency are less patching: all build tools but cmake are expecting info files to be under share/info and cmake (patched here) was having an exception for BSD so the patch makes FreeBSD case less specific for them Bump revision of all impacted ports PR: 232907 exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D17816
Diffstat (limited to 'databases')
-rw-r--r--databases/bbdb/Makefile1
-rw-r--r--databases/couchdb/Makefile2
-rw-r--r--databases/gdbm/Makefile2
-rw-r--r--databases/gnats4/Makefile2
-rw-r--r--databases/percona55-server/Makefile4
-rw-r--r--databases/percona56-server/Makefile4
-rw-r--r--databases/percona57-server/Makefile2
-rw-r--r--databases/recutils/Makefile2
8 files changed, 10 insertions, 9 deletions
diff --git a/databases/bbdb/Makefile b/databases/bbdb/Makefile
index 5b388c039b52..2fc530a4641b 100644
--- a/databases/bbdb/Makefile
+++ b/databases/bbdb/Makefile
@@ -3,6 +3,7 @@
PORTNAME= bbdb
DISTVERSION= 3.1.2
+PORTREVISION= 1
CATEGORIES= databases elisp
MASTER_SITES= SAVANNAH
PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX}
diff --git a/databases/couchdb/Makefile b/databases/couchdb/Makefile
index e27f5ed9209b..45661837f94c 100644
--- a/databases/couchdb/Makefile
+++ b/databases/couchdb/Makefile
@@ -3,7 +3,7 @@
PORTNAME= couchdb
DISTVERSION= 1.7.2
-PORTREVISION= 1
+PORTREVISION= 2
PORTEPOCH= 2
CATEGORIES= databases
MASTER_SITES= APACHE/couchdb/source/${DISTVERSION}
diff --git a/databases/gdbm/Makefile b/databases/gdbm/Makefile
index b528ff3842f9..944018a4cf79 100644
--- a/databases/gdbm/Makefile
+++ b/databases/gdbm/Makefile
@@ -3,7 +3,7 @@
PORTNAME= gdbm
PORTVERSION= 1.13
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= databases
MASTER_SITES= GNU
diff --git a/databases/gnats4/Makefile b/databases/gnats4/Makefile
index 62591867b7a2..0fa7c3bcd2e9 100644
--- a/databases/gnats4/Makefile
+++ b/databases/gnats4/Makefile
@@ -3,7 +3,7 @@
PORTNAME= gnats
PORTVERSION= 4.1.0
-PORTREVISION= 10
+PORTREVISION= 11
CATEGORIES= databases devel
MASTER_SITES= GNU
PKGNAMESUFFIX= 4
diff --git a/databases/percona55-server/Makefile b/databases/percona55-server/Makefile
index 2fdc3ea5fb55..346ae5e76222 100644
--- a/databases/percona55-server/Makefile
+++ b/databases/percona55-server/Makefile
@@ -2,7 +2,7 @@
PORTNAME?= percona
DISTVERSION= 5.5.61-38.13
-PORTREVISION?= 0
+PORTREVISION?= 1
CATEGORIES= databases ipv6
MASTER_SITES= http://www.percona.com/downloads/Percona-Server-5.5/Percona-Server-${DISTVERSION}/source/tarball/
PKGNAMESUFFIX?= 55-server
@@ -29,7 +29,7 @@ DATADIR= ${PREFIX}/share/mysql
CMAKE_ARGS+= -DINSTALL_DOCDIR="share/doc/mysql" \
-DINSTALL_DOCREADMEDIR="share/doc/mysql" \
-DINSTALL_INCLUDEDIR="include/mysql" \
- -DINSTALL_INFODIR="info" \
+ -DINSTALL_INFODIR="${INFO_PATH}" \
-DINSTALL_LIBDIR="lib/mysql" \
-DINSTALL_MANDIR="man" \
-DINSTALL_MYSQLDATADIR="/var/db/mysql" \
diff --git a/databases/percona56-server/Makefile b/databases/percona56-server/Makefile
index e62b0d997f9c..ec461918d5b8 100644
--- a/databases/percona56-server/Makefile
+++ b/databases/percona56-server/Makefile
@@ -3,7 +3,7 @@
PORTNAME?= percona
DISTVERSION= 5.6.41-84.1
-PORTREVISION?= 0
+PORTREVISION?= 1
CATEGORIES= databases ipv6
MASTER_SITES= http://www.percona.com/downloads/Percona-Server-5.6/Percona-Server-${DISTVERSION}/source/tarball/
PKGNAMESUFFIX?= 56-server
@@ -42,7 +42,7 @@ DATADIR= ${PREFIX}/share/mysql
CMAKE_ARGS+= -DINSTALL_DOCDIR="share/doc/mysql" \
-DINSTALL_DOCREADMEDIR="share/doc/mysql" \
-DINSTALL_INCLUDEDIR="include/mysql" \
- -DINSTALL_INFODIR="info" \
+ -DINSTALL_INFODIR="${INFO_PATH}" \
-DINSTALL_LIBDIR="lib/mysql" \
-DINSTALL_MANDIR="man" \
-DINSTALL_MYSQLDATADIR="/var/db/mysql" \
diff --git a/databases/percona57-server/Makefile b/databases/percona57-server/Makefile
index 6c20521bcba8..922a0fc8e117 100644
--- a/databases/percona57-server/Makefile
+++ b/databases/percona57-server/Makefile
@@ -40,7 +40,7 @@ CMAKE_ARGS+= -DINSTALL_LAYOUT=FREEBSD \
-DINSTALL_PKGCONFIGDIR="${LOCALBASE}/libdata/pkgconfig" \
-DINSTALL_DOCREADMEDIR="share/doc/mysql" \
-DINSTALL_INCLUDEDIR="include/mysql" \
- -DINSTALL_INFODIR="info" \
+ -DINSTALL_INFODIR="${INFO_PATH}" \
-DINSTALL_LIBDIR="lib/mysql" \
-DINSTALL_MANDIR="man" \
-DINSTALL_MYSQLDATADIR="/var/db/mysql" \
diff --git a/databases/recutils/Makefile b/databases/recutils/Makefile
index d40395d11863..85ef7099399f 100644
--- a/databases/recutils/Makefile
+++ b/databases/recutils/Makefile
@@ -3,7 +3,7 @@
PORTNAME= recutils
PORTVERSION= 1.7
-PORTREVISION= 2
+PORTREVISION= 3
CATEGORIES= databases
MASTER_SITES= GNU