]> git.ipfire.org Git - people/arne_f/ipfire-3.x.git/blobdiff - pkgs/clamav/clamav.nm
Change file layout of the makefiles.
[people/arne_f/ipfire-3.x.git] / pkgs / clamav / clamav.nm
index edba0c3d8c9b7287e8ed6565a0b5b6d3674ae9e8..a3c74738bfc0e5f158b7eca82211116793515a58 100644 (file)
@@ -1,79 +1,76 @@
 ###############################################################################
-#                                                                             #
-# IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007, 2008 Michael Tremer & Christian Schmidt                 #
-#                                                                             #
-# This program is free software: you can redistribute it and/or modify        #
-# it under the terms of the GNU General Public License as published by        #
-# the Free Software Foundation, either version 3 of the License, or           #
-# (at your option) any later version.                                         #
-#                                                                             #
-# This program is distributed in the hope that it will be useful,             #
-# but WITHOUT ANY WARRANTY; without even the implied warranty of              #
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               #
-# GNU General Public License for more details.                                #
-#                                                                             #
-# You should have received a copy of the GNU General Public License           #
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.       #
-#                                                                             #
+# IPFire.org    - An Open Source Firewall Solution                            #
+# Copyright (C) - IPFire Development Team <info@ipfire.org>                   #
 ###############################################################################
 
-###############################################################################
-# Definitions
-###############################################################################
-
-include $(PKGROOT)/Include
-
-PKG_NAME       = clamav
-PKG_VER        = 0.97
-PKG_REL        = 3
+name       = clamav
+version    = 0.97
+release    = 3
 
-PKG_MAINTAINER =
-PKG_GROUPS     = System Environment/Daemons 
-PKG_URL        = http://www.clamav.net
-PKG_LICENSE    = GPLv2
-PKG_SUMMARY    = A GPL virus scanner
+groups     = System Environment/Daemons
+url        = http://www.clamav.net
+license    = GPLv2
+summary    = A GPL virus scanner
 
-PKG_BUILD_DEPS+= zlib-devel bzip2-devel gmp-devel curl-devel ncurses-devel shadow
+description
+       ClamAV is an open source (GPL) antivirus engine designed for
+       detecting Trojans, viruses, malware and other malicious threats.
+       It is the de facto standard for mail gateway scanning. It
+       provides a high performance mutli-threaded scanning daemon,
+       command line utilities for on demand file scanning, and an
+       intelligent tool for automatic signature updates. The core ClamAV
+       library provides numerous file format detection mechanisms, file
+       unpacking support, archive support, and multiple signature
+       languages for detecting threats.
+end
 
-define PKG_DESCRIPTION
-               ClamAV is an open source (GPL) antivirus engine designed for \
-               detecting Trojans, viruses, malware and other malicious threats. \
-               It is the de facto standard for mail gateway scanning. It \
-               provides a high performance mutli-threaded scanning daemon, \
-               command line utilities for on demand file scanning, and an \
-               intelligent tool for automatic signature updates. The core ClamAV \
-               library provides numerous file format detection mechanisms, file \
-               unpacking support, archive support, and multiple signature \
-               languages for detecting threats.
-endef
-
-PKG_TARBALL    = $(THISAPP).tar.gz
-
-PKG_PACKAGES  += $(PKG_NAME)-devel $(PKG_NAME)-libs
+source_dl  = http://downloads.sourceforge.net/clamav/
 
 CFLAGS    += -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DLDAP_DEPRECATED
 
-CONFIGURE_ENVIRONMENT += have_cv_ipv6=yes
+build
+       requires
+               bzip2-devel
+               curl-devel
+               gmp-devel
+               ncurses-devel
+               shadow-utils
+               zlib-devel
+       end
+
+       configure_options += \
+               --sysconfdir=/etc \
+               --disable-static \
+               --disable-rpath \
+               --disable-silent-rules \
+               --with-dbdir=/var/lib/clamav \
+               --enable-clamdtop \
+               --with-user=clamupdate \
+               --with-group=clamupdate \
+               have_cv_ipv6=yes
 
-CONFIGURE_OPTIONS += \
-       --sysconfdir=/etc \
-       --disable-static \
-       --disable-rpath \
-        --disable-silent-rules \
-        --with-dbdir=/var/lib/clamav \
-       --enable-clamdtop \
-       --with-user=clamupdate \
-        --with-group=clamupdate
+       # User and group have to exist to compile the source code,
+       # so we have to create them
+       prepare_cmds
+               groupadd -g 497 -r clamupdate
+               useradd -u 497 -r -s /sbin/nologin -d /var/lib/clamav -M \
+                       -c 'Clamav database update user' -g clamupdate clamupdate
 
-# User and group have to exist to compile the source code, 
-# so we have to create them
-define STAGE_PREPARE_CMDS
-       groupadd -g 497 -r clamupdate
-       useradd -u 497 -r -s /sbin/nologin -d /var/lib/clamav -M \
-               -c 'Clamav database update user' -g clamupdate clamupdate
+               groupadd -g 496 -r clamscan
+               useradd -u 496 -r -s /sbin/nologin -d / -M \
+                       -g clamscan clamscan
+       end
+end
 
-        groupadd -g 496 -r clamscan
-       useradd -u 496 -r -s /sbin/nologin -d / -M \
-               -g clamscan clamscan 
-endef
+packages
+       package %{name}
+       end
+       
+       package %{name}-libs
+               template LIBS
+       end
+       
+       package %{name}-devel
+               template DEVEL
+       end
+end