blob: c141f1b3d09eb15f4558cb9fc12c63628b7c755c (
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-2009 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.6 2009/07/14 17:41:06 graaff Exp $
inherit ruby
USE_RUBY="ruby18"
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
}
|