diff options
author | roam <roam@FreeBSD.org> | 2001-07-04 23:34:50 +0800 |
---|---|---|
committer | roam <roam@FreeBSD.org> | 2001-07-04 23:34:50 +0800 |
commit | 01d456802b2cbff0deb171ef07d9ac5c2050088f (patch) | |
tree | 402093a77f74b03c9afec0ce1f816ae28d536b9e /mail/vpopmail-stable/files | |
parent | f1c9ffb281d5f3c39aaaff805c04b1772fce4a74 (diff) | |
download | freebsd-ports-gnome-01d456802b2cbff0deb171ef07d9ac5c2050088f.tar.gz freebsd-ports-gnome-01d456802b2cbff0deb171ef07d9ac5c2050088f.tar.zst freebsd-ports-gnome-01d456802b2cbff0deb171ef07d9ac5c2050088f.zip |
Rip out the configure script parts that try to modify the destination dir.
Let the user override the MySQL username, password and db at build time.
Let the user override the vchkpw gid and the vpopmail uid.
Bump PORTREVISION.
Approved by: nbm (maintainer)
Diffstat (limited to 'mail/vpopmail-stable/files')
-rw-r--r-- | mail/vpopmail-stable/files/patch-configure | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/mail/vpopmail-stable/files/patch-configure b/mail/vpopmail-stable/files/patch-configure new file mode 100644 index 000000000000..67eba685ec3c --- /dev/null +++ b/mail/vpopmail-stable/files/patch-configure @@ -0,0 +1,50 @@ +--- configure.old Wed Jul 4 17:14:16 2001 ++++ configure Wed Jul 4 17:14:54 2001 +@@ -1613,16 +1613,6 @@ + rm -f vpopusername + + +-if test ! -d $vpopmaildir/etc +-then +- mkdir $vpopmaildir/etc +- chown $vpopmailuid "$vpopmaildir"/etc +- chgrp $vpopmailgid "$vpopmaildir"/etc +- chmod 755 "$vpopmaildir"/etc +- echo "configure: warning: making a vpopmail etc directory " 1>&2 +-fi +- +- + open_smtp_cur="$vpopmaildir/etc/open-smtp" + open_smtp_tmp="$vpopmaildir/etc/open-smtp.tmp" + open_smtp_lok="$vpopmaildir/etc/open-smtp.lock" +@@ -1658,7 +1648,6 @@ + + if test "$tcpserver_file" = "" + then +- echo "127.:allow,RELAYCLIENT=\"\"" > "$vpopmaildir"/etc/tcp.smtp + tcpserver_file="$vpopmaildir"/etc/tcp.smtp + + echo "configure: warning: Unable to find your tcpserver relay file." 1>&2 +@@ -1873,7 +1862,6 @@ + fi + auth_libs="-L$sqllibdir -lmysqlclient -lz" + +- echo "-L$vpopmaildir/lib -lvpopmail -L$sqllibdir -lmysqlclient -lz" > $vpopmaildir/etc/lib_deps + + ;; + *) +@@ -2007,14 +1995,12 @@ + authlib= + + auth_inc="-Icdb" +- echo "-L$vpopmaildir/lib -lvpopmail" > $vpopmaildir/etc/lib_deps + + ;; + *) + ;; + esac + +-echo "-I$vpopmaildir/include" > $vpopmaildir/etc/inc_deps + + # Check whether --enable-roaming-users or --disable-roaming-users was given. + if test "${enable_roaming_users+set}" = set; then |