blob: f44a5397721d6709950c4704b969b2734ac9c088 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/cfs/cfs-1.4.1.17.ebuild,v 1.5 2008/12/17 00:15:51 halcy0n Exp $
inherit eutils versionator
MY_PV="$(get_version_component_range 1-3)"
DEB_PV="$(get_version_component_range 4)"
# This is a port of the Debian port of CFS which includes several
# useful patches. Many thanks to the Debian developers.
DESCRIPTION="Cryptographic Filesystem"
HOMEPAGE="http://packages.debian.org/stable/utils/cfs
http://www.crypto.com/software/"
SRC_URI="mirror://debian/pool/main/c/cfs/cfs_${MY_PV}.orig.tar.gz
mirror://debian/pool/main/c/cfs/cfs_${MY_PV}-${DEB_PV}.diff.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~ppc ~x86"
IUSE=""
DEPEND="net-fs/nfs-utils"
S=${WORKDIR}/${PN}-${MY_PV}.orig
# Originally from the common-lisp-common.eclass:
do-debian-credits() {
docinto debian
for i in copyright README.Debian changelog; do
# be silent, since all files are not always present
dodoc "${S}"/debian/${i} &>/dev/null || true
done
docinto .
}
cfsd-running() {
test -n "$(mount |grep '\(/var/cfs\|/var/lib/cfs/\.cfsfs\)')"
}
pkg_setup() {
if cfsd-running; then
eerror "It seems that the null directory or CFS root is currently in use."
eerror "You must shutdown CFS before merging this port or at least unmount"
eerror "the CFS root before using this port."
die "cfs is still running!"
fi
}
src_unpack() {
unpack ${A}
epatch cfs_${MY_PV}-${DEB_PV}.diff
cd "${S}"
sed -i 's/$(CC)/$(CC) $(LDFLAGS)/g' Makefile || die "sed failed"
}
src_compile() {
make cfs CC=$(tc-getCC) COPT="${CFLAGS} -DPROTOTYPES -g" || die "make failed!"
}
src_install() {
make install_cfs BINDIR="${D}"/usr/bin ETCDIR="${D}"/usr/sbin || \
die "make install failed!"
newconfd "${FILESDIR}"/cfsd.conf cfsd
# exeinto /var/lib/cfs
# doexe debian/cfs_*mount.sh
keepdir /var/run/cfs
keepdir /var/cfs
keepdir /var/lib/cfs/.cfsfs
chmod 0 "${D}"/var/lib/cfs/.cfsfs
doman *.[18]
newinitd "${FILESDIR}"/cfsd.init cfsd
do-debian-credits
dodoc LEVELS README* VERSION
dodoc "${FILESDIR}"/README.Gentoo
}
pkg_postinst() {
rm -f /var/lib/cfs/.cfsfs/.keep
einfo "Please read the Gentoo README in /usr/share/doc/${PF}/ for"
einfo "information on how to get started with CFS on Gentoo."
}
|