Gentoo Archives: gentoo-commits

From: "Rafael Martins (rafaelmartins)" <rafaelmartins@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lua/luadoc: metadata.xml ChangeLog luadoc-3.0.1.ebuild
Date: Fri, 05 Nov 2010 23:32:37
Message-Id: 20101105233231.E113420051@flycatcher.gentoo.org
1 rafaelmartins 10/11/05 23:32:31
2
3 Added: metadata.xml ChangeLog luadoc-3.0.1.ebuild
4 Log:
5 Moved from dev-util to dev-lua. Fixed luafilesystem dependency. Added myself to metadata.xml.
6
7 (Portage version: 2.2.0_alpha3/cvs/Linux x86_64, RepoMan options: --force)
8
9 Revision Changes Path
10 1.1 dev-lua/luadoc/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luadoc/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luadoc/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <herd>no-herd</herd>
21 <maintainer>
22 <email>matsuu@g.o</email>
23 </maintainer>
24 <maintainer>
25 <email>rafaelmartins@g.o</email>
26 </maintainer>
27 <longdescription lang="en">
28 LuaDoc is a documentation generator tool for Lua source code.
29 It parses the declarations and documentation comments in a set of Lua
30 source files and produces a set of XHTML pages describing the commented
31 declarations and functions.
32 </longdescription>
33 </pkgmetadata>
34
35
36
37
38 1.1 dev-lua/luadoc/ChangeLog
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luadoc/ChangeLog?rev=1.1&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luadoc/ChangeLog?rev=1.1&content-type=text/plain
42
43 Index: ChangeLog
44 ===================================================================
45 # ChangeLog for dev-lua/luadoc
46 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
47 # $Header: /var/cvsroot/gentoo-x86/dev-lua/luadoc/ChangeLog,v 1.1 2010/11/05 23:32:31 rafaelmartins Exp $
48
49 05 Nov 2010; Rafael G. Martins <rafaelmartins@g.o>
50 +luadoc-3.0.1.ebuild, +metadata.xml:
51 Moved from dev-util to dev-lua. Fixed luafilesystem dependency.
52 Added myself to metadata.xml.
53
54 20 Dec 2008; nixnut <nixnut@g.o> luadoc-3.0.1.ebuild:
55 Stable on ppc wrt bug 250796
56
57 17 Dec 2008; Markus Meier <maekke@g.o> luadoc-3.0.1.ebuild:
58 amd64/x86 stable, bug #250796
59
60 16 Dec 2008; Brent Baude <ranger@g.o> luadoc-3.0.1.ebuild:
61 stable ppc64, bug 250796
62
63 23 Sep 2008; Markus Rothe <corsair@g.o> luadoc-3.0.1.ebuild:
64 Added ~ppc
65
66 24 Aug 2008; Markus Rothe <corsair@g.o> luadoc-3.0.1.ebuild:
67 Added ~ppc64; bug #234421
68
69 14 Aug 2008; Alexis Ballier <aballier@g.o> luadoc-3.0.1.ebuild:
70 keyword ~x86-fbsd
71
72 *luadoc-3.0.1 (08 Aug 2008)
73
74 08 Aug 2008; MATSUU Takuto <matsuu@g.o> +metadata.xml,
75 +luadoc-3.0.1.ebuild:
76 Initial import.
77
78
79
80
81 1.1 dev-lua/luadoc/luadoc-3.0.1.ebuild
82
83 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luadoc/luadoc-3.0.1.ebuild?rev=1.1&view=markup
84 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luadoc/luadoc-3.0.1.ebuild?rev=1.1&content-type=text/plain
85
86 Index: luadoc-3.0.1.ebuild
87 ===================================================================
88 # Copyright 1999-2010 Gentoo Foundation
89 # Distributed under the terms of the GNU General Public License v2
90 # $Header: /var/cvsroot/gentoo-x86/dev-lua/luadoc/luadoc-3.0.1.ebuild,v 1.1 2010/11/05 23:32:31 rafaelmartins Exp $
91
92 inherit multilib
93 DESCRIPTION="LuaDoc is a documentation tool for Lua source code"
94 HOMEPAGE="http://luadoc.luaforge.net/"
95 SRC_URI="http://luaforge.net/frs/download.php/3185/${P}.tar.gz"
96
97 LICENSE="MIT"
98 SLOT="0"
99 KEYWORDS="amd64 ppc ppc64 x86 ~x86-fbsd"
100 IUSE=""
101
102 DEPEND=""
103 RDEPEND=">=dev-lang/lua-5.1.3
104 dev-lua/luafilesystem"
105
106 src_unpack() {
107 unpack ${A}
108 cd "${S}"
109 sed -i \
110 -e "s|/usr/local|\$(DESTDIR)/usr|" \
111 -e "s|lib|$(get_libdir)|" \
112 -e "s|lua5.1|lua|" \
113 config || die
114
115 # lua-5.1.3
116 find . -name '*.lua' | xargs sed -i -e "s/gfind/gmatch/g" || die
117 }
118
119 src_install() {
120 emake DESTDIR="${D}" install || die
121 dodoc README
122 dohtml -r doc/us/*
123 }