mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-10 11:05:54 +02:00
Den cyrus-imapd umbenannt.
Die Abhaengigkeiten von openmailadmin angepasst. Moblock erstmal raus bis wir damit beginnen. Begonnen die Pakfire-functions.sh zu erweitern. Cups soll automatisch starten. git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@973 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
This commit is contained in:
@@ -1 +0,0 @@
|
||||
usr/bin/moblock
|
||||
@@ -31,10 +31,10 @@ DL_FILE = $(THISAPP).tar.gz
|
||||
DL_FROM = $(URL_IPFIRE)
|
||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
PROG = cyrusimap
|
||||
PROG = cyrus-imapd
|
||||
PAK_VER = 1
|
||||
|
||||
DEPS = "cyrus-sasl mysql"
|
||||
DEPS = "cyrus-sasl"
|
||||
|
||||
###############################################################################
|
||||
# Top-level Rules
|
||||
83
lfs/moblock
83
lfs/moblock
@@ -1,83 +0,0 @@
|
||||
###############################################################################
|
||||
# #
|
||||
# IPFire.org - A linux based firewall #
|
||||
# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
|
||||
# #
|
||||
# This program is free software: you can redistribute it and/or modify #
|
||||
# it under the terms of the GNU General Public License as published by #
|
||||
# the Free Software Foundation, either version 3 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 #
|
||||
# GNU General Public License for more details. #
|
||||
# #
|
||||
# You should have received a copy of the GNU General Public License #
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
|
||||
# #
|
||||
###############################################################################
|
||||
|
||||
###############################################################################
|
||||
# Definitions
|
||||
###############################################################################
|
||||
|
||||
include Config
|
||||
|
||||
VER = 0.8
|
||||
|
||||
THISAPP = MoBlock-$(VER)
|
||||
DL_FILE = $(THISAPP)-i586.tar.bz2
|
||||
DL_FROM = $(URL_IPFIRE)
|
||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
PROG = moblock
|
||||
PAK_VER = 1
|
||||
|
||||
DEPS = ""
|
||||
|
||||
###############################################################################
|
||||
# Top-level Rules
|
||||
###############################################################################
|
||||
|
||||
objects = $(DL_FILE)
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
|
||||
$(DL_FILE)_MD5 = 199967adb48b153be90db10fe21325c5
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
|
||||
|
||||
download :$(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
|
||||
md5 : $(subst %,%_MD5,$(objects))
|
||||
|
||||
dist:
|
||||
@$(PAK)
|
||||
|
||||
###############################################################################
|
||||
# Downloading, checking, md5sum
|
||||
###############################################################################
|
||||
|
||||
$(patsubst %,$(DIR_CHK)/%,$(objects)) :
|
||||
@$(CHECK)
|
||||
|
||||
$(patsubst %,$(DIR_DL)/%,$(objects)) :
|
||||
@$(LOAD)
|
||||
|
||||
$(subst %,%_MD5,$(objects)) :
|
||||
@$(MD5)
|
||||
|
||||
###############################################################################
|
||||
# Installation Details
|
||||
###############################################################################
|
||||
|
||||
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
|
||||
cd $(DIR_APP) && make
|
||||
cd $(DIR_APP) && make install
|
||||
@rm -rf $(DIR_APP)
|
||||
@$(POSTBUILD)
|
||||
@@ -34,7 +34,7 @@ TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
PROG = openmailadmin
|
||||
PAK_VER = 1
|
||||
|
||||
DEPS = "cyrusimap postfix"
|
||||
DEPS = "cyrus-imapd postfix mysql"
|
||||
|
||||
###############################################################################
|
||||
# Top-level Rules
|
||||
|
||||
@@ -19,21 +19,20 @@
|
||||
# #
|
||||
###############################################################################
|
||||
|
||||
. /etc/sysconfig/rc
|
||||
. $rc_functions
|
||||
|
||||
extract_files() {
|
||||
echo "Extracting files..."
|
||||
tar xvf /opt/pakfire/tmp/files --preserve --numeric-owner -C /
|
||||
echo "...Finished."
|
||||
}
|
||||
|
||||
reload_libs() {
|
||||
echo "(Re-)Initializing the lib-cache..."
|
||||
ldconfig -vv
|
||||
echo "...Finished."
|
||||
}
|
||||
|
||||
reload_modules() {
|
||||
echo "(Re-)Initializing the module-dependencies..."
|
||||
depmod -va
|
||||
remove_files() {
|
||||
echo "Removing files..."
|
||||
for i in $(cat /opt/pakfire/tmp/ROOTFILES); do
|
||||
rm -rfv ${i}
|
||||
done
|
||||
echo "...Finished."
|
||||
}
|
||||
|
||||
@@ -42,3 +41,34 @@ restart_service() {
|
||||
/etc/init.d/$1 restart
|
||||
|
||||
}
|
||||
|
||||
start_service() {
|
||||
DELAY=0
|
||||
while true
|
||||
case "${1}" in
|
||||
--delay|-d)
|
||||
DELAY=${2}
|
||||
shift 2
|
||||
;;
|
||||
--background|-b)
|
||||
BACKGROUND="&"
|
||||
shift
|
||||
;;
|
||||
-*)
|
||||
log_failure_msg "Unknown Option: ${1}"
|
||||
return 2 #invalid or excess argument(s)
|
||||
;;
|
||||
*)
|
||||
break
|
||||
;;
|
||||
esac
|
||||
|
||||
[ -e "/etc/init.d/${1}" ] && \
|
||||
(sleep ${DELAY} && /etc/init.d/${1} start ${BACKGROUND})
|
||||
}
|
||||
|
||||
stop_service() {
|
||||
|
||||
[ -e "/etc/init.d/${1}" ] && /etc/init.d/${1} stop
|
||||
|
||||
}
|
||||
|
||||
10
src/paks/cups/install.sh
Normal file
10
src/paks/cups/install.sh
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
. /opt/pakfire/lib/functions.sh
|
||||
|
||||
extract_files
|
||||
|
||||
sleep 300 && /etc/init.d/cups start &
|
||||
|
||||
ln -svf ../init.d/cups /etc/rc.d/rc0.d/K00cups
|
||||
ln -svf ../init.d/cups /etc/rc.d/rc3.d/S25cups
|
||||
ln -svf ../init.d/cups /etc/rc.d/rc6.d/K00cups
|
||||
5
src/paks/cups/uninstall.sh
Normal file
5
src/paks/cups/uninstall.sh
Normal file
@@ -0,0 +1,5 @@
|
||||
#!/bin/bash
|
||||
|
||||
/etc/init.d/cups stop
|
||||
|
||||
rm -rf /etc/rc.d/rc*.d/*cups
|
||||
4
src/paks/cups/update.sh
Normal file
4
src/paks/cups/update.sh
Normal file
@@ -0,0 +1,4 @@
|
||||
#!/bin/bash
|
||||
. /opt/pakfire/lib/functions.sh
|
||||
|
||||
extract_files
|
||||
@@ -2,3 +2,5 @@
|
||||
. /opt/pakfire/lib/functions.sh
|
||||
|
||||
extract_files
|
||||
|
||||
start_service --delay 60 --background ${NAME}
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
#!/bin/bash
|
||||
. /opt/pakfire/lib/functions.sh
|
||||
|
||||
stop_service ${NAME}
|
||||
|
||||
Reference in New Issue
Block a user