blob: 70dfe4b0c0333096c79e6131e593c5897c54f541 (
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
31
|
# 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.2 2006/05/10 18:23:50 killerfox 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="~hppa ~x86"
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
}
|