blob: df3a10b9f63b66822e1f213d730a80ed39407011 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/qca-cyrus-sasl/qca-cyrus-sasl-2.0.0_beta3.ebuild,v 1.10 2009/11/13 12:52:34 josejx Exp $
EAPI="2"
inherit eutils qt4
MY_P="${P/_/-}"
QCA_VER="${PV%.*}"
DESCRIPTION="SASL plugin for QCA"
HOMEPAGE="http://delta.affinix.com/qca/"
SRC_URI="http://delta.affinix.com/download/qca/${QCA_VER}/plugins/${MY_P}.tar.bz2"
LICENSE="LGPL-2"
SLOT="2"
KEYWORDS="alpha amd64 ia64 ppc64 sparc x86 ~x86-fbsd"
IUSE="debug"
DEPEND=">=app-crypt/qca-${QCA_VER}[debug?]
dev-libs/cyrus-sasl"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"
src_configure() {
# cannot use econf because of non-standard configure script
./configure \
--qtdir=/usr \
$(use debug && echo "--debug" || echo "--release") \
--no-separate-debug-info \
|| die "configure failed"
eqmake4 ${PN}.pro
}
src_install() {
emake INSTALL_ROOT="${D}" install || die "make install failed"
}
|