public
Description: Tool for creating Gentoo ebuilds based on gems
Homepage:
Clone URL: git://github.com/technicalpickles/g-gem.git
g-gem / ebuild.eruby
100644 23 lines (19 sloc) 0.616 kb
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-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $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 $
 
inherit gems
 
DESCRIPTION="<%= spec.summary %>"
HOMEPAGE="<%= spec.homepage %>"
SRC_URI="<%= uri %>"
 
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE=""
RESTRICT="test"
 
<%- unless spec.dependencies.empty? -%>
DEPEND="
  <%- spec.dependencies.each do |dependency| -%>
  <%= atom_of(dependency) %>
  <%- end -%>
"
<%- end -%>