blob: 5161a78c257e26a6c64500672679a41403137efd (
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-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/worker/worker-2.17.1.ebuild,v 1.6 2009/02/04 21:23:03 armin76 Exp $
inherit eutils
DESCRIPTION="Worker Filemanager: Amiga Directory Opus 4 clone"
HOMEPAGE="http://www.boomerangsworld.de/worker/"
SRC_URI="http://www.boomerangsworld.de/worker/downloads/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ~hppa ia64 ppc sparc x86"
IUSE="avfs unicode"
DEPEND="x11-libs/libSM
avfs? ( sys-fs/avfs )"
src_compile() {
econf $(use_enable unicode utf-8) \
$(use_with avfs) || die "./configure failed"
emake || die "make failed"
}
src_install() {
einstall || die "make install failed"
doman man/worker.1
dodoc AUTHORS ChangeLog INSTALL NEWS README README_LARGEFILES THANKS
make_desktop_entry ${PN} Worker WorkerIcon "FileManager"
}
|