2001-05-15 04:09:09 +00:00
|
|
|
# ex:ts=8
|
|
|
|
# New ports collection makefile for: xmlppm
|
|
|
|
# Date created: May 15, 2001
|
|
|
|
# Whom: ijliao
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= xmlppm
|
2009-07-25 00:49:53 +00:00
|
|
|
PORTVERSION= 0.98.3
|
2001-05-15 04:09:09 +00:00
|
|
|
CATEGORIES= textproc
|
2009-08-22 00:37:17 +00:00
|
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-src/${PORTVERSION} \
|
2001-05-15 04:09:09 +00:00
|
|
|
http://www.cs.cornell.edu/People/jcheney/xmlppm/
|
2009-08-22 00:37:17 +00:00
|
|
|
|
2001-05-15 04:09:09 +00:00
|
|
|
|
2009-07-25 00:49:53 +00:00
|
|
|
MAINTAINER= hsmtkk@gmail.com
|
2003-02-20 19:21:36 +00:00
|
|
|
COMMENT= XML-Conscious PPM Compression
|
2001-05-15 04:09:09 +00:00
|
|
|
|
2006-01-30 23:20:05 +00:00
|
|
|
LIB_DEPENDS= expat.6:${PORTSDIR}/textproc/expat2
|
2001-05-15 04:09:09 +00:00
|
|
|
|
2004-03-30 19:56:43 +00:00
|
|
|
USE_ICONV= yes
|
2004-08-18 18:34:33 +00:00
|
|
|
USE_GMAKE= yes
|
2005-05-03 11:02:53 +00:00
|
|
|
MAKE_ARGS= CC="${CXX}" CFLAGS="${CXXFLAGS}" \
|
|
|
|
CPPFLAGS="-I${LOCALBASE}/include" \
|
2003-05-18 23:23:13 +00:00
|
|
|
LDFLAGS="-L${LOCALBASE}/lib -lexpat -liconv"
|
2009-07-25 00:49:53 +00:00
|
|
|
GNU_CONFIGURE= yes
|
2001-05-15 04:09:09 +00:00
|
|
|
|
2005-05-03 11:02:53 +00:00
|
|
|
.if !defined(NOPORTDOCS)
|
2004-08-18 18:34:33 +00:00
|
|
|
PORTDOCS= README
|
2005-05-03 11:02:53 +00:00
|
|
|
.endif
|
|
|
|
|
2004-08-18 18:34:33 +00:00
|
|
|
PLIST_FILES= bin/xmlppm bin/xmlunppm
|
2004-08-16 02:33:05 +00:00
|
|
|
|
2001-05-15 04:09:09 +00:00
|
|
|
do-install:
|
2009-07-25 00:49:53 +00:00
|
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/xmlppm ${PREFIX}/bin
|
|
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/xmlunppm ${PREFIX}/bin
|
2003-05-18 23:23:13 +00:00
|
|
|
.if !defined(NOPORTDOCS)
|
|
|
|
@${MKDIR} ${DOCSDIR}
|
2009-07-25 00:49:53 +00:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
2003-05-18 23:23:13 +00:00
|
|
|
.endif
|
2001-05-15 04:09:09 +00:00
|
|
|
|
2004-08-18 18:34:33 +00:00
|
|
|
.include <bsd.port.mk>
|