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: version bump to 1.8.6
Package-Manager: portage-2.2.28
- Loading branch information
Showing
2 changed files
with
44 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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
DIST rmilter-1.7.5.tar.gz 162698 SHA256 34cf0b6c38dac9b11d6aacd0d093fdf3544d76543cd1aad2b1342e1024768e27 SHA512 4cf76e330e55e5f8542c7a27d18cd593ad2b2f1c0bd45bf3787bce7b1cbfe77752bcff7b6558b89105d034a7f2e31f7805fe2b4bf5b1bb408b18c10646ad0aa8 WHIRLPOOL 61bad9244f9e45be35fe0cc6d3199d431066fdaeb61065077e069e320d71f80696db1d62f6ca7a9acb45cef4c4ddeda9719bf206a124c9c7f4f01e32839ae0d0 | ||
DIST rmilter-1.8.4.tar.gz 261800 SHA256 af7ad32d3fa8f41ec135a43468b98cc1c46128b30fe58700e9434fcdc3ce3f6a SHA512 7c1f9afc1cd489ff052ead5e1876fe334252766213cf8c30a394be7aa7b308896a9fb0b57391b37c5727f76707403d432c5fc1f56b78c996432c7524e4049803 WHIRLPOOL 296b8d7fd5db60b6b7b642907e5dc108019c6f61ed585769f81e68b51d11844e16ecacaab5d70416bcae45799df6c5fbd7f5495d58053c66bd237cb935f583b0 | ||
DIST rmilter-1.8.5.tar.gz 263515 SHA256 e9e1b3c724aa7d9e43f899ad0dbb367d37945e48b742b89188e1a1c256be318f SHA512 a80fd19ab3b5a9bc0b6183ea5da77a91fc50b0ea1901a78cdd630b2f28c64e37314a4b253a7acc58bfb5c83a314612dadb38a10088a8ca1a132e5e080c6a1691 WHIRLPOOL df3fb2844ae731068634b3fc9820a06d15ff8de6a2af9278459f6a005418218ba31c435d526ba909a70bb87c96a70268368b58a4c9ce939f5a0f9e0d7c25cfe2 | ||
DIST rmilter-1.8.6.tar.gz 263883 SHA256 dd00e10a6c5e2a7682bd81155f8cb09fbdbed0416e1c7ccc955a4338c85f144f SHA512 34304fd1f515cd6b5ce53e0e3ba42d6d58c41b604626afa742f22e5da1d8470b1f70d627457988d824ee3cd91d3be0591b41a1342da80440601c779e5bb65f66 WHIRLPOOL 3946b899352a03fa775f321d4ba1971151e4fec856cf5a73775343fc037ed24be0d8459355a10e4641b66ac891460b6076c21dda910df3120154acc736e5c43d |
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,43 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
|
||
inherit cmake-utils user | ||
|
||
DESCRIPTION="Another sendmail milter for different mail checks" | ||
SRC_URI="https://github.com/vstakhov/rmilter/archive/${PV}.tar.gz -> ${P}.tar.gz" | ||
HOMEPAGE="https://github.com/vstakhov/rmilter" | ||
|
||
LICENSE="BSD" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="+memcached" | ||
|
||
RDEPEND="dev-libs/libpcre | ||
dev-libs/openssl:0 | ||
mail-filter/libmilter | ||
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_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 | ||
} |