blob: 2e0760196689dca304cde62a8d6425688023dec0 (
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/udisks/udisks-1.0.3-r1.ebuild,v 1.5 2011/07/23 18:54:45 armin76 Exp $
EAPI=4
inherit eutils bash-completion linux-info
DESCRIPTION="Daemon providing interfaces to work with storage devices"
HOMEPAGE="http://www.freedesktop.org/wiki/Software/udisks"
SRC_URI="http://hal.freedesktop.org/releases/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm ~hppa ia64 ppc ppc64 sh sparc x86"
IUSE="debug doc nls remote-access"
COMMON_DEPEND="
|| ( >=sys-fs/udev-171[gudev] >=sys-fs/udev-147[extras] )
>=dev-libs/glib-2.16.1:2
>=sys-apps/dbus-1.4.0
>=dev-libs/dbus-glib-0.92
>=sys-auth/polkit-0.97
>=sys-block/parted-1.8.8[device-mapper]
>=sys-fs/lvm2-2.02.66
>=dev-libs/libatasmart-0.14
>=sys-apps/sg3_utils-1.27.20090411
!sys-apps/devicekit-disks"
RDEPEND="${COMMON_DEPEND}
virtual/eject
remote-access? ( net-dns/avahi )"
DEPEND="${COMMON_DEPEND}
app-text/docbook-xsl-stylesheets
dev-libs/libxslt
>=dev-util/intltool-0.40.0
dev-util/pkgconfig
doc? ( dev-util/gtk-doc
app-text/docbook-xml-dtd:4.1.2 )"
RESTRICT="test" # this would need running dbus and sudo available
pkg_setup() {
DOCS=( AUTHORS HACKING NEWS README )
if use amd64 || use x86; then
CONFIG_CHECK="~USB_SUSPEND ~!IDE"
linux-info_pkg_setup
fi
}
src_prepare() {
epatch \
"${FILESDIR}"/${PN}-1.0.2-ntfs-3g.patch \
"${FILESDIR}"/${PN}-1.0.3-mkfs-tempdir.patch
}
src_configure() {
econf \
--localstatedir="${EPREFIX}"/var \
--disable-static \
$(use_enable debug verbose-mode) \
--enable-man-pages \
$(use_enable doc gtk-doc) \
$(use_enable remote-access) \
$(use_enable nls) \
--with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html
}
src_install() {
default
rm -f "${ED}"/etc/profile.d/udisks-bash-completion.sh
dobashcompletion tools/udisks-bash-completion.sh ${PN}
find "${ED}" -name '*.la' -exec rm -f {} +
keepdir /media
rm -rf "${ED}"/var/run # See -mkfs-tempdir.patch
}
|