blob: 3d51c005dcdb91c671b5900fc5562297a783d86f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-filemagic/ruby-filemagic-0.1.1.ebuild,v 1.5 2007/07/11 05:23:08 mr_bones_ Exp $
inherit ruby
USE_RUBY="ruby16 ruby18 ruby19"
DESCRIPTION="Ruby binding to libmagic"
HOMEPAGE="http://grub.ath.cx/filemagic/"
SRC_URI="http://grub.ath.cx/filemagic/${P}.tar.gz"
LICENSE="Ruby"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~x86 ~x86-fbsd"
IUSE=""
DEPEND="virtual/ruby
sys-apps/file"
#RDEPEND="${DEPEND}"
src_compile() {
ruby extconf.rb || die
emake || die
}
src_install() {
ruby_einstall || die
dodoc filemagic.rd
}
|