public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-antivirus/clamav: ChangeLog clamav-0.92.1.ebuild
@ 2008-02-11 23:42 Andrej Kacian (ticho)
  0 siblings, 0 replies; 8+ messages in thread
From: Andrej Kacian (ticho) @ 2008-02-11 23:42 UTC (permalink / raw
  To: gentoo-commits

ticho       08/02/11 23:42:29

  Modified:             ChangeLog
  Added:                clamav-0.92.1.ebuild
  Log:
  Version bump. Dropped compatibility patch to keep cl_loaddbdir() exposed.
  (Portage version: 2.1.4.3)

Revision  Changes    Path
1.273                app-antivirus/clamav/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?rev=1.273&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?rev=1.273&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?r1=1.272&r2=1.273

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v
retrieving revision 1.272
retrieving revision 1.273
diff -u -r1.272 -r1.273
--- ChangeLog	11 Feb 2008 22:58:32 -0000	1.272
+++ ChangeLog	11 Feb 2008 23:42:29 -0000	1.273
@@ -1,6 +1,11 @@
 # ChangeLog for app-antivirus/clamav
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.272 2008/02/11 22:58:32 ticho Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.273 2008/02/11 23:42:29 ticho Exp $
+
+*clamav-0.92.1 (11 Feb 2008)
+
+  11 Feb 2008; Andrej Kacian <ticho@gentoo.org> +clamav-0.92.1.ebuild:
+  Version bump. Dropped compatibility patch to keep cl_loaddbdir() exposed.
 
   11 Feb 2008; Andrej Kacian <ticho@gentoo.org> clamav-0.91.2.ebuild,
   clamav-0.91.2-r1.ebuild, clamav-0.92.ebuild:



1.1                  app-antivirus/clamav/clamav-0.92.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild?rev=1.1&content-type=text/plain

Index: clamav-0.92.1.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild,v 1.1 2008/02/11 23:42:29 ticho Exp $

inherit autotools eutils flag-o-matic fixheadtails multilib

DESCRIPTION="Clam Anti-Virus Scanner"
HOMEPAGE="http://www.clamav.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="bzip2 crypt mailwrapper milter nls selinux"

DEPEND="virtual/libc
	bzip2? ( app-arch/bzip2 )
	crypt? ( >=dev-libs/gmp-4.1.2 )
	milter? ( || ( mail-filter/libmilter mail-mta/sendmail ) )
	nls? ( sys-devel/gettext )
	dev-libs/gmp
	>=sys-libs/zlib-1.2.1-r3
	>=sys-apps/sed-4"
RDEPEND="${DEPEND}
	selinux? ( sec-policy/selinux-clamav )
	sys-apps/grep"
PROVIDE="virtual/antivirus"

pkg_setup() {
	if use milter; then
		if [ ! -e /usr/$(get_libdir)/libmilter.a ] ; then
			ewarn "In order to enable milter support, clamav needs sendmail with enabled milter"
			ewarn "USE flag, or mail-filter/libmilter package."
		fi
	fi

	enewgroup clamav
	enewuser clamav -1 -1 /dev/null clamav
}

src_unpack() {
	unpack ${A}
	cd "${S}"
	epatch "${FILESDIR}"/${PN}-0.90-nls.patch
	eautoreconf
}

src_compile() {
	has_version =sys-libs/glibc-2.2* && filter-lfs-flags

	local myconf

	# we depend on fixed zlib, so we can disable this check to prevent redundant
	# warning (bug #61749)
	myconf="${myconf} --disable-zlib-vcheck"
	# use id utility instead of /etc/passwd parsing (bug #72540)
	myconf="${myconf} --enable-id-check"
	use milter && {
		myconf="${myconf} --enable-milter"
		use mailwrapper && \
			myconf="${myconf} --with-sendmail=/usr/sbin/sendmail.sendmail"
	}

	ht_fix_file configure
	econf ${myconf} \
		$(use_enable bzip2) \
		$(use_enable nls) \
		--disable-experimental \
		--with-dbdir=/var/lib/clamav || die
	emake || die
}

src_install() {
	make DESTDIR="${D}" install || die
	dodoc AUTHORS BUGS NEWS README ChangeLog FAQ
	newconfd "${FILESDIR}"/clamd.conf clamd
	newinitd "${FILESDIR}"/clamd.rc clamd
	dodoc "${FILESDIR}"/clamav-milter.README.gentoo

	dodir /var/run/clamav
	keepdir /var/run/clamav
	fowners clamav:clamav /var/run/clamav
	dodir /var/log/clamav
	keepdir /var/log/clamav
	fowners clamav:clamav /var/log/clamav

	# Change /etc/clamd.conf to be usable out of the box
	sed -i -e "s:^\(Example\):\# \1:" \
		-e "s:.*\(PidFile\) .*:\1 /var/run/clamav/clamd.pid:" \
		-e "s:.*\(LocalSocket\) .*:\1 /var/run/clamav/clamd.sock:" \
		-e "s:.*\(User\) .*:\1 clamav:" \
		-e "s:^\#\(LogFile\) .*:\1 /var/log/clamav/clamd.log:" \
		-e "s:^\#\(LogTime\).*:\1 yes:" \
		"${D}"/etc/clamd.conf

	# Do the same for /etc/freshclam.conf
	sed -i -e "s:^\(Example\):\# \1:" \
		-e "s:.*\(PidFile\) .*:\1 /var/run/clamav/freshclam.pid:" \
		-e "s:.*\(DatabaseOwner\) .*:\1 clamav:" \
		-e "s:^\#\(UpdateLogFile\) .*:\1 /var/log/clamav/freshclam.log:" \
		-e "s:^\#\(NotifyClamd\).*:\1 /etc/clamd.conf:" \
		-e "s:^\#\(ScriptedUpdates\).*:\1 yes:" \
		"${D}"/etc/freshclam.conf

	if use milter ; then
		echo "START_MILTER=no" \
			>> "${D}"/etc/conf.d/clamd
		echo "MILTER_SOCKET=\"/var/run/clamav/clmilter.sock\"" \
			>>"${D}"/etc/conf.d/clamd
		echo "MILTER_OPTS=\"-m 10 --timeout=0\"" \
			>>"${D}"/etc/conf.d/clamd
	fi

	diropts ""
	dodir /etc/logrotate.d
	insopts -m0644
	insinto /etc/logrotate.d
	newins "${FILESDIR}"/${PN}.logrotate ${PN}
}

pkg_postinst() {
	echo
	if use milter ; then
		elog "For simple instructions how to setup the clamav-milter"
		elog "read /usr/share/doc/${PF}/clamav-milter.README.gentoo.gz"
		echo
	fi
	ewarn "WARNING: In 0.92.1, the logic in the scanner limits have been reworked. This"
	ewarn "results in different command line options to clamscan, different config"
	ewarn "options to clamd and, overall, a different behaviour."
	echo
	ewarn "The soname for libclamav has changed in clamav-0.92."
	ewarn "If you have upgraded from that or earlier version, it is recommended to run:"
	ewarn "\trevdep-rebuild --library libclamav.so.2"
	ewarn "This will fix linking errors caused by this change."
	echo
}



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 8+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-antivirus/clamav: ChangeLog clamav-0.92.1.ebuild
@ 2008-02-16 20:42 Markus Meier (maekke)
  0 siblings, 0 replies; 8+ messages in thread
From: Markus Meier (maekke) @ 2008-02-16 20:42 UTC (permalink / raw
  To: gentoo-commits

maekke      08/02/16 20:42:08

  Modified:             ChangeLog clamav-0.92.1.ebuild
  Log:
  x86 stable, security bug #209915
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.275                app-antivirus/clamav/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?rev=1.275&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?rev=1.275&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?r1=1.274&r2=1.275

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v
retrieving revision 1.274
retrieving revision 1.275
diff -u -r1.274 -r1.275
--- ChangeLog	13 Feb 2008 10:50:06 -0000	1.274
+++ ChangeLog	16 Feb 2008 20:42:07 -0000	1.275
@@ -1,6 +1,9 @@
 # ChangeLog for app-antivirus/clamav
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.274 2008/02/13 10:50:06 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.275 2008/02/16 20:42:07 maekke Exp $
+
+  16 Feb 2008; Markus Meier <maekke@gentoo.org> clamav-0.92.1.ebuild:
+  x86 stable, security bug #209915
 
   13 Feb 2008; Jeroen Roovers <jer@gentoo.org> clamav-0.92.ebuild:
   Stable for HPPA (bug #207231).



1.2                  app-antivirus/clamav/clamav-0.92.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild?r1=1.1&r2=1.2

Index: clamav-0.92.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- clamav-0.92.1.ebuild	11 Feb 2008 23:42:29 -0000	1.1
+++ clamav-0.92.1.ebuild	16 Feb 2008 20:42:07 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild,v 1.1 2008/02/11 23:42:29 ticho Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild,v 1.2 2008/02/16 20:42:07 maekke Exp $
 
 inherit autotools eutils flag-o-matic fixheadtails multilib
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="bzip2 crypt mailwrapper milter nls selinux"
 
 DEPEND="virtual/libc



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 8+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-antivirus/clamav: ChangeLog clamav-0.92.1.ebuild
@ 2008-02-17 13:22 Christoph Mende (angelos)
  0 siblings, 0 replies; 8+ messages in thread
From: Christoph Mende (angelos) @ 2008-02-17 13:22 UTC (permalink / raw
  To: gentoo-commits

angelos     08/02/17 13:22:44

  Modified:             ChangeLog clamav-0.92.1.ebuild
  Log:
  Stable on amd64, security bug #209915
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.276                app-antivirus/clamav/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?rev=1.276&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?rev=1.276&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?r1=1.275&r2=1.276

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v
retrieving revision 1.275
retrieving revision 1.276
diff -u -r1.275 -r1.276
--- ChangeLog	16 Feb 2008 20:42:07 -0000	1.275
+++ ChangeLog	17 Feb 2008 13:22:43 -0000	1.276
@@ -1,6 +1,9 @@
 # ChangeLog for app-antivirus/clamav
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.275 2008/02/16 20:42:07 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.276 2008/02/17 13:22:43 angelos Exp $
+
+  17 Feb 2008; Christoph Mende <angelos@gentoo.org> clamav-0.92.1.ebuild:
+  Stable on amd64, security bug #209915
 
   16 Feb 2008; Markus Meier <maekke@gentoo.org> clamav-0.92.1.ebuild:
   x86 stable, security bug #209915



1.3                  app-antivirus/clamav/clamav-0.92.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild?r1=1.2&r2=1.3

Index: clamav-0.92.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- clamav-0.92.1.ebuild	16 Feb 2008 20:42:07 -0000	1.2
+++ clamav-0.92.1.ebuild	17 Feb 2008 13:22:43 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild,v 1.2 2008/02/16 20:42:07 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild,v 1.3 2008/02/17 13:22:43 angelos Exp $
 
 inherit autotools eutils flag-o-matic fixheadtails multilib
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="bzip2 crypt mailwrapper milter nls selinux"
 
 DEPEND="virtual/libc



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 8+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-antivirus/clamav: ChangeLog clamav-0.92.1.ebuild
@ 2008-02-18 14:57 Raul Porcel (armin76)
  0 siblings, 0 replies; 8+ messages in thread
From: Raul Porcel (armin76) @ 2008-02-18 14:57 UTC (permalink / raw
  To: gentoo-commits

armin76     08/02/18 14:57:42

  Modified:             ChangeLog clamav-0.92.1.ebuild
  Log:
  alpha/ia64/sparc stable wrt #209915
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.277                app-antivirus/clamav/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?rev=1.277&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?rev=1.277&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?r1=1.276&r2=1.277

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v
retrieving revision 1.276
retrieving revision 1.277
diff -u -r1.276 -r1.277
--- ChangeLog	17 Feb 2008 13:22:43 -0000	1.276
+++ ChangeLog	18 Feb 2008 14:57:41 -0000	1.277
@@ -1,6 +1,9 @@
 # ChangeLog for app-antivirus/clamav
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.276 2008/02/17 13:22:43 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.277 2008/02/18 14:57:41 armin76 Exp $
+
+  18 Feb 2008; Raúl Porcel <armin76@gentoo.org> clamav-0.92.1.ebuild:
+  alpha/ia64/sparc stable wrt #209915
 
   17 Feb 2008; Christoph Mende <angelos@gentoo.org> clamav-0.92.1.ebuild:
   Stable on amd64, security bug #209915



1.4                  app-antivirus/clamav/clamav-0.92.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild?r1=1.3&r2=1.4

Index: clamav-0.92.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- clamav-0.92.1.ebuild	17 Feb 2008 13:22:43 -0000	1.3
+++ clamav-0.92.1.ebuild	18 Feb 2008 14:57:41 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild,v 1.3 2008/02/17 13:22:43 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild,v 1.4 2008/02/18 14:57:41 armin76 Exp $
 
 inherit autotools eutils flag-o-matic fixheadtails multilib
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~hppa ia64 ~ppc ~ppc64 sparc x86 ~x86-fbsd"
 IUSE="bzip2 crypt mailwrapper milter nls selinux"
 
 DEPEND="virtual/libc



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 8+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-antivirus/clamav: ChangeLog clamav-0.92.1.ebuild
@ 2008-02-18 15:46 Jeroen Roovers (jer)
  0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers (jer) @ 2008-02-18 15:46 UTC (permalink / raw
  To: gentoo-commits

jer         08/02/18 15:46:11

  Modified:             ChangeLog clamav-0.92.1.ebuild
  Log:
  Stable for HPPA (bug #209915).
  (Portage version: 2.1.3.19)

Revision  Changes    Path
1.278                app-antivirus/clamav/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?rev=1.278&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?rev=1.278&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?r1=1.277&r2=1.278

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v
retrieving revision 1.277
retrieving revision 1.278
diff -u -r1.277 -r1.278
--- ChangeLog	18 Feb 2008 14:57:41 -0000	1.277
+++ ChangeLog	18 Feb 2008 15:46:11 -0000	1.278
@@ -1,6 +1,9 @@
 # ChangeLog for app-antivirus/clamav
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.277 2008/02/18 14:57:41 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.278 2008/02/18 15:46:11 jer Exp $
+
+  18 Feb 2008; Jeroen Roovers <jer@gentoo.org> clamav-0.92.1.ebuild:
+  Stable for HPPA (bug #209915).
 
   18 Feb 2008; Raúl Porcel <armin76@gentoo.org> clamav-0.92.1.ebuild:
   alpha/ia64/sparc stable wrt #209915



1.5                  app-antivirus/clamav/clamav-0.92.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild?r1=1.4&r2=1.5

Index: clamav-0.92.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- clamav-0.92.1.ebuild	18 Feb 2008 14:57:41 -0000	1.4
+++ clamav-0.92.1.ebuild	18 Feb 2008 15:46:11 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild,v 1.4 2008/02/18 14:57:41 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild,v 1.5 2008/02/18 15:46:11 jer Exp $
 
 inherit autotools eutils flag-o-matic fixheadtails multilib
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~hppa ia64 ~ppc ~ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 hppa ia64 ~ppc ~ppc64 sparc x86 ~x86-fbsd"
 IUSE="bzip2 crypt mailwrapper milter nls selinux"
 
 DEPEND="virtual/libc



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 8+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-antivirus/clamav: ChangeLog clamav-0.92.1.ebuild
@ 2008-02-18 17:27 Brent Baude (ranger)
  0 siblings, 0 replies; 8+ messages in thread
From: Brent Baude (ranger) @ 2008-02-18 17:27 UTC (permalink / raw
  To: gentoo-commits

ranger      08/02/18 17:27:30

  Modified:             ChangeLog clamav-0.92.1.ebuild
  Log:
  Marking clamav-0.92.1 ppc64 for bug 209915
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.279                app-antivirus/clamav/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?rev=1.279&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?rev=1.279&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?r1=1.278&r2=1.279

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v
retrieving revision 1.278
retrieving revision 1.279
diff -u -r1.278 -r1.279
--- ChangeLog	18 Feb 2008 15:46:11 -0000	1.278
+++ ChangeLog	18 Feb 2008 17:27:30 -0000	1.279
@@ -1,6 +1,9 @@
 # ChangeLog for app-antivirus/clamav
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.278 2008/02/18 15:46:11 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.279 2008/02/18 17:27:30 ranger Exp $
+
+  18 Feb 2008; Brent Baude <ranger@gentoo.org> clamav-0.92.1.ebuild:
+  Marking clamav-0.92.1 ppc64 for bug 209915
 
   18 Feb 2008; Jeroen Roovers <jer@gentoo.org> clamav-0.92.1.ebuild:
   Stable for HPPA (bug #209915).



1.6                  app-antivirus/clamav/clamav-0.92.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild?r1=1.5&r2=1.6

Index: clamav-0.92.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- clamav-0.92.1.ebuild	18 Feb 2008 15:46:11 -0000	1.5
+++ clamav-0.92.1.ebuild	18 Feb 2008 17:27:30 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild,v 1.5 2008/02/18 15:46:11 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild,v 1.6 2008/02/18 17:27:30 ranger Exp $
 
 inherit autotools eutils flag-o-matic fixheadtails multilib
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 hppa ia64 ~ppc ~ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 hppa ia64 ~ppc ppc64 sparc x86 ~x86-fbsd"
 IUSE="bzip2 crypt mailwrapper milter nls selinux"
 
 DEPEND="virtual/libc



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 8+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-antivirus/clamav: ChangeLog clamav-0.92.1.ebuild
@ 2008-02-19 18:04 Tobias Scherbaum (dertobi123)
  0 siblings, 0 replies; 8+ messages in thread
From: Tobias Scherbaum (dertobi123) @ 2008-02-19 18:04 UTC (permalink / raw
  To: gentoo-commits

dertobi123    08/02/19 18:04:30

  Modified:             ChangeLog clamav-0.92.1.ebuild
  Log:
  ppc stable, bug #209915
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.280                app-antivirus/clamav/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?rev=1.280&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?rev=1.280&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?r1=1.279&r2=1.280

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v
retrieving revision 1.279
retrieving revision 1.280
diff -u -r1.279 -r1.280
--- ChangeLog	18 Feb 2008 17:27:30 -0000	1.279
+++ ChangeLog	19 Feb 2008 18:04:29 -0000	1.280
@@ -1,6 +1,10 @@
 # ChangeLog for app-antivirus/clamav
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.279 2008/02/18 17:27:30 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.280 2008/02/19 18:04:29 dertobi123 Exp $
+
+  19 Feb 2008; Tobias Scherbaum <dertobi123@gentoo.org>
+  clamav-0.92.1.ebuild:
+  ppc stable, bug #209915
 
   18 Feb 2008; Brent Baude <ranger@gentoo.org> clamav-0.92.1.ebuild:
   Marking clamav-0.92.1 ppc64 for bug 209915



1.7                  app-antivirus/clamav/clamav-0.92.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild?r1=1.6&r2=1.7

Index: clamav-0.92.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- clamav-0.92.1.ebuild	18 Feb 2008 17:27:30 -0000	1.6
+++ clamav-0.92.1.ebuild	19 Feb 2008 18:04:29 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild,v 1.6 2008/02/18 17:27:30 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild,v 1.7 2008/02/19 18:04:29 dertobi123 Exp $
 
 inherit autotools eutils flag-o-matic fixheadtails multilib
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 hppa ia64 ~ppc ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
 IUSE="bzip2 crypt mailwrapper milter nls selinux"
 
 DEPEND="virtual/libc



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 8+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-antivirus/clamav: ChangeLog clamav-0.92.1.ebuild
@ 2008-02-23 22:37 Andrej Kacian (ticho)
  0 siblings, 0 replies; 8+ messages in thread
From: Andrej Kacian (ticho) @ 2008-02-23 22:37 UTC (permalink / raw
  To: gentoo-commits

ticho       08/02/23 22:37:24

  Modified:             ChangeLog clamav-0.92.1.ebuild
  Log:
  Enable AllowSupplementaryGroups option by default for better integration with other apps out of the box.
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.281                app-antivirus/clamav/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?rev=1.281&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?rev=1.281&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/ChangeLog?r1=1.280&r2=1.281

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v
retrieving revision 1.280
retrieving revision 1.281
diff -u -r1.280 -r1.281
--- ChangeLog	19 Feb 2008 18:04:29 -0000	1.280
+++ ChangeLog	23 Feb 2008 22:37:23 -0000	1.281
@@ -1,6 +1,10 @@
 # ChangeLog for app-antivirus/clamav
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.280 2008/02/19 18:04:29 dertobi123 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.281 2008/02/23 22:37:23 ticho Exp $
+
+  23 Feb 2008; Andrej Kacian <ticho@gentoo.org> clamav-0.92.1.ebuild:
+  Enable AllowSupplementaryGroups option by default for better integration
+  with other apps out of the box.
 
   19 Feb 2008; Tobias Scherbaum <dertobi123@gentoo.org>
   clamav-0.92.1.ebuild:



1.8                  app-antivirus/clamav/clamav-0.92.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild?r1=1.7&r2=1.8

Index: clamav-0.92.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- clamav-0.92.1.ebuild	19 Feb 2008 18:04:29 -0000	1.7
+++ clamav-0.92.1.ebuild	23 Feb 2008 22:37:23 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild,v 1.7 2008/02/19 18:04:29 dertobi123 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.92.1.ebuild,v 1.8 2008/02/23 22:37:23 ticho Exp $
 
 inherit autotools eutils flag-o-matic fixheadtails multilib
 
@@ -91,6 +91,7 @@
 		-e "s:.*\(User\) .*:\1 clamav:" \
 		-e "s:^\#\(LogFile\) .*:\1 /var/log/clamav/clamd.log:" \
 		-e "s:^\#\(LogTime\).*:\1 yes:" \
+		-e "s:^\#\(AllowSupplementaryGroups\).*:\1 yes:" \
 		"${D}"/etc/clamd.conf
 
 	# Do the same for /etc/freshclam.conf
@@ -100,6 +101,7 @@
 		-e "s:^\#\(UpdateLogFile\) .*:\1 /var/log/clamav/freshclam.log:" \
 		-e "s:^\#\(NotifyClamd\).*:\1 /etc/clamd.conf:" \
 		-e "s:^\#\(ScriptedUpdates\).*:\1 yes:" \
+		-e "s:^\#\(AllowSupplementaryGroups\).*:\1 yes:" \
 		"${D}"/etc/freshclam.conf
 
 	if use milter ; then



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2008-02-23 22:37 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-19 18:04 [gentoo-commits] gentoo-x86 commit in app-antivirus/clamav: ChangeLog clamav-0.92.1.ebuild Tobias Scherbaum (dertobi123)
  -- strict thread matches above, loose matches on Subject: below --
2008-02-23 22:37 Andrej Kacian (ticho)
2008-02-18 17:27 Brent Baude (ranger)
2008-02-18 15:46 Jeroen Roovers (jer)
2008-02-18 14:57 Raul Porcel (armin76)
2008-02-17 13:22 Christoph Mende (angelos)
2008-02-16 20:42 Markus Meier (maekke)
2008-02-11 23:42 Andrej Kacian (ticho)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox