aboutsummaryrefslogtreecommitdiffstats
path: root/testing/open-vm-tools-grsec/APKBUILD
blob: b2aaeea31212860ff8d4907a0b6c82cd64e211c0 (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
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>

_flavor=grsec

# source the kernel version
if [ -f ../../main/linux-${_flavor}/APKBUILD ]; then
        . ../../main/linux-${_flavor}/APKBUILD
fi

_kernelver="$pkgver-r$pkgrel"
_abi_release=${pkgver}-${_flavor}
_kpkgrel=$pkgrel
_realname=open-vm-tools

pkgname=open-vm-tools-$_flavor
pkgver=2011.01.24
_pkgsubver=354108
pkgrel=0
pkgdesc="The Open Virtual Machine Tools are the open source implementation of VMware Tools."
url="http://open-vm-tools.sourceforge.net/"
arch="all"
license="LGPL"
subpackages=""
depends="linux-${_flavor}=${_kernelver}"
makedepends="pkgconfig bash rpcgen automake autoconf glib-dev
	procps-dev libdnet-dev icu-dev
	gettext-dev linux-${_flavor}-dev=${_kernelver} 
	"
source="http://downloads.sourceforge.net/open-vm-tools/open-vm-tools-$pkgver-$_pkgsubver.tar.gz
	"

_builddir="$srcdir/$_realname-$pkgver-$_pkgsubver"

prepare() {
	cd "$_builddir"
	for i in "$srcdir"/*.patch; do
		[ -r "$i" ] || continue
		patch -p1 -i "$i" || return 1
	done
	# workaround automake-1.10 issue
	# http://ramblingfoo.blogspot.com/2007/07/required-file-configrpath-not-found.html
	touch config/config.rpath
	aclocal -I m4 && autoconf && automake
}

build() {
	cd "$_builddir"
	./configure --prefix=/usr \
		--disable-unity \
		--without-pam \
		--disable-multimon \
		--without-x \
		--with-kernel-release="$_abi_release" \
		|| return 1
	cd "$_builddir"/modules
	make -j1 modules || return 1
}

package() {
	cd "$_builddir"
 	mkdir -p $pkgdir/lib/modules/$_abi_release/misc/
	cd "$_builddir"/modules
	for MOD in `find -type f -name '*.ko'`; do
		install -D -m644 $MOD "$pkgdir/lib/modules/$_abi_release/misc/"
	done
}

md5sums="b324efa55bb3f1198100cad838e9272b  open-vm-tools-2011.01.24-354108.tar.gz"