5 # Copyright (C) 2001-2009, Eduardo Silva P.
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU Library General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
31 echo "+ Creating conf/monkey.conf"
34 echo "+ Creating Makefile"
37 echo "+ Creating src/Makefile"
40 echo "+ Creating src/include/info.h"
43 echo "+ Creating banana script"
46 echo -n "Configuration done, just type 'make"
49 echo -n "+ Checking for Pthreads lib.........."
54 # Create configuration files under 'conf/'
57 cat $INCDIR/config.path lang
/"$*"/mconf lang
/"$*"/sites
/default
> makeconf.sh
61 rm $INCDIR/config.path
70 if [ ! -d $bin ]; then
74 if [ ! -d $logs ]; then
78 if [ ! -d $sites ]; then
90 if [ "$prefix" != "$actual_path" ]; then
94 if [ "$bindir" != "$actual_path/bin" ]; then
98 if [ "$cgibin" != "$actual_path/cgi-bin" ]; then
102 if [ "$sysconfdir" != "$actual_path/conf" ]; then
106 if [ "$datadir" != "$actual_path/htdocs" ]; then
110 if [ "$logdir" != "$actual_path/logs" ]; then
115 echo "Checking dependencies"
116 echo "====================="
122 echo "Creating Makefiles and scripts"
123 echo "=============================="
127 create_conf prefix bindir cgibin sysconfdir datadir logdir
132 if [ "$dir" = 0 ]; then
133 create_makefile1 bindir
135 create_makefile1_install prefix bindir cgibin sysconfdir datadir logdir
139 create_makefile2 mod_libs mod_obj make_script add_obj_mod cheetah_obj
142 create_info sysconfdir SYSNAME VERSION
145 create_banana_script bindir logdir
149 if [ "$dir" = 1 ]; then
150 echo -n " && make install' "
156 create_makefile_plugins
$plugdir
158 echo "#define CC \"${CC}\"" > src
/include
/env.h
166 int main(){ return 0;}
169 libtest
=`gcc check.c -lpthread &>configure.log`
170 libstatus
=`cat configure.log`
171 if test -n "$libstatus" ; then
173 rm -fr check
* configure.log
177 rm -fr check
* configure.log a.out
184 cat > Makefile
<< EOF
185 # Monkey HTTP Daemon: Makefile
186 # ============================
191 @(cd plugins; make all)
194 @(cd src; make clean)
196 @(cd src; make distclean)
200 create_makefile1_install
()
202 # Look for plugins and create list
203 for entry
in plugins
/*
205 if [ -d $entry ]; then
206 echo -e "\tinstall -s -m 644 $entry/*.so \${PLUGINDIR}" >> plugins.list
209 plglist
=`cat plugins.list`
212 # Look for plugins configuration
213 for entry
in conf
/plugins
/*
215 if [ -d $entry ]; then
216 echo -e "\tcp -r $entry \${SYSCONFDIR}/plugins/" >> plugins.conf
219 plgconf
=`cat plugins.conf`
223 # Monkey HTTP Daemon: Makefile
224 # ============================
225 PREFIX=\$(DESTDIR)${prefix}
226 BINDIR=\$(DESTDIR)${bindir}
227 CGIBIN=\$(DESTDIR)${cgibin}
228 SYSCONFDIR=\$(DESTDIR)${sysconfdir}
229 DATADIR=\$(DESTDIR)${datadir}
230 LOGDIR=\$(DESTDIR)${logdir}
231 PLUGINDIR=\$(DESTDIR)${plugdir}
236 @(cd src; make clean)
238 @(cd src; make distclean)
242 install -d \$(BINDIR)
243 install -d \$(CGIBIN)
244 install -d \$(SYSCONFDIR)
245 install -d \${SYSCONFDIR}/sites
246 install -d \${SYSCONFDIR}/plugins
247 install -d \$(DATADIR)
248 install -d \${DATADIR}/imgs
249 install -d \${DATADIR}/php
250 install -d \${DATADIR}/docs
251 install -d \${LOGDIR}
252 install -d \${PLUGINDIR}
253 install -m 755 bin/monkey \$(BINDIR)
254 $STRIP \$(BINDIR)/monkey
255 install -m 755 bin/banana \$(BINDIR)
256 install -m 644 ./conf/*.* \$(SYSCONFDIR)
258 install -m 644 ./conf/sites/* \${SYSCONFDIR}/sites
260 install -m 644 ./htdocs/*.* \$(DATADIR)
261 install -m 644 ./htdocs/imgs/*.* \${DATADIR}/imgs
263 @echo " Running Monkey :"
264 @echo " ----------------"
266 @echo " # $bindir/monkey"
268 @echo " For more help use '-h' option"
274 # Create monkey/src/Makefile
278 cat > src
/Makefile
<<EOF
284 DESTDIR = ../bin/monkey
285 LIBS = -ldl -lpthread $mod_libs $MORE_LIBS
286 OBJ = monkey.o method.o mimetype.o request.o \\
287 header.o config.o logfile.o signals.o \\
288 user.o utils.o chars.o epoll.o scheduler.o \\
289 str.o memory.o connection.o iov.o http.o \\
290 file.o socket.o clock.o cache.o worker.o \\
296 ../bin/monkey: \$(OBJ)
298 @echo "Compiling Monkey"
299 @echo "================"
300 \$(CC) \$(CFLAGS) \$(DEFS) \$(LIBS) \$(LDFLAGS) -o \$@ \$(OBJ) $mod_obj
302 @echo "Compiling Plugins"
303 @echo "================="
304 @(cd ../plugins && make all && cd ..)
311 rm -rf *.o ../bin/* Makefile \\
312 ../Makefile ../conf/monkey.conf \\
313 ../conf/sites/* include/info.h ../logs/*\\
316 \$(CC) -c \$(CFLAGS) \$(DEFS) -I\$(INCDIR) \$<
320 create_makefile_plugins
()
327 plugins_load
="../conf/plugins.load"
328 echo -n > $plugins_load
329 echo "# Monkey Plugins Loader" >> $plugins_load
330 echo "# =====================" >> $plugins_load
331 echo "# Monkey plugins are extended functionalities for Monkey," >> $plugins_load
332 echo "# the main directive to load a plugin is LoadPlugin plus" >> $plugins_load
333 echo "# the absolute path for the desired plugin." >> $plugins_load
334 echo "#" >> $plugins_load
335 echo "# Please check the following list of available plugins:" >> $plugins_load
336 echo "" >> $plugins_load
338 for plugin_dir
in `echo */ "" | sed "s/\/ /\n/g"`;
341 if test -e $plugin_dir/DISABLED
; then
345 if test -e $plugin_dir/MANDATORY
; then
349 if test -e $plugin_dir/OPTIONAL
; then
353 echo " @(cd $plugin_dir && make && cd ..)" >> Makefile
;
354 sed -e "s/\$CC/$CC/" -e "s/\$CFLAGS/$CFLAGS/" -e "s/\$DEFS/$DEFS/" $plugin_dir/Makefile.
in > $plugin_dir/Makefile
356 if test -e $plugin_dir/ABOUT
; then
357 cat $plugin_dir/ABOUT |
sed -e 's/^/# /' >> ..
/conf
/plugins.load
358 echo "#" >> ..
/conf
/plugins.load
360 echo "#" >> ..
/conf
/plugins.load
363 if [ "$plugdir" != "" ]; then
364 echo "${comment}LoadPlugin $plugdir/monkey-$plugin_dir.so" >> ..
/conf
/plugins.load
366 echo "${comment}LoadPlugin $dir/$plugin_dir/monkey-$plugin_dir.so" >> ..
/conf
/plugins.load
369 echo "" >> ..
/conf
/plugins.load
372 # Add 'install' option to make file if plugdir was specified
373 if [ "$plugdir" != "" ]; then
374 echo -e "\ninstall:" >> Makefile
375 echo -e "\tinstall -d $plugdir" >> Makefile
377 list
=`echo */ "" | sed "s/\/ /\n/g"`
380 echo -e "\tinstall -m 644 $dir/$i/monkey-$i.so $plugdir/" >> Makefile
386 # Creando include/info.h
389 cat > $INCDIR/info.h
<<EOF
390 #define OS "$SYSNAME"
391 #define VERSION "$VERSION" /* Version de Monkey */
392 #define MONKEY_PATH_CONF "$sysconfdir"
398 cat > $INCDIR/config.path
<<EOF
403 sysconfdir=$sysconfdir
409 create_banana_script
()
411 cat > bin
/banana
<< EOF
414 # Monkey HTTP Daemon - Banana Script
415 # -----------------------------------
416 # This script allow you to control monkey. Written by Eduardo Silva
417 # ----------------------------
419 # ----------------------------
421 # Use: ./banana OPTION
423 # Options available to banana:
425 # start -> start monkey
426 # restart -> restart monkey
427 # stop -> stop monkey if this is running
428 # help -> what do u think ?
430 PIDFILE="$logdir/monkey.pid"
431 BINMONKEY="$bindir/monkey"
435 -*=*) optarg=\`echo "\$arg" | sed 's/[-_a-zA-Z0-9]*=//'\` ;;
439 if ! test -f \$PIDFILE ; then
442 PIDMONKEY=\`cat \$PIDFILE\`
443 if ! kill -0 \$PIDMONKEY 2>/dev/null; then
452 if [ "\$STATUS" = "yes" ] ; then
453 echo "Monkey is running... (PID=\$PIDMONKEY)"
456 if ! test -x \$BINMONKEY ; then
457 echo "Error: I can't run binary file"
460 if \$BINMONKEY -D 2>/dev/null ; then
461 echo "Running Monkey -> OK"
467 if [ "\$STATUS" = "no" ]; then
468 echo "Monkey is not running."
472 rm -rf \$PIDFILE > /dev/null
473 echo "Monkey stopped (\$PIDMONKEY)"
477 if [ "\$STATUS" = "yes" ]; then
478 if ! kill \$PIDMONKEY > /dev/null ; then
481 echo -n "Stopping Monkey... "
484 echo -n "Monkey is not running... "
486 if ! test -x \$BINMONKEY ; then
487 echo "Error: I can't run binary file"
490 \$BINMONKEY -D > /dev/null
491 echo "Restarting -> OK"
496 echo "Use : banana [start|stop|restart|help]"
501 echo "Use : banana [start|stop|restart|help]"
508 #---------------------------#
510 #---------------------------#
513 #---------------------------#
515 #---------------------------#
520 cgibin
="$aux/cgi-bin"
521 sysconfdir
="$aux/conf"
522 datadir
="$aux/htdocs"
529 optarg
=`echo "$arg" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
537 cgibin
="$optarg/cgi-bin"
538 sysconfdir
="$optarg/conf"
539 datadir
="$optarg/htdocs"
540 logdir
="$optarg/logs"
541 plugdir
="$optarg/plugins"
568 echo "Monkey HTTP Daemon v$VERSION"
569 echo "-------------------------"
570 echo "Copyright 2001-2010"
571 echo "Developed by Eduardo Silva Pereira"
572 echo "Monkey Home : http://www.monkey-project.com"
573 echo "Contact Email : edsiper@gmail.com"
578 echo "Usage: configure [--prefix=PREFIXDIR] [ --bindir=BINDIR]"
579 echo " [--sysconfdir=SYSCONFDIR] [--datadir=DATADIR]"
580 echo " [--logdir=LOGDIR] [--plugdir=PLUGDIR]"
583 echo " --help Display this help and exit"
584 echo " --version Display version information and exit"
585 echo " --debug Compile Monkey with debugging symbols"
586 echo " --trace Compile Monkey with trace messages (don't use in production)"
588 echo " --prefix=PREFIX Install Monkey under PREFIX directory"
589 echo " --bindir=BINDIR Install Monkey binaries under BINDIR directory"
590 echo " --sysconfdir=SYSCONFDIR Install Monkey conf files under SYSCONFDIR dir"
591 echo " --datadir=DATADIR Install Monkey data dir files under DATADIR directory"
592 echo " --logdir=LOGDIR Install Monkey log files under LOGDIR directory"
593 echo " --plugdir=PLUGDIR Target directory for Monkey plugins"
600 echo "********************************************"
601 echo " Monkey HTTP Daemon v$VERSION "
602 echo "* http://www.monkey-project.com *"
603 echo "* ---------------------------------------- *"
604 echo "* We need beta testers, developers and *"
605 echo "* translators!, if u want help to this *"
606 echo "* project, email us : *"
608 echo "* monkeyd@googlegroups.com *"
610 echo "* Thanks for use Monkey!!! *"
612 echo "********************************************"
613 echo "System : $SYSINFO"
618 # Configure environment
619 if test -z "$CC" ; then
621 if test -x "$gcc_path" ; then
624 echo "I'm a Monkey not a compiler! how do you suppose to compile me ? Install a compiler"
629 if test -z "$STRIP" ; then
633 if test -z "$debug" ; then
643 # Starting main function
644 main prefix lang bindir cgibin sysconfdir datadir logdir plugdir modules SYSNAME VERSION