blob: 8102daa3b89dd7441333796b64d0de5586f36569 (
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
80
81
82
83
84
85
86
87
88
89
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/captive/captive-1.1.7-r1.ebuild,v 1.5 2006/06/01 16:22:34 genstef Exp $
inherit eutils
DESCRIPTION="Captive uses binary Windows drivers for full NTFS r/w access."
HOMEPAGE="http://www.jankratochvil.net/project/captive/"
SRC_URI="http://www.jankratochvil.net/project/captive/dist/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 -*"
IUSE="debug gtk readline"
RDEPEND="sys-libs/zlib
>=sys-fs/fuse-2.4
readline? ( sys-libs/readline )
>=dev-libs/openssl-0.9.7c
>=dev-libs/libxml2-2.4.29
>=gnome-base/orbit-2.8.2
gnome-base/gconf
gnome-base/libbonobo
gnome-base/gnome-vfs
dev-libs/popt
dev-libs/glib
gtk? (
dev-libs/atk
sys-fs/ntfsprogs
gnome-base/libbonoboui
gnome-base/libgnomeui
media-libs/libpng
>x11-libs/gtk+-2.2
x11-libs/pango
)"
DEPEND="${RDEPEND}"
pkg_setup() {
einfo "Adding captive user and group"
enewgroup captive || die "enewgroup captive failed"
enewuser captive -1 -1 /dev/null captive || die "enewuser captive failed"
}
src_compile() {
# Addwrite to fix all sandbox problems, bug #133357 see also gnome2.eclass: bug #128289
addwrite /root/.gnome2_private /root/.gnome2 /root/.gconfd /root/.gconf
# disable some tests to save time ;)
econf $(use_enable debug bug-replay) \
$(use_with readline) \
$(use_enable gtk install-pkg) \
--enable-fuse \
--disable-glibtest --disable-orbittest \
--with-tmpdir=/tmp --localstatedir=/var || die "econf failed"
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodir /var/lib/captive
diropts -m1777
dodir /var/lib/captive/tmp
keepdir /var/lib/captive/tmp
rm -R ${D}/etc/rc.d
dodoc AUTHORS ChangeLog README TODO
}
pkg_postinst() {
einfo "Use /usr/sbin/captive-install-acquire to search for and"
einfo "install the needed drivers for captive NTFS."
ewarn "captive-install-acquire is only provided with USE=gtk"
einfo ""
einfo "Please use \"mount -t captive-ntfs /dev/hda1 /mnt/ntfs\" to mount ntfs partitions."
}
pkg_postrm() {
#einfo Removing captive user
#userdel captive
#einfo Removing captive group
#groupdel captive
einfo ""
einfo "You will have to remove captive user and group manually"
einfo ""
}
|