You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-misc/qtm/qtm-1.3.17.ebuild

44 lines
948 B

# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="4"
CMAKE_IN_SOURCE_BUILD="1"
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="dev-qt/qtgui:4
dbus? ( dev-qt/qtdbus:4 )
x11-proto/xproto
dev-lang/perl
virtual/perl-Digest-MD5"
DEPEND="${RDEPEND}
virtual/pkgconfig"
DOCS=( Changelog README )
src_prepare() {
# bug 463810
sed -i -e '/Categories/s/Application;//' qtm-desktop.sh || die 'sed on qtm-desktop.sh failed'
cmake-utils_src_prepare
}
src_configure() {
local mycmakeargs="-DDONT_USE_PTE=FALSE -DINSTALL_MARKDOWN=TRUE
$(cmake-utils_use debug QDEBUG)
$(cmake-utils_use ssl)"
! use dbus && mycmakeargs="${mycmakeargs} -DDONT_USE_DBUS=TRUE"
cmake-utils_src_configure
}