xref: /trunk/main/sysui/desktop/debian/makefile.mk (revision 49cc8443)
1#**************************************************************
2#
3#  Licensed to the Apache Software Foundation (ASF) under one
4#  or more contributor license agreements.  See the NOTICE file
5#  distributed with this work for additional information
6#  regarding copyright ownership.  The ASF licenses this file
7#  to you under the Apache License, Version 2.0 (the
8#  "License"); you may not use this file except in compliance
9#  with the License.  You may obtain a copy of the License at
10#
11#    http://www.apache.org/licenses/LICENSE-2.0
12#
13#  Unless required by applicable law or agreed to in writing,
14#  software distributed under the License is distributed on an
15#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16#  KIND, either express or implied.  See the License for the
17#  specific language governing permissions and limitations
18#  under the License.
19#
20#**************************************************************
21
22
23
24PRJ=..$/..
25
26PRJNAME=sysui
27TARGET=debian
28
29# !!! FIXME !!!
30# debian-menus file.
31
32# --- Settings -----------------------------------------------------
33
34.INCLUDE :  settings.mk
35
36# --- Product Version Information ----------------------------------
37
38.INCLUDE :  ../productversion.mk
39
40# --- Files --------------------------------------------------------
41
42.IF "$(PKGFORMAT)"!="$(PKGFORMAT:s/deb//)"
43
44DEBFILES=$(foreach,i,{$(PRODUCTLIST)} $(PKGDIR)$/$i4.2-$(TARGET)-menus_$(PKGVERSION.$i)-$(PKGREV)_all.deb)
45
46.ENDIF
47
48# --- Targets -------------------------------------------------------
49
50.INCLUDE :  target.mk
51
52.IF "$(PKGFORMAT)"!="$(PKGFORMAT:s/deb//)"
53
54ALLTAR : $(DEBFILES)
55
56
57%/DEBIAN/control : $$(@:f)
58	@$(MKDIRHIER) $(@:d) $*$/etc $*$/usr/share/applnk/Office $*$/usr/lib/menu
59	ln -sf /opt/$(UNIXFILENAME.$(*:f:s/-/ /:1:s/4.2//)) $*$/etc$/
60	/bin/sh -c -x "cd $(COMMONMISC)$/$(*:f:s/-/ /:1:s/4.2//) && DESTDIR=$(shell @cd $*; pwd) ICON_PREFIX=$(ICONPREFIX) KDEMAINDIR=/usr GNOMEDIR=/usr ./create_tree.sh"
61        @cat openoffice.org-debian-menus | sed -e 's/%PRODUCTNAME/$(PRODUCTNAME.$(*:f:s/-/ /:1:s/4.2//)) $(PRODUCTVERSION.$(*:f:s/-/ /:1:s/4.2//))/' -e 's/%PREFIX/$(UNIXFILENAME.$(*:f:s/-/ /:1:s/4.2//))/' -e 's/%ICONPREFIX/$(ICONPREFIX.$(*:f:s/-/ /:1:s/4.2//))/' > $*$/usr/lib/menu/$(*:f:s/_/ /:1:s/4.2//)
62	echo "Package: $(*:f:s/_/ /:1:s/4.2//)" > $@
63	cat $(@:f) | tr -d "\015" | sed "s/%productname/$(PRODUCTNAME.$(*:f:s/-/ /:1:s/4.2//))/" >> $@
64	echo "Version: $(PKGVERSION.$(*:f:s/-/ /:1:s/4.2//))-$(PKGREV)" >> $@
65	@du -k -s $* | awk -F ' ' '{ printf "Installed-Size: %s\n", $$1 ; }' >> $@
66
67%/DEBIAN/postinst : $$(@:f)
68	 @cat $< | tr -d "\015" | sed -e "s/%PREFIX/$(UNIXFILENAME.$(*:f:s/-/ /:1:s/4.2//))/g" > $@
69
70%/DEBIAN/postrm : $$(@:f)
71	 @cat $< | tr -d "\015" | sed -e "s/%PREFIX/$(UNIXFILENAME.$(*:f:s/-/ /:1:s/4.2//))/g" > $@
72
73%/DEBIAN/prerm : $$(@:f)
74	 @cat $< | tr -d "\015" | sed -e "s/%PREFIX/$(UNIXFILENAME.$(*:f:s/-/ /:1:s/4.2//))/g" > $@
75
76# --- packaging ---------------------------------------------------
77
78# fakeroot (which is required and checked for at configure time) fakes the user/group for us
79$(DEBFILES) : $(COMMONMISC)$/{$(PRODUCTLIST)}$/build.flag
80$(DEBFILES) : makefile.mk control postinst postrm prerm
81	-$(RM) $(@:d)$(@:f:s/_/ /:1)_*
82	$(RM) -r $(MISC)$/$(@:b)
83	dmake $(MISC)$/$(@:b)$/DEBIAN$/{control postinst postrm prerm}
84	@chmod -R go-w $(MISC)$/$(@:b)
85	@chmod a+rx $(MISC)$/$(@:b)$/DEBIAN $(MISC)/$(@:b)/DEBIAN/post* $(MISC)/$(@:b)/DEBIAN/pre*
86	@chmod g-s $(MISC)/$(@:b)/DEBIAN
87	@mkdir -p $(PKGDIR)
88	/bin/bash -c "$(FAKEROOT) dpkg-deb --build $(MISC)/$(@:b) $@"
89	$(RM) -r $(MISC)$/$(@:b)
90#	@chmod -R g+w $(MISC)/$(TARGET)/$(DEBFILE:f)
91
92.ENDIF
93