Changeset 481

Show
Ignore:
Timestamp:
04/07/06 03:52:36 (2 years ago)
Author:
common
Message:

library
- configure.ac
- Makefile.am

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • library/trunk/Makefile.am

    r473 r481  
    1 # nepenthes meta-Makefile 
     1# library meta-Makefile 
    22# Maximillian Dornseif 
    33# $Id$ 
     
    55AUTOMAKE_OPTIONS = foreign 
    66 
    7 SUBDIRS = nepenthes-core modules  
     7SUBDIRS = library-core modules  
    88#tools 
    99 
    10 EXTRA_DIST = configure.ac CHANGES doc/README doc/README.VFS doc/logo-shaded.svg doc/nepenthes.8 conf/nepenthes.conf.dist 
     10EXTRA_DIST = configure.ac CHANGES doc/README doc/README.VFS doc/logo-shaded.svg doc/library.8 conf/library.conf.dist 
    1111 
    1212docdir = $(prefix)/share/doc 
    1313doc_DATA = doc/README doc/README.VFS doc/logo-shaded.svg 
    1414 
    15 #sysconf_DATA = conf/nepenthes.conf.dist 
     15#sysconf_DATA = conf/library.conf.dist 
    1616 
    1717AM_CXXFLAGS = '' 
     
    2525#endifdef 
    2626 
    27 # $(INSTALL_DATA) $(srcdir)/conf/nepenthes.conf.dist $(DESTDIR)$(sysconfdir)/nepenthes/nepenthes.conf.dist 
     27# $(INSTALL_DATA) $(srcdir)/conf/library.conf.dist $(DESTDIR)$(sysconfdir)/library/library.conf.dist 
    2828 
    2929install-data-local: 
    3030        $(mkinstalldirs) $(DESTDIR)$(sysconfdir) 
    31         $(mkinstalldirs) $(DESTDIR)$(sysconfdir)/nepenthes 
    32         $(INSTALL_DATA) $(srcdir)/conf/nepenthes.conf.dist $(DESTDIR)$(sysconfdir)/nepenthes/nepenthes.conf.dist; \ 
    33         if [ ! -e $(DESTDIR)$(sysconfdir)/nepenthes/nepenthes.conf ]; then \ 
    34                 $(INSTALL_DATA) $(srcdir)/conf/nepenthes.conf.dist $(DESTDIR)$(sysconfdir)/nepenthes/nepenthes.conf; \ 
     31        $(mkinstalldirs) $(DESTDIR)$(sysconfdir)/library 
     32        $(INSTALL_DATA) $(srcdir)/conf/library.conf.dist $(DESTDIR)$(sysconfdir)/library/library.conf.dist; \ 
     33        if [ ! -e $(DESTDIR)$(sysconfdir)/library/library.conf ]; then \ 
     34                $(INSTALL_DATA) $(srcdir)/conf/library.conf.dist $(DESTDIR)$(sysconfdir)/library/library.conf; \ 
    3535        fi       
    3636#       for src in `find modules -name '*.conf.dist'`; do \ 
    37 #               $(INSTALL_DATA) "$$src" $(DESTDIR)$(sysconfdir)/nepenthes ; \ 
     37#               $(INSTALL_DATA) "$$src" $(DESTDIR)$(sysconfdir)/library ; \ 
    3838#       done 
    3939        for src in `find modules -name '*.conf.dist'`; do \ 
    40                 dst="$(DESTDIR)$(sysconfdir)/nepenthes/`basename "$$src" | perl -npe 's/\.dist$$//'`" ; \ 
     40                dst="$(DESTDIR)$(sysconfdir)/library/`basename "$$src" | perl -npe 's/\.dist$$//'`" ; \ 
    4141                if [ ! -e "$$dst" ] ; then \ 
    4242                        $(INSTALL_DATA) "$$src" "$$dst" ; \ 
     
    4444        done 
    4545         
    46         $(mkinstalldirs) $(DESTDIR)$(mandir) 
    47         $(mkinstalldirs) $(DESTDIR)$(mandir)/man8 
    48         $(INSTALL_DATA) $(srcdir)/doc/nepenthes.8 $(DESTDIR)$(mandir)/man8/nepenthes.8; 
    49         $(mkinstalldirs) $(DESTDIR)$(localstatedir)/cache 
    50         $(mkinstalldirs) $(DESTDIR)$(localstatedir)/cache/nepenthes 
    51         $(mkinstalldirs) $(DESTDIR)$(localstatedir)/cache/nepenthes/geolocation 
    52         $(mkinstalldirs) $(DESTDIR)$(localstatedir)/cache/nepenthes/signatures 
    53  
    54         $(INSTALL_DATA) modules/shellcode-signatures/shellcode-signatures.sc $(DESTDIR)$(localstatedir)/cache/nepenthes/signatures 
    55          
    56         $(mkinstalldirs) $(DESTDIR)$(localstatedir)/spool 
    57         $(mkinstalldirs) $(DESTDIR)$(localstatedir)/spool/nepenthes 
    58         $(mkinstalldirs) $(DESTDIR)$(localstatedir)/spool/nepenthes/gotek 
    59         $(mkinstalldirs) $(DESTDIR)$(localstatedir)/log 
    60         $(mkinstalldirs) $(DESTDIR)$(localstatedir)/binaries 
    61         $(mkinstalldirs) $(DESTDIR)$(localstatedir)/hexdumps 
    62  
  • library/trunk/configure.ac

    r473 r481  
    77 
    88AC_PREREQ(2.59) 
    9 AC_INIT([nepenthes], [0.1.7], [dornseif@informatik.rwth-aachen.de]) 
    10 AM_INIT_AUTOMAKE([nepenthes], [0.1.7]) 
     9AC_INIT([library], [0.1], [dornseif@informatik.rwth-aachen.de]) 
     10AM_INIT_AUTOMAKE([library], [0.1]) 
    1111AC_REVISION([$Id$]) 
    1212 
    13 AC_PREFIX_DEFAULT(/opt/nepenthes
    14 AC_CONFIG_SRCDIR([nepenthes-core/include/Buffer.hpp]) 
     13AC_PREFIX_DEFAULT(/opt/library
     14AC_CONFIG_SRCDIR([library-core/include/Buffer.hpp]) 
    1515AM_CONFIG_HEADER([config.h]) 
    1616# AM_MAINTAINER_MODE 
     
    831831 
    832832AC_CONFIG_FILES([Makefile 
    833                  nepenthes-core/Makefile 
    834                  nepenthes-core/include/Makefile 
    835                  nepenthes-core/src/Makefile 
     833                 library-core/Makefile 
     834                 library-core/include/Makefile 
     835                 library-core/src/Makefile 
    836836                 modules/Makefile 
    837                  modules/download-creceive/Makefile 
    838                  modules/download-csend/Makefile 
    839                  modules/download-curl/Makefile 
    840                  modules/download-ftp/Makefile 
    841                  modules/download-link/Makefile 
    842                  modules/download-nepenthes/Makefile 
    843                  modules/download-tftp/Makefile 
    844                  modules/log-download/Makefile 
    845                  modules/log-irc/Makefile 
    846                  modules/module-portwatch/Makefile 
    847                  modules/submit-file/Makefile 
    848                  modules/submit-gotek/Makefile 
    849                  modules/submit-nepenthes/Makefile 
    850                  modules/submit-norman/Makefile 
    851                  modules/submit-xmlrpc/Makefile 
    852                  modules/shellcode-generic/Makefile 
    853                  modules/shellemu-winnt/Makefile 
    854                  modules/vuln-asn1/Makefile 
    855                  modules/vuln-bagle/Makefile 
    856                  modules/vuln-dcom/Makefile 
    857                  modules/vuln-iis/Makefile 
    858                  modules/vuln-kuang2/Makefile 
    859                  modules/vuln-lsass/Makefile 
    860                  modules/vuln-msmq/Makefile 
    861                  modules/vuln-mssql/Makefile 
    862                  modules/vuln-mydoom/Makefile 
    863                  modules/vuln-netbiosname/Makefile 
    864                  modules/vuln-netdde/Makefile 
    865                  modules/vuln-optix/Makefile 
    866                  modules/vuln-pnp/Makefile 
    867                  modules/vuln-sasserftpd/Makefile 
    868                  modules/vuln-sub7/Makefile 
    869                  modules/vuln-upnp/Makefile 
    870                  modules/vuln-veritas/Makefile 
    871                  modules/vuln-wins/Makefile 
    872                  modules/vuln-dameware/Makefile 
    873                  modules/vuln-ssh/Makefile 
    874                  modules/x-1/Makefile 
    875                  modules/x-2/Makefile 
    876                  modules/x-3/Makefile 
    877                  modules/x-4/Makefile 
    878                  modules/x-5/Makefile                  
    879                  modules/x-6/Makefile 
    880                  modules/x-7/Makefile 
    881                  modules/x-8/Makefile 
    882                  modules/geolocation-hostip/Makefile 
    883837                 modules/geolocation-geoip/Makefile 
    884                  modules/download-http/Makefile 
    885                  modules/upload-http/Makefile 
    886838                 modules/dnsresolve-adns/Makefile 
    887839                 modules/geolocation-ip2location/Makefile 
    888                  modules/log-surfnet/Makefile             
    889                  modules/vuln-msdtc/Makefile 
    890                  modules/download-rcp/Makefile 
    891                  modules/vuln-ftpd/Makefile 
    892                  modules/log-prelude/Makefile 
    893                  modules/shellcode-signatures/Makefile            
     840                 modules/x-echo/Makefile 
     841                 modules/sqlhandler-postgres/Makefile 
     842                 modules/service-gotek/Makefile 
    894843                 ]) 
    895844#                modules/log-prelude/Makefile