diff options
author | Andreis Vinogradovs <spamslepnoga@inbox.ru> | 2011-09-07 08:30:24 +0000 |
---|---|---|
committer | Andreis Vinogradovs <spamslepnoga@inbox.ru> | 2011-09-07 08:30:24 +0000 |
commit | 9aab85e376fd55d378ac42d7a336ac8223d85502 (patch) | |
tree | 475e6c35c9a78f6de1c338fe50924d3398c3f409 /mail-filter/libdkim/libdkim-1.0.21.ebuild | |
parent | dev-vcs/tortoisehg: Moved to gentoo-x86 by me (diff) | |
download | sunrise-9aab85e376fd55d378ac42d7a336ac8223d85502.tar.gz sunrise-9aab85e376fd55d378ac42d7a336ac8223d85502.tar.bz2 sunrise-9aab85e376fd55d378ac42d7a336ac8223d85502.zip |
mail-filter/libdkim: Update Ebuild for bug 262919; thanks to pva
svn path=/sunrise/; revision=12367
Diffstat (limited to 'mail-filter/libdkim/libdkim-1.0.21.ebuild')
-rw-r--r-- | mail-filter/libdkim/libdkim-1.0.21.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/mail-filter/libdkim/libdkim-1.0.21.ebuild b/mail-filter/libdkim/libdkim-1.0.21.ebuild new file mode 100644 index 000000000..830a4b1ec --- /dev/null +++ b/mail-filter/libdkim/libdkim-1.0.21.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="4" + +inherit eutils multilib toolchain-funcs + +DESCRIPTION="A library to verify and create signatures of e-mail headers." +HOMEPAGE="http://libdkim.sourceforge.net" +SRC_URI="mirror://sourceforge/${PN}/${P}.zip" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-libs/openssl + app-arch/unzip" +RDEPEND="!mail-filter/libdkim-exim + dev-libs/openssl" + +S=${WORKDIR}/${PN}/src + +src_prepare() { + ecvs_clean + # upstream claims to be portable, but isn't very + epatch "${FILESDIR}/${PN}-gentoo.patch" + epatch "${FILESDIR}/${PN}-extra-options.patch" +} + +src_compile() { + tc-export CXX + emake LIBDIR=$(get_libdir) +} + +src_install() { + emake DESTDIR="${ED}" install + dodoc ../README +} |