diff options
author | Deposite Pirate | 2018-09-16 18:48:36 +0200 |
---|---|---|
committer | Deposite Pirate | 2018-09-16 18:48:36 +0200 |
commit | d150a5f3e462fa7fe194a805a4aa0076f4d03ab9 (patch) | |
tree | ce5e44d69c5f3175bfdbd1e3717b52c5dcca5638 /system/lsof | |
parent | f29d3519ce073ec30f99754d93304324f7f26d65 (diff) |
Add ports.
Diffstat (limited to 'system/lsof')
-rw-r--r-- | system/lsof/lsof-4.87-license.patch.xz | bin | 0 -> 716 bytes | |||
-rwxr-xr-x | system/lsof/lsof.build | 58 |
2 files changed, 58 insertions, 0 deletions
diff --git a/system/lsof/lsof-4.87-license.patch.xz b/system/lsof/lsof-4.87-license.patch.xz Binary files differnew file mode 100644 index 0000000..5713b71 --- /dev/null +++ b/system/lsof/lsof-4.87-license.patch.xz diff --git a/system/lsof/lsof.build b/system/lsof/lsof.build new file mode 100755 index 0000000..dd57ce9 --- /dev/null +++ b/system/lsof/lsof.build @@ -0,0 +1,58 @@ +#!/bin/bash +# +# Maintainer: Deposite Pirate <ofni.sknuplatem@etaripd> + +source /usr/src/ports/Build/build.sh + +NAME=lsof +VERSION=4.87 +BUILD=1 + +# Description + +cat > ${PKG}/install/slack-desc <<EOF +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. Line +# up the first '|' above the ':' following the base package name, and the '|' +# on the right side marks the last column you can put a character in. You must +# make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':'. + +$(padd)|-----handy-ruler------------------------------------------------------| +${NAME}: lsof (list open files) +${NAME}: +${NAME}: Lsof is a Unix-specific tool. Its name stands for "LiSt Open Files", +${NAME}: and it does just that. It lists information about files that are open +${NAME}: by the processes running on the system. +${NAME}: +${NAME}: Victor A. Abell of Purdue University is the developer of lsof. +${NAME}: +${NAME}: Homepage: http://people.freebsd.org/~abe +${NAME}: +${NAME}: +EOF + +# Sources + +SRCNAME[0]=${NAME} +SRCVERS[0]=${VERSION} +SRCPACK[0]=ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/${SRCNAME[0]}_${SRCVERS[0]}.tar.bz2 +SRCROOT[0]=${SRCNAME[0]}_${SRCVERS[0]} + +build0() +{ +src.unpack ${SRCNAME[0]}_${SRCVERS[0]}_src.tar +( +cd ${SRCNAME[0]}_${SRCVERS[0]}_src +sed -i 's|/\* #define\tHASSECURITY\t1 \*/|#define\tHASSECURITY\t1|' dialects/linux/machine.h +./Configure -n linux +make ${JOBS} CDEF="${FLAGS}" +install.dir ${PKG}${SYS_DIR[sbin]} +install.bin lsof ${PKG}${SYS_DIR[sbin]} +install.dir ${PKG}${SYS_DIR[man]}/man8 +install.man lsof.8 ${PKG}${SYS_DIR[man]}/man8 +) +doc ${SRCNAME[0]}_${SRCVERS[0]}_src/00CREDITS +changelog ${SRCNAME[0]}_${SRCVERS[0]}_src/00DIST +license COPYING +} |