* Avoid .svn directories when installing from svn checkout.

master
joey 2007-04-26 22:58:01 +00:00
parent 4fcc9d92ab
commit 80b0165ff8
3 changed files with 8 additions and 7 deletions

View File

@ -46,11 +46,9 @@ extra_clean:
$(MAKE) -C po clean
extra_install:
install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/templates
$(CP) -a templates/* $(DESTDIR)$(PREFIX)/share/ikiwiki/templates
install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/basewiki
$(CP) -aL basewiki/* $(DESTDIR)$(PREFIX)/share/ikiwiki/basewiki
install -d $(DESTDIR)$(PREFIX)/share/ikiwiki
find basewiki templates \( -type f -or -type l \) ! -regex '.*\.svn.*' \
-exec cp --parents -aL {} $(DESTDIR)$(PREFIX)/share/ikiwiki \;
install -d $(DESTDIR)$(PREFIX)/share/man/man1
install -m 644 ikiwiki.man $(DESTDIR)$(PREFIX)/share/man/man1/ikiwiki.1

3
debian/changelog vendored
View File

@ -19,8 +19,9 @@ ikiwiki (1.51) UNRELEASED; urgency=low
the footer border.
* Due to template changes and style sheet changes that depend on them,
wiki rebuilds are recommended on upgrade to this version.
* Avoid .svn directories when installing from svn checkout.
-- Joey Hess <joeyh@debian.org> Thu, 26 Apr 2007 15:48:03 -0400
-- Joey Hess <joeyh@debian.org> Thu, 26 Apr 2007 18:47:38 -0400
ikiwiki (1.50) unstable; urgency=low

View File

@ -23,4 +23,6 @@ permission denied errors when I tried to make a change and install again.
> The .svn directories can be avoided in the deb by setting
> DH_ALWAYS_EXCLUDE=.svn in the environment before building.
> I prefer to use that kind of hack exterior to a package rather than
> putting in RCS-specific exclude hacks. --[[Joey]]
> putting in RCS-specific exclude hacks.
>
> [[Done]] for the install from svn checkout case. --[[Joey]]