2001-10-09 05:44:38 +00:00
|
|
|
# ex:ts=8
|
|
|
|
# New ports collection makefile for: domc
|
|
|
|
# Date created: Oct 8, 2001
|
|
|
|
# Whom: ijliao
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= domc
|
2005-03-08 16:30:39 +00:00
|
|
|
PORTVERSION= 0.8.0
|
2006-01-30 23:20:05 +00:00
|
|
|
PORTREVISION= 1
|
2002-09-24 06:46:04 +00:00
|
|
|
CATEGORIES= textproc
|
2003-05-22 18:11:54 +00:00
|
|
|
MASTER_SITES= http://www.ioplex.com/~miallen/domc/dl/
|
2001-10-09 05:44:38 +00:00
|
|
|
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
2003-02-20 19:21:36 +00:00
|
|
|
COMMENT= A light weight implementation of the DOM in ANSI C
|
2001-10-09 05:44:38 +00:00
|
|
|
|
2006-01-30 23:20:05 +00:00
|
|
|
LIB_DEPENDS= expat.6:${PORTSDIR}/textproc/expat2 \
|
2006-11-03 07:17:12 +00:00
|
|
|
mba.0:${PORTSDIR}/devel/libmba
|
2005-03-08 16:30:39 +00:00
|
|
|
|
|
|
|
MAN3= DOM_CharacterData.3m DOM_Document.3m DOM_Element.3m \
|
|
|
|
DOM_Implementation.3m DOM_NamedNodeMap.3m DOM_Node.3m \
|
|
|
|
DOM_NodeList.3m DOM_Text.3m
|
|
|
|
MANCOMPRESSED= yes
|
2001-10-09 05:44:38 +00:00
|
|
|
|
|
|
|
SHLIB_MAJOR= 0
|
2001-11-23 17:36:44 +00:00
|
|
|
|
2005-03-08 16:30:39 +00:00
|
|
|
USE_GMAKE= yes
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
MAKE_ENV+= SHLIB_MAJOR="${SHLIB_MAJOR}" INSTDIR=${PREFIX} LDFLAGS="${LDFLAGS}"
|
2006-08-15 01:04:55 +00:00
|
|
|
USE_LDCONFIG= yes
|
2002-09-24 08:01:07 +00:00
|
|
|
|
2001-10-09 05:44:38 +00:00
|
|
|
PLIST_SUB= SHLIB_MAJOR="${SHLIB_MAJOR}"
|
|
|
|
|
2005-04-10 21:00:01 +00:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
2005-04-30 19:20:31 +00:00
|
|
|
.if ${OSVERSION} < 500039
|
|
|
|
IGNORE= requires wchar functions to use the produced library
|
|
|
|
.endif
|
|
|
|
|
2005-04-10 21:00:01 +00:00
|
|
|
.include <bsd.port.post.mk>
|