Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 12 May 2006 02:14:31 +0100
From:      Shaun Amott <shaun@inerd.com>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/97155: deskutils/plan: Update 0.8.7 -> 0.9; take maintainership
Message-ID:  <1147396471.5437@charon.picobyte.net>
Resent-Message-ID: <200605120120.k4C1KCwO082409@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         97155
>Category:       ports
>Synopsis:       deskutils/plan: Update 0.8.7 -> 0.9; take maintainership
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Fri May 12 01:20:12 GMT 2006
>Closed-Date:
>Last-Modified:
>Originator:     Shaun Amott
>Release:        FreeBSD 6.1-STABLE i386
>Organization:
>Environment:

>Description:

- Update plan to 1.9
- Respect NOPORTDOCS
- Use DOCSDIR, EXAMPLESDIR, DATADIR macros
- Update WWW line in pkg-descr
- Rename patches to new scheme
- Take maintainership

japanese/plan update to follow in a separate PR

>How-To-Repeat:

>Fix:

--- plan.diff begins here ---
diff -urN plan.orig/Makefile plan/Makefile
--- plan.orig/Makefile	Tue Apr 25 23:09:52 2006
+++ plan/Makefile	Thu May 11 05:14:53 2006
@@ -7,12 +7,12 @@
 # Also update	ports/japanese/plan/ (ja-plan) when this port is updated
 
 PORTNAME=	plan
-PORTVERSION=	1.8.7
+PORTVERSION=	1.9
 CATEGORIES+=	deskutils
 MASTER_SITES=	ftp://plan.ftp.fu-berlin.de/
 MASTER_SITE_SUBDIR=	applications
 
-MAINTAINER=	ports@FreeBSD.org
+MAINTAINER=	shaun@inerd.com
 COMMENT=	An X/Motif schedule planner with calendar
 
 USE_MOTIF=	yes
@@ -21,29 +21,40 @@
 MAN1=		netplan.1 plan.1
 MAN4=		plan.4
 
+MAKE_ENV+=	DATADIR=${DATADIR} EXAMPLESDIR=${EXAMPLESDIR}
+
 post-patch:
-	cd ${WRKSRC} && ${MV} config.h config.h.orig && ${SED} -e 's,%%PREFIX%%,${PREFIX},' \
-		< config.h.orig > config.h
+	@${REINPLACE_CMD} 's,%%PREFIX%%,${PREFIX},' ${WRKSRC}/config.h
+
 do-install:
