public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in mail-filter/simscan: ChangeLog simscan-1.3.1.ebuild
@ 2008-02-22 23:34 Alfredo Tupone (tupone)
  0 siblings, 0 replies; only message in thread
From: Alfredo Tupone (tupone) @ 2008-02-22 23:34 UTC (permalink / raw
  To: gentoo-commits

tupone      08/02/22 23:34:13

  Modified:             ChangeLog simscan-1.3.1.ebuild
  Log:
  No need for qmail at buildtime. Bug #199534
  (Portage version: 2.1.3.19)

Revision  Changes    Path
1.4                  mail-filter/simscan/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/simscan/ChangeLog?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/simscan/ChangeLog?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/simscan/ChangeLog?r1=1.3&r2=1.4

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-filter/simscan/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog	27 Jun 2007 20:34:19 -0000	1.3
+++ ChangeLog	22 Feb 2008 23:34:12 -0000	1.4
@@ -1,6 +1,10 @@
 # ChangeLog for mail-filter/simscan
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/simscan/ChangeLog,v 1.3 2007/06/27 20:34:19 swegener Exp $
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/simscan/ChangeLog,v 1.4 2008/02/22 23:34:12 tupone Exp $
+
+  22 Feb 2008; Tupone Alfredo <tupone@gentoo.org> simscan-1.3.1.ebuild:
+  No need for qmail at buildtime. Bug #199534 by Diego Pettenò
+  Other minor fixes
 
   20 Jun 2007; Benedikt Böhm <hollow@gentoo.org>
   files/simscan-1.3.1-destdir.patch:



1.2                  mail-filter/simscan/simscan-1.3.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/simscan/simscan-1.3.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/simscan/simscan-1.3.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/simscan/simscan-1.3.1.ebuild?r1=1.1&r2=1.2

Index: simscan-1.3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-filter/simscan/simscan-1.3.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- simscan-1.3.1.ebuild	17 Jun 2007 11:46:24 -0000	1.1
+++ simscan-1.3.1.ebuild	22 Feb 2008 23:34:12 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/simscan/simscan-1.3.1.ebuild,v 1.1 2007/06/17 11:46:24 hollow Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/simscan/simscan-1.3.1.ebuild,v 1.2 2008/02/22 23:34:12 tupone Exp $
 
 inherit autotools toolchain-funcs eutils fixheadtails flag-o-matic
 
@@ -29,19 +29,21 @@
 	enewgroup simscan
 	enewuser simscan -1 -1 /dev/null simscan
 
-	use clamav && usermod -G simscan,nofiles clamav
+	use clamav && usermod -a -G simscan,nofiles clamav
 }
 
 src_unpack() {
-	unpack ${P}.tar.gz
+	unpack ${A}
 	cd "${S}"
 
-	epatch ${FILESDIR}/${P}-destdir.patch
-	epatch ${FILESDIR}/${P}-printf.patch
+	epatch "${FILESDIR}"/${P}-destdir.patch \
+		"${FILESDIR}"/${P}-printf.patch
 
-	sed -i "s:daily.cvd:main.cvd:g" configure
-	sed -i "s:daily.cvd:main.cvd:g" configure.in
-	sed -i "s:daily.cvd:main.cvd:g" simscanmk.c
+	sed -i \
+		-e "s:daily.cvd:main.cvd:g" \
+		configure.in \
+		simscanmk.c \
+		|| die "sed failed"
 
 	eautoreconf
 }
@@ -50,6 +52,7 @@
 	econf \
 		--enable-user=simscan \
 		--enable-qmaildir=/var/qmail \
+		--enable-qmail-queue=/var/qmail/bin/qmail-queue \
 		$(use_enable attachment attach) \
 		$(use_enable clamav) \
 		$(use_enable clamav clamdscan /usr/bin/clamdscan) \
@@ -69,7 +72,7 @@
 
 src_install() {
 	emake DESTDIR="${D}" install || die "emake install failed"
-	dodoc AUTHORS README TODO
+	dodoc AUTHORS ChangeLog README TODO
 
 	keepdir /var/qmail/control
 	keepdir /var/qmail/simscan



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



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-02-22 23:34 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-22 23:34 [gentoo-commits] gentoo-x86 commit in mail-filter/simscan: ChangeLog simscan-1.3.1.ebuild Alfredo Tupone (tupone)

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