blob: d2bb4b1366480d1cda2e28ca6b10fe07ce5cc849 (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/irssi-otr/irssi-otr-0.3-r1.ebuild,v 1.6 2015/04/08 18:01:55 mgorny Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} )
inherit cmake-utils python-any-r1
DESCRIPTION="Off-The-Record messaging (OTR) for irssi"
HOMEPAGE="http://irssi-otr.tuxfamily.org"
SRC_URI="ftp://download.tuxfamily.org/irssiotr/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~sparc ~x86"
IUSE="debug"
RDEPEND="<net-libs/libotr-4
dev-libs/glib:2
dev-libs/libgcrypt:0
dev-libs/libgpg-error
net-irc/irssi"
DEPEND="${PYTHON_DEPS}
${RDEPEND}
virtual/pkgconfig"
DOCS=( README )
src_prepare() {
# do not install docs through buildsystem
sed -i -e '/README LICENSE/d' CMakeLists.txt || die 'sed on CMakeLists.txt failed'
cmake-utils_src_prepare
}
src_configure() {
local mycmakeargs=(
-DDOCDIR="/usr/share/doc/${PF}"
)
cmake-utils_src_configure
}
|