blob: 782579c447262de0ad23c80d3a041c2737ddea68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-updater/gnustep-updater-0.1.ebuild,v 1.1 2011/04/20 20:45:51 voyageur Exp $
EAPI=4
DESCRIPTION="Helper tool to upgrade Gentoo GNUstep installations"
HOMEPAGE="http://www.gentoo.org"
SRC_URI="http://dev.gentoo.org/~voyageur/distfiles/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris"
IUSE=""
DEPEND="app-shells/bash"
RDEPEND="${DEPEND}
>=gnustep-base/gnustep-make-2.6.0"
src_install() {
dosbin gnustep-updater
doman gnustep-updater.1
}
|