blob: d72d0d7fa328bb05333c3b9e6fe8898a5b7d283e (
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-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=3
inherit autotools
DESCRIPTION="Nautilus Terminal is a terminal embedded in Nautilus"
HOMEPAGE="http://projects.flogisoft.com/nautilus-terminal/"
SRC_URI="http://projects.flogisoft.com/nautilus-terminal/download/${PN}_${PV}_src.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
RDEPEND=">=gnome-base/nautilus-3.2
>=dev-python/nautilus-python-1.0
x11-libs/vte[introspection]
"
DEPEND="${EPEND}"
S="${WORKDIR}/${PN}_${PV}_src"
src_install(){
./install.sh -p ${D}
}
|