Re-enable /etc/opera for forcing synchronous DNS resolution. Required
now that file descriptor sharing across rfork() is disabled by default. Noticed by heko@
This commit is contained in:
parent
64de6e7665
commit
a98816203f
@ -1,10 +1,10 @@
|
||||
# $OpenBSD: Makefile,v 1.3 2001/09/16 17:10:29 naddy Exp $
|
||||
# $OpenBSD: Makefile,v 1.4 2001/10/14 23:27:02 naddy Exp $
|
||||
|
||||
ONLY_FOR_ARCHS= i386
|
||||
|
||||
COMMENT= "fast and customizable WWW browser"
|
||||
|
||||
PKGNAME= opera-5.05tp1
|
||||
PKGNAME= opera-5.05tp1p1
|
||||
DISTNAME= opera-5.05_tp1-static_qt-libnpp-0.1.1
|
||||
CATEGORIES= www
|
||||
NEED_VERSION= 1.435
|
||||
@ -34,5 +34,7 @@ do-install:
|
||||
--prefix=${PREFIX} \
|
||||
--exec_prefix=${PREFIX}/libexec \
|
||||
--docdir=${PREFIX}/share/doc/opera
|
||||
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/opera
|
||||
${INSTALL_DATA} ${FILESDIR}/operarc ${PREFIX}/share/examples/opera
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
4
www/opera/files/operarc
Normal file
4
www/opera/files/operarc
Normal file
@ -0,0 +1,4 @@
|
||||
; $OpenBSD: operarc,v 1.3 2001/10/14 23:27:02 naddy Exp $
|
||||
;
|
||||
[Performance]
|
||||
Synchronous DNS Lookup=1
|
51
www/opera/pkg/DEINSTALL
Normal file
51
www/opera/pkg/DEINSTALL
Normal file
@ -0,0 +1,51 @@
|
||||
#!/bin/sh
|
||||
# $OpenBSD: DEINSTALL,v 1.3 2001/10/14 23:27:02 naddy Exp $
|
||||
#
|
||||
# De-installation setup of Opera
|
||||
|
||||
# exit on errors, use a sane path and install prefix
|
||||
#
|
||||
set -e
|
||||
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
||||
PREFIX=${PKG_PREFIX:-/usr/local}
|
||||
CONFIG_FILE=/etc/operarc # hardcoded to /etc
|
||||
|
||||
# Function: tell the user what they need to do to delete the port completely
|
||||
#
|
||||
do_notice()
|
||||
{
|
||||
echo
|
||||
echo "+---------------"
|
||||
echo "| To completely deinstall the $1 package you need to perform"
|
||||
echo "| these steps as root:"
|
||||
echo "|"
|
||||
echo "| rm -f ${CONFIG_FILE}"
|
||||
echo "|"
|
||||
echo "| Do not do this if you plan on re-installing $1"
|
||||
echo "| at some future time."
|
||||
echo "+---------------"
|
||||
echo
|
||||
}
|
||||
|
||||
# Verify proper execution
|
||||
#
|
||||
if [ $# -ne 2 ]; then
|
||||
echo "usage: $0 distname DEINSTALL" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Verify/process the command
|
||||
#
|
||||
case $2 in
|
||||
DEINSTALL)
|
||||
if [ -f ${CONFIG_FILE} ]; then
|
||||
do_notice "$1"
|
||||
fi
|
||||
;;
|
||||
*)
|
||||
echo "usage: $0 distname DEINSTALL" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
exit 0
|
68
www/opera/pkg/INSTALL
Normal file
68
www/opera/pkg/INSTALL
Normal file
@ -0,0 +1,68 @@
|
||||
#!/bin/sh
|
||||
# $OpenBSD: INSTALL,v 1.3 2001/10/14 23:27:02 naddy Exp $
|
||||
#
|
||||
# Pre/post-installation setup of Opera
|
||||
|
||||
# exit on errors, use a sane path and install prefix
|
||||
#
|
||||
set -e
|
||||
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
||||
PREFIX=${PKG_PREFIX:-/usr/local}
|
||||
CONFIG_FILE=/etc/operarc # hardcoded to /etc
|
||||
SAMPLE_CONFIG_DIR=$PREFIX/share/examples/opera
|
||||
|
||||
# Function: tell the user what they need to do to use the port just installed
|
||||
#
|
||||
do_notice()
|
||||
{
|
||||
echo
|
||||
echo "+---------------"
|
||||
echo "| The existing $1 configuration file, ${CONFIG_FILE},"
|
||||
echo "| has NOT been changed. You may want to compare it to the"
|
||||
echo "| current sample files in ${SAMPLE_CONFIG_DIR}"
|
||||
echo "| and update your configuration as needed."
|
||||
echo "+---------------"
|
||||
echo
|
||||
}
|
||||
|
||||
# Function: install configuration files
|
||||
#
|
||||
do_install()
|
||||
{
|
||||
install -o root -g wheel ${SAMPLE_CONFIG_DIR}/operarc ${CONFIG_FILE}
|
||||
echo
|
||||
echo "+---------------"
|
||||
echo "| The $1 configuration file, ${CONFIG_FILE},"
|
||||
echo "| has been installed. Please view this file and change"
|
||||
echo "| the configuration to meet your needs"
|
||||
echo "+---------------"
|
||||
echo
|
||||
}
|
||||
|
||||
# Verify proper execution
|
||||
#
|
||||
if [ $# -ne 2 ]; then
|
||||
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Verify/process the command
|
||||
#
|
||||
case $2 in
|
||||
PRE-INSTALL)
|
||||
: nothing to pre-install for this port
|
||||
;;
|
||||
POST-INSTALL)
|
||||
if [ -f ${CONFIG_FILE} ]; then
|
||||
do_notice "$1"
|
||||
else
|
||||
do_install "$1"
|
||||
fi
|
||||
;;
|
||||
*)
|
||||
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
exit 0
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST,v 1.3 2001/09/16 17:10:29 naddy Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.4 2001/10/14 23:27:02 naddy Exp $
|
||||
bin/opera
|
||||
lib/opera/plugins/libnpp.so
|
||||
lib/opera/plugins/libnpp.so.0
|
||||
@ -7,6 +7,7 @@ lib/opera/plugins/libnpp.so.0.1.1
|
||||
lib/opera/plugins/operamotifwrapper
|
||||
libexec/opera-static
|
||||
share/doc/opera/LICENSE
|
||||
share/examples/opera/operarc
|
||||
share/opera/buttons/DefSmall
|
||||
share/opera/buttons/Default
|
||||
share/opera/buttons/ReadMe.txt
|
||||
|
Loading…
x
Reference in New Issue
Block a user