diff options
author | Ned Ludd <solar@gentoo.org> | 2003-06-30 17:14:06 +0000 |
---|---|---|
committer | Ned Ludd <solar@gentoo.org> | 2003-06-30 17:14:06 +0000 |
commit | 397c35a455dcbe7933874b910e84e620b2244624 (patch) | |
tree | c4dc847f6ffbeed82391fb106a8cd378367febbb /sys-apps/lsof | |
parent | bump to latest version (diff) | |
download | gentoo-2-397c35a455dcbe7933874b910e84e620b2244624.tar.gz gentoo-2-397c35a455dcbe7933874b910e84e620b2244624.tar.bz2 gentoo-2-397c35a455dcbe7933874b910e84e620b2244624.zip |
bump to latest version
Diffstat (limited to 'sys-apps/lsof')
-rw-r--r-- | sys-apps/lsof/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/lsof/Manifest | 4 | ||||
-rw-r--r-- | sys-apps/lsof/files/digest-lsof-4.68 | 1 | ||||
-rw-r--r-- | sys-apps/lsof/lsof-4.68.ebuild | 56 |
4 files changed, 65 insertions, 3 deletions
diff --git a/sys-apps/lsof/ChangeLog b/sys-apps/lsof/ChangeLog index 4450e1e3af12..21e710fd1ef2 100644 --- a/sys-apps/lsof/ChangeLog +++ b/sys-apps/lsof/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/lsof # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/lsof/ChangeLog,v 1.12 2003/06/24 14:30:21 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/lsof/ChangeLog,v 1.13 2003/06/30 17:13:58 solar Exp $ + +*lsof-4.68 (30 Jun 2003) + + 30 Jun 2003; Ned Ludd <solar@gentoo.org> lsof-4.68.ebuild: + bump to latest version 24 Jun 2003; Aron Griffis <agriffis@gentoo.org> lsof-4.67.ebuild: Mark stable on alpha diff --git a/sys-apps/lsof/Manifest b/sys-apps/lsof/Manifest index 34e5f25467bd..86efdf155f8a 100644 --- a/sys-apps/lsof/Manifest +++ b/sys-apps/lsof/Manifest @@ -1,7 +1,7 @@ -MD5 79d68657cfc1a742a11df774ac468aec ChangeLog 1817 MD5 304841f2ec130658ec39f5a400a18082 lsof-4.64.ebuild 1540 MD5 eb72c8f3844ef2a0ee82bd9477493624 lsof-4.67.ebuild 1552 -MD5 eb72c8f3844ef2a0ee82bd9477493624 lsof-4.68.ebuild 1552 +MD5 e2d7747d66abc7089283da0229d19d6d lsof-4.68.ebuild 1549 +MD5 a4100db47433cd942077d997f64d5c91 ChangeLog 1927 MD5 ce8b6000c8273dd5481bc4f4fcdd9ec2 files/digest-lsof-4.68 61 MD5 8d9d90e05e24a5ffaf927bb83670715a files/digest-lsof-4.64 61 MD5 4da5c4c30e43d53ea46517baa6125d1a files/digest-lsof-4.67 61 diff --git a/sys-apps/lsof/files/digest-lsof-4.68 b/sys-apps/lsof/files/digest-lsof-4.68 new file mode 100644 index 000000000000..b10fc55dbc46 --- /dev/null +++ b/sys-apps/lsof/files/digest-lsof-4.68 @@ -0,0 +1 @@ +MD5 d7f92a5b2e30f2e028a5151199a5fcfb lsof_4.68.tar.gz 963862 diff --git a/sys-apps/lsof/lsof-4.68.ebuild b/sys-apps/lsof/lsof-4.68.ebuild new file mode 100644 index 000000000000..627c76f350d9 --- /dev/null +++ b/sys-apps/lsof/lsof-4.68.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/lsof/lsof-4.68.ebuild,v 1.1 2003/06/30 17:13:58 solar Exp $ + +IUSE="" +MY_P=${P/-/_} +S=${WORKDIR}/${MY_P}/${MY_P}_src +DESCRIPTION="Lists open files for running Unix processes" +SRC_URI="ftp://vic.cc.purdue.edu/pub/tools/unix/lsof/${MY_P}.tar.gz + ftp://ftp.cerias.purdue.edu/pub/tools/unix/sysutils/lsof/${MY_P}.tar.gz" +HOMEPAGE="ftp://vic.cc.purdue.edu/pub/tools/unix/lsof/README" + +DEPEND="virtual/glibc" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86 amd64 ~ppc ~sparc alpha ~hppa arm" + +#This pkg appears to be highly kernel-dependent. + +src_unpack() { + unpack ${A} + cd ${WORKDIR}/${MY_P} + tar xf ${MY_P}_src.tar || die +} + +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 +} |