blob: 32e561d411717b3255e7dee404280a054dbde740 (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/charm/charm-1.9.2-r1.ebuild,v 1.1 2015/03/02 10:31:23 bman Exp $
EAPI="5"
PYTHON_COMPAT=( python2_7 )
DISTUTILS_SINGLE_IMPL="1"
inherit distutils-r1
DESCRIPTION="A text based livejournal client"
HOMEPAGE="http://ljcharm.sourceforge.net/"
SRC_URI="mirror://sourceforge/ljcharm/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~sparc ~x86"
IUSE=""
DEPEND="dev-python/feedparser[$PYTHON_USEDEP]"
DOCS=( CHANGES.charm sample.charmrc README.charm )
HTML_DOCS=( charm.html )
pkg_setup() {
python-single-r1_pkg_setup
}
python_prepare_all() {
distutils-r1_python_prepare_all
sed -e 's/("share\/doc\/charm", .*),/\\/' -i setup.py || die "sed failed"
}
pkg_postinst() {
elog "You need to create a ~/.charmrc before running charm."
elog "Read 'man charmrc' for more information."
}
|