blob: bf0579c6f0fcbe151e5c23da4596da12152d4b2e (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/qtm/qtm-1.2.ebuild,v 1.1 2010/08/06 21:59:47 hwoarang Exp $
EAPI="2"
inherit cmake-utils
DESCRIPTION="Qt4 blogging client"
HOMEPAGE="http://qtm.blogistan.co.uk"
SRC_URI="mirror://sourceforge/catkin/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="dbus debug ssl"
RESTRICT="strip"
RDEPEND="x11-libs/qt-gui:4
dbus? ( x11-libs/qt-dbus:4 )
x11-proto/xproto
dev-lang/perl
virtual/perl-Digest-MD5"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
CMAKE_IN_SOURCE_BUILD="1"
DOCS="Changelog README"
src_configure() {
mycmakeargs="-DDONT_USE_PTE=FALSE -DINSTALL_MARKDOWN=TRUE
$(cmake-utils_use debug QDEBUG) $(cmake-utils_use dbus)
$(cmake-utils_use ssl)"
cmake-utils_src_configure
}
|