diff --git a/srcpkgs/lsof/template b/srcpkgs/lsof/template index f6e0704c2b..6be1407f9a 100644 --- a/srcpkgs/lsof/template +++ b/srcpkgs/lsof/template @@ -1,13 +1,13 @@ # Template file for 'lsof' pkgname=lsof -version=4.83 +version=4.84 wrksrc=lsof_${version} #build_wrksrc=lsof_${version}_src distfiles="ftp://sunsite.ualberta.ca/pub/Mirror/lsof/lsof_${version}.tar.bz2" build_style=custom-install short_desc="LiSt Open Files" maintainer="Juan RP " -checksum=b89f930bbe36b970e3cd070b9860ee701d8c7285ffedf2fbcec0e5fa3cb1f544 +checksum=20893a2d9b443fba519602f05692d5f72054a9f6dc1236bcb2616cc5330dc725 long_desc=" Lsof is a UNIX-specific tool. Its name stands for LiSt Open Files, and it does just that. It lists information about files that are open by the processes @@ -19,22 +19,20 @@ do_build() { # We have to do this dance because the real distfile is # included in the .tar.bz2 archive. - tar xf ${wrksrc}/lsof_${version}_src.tar \ - -C ${wrksrc} || return 1 - cd ${wrksrc}/lsof_${version}_src || return 1 + tar xf ${wrksrc}/lsof_${version}_src.tar -C ${wrksrc} + cd ${wrksrc}/lsof_${version}_src sed "s|/\* #define\tHASSECURITY\t1 \*/|#define\tHASSECURITY\t1|" \ -i dialects/linux/machine.h - ./Configure -n linux || return 1 - make ${makejobs} || return 1 + ./Configure -n linux + make ${makejobs} } do_install() { - cd ${wrksrc}/lsof_${version}_src || return 1 - install -D -m755 lsof \ - ${DESTDIR}/usr/sbin/lsof || return 1 + cd ${wrksrc}/lsof_${version}_src + install -D -m755 lsof ${DESTDIR}/usr/sbin/lsof install -D -m644 lsof.8 \ - ${DESTDIR}/usr/share/man/man8/lsof.8 || return 1 + ${DESTDIR}/usr/share/man/man8/lsof.8 install -D -m644 ${FILESDIR}/license.txt \ - ${DESTDIR}/usr/share/licenses/lsof_license.txt || return 1 + ${DESTDIR}/usr/share/licenses/lsof_license.txt }