blob: 92fdbf82c48cbaee537c5babbfc22adb461061b5 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mate-extra/mate-file-manager-open-terminal/mate-file-manager-open-terminal-1.6.0.ebuild,v 1.1 2014/03/17 22:17:55 tomwij Exp $
EAPI="5"
GCONF_DEBUG="no"
GNOME2_LA_PUNT="yes"
inherit autotools gnome2 versionator
MATE_BRANCH="$(get_version_component_range 1-2)"
SRC_URI="http://pub.mate-desktop.org/releases/${MATE_BRANCH}/${P}.tar.xz"
DESCRIPTION="Caja plugin for opening terminals"
HOMEPAGE="http://mate-desktop.org"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND=">=dev-libs/glib-2.4:2
>=mate-base/mate-desktop-1.6:0
>=mate-base/mate-file-manager-1.6:0
virtual/libintl:0
x11-libs/gtk+:2"
DEPEND="${RDEPEND}
sys-devel/gettext:*
>=dev-util/intltool-0.18:*
virtual/pkgconfig:*"
src_prepare() {
# Tarball has no proper build system, should be fixed on next release.
eautoreconf
gnome2_src_prepare
}
DOCS="AUTHORS ChangeLog NEWS README TODO"
|