blob: b728b64d10e8d7bbd62dedfa5f891dad60998b3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmail/libmail-0.3-r2.ebuild,v 1.1 2013/01/31 13:09:01 pinkbyte Exp $
EAPI=5
AUTOTOOLS_IN_SOURCE_BUILD=1
AUTOTOOLS_AUTORECONF=1
inherit autotools-utils
DESCRIPTION="A mail handling library"
HOMEPAGE="http://libmail.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="apop debug gnutls profile sasl static-libs"
DEPEND="gnutls? ( >=net-libs/gnutls-2 )
sasl? ( >=dev-libs/cyrus-sasl-2 )"
RDEPEND="${DEPEND}"
DOCS=( AUTHORS ChangeLog NEWS README TODO )
# Do not unset user's CFLAGS, bug #454558
PATCHES=( "${FILESDIR}/${P}-respect-cflags.patch" )
src_prepare() {
# Drop quotes from ACLOCAL_AMFLAGS otherwise aclocal will fail
# see 447760
sed -i -e "/ACLOCAL_AMFLAGS/s:\"::g" Makefile.am || die
autotools-utils_src_prepare
}
src_configure() {
local myeconfargs=(
$(use_enable apop)
$(use_enable debug)
$(use_enable gnutls tls)
$(use_enable profile)
$(use_enable sasl)
)
autotools-utils_src_configure
}
|