public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in mail-mta/opensmtpd: opensmtpd-5.3_p1.ebuild ChangeLog opensmtpd-9999.ebuild
@ 2013-03-17 19:59 Jason Donenfeld (zx2c4)
  0 siblings, 0 replies; only message in thread
From: Jason Donenfeld (zx2c4) @ 2013-03-17 19:59 UTC (permalink / raw
  To: gentoo-commits

zx2c4       13/03/17 19:59:36

  Modified:             ChangeLog
  Added:                opensmtpd-5.3_p1.ebuild
  Removed:              opensmtpd-9999.ebuild
  Log:
  First release of OpenSMTPD.
  
  (Portage version: 2.2.0_alpha164/cvs/Linux x86_64, signed Manifest commit with key A5DE03AE)

Revision  Changes    Path
1.5                  mail-mta/opensmtpd/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/opensmtpd/ChangeLog?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/opensmtpd/ChangeLog?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/opensmtpd/ChangeLog?r1=1.4&r2=1.5

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/opensmtpd/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog	1 Mar 2013 23:08:42 -0000	1.4
+++ ChangeLog	17 Mar 2013 19:59:36 -0000	1.5
@@ -1,6 +1,12 @@
 # ChangeLog for mail-mta/opensmtpd
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/opensmtpd/ChangeLog,v 1.4 2013/03/01 23:08:42 zx2c4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/opensmtpd/ChangeLog,v 1.5 2013/03/17 19:59:36 zx2c4 Exp $
+
+*opensmtpd-5.3_p1 (17 Mar 2013)
+
+  17 Mar 2013; Jason A. Donenfeld <zx2c4@gentoo.org> +opensmtpd-5.3_p1.ebuild,
+  -opensmtpd-9999.ebuild:
+  First release of OpenSMTPD.
 
   01 Mar 2013; Jason A. Donenfeld <zx2c4@gentoo.org> -files/pam.patch,
   opensmtpd-9999.ebuild:



1.1                  mail-mta/opensmtpd/opensmtpd-5.3_p1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/opensmtpd/opensmtpd-5.3_p1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/opensmtpd/opensmtpd-5.3_p1.ebuild?rev=1.1&content-type=text/plain

Index: opensmtpd-5.3_p1.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/opensmtpd/opensmtpd-5.3_p1.ebuild,v 1.1 2013/03/17 19:59:36 zx2c4 Exp $

EAPI=5

inherit multilib user flag-o-matic eutils pam toolchain-funcs autotools

DESCRIPTION="Lightweight but featured SMTP daemon from OpenBSD"
HOMEPAGE="http://www.opensmtpd.org/"
SRC_URI="http://www.opensmtpd.org/archives/${P/_}.tar.gz"

LICENSE="ISC BSD BSD-1 BSD-2 BSD-4"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="pam"

DEPEND="dev-libs/openssl
		sys-libs/zlib
		pam? ( virtual/pam )
		sys-libs/db
		dev-db/sqlite:3
		dev-libs/libevent
		!mail-mta/courier
		!mail-mta/esmtp
		!mail-mta/exim
		!mail-mta/mini-qmail
		!mail-mta/msmtp[mta]
		!mail-mta/netqmail
		!mail-mta/nullmailer
		!mail-mta/postfix
		!mail-mta/qmail-ldap
		!mail-mta/sendmail
		!mail-mta/ssmtp[mta]
"
RDEPEND="${DEPEND}"

S=${WORKDIR}/${P/_}

src_prepare() {
	epatch "${FILESDIR}"/build-warnings.patch
	eautoreconf
}

src_configure() {
	tc-export AR
	AR="$(which "$AR")" econf \
		--with-privsep-user=smtpd \
		--with-filter-user=smtpf \
		--with-queue-user=smtpq \
		#--with-lookup-user=smtpl  will be available in the release after 5.3p1
		--with-privsep-path=/var/empty \
		--with-sock-dir=/var/run \
		--sysconfdir=/etc/opensmtpd \
		$(use_with pam)
}

src_install() {
	default
	newinitd "${FILESDIR}"/smtpd.initd smtpd
	use pam && newpamd "${FILESDIR}"/smtpd.pam smtpd
}

pkg_preinst() {
	enewgroup smtpd 25
	enewuser smtpd 25 -1 /var/empty smtpd
	enewgroup smtpf 251
	enewuser smtpf 251 -1 /var/empty smtpf
	enewgroup smtpq 252
	enewuser smtpq 252 -1 /var/empty smtpq

	# For release after 5.3p1:
	#enewgroup smtpl 253
	#enewuser smtpl 253 -1 /var/empty smtpl
}





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

only message in thread, other threads:[~2013-03-17 19:59 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-17 19:59 [gentoo-commits] gentoo-x86 commit in mail-mta/opensmtpd: opensmtpd-5.3_p1.ebuild ChangeLog opensmtpd-9999.ebuild Jason Donenfeld (zx2c4)

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