]> git.ipfire.org Git - ipfire-3.x.git/blame - pkgs/c_icap_modules/c_icap_modules.nm
c-icap-modules: Add i-cap service modules 0.1.4.
[ipfire-3.x.git] / pkgs / c_icap_modules / c_icap_modules.nm
CommitLineData
a915bab2
CS
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2007, 2008 Michael Tremer & Christian Schmidt #
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
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 #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include $(PKGROOT)/Include
26
27PKG_NAME = c_icap_modules
28PKG_VER = 0.1.4
29PKG_REL = 1
30
31PKG_MAINTAINER = Christian Schmidt <christian.schmidt@ipfire.org>
32PKG_GROUPS = Networking/Daemons
33PKG_URL = http://c-icap.sourceforge.net
34PKG_LICENSE = GPLv2
35PKG_SUMMARY = c-icap service modules for clamav and content filrer.
36
37PKG_BUILD_DEPS+= c_icap clamav-devel db4-devel libtool-devel autoconf automake
38
39define PKG_DESCRIPTION
40 c-icap is an implementation of an ICAP server. It can be used with \
41 HTTP proxies that support the ICAP protocol to implement content \
42 adaptation and filtering services.
43endef
44
45PKG_TARBALL = $(THISAPP).tar.gz
46
47CONFIGURE_OPTIONS += \
48 --sysconfdir=/etc \
49 --localstatedir=/var
50
51define STAGE_PREPARE_CMDS
52 cd $(DIR_APP) && autoreconf -vfi
53endef
54
55define STAGE_INSTALL
56 -mkdir -pv $(BUILDROOT)/etc
57
58 cd $(DIR_APP) && make install DESTDIR=$(BUILDROOT)
59endef