blob: 4e5350345e608eee6184b693e634b780a3f4567b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/stow/stow-1.3.3.ebuild,v 1.26 2008/06/16 15:43:48 drac Exp $
DESCRIPTION="manage installation of software in /usr/local"
HOMEPAGE="http://www.gnu.org/software/stow/"
SRC_URI="mirror://gnu/stow/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc sparc x86"
IUSE=""
DEPEND="dev-lang/perl"
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
}
|