blob: 36050279df0a5d43996857d9f693b2529617eb88 (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/hotot/hotot-0.9.8.4.ebuild,v 1.1 2012/05/22 08:08:40 xmw Exp $
EAPI=4
PYTHON_DEPEND="gtk? 2"
RESTRICT_PYTHON_ABIS="3.*"
inherit cmake-utils python
DESCRIPTION="lightweight & open source microblogging client"
HOMEPAGE="http://hotot.org"
SRC_URI="https://github.com/shellex/Hotot/tarball/560e6b286c -> ${P}.tar.gz"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="chrome gtk kde qt4"
RDEPEND="
gtk? ( dev-python/pywebkitgtk )
qt4? ( x11-libs/qt-webkit:4
kde? ( kde-base/kdelibs ) )"
DEPEND="${RDEPEND}
sys-devel/gettext"
pkg_setup() {
if ! use gtk ; then
if ! use qt4 ; then
ewarn "neither gtk not qt4 binaries will be build"
if ! use chrome ; then
die "enable one use flag of chrome, gtk or qt4"
fi
fi
fi
python_pkg_setup
}
src_unpack() {
default
mv shellex-Hotot-* ${P} || die
}
src_configure() {
mycmakeargs="${mycmakeargs} \
$(cmake-utils_use_with chrome CHROME) \
$(cmake-utils_use_with gtk GTK) \
$(cmake-utils_use_with kde KDE) \
$(cmake-utils_use_with qt4 QT) \
-DPYTHON_EXECUTABLE=$(PYTHON -2 -a)"
cmake-utils_src_configure
}
src_install() {
cmake-utils_src_install
find "${D}" -name "*.pyc" -delete
}
pkg_postinst() {
if use chrome; then
elog "TO install hotot for chrome, open chromium/google-chrome,"
elog "vist chrome://chrome/extensions/ and load /usr/share/hotot"
elog "as unpacked extension."
fi
}
|