diff options
author | Oliver Lehmann <oliver@FreeBSD.org> | 2006-04-16 11:54:05 +0000 |
---|---|---|
committer | Oliver Lehmann <oliver@FreeBSD.org> | 2006-04-16 11:54:05 +0000 |
commit | aea3722c89c06ea172b9b9a7c42afa6b76f6c615 (patch) | |
tree | 1f5289f850489206d9c192c395bf558d68eda6fc /irc/solid-ircd | |
parent | - fix build of gnustep-xdps (diff) |
fix automated build
Noted by: kris
Submitted by: maintainer
PR: 95864
Notes
Notes:
svn path=/head/; revision=159692
Diffstat (limited to 'irc/solid-ircd')
-rw-r--r-- | irc/solid-ircd/Makefile | 1 | ||||
-rw-r--r-- | irc/solid-ircd/files/patch-configure | 61 |
2 files changed, 62 insertions, 0 deletions
diff --git a/irc/solid-ircd/Makefile b/irc/solid-ircd/Makefile index 81db9f4b2ff6..2bc3c4b3816c 100644 --- a/irc/solid-ircd/Makefile +++ b/irc/solid-ircd/Makefile @@ -7,6 +7,7 @@ PORTNAME= solid-ircd PORTVERSION= 3.4.7a +PORTREVISION= 1 CATEGORIES= irc MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=solidircd diff --git a/irc/solid-ircd/files/patch-configure b/irc/solid-ircd/files/patch-configure new file mode 100644 index 000000000000..0f73ecfb31a0 --- /dev/null +++ b/irc/solid-ircd/files/patch-configure @@ -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 "" |