mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 12:23:08 +02:00
cd3cf32668
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1597 3c298f89-4303-0410-b956-a3cf2f4a3e73
158 lines
5.2 KiB
Makefile
158 lines
5.2 KiB
Makefile
# $Id$
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=snort
|
|
PKG_VERSION:=2.3.3
|
|
PKG_RELEASE:=1
|
|
PKG_MD5SUM:=06bf140893e7cb120aaa9372d10a0100
|
|
|
|
PKG_SOURCE_URL:=http://www.snort.org/dl/current/
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_CAT:=zcat
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
|
|
|
include $(TOPDIR)/package/rules.mk
|
|
|
|
PKG_CONFIGURE_OPTS := \
|
|
--target=$(GNU_TARGET_NAME) \
|
|
--host=$(GNU_TARGET_NAME) \
|
|
--build=$(GNU_HOST_NAME) \
|
|
--program-prefix="" \
|
|
--program-suffix="" \
|
|
--prefix=/usr \
|
|
--exec-prefix=/usr \
|
|
--bindir=/usr/sbin \
|
|
--datadir=/usr/share \
|
|
--includedir=/usr/include \
|
|
--infodir=/usr/share/info \
|
|
--libdir=/usr/lib \
|
|
--libexecdir=/usr/lib/locate \
|
|
--localstatedir=/var/lib \
|
|
--mandir=/usr/share/man \
|
|
--sbindir=/usr/sbin \
|
|
--sysconfdir=/etc \
|
|
$(DISABLE_LARGEFILE) \
|
|
$(DISABLE_NLS) \
|
|
--enable-shared \
|
|
--disable-static \
|
|
--enable-flexresp \
|
|
--with-libnet-includes="$(STAGING_DIR)/usr/include" \
|
|
--with-libnet-libraries="$(STAGING_DIR)/usr/lib" \
|
|
--with-libpcap-includes="$(STAGING_DIR)/usr/include" \
|
|
--with-libpcap-libraries="$(STAGING_DIR)/usr/lib" \
|
|
--with-libpcre-includes="$(STAGING_DIR)/usr/include" \
|
|
--with-libpcre-libraries="$(STAGING_DIR)/usr/lib" \
|
|
|
|
SNORT_BASIC_CONFIGURE_OPTS := \
|
|
--without-mysql \
|
|
--without-postgresql \
|
|
|
|
SNORT_MYSQL_CONFIGURE_OPTS := \
|
|
--with-mysql=$(STAGING_DIR)/usr \
|
|
--without-postgresql \
|
|
|
|
SNORT_PGSQL_CONFIGURE_OPTS := \
|
|
--without-mysql \
|
|
--with-postgresql=$(STAGING_DIR)/usr \
|
|
|
|
SNORT_CUSTOM_CONFIGURE_OPTS := \
|
|
|
|
ifeq ($(BR2_PACKAGE_SNORT_ENABLE_DEBUG),y)
|
|
SNORT_CUSTOM_CONFIGURE_OPTS += --enable-debug
|
|
else
|
|
SNORT_CUSTOM_CONFIGURE_OPTS += --disable-debug
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_SNORT_ENABLE_INLINE),y)
|
|
SNORT_CUSTOM_CONFIGURE_OPTS += --enable-inline
|
|
SNORT_CUSTOM_CONFIGURE_OPTS += --with-libipq-includes="$(STAGING_DIR)/include/libipq"
|
|
SNORT_CUSTOM_CONFIGURE_OPTS += --with-libipq-libraries="$(STAGING_DIR)/lib"
|
|
else
|
|
SNORT_CUSTOM_CONFIGURE_OPTS += --disable-inline
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_SNORT_WITH_MYSQL),y)
|
|
SNORT_CUSTOM_CONFIGURE_OPTS += --with-mysql="$(STAGING_DIR)/usr"
|
|
else
|
|
SNORT_CUSTOM_CONFIGURE_OPTS += --without-mysql
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_SNORT_WITH_PGSQL),y)
|
|
SNORT_CUSTOM_CONFIGURE_OPTS += --with-postgresql="$(STAGING_DIR)/usr"
|
|
else
|
|
SNORT_CUSTOM_CONFIGURE_OPTS += --without-postgresql
|
|
endif
|
|
|
|
define PKG_build
|
|
|
|
ifneq ($(BR2_PACKAGE_$(1)),)
|
|
BUILD_TARGETS += $(PKG_BUILD_DIR)/$(2)
|
|
endif
|
|
|
|
$(PKG_BUILD_DIR)/$(2): $(PKG_BUILD_DIR)/.prepared
|
|
touch -r $(PKG_BUILD_DIR)/Makefile.am $(PKG_BUILD_DIR)/configure.in
|
|
touch -r $(PKG_BUILD_DIR)/Makefile.in $(PKG_BUILD_DIR)/configure
|
|
-$(MAKE) -C $(PKG_BUILD_DIR) distclean
|
|
(cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
|
CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/usr/include/mysql" \
|
|
LDFLAGS="-L$(STAGING_DIR)/lib -L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/usr/lib/mysql" \
|
|
./configure \
|
|
$(PKG_CONFIGURE_OPTS) \
|
|
$$($(1)_CONFIGURE_OPTS) \
|
|
);
|
|
$(MAKE) -C $(PKG_BUILD_DIR)
|
|
mv $(PKG_BUILD_DIR)/src/snort $(PKG_BUILD_DIR)/$(2)
|
|
|
|
$$(IPKG_$(1)): $(PKG_BUILD_DIR)/.installed $(PKG_BUILD_DIR)/$(2)
|
|
rm -rf $$(IDIR_$(1))
|
|
$(SCRIPT_DIR)/make-ipkg-dir.sh $$(IDIR_$(1)) ./ipkg/$(2).control $(3) $(4)
|
|
install -m0644 ./ipkg/snort.conffiles $$(IDIR_$(1))/CONTROL/conffiles
|
|
install -d -m0755 $$(IDIR_$(1))/etc/default
|
|
install -m0644 ./ipkg/snort.default $$(IDIR_$(1))/etc/default/snort
|
|
install -d -m0755 $$(IDIR_$(1))/etc/init.d
|
|
install -m0755 ./ipkg/snort.init $$(IDIR_$(1))/etc/init.d/snort
|
|
install -d -m0755 $$(IDIR_$(1))/etc/snort
|
|
install -m0644 $(PKG_BUILD_DIR)/etc/snort.conf $$(IDIR_$(1))/etc/snort/
|
|
install -m0644 $(PKG_BUILD_DIR)/etc/classification.config $$(IDIR_$(1))/etc/snort/
|
|
install -m0644 $(PKG_BUILD_DIR)/etc/gen-msg.map $$(IDIR_$(1))/etc/snort/
|
|
install -m0644 $(PKG_BUILD_DIR)/etc/reference.config $$(IDIR_$(1))/etc/snort/
|
|
install -m0644 $(PKG_BUILD_DIR)/etc/sid-msg.map $$(IDIR_$(1))/etc/snort/
|
|
install -m0644 $(PKG_BUILD_DIR)/etc/threshold.conf $$(IDIR_$(1))/etc/snort/
|
|
install -m0644 $(PKG_BUILD_DIR)/etc/unicode.map $$(IDIR_$(1))/etc/snort/
|
|
install -d -m0755 $$(IDIR_$(1))/usr/sbin
|
|
install -m0755 $(PKG_BUILD_DIR)/$(2) $$(IDIR_$(1))/usr/sbin/snort
|
|
$(RSTRIP) $$(IDIR_$(1))
|
|
mkdir -p $(PACKAGE_DIR)
|
|
$(IPKG_BUILD) $$(IDIR_$(1)) $(PACKAGE_DIR)
|
|
|
|
endef
|
|
|
|
$(eval $(call PKG_template,SNORT_BASIC,snort,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
|
$(eval $(call PKG_template,SNORT_MYSQL,snort-mysql,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
|
$(eval $(call PKG_template,SNORT_PGSQL,snort-pgsql,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
|
$(eval $(call PKG_template,SNORT_CUSTOM,snort-custom,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
|
|
|
$(eval $(call PKG_build,SNORT_BASIC,snort,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
|
$(eval $(call PKG_build,SNORT_MYSQL,snort-mysql,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
|
$(eval $(call PKG_build,SNORT_PGSQL,snort-pgsql,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
|
$(eval $(call PKG_build,SNORT_CUSTOM,snort-custom,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
|
|
|
$(PKG_BUILD_DIR)/.configured:
|
|
touch $@
|
|
|
|
$(PKG_BUILD_DIR)/.built: $(BUILD_TARGETS)
|
|
touch $@
|
|
|
|
$(PKG_BUILD_DIR)/.installed: $(PKG_BUILD_DIR)/.built
|
|
mkdir -p $(PKG_INSTALL_DIR)
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
install
|
|
touch $(PKG_BUILD_DIR)/.installed
|
|
|