pkgsrc/textproc/xalan-c/Makefile
jlam 9c8b5ede43 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no
developer is officially maintaining the package.

The rationale for changing this from "tech-pkg" to "pkgsrc-users" is
that it implies that any user can try to maintain the package (by
submitting patches to the mailing list).  Since the folks most likely
to care about the package are the folks that want to use it or are
already using it, this would leverage the energy of users who aren't
developers.
2006-03-04 21:28:51 +00:00

47 lines
1.2 KiB
Makefile

# $NetBSD: Makefile,v 1.23 2006/03/04 21:30:52 jlam Exp $
#
DISTNAME= Xalan-C_1_6-src
PKGNAME= xalan-c-1.6
PKGREVISION= 4
CATEGORIES= textproc
MASTER_SITES= http://archive.apache.org/dist/xml/xalan-c/source/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://xml.apache.org/xalan-c/
COMMENT= XSLT processor of the Apache Project
WRKSRC= ${WRKDIR}/xml-xalan/c/src/xalanc
USE_TOOLS+= gmake
USE_LANGUAGES= c c++
.include "../../mk/bsd.prefs.mk"
.if ${LOWER_OPSYS} == "SunOS"
XALAN_PLATFORM= solaris
.elif ${LOWER_OPSYS} == "Darwin"
XALAN_PLATFORM= macosx
.else
XALAN_PLATFORM= ${LOWER_OPSYS}
.endif
XALAN_ENV= XALANCROOT="${WRKDIR}/xml-xalan/c" ICUROOT="${LOCALBASE}"
HAS_CONFIGURE= YES
CONFIGURE_SCRIPT= ./runConfigure
CONFIGURE_ARGS+= -C --prefix=${PREFIX:Q}
CONFIGURE_ARGS+= -p ${XALAN_PLATFORM}
CONFIGURE_ARGS+= -t icu
CONFIGURE_ARGS+= -r pthread
# 1.7.0 needs the following argument.
#CONFIGURE_ARGS+= -m inmem
CONFIGURE_ENV+= ${XALAN_ENV}
MAKE_ENV+= ${XALAN_ENV}
pre-configure:
@${CP} ${PKGSRCDIR}/mk/gnu-config/config.guess ${WRKSRC}
@${CP} ${PKGSRCDIR}/mk/gnu-config/config.sub ${WRKSRC}
.include "../../mk/pthread.buildlink3.mk"
.include "../../textproc/icu/buildlink3.mk"
.include "../../textproc/xerces-c/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"