~ubuntu-branches/ubuntu/trusty/vanessa-logger/trusty-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
INSTALL

vanessa_logger
Generic logging layer
Copyright (C) 2000-2008  Simon Horman <horms@verge.net.au>
----------------------------------------------------------------------

To install vanessa_logger 
-------------------------

tar zxf vanessa_logger-@VERSION@.tar.gz
cd vanessa_logger-@VERSION@
./autogen.sh [--prefix=/usr]
make
make install


To build RPMS
-------------

rpmbuild -ta vanessa_logger-@VERSION@.tar.gz

or

cd vanessa_logger-@VERSION@
./autogen.sh --prefix=/usr
make distcheck
rpmbuild -ta vanessa_logger-@VERSION@.tar.gz

N.B: If you have an older version of rpm you may need to use
     the "rpm" command instead of "rpmbuild". The command line
     options should be the same.


To Build Debian Packages
------------------------

cd vanessa_logger-@VERSION@
dpkg-buildpackage [-uc] [-us]


To install on Solaris 8
-----------------------

You may need to set some envirnoment variables to aid the build process.
The following worked for me using a bourne shell. Make apropriate
adjustments if you are using a C shell.

CPPFLAGS="-I/usr/local/include/"
export CPPFLAGS
LDFLAGS="-L/usr/local/lib/"
export LDFLAGS

cd vanessa_logger-@VERSION@
./configure [--prefix=/usr]
make
make install


To install on FreeBSD 4.2-RELEASE
---------------------------------

You may need to set some envirnoment variables to aid the build process.
The following worked for me using a bourne shell. Make apropriate
adjustments if you are using a C shell.

CPPFLAGS="-I/usr/local/include/"
export CPPFLAGS
LDFLAGS="-L/usr/local/lib/"
export LDFLAGS

The Makefiles that are generated may not work with make so use
gmake instead.

cd vanessa_logger-@VERSION@
./configure [--prefix=/usr]
gmake
gmake install