mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
6f6fbe4bdf
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead PR: 157936 Submitted by: myself Exp-runs by: pav Approved by: pav
47 lines
1.1 KiB
Makefile
47 lines
1.1 KiB
Makefile
# New ports collection makefile for: posadis
|
|
# Date Created: 27 Feb 2003
|
|
# Whom: Sergei Kolobov <sergei@kolobov.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= posadis
|
|
PORTVERSION= 0.60.5
|
|
PORTREVISION= 5
|
|
CATEGORIES= dns ipv6
|
|
MASTER_SITES= SF/${PORTNAME}/OldFiles
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Domain Name Server (DNS) implementation
|
|
|
|
LIB_DEPENDS= poslib.0:${PORTSDIR}/devel/poslib
|
|
|
|
USE_AUTOTOOLS= autoconf libltdl libtool
|
|
USE_LDCONFIG= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
.if defined(WITH_FAM) || exists(${LOCALBASE}/lib/libfam.so)
|
|
CONFIGURE_ARGS= --enable-fam
|
|
BUILD_DEPENDS= ${LOCALBASE}/include/fam.h:${PORTSDIR}/devel/fam
|
|
RUN_DEPENDS= ${LOCALBASE}/bin/fam:${PORTSDIR}/devel/fam
|
|
PLIST_SUB= FAM=""
|
|
.else
|
|
CONFIGURE_ARGS= --disable-fam
|
|
PLIST_SUB= FAM="@comment "
|
|
.endif
|
|
|
|
PLIST_SUB+= VERSION="${PORTVERSION}"
|
|
|
|
MAN1= getzone.1 posadis.1 posadis-getroots.1 posask.1 poshost.1
|
|
MAN5= posadisrc.5
|
|
DOCS= AUTHORS ChangeLog README TODO
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
post-install:
|
|
@${MKDIR} ${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|