]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/cups
tor: Update to 0.2.4.22.
[ipfire-2.x.git] / lfs / cups
CommitLineData
a31b2bc4 1###############################################################################
a31b2bc4 2# #
70df8302 3# IPFire.org - A linux based firewall #
2b5d1d8f 4# Copyright (C) 2007-2012 IPFire Team <info@ipfire.org> #
70df8302
MT
5# #
6# This program is free software: you can redistribute it and/or modify #
a31b2bc4 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 #
a31b2bc4
MT
9# (at your option) any later version. #
10# #
70df8302 11# This program is distributed in the hope that it will be useful, #
a31b2bc4
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/>. #
a31b2bc4 18# #
a31b2bc4
MT
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include Config
26
69460bba 27VER = 1.7.0
a31b2bc4 28
fd3e7da0
MT
29THISAPP = cups-$(VER)
30DL_FILE = $(THISAPP)-source.tar.bz2
f417cab6 31DL_FROM = $(URL_IPFIRE)
a31b2bc4
MT
32DIR_APP = $(DIR_SRC)/cups-$(VER)
33TARGET = $(DIR_INFO)/$(THISAPP)
483f59cd 34PROG = cups
38ca33d1 35PAK_VER = 10
a31b2bc4 36
6e725fc4 37DEPS = "ghostscript"
3489ebac 38
a31b2bc4
MT
39###############################################################################
40# Top-level Rules
41###############################################################################
42
43objects = $(DL_FILE)
44
45$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
46
69460bba 47$(DL_FILE)_MD5 = 5ab496a2ce27017fcdb3d7ec4818a75a
a31b2bc4
MT
48
49install : $(TARGET)
50
51check : $(patsubst %,$(DIR_CHK)/%,$(objects))
52
53download :$(patsubst %,$(DIR_DL)/%,$(objects))
54
55md5 : $(subst %,%_MD5,$(objects))
56
57dist:
a08c3a2e 58 $(PAK)
a31b2bc4
MT
59
60###############################################################################
61# Downloading, checking, md5sum
62###############################################################################
63
64$(patsubst %,$(DIR_CHK)/%,$(objects)) :
65 @$(CHECK)
66
67$(patsubst %,$(DIR_DL)/%,$(objects)) :
68 @$(LOAD)
69
70$(subst %,%_MD5,$(objects)) :
71 @$(MD5)
72
73###############################################################################
74# Installation Details
75###############################################################################
76
77$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
78 @$(PREBUILD)
79 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
f3604e11
MT
80 cd $(DIR_APP) && \
81 ./configure \
82 --prefix=/usr \
83 --sysconfdir=/var/ipfire \
84 --localstatedir=/var \
cd1f9762 85 --enable-libusb \
69460bba 86 --disable-dbus \
f3604e11
MT
87 --disable-avahi
88
fcc53523 89 cd $(DIR_APP) && make $(MAKETUNING) $(EXTRA_MAKE)
a31b2bc4 90 cd $(DIR_APP) && make install
f3604e11 91
3b9f6349 92 cd $(DIR_APP) && ln -v -sf /usr/bin/smbspool /usr/lib/cups/backend/smb
f3604e11 93
27b8cc24 94 install -v -m 754 $(DIR_SRC)/src/initscripts/init.d/cups /etc/rc.d/init.d
079afb4b 95 cp -fv $(DIR_SRC)/config/cups/cupsd.conf /var/ipfire/cups/
f3604e11 96
a31b2bc4
MT
97 @rm -rf $(DIR_APP)
98 @$(POSTBUILD)