# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-util/perforce-cli/perforce-cli-2005.2.ebuild,v 1.3 2006/03/20 11:42:51 thomspre Exp $ DESCRIPTION="CLI Tools for a commercial version control system" HOMEPAGE="http://www.perforce.com/" URI_BASE="ftp://ftp.perforce.com/perforce/r05.2/" BIN_BASE="$URI_BASE/bin.linux24x86" DOC_BASE="$URI_BASE/doc" SRC_URI="${BIN_BASE}/p4" LICENSE="perforce.pdf" SLOT="0" KEYWORDS="~x86" IUSE="" RESTRICT="nomirror nostrip" DEPEND="virtual/libc" S=${WORKDIR} src_unpack() { # we have to copy all of the files from $DISTDIR, otherwise we get # sandbox violations when trying to install for x in p4; do cp ${DISTDIR}/$x . done } src_install() { dobin p4 || die }