blob: a2c2d1609b6b5d2872783f57f18c30c2dc7cc864 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/pmount/pmount-0.9.19.ebuild,v 1.10 2009/11/16 23:05:17 jer Exp $
EAPI="2"
inherit base eutils
DESCRIPTION="Policy based mounter that gives the ability to mount removable devices as a user"
HOMEPAGE="http://pmount.alioth.debian.org/"
SRC_URI="http://alioth.debian.org/frs/download.php/2867/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86"
IUSE="crypt hal"
RDEPEND="hal? ( >=sys-apps/dbus-0.33 >=sys-apps/hal-0.5.2 )
crypt? ( >=sys-fs/cryptsetup-1.0.5 )"
DEPEND="${RDEPEND}
>=dev-util/intltool-0.40"
PATCHES=(
"${FILESDIR}/${P}-ext4-support.patch"
"${FILESDIR}/${P}-testsuite-missing-dir.patch"
)
pkg_setup() {
enewgroup plugdev
}
src_configure() {
econf $(use_enable hal)
}
src_test() {
local testdir=${S}/tests/check_fstab
ln -s $testdir/a $testdir/b && ln -s $testdir/d $testdir/c && \
ln -s $testdir/c $testdir/e \
|| die "Unable to create fake symlinks required for testsuite"
emake check || die "testsuite failed"
}
src_install () {
# Must be run SETUID+SETGID, bug #250106
exeinto /usr/bin
exeopts -m 6710 -g plugdev
doexe src/pmount src/pumount || die "doexe failed"
dodoc AUTHORS ChangeLog TODO || die "dodoc failed"
doman man/pmount.1 man/pumount.1 || die "doman failed"
if use hal; then
doexe src/pmount-hal || die "doexe failed"
doman man/pmount-hal.1 || die "doman failed"
fi
insinto /etc
doins etc/pmount.allow || die "doins failed"
}
pkg_postinst() {
elog
elog "This package has been installed setuid and setgid."
elog "The permissions are as such that only users that belong to the plugdev"
elog "group are allowed to run this. But if a script run by root mounts a"
elog "device, members of the plugdev group will have access to it."
elog
elog "Please add your user to the plugdev group to be able to mount USB drives"
}
|