blob: c998f13753c4ef072807a054a38c200ec37ba2ef (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdg-utils/xdg-utils-1.0.2-r2.ebuild,v 1.1 2008/05/12 10:44:59 drac Exp $
inherit eutils
DESCRIPTION="Portland utils for cross-platform/cross-toolkit/cross-desktop interoperability"
HOMEPAGE="http://portland.freedesktop.org/wiki"
SRC_URI="http://portland.freedesktop.org/download/${P}.tgz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="doc"
RESTRICT="test"
RDEPEND="x11-apps/xprop
x11-misc/shared-mime-info"
PDEPEND="dev-util/desktop-file-utils"
DEPEND=""
src_unpack() {
unpack ${A}
cd "${S}"/scripts
epatch "${FILESDIR}"/${P}-arb-comm-exec.patch \
"${FILESDIR}"/${P}-kdedirs.patch
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc ChangeLog README RELEASE_NOTES TODO
newdoc scripts/README README.scripts
use doc && dohtml -r scripts/html
}
pkg_postinst() {
elog "Install >=x11-libs/gtk+-2 if you need command gtk-update-icon-cache."
}
|