forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mail-filter/rmilter: add live ebuild (fixes bug 600242)
Thanks to Christian Roessner for contributing the ebuild. Package-Manager: portage-2.3.0
- Loading branch information
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
|
||
inherit cmake-utils user git-r3 | ||
|
||
DESCRIPTION="Another sendmail milter for different mail checks" | ||
HOMEPAGE="https://github.com/vstakhov/rmilter" | ||
EGIT_REPO_URI="https://github.com/vstakhov/rmilter.git" | ||
|
||
LICENSE="BSD" | ||
SLOT="0" | ||
KEYWORDS="" | ||
IUSE="dkim libressl +memcached" | ||
|
||
RDEPEND="dev-libs/libpcre | ||
!libressl? ( dev-libs/openssl:0= ) | ||
libressl? ( dev-libs/libressl:0= ) | ||
mail-filter/libmilter | ||
>=dev-libs/glib-2.28 | ||
dkim? ( mail-filter/opendkim ) | ||
memcached? ( dev-libs/libmemcached )" | ||
DEPEND="${RDEPEND}" | ||
|
||
pkg_setup() { | ||
enewgroup rmilter | ||
enewuser rmilter -1 -1 /var/run/rmilter rmilter | ||
} | ||
|
||
src_configure() { | ||
local mycmakeargs=( | ||
-DENABLE_DKIM=$(usex dkim ON OFF) | ||
-DENABLE_MEMCACHED=$(usex memcached ON OFF) | ||
) | ||
cmake-utils_src_configure | ||
} | ||
|
||
src_install() { | ||
cmake-utils_src_install | ||
newinitd "${FILESDIR}/rmilter.initd" rmilter | ||
insinto /etc/rmilter | ||
newins rmilter.conf.sample rmilter.conf.sample | ||
newins rmilter-grey.conf rmilter-grey.conf | ||
} |