mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
- backup config files + DB suport moved to Horde
- fix ftp sites PR: ports/47418 Submitted by: Thierry Thomas <thierry@pompo.net>
This commit is contained in:
parent
41b944474b
commit
ebab97d0e7
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=74266
6 changed files with 102 additions and 69 deletions
|
@ -7,10 +7,14 @@
|
|||
|
||||
PORTNAME= turba
|
||||
PORTVERSION= 1.1
|
||||
PORTREVISION= 2
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= mail www
|
||||
MASTER_SITES= ftp://ftp.horde.org/pub/turba/tarballs/%SUBDIR%/
|
||||
MASTER_SITE_SUBDIR= . old
|
||||
MASTER_SITES= ftp://ftp.horde.org/pub/turba/ \
|
||||
ftp://ftp.au.horde.org/pub/horde/turba/ \
|
||||
ftp://ftp.es.horde.org/pub/turba/ \
|
||||
ftp://ftp.it.horde.org/pub/mirror/horde.org/turba/ \
|
||||
ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/turba/ \
|
||||
ftp://ftp.pt.horde.org/pub/horde-ftp/turba/
|
||||
|
||||
MAINTAINER= thierry@pompo.net
|
||||
|
||||
|
@ -60,26 +64,6 @@ CONFDIR= ${TURBADIR}/config
|
|||
HORDE_INC= ${LOCALBASE}/etc/horde
|
||||
|
||||
pre-install:
|
||||
# N.B.: database dependencies are binded with mod_php#, neither by Horde nor Turba.
|
||||
.if !defined(WITHOUT_SUPPORTED_DB)
|
||||
@if ! ${LDCONFIG} -r | ${GREP} -q -e "mysqlclient.10" ; then \
|
||||
if ! ${LDCONFIG} -r | ${GREP} -q -e "pq.3" ; then \
|
||||
if ! ${LDCONFIG} -r | ${GREP} -q -e "sybdb.1" ; then \
|
||||
if ! ${LDCONFIG} -r | ${GREP} -q -e "ct.0" ; then \
|
||||
${ECHO_MSG} "" ; \
|
||||
${ECHO_MSG} "Please configure PHP with a database support." ; \
|
||||
${ECHO_MSG} "MySQL, PostgreSQL and Sybase (CTLIB or DBLIB)" ; \
|
||||
${ECHO_MSG} "can be used with PHP AND Turba." ; \
|
||||
${ECHO_MSG} "" ; \
|
||||
${ECHO_MSG} "(If everything will run on this machine, do not" ; \
|
||||
${ECHO_MSG} " forget to install the database server-side!)" ; \
|
||||
${ECHO_MSG} "" ; \
|
||||
${FALSE} ; \
|
||||
fi ; \
|
||||
fi ; \
|
||||
fi ; \
|
||||
fi
|
||||
.endif
|
||||
.if !defined(WITHOUT_LDAP)
|
||||
.if defined(WITH_LDAP1)
|
||||
@if ! ${LDCONFIG} -r | ${GREP} -q -e "ldap.1"; then \
|
||||
|
|
27
mail/horde-turba/pkg-deinstall
Normal file
27
mail/horde-turba/pkg-deinstall
Normal file
|
@ -0,0 +1,27 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
# Backup Turba config files, if needed.
|
||||
|
||||
if [ x$2 != xDEINSTALL ]; then
|
||||
exit
|
||||
fi
|
||||
|
||||
if [ -z "${PACKAGE_BUILDING}" ]; then
|
||||
for cf in `ls ${PKG_PREFIX}/www/horde/turba/config/*php`; do
|
||||
diff -bBqw $cf $cf.dist >/dev/null 2>&1
|
||||
case $? in
|
||||
0) # original config file, will be deleted by pkg-plist
|
||||
;;
|
||||
1) # config file has been updated, must be backuped
|
||||
cp -p $cf $cf.previous
|
||||
echo "===> Backing-up..."
|
||||
echo "---> $cf has been saved ***"
|
||||
echo "---> as $cf.previous ***"
|
||||
;;
|
||||
*) # not found?
|
||||
;;
|
||||
esac
|
||||
done
|
||||
fi
|
|
@ -7,10 +7,14 @@
|
|||
|
||||
PORTNAME= turba
|
||||
PORTVERSION= 1.1
|
||||
PORTREVISION= 2
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= mail www
|
||||
MASTER_SITES= ftp://ftp.horde.org/pub/turba/tarballs/%SUBDIR%/
|
||||
MASTER_SITE_SUBDIR= . old
|
||||
MASTER_SITES= ftp://ftp.horde.org/pub/turba/ \
|
||||
ftp://ftp.au.horde.org/pub/horde/turba/ \
|
||||
ftp://ftp.es.horde.org/pub/turba/ \
|
||||
ftp://ftp.it.horde.org/pub/mirror/horde.org/turba/ \
|
||||
ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/turba/ \
|
||||
ftp://ftp.pt.horde.org/pub/horde-ftp/turba/
|
||||
|
||||
MAINTAINER= thierry@pompo.net
|
||||
|
||||
|
@ -60,26 +64,6 @@ CONFDIR= ${TURBADIR}/config
|
|||
HORDE_INC= ${LOCALBASE}/etc/horde
|
||||
|
||||
pre-install:
|
||||
# N.B.: database dependencies are binded with mod_php#, neither by Horde nor Turba.
|
||||
.if !defined(WITHOUT_SUPPORTED_DB)
|
||||
@if ! ${LDCONFIG} -r | ${GREP} -q -e "mysqlclient.10" ; then \
|
||||
if ! ${LDCONFIG} -r | ${GREP} -q -e "pq.3" ; then \
|
||||
if ! ${LDCONFIG} -r | ${GREP} -q -e "sybdb.1" ; then \
|
||||
if ! ${LDCONFIG} -r | ${GREP} -q -e "ct.0" ; then \
|
||||
${ECHO_MSG} "" ; \
|
||||
${ECHO_MSG} "Please configure PHP with a database support." ; \
|
||||
${ECHO_MSG} "MySQL, PostgreSQL and Sybase (CTLIB or DBLIB)" ; \
|
||||
${ECHO_MSG} "can be used with PHP AND Turba." ; \
|
||||
${ECHO_MSG} "" ; \
|
||||
${ECHO_MSG} "(If everything will run on this machine, do not" ; \
|
||||
${ECHO_MSG} " forget to install the database server-side!)" ; \
|
||||
${ECHO_MSG} "" ; \
|
||||
${FALSE} ; \
|
||||
fi ; \
|
||||
fi ; \
|
||||
fi ; \
|
||||
fi
|
||||
.endif
|
||||
.if !defined(WITHOUT_LDAP)
|
||||
.if defined(WITH_LDAP1)
|
||||
@if ! ${LDCONFIG} -r | ${GREP} -q -e "ldap.1"; then \
|
||||
|
|
27
mail/horde4-turba/pkg-deinstall
Normal file
27
mail/horde4-turba/pkg-deinstall
Normal file
|
@ -0,0 +1,27 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
# Backup Turba config files, if needed.
|
||||
|
||||
if [ x$2 != xDEINSTALL ]; then
|
||||
exit
|
||||
fi
|
||||
|
||||
if [ -z "${PACKAGE_BUILDING}" ]; then
|
||||
for cf in `ls ${PKG_PREFIX}/www/horde/turba/config/*php`; do
|
||||
diff -bBqw $cf $cf.dist >/dev/null 2>&1
|
||||
case $? in
|
||||
0) # original config file, will be deleted by pkg-plist
|
||||
;;
|
||||
1) # config file has been updated, must be backuped
|
||||
cp -p $cf $cf.previous
|
||||
echo "===> Backing-up..."
|
||||
echo "---> $cf has been saved ***"
|
||||
echo "---> as $cf.previous ***"
|
||||
;;
|
||||
*) # not found?
|
||||
;;
|
||||
esac
|
||||
done
|
||||
fi
|
|
@ -7,10 +7,14 @@
|
|||
|
||||
PORTNAME= turba
|
||||
PORTVERSION= 1.1
|
||||
PORTREVISION= 2
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= mail www
|
||||
MASTER_SITES= ftp://ftp.horde.org/pub/turba/tarballs/%SUBDIR%/
|
||||
MASTER_SITE_SUBDIR= . old
|
||||
MASTER_SITES= ftp://ftp.horde.org/pub/turba/ \
|
||||
ftp://ftp.au.horde.org/pub/horde/turba/ \
|
||||
ftp://ftp.es.horde.org/pub/turba/ \
|
||||
ftp://ftp.it.horde.org/pub/mirror/horde.org/turba/ \
|
||||
ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/turba/ \
|
||||
ftp://ftp.pt.horde.org/pub/horde-ftp/turba/
|
||||
|
||||
MAINTAINER= thierry@pompo.net
|
||||
|
||||
|
@ -60,26 +64,6 @@ CONFDIR= ${TURBADIR}/config
|
|||
HORDE_INC= ${LOCALBASE}/etc/horde
|
||||
|
||||
pre-install:
|
||||
# N.B.: database dependencies are binded with mod_php#, neither by Horde nor Turba.
|
||||
.if !defined(WITHOUT_SUPPORTED_DB)
|
||||
@if ! ${LDCONFIG} -r | ${GREP} -q -e "mysqlclient.10" ; then \
|
||||
if ! ${LDCONFIG} -r | ${GREP} -q -e "pq.3" ; then \
|
||||
if ! ${LDCONFIG} -r | ${GREP} -q -e "sybdb.1" ; then \
|
||||
if ! ${LDCONFIG} -r | ${GREP} -q -e "ct.0" ; then \
|
||||
${ECHO_MSG} "" ; \
|
||||
${ECHO_MSG} "Please configure PHP with a database support." ; \
|
||||
${ECHO_MSG} "MySQL, PostgreSQL and Sybase (CTLIB or DBLIB)" ; \
|
||||
${ECHO_MSG} "can be used with PHP AND Turba." ; \
|
||||
${ECHO_MSG} "" ; \
|
||||
${ECHO_MSG} "(If everything will run on this machine, do not" ; \
|
||||
${ECHO_MSG} " forget to install the database server-side!)" ; \
|
||||
${ECHO_MSG} "" ; \
|
||||
${FALSE} ; \
|
||||
fi ; \
|
||||
fi ; \
|
||||
fi ; \
|
||||
fi
|
||||
.endif
|
||||
.if !defined(WITHOUT_LDAP)
|
||||
.if defined(WITH_LDAP1)
|
||||
@if ! ${LDCONFIG} -r | ${GREP} -q -e "ldap.1"; then \
|
||||
|
|
27
mail/turba/pkg-deinstall
Normal file
27
mail/turba/pkg-deinstall
Normal file
|
@ -0,0 +1,27 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
# Backup Turba config files, if needed.
|
||||
|
||||
if [ x$2 != xDEINSTALL ]; then
|
||||
exit
|
||||
fi
|
||||
|
||||
if [ -z "${PACKAGE_BUILDING}" ]; then
|
||||
for cf in `ls ${PKG_PREFIX}/www/horde/turba/config/*php`; do
|
||||
diff -bBqw $cf $cf.dist >/dev/null 2>&1
|
||||
case $? in
|
||||
0) # original config file, will be deleted by pkg-plist
|
||||
;;
|
||||
1) # config file has been updated, must be backuped
|
||||
cp -p $cf $cf.previous
|
||||
echo "===> Backing-up..."
|
||||
echo "---> $cf has been saved ***"
|
||||
echo "---> as $cf.previous ***"
|
||||
;;
|
||||
*) # not found?
|
||||
;;
|
||||
esac
|
||||
done
|
||||
fi
|
Loading…
Add table
Reference in a new issue