void-packages/srcpkgs/ifenslave/template
Juan RP 76e97f745d ifenslave: split build stuff into do_build().
--HG--
extra : convert_revision : e86d33b783c57b9866479568be9bcc59ddf7207f
2010-01-16 03:13:07 +01:00

36 lines
1.2 KiB
Plaintext

# Template file for 'ifenslave'
pkgname=ifenslave
version=1.1.0
build_style=custom-install
short_desc="Attach and detach slave interfaces to a bonding device"
maintainer="Juan RP <xtraeme@gmail.com>"
checksum=8773541ce097fdc4c5b9e7da12a82dffbb30cd91f7bc169f52f05f93b7fc3060
long_desc="
This is a tool to attach and detach slave network interfaces to a bonding
device. A bonding device will act like a normal Ethernet network device to
the kernel, but will send out the packets via the slave devices using a
simple round-robin scheduler. This allows for simple load-balancing,
identical to channel bonding or trunking techniques used in switches.
The kernel must have support for bonding devices for ifenslave to be useful.
This package supports 2.6.x kernels and the most recent 2.4.x kernels."
nofetch=yes
noextract=yes
Add_dependency run glibc
do_build()
{
cd ${wrksrc} || return 1
gcc -Wall -Wstrict-prototypes ${FILESDIR}/ifenslave.c \
-o ifenslave || return 1
}
do_install()
{
install -D -m755 ${wrksrc}/ifenslave ${DESTDIR}/sbin/ifenslave
install -D -m644 ${FILESDIR}/ifenslave.8 \
${DESTDIR}/usr/share/man/man8/ifenslave.8 || return 1
}