blob: af6733e7c58d6cdb3ccb09e9c63e1de5ed99f3f9 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-fs/sfs/sfs-0.7.2.ebuild,v 1.17 2007/05/06 10:36:37 genone Exp $
inherit eutils
DESCRIPTION="Self-certifying File System client and server daemons"
HOMEPAGE="http://www.fs.net/"
SRC_URI="http://www.fs.net/sfs/@new-york.lcs.mit.edu,u83s4uk49nt8rmp4uwmt2exvz6d3cavh/pub/sfswww/dist/${P}.tar.gz
mirror://gentoo/${P}-gcc3.patch.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc x86"
IUSE="ssl"
DEPEND="virtual/libc
>=dev-libs/gmp-4.1
>=net-fs/nfs-utils-0.3.3
ssl? ( >=dev-libs/openssl-0.9.6 )"
RDEPEND="${DEPEND}
>=net-nds/portmap-5b-r6"
pkg_setup() {
# checking for NFS support *seems* like a good idea, but since
# nfs-utils doesn't do it, sfs won't either
# add the sfs user and group if necessary
enewgroup sfs
enewuser sfs "" "" "" sfs
}
src_unpack() {
unpack ${A}
# Temporary workaround so that it will compile. Remove this on
# the next version. See bug #22791
cd ${S}
sed -i~ 's/-Werror//g' configure
epatch ${WORKDIR}/${P}-gcc3.patch
}
src_compile() {
econf \
`use_with ssl openssl /usr` \
--with-gmp=/usr \
--with-gnuld \
--prefix=/ \
|| die "econf failed"
# won't parallel build w/o baby-sitting
emake -j1 || die
}
src_install() {
einstall prefix=${D}/ || die
insinto /etc/sfs/
doins ${FILESDIR}/sfsrwsd_config
dodoc AUTHORS ChangeLog NEWS \
README README.0.7-upgrade \
STANDARDS TODO
doinitd ${FILESDIR}/sfscd \
${FILESDIR}/sfssd
dosym /lib/${P}/newaid /bin/newaid
}
pkg_postinst() {
elog "Execute '/etc/init.d/sfscd start' to start the SFS client,"
elog " or 'rc-update add sfscd default' to add it to the"
elog " default runlevel."
elog
elog "See the SFS documentation for server configuration."
elog
elog "Both the client and server require kernel support"
elog " for NFS version 3 in order to operate properly."
elog
}
pkg_config() {
einfo "Generating SFS host key..."
sfskey gen -P /etc/sfs/sfs_host_key
}
|