blob: e75c072ef82f9fc8c0052c413b4aefac6ba81803 (
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-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/libqxt/libqxt-0.2.5-r1.ebuild,v 1.2 2009/10/06 17:54:59 ayoy Exp $
EAPI="1"
inherit eutils qt4
DESCRIPTION="The Qt eXTension library provides cross-platform utility classes for the Qt toolkit"
HOMEPAGE="http://libqxt.org/"
SRC_URI="mirror://sourceforge/libqxt/${P}.tar.gz"
LICENSE="CPL-1.0"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="ssl fastcgi debug"
DEPEND="x11-libs/qt-gui:4
x11-libs/qt-script:4
x11-libs/qt-sql:4
ssl? ( >=dev-libs/openssl-0.9.8 )
fastcgi? ( >=dev-libs/fcgi-2.4 )"
RDEPEND="${DEPEND}"
QT4_BUILT_WITH_USE_CHECK="png ssl"
src_compile() {
local myconf
use debug && myconf="${myconf} -debug"
use !ssl && myconf="${myconf} -nomake crypto"
use !fastcgi && myconf="${myconf} -nomake web"
# fix pre-stripped files issue
for i in $(ls "${S}"/src); do
sed -i "s/qxtbuild/nostrip\ qxtbuild/" "${S}"/src/${i}/${i}.pro
done
./configure -prefix /usr ${myconf}
# fails with parallel build, bug 194730
emake -j1 || die "emake failed"
}
src_install() {
emake INSTALL_ROOT="${D}" install || die "emake install failed"
}
|