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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/bestcrypt/bestcrypt-1.5_p6.ebuild,v 1.1 2004/07/07 16:59:40 mholzer Exp $
inherit flag-o-matic eutils check-kernel
MY_PN="bcrypt"
DESCRIPTION="commercially licensed transparent filesystem encryption"
HOMEPAGE="http://www.jetico.com/"
SRC_URI="http://www.jetico.com/linux/BestCrypt-${PV/_p/-}.tar.gz"
LICENSE="bestcrypt"
SLOT="0"
IUSE=""
KEYWORDS="~x86"
DEPEND="virtual/linux-sources"
S=${WORKDIR}/bcrypt
pkg_setup() {
if [ -e /usr/src/linux/include/linux/modsetver.h ] &&
[ ! -e /usr/src/linux/include/linux/modversions.h ]; then
einfo "Setting modsetver->modversions symlink"
ln -s /usr/src/linux/include/linux/modsetver.h \
/usr/src/linux/include/linux/modversions.h
fi
}
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-makefile_fix.patch
}
src_compile() {
filter-flags -fforce-addr
emake -j1 EXTRA_CFLAGS="${CFLAGS}" EXTRA_CXXFLAGS="${CXXFLAGS}" || die
}
src_install() {
exeinto /etc/rc.d/init.d
doexe ${FILESDIR}/bcrypt
dodir \
/usr/bin \
/etc/init.d \
/etc/rc.d/rc{0,1,2,3,4,5,6}.d \
/etc/rc{0,1,2,3,4,5,6}.d \
/usr/share/man/man8 \
/lib/modules/${KV}/kernel/drivers/block
einstall MAN_PATH="/usr/share/man" \
root="${D}" \
MOD_PATH=/lib/modules/${KV}/kernel/drivers/block
exeinto /etc/init.d
newexe ${FILESDIR}/bcrypt2 bcrypt
rm -rf ${D}/etc/rc*.d
dodoc README LICENSE
}
|