lsof: import from packages 21/head
authorMaxim Storchak <m.storchak@gmail.com>
Sat, 14 Jun 2014 05:38:13 +0000 (08:38 +0300)
committerMaxim Storchak <m.storchak@gmail.com>
Sat, 14 Jun 2014 05:38:13 +0000 (08:38 +0300)
Signed-off-by: Maxim Storchak <m.storchak@gmail.com>
utils/lsof/Makefile [new file with mode: 0644]
utils/lsof/patches/001-lsof_makefile.patch [new file with mode: 0644]
utils/lsof/patches/002-lsof_noportmap.patch [new file with mode: 0644]
utils/lsof/patches/003-lsof_selinux.patch [new file with mode: 0644]
utils/lsof/patches/004-lsof_ccv.patch [new file with mode: 0644]

diff --git a/utils/lsof/Makefile b/utils/lsof/Makefile
new file mode 100644 (file)
index 0000000..f609f64
--- /dev/null
@@ -0,0 +1,55 @@
+#
+# Copyright (C) 2007-2014 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+
+include $(TOPDIR)/rules.mk
+include $(INCLUDE_DIR)/kernel.mk
+
+PKG_NAME:=lsof
+PKG_VERSION:=4.86
+PKG_RELEASE:=2
+
+PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION)+dfsg.orig.tar.gz
+PKG_SOURCE_URL:=http://ftp2.de.debian.org/debian/pool/main/l/lsof
+PKG_MD5SUM:=23420509564a897b76055f9d84d19068
+PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)+dfsg.orig
+PKG_MAINTAINER:=Maxim Storchak <m.storchak@gmail.com>
+
+include $(INCLUDE_DIR)/package.mk
+
+TARGET_LDFLAGS += $(LIBRPC)
+
+define Package/lsof
+  SECTION:=utils
+  CATEGORY:=Utilities
+  DEPENDS:=$(LIBRPC_DEPENDS)
+  TITLE:=LiSt Open Files - a diagnostic tool
+  URL:=http://people.freebsd.org/~abe/
+endef
+
+define Build/Configure
+       cd $(PKG_BUILD_DIR); \
+               LINUX_CLIB="-DGLIBCV=2" \
+               LSOF_CC="$(TARGET_CC)" \
+               LSOF_INCLUDE="-I$(STAGING_DIR)/usr/include" \
+               LSOF_VSTR="$(LINUX_VERSION)" \
+               LSOF_CFGF="$(TARGET_CFLAGS)" \
+               LSOF_CFGL="$(TARGET_LDFLAGS)" \
+               LSOF_AR="$(TARGET_CROSS)ar cr" \
+               LSOF_RANLIB="$(TARGET_CROSS)ranlib" \
+               ./Configure -n linux
+endef
+
+define Build/Compile   
+       $(MAKE) -C $(PKG_BUILD_DIR)
+endef
+
+define Package/lsof/install    
+       $(INSTALL_DIR) $(1)/usr/bin
+       $(INSTALL_BIN) $(PKG_BUILD_DIR)/lsof $(1)/usr/bin
+endef
+
+$(eval $(call BuildPackage,lsof))
diff --git a/utils/lsof/patches/001-lsof_makefile.patch b/utils/lsof/patches/001-lsof_makefile.patch
new file mode 100644 (file)
index 0000000..eb2b735
--- /dev/null
@@ -0,0 +1,13 @@
+--- a/lib/Makefile.skel
++++ b/lib/Makefile.skel
+@@ -21,8 +21,8 @@ OBJ= ckkv.o cvfs.o dvch.o fino.o isfn.o
+ all:  ${LIB}
+ ${LIB}:       ${OBJ}
+-      ${AR}
+-      ${RANLIB}
++      ${AR} ${LIB} ${OBJ}
++      ${RANLIB} ${LIB}
+ clean:        FRC
+       rm -f ${LIB} ${OBJ} errs Makefile.bak a.out core
diff --git a/utils/lsof/patches/002-lsof_noportmap.patch b/utils/lsof/patches/002-lsof_noportmap.patch
new file mode 100644 (file)
index 0000000..d0e8889
--- /dev/null
@@ -0,0 +1,18 @@
+--- a/print.c
++++ b/print.c
+@@ -161,6 +161,7 @@ endnm(sz)
+ static void
+ fill_portmap()
+ {
++#if !defined __UCLIBC__ || (defined __UCLIBC__ && defined __UCLIBC_HAS_RPC__)
+       char buf[128], *cp, *nm;
+       CLIENT *c;
+       int h, port, pr;
+@@ -279,6 +280,7 @@ fill_portmap()
+           Pth[pr][h] = pt;
+       }
+       clnt_destroy(c);
++#endif
+ }
+ #endif        /* !defined(HASNORPC_H) */
diff --git a/utils/lsof/patches/003-lsof_selinux.patch b/utils/lsof/patches/003-lsof_selinux.patch
new file mode 100644 (file)
index 0000000..c74c1e3
--- /dev/null
@@ -0,0 +1,11 @@
+--- a/Configure
++++ b/Configure
+@@ -2806,7 +2806,7 @@ return(0); }
+       LSOF_TMP1=1
+       fi      # }
+     fi        # }
+-    if test $LSOF_TMP1 -eq 1  # {
++    if test 0 -eq 1   # {
+     then
+       LSOF_CFGF="$LSOF_CFGF -DHASSELINUX"
+       LSOF_CFGL="$LSOF_CFGL -lselinux"
diff --git a/utils/lsof/patches/004-lsof_ccv.patch b/utils/lsof/patches/004-lsof_ccv.patch
new file mode 100644 (file)
index 0000000..8f1867d
--- /dev/null
@@ -0,0 +1,12 @@
+--- a/Configure
++++ b/Configure
+@@ -2682,6 +2682,9 @@ LOCKF_OWNER4
+     if test "X$LSOF_CC" = "X" # {
+     then
+       LSOF_CC=cc
++    fi        # }
++    if test "X$LSOF_CCV" = "X"        # {
++    then
+       LSOF_CCV=`$LSOF_CC -v 2>&1 | sed -n 's/.*version \(.*\)/\1/p'`
+     fi        # }
+     if test "X$LINUX_CONF_CC" = "X"   # {