summaryrefslogtreecommitdiffstats
path: root/testing/virtualbox-additions-grsec/APKBUILD
blob: 5a97349f8ca8b47be6c8b5284b26bd8d3bb36a7c (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
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>

_flavor=grsec
_kpkg=linux-$_flavor
_kver=3.6.11
_kpkgrel=10

# when chaning _ver we *must* bump _mypkgrel
_ver=4.1.20
_mypkgrel=0
_name=virtualbox-additions

# verify the kernel version before entering chroot
_kapkbuild=../../linux-${_flavor}/APKBUILD
if [ -f $_kapkbuild ]; then
	. $_kapkbuild
	pkgname=$_name-$_flavor
	[ "$_kver" != "$pkgver" ] && die "please update _kver to $pkgver"
	[ "$_kpkgrel" != "$pkgrel" ] && die "please update _kpkgrel to $pkgrel"
fi

_kpkgver="$_kver-r$_kpkgrel"
_abi_release=${_kver}-${_flavor}

pkgname=${_name}-${_flavor}
pkgver=$_kver
pkgdesc="Virtual box addtions kernel modules for $_flavor "
arch="x86"
url='http://virtualbox.org'
license="GPL custom"
makedepends="linux-grsec-dev"
source="http://dev.gentoo.org/~polynomial-c/virtualbox/vbox-kernel-module-src-$_ver.tar.xz
	virtualbox-modules-4.1.4-pax-const.patch
	"

_builddir="$srcdir"/

prepare() {
	cd "$_builddir"
	local i
	for i in $source; do
		case $i in
		*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
		esac
	done
}

build() {
	cd "$_builddir"

	export KERN_DIR=/usr/src/linux-headers-${_abi_release}
	export GCC_SPECS=/usr/share/gcc/hardenednopie.specs
	make
}

package() {
	local module=
	cd "$_builddir"
	for module in *.ko; do
		install -D -m644 $module \
			"$pkgdir/lib/modules/${_abi_release}/misc/$module" \
			|| return 1
	done
}

md5sums="df055d44c71a96250131536497fe32f2  vbox-kernel-module-src-4.1.20.tar.xz
4bbbce6902722a7439f6fac4d17c6051  virtualbox-modules-4.1.4-pax-const.patch"