Mac OS X Snow Leopard Installing IkiWiki Tips
[ikiwiki] / doc / tips / ikiwiki_on_Mac_OS_X_Snow_Leopard.mdwn
1 These are some notes on installing ikiwiki on Mac OS X Snow Leopard. I have a three year old machine with a lot of stuff on it so it took quite a while, YMMV. 
2
3 The best part of installing ikiwiki was learning how to use git. I never used source control before but its pretty slick.
4
5 ## installing git:
6
7 curl http://kernel.org/pub/software/scm/git/git-(latest version).tar.gz -O
8 tar xzvf git-(latest version).tar.gz
9 cd git-(latest version)
10 ./configure --prefix=/usr/local
11 NO_MSGFMT=yes make prefix=/usr/local all
12 sudo make install
13
14 git config --global user.name "firstname lastname" 
15 git config --global user.email "email here"
16 git config --global color.ui "auto" 
17
18 curl http://www.kernel.org/pub/software/scm/git/git-manpages-1.7.3.1.tar.gz | sudo tar -xzC /opt/local/share/man/
19
20
21 ## installing ikiwiki:
22 I had terrible trouble installing ikiwiki. It turned out I had accidentally installed Perl through ports. Uninstalling that made everything install nicely.
23 I like to install test software in /opt. No particular reason. You could install to defaults.
24
25 perl Makefile.PL PREFIX=/Library/Perl/5.10.0 LIB=/Library/Perl/5.10.0
26 perl Makefile.PL  LIB=/Library/Perl/5.10.0
27 make
28 make install
29 sudo install -d /opt/ikiwiki
30 sudo install -m 0644 wikilist /opt/ikiwiki
31 sudo install -m 0644 auto.setup /opt/ikiwiki
32 sudo install -m 0644 auto-blog.setup /opt/ikiwiki
33
34 when you make ikiwiki it gives you a .git folder with the ikiwiki files. Stay out of this folder. You want to learn how to create a clone and make all your changes in the clone. When you push the changes ikiwiki will update. I moved a file in this folder by accident because I named my working file the same and I couldn't get into the setup page. I had apparently messed up my ikiwiki git repository. I did a pull into my clone, deleted the repository and webserver/ cgi folders and ran a new setup. Then I did a git clone and dragged all my old files into the new clone. Did the git dance and did git push. Then the angels sang.
35
36 ## using git from inside a git folder:
37 start with git clone, then learn to do the git dance like this.
38 git pull
39 make your changes to your clone
40 git commit -a -m "message here"
41 git push
42
43 When you can't get into the setup page or you get strange behavior after a setup update the Utilities > Console app is your friend.
44
45 ## installing gitweb
46
47 make GITWEB_PROJECTROOT="/opt/ikiwiki/" GITWEB_CSS="/gitweb/gitweb.css" GITWEB_LOGO="/gitweb/git-logo.png" GITWEB_FAVICON="/gitweb/git-favicon.png" bindir=/opt/local/bin
48
49 cp gitweb.cgi /Library/WebServer/CGI-Executables/gitweb/
50 sudo chmod 2755 gitweb.cgi
51
52 ## installing xapian:
53 download xapian and omega
54 I needed pcre: sudo ports install pcre
55
56 ./configure
57 make
58 sudo make install
59
60 ## installing omega:
61 I had a build error do to libiconv undefined symbols. sudo port deactivate libiconv took care of it. After install I had trouble with ikiwiki so I did a sudo port install libiconv and ikiwiki came back.
62 ./configure
63 make
64 sudo make install
65
66 ## installing Search::Xapian from CPAN
67 for some reason this wouldn't install using CPAN console so I went to CPAN online and downloaded the source.
68 perl Makefile.PL
69 make
70 make test
71 sudo make install
72 it installed without issue so I'm baffled why it didn't install from command line.
73
74 ## turning on search plugin:
75 I turned on the plugin from the setup page in ikiwiki but it gave an error when I went to search. Error "blah blah cgi-bin/omega/omega" does not exist or some such. I did a 
76 find / -name "omega" -print
77 and found the omega program in 
78 /usr/local/lib/xapian-omega/bin/omega. 
79 Then I went into the setup file and replaced the bad path, updated and badda-boom badda-bing.
80
81 Then I fell asleep.