aboutsummaryrefslogtreecommitdiff
path: root/java
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2014-03-10 11:50:26 +0000
committerRene Ladan <rene@FreeBSD.org>2014-03-10 11:50:26 +0000
commitc9a690d33c4a4230755b970dc91392f0bf295566 (patch)
tree0d454751847c078234b3c1d3ae06d71ba5fb6a7d /java
parent00cf29527cd22dbf4d0c0b0e4cf2da337210d280 (diff)
downloadports-c9a690d33c4a4230755b970dc91392f0bf295566.tar.gz
ports-c9a690d33c4a4230755b970dc91392f0bf295566.zip
Notes
Diffstat (limited to 'java')
-rw-r--r--java/Makefile1
-rw-r--r--java/drexelsnmp/Makefile34
-rw-r--r--java/drexelsnmp/distinfo2
-rw-r--r--java/drexelsnmp/pkg-descr13
4 files changed, 0 insertions, 50 deletions
diff --git a/java/Makefile b/java/Makefile
index 2d987c7e849a..37d753d5749b 100644
--- a/java/Makefile
+++ b/java/Makefile
@@ -15,7 +15,6 @@
SUBDIR += cos
SUBDIR += cryptix-jce
SUBDIR += dbvis
- SUBDIR += drexelsnmp
SUBDIR += eclipse
SUBDIR += eclipse-EPIC
SUBDIR += eclipse-RDT
diff --git a/java/drexelsnmp/Makefile b/java/drexelsnmp/Makefile
deleted file mode 100644
index a6c2484699d9..000000000000
--- a/java/drexelsnmp/Makefile
+++ /dev/null
@@ -1,34 +0,0 @@
-# Created by: Anders Nordby <anders@FreeBSD.org>
-# $FreeBSD$
-
-PORTNAME= drexelsnmp
-PORTVERSION= 1.4.2
-PORTREVISION= 1
-CATEGORIES= java devel net-mgmt
-MASTER_SITES= http://gicl.cs.drexel.edu/people/sevy/snmp/
-DISTNAME= source_${PORTVERSION}
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Java SNMP protocol implementation
-
-DEPRECATED= No more public distfiles
-EXPIRATION_DATE= 2014-03-10
-
-USE_JAVA= yes
-USE_ZIP= yes
-
-CLASSDIR= ${PREFIX}/share/java/classes
-NO_WRKSUBDIR= yes
-
-PLIST_FILES= share/java/classes/snmp.jar
-
-NO_STAGE= yes
-do-build:
- ${MKDIR} ${WRKSRC}/build_library
- (cd ${WRKSRC} && ${JAVAC} -sourcepath source -d build_library source/snmp/*.java && ${JAR} cvf snmp.jar -C build_library/ .)
-
-do-install:
- ${INSTALL} -d -o root -g wheel -m 0755 ${CLASSDIR}
- ${INSTALL_DATA} ${WRKSRC}/snmp.jar ${CLASSDIR}/
-
-.include <bsd.port.mk>
diff --git a/java/drexelsnmp/distinfo b/java/drexelsnmp/distinfo
deleted file mode 100644
index 131c245d9735..000000000000
--- a/java/drexelsnmp/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (source_1.4.2.zip) = 51cb5af1257b7329ddd700f2e1733d454c4accfe387bbead2fc7c9118e61d43a
-SIZE (source_1.4.2.zip) = 119744
diff --git a/java/drexelsnmp/pkg-descr b/java/drexelsnmp/pkg-descr
deleted file mode 100644
index 1ff11eadd40e..000000000000
--- a/java/drexelsnmp/pkg-descr
+++ /dev/null
@@ -1,13 +0,0 @@
-This provides an introduction to the Java SNMP package , an open-source
-implementation of the SNMP protocol in a Java package. It provides support for
-basic SNMP client operations as defined in SNMP versions 1 and 2 (excluding the
-security model proposed as part of SNMP version 2, which was never widely
-accept or deployed). The package provides a mechanism for "getting and setting"
-SNMP object identifier (OID) values through a simple communication interface,
-and represents SNMP structures and datatypes as corresponding Java objects.
-The package assumes familiarity with the SNMP protocol as detailed in RFC's
-1157, 1155, 1212, etc.; however, some simple examples are provided which
-illustrate its use for simple get/set operations (though a knowledge of the
-concepts of OIDs and SNMP datatypes is still required).
-
-WWW: http://gicl.cs.drexel.edu/people/sevy/snmp/