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
commitefdaebe86455f8e7b5d661b6ac740dcc7071b426 (patch)
treec8efe9fe1d33f43332a8b0daf6cba9d6606f4e21 /dev-ruby
parentversion bump. x86 masked (diff)
downloadhistorical-efdaebe86455f8e7b5d661b6ac740dcc7071b426.tar.gz
historical-efdaebe86455f8e7b5d661b6ac740dcc7071b426.tar.bz2
historical-efdaebe86455f8e7b5d661b6ac740dcc7071b426.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]*
+}