(10-26-2009 09:50 PM)kilburn Wrote: Try replacing the "Makefile.fbsd" contents with the following, and report any success/errors please:
Code:
#!/usr/bin/make -f
#
# ispCP ω (OMEGA) a Virtual Hosting Control Panel
# Copyright (c) 2001-2006 by moleSoftware GmbH
# http://www.molesoftware.com
# Copyright (c) 2006-2009 by isp Control Panel
# http://isp-control.net
#
#
# License:
# This program is free software; you can redistribute it and/or
# modify it under the terms of the MPL Mozilla Public License
# as published by the Free Software Foundation; either version 1.1
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# MPL Mozilla Public License for more details.
#
# You may have received a copy of the MPL Mozilla Public License
# along with this program.
#
# An on-line copy of the MPL Mozilla Public License can be found
# http://www.mozilla.org/MPL/MPL-1.1.html
#
#
# The ispCP ω Home Page is at:
#
# http://isp-control.net
#
ifndef INST_PREF
INST_PREF=/tmp/ispcp
endif
HOST_OS=freebsd
ROOT_CONF=$(INST_PREF)/usr/local/etc
SYSTEM_WEB=/usr/local/www
SYSTEM_ROOT=$(INST_PREF)$(SYSTEM_WEB)/ispcp
SYSTEM_CONF=$(INST_PREF)/usr/local/etc/ispcp
SYSTEM_LOG=$(INST_PREF)/var/log/ispcp
SYSTEM_APACHE_BACK_LOG=$(INST_PREF)$(SYSTEM_WEB)/logs/backup
SYSTEM_VIRTUAL=$(INST_PREF)$(SYSTEM_WEB)/data/virtual
SYSTEM_AWSTATS=$(INST_PREF)$(SYSTEM_WEB)/awstats
SYSTEM_FCGI=$(INST_PREF)$(SYSTEM_WEB)/data/fcgi
SYSTEM_MAIL_VIRTUAL=$(INST_PREF)/var/mail/virtual
SYSTEM_MAKE_DIRS=/bin/mkdir -p
SYSTEM_MAKE_FILE=/bin/touch
.PHONY: install uninstall clean
export
install:
cd ./tools && $(MAKE) install
$(SYSTEM_MAKE_DIRS) $(SYSTEM_CONF)
$(SYSTEM_MAKE_DIRS) $(SYSTEM_ROOT)
$(SYSTEM_MAKE_DIRS) $(SYSTEM_LOG)
$(SYSTEM_MAKE_DIRS) $(SYSTEM_LOG)/ispcp-arpl-msgr
$(SYSTEM_MAKE_DIRS) $(SYSTEM_VIRTUAL)
$(SYSTEM_MAKE_DIRS) $(SYSTEM_FCGI)
$(SYSTEM_MAKE_DIRS) $(SYSTEM_SCOREBOARDS)
$(SYSTEM_MAKE_DIRS) $(SYSTEM_AWSTATS)
$(SYSTEM_MAKE_DIRS) $(SYSTEM_MAIL_VIRTUAL)
$(SYSTEM_MAKE_DIRS) $(SYSTEM_APACHE_BACK_LOG)
cd ./configs && $(MAKE) install &
cd ./engine && $(MAKE) install
cd ./gui && $(MAKE) install
cd ./keys && $(MAKE) install
uninstall:
cd ./tools && $(MAKE) uninstall &
cd ./configs && $(MAKE) uninstall &
cd ./engine && $(MAKE) uninstall &
cd ./gui && $(MAKE) uninstall &
cd ./keys && $(MAKE) uninstall &
rm -rf $(SYSTEM_CONF)
rm -rf $(SYSTEM_ROOT)
rm -rf $(SYSTEM_LOG)
rm -rf $(SYSTEM_VIRTUAL)
rm -rf $(SYSTEM_FCGI)
rm -rf $(SYSTEM_SCOREBOARDS)
rm -rf $(SYSTEM_MAIL_VIRTUAL)
rm -rf $(SYSTEM_APACHE_BACK_LOG)
#rm -rf ./*~
clean:
cd ./tools/daemon && $(MAKE) clean
rm -rf $(INST_PREF)
.PHONY: install uninstall clean
Code:
[/usr/local/src/ispcp/ispcp-omega-1.0.2]# sudo make -f Makefile.fbsd install
"Makefile.fbsd", line 33: Need an operator
"Makefile.fbsd", line 35: Need an operator
"Makefile.fbsd", line 54: Need an operator
"Makefile.fbsd", line 59: Need an operator
"Makefile.fbsd", line 61: Need an operator
"Makefile.fbsd", line 62: Need an operator
"Makefile.fbsd", line 63: Need an operator
"Makefile.fbsd", line 64: Need an operator
"Makefile.fbsd", line 65: Need an operator
"Makefile.fbsd", line 66: Need an operator
"Makefile.fbsd", line 67: Missing dependency operator
"Makefile.fbsd", line 68: Need an operator
"Makefile.fbsd", line 69: Need an operator
"Makefile.fbsd", line 70: Need an operator
"Makefile.fbsd", line 72: Need an operator
"Makefile.fbsd", line 73: Need an operator
"Makefile.fbsd", line 74: Need an operator
"Makefile.fbsd", line 75: Need an operator
"Makefile.fbsd", line 80: Need an operator
"Makefile.fbsd", line 81: Need an operator
"Makefile.fbsd", line 82: Need an operator
"Makefile.fbsd", line 83: Need an operator
"Makefile.fbsd", line 84: Need an operator
"Makefile.fbsd", line 86: Need an operator
"Makefile.fbsd", line 87: Need an operator
"Makefile.fbsd", line 88: Need an operator
"Makefile.fbsd", line 89: Need an operator
"Makefile.fbsd", line 90: Need an operator
"Makefile.fbsd", line 91: Missing dependency operator
"Makefile.fbsd", line 92: Need an operator
"Makefile.fbsd", line 93: Need an operator
"Makefile.fbsd", line 99: Need an operator
"Makefile.fbsd", line 100: Need an operator
make: fatal errors encountered -- cannot continue