2003-05-12 03:19:08 +02:00
|
|
|
# New ports collection makefile for: libdjbdns
|
|
|
|
# Date created: 01 Apr 2002
|
|
|
|
# Whom: Sergei Kolobov <sergei@kolobov.com>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= libdjbdns
|
|
|
|
PORTVERSION= 1.05
|
2004-02-04 06:21:48 +01:00
|
|
|
PORTREVISION= 1
|
2003-09-05 06:54:37 +02:00
|
|
|
CATEGORIES= dns
|
2003-05-12 03:19:08 +02:00
|
|
|
MASTER_SITES= http://smarden.org/pape/djb/manpages/
|
|
|
|
DISTNAME= djbdns-pd-${PORTVERSION}
|
|
|
|
|
2008-07-27 06:30:53 +02:00
|
|
|
MAINTAINER= ports@FreeBSD.org
|
2003-05-12 03:19:08 +02:00
|
|
|
COMMENT= Public domain DNS client library
|
|
|
|
|
- Remove unneeded dependency from gtk12/gtk20 [1]
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Remove X11BASE support in favor of LOCALBASE or PREFIX
- Use USE_LDCONFIG instead of INSTALLS_SHLIB
- Remove unneeded USE_GCC 3.4+
Thanks to all Helpers:
Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr,
ehaupt, nox, itetcu, flz, pav
PR: 116263
Tested on: pointyhat
Approved by: portmgr (pav)
2008-04-19 19:56:05 +02:00
|
|
|
USE_LDCONFIG= yes
|
2003-05-12 03:19:08 +02:00
|
|
|
USE_GMAKE= yes
|
|
|
|
ALL_TARGET= it
|
|
|
|
|
|
|
|
LIBS= libdjbdns.a libdjbdns.so.1
|
|
|
|
INCLUDES= alloc.h byte.h case.h dns.h env.h error.h fmt.h \
|
|
|
|
gen_alloc.h gen_allocdefs.h iopause.h ip4.h ndelay.h \
|
|
|
|
open.h openreadclose.h readclose.h scan.h select.h \
|
|
|
|
socket.h str.h stralloc.h tai.h taia.h uint16.h \
|
|
|
|
uint32.h uint64.h
|
|
|
|
|
|
|
|
do-install:
|
|
|
|
@${MKDIR} ${PREFIX}/include/libdjbdns
|
|
|
|
cd ${WRKSRC} && \
|
|
|
|
${INSTALL_DATA} ${LIBS} ${PREFIX}/lib && \
|
|
|
|
${INSTALL_DATA} ${INCLUDES} ${PREFIX}/include/libdjbdns
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|