diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2003-06-10 20:41:45 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2003-06-10 20:41:45 +0000 |
commit | eacc7b4fdf55c2cb3d1feeb315d81864339776e6 (patch) | |
tree | 87c3aa94196fc3bdbb88ef83b9359e3be62a855b /app-admin/realpath | |
parent | initial import (diff) | |
download | historical-eacc7b4fdf55c2cb3d1feeb315d81864339776e6.tar.gz historical-eacc7b4fdf55c2cb3d1feeb315d81864339776e6.tar.bz2 historical-eacc7b4fdf55c2cb3d1feeb315d81864339776e6.zip |
initial import
Diffstat (limited to 'app-admin/realpath')
-rw-r--r-- | app-admin/realpath/Manifest | 5 | ||||
-rw-r--r-- | app-admin/realpath/files/digest-realpath-1.9.3 | 1 | ||||
-rw-r--r-- | app-admin/realpath/realpath-1.9.3.ebuild | 24 |
3 files changed, 27 insertions, 3 deletions
diff --git a/app-admin/realpath/Manifest b/app-admin/realpath/Manifest index f72c656f34e9..51c8ac21f19b 100644 --- a/app-admin/realpath/Manifest +++ b/app-admin/realpath/Manifest @@ -1,4 +1,3 @@ -MD5 125ee013081b112d56a1d15507d72ef2 ChangeLog 3674 -MD5 44c0b7b58b4e89bfaf63f1f4fc0eedb6 realpath-1.9.3.ebuild 475 -MD5 b249e408c219768bb47d2f57243ccbf8 realpath-1.9.3.ebuild~ 5822 +MD5 6fd9d8272e9fc89a2c6f6f753147f9cd ChangeLog 373 +MD5 59ea601455ea6f049f51822b3b8cc41b realpath-1.9.3.ebuild 661 MD5 ad4ce8882c1d563642c89dcd344e6b4d files/digest-realpath-1.9.3 61 diff --git a/app-admin/realpath/files/digest-realpath-1.9.3 b/app-admin/realpath/files/digest-realpath-1.9.3 new file mode 100644 index 000000000000..3caf07d9526b --- /dev/null +++ b/app-admin/realpath/files/digest-realpath-1.9.3 @@ -0,0 +1 @@ +MD5 86afe331e9a62a7b234395fc0512a91c dwww_1.9.3.tar.gz 92058 diff --git a/app-admin/realpath/realpath-1.9.3.ebuild b/app-admin/realpath/realpath-1.9.3.ebuild new file mode 100644 index 000000000000..6e9032f487ac --- /dev/null +++ b/app-admin/realpath/realpath-1.9.3.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/realpath/realpath-1.9.3.ebuild,v 1.1 2003/06/10 20:41:38 mkennedy Exp $ + +DESCRIPTION="Return the canonicalized absolute pathname" +HOMEPAGE="http://packages.debian.org/unstable/utils/realpath.html" +SRC_URI="http://ftp.debian.org/debian/pool/main/d/dwww/dwww_${PV}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +DEPEND="" + +S=${WORKDIR}/dwww-${PV} + +src_compile() { + make LIBS='' VERSION=$PV realpath || die +} + +src_install() { + dobin realpath + doman man/realpath.1 + dodoc COPYING README TODO +} |