From 3602051f0fee67040df432f60bd006777b26c97b Mon Sep 17 00:00:00 2001 From: nico Date: Mon, 18 Apr 2005 06:41:36 +0000 Subject: Add snort package, with experimental -custom package for build-time package customizations git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@667 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/snort/Makefile | 149 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 149 insertions(+) create mode 100644 package/snort/Makefile (limited to 'package/snort/Makefile') diff --git a/package/snort/Makefile b/package/snort/Makefile new file mode 100644 index 000000000..b05ea0104 --- /dev/null +++ b/package/snort/Makefile @@ -0,0 +1,149 @@ +# $Id$ + +include $(TOPDIR)/rules.mk + +PKG_NAME:=snort +PKG_VERSION:=2.3.2 +PKG_RELEASE:=1 +PKG_MD5SUM:=692602827ce9d1a611630149f8e50ec8 + +PKG_SOURCE_URL:= \ + http://www.snort.org/dl/current/ \ + http://nthill.free.fr/openwrt/sources/$(PKG_NAME)/ +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/templates.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 \ + --disable-smbalerts \ + --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" \ + --without-odbc \ + --without-openssl \ + --without-oracle \ + --without-snmp \ + +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_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 + -$(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)/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) + +$(PKG_INSTALL_DIR)/usr/sbin/$(2): $(PKG_BUILD_DIR)/$(2) + install -m0755 $(PKG_BUILD_DIR)/$(2) $(PKG_INSTALL_DIR)/usr/sbin/ + +$$(IPKG_$(1)): $(PKG_BUILD_DIR)/.installed $(PKG_INSTALL_DIR)/usr/sbin/$(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 + cp -fpR $(PKG_INSTALL_DIR)/usr/sbin/$(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))) + +include $(TOPDIR)/package/rules.mk + +$(PKG_BUILD_DIR)/.built: $(BUILD_TARGETS) + touch $(PKG_BUILD_DIR)/.built + +$(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 + -- cgit v1.2.3