diff options
author | osa <osa@FreeBSD.org> | 2003-06-15 02:36:14 +0800 |
---|---|---|
committer | osa <osa@FreeBSD.org> | 2003-06-15 02:36:14 +0800 |
commit | e004b2f09b5bb59ab600f563f53799f4a0c141b3 (patch) | |
tree | 1b9f92add4b73d49b391cc0d872df7783b7c3989 /devel/privman/Makefile | |
parent | 766a199b3ac2adad20cacccd97e8c0c5bf4cbe62 (diff) | |
download | freebsd-ports-gnome-e004b2f09b5bb59ab600f563f53799f4a0c141b3.tar.gz freebsd-ports-gnome-e004b2f09b5bb59ab600f563f53799f4a0c141b3.tar.zst freebsd-ports-gnome-e004b2f09b5bb59ab600f563f53799f4a0c141b3.zip |
New port: library that makes it easy for programs to use
privilege separation
Submitted by: Kirill Ponomarew <ponomarew@oberon.net>
PR: 53314
Approved by: fjoe (implicit)
Diffstat (limited to 'devel/privman/Makefile')
-rw-r--r-- | devel/privman/Makefile | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/devel/privman/Makefile b/devel/privman/Makefile new file mode 100644 index 000000000000..549e7f24bb8e --- /dev/null +++ b/devel/privman/Makefile @@ -0,0 +1,41 @@ +# New ports collection makefile for: privman +# Date created: 14.06.2003 +# Whom: Kirill Ponomarew <ponomarew@oberon.net> +# +# $FreeBSD$ +# + +PORTNAME= privman +PORTVERSION= 0.9.2 +CATEGORIES= devel security +MASTER_SITES= http://opensource.nailabs.com/privman/downloads/ + +MAINTAINER= ponomarew@oberon.net +COMMENT= Library that makes it easy for programs to use privilege separation + +GNU_CONFIGURE= yes +USE_LIBTOOL= yes +INSTALLS_SHLIB= yes +USE_REINPLACE= yes +CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} + +post-patch: + @${REINPLACE_CMD} -e \ + 's|$$(PACKAGE).d|$$(PACKAGE)|g' \ + ${WRKSRC}/etc/Makefile.in + +MAN3= priv_bind.3 priv_custom.3 priv_daemon.3 priv_execve.3 \ + priv_fopen.3 priv_fork.3 priv_init.3 priv_invoke_cap_fn.3 \ + priv_invoke_info_fn.3 priv_open.3 priv_pam.3 \ + priv_pam_acct_mgmt.3 priv_pam_authenticate.3 priv_pam_chauthtok.3 \ + priv_pam_close_session.3 priv_pam_end.3 priv_pam_fail_delay.3 \ + priv_pam_get_item.3 priv_pam_getenv.3 priv_pam_open_session.3 \ + priv_pam_putenv.3 priv_pam_set_item.3 priv_pam_setcred.3 \ + priv_pam_start.3 priv_pclose.3 priv_popen.3 priv_register_cap_fn.3 \ + priv_register_info_fn.3 priv_rerunas.3 priv_respawn_as.3 \ + priv_wait4.3 + +MAN5= privman_conf.5 +MAN7= privman.7 + +.include <bsd.port.mk> |