summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Robbins <drobbins@gentoo.org>2002-04-25 06:51:27 +0000
committerDaniel Robbins <drobbins@gentoo.org>2002-04-25 06:51:27 +0000
commitf58c34d85e89285fa9f0ec17e1191faa24785a92 (patch)
tree96c1bca315ba3d845a04eb2bc408477d35601ad9 /sys-apps/lsof
parent--without-gnome does not work. So made gnome a dependency (diff)
downloadhistorical-f58c34d85e89285fa9f0ec17e1191faa24785a92.tar.gz
historical-f58c34d85e89285fa9f0ec17e1191faa24785a92.tar.bz2
historical-f58c34d85e89285fa9f0ec17e1191faa24785a92.zip
meep
Diffstat (limited to 'sys-apps/lsof')
-rw-r--r--sys-apps/lsof/lsof-4.56.ebuild48
-rw-r--r--sys-apps/lsof/lsof-4.57.ebuild54
-rw-r--r--sys-apps/lsof/lsof-4.60-r1.ebuild54
-rw-r--r--sys-apps/lsof/lsof-4.60.ebuild50
4 files changed, 0 insertions, 206 deletions
diff --git a/sys-apps/lsof/lsof-4.56.ebuild b/sys-apps/lsof/lsof-4.56.ebuild
deleted file mode 100644
index 1c1485330f30..000000000000
--- a/sys-apps/lsof/lsof-4.56.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2000 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# Author Grant Goodyear <g2boojum@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/lsof/lsof-4.56.ebuild,v 1.2 2001/06/29 05:46:23 drobbins Exp $
-
-#Not a good idea to override ${P}; changed to ${P2}
-P0=lsof_4.56
-#${A} autogenerated from SRC_URI, no need to define here
-S0=${WORKDIR}
-S=${WORKDIR}/${P0}
-DESCRIPTION="Lists open files for running Unix processes"
-SRC_URI="ftp://vic.cc.purdue.edu/pub/tools/unix/lsof/lsof_4.56_W.tar.gz ftp://ftp.cerias.purdue.edu/pub/tools/unix/sysutils/lsof/lsof_4.56_W.tar.gz"
-HOMEPAGE="http://"
-
-DEPEND="virtual/glibc virtual/kernel"
-
-#This pkg appears to be highly kernel-dependent.
-
-src_unpack() {
- unpack ${A}
- cd ${S0}
- try tar xvf ${P0}.tar
-}
-
-src_compile() {
- #interactive script: Enable HASSECURITY, WARNINGSTATE, and HASKERNIDCK
- #is there a way to avoid the "echo to a file + file read"?
- #Just piping in the results didn't seem to work.
- echo -e "y\ny\ny\nn\ny\ny\n" > junk
- #${T} is for temporary stuff. Don't create stray files just anywhere
- ./Configure linux < junk
- #simple Makefile hack to insert CFLAGS
- cp Makefile Makefile.orig
- sed -e "s/-DLINUXV/${CFLAGS} -DLINUXV/" Makefile.orig > Makefile
- try make all
-}
-
-src_install () {
- doman lsof.8
- #/usr/sbin is a good location -- drobbins
- dosbin lsof
- # .a libs not needed during boot so they go in /usr/lib -- drobbins
- dolib lib/liblsof.a
- dodoc
- insinto /usr/share/lsof/scripts
- doins scripts/*
-}
-
diff --git a/sys-apps/lsof/lsof-4.57.ebuild b/sys-apps/lsof/lsof-4.57.ebuild
deleted file mode 100644
index 4eae174dc275..000000000000
--- a/sys-apps/lsof/lsof-4.57.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2002 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# Maintainer: Grant Goodyear <g2boojum@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/lsof/lsof-4.57.ebuild,v 1.2 2002/01/01 22:35:51 azarah Exp $
-
-MY_P=${P/-/_}
-S=${WORKDIR}/${MY_P}
-DESCRIPTION="Lists open files for running Unix processes"
-SRC_URI="ftp://vic.cc.purdue.edu/pub/tools/unix/lsof/${MY_P}_W.tar.gz
- ftp://ftp.cerias.purdue.edu/pub/tools/unix/sysutils/lsof/${MY_P}_W.tar.gz"
-HOMEPAGE="http://"
-
-DEPEND="virtual/glibc virtual/kernel"
-
-#This pkg appears to be highly kernel-dependent.
-
-src_unpack() {
- unpack ${A}
- cd ${WORKDIR}
- tar xf ${MY_P}.tar || die
- cd ${S}
-}
-
-src_compile() {
- #interactive script: Enable HASSECURITY, WARNINGSTATE, and HASKERNIDCK
- #is there a way to avoid the "echo to a file + file read"?
- #Just piping in the results didn't seem to work.
- echo -e "y\ny\ny\nn\ny\ny\n" > ${T}/junk
- ./Configure linux < ${T}/junk
-
- #simple Makefile hack to insert CFLAGS
- cp Makefile Makefile.orig
- sed -e "s/-DLINUXV/${CFLAGS} -DLINUXV/" Makefile.orig > Makefile
-
- make all || die
-}
-
-src_install () {
- #/usr/sbin is a good location -- drobbins
- dosbin lsof
- # .a libs not needed during boot so they go in /usr/lib -- drobbins
- dolib lib/liblsof.a
- insinto /usr/share/lsof/scripts
- doins scripts/*
- doman lsof.8
- local x
- for x in 00*
- do
- newdoc ${x} ${x/00/}
- done
- cd ${D}/usr/share/doc/${PF}
- mv .README.FIRST.gz README.FIRST.gz
-}
-
diff --git a/sys-apps/lsof/lsof-4.60-r1.ebuild b/sys-apps/lsof/lsof-4.60-r1.ebuild
deleted file mode 100644
index 54a6c5b34975..000000000000
--- a/sys-apps/lsof/lsof-4.60-r1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2002 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# Maintainer: Grant Goodyear <g2boojum@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/lsof/lsof-4.60-r1.ebuild,v 1.1 2002/01/13 19:11:07 azarah Exp $
-
-MY_P=${P/-/_}
-S=${WORKDIR}/${MY_P}
-DESCRIPTION="Lists open files for running Unix processes"
-SRC_URI="ftp://vic.cc.purdue.edu/pub/tools/unix/lsof/${MY_P}_W.tar.gz
- ftp://ftp.cerias.purdue.edu/pub/tools/unix/sysutils/lsof/${MY_P}_W.tar.gz"
-HOMEPAGE="http://"
-
-DEPEND="virtual/glibc virtual/kernel"
-
-#This pkg appears to be highly kernel-dependent.
-
-src_unpack() {
- unpack ${A}
- cd ${WORKDIR}
- tar xf ${MY_P}.tar || die
- cd ${S}
-}
-
-src_compile() {
- #interactive script: Enable HASSECURITY, WARNINGSTATE, and HASKERNIDCK
- #is there a way to avoid the "echo to a file + file read"?
- #Just piping in the results didn't seem to work.
- echo -e "y\ny\ny\nn\ny\ny\n" > ${T}/junk
- ./Configure linux < ${T}/junk
-
- #simple Makefile hack to insert CFLAGS
- cp Makefile Makefile.orig
- sed -e "s/-DLINUXV/${CFLAGS} -DLINUXV/" Makefile.orig > Makefile
-
- make all || die
-}
-
-src_install () {
- #/usr/sbin is a good location -- drobbins
- dosbin lsof
- # .a libs not needed during boot so they go in /usr/lib -- drobbins
- dolib lib/liblsof.a
- insinto /usr/share/lsof/scripts
- doins scripts/*
- doman lsof.8
- local x
- for x in 00*
- do
- newdoc ${x} ${x/00/}
- done
- cd ${D}/usr/share/doc/${PF}
- mv .README.FIRST.gz README.FIRST.gz
-}
-
diff --git a/sys-apps/lsof/lsof-4.60.ebuild b/sys-apps/lsof/lsof-4.60.ebuild
deleted file mode 100644
index 07ebff1f2944..000000000000
--- a/sys-apps/lsof/lsof-4.60.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2000 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# Maintainer: System Team <system@gentoo.org>
-# Author: Grant Goodyear <g2boojum@gentoo.org>
-# Author: Karl Trygve Kalleberg <karltk@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/lsof/lsof-4.60.ebuild,v 1.1 2002/01/12 23:27:42 karltk Exp $
-
-#Not a good idea to override ${P}; changed to ${P2}
-P0=lsof_4.60
-#${A} autogenerated from SRC_URI, no need to define here
-S0=${WORKDIR}
-S=${WORKDIR}/${P0}
-DESCRIPTION="Lists open files for running Unix processes"
-SRC_URI="ftp://vic.cc.purdue.edu/pub/tools/unix/lsof/${P0}_W.tar.gz ftp://ftp.cerias.purdue.edu/pub/tools/unix/sysutils/lsof/${P0}_W.tar.gz"
-HOMEPAGE="http://"
-
-DEPEND="virtual/glibc virtual/kernel"
-
-#This pkg appears to be highly kernel-dependent.
-
-src_unpack() {
- unpack ${A}
- cd ${S0}
- try tar xvf ${P0}.tar
-}
-
-src_compile() {
- #interactive script: Enable HASSECURITY, WARNINGSTATE, and HASKERNIDCK
- #is there a way to avoid the "echo to a file + file read"?
- #Just piping in the results didn't seem to work.
- echo -e "y\ny\ny\nn\ny\ny\n" > junk
- #${T} is for temporary stuff. Don't create stray files just anywhere
- ./Configure linux < junk
- #simple Makefile hack to insert CFLAGS
- cp Makefile Makefile.orig
- sed -e "s/-DLINUXV/${CFLAGS} -DLINUXV/" Makefile.orig > Makefile
- try make all
-}
-
-src_install () {
- doman lsof.8
- #/usr/sbin is a good location -- drobbins
- dosbin lsof
- # .a libs not needed during boot so they go in /usr/lib -- drobbins
- dolib lib/liblsof.a
- dodoc
- insinto /usr/share/lsof/scripts
- doins scripts/*
-}
-