summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Phillips <rphillips@gentoo.org>2003-01-31 23:11:10 +0000
committerRyan Phillips <rphillips@gentoo.org>2003-01-31 23:11:10 +0000
commit6b99a1aef80625c5424a3a2e1ae1a918b52cc89a (patch)
tree0bcd3668df4ca0ffa09a8e25aaa0e5e2812e3d8b /dev-ruby
parentversion bump. x86 masked (diff)
downloadgentoo-2-6b99a1aef80625c5424a3a2e1ae1a918b52cc89a.tar.gz
gentoo-2-6b99a1aef80625c5424a3a2e1ae1a918b52cc89a.tar.bz2
gentoo-2-6b99a1aef80625c5424a3a2e1ae1a918b52cc89a.zip
new package. x86 masked
Diffstat (limited to 'dev-ruby')
-rw-r--r--dev-ruby/yamlrb/ChangeLog8
-rw-r--r--dev-ruby/yamlrb/files/digest-yamlrb-0.471
-rw-r--r--dev-ruby/yamlrb/yamlrb-0.47.ebuild25
3 files changed, 34 insertions, 0 deletions
diff --git a/dev-ruby/yamlrb/ChangeLog b/dev-ruby/yamlrb/ChangeLog
new file mode 100644
index 000000000000..d7c0ce659c67
--- /dev/null
+++ b/dev-ruby/yamlrb/ChangeLog
@@ -0,0 +1,8 @@
+# ChangeLog for dev-ruby/yamlrb
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/yamlrb/ChangeLog,v 1.1 2003/01/31 23:11:10 rphillips Exp $
+
+*yamlrb-0.47 (31 Jan 2003)
+
+ 31 Jan 2003; Ryan Phillips <rphillips@gentoo.org> : new package. Submitted by Holden Glova.
+ Fixes #12833
diff --git a/dev-ruby/yamlrb/files/digest-yamlrb-0.47 b/dev-ruby/yamlrb/files/digest-yamlrb-0.47
new file mode 100644
index 000000000000..a90e2fc9161d
--- /dev/null
+++ b/dev-ruby/yamlrb/files/digest-yamlrb-0.47
@@ -0,0 +1 @@
+MD5 c5ecbe54830a0a097e05b0150f533d78 yamlrb-0.47.tar.gz 116865
diff --git a/dev-ruby/yamlrb/yamlrb-0.47.ebuild b/dev-ruby/yamlrb/yamlrb-0.47.ebuild
new file mode 100644
index 000000000000..3739504bc1b1
--- /dev/null
+++ b/dev-ruby/yamlrb/yamlrb-0.47.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/yamlrb/yamlrb-0.47.ebuild,v 1.1 2003/01/31 23:11:10 rphillips Exp $
+
+S=${WORKDIR}/${P}
+DESCRIPTION="Machine parsable data serialization format designed for human readability."
+SRC_URI="mirror://sourceforge/yaml4r/${P}.tar.gz"
+HOMEPAGE="http://yaml4r.sourceforge.net/"
+
+SLOT="0"
+LICENSE="GPL"
+KEYWORDS="~x86"
+
+DEPEND=">=dev-lang/ruby-1.6"
+
+src_install() {
+ INSTALL_DIR=`ruby -e 'require "rbconfig"; puts Config::CONFIG["sitelibdir"]'`
+ mkdir -p ${D}${INSTALL_DIR}
+
+ cp src/yaml.rb ${D}${INSTALL_DIR}/
+ cp src/okay.rb ${D}${INSTALL_DIR}/
+ cp -dr src/okay/ ${D}${INSTALL_DIR}/
+
+ dodoc [A-Z]*
+}