blob: 7ca793b2a1563920922555893ece3642435be0da (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/emelfm2/emelfm2-0.6.2.ebuild,v 1.1 2009/07/21 08:55:26 ssuominen Exp $
EAPI=2
inherit eutils multilib toolchain-funcs
DESCRIPTION="A file manager that implements the popular two-pane design"
HOMEPAGE="http://emelfm2.net"
SRC_URI="http://${PN}.net/rel/${P}.tar.bz2"
LICENSE="GPL-3 LGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="acl fam gimp hal kernel_linux nls spell"
RDEPEND=">=x11-libs/gtk+-2.12:2
acl? ( sys-apps/acl )
!kernel_linux? ( fam? ( virtual/fam ) )
gimp? ( media-gfx/gimp )
hal? ( sys-apps/hal
dev-libs/dbus-glib )
spell? ( app-text/gtkspell )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
nls? ( sys-devel/gettext )"
pkg_setup() {
myconf="DOCS_VERSION=1 WITH_TRANSPARENCY=1 USE_LATEST=1 STRIP=0"
use hal && myconf="${myconf} WITH_HAL=1"
use gimp && myconf="${myconf} WITH_THUMBS=1"
use acl && myconf="${myconf} WITH_ACL=1"
use kernel_linux && myconf="${myconf} WITH_KERNELFAM=1 USE_INOTIFY=1"
use spell && myconf="${myconf} EDITOR_SPELLCHECK=1"
use nls || myconf="${myconf} I18N=0"
if ! use kernel_linux && use fam; then
if has_version "app-admin/gamin"; then
myconf="${myconf} USE_GAMIN=1"
else
myconf="${myconf} USE_FAM=1"
fi
fi
}
src_compile() {
tc-export CC
emake LIB_DIR="/usr/$(get_libdir)" PREFIX="/usr" \
${myconf} || die "emake failed"
}
src_install() {
emake LIB_DIR="${D}/usr/$(get_libdir)" PREFIX="${D}/usr" \
${myconf} install || die "emake install failed"
newicon icons/${PN}_48.png ${PN}.png
prepalldocs
}
|