mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-24 09:25:01 +00:00
- unbreak: fix pkg-install not to create a /usr/interbase symlink
- strongly suggest manually creating the symlink in pkg-message PR: 51712 Submitted by: maintainer
This commit is contained in:
parent
8435e9af1b
commit
3b47b59a82
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=80642
@ -18,8 +18,6 @@ DISTFILES= bootkit-1.0.2.908.tar.gz \
|
||||
MAINTAINER= chris@aims.com.au
|
||||
COMMENT= The open-source InterBase(tm) 6.0 spin-off (Classic version)
|
||||
|
||||
BROKEN= "Installs files in /usr/interbase"
|
||||
|
||||
WRKSRC= ${WRKDIR}/firebird-1.0.2.908
|
||||
INSTALLS_SHLIB= yes
|
||||
LDCONFIG_DIRS= %%PREFIX%%/firebird/lib
|
||||
|
@ -10,16 +10,6 @@ if [ -d $PKG_PREFIX/firebird ]; then
|
||||
mv $PKG_PREFIX/firebird $PKG_PREFIX/firebird.old
|
||||
fi
|
||||
|
||||
if [ -L /usr/interbase ]; then
|
||||
rm -f /usr/interbase
|
||||
fi
|
||||
|
||||
if [ -d /usr/interbase ]; then
|
||||
mv /usr/interbase /usr/interbase.old
|
||||
fi
|
||||
|
||||
ln -fs $PKG_PREFIX/firebird /usr/interbase
|
||||
|
||||
if [ `id -u` -ne 0 ]; then
|
||||
echo; echo "You must be root to run this step!"; echo; echo
|
||||
exit 1
|
||||
@ -140,7 +130,7 @@ cat >>/etc/services <<EOF
|
||||
gds_db 3050/tcp #InterBase Database Remote Protocol
|
||||
EOF
|
||||
cat >>/etc/inetd.conf <<EOF
|
||||
gds_db stream tcp nowait firebird /usr/interbase/bin/gds_inet_server gds_inet_server
|
||||
gds_db stream tcp nowait firebird $PKG_PREFIX/firebird/bin/gds_inet_server gds_inet_server
|
||||
EOF
|
||||
if [ -f /var/run/inetd.pid ]; then
|
||||
kill -HUP `cat /var/run/inetd.pid`
|
||||
|
@ -1,14 +1,18 @@
|
||||
|
||||
---------------------------------------------------------
|
||||
Firebird is now installed. There is a symbolic link from
|
||||
/usr/interbase -> %%PREFIX%%/firebird. Firebird needs this
|
||||
link for proper operation.
|
||||
Firebird is now installed. A symbolic link from
|
||||
/usr/interbase -> %%PREFIX%%/firebird is REQUIRED for
|
||||
proper operation of Firebird.
|
||||
|
||||
The symbolic link can be created with:
|
||||
|
||||
% ln -s %%PREFIX%%/firebird /usr/interbase
|
||||
|
||||
It is STRONGLY recommended that you change the SYSDBA
|
||||
password with:
|
||||
|
||||
$ cd /usr/interbase
|
||||
$ gsec -user SYSDBA -pass masterkey
|
||||
% cd %%PREFIX%%/firebird
|
||||
% gsec -user SYSDBA -pass masterkey
|
||||
GSEC> modify SYSDBA -pw newpassword
|
||||
GSEC> quit
|
||||
|
||||
|
@ -18,8 +18,6 @@ DISTFILES= bootkit-1.0.2.908.tar.gz \
|
||||
MAINTAINER= chris@aims.com.au
|
||||
COMMENT= The open-source InterBase(tm) 6.0 spin-off (Classic version)
|
||||
|
||||
BROKEN= "Installs files in /usr/interbase"
|
||||
|
||||
WRKSRC= ${WRKDIR}/firebird-1.0.2.908
|
||||
INSTALLS_SHLIB= yes
|
||||
LDCONFIG_DIRS= %%PREFIX%%/firebird/lib
|
||||
|
@ -10,16 +10,6 @@ if [ -d $PKG_PREFIX/firebird ]; then
|
||||
mv $PKG_PREFIX/firebird $PKG_PREFIX/firebird.old
|
||||
fi
|
||||
|
||||
if [ -L /usr/interbase ]; then
|
||||
rm -f /usr/interbase
|
||||
fi
|
||||
|
||||
if [ -d /usr/interbase ]; then
|
||||
mv /usr/interbase /usr/interbase.old
|
||||
fi
|
||||
|
||||
ln -fs $PKG_PREFIX/firebird /usr/interbase
|
||||
|
||||
if [ `id -u` -ne 0 ]; then
|
||||
echo; echo "You must be root to run this step!"; echo; echo
|
||||
exit 1
|
||||
@ -140,7 +130,7 @@ cat >>/etc/services <<EOF
|
||||
gds_db 3050/tcp #InterBase Database Remote Protocol
|
||||
EOF
|
||||
cat >>/etc/inetd.conf <<EOF
|
||||
gds_db stream tcp nowait firebird /usr/interbase/bin/gds_inet_server gds_inet_server
|
||||
gds_db stream tcp nowait firebird $PKG_PREFIX/firebird/bin/gds_inet_server gds_inet_server
|
||||
EOF
|
||||
if [ -f /var/run/inetd.pid ]; then
|
||||
kill -HUP `cat /var/run/inetd.pid`
|
||||
|
@ -1,14 +1,18 @@
|
||||
|
||||
---------------------------------------------------------
|
||||
Firebird is now installed. There is a symbolic link from
|
||||
/usr/interbase -> %%PREFIX%%/firebird. Firebird needs this
|
||||
link for proper operation.
|
||||
Firebird is now installed. A symbolic link from
|
||||
/usr/interbase -> %%PREFIX%%/firebird is REQUIRED for
|
||||
proper operation of Firebird.
|
||||
|
||||
The symbolic link can be created with:
|
||||
|
||||
% ln -s %%PREFIX%%/firebird /usr/interbase
|
||||
|
||||
It is STRONGLY recommended that you change the SYSDBA
|
||||
password with:
|
||||
|
||||
$ cd /usr/interbase
|
||||
$ gsec -user SYSDBA -pass masterkey
|
||||
% cd %%PREFIX%%/firebird
|
||||
% gsec -user SYSDBA -pass masterkey
|
||||
GSEC> modify SYSDBA -pw newpassword
|
||||
GSEC> quit
|
||||
|
||||
|
@ -18,8 +18,6 @@ DISTFILES= bootkit-1.0.2.908.tar.gz \
|
||||
MAINTAINER= chris@aims.com.au
|
||||
COMMENT= The open-source InterBase(tm) 6.0 spin-off (Classic version)
|
||||
|
||||
BROKEN= "Installs files in /usr/interbase"
|
||||
|
||||
WRKSRC= ${WRKDIR}/firebird-1.0.2.908
|
||||
INSTALLS_SHLIB= yes
|
||||
LDCONFIG_DIRS= %%PREFIX%%/firebird/lib
|
||||
|
@ -10,16 +10,6 @@ if [ -d $PKG_PREFIX/firebird ]; then
|
||||
mv $PKG_PREFIX/firebird $PKG_PREFIX/firebird.old
|
||||
fi
|
||||
|
||||
if [ -L /usr/interbase ]; then
|
||||
rm -f /usr/interbase
|
||||
fi
|
||||
|
||||
if [ -d /usr/interbase ]; then
|
||||
mv /usr/interbase /usr/interbase.old
|
||||
fi
|
||||
|
||||
ln -fs $PKG_PREFIX/firebird /usr/interbase
|
||||
|
||||
if [ `id -u` -ne 0 ]; then
|
||||
echo; echo "You must be root to run this step!"; echo; echo
|
||||
exit 1
|
||||
@ -140,7 +130,7 @@ cat >>/etc/services <<EOF
|
||||
gds_db 3050/tcp #InterBase Database Remote Protocol
|
||||
EOF
|
||||
cat >>/etc/inetd.conf <<EOF
|
||||
gds_db stream tcp nowait firebird /usr/interbase/bin/gds_inet_server gds_inet_server
|
||||
gds_db stream tcp nowait firebird $PKG_PREFIX/firebird/bin/gds_inet_server gds_inet_server
|
||||
EOF
|
||||
if [ -f /var/run/inetd.pid ]; then
|
||||
kill -HUP `cat /var/run/inetd.pid`
|
||||
|
@ -1,14 +1,18 @@
|
||||
|
||||
---------------------------------------------------------
|
||||
Firebird is now installed. There is a symbolic link from
|
||||
/usr/interbase -> %%PREFIX%%/firebird. Firebird needs this
|
||||
link for proper operation.
|
||||
Firebird is now installed. A symbolic link from
|
||||
/usr/interbase -> %%PREFIX%%/firebird is REQUIRED for
|
||||
proper operation of Firebird.
|
||||
|
||||
The symbolic link can be created with:
|
||||
|
||||
% ln -s %%PREFIX%%/firebird /usr/interbase
|
||||
|
||||
It is STRONGLY recommended that you change the SYSDBA
|
||||
password with:
|
||||
|
||||
$ cd /usr/interbase
|
||||
$ gsec -user SYSDBA -pass masterkey
|
||||
% cd %%PREFIX%%/firebird
|
||||
% gsec -user SYSDBA -pass masterkey
|
||||
GSEC> modify SYSDBA -pw newpassword
|
||||
GSEC> quit
|
||||
|
||||
|
@ -18,8 +18,6 @@ DISTFILES= bootkit-1.0.2.908.tar.gz \
|
||||
MAINTAINER= chris@aims.com.au
|
||||
COMMENT= The open-source InterBase(tm) 6.0 spin-off (Classic version)
|
||||
|
||||
BROKEN= "Installs files in /usr/interbase"
|
||||
|
||||
WRKSRC= ${WRKDIR}/firebird-1.0.2.908
|
||||
INSTALLS_SHLIB= yes
|
||||
LDCONFIG_DIRS= %%PREFIX%%/firebird/lib
|
||||
|
@ -10,16 +10,6 @@ if [ -d $PKG_PREFIX/firebird ]; then
|
||||
mv $PKG_PREFIX/firebird $PKG_PREFIX/firebird.old
|
||||
fi
|
||||
|
||||
if [ -L /usr/interbase ]; then
|
||||
rm -f /usr/interbase
|
||||
fi
|
||||
|
||||
if [ -d /usr/interbase ]; then
|
||||
mv /usr/interbase /usr/interbase.old
|
||||
fi
|
||||
|
||||
ln -fs $PKG_PREFIX/firebird /usr/interbase
|
||||
|
||||
if [ `id -u` -ne 0 ]; then
|
||||
echo; echo "You must be root to run this step!"; echo; echo
|
||||
exit 1
|
||||
@ -140,7 +130,7 @@ cat >>/etc/services <<EOF
|
||||
gds_db 3050/tcp #InterBase Database Remote Protocol
|
||||
EOF
|
||||
cat >>/etc/inetd.conf <<EOF
|
||||
gds_db stream tcp nowait firebird /usr/interbase/bin/gds_inet_server gds_inet_server
|
||||
gds_db stream tcp nowait firebird $PKG_PREFIX/firebird/bin/gds_inet_server gds_inet_server
|
||||
EOF
|
||||
if [ -f /var/run/inetd.pid ]; then
|
||||
kill -HUP `cat /var/run/inetd.pid`
|
||||
|
@ -1,14 +1,18 @@
|
||||
|
||||
---------------------------------------------------------
|
||||
Firebird is now installed. There is a symbolic link from
|
||||
/usr/interbase -> %%PREFIX%%/firebird. Firebird needs this
|
||||
link for proper operation.
|
||||
Firebird is now installed. A symbolic link from
|
||||
/usr/interbase -> %%PREFIX%%/firebird is REQUIRED for
|
||||
proper operation of Firebird.
|
||||
|
||||
The symbolic link can be created with:
|
||||
|
||||
% ln -s %%PREFIX%%/firebird /usr/interbase
|
||||
|
||||
It is STRONGLY recommended that you change the SYSDBA
|
||||
password with:
|
||||
|
||||
$ cd /usr/interbase
|
||||
$ gsec -user SYSDBA -pass masterkey
|
||||
% cd %%PREFIX%%/firebird
|
||||
% gsec -user SYSDBA -pass masterkey
|
||||
GSEC> modify SYSDBA -pw newpassword
|
||||
GSEC> quit
|
||||
|
||||
|
@ -18,8 +18,6 @@ DISTFILES= bootkit-1.0.2.908.tar.gz \
|
||||
MAINTAINER= chris@aims.com.au
|
||||
COMMENT= The open-source InterBase(tm) 6.0 spin-off (Classic version)
|
||||
|
||||
BROKEN= "Installs files in /usr/interbase"
|
||||
|
||||
WRKSRC= ${WRKDIR}/firebird-1.0.2.908
|
||||
INSTALLS_SHLIB= yes
|
||||
LDCONFIG_DIRS= %%PREFIX%%/firebird/lib
|
||||
|
@ -10,16 +10,6 @@ if [ -d $PKG_PREFIX/firebird ]; then
|
||||
mv $PKG_PREFIX/firebird $PKG_PREFIX/firebird.old
|
||||
fi
|
||||
|
||||
if [ -L /usr/interbase ]; then
|
||||
rm -f /usr/interbase
|
||||
fi
|
||||
|
||||
if [ -d /usr/interbase ]; then
|
||||
mv /usr/interbase /usr/interbase.old
|
||||
fi
|
||||
|
||||
ln -fs $PKG_PREFIX/firebird /usr/interbase
|
||||
|
||||
if [ `id -u` -ne 0 ]; then
|
||||
echo; echo "You must be root to run this step!"; echo; echo
|
||||
exit 1
|
||||
@ -140,7 +130,7 @@ cat >>/etc/services <<EOF
|
||||
gds_db 3050/tcp #InterBase Database Remote Protocol
|
||||
EOF
|
||||
cat >>/etc/inetd.conf <<EOF
|
||||
gds_db stream tcp nowait firebird /usr/interbase/bin/gds_inet_server gds_inet_server
|
||||
gds_db stream tcp nowait firebird $PKG_PREFIX/firebird/bin/gds_inet_server gds_inet_server
|
||||
EOF
|
||||
if [ -f /var/run/inetd.pid ]; then
|
||||
kill -HUP `cat /var/run/inetd.pid`
|
||||
|
@ -1,14 +1,18 @@
|
||||
|
||||
---------------------------------------------------------
|
||||
Firebird is now installed. There is a symbolic link from
|
||||
/usr/interbase -> %%PREFIX%%/firebird. Firebird needs this
|
||||
link for proper operation.
|
||||
Firebird is now installed. A symbolic link from
|
||||
/usr/interbase -> %%PREFIX%%/firebird is REQUIRED for
|
||||
proper operation of Firebird.
|
||||
|
||||
The symbolic link can be created with:
|
||||
|
||||
% ln -s %%PREFIX%%/firebird /usr/interbase
|
||||
|
||||
It is STRONGLY recommended that you change the SYSDBA
|
||||
password with:
|
||||
|
||||
$ cd /usr/interbase
|
||||
$ gsec -user SYSDBA -pass masterkey
|
||||
% cd %%PREFIX%%/firebird
|
||||
% gsec -user SYSDBA -pass masterkey
|
||||
GSEC> modify SYSDBA -pw newpassword
|
||||
GSEC> quit
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user