summaryrefslogtreecommitdiff
blob: 7326086d25e85f3c02441c2d826f7764ea44dfb1 (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
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI="2"
inherit distutils

DESCRIPTION="SLog - PyGTK based graphical client for LightLang"
HOMEPAGE="http://code.google.com/p/lightlang/"

if [[ "${PV}" =~ (_p)([0-9]+) ]] ; then
	inherit subversion
	SRC_URI=""
	MTSLPT_REV=${BASH_REMATCH[2]}
	ESVN_REPO_URI="http://lightlang.googlecode.com/svn/trunk/slog/@${MTSLPT_REV}"
else
	SRC_URI="http://lightlang.googlecode.com/files/${P}.tar.gz"
	S=${WORKDIR}/${PN}-${MY_PV}
fi

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""

DEPEND="dev-python/pygtk
	dev-python/gtkhtml-python
	dev-python/notify-python"
RDEPEND="${DEPEND}"

DOCS="ChangeLog TODO"