642be1b81d
after r254273 - Fix a bunch of ports to properly work after this - Mark converters/libiconv as IGNORE for systems with iconv in libc Reviewed by: bapt Approved by: portmgr (bapt) Discussed with: bapt, bsam (who both contributed ideas and code)
42 lines
931 B
Makefile
42 lines
931 B
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: xmlppm
|
|
# Date created: May 15, 2001
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= xmlppm
|
|
PORTVERSION= 0.98.3
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-src/${PORTVERSION} \
|
|
http://www.cs.cornell.edu/People/jcheney/xmlppm/
|
|
|
|
|
|
MAINTAINER= hsmtkk@gmail.com
|
|
COMMENT= XML-Conscious PPM Compression
|
|
|
|
LIB_DEPENDS= expat.6:${PORTSDIR}/textproc/expat2
|
|
|
|
USES= iconv
|
|
USE_GMAKE= yes
|
|
MAKE_ARGS= CC="${CXX}" CFLAGS="${CXXFLAGS}" \
|
|
CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib -lexpat ${ICONV_LIB}"
|
|
GNU_CONFIGURE= yes
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
PORTDOCS= README
|
|
.endif
|
|
|
|
PLIST_FILES= bin/xmlppm bin/xmlunppm
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/xmlppm ${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/xmlunppm ${PREFIX}/bin
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|