fix automated build

Noted by:	kris
Submitted by:	maintainer
PR:		95864
This commit is contained in:
Oliver Lehmann 2006-04-16 11:54:05 +00:00
parent 9411240072
commit aea3722c89
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=159692
2 changed files with 62 additions and 0 deletions

View File

@ -7,6 +7,7 @@
PORTNAME= solid-ircd
PORTVERSION= 3.4.7a
PORTREVISION= 1
CATEGORIES= irc
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR=solidircd

View File

@ -0,0 +1,61 @@
--- configure.old Sat Apr 15 12:21:36 2006
+++ configure Sat Apr 15 12:21:50 2006
@@ -8941,58 +8941,3 @@
echo " Maximum Connections: $maxconnections"
echo " Install Directory: $prefix"
echo ""
-
-
-ok=0
-DEF=no
-echo "Would you like to create your SSL Certificate now?"
-while [ $ok -lt 1 ] ; do
- echo "[$DEF] "
- if read INPUT ; then : ; else echo "" ; exit 1 ; fi
- if [ ! "$INPUT" ] ; then
- INPUT=$DEF
- fi
- case $INPUT in
- n*|N*)
-
- ok=1
- ;;
- y*|Y*)
- cd doc/ssl
- ./makecert.sh newcert
- cd ..
- cd ..
- ok=1
- ;;
- *)
- echo "Please enter 'yes' or 'no'."
- ;;
- esac
-done
-echo ""
-
-ok=0
-DEF=no
-echo "Would you like to compile & install solid-ircd now?"
-while [ $ok -lt 1 ] ; do
- echo "[$DEF] "
- if read INPUT ; then : ; else echo "" ; exit 1 ; fi
- if [ ! "$INPUT" ] ; then
- INPUT=$DEF
- fi
- case $INPUT in
- n*|N*)
-
- ok=1
- ;;
- y*|Y*)
-
- make && make install
- ok=1
- ;;
- *)
- echo "Please enter 'yes' or 'no'."
- ;;
- esac
-done
-echo ""