]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/cups
Revert "avahi: Drop package"
[ipfire-2.x.git] / lfs / cups
CommitLineData
a31b2bc4 1###############################################################################
a31b2bc4 2# #
70df8302 3# IPFire.org - A linux based firewall #
a46b9796 4# Copyright (C) 2007-2015 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
6d390861 27VER = 2.2.2
a31b2bc4 28
fd3e7da0 29THISAPP = cups-$(VER)
6d390861 30DL_FILE = $(THISAPP)-source.tar.gz
f417cab6 31DL_FROM = $(URL_IPFIRE)
a31b2bc4
MT
32DIR_APP = $(DIR_SRC)/cups-$(VER)
33TARGET = $(DIR_INFO)/$(THISAPP)
483f59cd 34PROG = cups
6064cd87 35PAK_VER = 15
a31b2bc4 36
6064cd87 37DEPS = "avahi cups-filters dbus ghostscript krb5 libtiff"
3489ebac 38
a31b2bc4
MT
39###############################################################################
40# Top-level Rules
41###############################################################################
42
43objects = $(DL_FILE)
44
45$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
46
6d390861 47$(DL_FILE)_MD5 = 036f6bda6202ae3e280ac00c710b5ca4
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)
6d390861 79 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
f3604e11
MT
80 cd $(DIR_APP) && \
81 ./configure \
82 --prefix=/usr \
83 --sysconfdir=/var/ipfire \
84 --localstatedir=/var \
2b5aece9 85 --enable-debug \
6064cd87 86 --enable-avahi \
2b5aece9
MT
87 --enable-dbus \
88 --enable-gnutls \
6064cd87 89 --enable-libusb
f3604e11 90
fcc53523 91 cd $(DIR_APP) && make $(MAKETUNING) $(EXTRA_MAKE)
a31b2bc4 92 cd $(DIR_APP) && make install
f3604e11 93
3b9f6349 94 cd $(DIR_APP) && ln -v -sf /usr/bin/smbspool /usr/lib/cups/backend/smb
f3604e11 95
be2732c2
JS
96 # install initscript
97 $(call INSTALL_INITSCRIPT,cups)
079afb4b 98 cp -fv $(DIR_SRC)/config/cups/cupsd.conf /var/ipfire/cups/
f3604e11 99
a31b2bc4
MT
100 @rm -rf $(DIR_APP)
101 @$(POSTBUILD)