blob: 46c6cd1d1ca5b4d9cbbb2783b13a6a5d90738898 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=3
DESCRIPTION="Simple terminal emulator based on vte library, extensible vie Lua"
HOMEPAGE="http://wiki.github.com/nonstop/termit"
SRC_URI="http://cloud.github.com/downloads/nonstop/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=">=dev-util/cmake-2.6.4-r3"
RDEPEND="x11-libs/vte
dev-lang/lua
>=x11-libs/gtk+-2.10"
DOCS="README ChangeLog session.example termit.example"
CMAKE_IN_SOURCE_BUILD="yes"
pkg_postinst() {
einfo
einfo "There is a example of configuration file in"
einfo " /usr/share/doc/termit/termit.example"
einfo
}
|