technicalpickles / g-gem

Tool for creating Gentoo ebuilds based on gems

This URL has Read+Write access

g-gem / ebuild.eruby
42c3bc1a » technicalpickles 2008-05-19 First working... something 1 # Copyright 1999-2008 Gentoo Foundation
2 # Distributed under the terms of the GNU General Public License v2
3 # $Header: /var/cvsroot/gentoo-x86/dev-util/git/git-1.5.5.1.ebuild,v 1.1 2008/04/24 00:20:53 robbat2 Exp $
4
5 inherit gems
6
7 DESCRIPTION="<%= spec.summary %>"
8 HOMEPAGE="<%= spec.homepage %>"
9 SRC_URI="<%= source %>/gems/<%= spec.name %>-<%= spec.version.version %>.gem"
10
11 LICENSE="MIT"
12 SLOT="0"
13 KEYWORDS="~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris"
14 IUSE=""
15 RESTRICT="test"
42c09c85 » technicalpickles 2008-05-19 Initial dependency support. 16
17 DEPEND="
18 <% spec.dependencies.each do |dependency| %>
19 dev-ruby/<%= dependency.name %>
20 <% end %>
21 "