-	@${MKDIR} ${PREFIX}/share/doc/plan/examples ;\
-	cd ${WRKSRC} ; ${INSTALL_PROGRAM} plan pland netplan notifier ${PREFIX}/bin ;\
-	${INSTALL_SCRIPT}  ../misc/Killpland ${PREFIX}/bin ;\
-	${INSTALL_MAN} ../misc/netplan.1 ../misc/plan.1 ${MAN1PREFIX}/man/man1 ;\
-	${INSTALL_MAN} ../misc/plan.4 ${MAN4PREFIX}/man/man4 ;\
-	${INSTALL_DATA} ../misc/plan_cal.ps ../language/* ../misc/Mkdoc ../misc/Mkdoc.nawk \
-			 ../misc/BlackWhite ../misc/Monochrome ../README \
-		${PREFIX}/share/doc/plan ;\
-	cd ${WRKSRC}/../holiday ; ${INSTALL_DATA} \
-		holiday_australia holiday_austria holiday_bavarian holiday_belgium \
-		holiday_canada holiday_combi holiday_czech holiday_denmark holiday_dutch \
-		holiday_finnish holiday_french holiday_frswiss holiday_german holiday_greek \
-		holiday_hungary holiday_italy holiday_japan holiday_norway holiday_portugal \
-		holiday_quebec holiday_slovak holiday_spain holiday_swedish holiday_uk \
-			holiday_us ${PREFIX}/share/doc/plan/examples
+	@${MKDIR} ${EXAMPLESDIR}
+
+	cd ${WRKSRC} \
+	   && ${INSTALL_PROGRAM} plan pland netplan notifier ${PREFIX}/bin		\
+	   && ${INSTALL_SCRIPT}  ../misc/Killpland ${PREFIX}/bin			\
+	   && ${INSTALL_MAN} ../misc/netplan.1 ../misc/plan.1 ${MAN1PREFIX}/man/man1	\
+	   && ${INSTALL_MAN} ../misc/plan.4 ${MAN4PREFIX}/man/man4
+
+.if !defined(NOPORTDOCS)
+	@${MKDIR} ${DOCSDIR}
+	cd ${WRKSRC}/.. \
+	   && ${INSTALL_DATA} misc/plan_cal.ps language/* misc/Mkdoc misc/Mkdoc.nawk	\
+	                      misc/BlackWhite misc/Monochrome README			\
+	                      ${DOCSDIR}
+.endif
+
+	cd ${WRKSRC}/../holiday \
+	   && ${INSTALL_DATA}   \
+	      holiday_australia holiday_austria holiday_bavarian holiday_belgium		\
+	      holiday_canada holiday_combi holiday_czech holiday_denmark holiday_dutch		\
+	      holiday_finnish holiday_french holiday_frswiss holiday_german holiday_greek	\
+	      holiday_hungary holiday_italy holiday_japan holiday_norway holiday_portugal	\
+	      holiday_quebec holiday_slovak holiday_spain holiday_swedish holiday_uk		\
+	      holiday_us ${EXAMPLESDIR}
 
 .if !target(post-install)
 post-install:
-	@${MKDIR} ${PREFIX}/share/netplan.dir
+	@${MKDIR} ${DATADIR}/netplan.dir
 .endif
 
 .include <bsd.port.mk>
diff -urN plan.orig/distinfo plan/distinfo
--- plan.orig/distinfo	Tue Apr 25 23:09:52 2006
+++ plan/distinfo	Thu May 11 01:47:39 2006
@@ -1,3 +1,3 @@
-MD5 (plan-1.8.7.tar.gz) = 76f7f522bb7e03de73d581b8b647fb3b
-SHA256 (plan-1.8.7.tar.gz) = bf646f59911b4f66965ef7ffe243edb080eae22862b49e1d2e4b6bb689f2e326
-SIZE (plan-1.8.7.tar.gz) = 436792
+MD5 (plan-1.9.tar.gz) = ab9e6b67c7b087f130c030aa779ef01d
+SHA256 (plan-1.9.tar.gz) = 08092cdacdc15ec78bdcfb5e51a598e9b32c52c93c97905cec578f1171e14cf3
+SIZE (plan-1.9.tar.gz) = 441599
diff -urN plan.orig/files/patch-Makefile plan/files/patch-Makefile
--- plan.orig/files/patch-Makefile	Thu Jan  1 01:00:00 1970
+++ plan/files/patch-Makefile	Thu May 11 05:01:57 2006
@@ -0,0 +1,94 @@
+--- Makefile.orig	Sun Feb  6 19:11:34 2005
++++ Makefile	Thu May 11 03:00:53 2006
+@@ -8,19 +8,19 @@
+ # after "=", this is parsed and rewritten by the configure script.
+ #
+ #				# user-callable executable (plan)
+-DIR=/usr/local/bin
++DIR=${PREFIX}/bin
+ #				# auxiliary programs (pland, notifier, PS)
+-LIB=/usr/local/lib
++LIB=${DATADIR}
+ #				# help file (plan.help)
+-SBIN=/usr/local/bin
++SBIN=${PREFIX}/bin
+ #				# system programs (netplan)
+-HELP=/usr/local/lib
++HELP=${DOCSDIR}
+ #				# netplan expects netplan.dir/ here
+-NETPLANDIR=/usr/local/lib
++NETPLANDIR=${DATADIR}
+ #				# unformatted nroff manpage (plan.[14])
+-MAN=/usr/local/man/man
++MAN=${MANPREFIX}/man/man
+ #				# formatted manpage (plan.[14])
+-CATMAN=/usr/catman/local/cat
++CATMAN=${MANPREFIX}/man/cat
+ #				# subdirectory in home dir, or empty
+ PLANRULE=
+ #				# lockfile for plan, %d is uid
+@@ -34,9 +34,9 @@
+ #				# standard Unix compiler generator
+ YACC=yacc
+ #				# numerical user ID of <nobody> account
+-NOB_UID=60001
++NOB_UID=65534
+ #				# default numerical group ID of <nobody>
+-NOB_GID=60001
++NOB_GID=65534
+ # 				# used by plan to pre-process holiday files,
+ #				# plan will check if this file really exists
+ CPP_PATH='/lib/cpp -P -I$(HELP)'
+@@ -49,13 +49,17 @@
+ #				# uncomment this for Japanese version of plan
+ #				# JAPAN requires X11R5 and a Japanese env.
+ JAPANDEFS='-DJAPAN -DESCTOASCII=$(ESCTOJISLATIN) -DLENTOASCII=3 -DLOCALE_SJIS=ja_JP.SJIS -DLOCALE_EUC=ja_JP.EUC'
++.if defined(JAPANESE)
++JAPAN=-DJAPAN -DESCTOASCII=$(ESCTOJISLATIN) -DLENTOASCII=3 \
++       -DLOCALE_SJIS=\"ja_JP.SJIS\" -DLOCALE_EUC=\"ja_JP.EUC\"
++.else
+ JAPAN=
++.endif
+ #				# default holiday locale
+ HOLIDAY=german
+ #				# do NOT define -O2 on DEC OSF/1 machines!
+ #				# use -O instead of -O2 on HP and Solaris
+-DEBUG=-g
+-DEBUG=-O2
++DEBUG=${CFLAGS}
+ #				# what to do without make arguments
+ DEFTARGET=linux
+ #------------------------- end of configuration section ----------------------
+@@ -219,10 +223,10 @@
+ BSDIG_L2= -L/usr/X11/lib -lc
+ NBSD_L1	= -L/usr/X11R6/lib -lXm -lXt -lX11
+ NBSD_L2	= -L/usr/X11R6/lib -lc
+-FBSD_L1	= -L/usr/X11R6/lib -lXm -lXt -lX11 -lXext -lSM -lICE -lXpm
+-FBSD_L2	= -L/usr/X11R6/lib -lc
+-OBSD_L1	= -L/usr/local/lib -lXm -L/usr/X11R6/lib -lXt -lX11
+-OBSD_L2	= -lc
++FBSD_L1 = -L$(X11BASE)/lib ${MOTIFLIB} -lXt -lSM -lICE -lX11 -lXext
++FBSD_L2 =
++OBSD_L1 = -L$(X11BASE)/lib ${MOTIFLIB} -lXt -lSM -lICE -lX11 -lXext
++OBSD_L2 =
+ LINUX_L1= -L/usr/X11R6/lib -L/usr/lib/X11R6/lib -lSM -lXm -lXt -lX11 -lXpm -lc -lXext -lSM -lICE -lX11
+ LINUX_L2= -lc
+ SLINUX_L1= -L/usr/X11R6/lib -L/usr/lib/X11R6/lib -lSM /usr/X11R6/lib/libXm.a -lXt -lX11 /usr/X11R6/lib/libXpm.a -lc -lXext -lSM -lICE -lX11
+@@ -287,7 +291,7 @@
+ 	@echo "  make bsdi      BSDI/386"
+ 	@echo "  make bsdig     BSDI/386 with gcc"
+ 	@echo "  make netbsd    NetBSD/i386 1.0A (maybe others too)"
+-	@echo "  make freebsd   FreeBSD 2.x"
++	@echo "  make freebsd   FreeBSD"
+ 	@echo "  make openbsd	OpenBSD"
+ 	@echo "  make svr4      SVR4 Using gcc"
+ 	@echo "  make news4     Sony NEWS-OS4.x"
+@@ -525,7 +529,7 @@
+ 	$(CCLINE) -c -DLIB=\"$(LIB)\" $<
+ 
+ holiday.o: holiday.c $(MAKEFILE)
+-	$(CCLINE) -DCPP_PATH=\"$(CPP_PATH)\" -c -DLIB=\"$(LIB)\" $<
++	$(CCLINE) -DCPP_PATH=\"$(CPP_PATH)\" -c -DLIB=\"$(DOCS)\" $<
+ 
+ util.o: util.c $(MAKEFILE)
+ 	$(CCLINE) -c -DPATH=\"$(LIB):$(DIR):$(EXAMPLESDIR)\" $<
diff -urN plan.orig/files/patch-aa plan/files/patch-aa
--- plan.orig/files/patch-aa	Sun Mar 23 23:23:59 2003
+++ plan/files/patch-aa	Thu Jan  1 01:00:00 1970
@@ -1,14 +0,0 @@
---- servmenu.c.orig	Tue Mar  2 14:02:17 1999
-+++ servmenu.c	Fri Mar 29 11:24:14 2002
-@@ -8,7 +8,11 @@
- 
- #include <stdio.h>
- #include <time.h>
-+#ifndef STDLIBMALLOC
- #include <malloc.h>
-+#else
-+#include <stdlib.h>
-+#endif
- #include <Xm/Xm.h>
- #include <Xm/DialogS.h>
- #include <Xm/Form.h>
diff -urN plan.orig/files/patch-ab plan/files/patch-ab
--- plan.orig/files/patch-ab	Wed Nov 12 20:31:21 2003
+++ plan/files/patch-ab	Thu Jan  1 01:00:00 1970
@@ -1,97 +0,0 @@
---- Makefile.orig	Tue Sep 30 13:52:26 2003
-+++ Makefile	Wed Nov 12 11:40:42 2003
-@@ -7,18 +7,24 @@
- # path and the #, or you'll get compile errors. DO NOT put blanks before and
- # after "=", this is parsed and rewritten by the configure script.
- #
-+DOCBASE=$(PREFIX)/share/doc/plan
-+#
- #				# user-callable executable (plan)
--DIR=/usr/freeware/bin
-+DIR=${PREFIX}/bin
- #				# auxiliary programs (pland, notifier, PS)
--LIB=/usr/freeware/lib
-+LIB=${PREFIX}/share
-+#                              # Example holiday files
-+EXAMPLES=$(DOCBASE)/examples
-+#                              # doc files
-+DOCS=$(DOCBASE)
- #				# help file (plan.help)
--SBIN=/usr/freeware/bin
-+HELP=$(DOCBASE)
- #				# system programs (netplan)
--HELP=/usr/freeware/lib
-+SBIN=${PREFIX}/bin
- #				# netplan expects netplan.dir/ here
--NETPLANDIR=/usr/freeware/lib
-+NETPLANDIR=$(LIB)
- #				# unformatted nroff manpage (plan.[14])
--MAN=/usr/share/man/local/man
-+MAN=$(PREFIX)/man/man
- #				# formatted manpage (plan.[14])
- CATMAN=/usr/share/catman/local/cat
- #				# subdirectory in home dir, or empty
-@@ -34,9 +40,9 @@
- #				# standard Unix compiler generator
- YACC=yacc
- #				# numerical user ID of <nobody> account
--NOB_UID=60001
-+NOB_UID=65534
- #				# default numerical group ID of <nobody>
--NOB_GID=60001
-+NOB_GID=65534
- # 				# used by plan to pre-process holiday files,
- #				# plan will check if this file really exists
- CPP_PATH='/lib/cpp -P -I$(HELP)'
-@@ -49,12 +55,17 @@
- #				# uncomment this for Japanese version of plan
- #				# JAPAN requires X11R5 and a Japanese env.
- JAPANDEFS='-DJAPAN -DESCTOASCII=$(ESCTOJISLATIN) -DLENTOASCII=3 -DLOCALE_SJIS=ja_JP.SJIS -DLOCALE_EUC=ja_JP.EUC'
-+.if defined(JAPANESE)
-+JAPAN=-DJAPAN -DESCTOASCII=$(ESCTOJISLATIN) -DLENTOASCII=3 \
-+	-DLOCALE_SJIS=\"ja_JP.SJIS\" -DLOCALE_EUC=\"ja_JP.EUC\"
-+.else
- JAPAN=
-+.endif
- #				# default holiday locale
- HOLIDAY=german
- #				# do NOT define -O2 on DEC OSF/1 machines!
- #				# use -O instead of -O2 on HP to avoid warning
--DEBUG=-O2 -n32
-+DEBUG=${CFLAGS}
- #				# what to do without make arguments
- DEFTARGET=sgi
- #------------------------- end of configuration section ----------------------
-@@ -218,10 +229,10 @@
- BSDIG_L2= -L/usr/X11/lib -lc
- NBSD_L1	= -L/usr/X11R6/lib -lXm -lXt -lX11
- NBSD_L2	= -L/usr/X11R6/lib -lc
--FBSD_L1	= -L/usr/X11R6/lib -lXm -lXt -lX11 -lXext -lSM -lICE -lXpm
--FBSD_L2	= -L/usr/X11R6/lib -lc
--OBSD_L1	= -L/usr/local/lib -lXm -L/usr/X11R6/lib -lXt -lX11
--OBSD_L2	= -lc
-+FBSD_L1 = -L$(X11BASE)/lib ${MOTIFLIB} -lXt -lSM -lICE -lX11 -lXext
-+FBSD_L2 =
-+OBSD_L1 = -L$(X11BASE)/lib ${MOTIFLIB} -lXt -lSM -lICE -lX11 -lXext
-+OBSD_L2 =
- LINUX_L1= -L/usr/X11R6/lib -L/usr/lib/X11R6/lib -lSM -lXm -lXt -lX11 -lXpm -lc -lXext -lSM -lICE -lX11
- LINUX_L2= -lc
- SLINUX_L1= -L/usr/X11R6/lib -L/usr/lib/X11R6/lib -lSM /usr/X11R6/lib/libXm.a -lXt -lX11 /usr/X11R6/lib/libXpm.a -lc -lXext -lSM -lICE -lX11
-@@ -286,7 +297,7 @@
- 	@echo "  make bsdi      BSDI/386"
- 	@echo "  make bsdig     BSDI/386 with gcc"
- 	@echo "  make netbsd    NetBSD/i386 1.0A (maybe others too)"
--	@echo "  make freebsd   FreeBSD 2.x"
-+	@echo "  make freebsd   FreeBSD"
- 	@echo "  make openbsd	OpenBSD"
- 	@echo "  make svr4      SVR4 Using gcc"
- 	@echo "  make news4     Sony NEWS-OS4.x"
-@@ -524,7 +535,7 @@
- 	$(CCLINE) -c -DLIB=\"$(LIB)\" $<
- 
- holiday.o: holiday.c $(MAKEFILE)
--	$(CCLINE) -DCPP_PATH=\"$(CPP_PATH)\" -c -DLIB=\"$(LIB)\" $<
-+	$(CCLINE) -DCPP_PATH=\"$(CPP_PATH)\" -c -DLIB=\"$(DOCS)\" $<
- 
- util.o: util.c $(MAKEFILE)
- 	$(CCLINE) -c -DPATH=\"$(LIB):$(DIR):$(HELP)\" $<
diff -urN plan.orig/files/patch-ag plan/files/patch-ag
--- plan.orig/files/patch-ag	Sat Jun 19 10:29:06 1999
+++ plan/files/patch-ag	Thu Jan  1 01:00:00 1970
@@ -1,11 +0,0 @@
---- sublist.c.orig	Sun May  2 12:23:15 1999
-+++ sublist.c	Thu Jun 17 13:09:05 1999
-@@ -23,7 +23,7 @@
- #define regcmp re_comp
- #define regex re_exec
- #endif
--#if defined(linux) || defined(__EMX__)
-+#if defined(linux) || defined(__EMX__) || defined(POSIX_REGEX)
- #define regcmp regcomp
- #define regex regexec
- #endif
diff -urN plan.orig/files/patch-servmenu.c plan/files/patch-servmenu.c
--- plan.orig/files/patch-servmenu.c	Thu Jan  1 01:00:00 1970
+++ plan/files/patch-servmenu.c	Sun Mar 23 23:23:59 2003
@@ -0,0 +1,14 @@
+--- servmenu.c.orig	Tue Mar  2 14:02:17 1999
++++ servmenu.c	Fri Mar 29 11:24:14 2002
+@@ -8,7 +8,11 @@
+ 
+ #include <stdio.h>
+ #include <time.h>
++#ifndef STDLIBMALLOC
+ #include <malloc.h>
++#else
++#include <stdlib.h>
++#endif
+ #include <Xm/Xm.h>
+ #include <Xm/DialogS.h>
+ #include <Xm/Form.h>
diff -urN plan.orig/files/patch-sublist.c plan/files/patch-sublist.c
--- plan.orig/files/patch-sublist.c	Thu Jan  1 01:00:00 1970
+++ plan/files/patch-sublist.c	Sat Jun 19 10:29:06 1999
@@ -0,0 +1,11 @@
+--- sublist.c.orig	Sun May  2 12:23:15 1999
++++ sublist.c	Thu Jun 17 13:09:05 1999
+@@ -23,7 +23,7 @@
+ #define regcmp re_comp
+ #define regex re_exec
+ #endif
+-#if defined(linux) || defined(__EMX__)
++#if defined(linux) || defined(__EMX__) || defined(POSIX_REGEX)
+ #define regcmp regcomp
+ #define regex regexec
+ #endif
diff -urN plan.orig/pkg-descr plan/pkg-descr
--- plan.orig/pkg-descr	Sun Mar 23 23:23:59 2003
+++ plan/pkg-descr	Thu May 11 02:06:57 2006
@@ -5,4 +5,4 @@
 
 This port requires Motif or equivalent to build.
 
-WWW: http://me.in-Berlin.de/~bitrot/plan.html
+WWW: http://www.bitrot.de/plan.html
diff -urN plan.orig/pkg-plist plan/pkg-plist
--- plan.orig/pkg-plist	Wed Nov 12 20:31:21 2003
+++ plan/pkg-plist	Thu May 11 18:41:58 2006
@@ -3,45 +3,46 @@
 bin/netplan
 bin/notifier
 bin/Killpland
-%%DOCSDIR%%/Mkdoc
-%%DOCSDIR%%/Mkdoc.nawk
-%%DOCSDIR%%/plan.help
-%%DOCSDIR%%/plan_cal.ps
-%%DOCSDIR%%/examples/holiday_australia
-%%DOCSDIR%%/examples/holiday_austria
-%%DOCSDIR%%/examples/holiday_bavarian
-%%DOCSDIR%%/examples/holiday_belgium
-%%DOCSDIR%%/examples/holiday_canada
-%%DOCSDIR%%/examples/holiday_combi
-%%DOCSDIR%%/examples/holiday_czech
-%%DOCSDIR%%/examples/holiday_denmark
-%%DOCSDIR%%/examples/holiday_dutch
-%%DOCSDIR%%/examples/holiday_finnish
-%%DOCSDIR%%/examples/holiday_french
-%%DOCSDIR%%/examples/holiday_frswiss
-%%DOCSDIR%%/examples/holiday_german
-%%DOCSDIR%%/examples/holiday_greek
-%%DOCSDIR%%/examples/holiday_hungary
-%%DOCSDIR%%/examples/holiday_italy
-%%DOCSDIR%%/examples/holiday_japan
-%%DOCSDIR%%/examples/holiday_norway
-%%DOCSDIR%%/examples/holiday_portugal
-%%DOCSDIR%%/examples/holiday_quebec
-%%DOCSDIR%%/examples/holiday_slovak
-%%DOCSDIR%%/examples/holiday_spain
-%%DOCSDIR%%/examples/holiday_swedish
-%%DOCSDIR%%/examples/holiday_uk
-%%DOCSDIR%%/examples/holiday_us
-%%DOCSDIR%%/BlackWhite
-%%DOCSDIR%%/Monochrome
-%%DOCSDIR%%/README
-%%DOCSDIR%%/plan.lang.dutch
-%%DOCSDIR%%/plan.lang.english
-%%DOCSDIR%%/plan.lang.french
-%%DOCSDIR%%/plan.lang.german
-%%DOCSDIR%%/plan.lang.italian
-%%DOCSDIR%%/plan.lang.spanish
-@exec /bin/mkdir -p %D/share/netplan.dir
-@dirrm share/netplan.dir
-@dirrm %%DOCSDIR%%/examples
-@dirrm %%DOCSDIR%%
+%%PORTDOCS%%%%DOCSDIR%%/Mkdoc
+%%PORTDOCS%%%%DOCSDIR%%/Mkdoc.nawk
+%%PORTDOCS%%%%DOCSDIR%%/plan.help
+%%PORTDOCS%%%%DOCSDIR%%/plan_cal.ps
+%%EXAMPLESDIR%%/holiday_australia
+%%EXAMPLESDIR%%/holiday_austria
+%%EXAMPLESDIR%%/holiday_bavarian
+%%EXAMPLESDIR%%/holiday_belgium
+%%EXAMPLESDIR%%/holiday_canada
+%%EXAMPLESDIR%%/holiday_combi
+%%EXAMPLESDIR%%/holiday_czech
+%%EXAMPLESDIR%%/holiday_denmark
+%%EXAMPLESDIR%%/holiday_dutch
+%%EXAMPLESDIR%%/holiday_finnish
+%%EXAMPLESDIR%%/holiday_french
+%%EXAMPLESDIR%%/holiday_frswiss
+%%EXAMPLESDIR%%/holiday_german
+%%EXAMPLESDIR%%/holiday_greek
+%%EXAMPLESDIR%%/holiday_hungary
+%%EXAMPLESDIR%%/holiday_italy
+%%EXAMPLESDIR%%/holiday_japan
+%%EXAMPLESDIR%%/holiday_norway
+%%EXAMPLESDIR%%/holiday_portugal
+%%EXAMPLESDIR%%/holiday_quebec
+%%EXAMPLESDIR%%/holiday_slovak
+%%EXAMPLESDIR%%/holiday_spain
+%%EXAMPLESDIR%%/holiday_swedish
+%%EXAMPLESDIR%%/holiday_uk
+%%EXAMPLESDIR%%/holiday_us
+%%PORTDOCS%%%%DOCSDIR%%/BlackWhite
+%%PORTDOCS%%%%DOCSDIR%%/Monochrome
+%%PORTDOCS%%%%DOCSDIR%%/README
+%%PORTDOCS%%%%DOCSDIR%%/plan.lang.dutch
+%%PORTDOCS%%%%DOCSDIR%%/plan.lang.english
+%%PORTDOCS%%%%DOCSDIR%%/plan.lang.french
+%%PORTDOCS%%%%DOCSDIR%%/plan.lang.german
+%%PORTDOCS%%%%DOCSDIR%%/plan.lang.italian
+%%PORTDOCS%%%%DOCSDIR%%/plan.lang.spanish
+@exec /bin/mkdir -p %D/%%DATADIR%%/netplan.dir
+@dirrmtry %%DATADIR%%/netplan.dir
+@dirrm %%DATADIR%%
+@dirrm %%EXAMPLESDIR%%
+%%PORTDOCS%%@dirrm %%DOCSDIR%%
--- plan.diff ends here ---
>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1147396471.5437>