Thu Mar 8 01:11:21 2012 UTC ()
Remove sysutils/mtree, it serves no purpose.
Don't install cat page. Bump version for pkgtools/mtree.


(joerg)
diff -r1.24 -r1.25 pkgsrc/pkgtools/mtree/Makefile
diff -r1.8 -r0 pkgsrc/pkgtools/mtree/Makefile.common
diff -r1.2 -r1.3 pkgsrc/pkgtools/mtree/PLIST
diff -r1.8 -r1.9 pkgsrc/pkgtools/mtree/files/Makefile.in
diff -r1.534 -r1.535 pkgsrc/sysutils/Makefile
diff -r1.5 -r0 pkgsrc/sysutils/mtree/Makefile

cvs diff -r1.24 -r1.25 pkgsrc/pkgtools/mtree/Makefile (expand / switch to unified diff)

--- pkgsrc/pkgtools/mtree/Makefile 2009/02/10 00:11:53 1.24
+++ pkgsrc/pkgtools/mtree/Makefile 2012/03/08 01:11:21 1.25
@@ -1,14 +1,24 @@ @@ -1,14 +1,24 @@
1# $NetBSD: Makefile,v 1.24 2009/02/10 00:11:53 joerg Exp $ 1# $NetBSD: Makefile,v 1.25 2012/03/08 01:11:21 joerg Exp $
2# 
3# This version of mtree installs into ${PKG_TOOLS_BIN}. 
4# 2#
5 3
 4DISTNAME= mtree-20120308
 5CATEGORIES= pkgtools sysutils
 6MASTER_SITES= # empty
 7DISTFILES= # empty
 8
 9MAINTAINER= sbd@NetBSD.org
 10HOMEPAGE= http://www.NetBSD.org/
 11COMMENT= Utility for mapping and checking directory hierarchies
 12
6PKG_DESTDIR_SUPPORT= user-destdir 13PKG_DESTDIR_SUPPORT= user-destdir
7 14
8.include "Makefile.common" 15GNU_CONFIGURE= yes
 16
 17USE_FEATURES= nbcompat
9 18
10CATEGORIES= pkgtools 19.include "../../mk/bsd.prefs.mk"
11 20
12NO_PKGTOOLS_REQD_CHECK= # defined 21do-extract:
 22 @${CP} -R ${FILESDIR} ${WRKSRC}
13 23
14.include "../../mk/bsd.pkg.mk" 24.include "../../mk/bsd.pkg.mk"

File Deleted: pkgsrc/pkgtools/mtree/Attic/Makefile.common

cvs diff -r1.2 -r1.3 pkgsrc/pkgtools/mtree/PLIST (expand / switch to unified diff)

--- pkgsrc/pkgtools/mtree/PLIST 2006/07/14 19:23:09 1.2
+++ pkgsrc/pkgtools/mtree/PLIST 2012/03/08 01:11:21 1.3
@@ -1,4 +1,3 @@ @@ -1,4 +1,3 @@
1@comment $NetBSD: PLIST,v 1.2 2006/07/14 19:23:09 jlam Exp $ 1@comment $NetBSD: PLIST,v 1.3 2012/03/08 01:11:21 joerg Exp $
2man/cat8/mtree.0 
3man/man8/mtree.8 2man/man8/mtree.8
4sbin/mtree 3sbin/mtree

cvs diff -r1.8 -r1.9 pkgsrc/pkgtools/mtree/files/Makefile.in (expand / switch to unified diff)

--- pkgsrc/pkgtools/mtree/files/Makefile.in 2009/02/10 00:11:53 1.8
+++ pkgsrc/pkgtools/mtree/files/Makefile.in 2012/03/08 01:11:21 1.9
@@ -1,24 +1,23 @@ @@ -1,24 +1,23 @@
1# $NetBSD: Makefile.in,v 1.8 2009/02/10 00:11:53 joerg Exp $ 1# $NetBSD: Makefile.in,v 1.9 2012/03/08 01:11:21 joerg Exp $
2 2
3srcdir= @srcdir@ 3srcdir= @srcdir@
4 4
5prefix= @prefix@ 5prefix= @prefix@
6exec_prefix= @exec_prefix@ 6exec_prefix= @exec_prefix@
7sbindir= @sbindir@ 7sbindir= @sbindir@
8mandir= @mandir@ 8mandir= @mandir@
9 9
10man8dir= $(mandir)/man8 10man8dir= $(mandir)/man8
11cat8dir= $(mandir)/cat8 
12 11
13CC= @CC@ 12CC= @CC@
14CCLD= $(CC) 13CCLD= $(CC)
15LIBS= @LIBS@ 14LIBS= @LIBS@
16CPPFLAGS= @CPPFLAGS@ -I. -I$(srcdir) 15CPPFLAGS= @CPPFLAGS@ -I. -I$(srcdir)
17DEFS= @DEFS@ 16DEFS= @DEFS@
18CFLAGS= @CFLAGS@ 17CFLAGS= @CFLAGS@
19LDFLAGS= @LDFLAGS@ 18LDFLAGS= @LDFLAGS@
20 19
21INSTALL= @INSTALL@ 20INSTALL= @INSTALL@
22 21
23PROG= mtree 22PROG= mtree
24 23
@@ -33,17 +32,15 @@ all: $(PROG) @@ -33,17 +32,15 @@ all: $(PROG)
33$(PROG): $(OBJS) 32$(PROG): $(OBJS)
34 $(CCLD) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) 33 $(CCLD) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
35 34
36clean: 35clean:
37 rm -f $(OBJS) $(PROG) 36 rm -f $(OBJS) $(PROG)
38 37
39distclean: clean 38distclean: clean
40 rm -f Makefile config.cache config.h config.status 39 rm -f Makefile config.cache config.h config.status
41 rm -f configure.lineno config.log 40 rm -f configure.lineno config.log
42 41
43install: 42install:
44 $(INSTALL) -m 755 -d ${DESTDIR}$(sbindir) 43 $(INSTALL) -m 755 -d ${DESTDIR}$(sbindir)
45 $(INSTALL) -m 755 -d ${DESTDIR}$(man8dir) 44 $(INSTALL) -m 755 -d ${DESTDIR}$(man8dir)
46 $(INSTALL) -m 755 -d ${DESTDIR}$(cat8dir) 
47 $(INSTALL) $(PROG) ${DESTDIR}$(sbindir) 45 $(INSTALL) $(PROG) ${DESTDIR}$(sbindir)
48 $(INSTALL) -m 444 $(PROG).8 ${DESTDIR}$(man8dir)/$(PROG).8 46 $(INSTALL) -m 444 $(PROG).8 ${DESTDIR}$(man8dir)/$(PROG).8
49 $(INSTALL) -m 444 $(PROG).cat8 ${DESTDIR}$(cat8dir)/$(PROG).0 

