grobian 14/09/02 08:47:19 Modified: ChangeLog Added: opendmarc-1.3.0.ebuild Log: Version bump to 1.3.0 (Portage version: 2.2.10.1-prefix/cvs/SunOS i386, signed Manifest commit with key 0x5F75F607C5C74E89)
Revision Changes Path 1.11 mail-filter/opendmarc/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/opendmarc/ChangeLog?rev=1.11&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/opendmarc/ChangeLog?rev=1.11&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/opendmarc/ChangeLog?r1=1.10&r2=1.11 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/mail-filter/opendmarc/ChangeLog,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- ChangeLog 25 Jul 2014 21:43:31 -0000 1.10 +++ ChangeLog 2 Sep 2014 08:47:19 -0000 1.11 @@ -1,6 +1,11 @@ # 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.10 2014/07/25 21:43:31 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-filter/opendmarc/ChangeLog,v 1.11 2014/09/02 08:47:19 grobian Exp $ + +*opendmarc-1.3.0 (02 Sep 2014) + + 02 Sep 2014; Fabian Groffen <grob...@gentoo.org> +opendmarc-1.3.0.ebuild: + Version bump to 1.3.0 25 Jul 2014; Andreas K. Huettel <dilfri...@gentoo.org> opendmarc-1.1.3.ebuild, opendmarc-1.2.0.ebuild: 1.1 mail-filter/opendmarc/opendmarc-1.3.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/opendmarc/opendmarc-1.3.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/opendmarc/opendmarc-1.3.0.ebuild?rev=1.1&content-type=text/plain Index: opendmarc-1.3.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.3.0.ebuild,v 1.1 2014/09/02 08:47:19 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="~alpha ~amd64 ~hppa ~ia64 ~x86 ~x86-fbsd" IUSE="" DEPEND="dev-perl/DBI || ( mail-filter/libmilter mail-mta/sendmail )" RDEPEND="${DEPEND} dev-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 }