blob: 133a4d1d56729aaa4704498ce4d8fd7417b05382 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/yamlrb/yamlrb-0.49.2.ebuild,v 1.1 2003/04/10 12:28:17 twp Exp $
DESCRIPTION="Machine parsable data serialization format designed for human readability"
HOMEPAGE="http://yaml4r.sourceforge.net/"
SRC_URI="mirror://sourceforge/yaml4r/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
DEPEND=">=dev-lang/ruby-1.6.0"
src_install() {
local sitelibdir=`ruby -r rbconfig -e 'print(Config::CONFIG["sitelibdir"])'`
insinto ${D}/${sitelibdir}
doins src/okay.rb src/yaml.rb src/yod.rb
insinto ${D}/${sitelibdir}/okay
doins src/okay/news.rb src/okay/rpc.rb
dodoc README CHANGELOG
}
|