aboutsummaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: 66990fea2bc937b0b633ee84ab3ab539d4c06401 (plain)
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
# SNMP Sendmail Statistics Module -*- perl -*- 
# Copyright (C) 2015, 2016 Sergey Poznyakoff <gray@gnu.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

use strict;
use ExtUtils::MakeMaker;
use Module::Metadata;

WriteMakefile(
    'NAME'            => 'NetSNMP::Sendmail',
    'AUTHOR'          => 'Sergey Poznyakoff <gray@gnu.org>',
    'ABSTRACT'        => 'NetSNMP module for Sendmail statistics',
    'LICENSE'         => 'gpl_3',
    'FIRST_MAKEFILE'  => 'Makefile',
    'VERSION_FROM'    => 'sendmail.pl',
    'PM'              => {
	'Sendmail.pm' => '$(INST_LIBDIR)/Sendmail.pm'
    },
    'PREREQ_PM'       => { 'NetSNMP::OID' => 0, 
                           'NetSNMP::agent' => 0, 
                           'NetSNMP::ASN' => 0 },
    MIN_PERL_VERSION => 5.10.0,
    META_MERGE => {
	'meta-spec' => { version => 2 },
	resources => {
	    repository => {
		type => 'git',
		url => 'git://git.gnu.org.ua/netsnmp-sendmail.git',
		web => 'http://git.gnu.org.ua/cgit/netsnmp-sendmail.git/',
	    },
	    provides => Module::Metadata->provides(version => '2',
						   dir=>'$(INST_LIBDIR)')
		  
	}
    }
);

sub MY::postamble {
    return <<'_MAKE_';
NET_SNMP_MIBDIRS = `net-snmp-config --mibdirs`

Sendmail.pm: Sendmail.mib2c sendmail.pl SENDMAIL-STATS.txt
	MIBDIRS=.:${NET_SNMP_MIBDIRS} \
        MIBS="+SENDMAIL-STATS" \
         mib2c -c Sendmail.mib2c -f Sendmail.pm -S prologue=sendmail.pl SENDMAIL-STATS::sendmail

INSTALLMIB = $(PREFIX)/share/snmp/mibs
DESTINSTALLMIB = $(DESTDIR)$(INSTALLMIB)    
    
install:: install-mib

install-mib:
	$(PERLRUN) install-mib.pl SENDMAIL-STATS.txt $(DESTINSTALLMIB)    
_MAKE_
}
    

Return to:

Send suggestions and report system problems to the System administrator.