summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/CHANGES15
-rw-r--r--mbone/Makefile3
-rw-r--r--mbone/mdd/DESCR6
-rw-r--r--mbone/mdd/Makefile16
-rw-r--r--mbone/mdd/PLIST3
-rw-r--r--mbone/mdd/distinfo4
6 files changed, 45 insertions, 2 deletions
diff --git a/doc/CHANGES b/doc/CHANGES
index a684369cd26..2a7cd0ec8b0 100644
--- a/doc/CHANGES
+++ b/doc/CHANGES
@@ -1,4 +1,4 @@
-$NetBSD: CHANGES,v 1.8421 2004/12/24 12:30:49 jmmv Exp $
+$NetBSD: CHANGES,v 1.8422 2004/12/24 16:53:52 manu Exp $
Changes to the packages collection and infrastructure in 2004:
@@ -3602,6 +3602,9 @@ Changes to the packages collection and infrastructure in 2004:
Updated gift to 0.11.6nb1 [recht 2004-07-27]
Updated gift-openft to 0.2.1.3 [recht 2004-07-27]
Added miniSAPserver-0.2.4 [manu 2004-07-27]
+<<<<<<< CHANGES
+ Updated vlc to 0.7.2nb1 [manu 2004-07-27]
+=======
Updated automake to 1.8.5 [wiz 2004-07-27]
Updated cpuflags to 0.73 [abs 2004-07-27]
Updated hpack to 0.79nb1 [minskim 2004-07-27]
@@ -3732,6 +3735,9 @@ Changes to the packages collection and infrastructure in 2004:
Updated xchat to 2.0.10nb1 [minskim 2004-08-04]
Updated un-ttf to 20040804 [minskim 2004-08-04]
Added p5-Text-WikiFormat-0.72 [cube 2004-08-04]
+<<<<<<< CHANGES
+>>>>>>> 1.6802
+=======
Updated getmail to 4.0.6 [schmonz 2004-08-05]
Updated expat to 1.95.8 [recht 2004-08-05]
Updated fontconfig to 2.2.96 [recht 2004-08-05]
@@ -4206,6 +4212,9 @@ Changes to the packages collection and infrastructure in 2004:
Updated lame to 3.96.1 [adam 2004-09-06]
Updated ImageMagick to 6.0.7-1 [adam 2004-09-06]
Updated kdelibs3 to 3.3.0nb1 [markd 2004-09-06]
+<<<<<<< CHANGES
+>>>>>>> 1.7108
+=======
Added ftplibpp-1.0.1 [cjep 2004-09-06]
bsd.pkg.mk: started freeze for pkgsrc-2004Q3 branch [agc 2004-09-06]
Updated fox to 1.0.43nb3 [wiz 2004-09-06]
@@ -6433,6 +6442,9 @@ Changes to the packages collection and infrastructure in 2004:
Updated p5-gtk to 0.7009nb2 [grant 2004-12-20]
Updated p5-gtk2 to 1.042nb2 [grant 2004-12-20]
Updated perl58 to 5.8.5nb6 [grant 2004-12-20]
+<<<<<<< CHANGES
+>>>>>>> 1.8371
+=======
Updated a2ps to 4.13.0.2nb5 [wiz 2004-12-20]
bsd.pkg.mk: freeze ended for pkgsrc-2004Q4 branch [agc 2004-12-20]
Updated firefox-bin-flash to 7.0r25 [xtraeme 2004-12-20]
@@ -6508,3 +6520,4 @@ Changes to the packages collection and infrastructure in 2004:
Updated gnome-themes to 2.8.2 [jmmv 2004-12-24]
Updated gtk2-extras to 2.6.0 [jmmv 2004-12-24]
Updated atk to 1.9.0 [jmmv 2004-12-24]
+ Added mdd-20041224 [manu 2004-12-24]
diff --git a/mbone/Makefile b/mbone/Makefile
index 2d3e5f6dd80..9e12caf0cd2 100644
--- a/mbone/Makefile
+++ b/mbone/Makefile
@@ -1,10 +1,11 @@
-# $NetBSD: Makefile,v 1.15 2004/07/27 16:34:25 manu Exp $
+# $NetBSD: Makefile,v 1.16 2004/12/24 16:53:52 manu Exp $
#
COMMENT= Multi-cast backBone applications
SUBDIR+= common-mml
SUBDIR+= imm
+SUBDIR+= mdd
SUBDIR+= mdp
SUBDIR+= nte
SUBDIR+= rat
diff --git a/mbone/mdd/DESCR b/mbone/mdd/DESCR
new file mode 100644
index 00000000000..5793f9f81bc
--- /dev/null
+++ b/mbone/mdd/DESCR
@@ -0,0 +1,6 @@
+mdd stands for multicast data dump. It was designed for distributing
+a file using multicast. The primary goal was to replicate a hard disk
+image on all the workstations of a computer room at the same time.
+
+The protocol used is rather simple and will not make any effort to avoid
+flooding your network. IGMP-snooping enabled switches are advised.
diff --git a/mbone/mdd/Makefile b/mbone/mdd/Makefile
new file mode 100644
index 00000000000..af3a68a44ca
--- /dev/null
+++ b/mbone/mdd/Makefile
@@ -0,0 +1,16 @@
+# $NetBSD: Makefile,v 1.1.1.1 2004/12/24 16:51:33 manu Exp $
+#
+
+DISTNAME= mdd-20041224
+CATEGORIES= mbone
+MASTER_SITES= http://ftp.espci.fr/pub/mdd/
+EXTRACT_SUFX= .tgz
+
+MAINTAINER= manu@netbsd.org
+COMMENT= Multicast file distribution tool
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/mdd ${PREFIX}/bin/
+ ${INSTALL_DATA} ${WRKSRC}/mdd.1 ${PREFIX}/man/man1/
+
+.include "../../mk/bsd.pkg.mk"
diff --git a/mbone/mdd/PLIST b/mbone/mdd/PLIST
new file mode 100644
index 00000000000..bf66569cfa4
--- /dev/null
+++ b/mbone/mdd/PLIST
@@ -0,0 +1,3 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2004/12/24 16:51:33 manu Exp $
+bin/mdd
+man/man1/mdd.1
diff --git a/mbone/mdd/distinfo b/mbone/mdd/distinfo
new file mode 100644
index 00000000000..91234833c7a
--- /dev/null
+++ b/mbone/mdd/distinfo
@@ -0,0 +1,4 @@
+$NetBSD: distinfo,v 1.1.1.1 2004/12/24 16:51:33 manu Exp $
+
+SHA1 (mdd-20041224.tgz) = 2d66bdea10779a80e5b5eb0be325a18035dbbdd5
+Size (mdd-20041224.tgz) = 6993 bytes