17871dc3eSAndrew Rist#************************************************************** 27871dc3eSAndrew Rist# 37871dc3eSAndrew Rist# Licensed to the Apache Software Foundation (ASF) under one 47871dc3eSAndrew Rist# or more contributor license agreements. See the NOTICE file 57871dc3eSAndrew Rist# distributed with this work for additional information 67871dc3eSAndrew Rist# regarding copyright ownership. The ASF licenses this file 77871dc3eSAndrew Rist# to you under the Apache License, Version 2.0 (the 87871dc3eSAndrew Rist# "License"); you may not use this file except in compliance 97871dc3eSAndrew Rist# with the License. You may obtain a copy of the License at 107871dc3eSAndrew Rist# 117871dc3eSAndrew Rist# http://www.apache.org/licenses/LICENSE-2.0 127871dc3eSAndrew Rist# 137871dc3eSAndrew Rist# Unless required by applicable law or agreed to in writing, 147871dc3eSAndrew Rist# software distributed under the License is distributed on an 157871dc3eSAndrew Rist# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 167871dc3eSAndrew Rist# KIND, either express or implied. See the License for the 177871dc3eSAndrew Rist# specific language governing permissions and limitations 187871dc3eSAndrew Rist# under the License. 197871dc3eSAndrew Rist# 207871dc3eSAndrew Rist#************************************************************** 217871dc3eSAndrew Rist 227871dc3eSAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweirPRJ=..$/.. 25cdf0e10cSrcweir 26cdf0e10cSrcweirPRJNAME=sysui 27cdf0e10cSrcweirTARGET=debian 28cdf0e10cSrcweir 29cdf0e10cSrcweir# !!! FIXME !!! 30cdf0e10cSrcweir# debian-menus file. 31cdf0e10cSrcweir 32cdf0e10cSrcweir# --- Settings ----------------------------------------------------- 33cdf0e10cSrcweir 34cdf0e10cSrcweir.INCLUDE : settings.mk 35cdf0e10cSrcweir 36cdf0e10cSrcweir# --- Product Version Information ---------------------------------- 37cdf0e10cSrcweir 38cdf0e10cSrcweir.INCLUDE : ../productversion.mk 39cdf0e10cSrcweir 40cdf0e10cSrcweir# --- Files -------------------------------------------------------- 41cdf0e10cSrcweir 42cdf0e10cSrcweir.IF "$(PKGFORMAT)"!="$(PKGFORMAT:s/deb//)" 43cdf0e10cSrcweir 44*151db34cSOliver-Rainer WittmannDEBFILES=$(foreach,i,{$(PRODUCTLIST)} $(PKGDIR)$/$i4.2-$(TARGET)-menus_$(PKGVERSION.$i)-$(PKGREV)_all.deb) 45cdf0e10cSrcweir 46cdf0e10cSrcweir.ENDIF 47cdf0e10cSrcweir 48cdf0e10cSrcweir# --- Targets ------------------------------------------------------- 49cdf0e10cSrcweir 50cdf0e10cSrcweir.INCLUDE : target.mk 51cdf0e10cSrcweir 52cdf0e10cSrcweir.IF "$(PKGFORMAT)"!="$(PKGFORMAT:s/deb//)" 53cdf0e10cSrcweir 54cdf0e10cSrcweirALLTAR : $(DEBFILES) 55cdf0e10cSrcweir 56cdf0e10cSrcweir 57cdf0e10cSrcweir%/DEBIAN/control : $$(@:f) 58cdf0e10cSrcweir @$(MKDIRHIER) $(@:d) $*$/etc $*$/usr/share/applnk/Office $*$/usr/lib/menu 59*151db34cSOliver-Rainer Wittmann ln -sf /opt/$(UNIXFILENAME.$(*:f:s/-/ /:1:s/4.2//)) $*$/etc$/ 60*151db34cSOliver-Rainer Wittmann /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*151db34cSOliver-Rainer Wittmann @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*151db34cSOliver-Rainer Wittmann echo "Package: $(*:f:s/_/ /:1:s/4.2//)" > $@ 63*151db34cSOliver-Rainer Wittmann cat $(@:f) | tr -d "\015" | sed "s/%productname/$(PRODUCTNAME.$(*:f:s/-/ /:1:s/4.2//))/" >> $@ 64*151db34cSOliver-Rainer Wittmann echo "Version: $(PKGVERSION.$(*:f:s/-/ /:1:s/4.2//))-$(PKGREV)" >> $@ 65cdf0e10cSrcweir @du -k -s $* | awk -F ' ' '{ printf "Installed-Size: %s\n", $$1 ; }' >> $@ 66cdf0e10cSrcweir 67cdf0e10cSrcweir%/DEBIAN/postinst : $$(@:f) 68*151db34cSOliver-Rainer Wittmann @cat $< | tr -d "\015" | sed -e "s/%PREFIX/$(UNIXFILENAME.$(*:f:s/-/ /:1:s/4.2//))/g" > $@ 69cdf0e10cSrcweir 70cdf0e10cSrcweir%/DEBIAN/postrm : $$(@:f) 71*151db34cSOliver-Rainer Wittmann @cat $< | tr -d "\015" | sed -e "s/%PREFIX/$(UNIXFILENAME.$(*:f:s/-/ /:1:s/4.2//))/g" > $@ 72cdf0e10cSrcweir 73cdf0e10cSrcweir%/DEBIAN/prerm : $$(@:f) 74*151db34cSOliver-Rainer Wittmann @cat $< | tr -d "\015" | sed -e "s/%PREFIX/$(UNIXFILENAME.$(*:f:s/-/ /:1:s/4.2//))/g" > $@ 75cdf0e10cSrcweir 76cdf0e10cSrcweir# --- packaging --------------------------------------------------- 77cdf0e10cSrcweir 78cdf0e10cSrcweir# getuid.so fakes the user/group for us 79cdf0e10cSrcweir$(DEBFILES) : $(COMMONMISC)$/{$(PRODUCTLIST)}$/build.flag 80cdf0e10cSrcweir$(DEBFILES) : makefile.mk control postinst postrm prerm 81cdf0e10cSrcweir -$(RM) $(@:d)$(@:f:s/_/ /:1)_* 82cdf0e10cSrcweir $(RM) -r $(MISC)$/$(@:b) 83cdf0e10cSrcweir dmake $(MISC)$/$(@:b)$/DEBIAN$/{control postinst postrm prerm} 843add34bfSHerbert Dürr @chmod -R go-w $(MISC)$/$(@:b) 85cdf0e10cSrcweir @chmod a+rx $(MISC)$/$(@:b)$/DEBIAN $(MISC)/$(@:b)/DEBIAN/post* $(MISC)/$(@:b)/DEBIAN/pre* 86cdf0e10cSrcweir @chmod g-s $(MISC)/$(@:b)/DEBIAN 87cdf0e10cSrcweir @mkdir -p $(PKGDIR) 88cdf0e10cSrcweir /bin/bash -c "LD_PRELOAD=$(SOLARBINDIR)/getuid.so dpkg-deb --build $(MISC)/$(@:b) $@" 89cdf0e10cSrcweir $(RM) -r $(MISC)$/$(@:b) 90cdf0e10cSrcweir# @chmod -R g+w $(MISC)/$(TARGET)/$(DEBFILE:f) 91cdf0e10cSrcweir 92cdf0e10cSrcweir.ENDIF 93