aboutsummaryrefslogtreecommitdiffstats
path: root/main/open-vm-tools/APKBUILD
blob: 866c3d5d6822694e7f9d2205110faeac0bb2026e (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
83
84
85
86
87
88
89
90
91
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=open-vm-tools
pkgver=2011.09.23
_pkgsubver=491607
pkgrel=2
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="$pkgname-gtk $pkgname-dev"
install="$pkgname.pre-install"
makedepends="procps-dev libdnet-dev icu-dev glib-dev pkgconfig bash
	libtirpc-dev rpcgen icu-dev automake autoconf
	gtk+-dev libxext-dev libxinerama-dev libxtst-dev gtkmm-dev
	libnotify-dev libxrandr-dev
	"
source="http://downloads.sourceforge.net/open-vm-tools/open-vm-tools-$pkgver-$_pkgsubver.tar.gz
	getloadavg-uclibc.patch
	codeset-uclibc.patch
	ecvt.patch
	iconv-uclibc.patch
	libm.patch
	open-vm-tools.initd
	procmgrposix.patch
	"

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

prepare() {
	cd "$_builddir"
	for i in "$srcdir"/*.patch; do
		[ -r "$i" ] || continue
		patch -p1 -i "$i" || return 1
	done

	sed -i -e 's/__unused1/st_atim.tv_nsec/g' \
		-e 's/__unused2/st_mtim.tv_nsec/g' \
		-e 's/__unused3/st_ctim.tv_nsec/g' \
		lib/file/filePosix.c lib/hgfsServer/hgfsServerLinux.c \
		|| return 1

	# 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() {
	export CFLAGS="$CLFAGS -Wno-unused-but-set-variable"
	cd "$_builddir"
	./configure --prefix=/usr \
		--sysconfdir=/etc \
		--disable-unity \
		--with-dnet \
		--with-icu \
		--with-procps \
		--with-x \
		--without-kernel-modules \
		--without-pam \
		|| return 1
	make || return 1
}

package() {
	cd "$_builddir"
	make install DESTDIR=$pkgdir || return 1
	install -Dm755 "$srcdir"/open-vm-tools.initd \
		"$pkgdir"/etc/init.d/open-vm-tools
	find "$pkgdir" -name '*.la' -delete
}

gtk() {
	pkgdesc="Xorg apps and plugins for open-vm-tools"
	mkdir -p "$subpkgdir"/usr/bin \
		"$subpkgdir"/usr/lib/open-vm-tools/plugins \
		"$subpkgdir"/etc/
	mv "$pkgdir"/usr/bin/vmware-user-suid-wrapper \
		"$subpkgdir"/usr/bin/
	mv "$pkgdir"/etc/xdg "$subpkgdir"/etc/
	mv "$pkgdir"/usr/lib/open-vm-tools/plugins/vmusr \
		"$subpkgdir"/usr/lib/open-vm-tools/plugins/
}

md5sums="599342eee8d531b35ca1cc948b61868f  open-vm-tools-2011.09.23-491607.tar.gz
49e2e394d0b567fa71fcd295e96bc1c8  getloadavg-uclibc.patch
82840b6bed002284b9bd2358707ee826  codeset-uclibc.patch
840e4d6ff3f53fc22bdedf4d64aabc91  ecvt.patch
89c7449323ddac4666b73a8467baf95a  iconv-uclibc.patch
7d02fc25aba5c248f3d98dac238f175b  libm.patch
905ef6a3bac87c9ba2e5d3897ca230e7  open-vm-tools.initd
7b833102a56009bdfc2fef2fb9ffa297  procmgrposix.patch"