Sat May 12 22:08:24 2012 UTC ()
Mark this as NOT_FOR_PLATFORM on netbsd-6 and up. It is based on the
historical quota API and has no internal abstractions, so it would
require pretty much a total rewrite for the new quota API. This could
be done, of course. Contact me if there's any interest.


(dholland)
diff -r1.13 -r1.14 pkgsrc/sysutils/setquota/Makefile

cvs diff -r1.13 -r1.14 pkgsrc/sysutils/setquota/Makefile (expand / switch to unified diff)

--- pkgsrc/sysutils/setquota/Makefile 2009/02/08 00:26:32 1.13
+++ pkgsrc/sysutils/setquota/Makefile 2012/05/12 22:08:24 1.14
@@ -1,23 +1,28 @@ @@ -1,23 +1,28 @@
1# $NetBSD: Makefile,v 1.13 2009/02/08 00:26:32 joerg Exp $ 1# $NetBSD: Makefile,v 1.14 2012/05/12 22:08:24 dholland Exp $
2# 2#
3 3
4DISTNAME= setquota-0.1 4DISTNAME= setquota-0.1
5PKGREVISION= 2 5PKGREVISION= 2
6CATEGORIES= sysutils 6CATEGORIES= sysutils
7MASTER_SITES= ftp://ftp.jurai.net/users/winter/ 7MASTER_SITES= ftp://ftp.jurai.net/users/winter/
8 8
9MAINTAINER= pkgsrc-users@NetBSD.org 9MAINTAINER= pkgsrc-users@NetBSD.org
10HOMEPAGE= # unknown 10HOMEPAGE= # unknown
11COMMENT= Command line quota tools 11COMMENT= Command line quota tools
12 12
13PKG_DESTDIR_SUPPORT= user-destdir 13PKG_DESTDIR_SUPPORT= user-destdir
14 14
15# BSD oriented, haven't checked on other environment now 15# BSD oriented, haven't checked on other environment now
16ONLY_FOR_PLATFORM= NetBSD-*-* DragonFly-*-* 16ONLY_FOR_PLATFORM= NetBSD-*-* DragonFly-*-*
17 17
 18# not portable to netbsd-6 and up quota system
 19# (would be easier to rewrite it than to patch it, if there's any interest
 20# bug dholland)
 21NOT_FOR_PLATFORM= NetBSD-[6-9]*-*
 22
18WRKSRC= ${WRKDIR}/setquota/ 23WRKSRC= ${WRKDIR}/setquota/
19 24
20INSTALLATION_DIRS= ${PKGMANDIR}/cat8 ${PKGMANDIR}/man8 sbin 25INSTALLATION_DIRS= ${PKGMANDIR}/cat8 ${PKGMANDIR}/man8 sbin
21USE_BSD_MAKEFILE= yes 26USE_BSD_MAKEFILE= yes
22 27
23.include "../../mk/bsd.pkg.mk" 28.include "../../mk/bsd.pkg.mk"