diff options
author | 2004-07-05 12:20:02 +0000 | |
---|---|---|
committer | 2004-07-05 12:20:02 +0000 | |
commit | 850e6b0260d28924e0931c3e289bd0027778ad3a (patch) | |
tree | c5a37a7c522122b58affaaa3995bb593024b1497 | |
parent | add gimp-print-5.0.0_beta1 (diff) | |
download | historical-850e6b0260d28924e0931c3e289bd0027778ad3a.tar.gz historical-850e6b0260d28924e0931c3e289bd0027778ad3a.tar.bz2 historical-850e6b0260d28924e0931c3e289bd0027778ad3a.zip |
Added a search for the location of libipq includes. Closes #49492.
-rw-r--r-- | net-analyzer/snort_inline/ChangeLog | 6 | ||||
-rw-r--r-- | net-analyzer/snort_inline/Manifest | 4 | ||||
-rw-r--r-- | net-analyzer/snort_inline/snort_inline-2.1.1.ebuild | 14 |
3 files changed, 17 insertions, 7 deletions
diff --git a/net-analyzer/snort_inline/ChangeLog b/net-analyzer/snort_inline/ChangeLog index 5250788ceacf..9ff7bf9ee72c 100644 --- a/net-analyzer/snort_inline/ChangeLog +++ b/net-analyzer/snort_inline/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-analyzer/snort_inline # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/snort_inline/ChangeLog,v 1.8 2004/07/01 20:19:11 squinky86 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/snort_inline/ChangeLog,v 1.9 2004/07/05 12:20:02 eldad Exp $ + + 05 Jul 2004; Eldad Zack <eldad@gentoo.org> snort_inline-2.1.1.ebuild: + Added a search for the location of libipq includes. Closes #49492. Thanks to + Hans-Christian Armingeon <mog.johnny@gmx.net>. 01 Jul 2004; Jon Hood <squinky86@gentoo.org> snort_inline-2.1.0a-r1.ebuild, snort_inline-2.1.0a-r2.ebuild, snort_inline-2.1.0a.ebuild, diff --git a/net-analyzer/snort_inline/Manifest b/net-analyzer/snort_inline/Manifest index 2c4ad1a98e68..6daed74f0101 100644 --- a/net-analyzer/snort_inline/Manifest +++ b/net-analyzer/snort_inline/Manifest @@ -1,7 +1,7 @@ MD5 dc97b595546c02c8ea3a91ee036ba279 snort_inline-2.1.0a-r2.ebuild 3037 -MD5 1e9efb3a44d996bf6ceaa10af6ea05f2 snort_inline-2.1.1.ebuild 3033 +MD5 eb47f12a3f701691fc3ceb485b628328 snort_inline-2.1.1.ebuild 3168 MD5 a7d9467b87cc38fde0aa3b2f30990f4a snort_inline-2.1.0a-r1.ebuild 2904 -MD5 b68559f1dd89ab0cdc66a54e2e0d5d4c ChangeLog 1597 +MD5 8b223058db48a51dcaf9f937e7b8cfbc ChangeLog 1794 MD5 a03c7143facdc72a078379d3cb85ceb0 metadata.xml 775 MD5 1d6276e39a7727f5eab7cc2e8dba508f snort_inline-2.1.0a.ebuild 2851 MD5 5379f2b178725088a8757ef25c77775c files/snort_inline-2.1.1-pgsql.patch 645 diff --git a/net-analyzer/snort_inline/snort_inline-2.1.1.ebuild b/net-analyzer/snort_inline/snort_inline-2.1.1.ebuild index 8c50d8612a58..9e4e180b0750 100644 --- a/net-analyzer/snort_inline/snort_inline-2.1.1.ebuild +++ b/net-analyzer/snort_inline/snort_inline-2.1.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/snort_inline/snort_inline-2.1.1.ebuild,v 1.4 2004/07/01 20:19:11 squinky86 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/snort_inline/snort_inline-2.1.1.ebuild,v 1.5 2004/07/05 12:20:02 eldad Exp $ inherit eutils @@ -50,14 +50,20 @@ src_unpack() { } src_compile() { - econf \ + local myconf + + if [ -r /usr/include/libipq/libipq.h ]; then + myconf="${myconf} --with-libipq-includes=/usr/include/libipq/" + fi + + econf ${myconf} \ `use_with postgres postgresql` \ `use_with mysql` \ `use_with ssl openssl` \ --without-odbc \ - --without-oracle || die "bad ./configure" + --without-oracle || die "configure failed" - emake || die "compile problem" + emake || die "make failed" } src_install() { |