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