cvs diff -r1.534 -r1.535 pkgsrc/sysutils/Makefile (expand / switch to unified diff)

--- pkgsrc/sysutils/Makefile 2012/03/06 04:54:54 1.534
+++ pkgsrc/sysutils/Makefile 2012/03/08 01:11:21 1.535
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: Makefile,v 1.534 2012/03/06 04:54:54 sbd Exp $ 1# $NetBSD: Makefile,v 1.535 2012/03/08 01:11:21 joerg Exp $
2# 2#
3 3
4COMMENT= System utilities 4COMMENT= System utilities
5 5
6SUBDIR+= 855resolution 6SUBDIR+= 855resolution
7SUBDIR+= 915resolution 7SUBDIR+= 915resolution
8SUBDIR+= 9base 8SUBDIR+= 9base
9SUBDIR+= acpica-utils 9SUBDIR+= acpica-utils
10SUBDIR+= acpidump 10SUBDIR+= acpidump
11SUBDIR+= adtool 11SUBDIR+= adtool
12SUBDIR+= afbinit 12SUBDIR+= afbinit
13SUBDIR+= agedu 13SUBDIR+= agedu
14SUBDIR+= amanda 14SUBDIR+= amanda
@@ -255,27 +255,26 @@ SUBDIR+= memtest86 @@ -255,27 +255,26 @@ SUBDIR+= memtest86
255SUBDIR+= memtester 255SUBDIR+= memtester
256SUBDIR+= memtestplus 256SUBDIR+= memtestplus
257SUBDIR+= mencvcd 257SUBDIR+= mencvcd
258SUBDIR+= mesure 258SUBDIR+= mesure
259SUBDIR+= mgm 259SUBDIR+= mgm
260SUBDIR+= mklivecd 260SUBDIR+= mklivecd
261SUBDIR+= mkmemstick 261SUBDIR+= mkmemstick
262SUBDIR+= mksunbootcd 262SUBDIR+= mksunbootcd
263SUBDIR+= mktemp 263SUBDIR+= mktemp
264SUBDIR+= monit 264SUBDIR+= monit
265SUBDIR+= mrsync 265SUBDIR+= mrsync
266SUBDIR+= mtools 266SUBDIR+= mtools
267SUBDIR+= mtoolsfm 267SUBDIR+= mtoolsfm
268SUBDIR+= mtree 
269SUBDIR+= mtscan 268SUBDIR+= mtscan
270SUBDIR+= munin-doc 269SUBDIR+= munin-doc
271SUBDIR+= munin-node 270SUBDIR+= munin-node
272SUBDIR+= munin-server 271SUBDIR+= munin-server
273SUBDIR+= nautilus 272SUBDIR+= nautilus
274SUBDIR+= nautilus-sendto 273SUBDIR+= nautilus-sendto
275SUBDIR+= ndesk-dbus 274SUBDIR+= ndesk-dbus
276SUBDIR+= ndesk-dbus-glib 275SUBDIR+= ndesk-dbus-glib
277SUBDIR+= neb-wipe 276SUBDIR+= neb-wipe
278SUBDIR+= netbsd-kmod-tools 277SUBDIR+= netbsd-kmod-tools
279SUBDIR+= netbt-hcidump 278SUBDIR+= netbt-hcidump
280SUBDIR+= news 279SUBDIR+= news
281SUBDIR+= notification-daemon 280SUBDIR+= notification-daemon

File Deleted: pkgsrc/sysutils/mtree/Attic/Makefile