summaryrefslogtreecommitdiff
path: root/sysutils/ruby-quota
AgeCommit message (Collapse)AuthorFilesLines
2011-02-21Bump PKGREVISION due to ABI change of ruby18-base.taca1-2/+2
2010-09-10* Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk.taca3-6/+61
* Remove RUBY_HAS_ARCHLIB. * Change PKG_DESTDIR_SUPPORT to user-destdir. * Update patch to support both ruby18 and ruby19. No functional change.
2010-04-22Make ruby-quota really usable on Linux.taca3-12/+48
It wasn't considered about member of struct dqblk, unsigned 64bit integer. Bump PKG_REVISION.
2010-04-21Remove debugging printf() on Linux.taca3-11/+19
Bump PKGREVISION.
2010-03-21Improve portability (NULL v.s. 0).taca3-6/+15
Bump PKGREVISION.
2009-10-27* Fix build problem on Linux 2.6 and later.taca4-12/+85
* Fix module's version was still "0.4.1". Bump PKGREVISION.
2009-06-14Remove @dirrm entries from PLISTsjoerg1-2/+1
2009-02-15Enable DESTDIR support. (No other functional change.)taca1-2/+3
2008-06-19- Switch to use vendor_dir with Ruby 1.8.7.taca2-10/+9
Bump PKGREVISION.
2006-09-24Fix build on DragonFly 1.6+.joerg2-6/+19
2006-01-25getmntinfo still needs a statfs * on DragonFly.joerg2-4/+4
2006-01-03Bump PKGREVISION by update of ruby18-base package.taca1-2/+2
2006-01-03Stop handling DIST_SUBDIR default for Ruby based packages.taca1-4/+4
Second, update distinfo and/or stop using USE_RUBY_DIST_SUBDIR in Makefiles.
2005-11-02Bump PKGREVISION of packages including ruby extention librarytaca1-2/+2
by Ruby 1.8.3 updates.
2005-03-06Bump PKGREVISION with introduce of ruby16-base/ruby18-base pacakge.taca1-2/+2
2005-03-06Cosmetic change with pkglint(1).taca1-2/+2
2005-02-24Add RMD160 digests.agc1-1/+2
2005-01-28Add RUBY_HAS_ARCHLIB which have machine dependent extention libraries.taca1-2/+3
Bump PKG_REVISION.
2004-12-31Use ".${RUBY_DLEXT}" instead of hard-coding ".so".taca1-2/+2
2004-12-15Fix build problem on Solaris.taca3-4/+23
Bump PKGREVISION.
2004-11-28Migrate ruby-quota to use new framework for Ruby packages.taca5-9/+36
Add patches for support statvfs(2) support, too.
2004-03-17- Update MASTER_SITES for sourceforge sites.taca2-5/+5
- Update distinfo since distfile has changed.
2004-03-16Add ruby to CATEGORIES.taca1-2/+2
2004-03-15- Update MASTER_SITES and HOMEPAGE.taca2-6/+6
- Update distinfo.
2003-07-21COMMENT should start with a capital letter.martti1-2/+2
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2002-03-30Importing ruby-quota 0.5.1 package.taca4-0/+38
Ruby/Quota ------------------------------------------------------------------------------- This module provides functions which manipulate disk quotas. ------------------------------------------------------------------------------- SUPPORT ENVIRONMENT * Linux 2.4 or later * Solaris 2.6, 7, 8 * FreeBSD, NetBSD (OpenBSD,.. ?) ------------------------------------------------------------------------------- SYNOPSIS Quota::GroupID.new(id) Quota::GroupID[id] Quota::UserID.new(id) Quota::UserID[id] Quota.quotaon(dev, quotas) Quota.quotaoff(dev) Quota.getquota(dev, uid) Quota.setquota(dev, uid, dq) Quota.setqlim(dev, uid, dq) # *BSD does not have this function. Quota.sync(dev) * 'dev' is a device file or a mount point (e.g. /dev/hda0, /mnt/foo). On * BSD, this library try to find a mounted directory from a given filesystem using getmntinfo(). * 'quotas' is a quotas file. * 'uid' is an integer value, an user id or a group id. If it is an integer, it is treated as an user id. * 'dq' is an entry of the quotas. its members are same as 'dqblk' structure (e.g. dqb_curblocks => dq.curblocks). see also the quotactl man pages and header files (e.g. linux/quota.h).