Rakka/Resource/JavaScript.hs
js/packed.js
js/yuicompressor-*.jar
-repos/
\ No newline at end of file
+rc.d/*/rakka
+repos/
CONFIGURE_ARGS = --disable-optimization -fbuild-test-suite
-include cabal-package.mk
\ No newline at end of file
+include cabal-package.mk
+
+build-hook:
+ $(MAKE) -C js
, Option ['r'] ["rebuild-index"]
(NoArg OptRebuildIndex)
- "Rebuild the index database."
+ "Rebuild the index database. (Only for debug purposes)"
, Option ['h'] ["help"]
(NoArg OptHelp)
Stability: experimental
Homepage: http://rakka.cielonegro.org/
Category: Web
-Tested-With: GHC == 6.6.1
-Cabal-Version: >= 1.2
+Tested-With: GHC == 6.12.1
+Cabal-Version: >= 1.6
Build-Type: Custom
Data-Files:
defaultPages/Feed.xml
defaultPages/StyleSheet/CieloNegro/Moon.xml
defaultPages/StyleSheet/CieloNegro.xml
defaultPages/StyleSheet/Default.xml
+ rc.d/NetBSD/rakka.in
schemas/rakka-page-1.0.rng
Extra-Source-Files:
Rakka.buildinfo.in
js/base.js
js/base64.js
js/editPage.js
+ js/hashedParam.js
js/hexDump.js
- js/jquery-1.2.2.js
+ js/jquery-1.2.6.js
js/jquery-dom.js
js/localFile.js
js/login.js
js/parseuri.js
+ js/redirection.js
js/screen.js
js/search.js
+ js/systemConfig.js
js/uri.js
tests/RakkaUnitTest.hs
tests/WikiParserTest.hs
if test "x$prefix" = "xNONE"; then
prefix=$ac_default_prefix
fi
+if test "x$exec_prefix" = "xNONE"; then
+ exec_prefix="$prefix"
+fi
RAKKA_LOCALSTATEDIR=`eval echo "$localstatedir"`/rakka
AC_SUBST([RAKKA_LOCALSTATEDIR])
+RAKKA_BINDIR=`eval echo "$bindir"`
+AC_SUBST([RAKKA_BINDIR])
+
AC_CONFIG_FILES([
Rakka.buildinfo
+ rc.d/NetBSD/rakka
])
AC_OUTPUT
hexDump.js \
localFile.js \
login.js \
- redirection.js \
parseuri.js \
+ redirection.js \
screen.js \
search.js \
systemConfig.js \
--- /dev/null
+#!/bin/sh
+# -----------------------------------------------------
+# Rakka's rc script for NetBSD
+# -----------------------------------------------------
+# Put this file into your /etc/rc.d/
+# FreeBSD users should also be able to use this script.
+# -----------------------------------------------------
+
+# PROVIDE: rakka
+# REQUIRE: DAEMON
+
+. /etc/rc.subr
+
+name="rakka"
+rcvar=$name
+command="@RAKKA_BINDIR@/rakka"
+pidfile="@RAKKA_LOCALSTATEDIR@/pid"
+
+load_rc_config $name
+run_rc_command "$1"