96d9ddeb85
PR: ports/41137 Submitted by: maintainer
71 lines
1.8 KiB
Makefile
71 lines
1.8 KiB
Makefile
# New ports collection makefile for: pfaedit
|
|
# Date created: 25 March 2001
|
|
# Whom: KANOU Hiroki <kanou@mil.allnet.ne.jp>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pfaedit
|
|
PORTVERSION= 20${DIST_VER}
|
|
CATEGORIES= print
|
|
MASTER_SITES= http://pfaedit.sourceforge.net/
|
|
DISTFILES= ${EXTRACT_ONLY}
|
|
.if !defined(NOPORTDOCS)
|
|
DISTFILES+= ${DOCFILE}
|
|
.endif
|
|
|
|
MAINTAINER= kanou@mil.allnet.ne.jp
|
|
|
|
LIB_DEPENDS= tiff.4:${PORTSDIR}/graphics/tiff \
|
|
jpeg.9:${PORTSDIR}/graphics/jpeg \
|
|
png.5:${PORTSDIR}/graphics/png \
|
|
ungif.5:${PORTSDIR}/graphics/libungif \
|
|
freetype.9:${PORTSDIR}/print/freetype2
|
|
|
|
USE_GMAKE= yes
|
|
USE_XLIB= yes
|
|
USE_REINPLACE= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib" \
|
|
CFLAGS="$(CFLAGS) -I${LOCALBASE}/include -I${LOCALBASE}/include/freetype2"
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
ALL_TARGET= pfaedit
|
|
|
|
MAN1= pfaedit.1 sfddiff.1
|
|
|
|
DIST_VER= 020728
|
|
EXTRACT_ONLY= ${PORTNAME}_full-${DIST_VER}.tgz cidmaps.tgz
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
DOC_VER= 020626
|
|
DOCFILE= ${PORTNAME}_htdocs-${DOC_VER}.tgz
|
|
.endif
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
post-extract:
|
|
${MKDIR} ${WRKDIR}/html ${WRKSRC}/cidmap
|
|
${TAR} -xzC ${WRKDIR}/html -f ${DISTDIR}/${DOCFILE}
|
|
${RM} ${WRKDIR}/html/cidmaps.tgz
|
|
${MV} ${WRKDIR}/*.cidmap ${WRKSRC}/cidmap
|
|
.endif
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e \
|
|
's,/usr/include/freetype2,${PREFIX}/include/freetype2 -I${PREFIX}/include,g' \
|
|
${WRKSRC}/configure ${WRKSRC}/configure.in \
|
|
${WRKSRC}/configure.pfaedit ${WRKSRC}/configure.pfaedit.in \
|
|
${WRKSRC}/configure.static.in \
|
|
${WRKSRC}/configure.ttfmod ${WRKSRC}/configure.ttfmod.in
|
|
${REINPLACE_CMD} -e 's,/usr/share/,${PREFIX}/share/,g' \
|
|
${WRKSRC}/pfaedit/pfaedit.1
|
|
${REINPLACE_CMD} -e 's,/usr/pkg/,${PREFIX}/,g' ${WRKSRC}/*/[mM]akefile.*
|
|
|
|
post-install:
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/LICENSE ${DOCSDIR}
|
|
.if !defined(NOPORTDOCS)
|
|
${INSTALL_DATA} ${WRKDIR}/html/* ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|