mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
19528f71b6
* Use single digit for soversion * Support DragonFly * Drop unnecessary sed lines by adjusting MAKE_ARGS * Bump dependent ports PR: 192666 Submitted by: Jan Beich Approved by: portmgr (implicit, dependent port unstaged)
26 lines
622 B
Makefile
26 lines
622 B
Makefile
# Created by: Ying-Chieh Liao <ijliao@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= domc
|
|
PORTVERSION= 0.8.0
|
|
PORTREVISION= 3
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://www.ioplex.com/~miallen/domc/dl/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Lightweight implementation of the DOM in ANSI C
|
|
|
|
LICENSE= MIT
|
|
|
|
LIB_DEPENDS= libexpat.so:${PORTSDIR}/textproc/expat2 \
|
|
libmba.so:${PORTSDIR}/devel/libmba
|
|
|
|
USES= gmake
|
|
MAKE_ENV= prefix="${LOCALBASE}" INSTDIR="${STAGEDIR}${PREFIX}"
|
|
MAKE_ARGS= CC="${CC}" RPM_OPT_FLAGS="${CFLAGS}" \
|
|
MAJVERSION=${PORTVERSION:R:R}
|
|
CFLAGS+= -D__USE_XOPEN=__XSI_VISIBLE
|
|
USE_LDCONFIG= yes
|
|
|
|
.include <bsd.port.mk>
|