Commit graph

21 commits

Author SHA1 Message Date
taca
33e824faca Bump PKGREVISION due to ABI change of ruby18-base. 2011-02-21 16:01:10 +00:00
taca
8c7906613f * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk.
* Remove RUBY_HAS_ARCHLIB.
* Change PKG_DESTDIR_SUPPORT to user-destdir.
* Update patch to support both ruby18 and ruby19.

No functional change.
2010-09-10 07:58:44 +00:00
taca
bfe349631a Make ruby-quota really usable on Linux.
It wasn't considered about member of struct dqblk, unsigned 64bit integer.

Bump PKG_REVISION.
2010-04-22 15:01:07 +00:00
taca
fae1026da3 Remove debugging printf() on Linux.
Bump PKGREVISION.
2010-04-21 05:34:31 +00:00
taca
161f580ba2 Improve portability (NULL v.s. 0).
Bump PKGREVISION.
2010-03-21 14:49:10 +00:00
taca
a44572707b * Fix build problem on Linux 2.6 and later.
* Fix module's version was still "0.4.1".

Bump PKGREVISION.
2009-10-27 15:29:32 +00:00
taca
cf61c71dd2 Enable DESTDIR support. (No other functional change.) 2009-02-15 03:37:35 +00:00
taca
f7ceb84d39 - Switch to use vendor_dir with Ruby 1.8.7.
Bump PKGREVISION.
2008-06-19 14:52:11 +00:00
taca
435219cbd2 Bump PKGREVISION by update of ruby18-base package. 2006-01-03 15:07:28 +00:00
taca
b9d791c80d Bump PKGREVISION of packages including ruby extention library
by  Ruby 1.8.3 updates.
2005-11-02 09:48:33 +00:00
taca
0f010b9a66 Bump PKGREVISION with introduce of ruby16-base/ruby18-base pacakge. 2005-03-06 17:19:05 +00:00
taca
cf24692f45 Cosmetic change with pkglint(1). 2005-03-06 13:05:38 +00:00
taca
c3ffe35cf7 Add RUBY_HAS_ARCHLIB which have machine dependent extention libraries.
Bump PKG_REVISION.
2005-01-28 14:08:01 +00:00
taca
0c14be04db Fix build problem on Solaris.
Bump PKGREVISION.
2004-12-15 13:23:12 +00:00
taca
22d292fe71 Migrate ruby-quota to use new framework for Ruby packages.
Add patches for support statvfs(2) support, too.
2004-11-28 04:21:42 +00:00
taca
f76b0df532 - Update MASTER_SITES for sourceforge sites.
- Update distinfo since distfile has changed.
2004-03-17 14:38:02 +00:00
taca
d428fd9d93 Add ruby to CATEGORIES. 2004-03-16 02:01:09 +00:00
taca
54356b4e98 - Update MASTER_SITES and HOMEPAGE.
- Update distinfo.
2004-03-15 14:29:18 +00:00
martti
86c6e000bc COMMENT should start with a capital letter. 2003-07-21 17:24:16 +00:00
grant
ca3be631f2 s/netbsd.org/NetBSD.org/ 2003-07-17 22:50:55 +00:00
taca
821fc52e71 Importing ruby-quota 0.5.1 package.
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).
2002-03-30 16:52:41 +00:00