summaryrefslogtreecommitdiffstats
path: root/main/util-vserver/APKBUILD
blob: d2fd3937c57d9c741eb4c404023dfea257cb4e62 (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
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=util-vserver
pkgver=0.30.216_pre3034
_realver=${pkgver/_/-}
pkgrel=1
pkgdesc="Linux-VServer admin utilities"
url="http://www.nongnu.org/util-vserver/"
arch="all"
license="GPL"
install="$pkgname.post-install $pkgname.post-upgrade"
makedepends="iptables-dev e2fsprogs-dev beecrypt-dev autoconf automake
	pkgconfig libtool"
depends="bash make"

source="http://people.linux-vserver.org/~dhozac/t/uv-testing/util-vserver-$_realver.tar.bz2
	alpine.patch
	setup-vs-template
	setup-vs-guest
	"
subpackages="$pkgname-doc $pkgname-dev"

_builddir="$srcdir"/$pkgname-$_realver

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

build() {
	local i
	cd "$_builddir"
	./configure --prefix=/usr \
		--mandir=/usr/share/man \
		--sysconfdir=/etc \
		--with-initscripts=gentoo \
		--localstatedir=/var \
		|| return 1

	# use busybox ionice rather than util-linux
	sed -i -e 's:/usr/bin/ionice:/bin/ionice:' Makefile
	make || return 1
}

package() {
	cd "$_builddir"
	make -j1 DESTDIR="$pkgdir/" install install-distribution || return 1
	rm "$pkgdir"/usr/lib/*.la || return 1

	# obsolete and broken
	rm -f "$pkgdir"/usr/sbin/vserver-copy

	install -Dm755 ../setup-vs-template "$pkgdir"/usr/sbin/setup-vs-template
	install -Dm755 ../setup-vs-guest "$pkgdir"/usr/sbin/setup-vs-guest
}

md5sums="c0f708814ff48532802a5fb04514a86c  util-vserver-0.30.216-pre3034.tar.bz2
dd0a433de812dd167e7dbb36c215491e  alpine.patch
fae6626b724dec90a19924d68d355cd2  setup-vs-template
01d1490f82fe926894978c02ef707b3f  setup-vs-guest"