Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

11
sysutils/ipa/DESCR Normal file
View File

@@ -0,0 +1,11 @@
IPA -- Pluggable Accounting System
Main features:
- Flexible general purpose accounting system;
- Supports static and dynamic rules;
- Support limits, sublimits and thresholds;
- Works with external accounting modules;
- Works with external database modules;
- Works with external statistics modules;
- Accounting per specified period of a week.

31
sysutils/ipa/Makefile Normal file
View File

@@ -0,0 +1,31 @@
# $NetBSD: Makefile,v 1.16 2012/10/23 19:51:08 asau Exp $
#
DISTNAME= ipa-2.1.2
CATEGORIES= sysutils
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=ipa-system/}
EXTRACT_SUFX= .tar.bz2
MAINTAINER= simon@comsys.ntu-kpi.kiev.ua
HOMEPAGE= http://ipa-system.sourceforge.net/
COMMENT= Pluggable accounting system
LICENSE= 2-clause-bsd
GNU_CONFIGURE= yes
.include "../../mk/bsd.prefs.mk"
RCD_SCRIPTS= ipa
.if ${OPSYS} == "NetBSD" || ${OPSYS} == "DragonFly"
RCD_SCRIPT_SRC.ipa= ${FILESDIR}/ipa.sh
.else
RCD_SCRIPT_SRC.ipa= ${WRKSRC}/etc/ipa.sh.sample
.endif
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q}
CONFIGURE_ARGS+= --with-mandir-ru=ru
.include "options.mk"
.include "../../mk/bsd.pkg.mk"

18
sysutils/ipa/PLIST Normal file
View File

@@ -0,0 +1,18 @@
@comment $NetBSD: PLIST,v 1.2 2007/01/23 16:59:51 reed Exp $
bin/ipa
bin/ipactl
bin/ipastat
include/ipa_mod.h
man/man3/ipa_mod.3
man/man5/ipa.conf.5
man/man5/ipastat.conf.5
man/man8/ipa.8
man/man8/ipactl.8
man/man8/ipastat.8
man/ru/man3/ipa_mod.3
man/ru/man5/ipa.conf.5
man/ru/man5/ipastat.conf.5
man/ru/man8/ipa.8
man/ru/man8/ipactl.8
man/ru/man8/ipastat.8
share/examples/rc.d/ipa

View File

@@ -0,0 +1,13 @@
# $NetBSD: buildlink3.mk,v 1.2 2009/03/20 19:25:24 joerg Exp $
BUILDLINK_TREE+= ipa
.if !defined(IPA_BUILDLINK3_MK)
IPA_BUILDLINK3_MK:=
BUILDLINK_API_DEPENDS.ipa+= ipa>=2.0
BUILDLINK_PKGSRCDIR.ipa?= ../../sysutils/ipa
BUILDLINK_DEPMETHOD.ipa?= build
.endif # IPA_BUILDLINK3_MK
BUILDLINK_TREE+= -ipa

5
sysutils/ipa/distinfo Normal file
View File

@@ -0,0 +1,5 @@
$NetBSD: distinfo,v 1.12 2012/07/17 21:00:34 asau Exp $
SHA1 (ipa-2.1.2.tar.bz2) = cbddf1409fd191f42a4dfcc565220f1e96cd3f0f
RMD160 (ipa-2.1.2.tar.bz2) = e59e9faaec4df36205757448d7f990f5cff40f1b
Size (ipa-2.1.2.tar.bz2) = 317087 bytes

23
sysutils/ipa/files/ipa.sh Normal file
View File

@@ -0,0 +1,23 @@
#!@RCD_SCRIPTS_SHELL@
#
# $NetBSD: ipa.sh,v 1.1 2006/10/18 11:45:23 markd Exp $
#
# If some IPA module requires some services, then they should
# be specified after REQUIRE, by default REQUIRE contains
# only syslogd, since ipa uses syslog for logging by default
# and does not require anything more for running.
# PROVIDE: ipa
# REQUIRE: syslogd
# BEFORE: LOGIN
. /etc/rc.subr
name="ipa"
rcvar=$name
command="@PREFIX@/bin/${name}"
extra_commands="reload"
load_rc_config $name
run_rc_command "$1"

43
sysutils/ipa/options.mk Normal file
View File

@@ -0,0 +1,43 @@
# $NetBSD: options.mk,v 1.2 2012/07/17 21:00:34 asau Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.ipa
PKG_SUPPORTED_OPTIONS= ipa-without-autorules \
ipa-without-limits ipa-without-rules \
ipa-without-sublimits ipa-without-thresholds
.include "../../mk/bsd.options.mk"
###
### Disable dynamic rules support
###
.if !empty(PKG_OPTIONS:Mipa-without-autorules)
CONFIGURE_ARGS+= --disable-autorules
.endif
###
### Disable limits support
###
.if !empty(PKG_OPTIONS:Mipa-without-limits)
CONFIGURE_ARGS+= --disable-limits
.endif
###
### Disable static rules support
###
.if !empty(PKG_OPTIONS:Mipa-without-rules)
CONFIGURE_ARGS+= --disable-rules
.endif
###
### Disable sublimits support
###
.if !empty(PKG_OPTIONS:Mipa-without-sublimits)
CONFIGURE_ARGS+= --disable-sublimits
.endif
###
### Disable thresholds support
###
.if !empty(PKG_OPTIONS:Mipa-without-thresholds)
CONFIGURE_ARGS+= --disable-thresholds
.endif