aboutsummaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorJames E. Housley <jeh@FreeBSD.org>2001-12-10 21:37:21 +0000
committerJames E. Housley <jeh@FreeBSD.org>2001-12-10 21:37:21 +0000
commit326367d36f6fa7465976f66e130d82220b5ef431 (patch)
tree3cbf40c94805cfb29f4662ac0882065c8c227692 /net
parentea560c33a6887a0b3092b0dccbc1442be57a29cc (diff)
downloadports-326367d36f6fa7465976f66e130d82220b5ef431.tar.gz
ports-326367d36f6fa7465976f66e130d82220b5ef431.zip
Notes
Diffstat (limited to 'net')
-rw-r--r--net/neoupdate/Makefile42
-rw-r--r--net/neoupdate/distinfo1
-rw-r--r--net/neoupdate/files/patch-aa16
-rw-r--r--net/neoupdate/pkg-comment1
-rw-r--r--net/neoupdate/pkg-descr12
-rw-r--r--net/neoupdate/pkg-message13
-rw-r--r--net/neoupdate/pkg-plist7
7 files changed, 0 insertions, 92 deletions
diff --git a/net/neoupdate/Makefile b/net/neoupdate/Makefile
deleted file mode 100644
index 8cfbbd808670..000000000000
--- a/net/neoupdate/Makefile
+++ /dev/null
@@ -1,42 +0,0 @@
-# New ports collection makefile for: neoupdate
-# Date created: 9 January 2001
-# Whom: jim@thehousleys.net
-#
-# $FreeBSD$
-#
-
-PORTNAME= neoupdate
-PORTVERSION= 1.10
-CATEGORIES= net
-MASTER_SITES= http://www.iamnewbie.com/download/
-DISTNAME= ${PORTNAME}${PORTVERSION}
-
-MAINTAINER= jeh@FreeBSD.org
-
-RUN_DEPENDS= ${SITE_PERL}/LWP.pm:${PORTSDIR}/www/p5-libwww
-
-WRKSRC= ${WRKDIR}/${PORTNAME}
-
-USE_PERL= yes
-NO_BUILD= yes
-
-SITE_PERL= ${PREFIX}/lib/perl5/site_perl/${PERL_VER}
-
-.if !defined(NOPORTDOCS)
-PLIST_SUB= NOPORTDOCS=''
-.else
-PLIST_SUB= NOPORTDOCS='@comment '
-.endif
-
-do-install:
- @${INSTALL_SCRIPT} ${WRKSRC}/neoupdate.pl ${PREFIX}/sbin
- @${INSTALL_SCRIPT} ${WRKSRC}/ip.pl ${PREFIX}/sbin
- @${INSTALL_SCRIPT} ${WRKSRC}/neoupdate.conf ${PREFIX}/etc
- @${INSTALL_SCRIPT} ${WRKSRC}/yi.conf ${PREFIX}/etc
-.if !defined(NOPORTDOCS)
- @${MKDIR} ${PREFIX}/share/doc/neoupdate
- @${INSTALL_DATA} ${WRKSRC}/neoupdate.cron ${PREFIX}/share/doc/neoupdate
- @${INSTALL_DATA} ${WRKSRC}/readme.txt ${PREFIX}/share/doc/neoupdate
-.endif
- @${CAT} ${PKGMESSAGE}
-.include <bsd.port.mk>
diff --git a/net/neoupdate/distinfo b/net/neoupdate/distinfo
deleted file mode 100644
index d77382642689..000000000000
--- a/net/neoupdate/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (neoupdate1.10.tar.gz) = a57b384bbc0e0ae2288bc7cf870cd6b7
diff --git a/net/neoupdate/files/patch-aa b/net/neoupdate/files/patch-aa
deleted file mode 100644
index ababee2310ad..000000000000
--- a/net/neoupdate/files/patch-aa
+++ /dev/null
@@ -1,16 +0,0 @@
-diff -ruN neoupdate.orig/neoupdate.pl neoupdate/neoupdate.pl
---- neoupdate.pl.orig Fri Dec 8 04:23:16 2000
-+++ neoupdate.pl Tue Jan 9 08:16:20 2001
-@@ -246,9 +246,10 @@
- ($device) = @_;
- my(@newip,$newip,$nic);
- $nic = qx(/sbin/ifconfig $device);
--@newip = grep(/^addr/, split(/\s/, $nic));
-+@newip = grep(/inet /, split(/[\n\r]/, $nic));
- $newip = $newip[0];
--$newip =~ s/addr://;
-+$newip =~ s/\sinet //;
-+$newip =~ s/ .*$//;
- if ($newip =~ m/(\d+)\.(\d+)\.(\d+)\.(\d+)/){
- return $newip;
- }else{
diff --git a/net/neoupdate/pkg-comment b/net/neoupdate/pkg-comment
deleted file mode 100644
index a3af04b4534c..000000000000
--- a/net/neoupdate/pkg-comment
+++ /dev/null
@@ -1 +0,0 @@
-Automated Perl script to update DNS entries at centralinfo.net or yi.org.
diff --git a/net/neoupdate/pkg-descr b/net/neoupdate/pkg-descr
deleted file mode 100644
index f62a17662bc0..000000000000
--- a/net/neoupdate/pkg-descr
+++ /dev/null
@@ -1,12 +0,0 @@
-NeoUpdate is a Perl Script that monitors network connection and
-update DNS records on free DNS service provider CentralInfo whenever
-an IP address change is detected. Centralinfo provide free dns
-hosting for your domain name (Example : www.mydomain.com). It is
-extremely useful for Cable Modem or DSL users who runs various
-service like ftp and http server on their computer and prevent
-service downtime whenever an IP change occur.
-
-WWW: http://www.iamnewbie.com/
-
-- Jim
-jim@thehousleys.net
diff --git a/net/neoupdate/pkg-message b/net/neoupdate/pkg-message
deleted file mode 100644
index 1a8ebb6a58d8..000000000000
--- a/net/neoupdate/pkg-message
+++ /dev/null
@@ -1,13 +0,0 @@
-You must edit $PREFIX/etc/neoupdate.conf before using. These items must
-be changed or verified.
-
-1) (line 44) $ipmethod
-2) (line 53) $device
-3) (line 91) $enable_log
-4) (line 98) $ipfile
-5) (line 102) $username & $password
-6) (line 107) $domain
-7) (line 112) $email
-8) (line 117) TTL information
-9) (line 129) Domain Information
-
diff --git a/net/neoupdate/pkg-plist b/net/neoupdate/pkg-plist
deleted file mode 100644
index 87436a60b008..000000000000
--- a/net/neoupdate/pkg-plist
+++ /dev/null
@@ -1,7 +0,0 @@
-sbin/ip.pl
-sbin/neoupdate.pl
-etc/neoupdate.conf
-etc/yi.conf
-%%NOPORTDOCS%%share/doc/neoupdate/neoupdate.cron
-%%NOPORTDOCS%%share/doc/neoupdate/readme.txt
-%%NOPORTDOCS%%@dirrm share/doc/neoupdate