~ubuntu-branches/ubuntu/trusty/maradns/trusty

« back to all changes in this revision

Viewing changes to build/install.locations

  • Committer: Package Import Robot
  • Author(s): Nicholas Bamber
  • Date: 2012-01-06 08:47:03 UTC
  • mfrom: (1.1.17) (10.1.12 experimental)
  • Revision ID: package-import@ubuntu.com-20120106084703-e3kw2c5a6djne2gw
Tags: 2.0.04-1
* Allowed watch file to pick up 2.x releases
* New upstream release
* Refreshed patches
* Added override to stop deletion of server/MaraDNS.c.orig
* Added patch to stop corruption of deadwood source code
* Added public domain stanza trying to give useful information about
  the public domain status (or otherwise) of certain files.
* Updated doc-base index file
* Split out documentation into separate package as it is written from
  an upstream point of view
* Added askmara-tcp tool to maradns-zoneserver package
* Added experimental maradns-deadwood package (Closes: #612229)
* Turned on compilation for IPv6 (Closes: #477787)

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
# If the directory that MAN1 points to does not exist
45
45
if [ ! -d $MAN1 ] ; then
46
46
        # Then try this location instead
47
 
        MAN1="/usr/local/share/man/man1"
 
47
        MAN1="$PREFIX/share/man/man1"
 
48
        if [ ! -d $MAN1 ] ; then
 
49
                MAN1="/usr/local/share/man/man1"
 
50
        fi
48
51
fi
49
52
# Do the same with the MAN5 and MAN8 directories
50
53
if [ ! -d $MAN5 ] ; then
51
 
        MAN5="/usr/local/share/man/man5"
 
54
        MAN5="$PREFIX/share/man/man5"
 
55
        if [ ! -d $MAN5 ] ; then
 
56
                MAN5="/usr/local/share/man/man5"
 
57
        fi
52
58
fi
53
59
if [ ! -d $MAN8 ] ; then
54
 
        MAN8="/usr/local/share/man/man8"
 
60
        MAN8="$PREFIX/share/man/man8"
 
61
        if [ ! -d $MAN8 ] ; then
 
62
                MAN8="/usr/local/share/man/man8"
 
63
        fi
55
64
fi
56
65