blob: b320d4fb0e269f8f7d1f940e23f2402f9b358e14 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-tcpwrap/ruby-tcpwrap-0.5.ebuild,v 1.6 2004/07/14 22:16:15 agriffis Exp $
DESCRIPTION="A TCP wrappers library for Ruby"
HOMEPAGE="http://raa.ruby-lang.org/list.rhtml?name=ruby-tcpwrap"
SRC_URI="http://shugo.net/archive/ruby-tcpwrap/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~hppa ~mips ~sparc x86"
IUSE=""
DEPEND="virtual/ruby
net-libs/libident
sys-apps/tcp-wrappers"
S=${WORKDIR}/${PN}
src_compile() {
ruby extconf.rb || die
emake || die
}
src_install() {
einstall
dodoc README*
insinto /usr/share/doc/${PF}/html
doins doc/*
}
|