blob: 00ac37f2bd12e5bfbb50047ae3c7eb71a7c3c321 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2004 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.6 2004/02/22 15:49:26 brad_mssw Exp $
DESCRIPTION="Return the canonicalized absolute pathname"
HOMEPAGE="http://packages.debian.org/unstable/utils/realpath.html"
SRC_URI="mirror://debian/pool/main/d/dwww/dwww_${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~sparc ~mips ~ppc amd64"
S=${WORKDIR}/dwww-${PV}
src_compile() {
make LIBS='' VERSION=$PV realpath || die
}
src_install() {
dobin realpath
doman man/realpath.1
dodoc COPYING README TODO
}
|