diff options
author | he <he> | 2014-08-05 12:25:13 +0000 |
---|---|---|
committer | he <he> | 2014-08-05 12:25:13 +0000 |
commit | cc8ef6c2f43a25145e4195374fc1bad1e71d5006 (patch) | |
tree | 6e3bef3a41183575957d39673442c4f5433d8b02 /net | |
parent | f04db4efd1ed44d1f2d9f4eb6c739e31796b4818 (diff) | |
download | pkgsrc-cc8ef6c2f43a25145e4195374fc1bad1e71d5006.tar.gz |
Factor out some common settings so they can be shared
with the newly added net/py-netsnmp package.
Diffstat (limited to 'net')
-rw-r--r-- | net/net-snmp/Makefile | 7 | ||||
-rw-r--r-- | net/net-snmp/Makefile.common | 10 |
2 files changed, 12 insertions, 5 deletions
diff --git a/net/net-snmp/Makefile b/net/net-snmp/Makefile index ca8dd4d1054..c6bd66b24d5 100644 --- a/net/net-snmp/Makefile +++ b/net/net-snmp/Makefile @@ -1,14 +1,11 @@ -# $NetBSD: Makefile,v 1.104 2014/05/29 23:37:05 wiz Exp $ +# $NetBSD: Makefile,v 1.105 2014/08/05 12:25:13 he Exp $ -DISTNAME= net-snmp-5.7.2.1 +.include "Makefile.common" PKGREVISION= 1 CATEGORIES= net -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=net-snmp/} MAINTAINER= adam@NetBSD.org -HOMEPAGE= http://www.net-snmp.org/ COMMENT= Extensible SNMP implementation -LICENSE= modified-bsd CONFLICTS= ucd-snmp-[0-9]* CONFLICTS+= nocol-[0-9]* # bin/snmpget bin/snmpwalk diff --git a/net/net-snmp/Makefile.common b/net/net-snmp/Makefile.common new file mode 100644 index 00000000000..b20df30c502 --- /dev/null +++ b/net/net-snmp/Makefile.common @@ -0,0 +1,10 @@ +# $NetBSD: Makefile.common,v 1.1 2014/08/05 12:25:13 he Exp $ + +# used by net/net-snmp/Makefile +# used by net/py-netsnmp/Makefile + +DISTNAME= net-snmp-5.7.2.1 +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=net-snmp/} + +HOMEPAGE= http://www.net-snmp.org/ +LICENSE= modified-bsd |