54a0b86543
in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run.
43 lines
1.3 KiB
Makefile
43 lines
1.3 KiB
Makefile
# New ports collection makefile for: privman
|
|
# Date created: 14.06.2003
|
|
# Whom: Kirill Ponomarew <ponomarew@oberon.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= privman
|
|
PORTVERSION= 0.9.3
|
|
CATEGORIES= devel security
|
|
MASTER_SITES= http://www.isso.sparta.com/opensource/privman/downloads/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Library that makes it easy for programs to use privilege separation
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_AUTOTOOLS= libtool:15
|
|
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
|
|
@${REINPLACE_CMD} -e 's|@PACKAGE@.d|@PACKAGE@|g' \
|
|
${WRKSRC}/src/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>
|