merged in changes from 0.23.96 (/vservers -> $DEFAULT_VSERVERDIR)
[util-vserver.git] / util-vserver / sysv / Makefile-files
1 ## $Id$  -*- makefile -*-
2
3 ## Copyright (C) 2003 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
4 ##  
5 ## This program is free software; you can redistribute it and/or modify
6 ## it under the terms of the GNU General Public License as published by
7 ## the Free Software Foundation; either version 2, or (at your option)
8 ## any later version.
9 ##  
10 ## This program is distributed in the hope that it will be useful,
11 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 ## GNU General Public License for more details.
14 ##  
15 ## You should have received a copy of the GNU General Public License
16 ## along with this program; if not, write to the Free Software
17 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 ##  
19
20 sysv_OPTIONS_EXEMPT     =  $(sysv_GENSCRPTS)
21
22 sysv_XTRAS              =  sysv/rebootmgr.subst \
23                            sysv/v_gated.subst \
24                            sysv/v_httpd.subst \
25                            sysv/v_named.subst \
26                            sysv/v_portmap.subst \
27                            sysv/v_sendmail.subst \
28                            sysv/v_smb.subst \
29                            sysv/v_sshd.subst \
30                            sysv/v_xinetd.subst \
31                            sysv/vservers.subst
32
33 sysv_GENSCRPTS          =  sysv/rebootmgr \
34                            sysv/v_gated \
35                            sysv/v_httpd \
36                            sysv/v_named \
37                            sysv/v_portmap \
38                            sysv/v_sendmail \
39                            sysv/v_smb \
40                            sysv/v_sshd \
41                            sysv/v_xinetd \
42                            sysv/vservers
43
44 sysv_SCRPTS             =  $(sysv_GENSCRPTS)
45
46 sysv_CFG                =  sysv/vservers.conf
47
48
49 sysv_SUBSTRULE          =  s!/usr/lib/util-vserver!$(pkglibdir)!g; \
50                            s!^USR_SBIN=/usr/sbin$$!USR_SBIN=$(sbindir)!g; \
51                            s!^DEFAULT_VSERVERDIR=/vservers$$!DEFAULT_VSERVERDIR=$(vserverdir)!g
52
53 sysv/%:                 sysv/%.subst
54                         @mkdir -p $$(dirname '$@')
55                         sed -e '$(sysv_SUBSTRULE)' '$<' >'$@.tmp'
56                         @rm -f '$@'
57                         @if cmp -s '$<' '$@.tmp'; then \
58                                 cp -p '$<' '$@'; \
59                         else \
60                                 mv -f '$@.tmp' '$@'; \
61                         fi
62                         @rm -f '$@.tmp'
63                         @chmod a-w '$@'