aboutsummaryrefslogtreecommitdiff
path: root/news/inn
diff options
context:
space:
mode:
authorClement Laforet <clement@FreeBSD.org>2004-01-08 10:20:41 +0000
committerClement Laforet <clement@FreeBSD.org>2004-01-08 10:20:41 +0000
commitedb5020fcc2a08e1ce8b23ca81252b8c14cc39de (patch)
treedbe9426d41f76c17a47d0665e24a9effc17766cb /news/inn
parent0cdc83928a775d1bbe90c39fd3169edc8e758e7d (diff)
downloadports-edb5020fcc2a08e1ce8b23ca81252b8c14cc39de.tar.gz
ports-edb5020fcc2a08e1ce8b23ca81252b8c14cc39de.zip
- Update to 2.4.1 (urgent release)
This release fixes a potentially exploitable buffer overflow. Changelog: http://lists.litech.org/pipermail/inn-workers/2004q1/002763.html - Add db41 support Approved by: erwin (mentor) (implicitly)
Notes
Notes: svn path=/head/; revision=97666
Diffstat (limited to 'news/inn')
-rw-r--r--news/inn/Makefile9
-rw-r--r--news/inn/distinfo2
-rw-r--r--news/inn/files/patch-configure15
3 files changed, 12 insertions, 14 deletions
diff --git a/news/inn/Makefile b/news/inn/Makefile
index 4bb1bc5ab8dc..57c77fb89840 100644
--- a/news/inn/Makefile
+++ b/news/inn/Makefile
@@ -6,13 +6,12 @@
#
PORTNAME= inn
-PORTVERSION= 2.4.0
-PORTREVISION= 4
+PORTVERSION= 2.4.1
CATEGORIES= news ipv6
MASTER_SITES= ${MASTER_SITE_ISC}
MASTER_SITE_SUBDIR= inn
-MAINTAINER= sheepkiller@cultdeadsheep.org
+MAINTAINER= clement@FreeBSD.org
COMMENT= InterNetNews -- the Internet meets Netnews
NO_LATEST_LINK= yes
@@ -20,7 +19,7 @@ USE_GMAKE= yes
USE_PERL5= yes
USE_OPENSSL= yes
-CONFLICTS= inn-stable-* inn-current
+CONFLICTS= inn-stable-* inn-current-*
.if exists(/var/news) && !defined(PACKAGE_BUILDING)
INN_NEWSSPOOL?=/var/news
@@ -47,7 +46,7 @@ CONFIGURE_ARGS+= --with-berkeleydb
. if !defined(WITH_BDB_VER)
WITH_BDB_VER= 4
. endif
-. if (${WITH_BDB_VER} == 3) || (${WITH_BDB_VER} == 4)
+. if (${WITH_BDB_VER} == 3) || (${WITH_BDB_VER} == 4) || (${WITH_BDB_VER} == 41)
LIB_DEPENDS+= db${WITH_BDB_VER}:${PORTSDIR}/databases/db${WITH_BDB_VER}
. elif ${WITH_BDB_VER} == 2
BROKEN= "Does not compile with db2"
diff --git a/news/inn/distinfo b/news/inn/distinfo
index df9d0b77c60a..bba165dcc020 100644
--- a/news/inn/distinfo
+++ b/news/inn/distinfo
@@ -1 +1 @@
-MD5 (inn-2.4.0.tar.gz) = 629c445b7c7fe2a01257b883abb7bddf
+MD5 (inn-2.4.1.tar.gz) = bec635b6e70188071fdb539cd374f2ba
diff --git a/news/inn/files/patch-configure b/news/inn/files/patch-configure
index fec9814ed0d2..efc64a5cee58 100644
--- a/news/inn/files/patch-configure
+++ b/news/inn/files/patch-configure
@@ -1,11 +1,11 @@
---- configure.orig Fri May 9 06:25:27 2003
-+++ configure Wed Oct 22 19:16:35 2003
+--- configure.orig Tue Sep 2 06:39:30 2003
++++ configure Wed Oct 22 15:23:46 2003
@@ -5826,36 +5826,9 @@
done
done
fi
- if test x"$BERKELEY_DB_DIR" = xyes ; then
-- for v in db4 db3 db2 ; do
+- for v in db41 db4 db3 db2 ; do
- if test -d "/usr/local/include/$v" ; then
- BERKELEY_DB_LDFLAGS="-L/usr/local/lib"
- BERKELEY_DB_CFLAGS="-I/usr/local/include/$v"
@@ -15,7 +15,7 @@
- fi
- done
- if test x"$BERKELEY_DB_LIB" = x ; then
-- for v in db4 db3 db2 ; do
+- for v in db41 db4 db3 db2 ; do
- if test -d "/usr/include/$v" ; then
- BERKELEY_DB_CFLAGS="-I/usr/include/$v"
- BERKELEY_DB_LIB="-l$v"
@@ -29,14 +29,13 @@
- fi
- fi
- else
-- BERKELEY_DB_LDFLAGS="-L$BERKELEY_DB_DIR/lib"
+ BERKELEY_DB_LDFLAGS="-L$BERKELEY_DB_DIR/lib"
- BERKELEY_DB_CFLAGS="-I$BERKELEY_DB_DIR/include"
- BERKELEY_DB_LIB="-ldb"
- echo "$ac_t""$BERKELEY_DB_DIR" 1>&6
- fi
-+ BERKELEY_DB_LDFLAGS="-L$BERKELEY_DB_DIR/lib"
-+ BERKELEY_DB_CFLAGS="-I$BERKELEY_DB_DIR/include/${DB_VER}"
-+ BERKELEY_DB_LIB="-l${DB_VER}"
++ BERKELEY_DB_CFLAGS="-I$BERKELEY_DB_DIR/include/${DB_VER}"
++ BERKELEY_DB_LIB="-l${DB_VER}"
cat >> confdefs.h <<\EOF
#define USE_BERKELEY_DB 1
EOF