Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 190482
Collapse All | Expand All

(-)a/www-apps/wiliki/ChangeLog (+7 lines)
Line 0 Link Here
1
# ChangeLog for www-apps/wiliki
2
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
3
# $Header: $
4
5
*wiliki-0.6 (9 Jan 2009)
6
7
  Original ebuild idea submitted by Vadim Kuznetsov on bug #190482. 
(-)a/www-apps/wiliki/Manifest (+7 lines)
Line 0 Link Here
1
AUX 01-wiliki-0.6-gentoo.patch 426 RMD160 046622bee687eacf474044800731986c94f631c2 SHA1 25984a1e7fdc5169e9f7f4731e952c6f7bf559fb SHA256 67f584a529abb63d17810ea5833638ea4d543f50dafae212657174006acbc968
2
AUX 02-wiliki-0.6-gentoo.patch 740 RMD160 ca7f1c97009b79e68acd4619b4b6aef78ace9839 SHA1 71a47c61184fc452bd34853b713b03509df1c497 SHA256 bc754225170a473027d470d15ca7eecbd6b37c198fdd849fb3ae04b24825131a
3
AUX 03-wiliki-0.6-gentoo.patch 730 RMD160 3dc6cfddadd0441694633b8a4b91337505d128b0 SHA1 78f537cadcbc0154e9c229b1a6f9f0905d6dfc20 SHA256 3fc101163c69e084f081fdc64f6e2b21f78cb6c20c0695415795634b995d16fd
4
DIST WiLiKi-0.6.tgz 123724 RMD160 2a79c2db70ede5ffa9e45f82c828a0e0fe8e247c SHA1 59b4841b42dedc4ce41f7b175ffe12aced907a96 SHA256 a9cd8c1a40f76605098720198c780501bc38d3ebe4f670c92a84f184fffaa195
5
EBUILD wiliki-0.6.ebuild 1577 RMD160 b6a24048e8ba4197361b55e54d79adfbb931af55 SHA1 270388e9e283fc1c2b8bc260926ec6e7a1258ceb SHA256 7a3858bfeb5291aedb2213e3bd7af20d925ccdd4c365cd5e6357d64c0c145cda
6
MISC ChangeLog 211 RMD160 e1c2c529d12910e015d075207d30013485056e93 SHA1 f96a5e89466a06bd2810031039ea40cf42db7cda SHA256 33766c623ffc36f82bd60d6b02cd1372c86902541cc1eba9df8f155876f6bb36
7
MISC metadata.xml 521 RMD160 118cd4dcb4124185bf569037a0acaf264a213ea6 SHA1 dcef252e016ba9a82a28045bae9480159221fab9 SHA256 062c6a2d27bd99378b63a8b2de213928898043b3d2c7559e676b490aca55577c
(-)a/www-apps/wiliki/metadata.xml (+18 lines)
Line 0 Link Here
1
--- po/Makefile.in.orig	2008-01-31 21:38:35.000000000 -0500
Line 0 Link Here
1
--- src/wiliki.cgi.orig	2008-01-11 08:52:19.000000000 -0500
Line 0 Link Here
1
--- src/wiliki2.cgi.orig	2009-01-09 18:27:10.000000000 -0500
Line 0 Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
3
<pkgmetadata>
4
	<herd>scheme</herd>
5
	<longdescription>
6
	WiLiKi is a lightweight Wiki Engine written in Scheme.
7
8
	WiLiKi is yet another Wiki-clone suitable for intra-net collaborative work
9
	in multilingual environment. The features include multiple back-end
10
	databases, permission and version control, and easy access from other
11
	programs.
12
13
	http://practical-scheme.net/wiliki/
14
	</longdescription>
15
</pkgmetadata>
(-)a/www-apps/wiliki/wiliki-0.6.ebuild (-1 / +75 lines)
Line 0 Link Here
0
- 
1
# Copyright 1999-2008 Gentoo Foundation
2
# Distributed under the terms of the GNU General Public License v2
3
# $Header: /var/cvsroot/gentoo-x86/www-apps/twiki/twiki-4.2.4.ebuild,v 1.1 2008/12/28 21:09:26 wrobel Exp $
4
5
inherit webapp eutils
6
7
MY_PN="WiLiKi"
8
9
DESCRIPTION="WiLiKi is a lightweight Wiki engine written in Scheme."
10
HOMEPAGE="http://practical-scheme.net/wiliki/"
11
#HOMEPAGE=http://www.shiro.dreamhost.com/scheme/wiliki/"
12
SRC_URI="mirror://sourceforge/${PN}/${MY_PN}-${PV}.tgz"
13
14
LICENSE="BSD"
15
SLOT="0"
16
KEYWORDS="~x86"
17
IUSE=""
18
19
DEPEND="\
20
	dev-scheme/gauche
21
	cgi? (
22
		virtual/httpd-cgi
23
	)
24
	fastcgi? (
25
		virtual/httpd-fastcgi
26
	)"
27
RDEPEND="${DEPEND}"
28
29
need_httpd_cgi
30
31
WEBAPP_MANUAL_SLOT="yes"
32
33
S="${WORKDIR}"/"${MY_PN}"-"${PV}"
34
35
pkg_setup () {
36
	webapp_pkg_setup
37
}
38
39
src_unpack() {
40
	unpack ${A}
41
	cd "${S}"
42
	epatch "${FILESDIR}"/01-"${P}"-gentoo.patch
43
	epatch "${FILESDIR}"/02-"${P}"-gentoo.patch
44
	epatch "${FILESDIR}"/03-"${P}"-gentoo.patch
45
}
46
47
src_install() {
48
	webapp_src_preinst
49
	emake DESTDIR="${D}" install || die "Install failed"
50
51
	insinto "${MY_CGIBINDIR}"
52
	doins -r src/wiliki.cgi src/wiliki2.cgi 
53
	fperms +x "${MY_CGIBINDIR}"/wiliki.cgi
54
55
	insinto "${MY_HTDOCSDIR}"
56
	doins src/wiliki.css src/wiliki2.css
57
58
	dodir "${MY_HOSTROOTDIR}"/${PF}/data
59
	webapp_serverowned "${MY_HOSTROOTDIR}"/${PF}/data
60
61
	webapp_src_install
62
}
63
64
pkg_postinst() {
65
	ewarn
66
	ewarn "Quickstart:"
67
	ewarn "	modify wiliki.cgi to customize the WiLiKi's behavior"
68
	ewarn "	modify wiliki.css to customize the WiLiKi's look"
69
	ewarn
70
	ewarn " http://localhost/cgi-bin/wiliki.cgi"
71
	ewarn
72
73
	webapp_pkg_postinst
74
}
75
	

Return to bug 190482