~darkmoon/+junk/darkstat-pkg

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Rene Mayorga
  • Date: 2008-10-06 21:49:52 UTC
  • mfrom: (4.1.3 intrepid)
  • Revision ID: james.westby@ubuntu.com-20081006214952-rkg8moyd6izn7q5y
Tags: 3.0.708-2
* fix workaround to --import/--export at init script
  this prevent darkstat.db being replaced. Closes: #500070
* remove debconf note about the init script inclussion
* remove checks for 2.5-1 versions
* debian/copyright
  + Add 2-clause BSD license for tree.h and host_sort.c
    and remove the note for /usr/share/common-licenses/BSD
  + add conv.c, actc.c err.c, err.h, str.c and str.h copyright stanza
* debian/init.d
  + Set Conf variables to empty string before sourcing init.cfg
* debian/postint
  + only remove DB when version is lt 3.0.707-1
* debian/templates remove upgrade-note
* debian/rules
  + made build-stamp depends on configure-stamp not configure
  + made install-stamp depends on build-stamp not build
  + use DESTDIR instead prefix at install-stamp target
* debian/README.Debian - point to the correct section on the 
  reference to the manpage

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
sbin_PROGRAMS = darkstat
2
 
darkstat_LDADD = @LIBINTL@
3
 
 
4
 
localedir = $(datadir)/locale
5
 
INCLUDES = -I../intl -I$(top_srcdir)/intl
6
 
DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@
7
 
 
8
 
darkstat_SOURCES =      acct.h \
9
 
                        acct.c \
10
 
                        bignum.c \
11
 
                        bignum.h \
12
 
                        content.c \
13
 
                        content.h \
14
 
                        darkstat.c \
15
 
                        darkstat.h \
16
 
                        db.c \
17
 
                        db.h \
18
 
                        dns.c \
19
 
                        dns.h \
20
 
                        gettext.h \
21
 
                        gif.h \
22
 
                        graph.c \
23
 
                        graph.h \
24
 
                        host_db.c \
25
 
                        host_db.h \
26
 
                        port_db.c \
27
 
                        port_db.h \
28
 
                        proto.c \
29
 
                        proto.h \
30
 
                        spylog.c \
31
 
                        spylog.h \
32
 
                        www.c \
33
 
                        www.h
34
 
 
35
 
clean:
36
 
        rm -f darkstat.db darkstat.err darkstat.daylog darkstat.pid
37