diff options
author | Agostino Sarubbo <ago@gentoo.org> | 2012-10-28 14:29:17 +0000 |
---|---|---|
committer | Agostino Sarubbo <ago@gentoo.org> | 2012-10-28 14:29:17 +0000 |
commit | 4e88fd0a5576de245ab5ddafc1bd0b9c5f23b862 (patch) | |
tree | 35a531be391ab6c4f1b7969b4a75113e664122ed /app-misc/glastree/glastree-1.04.ebuild | |
parent | Adding SELinux dependency on selinux-dovecot (diff) | |
download | gentoo-2-4e88fd0a5576de245ab5ddafc1bd0b9c5f23b862.tar.gz gentoo-2-4e88fd0a5576de245ab5ddafc1bd0b9c5f23b862.tar.bz2 gentoo-2-4e88fd0a5576de245ab5ddafc1bd0b9c5f23b862.zip |
eapi4 + ~amd64 keyword
(Portage version: 2.1.11.9/cvs/Linux x86_64)
Diffstat (limited to 'app-misc/glastree/glastree-1.04.ebuild')
-rw-r--r-- | app-misc/glastree/glastree-1.04.ebuild | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/app-misc/glastree/glastree-1.04.ebuild b/app-misc/glastree/glastree-1.04.ebuild index 1e18e0801529..010725175c60 100644 --- a/app-misc/glastree/glastree-1.04.ebuild +++ b/app-misc/glastree/glastree-1.04.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/glastree/glastree-1.04.ebuild,v 1.3 2006/10/28 10:58:17 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/glastree/glastree-1.04.ebuild,v 1.4 2012/10/28 14:29:17 ago Exp $ + +EAPI=4 inherit eutils @@ -10,18 +12,18 @@ SRC_URI="http://www.igmus.org/files/${P}.tar.gz" DEPEND="dev-lang/perl dev-perl/Date-Calc" SLOT="0" -KEYWORDS="ppc x86" +KEYWORDS="~amd64 ppc x86" IUSE="" LICENSE="public-domain" -src_unpack() { - unpack ${A} - cd "${S}" +src_prepare() { epatch "${FILESDIR}"/${PN}-posix-make.patch } +src_compile() { :; } + src_install() { dodir /usr/share/man/man1 - make INSTROOT="${D}"/usr INSTMAN=share/man install || die + emake INSTROOT="${D}"/usr INSTMAN=share/man install dodoc README CHANGES THANKS TODO } |