diff options
author | Volker Stolz <vs@FreeBSD.org> | 2004-07-09 14:01:31 +0000 |
---|---|---|
committer | Volker Stolz <vs@FreeBSD.org> | 2004-07-09 14:01:31 +0000 |
commit | 46e48ea220e4f508a26c52237d8a89da4f6fc558 (patch) | |
tree | ab6cc5e2c1bc1223a7acf4f88f4e68edea5bf505 /www/plugger/pkg-install | |
parent | efd8e218f23ebb744e6d5800dfdd10c9c04580da (diff) | |
download | ports-46e48ea220e4f508a26c52237d8a89da4f6fc558.tar.gz ports-46e48ea220e4f508a26c52237d8a89da4f6fc558.zip |
Notes
Diffstat (limited to 'www/plugger/pkg-install')
-rw-r--r-- | www/plugger/pkg-install | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/www/plugger/pkg-install b/www/plugger/pkg-install index 1801664e8673..c8846c8c07e2 100644 --- a/www/plugger/pkg-install +++ b/www/plugger/pkg-install @@ -5,7 +5,7 @@ PKGNAME=$1 ACTION=$2 -FILES_DELETE="pluggerrc-5.0.old" +FILES_DELETE="pluggerrc-5.1.2.old" ETCDIR=${PKG_PREFIX}/etc @@ -16,8 +16,8 @@ ECHO=/bin/echo case "$ACTION" in POST-INSTALL) - if [ ! -f ${ETCDIR}/pluggerrc-5.0 ]; then - ${CP} ${ETCDIR}/pluggerrc-5.0.sample ${ETCDIR}/pluggerrc-5.0 + if [ ! -f ${ETCDIR}/pluggerrc-5.1.2 ]; then + ${CP} ${ETCDIR}/pluggerrc-5.1.2.sample ${ETCDIR}/pluggerrc-5.1.2 fi ;; @@ -32,18 +32,21 @@ DEINSTALL) PRE-INSTALL) ${ECHO} - ${ECHO} "Run ''make local-install'' as user to locally" + ${ECHO} "Run ''make local-mozilla-install'' as user to locally" ${ECHO} "install plugger for Mozilla" ${ECHO} ${ECHO} "Run ''make local-opera-install'' as user to locally" ${ECHO} "install plugger for Opera" ${ECHO} + ${ECHO} "NOTE: For plugger-oohelper to work, [o|s]office must be" + ${ECHO} "in the PATH." + ${ECHO} ;; POST-DEINSTALL) ${ECHO} ${ECHO} "If you are permanently removing this port," - ${ECHO} "you should do a ''rm -f ${ETCDIR}/pluggerrc-5.0''" + ${ECHO} "you should do a ''rm -f ${ETCDIR}/pluggerrc-5.1.2''" ${ECHO} "to remove it." ${ECHO} ;; |