]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - lfs/foomatic
fireinfo: Update to 2.2.0
[people/pmueller/ipfire-2.x.git] / lfs / foomatic
CommitLineData
fccb3371 1###############################################################################
fccb3371 2# #
70df8302 3# IPFire.org - A linux based firewall #
8f520a2d 4# Copyright (C) 2007-2019 IPFire Team <info@ipfire.org> #
70df8302
MT
5# #
6# This program is free software: you can redistribute it and/or modify #
fccb3371 7# it under the terms of the GNU General Public License as published by #
70df8302 8# the Free Software Foundation, either version 3 of the License, or #
fccb3371
MT
9# (at your option) any later version. #
10# #
70df8302 11# This program is distributed in the hope that it will be useful, #
fccb3371
MT
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
70df8302 17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
fccb3371
MT
18# #
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include Config
26
b91712ac
MT
27VER = 4.0.9
28VER_DB = 4.0-$(DATE)
29VER_FILTERS = 4.0.17
30DATE = 20131023
fccb3371
MT
31
32THISAPP = foomatic-$(VER)
b91712ac 33DL_FILE = foomatic-filters-$(VER_FILTERS).tar.gz
fccb3371 34DL_FROM = $(URL_IPFIRE)
b91712ac 35DIR_APP = $(DIR_SRC)/foomatic-filters-$(VER_FILTERS)
fccb3371
MT
36TARGET = $(DIR_INFO)/$(THISAPP)
37PROG = foomatic
81074204 38PAK_VER = 6
fccb3371 39
2dc2a278 40DEPS = cups ghostscript libtiff hplip
fccb3371 41
9739875e
MT
42CFLAGS += -fcommon
43
b91712ac
MT
44export LIB_CUPS=/usr/lib/cups
45export CUPS_BACKENDS=/usr/lib/cups/backends
46export CUPS_FILTERS=/usr/lib/cups/filters
47export CUPS_PPDS=/usr/share/cups/model
48
fccb3371
MT
49###############################################################################
50# Top-level Rules
51###############################################################################
52
53objects = $(DL_FILE) \
b91712ac
MT
54 foomatic-db-$(VER_DB).tar.gz \
55 foomatic-db-engine-$(VER).tar.gz
fccb3371
MT
56
57$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
b91712ac 58foomatic-db-$(VER_DB).tar.gz = $(DL_FROM)/foomatic-db-$(VER_DB).tar.gz
fccb3371 59foomatic-db-engine-$(VER).tar.gz = $(DL_FROM)/foomatic-db-engine-$(VER).tar.gz
fccb3371 60
b91712ac
MT
61$(DL_FILE)_MD5 = b05f5dcbfe359f198eef3df5b283d896
62foomatic-db-$(VER_DB).tar.gz_MD5 = ffe38b354cb06a1f3d5e3b01b7e58b0e
63foomatic-db-engine-$(VER).tar.gz_MD5 = 5b33c1adb21e7b6f3652e9a18d0e6f4e
fccb3371
MT
64
65install : $(TARGET)
66
67check : $(patsubst %,$(DIR_CHK)/%,$(objects))
68
69download :$(patsubst %,$(DIR_DL)/%,$(objects))
70
71md5 : $(subst %,%_MD5,$(objects))
72
73dist:
74 $(PAK)
75
76###############################################################################
77# Downloading, checking, md5sum
78###############################################################################
79
80$(patsubst %,$(DIR_CHK)/%,$(objects)) :
81 @$(CHECK)
82
83$(patsubst %,$(DIR_DL)/%,$(objects)) :
84 @$(LOAD)
85
86$(subst %,%_MD5,$(objects)) :
87 @$(MD5)
88
89###############################################################################
90# Installation Details
91###############################################################################
92
93$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
94 @$(PREBUILD)
b91712ac 95 @rm -rf $(DIR_SRC)/foomatic-* && cd $(DIR_SRC) && \
fccb3371 96 tar zxf $(DIR_DL)/$(DL_FILE) && \
b91712ac
MT
97 tar zxf $(DIR_DL)/foomatic-db-$(VER_DB).tar.gz && \
98 tar zxf $(DIR_DL)/foomatic-db-engine-$(VER).tar.gz
a1d042dd 99 cd $(DIR_APP) && ./configure --prefix=/usr --sysconfdir=/etc
fccb3371
MT
100 cd $(DIR_APP) && make $(MAKETUNING)
101 cd $(DIR_APP) && make install
102 cd $(DIR_SRC)/foomatic-db-$(DATE) && ./configure --prefix=/usr --sysconfdir=/etc
103 cd $(DIR_SRC)/foomatic-db-$(DATE) && make $(MAKETUNING)
104 cd $(DIR_SRC)/foomatic-db-$(DATE) && make install
105 cd $(DIR_SRC)/foomatic-db-engine-$(VER) && ./configure --prefix=/usr --sysconfdir=/etc
106 cd $(DIR_SRC)/foomatic-db-engine-$(VER) && make $(MAKETUNING)
107 cd $(DIR_SRC)/foomatic-db-engine-$(VER) && make install
b91712ac
MT
108
109 # Remove unwanted files
110 rm -rfv /usr/lib/ppr \
111 /etc/foomatic/filter.conf.sample \
112 /usr/share/foomatic/templates
113
114 -mkdir -pv /var/cache/foomatic
115
116 -mkdir -pv /etc/foomatic
117 echo "cups" > /etc/foomatic/defaultspooler
118
fccb3371
MT
119 @rm -rf $(DIR_SRC)/foomatic-*
120 @$(POSTBUILD)