summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Martins <rafaelmartins@gentoo.org>2010-11-05 23:32:31 +0000
committerRafael Martins <rafaelmartins@gentoo.org>2010-11-05 23:32:31 +0000
commit15e60f8bc3e848a70e4b54dcd71e935f09fe9949 (patch)
tree481cb3c8a3db8f833839869f37df7ea962563e11 /dev-lua/luadoc
parentVersion bump for Gnome 2.32. (diff)
downloadgentoo-2-15e60f8bc3e848a70e4b54dcd71e935f09fe9949.tar.gz
gentoo-2-15e60f8bc3e848a70e4b54dcd71e935f09fe9949.tar.bz2
gentoo-2-15e60f8bc3e848a70e4b54dcd71e935f09fe9949.zip
Moved from dev-util to dev-lua. Fixed luafilesystem dependency. Added myself to metadata.xml.
(Portage version: 2.2.0_alpha3/cvs/Linux x86_64, RepoMan options: --force)
Diffstat (limited to 'dev-lua/luadoc')
-rw-r--r--dev-lua/luadoc/ChangeLog33
-rw-r--r--dev-lua/luadoc/luadoc-3.0.1.ebuild36
-rw-r--r--dev-lua/luadoc/metadata.xml18
3 files changed, 87 insertions, 0 deletions
diff --git a/dev-lua/luadoc/ChangeLog b/dev-lua/luadoc/ChangeLog
new file mode 100644
index 000000000000..71d40ebc3b48
--- /dev/null
+++ b/dev-lua/luadoc/ChangeLog
@@ -0,0 +1,33 @@
+# ChangeLog for dev-lua/luadoc
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-lua/luadoc/ChangeLog,v 1.1 2010/11/05 23:32:31 rafaelmartins Exp $
+
+ 05 Nov 2010; Rafael G. Martins <rafaelmartins@gentoo.org>
+ +luadoc-3.0.1.ebuild, +metadata.xml:
+ Moved from dev-util to dev-lua. Fixed luafilesystem dependency.
+ Added myself to metadata.xml.
+
+ 20 Dec 2008; nixnut <nixnut@gentoo.org> luadoc-3.0.1.ebuild:
+ Stable on ppc wrt bug 250796
+
+ 17 Dec 2008; Markus Meier <maekke@gentoo.org> luadoc-3.0.1.ebuild:
+ amd64/x86 stable, bug #250796
+
+ 16 Dec 2008; Brent Baude <ranger@gentoo.org> luadoc-3.0.1.ebuild:
+ stable ppc64, bug 250796
+
+ 23 Sep 2008; Markus Rothe <corsair@gentoo.org> luadoc-3.0.1.ebuild:
+ Added ~ppc
+
+ 24 Aug 2008; Markus Rothe <corsair@gentoo.org> luadoc-3.0.1.ebuild:
+ Added ~ppc64; bug #234421
+
+ 14 Aug 2008; Alexis Ballier <aballier@gentoo.org> luadoc-3.0.1.ebuild:
+ keyword ~x86-fbsd
+
+*luadoc-3.0.1 (08 Aug 2008)
+
+ 08 Aug 2008; MATSUU Takuto <matsuu@gentoo.org> +metadata.xml,
+ +luadoc-3.0.1.ebuild:
+ Initial import.
+
diff --git a/dev-lua/luadoc/luadoc-3.0.1.ebuild b/dev-lua/luadoc/luadoc-3.0.1.ebuild
new file mode 100644
index 000000000000..d5a2e2e0ad05
--- /dev/null
+++ b/dev-lua/luadoc/luadoc-3.0.1.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-lua/luadoc/luadoc-3.0.1.ebuild,v 1.1 2010/11/05 23:32:31 rafaelmartins Exp $
+
+inherit multilib
+DESCRIPTION="LuaDoc is a documentation tool for Lua source code"
+HOMEPAGE="http://luadoc.luaforge.net/"
+SRC_URI="http://luaforge.net/frs/download.php/3185/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="amd64 ppc ppc64 x86 ~x86-fbsd"
+IUSE=""
+
+DEPEND=""
+RDEPEND=">=dev-lang/lua-5.1.3
+ dev-lua/luafilesystem"
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ sed -i \
+ -e "s|/usr/local|\$(DESTDIR)/usr|" \
+ -e "s|lib|$(get_libdir)|" \
+ -e "s|lua5.1|lua|" \
+ config || die
+
+ # lua-5.1.3
+ find . -name '*.lua' | xargs sed -i -e "s/gfind/gmatch/g" || die
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die
+ dodoc README
+ dohtml -r doc/us/*
+}
diff --git a/dev-lua/luadoc/metadata.xml b/dev-lua/luadoc/metadata.xml
new file mode 100644
index 000000000000..7db77c84e00d
--- /dev/null
+++ b/dev-lua/luadoc/metadata.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>no-herd</herd>
+ <maintainer>
+ <email>matsuu@gentoo.org</email>
+ </maintainer>
+ <maintainer>
+ <email>rafaelmartins@gentoo.org</email>
+ </maintainer>
+ <longdescription lang="en">
+ LuaDoc is a documentation generator tool for Lua source code.
+ It parses the declarations and documentation comments in a set of Lua
+ source files and produces a set of XHTML pages describing the commented
+ declarations and functions.
+ </longdescription>
+</pkgmetadata>
+