From a41d7f2d24fda68d3eb84235c508d92828b48579 Mon Sep 17 00:00:00 2001 From: Cédric Krier Date: Sat, 12 Aug 2006 20:52:46 +0000 Subject: net-firewall/nufw: Version bump svn path=/sunrise/; revision=875 --- net-firewall/nufw/files/digest-nufw-2.0.8 | 3 ++ .../nufw/files/nufw-2.0.8-configure_ac.patch | 49 ++++++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 net-firewall/nufw/files/digest-nufw-2.0.8 create mode 100644 net-firewall/nufw/files/nufw-2.0.8-configure_ac.patch (limited to 'net-firewall/nufw/files') diff --git a/net-firewall/nufw/files/digest-nufw-2.0.8 b/net-firewall/nufw/files/digest-nufw-2.0.8 new file mode 100644 index 000000000..c1d1e7034 --- /dev/null +++ b/net-firewall/nufw/files/digest-nufw-2.0.8 @@ -0,0 +1,3 @@ +MD5 f18cd8d60392af618e81af8aa6ee8867 nufw-2.0.8.tar.bz2 645677 +RMD160 671f8cc77ba7504a239c57c4f4b80625bc425d76 nufw-2.0.8.tar.bz2 645677 +SHA256 00d0e6945f4439694b1ef7ae5a526a78d738a2ba9a62377fd3d06a6aca4dba34 nufw-2.0.8.tar.bz2 645677 diff --git a/net-firewall/nufw/files/nufw-2.0.8-configure_ac.patch b/net-firewall/nufw/files/nufw-2.0.8-configure_ac.patch new file mode 100644 index 000000000..3d66aa690 --- /dev/null +++ b/net-firewall/nufw/files/nufw-2.0.8-configure_ac.patch @@ -0,0 +1,49 @@ +--- nufw-2.0.8~/configure.ac 2006-08-12 22:41:14.000000000 +0200 ++++ nufw-2.0.8/configure.ac 2006-08-12 22:41:40.000000000 +0200 +@@ -55,23 +55,24 @@ + AC_ARG_WITH(prelude-log, + [AC_HELP_STRING(--with-prelude-log, + Support user activity logging in Prelude)], +- enable_prelude_log="yes", ++ enable_prelude_log=$withval, + enable_prelude_log="") +-AC_ARG_WITH(mysql-log, [AC_HELP_STRING(--with-mysql-log, Support user activity logging in Mysql database)], enable_mysql_log="yes", enable_mysql_log="") +-AC_ARG_WITH(pgsql-log, [AC_HELP_STRING(--with-pgsql-log, Support user activity logging in PostgreSQL database)], enable_pgsql_log="yes", enable_pgsql_log="") ++AC_ARG_WITH(mysql-log, [AC_HELP_STRING(--with-mysql-log, Support user activity logging in Mysql database)], enable_mysql_log=$withval, enable_mysql_log="") ++AC_ARG_WITH(pgsql-log, [AC_HELP_STRING(--with-pgsql-log, Support user activity logging in PostgreSQL database)], enable_pgsql_log=$withval, enable_pgsql_log="") + +-AC_ARG_WITH(system-auth, [AC_HELP_STRING(--with-system-auth, Support PAM+NSS authentication)], enable_system_auth="yes", enable_system_auth="") ++AC_ARG_WITH(system-auth, [AC_HELP_STRING(--with-system-auth, Support PAM+NSS authentication)], enable_system_auth=$withval, enable_system_auth="") + +-AC_ARG_WITH(ldap, [AC_HELP_STRING(--with-ldap, Support LDAP directory for users and acl lookup)],ldap="yes", ldap="") +-AC_ARG_WITH(gdbm, [AC_HELP_STRING(--with-gdbm, Support gdbm users lookup)],gdbm="yes", gdbm="") +-AC_ARG_WITH(ident, [AC_HELP_STRING(--with-ident, Support ident users authentication)],ident="yes", ident="") ++AC_ARG_WITH(ldap, [AC_HELP_STRING(--with-ldap, Support LDAP directory for users and acl lookup)],ldap=$withval, ldap="") ++AC_ARG_WITH(gdbm, [AC_HELP_STRING(--with-gdbm, Support gdbm users lookup)],gdbm=$withval, gdbm="") ++AC_ARG_WITH(ident, [AC_HELP_STRING(--with-ident, Support ident users authentication)],ident=$withval, ident="") + + +-AC_ARG_WITH(nfqueue, [AC_HELP_STRING(--with-nfqueue, Compile for NFQUEUE instead of QUEUE)],use_nfqueue="yes", use_nfqueue="") ++AC_ARG_WITH(nfqueue, [AC_HELP_STRING(--with-nfqueue, Compile for NFQUEUE instead of QUEUE)],use_nfqueue=$withval, use_nfqueue="") ++AC_ARG_WITH(nfconntrack, [AC_HELP_STRING(--with-nfconntrack, Compile with netfilter_conntrack)],use_nfconntrack=$withval, use_nfconntrack="") + + + AC_ARG_WITH(utf8, [AC_HELP_STRING(--with-utf8, Use UTF8 exchange between client and server)], AC_DEFINE_UNQUOTED([USE_UTF8],[1],[Will use UTF8 exchange])) +-AC_ARG_WITH(fixedtimeout, [AC_HELP_STRING(--with-fixedtimeout, Assume libconntrack has fixed timeout extension )],have_conntrack_fixedtimeout="yes" ) ++AC_ARG_WITH(fixedtimeout, [AC_HELP_STRING(--with-fixedtimeout, Assume libconntrack has fixed timeout extension )],have_conntrack_fixedtimeout=$withval ) + + + AC_ARG_ENABLE(debug, [AC_HELP_STRING(--enable-debug, Add development debug messages (default no))],debug=$enableval, debug="") +@@ -173,7 +174,11 @@ + fi + fi + +-AC_CHECK_LIB([netfilter_conntrack], [nfct_dump_conntrack_table], have_conntrack="yes", have_conntrack="",[-ldl -lnfnetlink]) ++if test "${use_nfconntrack}" = "yes"; then ++ AC_CHECK_LIB([netfilter_conntrack], [nfct_dump_conntrack_table], have_conntrack="yes", have_conntrack="",[-ldl -lnfnetlink]) ++else ++ have_conntrack="" ++fi + + if test "${have_conntrack}" = "yes"; then + AC_DEFINE_UNQUOTED([HAVE_LIBCONNTRACK],[1],[libconntrack has been found]) -- cgit v1.2.3-65-gdbad