d6991558c7
PR: 18049 Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
49 lines
1.5 KiB
Makefile
49 lines
1.5 KiB
Makefile
# New ports collection makefile for: EZWGL
|
|
# Date created: 4 May 1998
|
|
# Whom: Andrey Zakhvatov
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= EZWGL
|
|
PORTVERSION= 1.50
|
|
CATEGORIES= graphics devel
|
|
MASTER_SITES= ftp://ftp.ma.utexas.edu/pub/mzou/
|
|
DISTFILES= ${DISTNAME}-demo.tgz ${DISTNAME}-doc.tgz ${DISTNAME}-src.tgz
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
|
|
LIB_DEPENDS= tiff.4:${PORTSDIR}/graphics/tiff \
|
|
png.3:${PORTSDIR}/graphics/png
|
|
|
|
EXTRACT_AFTER_ARGS= | ${TAR} --exclude 'CVS' -xf -
|
|
|
|
USE_X_PREFIX= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LIBS="-L${LOCALBASE}/lib"
|
|
|
|
.include "files/manpages"
|
|
|
|
post-install:
|
|
.for file in ${MAN3}
|
|
${INSTALL_MAN} ${WRKSRC}/doc/man3/${file} ${PREFIX}/man/man3
|
|
.endfor
|
|
@${MKDIR} ${PREFIX}/share/examples/EZ
|
|
${TAR} -C ${WRKSRC}/examples --exclude 'Makefile.in' -cf - . | \
|
|
${TAR} -C ${PREFIX}/share/examples/EZ --unlink -xf -
|
|
${TAR} -C ${WRKSRC} --exclude 'Makefile.in' -cf - demos | \
|
|
${TAR} -C ${PREFIX}/share/examples/EZ --unlink -xf -
|
|
find ${PREFIX}/share/examples/EZ | xargs ${CHOWN} ${SHAREOWN}:${SHAREGRP}
|
|
find ${PREFIX}/share/examples/EZ -type f | xargs ${CHMOD} ${SHAREMODE}
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${PREFIX}/share/doc/EZ
|
|
${TAR} -C ${WRKSRC}/doc --exclude 'misc' -cf - html ps | \
|
|
${TAR} -C ${PREFIX}/share/doc/EZ --unlink -xf -
|
|
find ${PREFIX}/share/doc/EZ | xargs ${CHOWN} ${SHAREOWN}:${SHAREGRP}
|
|
find ${PREFIX}/share/doc/EZ -type f | xargs ${CHMOD} ${SHAREMODE}
|
|
.endif
|
|
${LDCONFIG} -m ${PREFIX}/lib
|
|
|
|
.include <bsd.port.mk>
|