void-packages/srcpkgs/lsof/template

34 lines
969 B
Text
Raw Normal View History

2010-05-20 02:06:21 +00:00
# Template file for 'lsof'
pkgname=lsof
2013-01-06 09:17:01 +00:00
version=4.87
2014-02-21 11:47:26 +00:00
revision=2
2010-05-20 02:06:21 +00:00
wrksrc=lsof_${version}
hostmakedepends="which perl"
2010-05-20 02:06:21 +00:00
short_desc="LiSt Open Files"
maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://people.freebsd.org/~abe/"
license="lsof"
2012-08-09 07:46:53 +00:00
distfiles="ftp://sunsite.ualberta.ca/pub/Mirror/lsof/lsof_${version}.tar.bz2"
2013-01-06 09:17:01 +00:00
checksum=dfdd3709d82bc79ccdf3e404b84aafa9aede5948642a824ecaefd0aac589da2c
2010-05-20 02:06:21 +00:00
2013-01-06 09:17:01 +00:00
post_extract() {
2010-05-20 02:06:21 +00:00
# We have to do this dance because the real distfile is
# included in the .tar.bz2 archive.
2011-01-16 00:40:53 +00:00
tar xf ${wrksrc}/lsof_${version}_src.tar -C ${wrksrc}
2013-01-06 09:17:01 +00:00
}
do_build() {
2011-01-16 00:40:53 +00:00
cd ${wrksrc}/lsof_${version}_src
2010-05-20 02:06:21 +00:00
sed "s|/\* #define\tHASSECURITY\t1 \*/|#define\tHASSECURITY\t1|" \
-i dialects/linux/machine.h
2013-01-06 09:17:01 +00:00
LSOF_CFGF="$CFLAGS" ./Configure -n linux
2013-06-20 08:06:04 +00:00
make CC=$CC ${makejobs}
2010-05-20 02:06:21 +00:00
}
2012-08-09 07:46:53 +00:00
do_install() {
2011-01-16 00:40:53 +00:00
cd ${wrksrc}/lsof_${version}_src
2012-08-09 07:46:53 +00:00
vinstall lsof 755 usr/sbin
vinstall lsof.8 644 usr/share/man/man8
vinstall ${FILESDIR}/license.txt 644 usr/share/licenses/lsof
2010-05-20 02:06:21 +00:00
}