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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/bestcrypt/bestcrypt-1.5_p1.ebuild,v 1.1 2004/01/18 18:52:09 lostlogic Exp $
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"
KEYWORDS="~x86"
DEPEND="virtual/linux-sources"
S=${WORKDIR}/bcrypt
filter-flags -fforce-addr
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}
for file in `find . -type f -iname Makefile*`;do
sed -i -e "s:-O[0-9]:${CFLAGS}:" \
-e 's%KVER =.*%KVER = $(shell readlink /usr/src/linux|sed -e "s:linux-\\([0-9]\\+\\.[0-9]\\+\\)\\..*:\\1:")%' \
-e "s%uname -r%readlink /usr/src/linux|sed -e 's:linux-::'%" \
${file}
done
}
src_compile() {
emake -j1 || 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
}
|