]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/foomatic
Ein Paar Dateien fuer die GPLv3 angepasst.
[ipfire-2.x.git] / lfs / foomatic
CommitLineData
fccb3371 1###############################################################################
fccb3371 2# #
70df8302
MT
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
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
27DATE = 20070813
a1d042dd 28VER = 3.0-20070813
fccb3371
MT
29
30THISAPP = foomatic-$(VER)
31DL_FILE = foomatic-filters-$(VER).tar.gz
32DL_FROM = $(URL_IPFIRE)
33DIR_APP = $(DIR_SRC)/foomatic-filters-$(VER)
34TARGET = $(DIR_INFO)/$(THISAPP)
35PROG = foomatic
36PAK_VER = 1
37
38DESCDE = "Foomatic beinhaltet Filter und Treiber für CUPS."
39DESCEN = "Foomatic is a collection of filters and ppds for cups."
40DEPS = "cups ghostscript"
41
42###############################################################################
43# Top-level Rules
44###############################################################################
45
46objects = $(DL_FILE) \
47 foomatic-db-$(DATE).tar.gz \
48 foomatic-db-engine-$(VER).tar.gz \
49 foomatic-db-hpijs-$(DATE).tar.gz
50
51$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
52foomatic-db-$(DATE).tar.gz = $(DL_FROM)/foomatic-db-$(DATE).tar.gz
53foomatic-db-engine-$(VER).tar.gz = $(DL_FROM)/foomatic-db-engine-$(VER).tar.gz
54foomatic-db-hpijs-$(DATE).tar.gz = $(DL_FROM)/foomatic-db-hpijs-$(DATE).tar.gz
55
56$(DL_FILE)_MD5 = 41de0f45866ab4c19c1d5e3e2cdab42f
57foomatic-db-$(DATE).tar.gz_MD5 = a3ab04b7cc5d870b040ffce19e664698
58foomatic-db-engine-$(VER).tar.gz_MD5 = ec9639719a9c1d4095248e534c3f2d0d
59foomatic-db-hpijs-$(DATE).tar.gz_MD5 = e59fa189336e96a9d43cfcfb6222a9c2
60
61install : $(TARGET)
62
63check : $(patsubst %,$(DIR_CHK)/%,$(objects))
64
65download :$(patsubst %,$(DIR_DL)/%,$(objects))
66
67md5 : $(subst %,%_MD5,$(objects))
68
69dist:
70 $(PAK)
71
72###############################################################################
73# Downloading, checking, md5sum
74###############################################################################
75
76$(patsubst %,$(DIR_CHK)/%,$(objects)) :
77 @$(CHECK)
78
79$(patsubst %,$(DIR_DL)/%,$(objects)) :
80 @$(LOAD)
81
82$(subst %,%_MD5,$(objects)) :
83 @$(MD5)
84
85###############################################################################
86# Installation Details
87###############################################################################
88
89$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
90 @$(PREBUILD)
91 @rm -rf $(DIR_SRC)/foomatic-* && cd $(DIR_SRC) && \
92 tar zxf $(DIR_DL)/$(DL_FILE) && \
93 tar zxf $(DIR_DL)/foomatic-db-$(DATE).tar.gz && \
94 tar zxf $(DIR_DL)/foomatic-db-engine-$(VER).tar.gz && \
95 tar zxf $(DIR_DL)/foomatic-db-hpijs-$(DATE).tar.gz
a1d042dd 96 cd $(DIR_APP) && ./configure --prefix=/usr --sysconfdir=/etc
fccb3371
MT
97 cd $(DIR_APP) && make $(MAKETUNING)
98 cd $(DIR_APP) && make install
99 cd $(DIR_SRC)/foomatic-db-$(DATE) && ./configure --prefix=/usr --sysconfdir=/etc
100 cd $(DIR_SRC)/foomatic-db-$(DATE) && make $(MAKETUNING)
101 cd $(DIR_SRC)/foomatic-db-$(DATE) && make install
102 cd $(DIR_SRC)/foomatic-db-engine-$(VER) && ./configure --prefix=/usr --sysconfdir=/etc
103 cd $(DIR_SRC)/foomatic-db-engine-$(VER) && make $(MAKETUNING)
104 cd $(DIR_SRC)/foomatic-db-engine-$(VER) && make install
105 cd $(DIR_SRC)/foomatic-db-hpijs-$(DATE) && ./configure --prefix=/usr --sysconfdir=/etc
106 cd $(DIR_SRC)/foomatic-db-hpijs-$(DATE) && make $(MAKETUNING)
107 cd $(DIR_SRC)/foomatic-db-hpijs-$(DATE) && make install
108 @rm -rf $(DIR_SRC)/foomatic-*
109 @$(POSTBUILD)