3f651573ad
Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed.
30 lines
583 B
Makefile
30 lines
583 B
Makefile
# New ports collection makefile for: libident
|
|
# Date created: 9 October 1995
|
|
# Whom: torstenb@FreeBSD.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libident
|
|
PORTVERSION= 0.32
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://rdenisc.free.fr/libident/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A small library to interface the ident protocol server (rfc1413)
|
|
|
|
USE_GNOME= gnometarget lthack
|
|
USE_LIBTOOL_VER=13
|
|
INSTALLS_SHLIB= yes
|
|
|
|
MAN3= ident.3
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for i in README
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|