]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/samba
Pakfire laedt die Listen jetzt besser und hat eine veraenderte Oberflaeche bekommen.
[ipfire-2.x.git] / lfs / samba
CommitLineData
a20e6963
MT
1###############################################################################
2# This file is part of the IPCop Firewall. #
3# #
4# IPCop is free software; you can redistribute it and/or modify #
5# it under the terms of the GNU General Public License as published by #
6# the Free Software Foundation; either version 2 of the License, or #
7# (at your option) any later version. #
8# #
9# IPCop is distributed in the hope that it will be useful, #
10# but WITHOUT ANY WARRANTY; without even the implied warranty of #
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
12# GNU General Public License for more details. #
13# #
14# You should have received a copy of the GNU General Public License #
15# along with IPCop; if not, write to the Free Software #
16# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
17# #
18# Makefiles are based on LFSMake, which is #
19# Copyright (C) 2002 Rod Roard <rod@sunsetsystems.com> #
20# #
a20e6963
MT
21###############################################################################
22
23###############################################################################
24# Definitions
25###############################################################################
26
27include Config
28
3fa3a0f9 29VER = 3.0.25c
a20e6963
MT
30
31THISAPP = samba-$(VER)
32DL_FILE = $(THISAPP).tar.gz
961f22c4 33DL_FROM = $(URL_IPFIRE)
a20e6963
MT
34DIR_APP = $(DIR_SRC)/$(THISAPP)
35TARGET = $(DIR_INFO)/$(THISAPP)
a8b159e7 36PROG = samba
fd3e7da0 37PAK_VER = 1
a20e6963 38
5c8cfc99
MT
39DESCDE = "Samba ist ein Windows-File- und Printserver."
40DESCEN = "Samba is a file- and printserver for Windows."
57d5b138 41DEPS = "cups openldap cyrus-sasl"
5c8cfc99 42
a20e6963
MT
43###############################################################################
44# Top-level Rules
45###############################################################################
46
47objects = $(DL_FILE)
48
49$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
50
3fa3a0f9 51$(DL_FILE)_MD5 = 87950694270b86cbc1b2074cb53dd1aa
a20e6963
MT
52
53install : $(TARGET)
54
55check : $(patsubst %,$(DIR_CHK)/%,$(objects))
56
57download :$(patsubst %,$(DIR_DL)/%,$(objects))
58
59md5 : $(subst %,%_MD5,$(objects))
60
61dist:
a8b159e7 62 @$(PAK)
a20e6963
MT
63
64###############################################################################
65# Downloading, checking, md5sum
66###############################################################################
67
68$(patsubst %,$(DIR_CHK)/%,$(objects)) :
69 @$(CHECK)
70
71$(patsubst %,$(DIR_DL)/%,$(objects)) :
72 @$(LOAD)
73
74$(subst %,%_MD5,$(objects)) :
75 @$(MD5)
76
77###############################################################################
78# Installation Details
79###############################################################################
80
81$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
82 @$(PREBUILD)
83 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
84 cd $(DIR_APP)/source && ./configure \
85 --prefix=/usr \
90350ff3 86 --sysconfdir=/var/ipfire \
a20e6963
MT
87 --localstatedir=/var \
88 --with-piddir=/var/run \
89 --with-fhs \
90 --with-smbmount \
a08c3a2e
MT
91 --with-winbind
92 cd $(DIR_APP)/source && make
a20e6963
MT
93 cd $(DIR_APP)/source && make install
94 cd $(DIR_APP)/source && mv -v /usr/lib/samba/libsmbclient.so /usr/lib
95 cd $(DIR_APP)/source && ln -v -sf ../libsmbclient.so /usr/lib/samba
96 cd $(DIR_APP)/source && ln -v -sf libsmbclient.so /usr/lib/libsmbclient.so.0
97 cd $(DIR_APP)/source && chmod -v 644 /usr/include/lib{smbclient,msrpc}.h
98 cd $(DIR_APP)/source && install -v -m755 nsswitch/libnss_wins.so /lib
99 cd $(DIR_APP)/source && install -v -m755 nsswitch/libnss_winbind.so /lib
100 cd $(DIR_APP)/source && ln -v -sf libnss_winbind.so /lib/libnss_winbind.so.2
101 cd $(DIR_APP)/source && ln -v -sf libnss_wins.so /lib/libnss_wins.so.2
90350ff3 102# cd $(DIR_APP)/source && install -v -m755 nsswitch/pam_winbind.so /lib/security
5fcb6d5a 103 cd $(DIR_APP)/source && install -v -m644 ../examples/smb.conf.default /var/ipfire/samba
2228e9ce 104 -mkdir -p /var/ipfire/samba
59de0b00 105 cp -vrf $(DIR_SRC)/config/samba/* /var/ipfire/samba/
2228e9ce 106 chown nobody:nobody -R /var/ipfire/samba/
32f77a0b
CS
107 cp -vfp /var/ipfire/samba/default.global /var/ipfire/samba/global
108 cp -vfp /var/ipfire/samba/default.pdc /var/ipfire/samba/pdc
109 cp -vfp /var/ipfire/samba/default.settings /var/ipfire/samba/settings
110 cp -vfp /var/ipfire/samba/default.shares /var/ipfire/samba/shares
111 cp -vfp /var/ipfire/samba/default.printer /var/ipfire/samba/printer
60124059 112 cat /var/ipfire/samba/global /var/ipfire/samba/shares > /var/ipfire/samba/smb.conf
71dfc4b7 113 -mkdir -p /var/log/samba
a20e6963
MT
114 @rm -rf $(DIR_APP)
115 @$(POSTBUILD)