grobian     14/04/17 07:56:57

  Modified:             ChangeLog
  Added:                opendmarc-1.2.0.ebuild
  Log:
  Version bump (bug #506326), add init script for opendmarc daemon based on the 
work by Kim B. Sindalsen (bug #490842)
  
  (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.7                  mail-filter/opendmarc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/opendmarc/ChangeLog?rev=1.7&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/opendmarc/ChangeLog?rev=1.7&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/opendmarc/ChangeLog?r1=1.6&r2=1.7

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-filter/opendmarc/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   3 Feb 2014 13:36:52 -0000       1.6
+++ ChangeLog   17 Apr 2014 07:56:57 -0000      1.7
@@ -1,6 +1,13 @@
 # ChangeLog for mail-filter/opendmarc
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/opendmarc/ChangeLog,v 1.6 
2014/02/03 13:36:52 hattya Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/opendmarc/ChangeLog,v 1.7 
2014/04/17 07:56:57 grobian Exp $
+
+*opendmarc-1.2.0 (17 Apr 2014)
+
+  17 Apr 2014; Fabian Groffen <[email protected]> +files/opendmarc.confd,
+  +files/opendmarc.initd, +opendmarc-1.2.0.ebuild:
+  Version bump (bug #506326), add init script for opendmarc daemon based on the
+  work by Kim B. Sindalsen (bug #490842)
 
   03 Feb 2014; Akinori Hattori <[email protected]> opendmarc-1.1.3.ebuild:
   keyword ~ia64 wrt bug #489676



1.1                  mail-filter/opendmarc/opendmarc-1.2.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/opendmarc/opendmarc-1.2.0.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/opendmarc/opendmarc-1.2.0.ebuild?rev=1.1&content-type=text/plain

Index: opendmarc-1.2.0.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/mail-filter/opendmarc/opendmarc-1.2.0.ebuild,v 1.1 
2014/04/17 07:56:57 grobian Exp $

EAPI=5

inherit user

DESCRIPTION="Open source DMARC implementation "
HOMEPAGE="http://www.trusteddomain.org/opendmarc/";
SRC_URI="mirror://sourceforge/opendmarc/${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ia64 ~x86 ~x86-fbsd"
IUSE=""

DEPEND="dev-perl/DBI
        || ( mail-filter/libmilter mail-mta/sendmail )"
RDEPEND="${DEPEND}
        virtual/perl-Switch"

pkg_setup() {
        enewgroup milter
        enewuser milter -1 -1 /var/lib/milter milter
}

src_configure() {
        econf \
                --docdir="${EPREFIX}"/usr/share/doc/${PF} \
                --htmldir="${EPREFIX}"/usr/share/doc/${PF}/html
}

src_install() {
        default

        newinitd "${FILESDIR}"/opendmarc.initd opendmarc
        newconfd "${FILESDIR}"/opendmarc.confd opendmarc

        dodir /etc/opendmarc
        dodir /var/run/opendmarc
        fowners milter:milter /var/run/opendmarc

        # create config file
        sed \
                -e 's/^# UserID .*$/UserID milter/' \
                -e 's/^# PidFile .*/PidFile 
\/var\/run\/opendmarc\/opendmarc.pid/' \
                -e '/^# Socket /s/^# //' \
                "${S}"/opendmarc/opendmarc.conf.sample \
                > "${ED}"/etc/opendmarc/opendmarc.conf \
                || die
}




Reply via email to