mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
70be79bafd
- Get rid of USE_REINPLACE - Make portlint happy with the IGNORE value PR: 95149 (mostly) Submitted by: Vasil Dimov
37 lines
1.1 KiB
Makefile
37 lines
1.1 KiB
Makefile
# New ports collection makefile for: wxgtk_doc_26
|
|
# Date created: November, 15th 2005
|
|
# Whom: Matthias Sund <m.sund@arcor.de>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= wxgtk_doc
|
|
PORTVERSION= 2.6.3
|
|
CATEGORIES= x11-toolkits
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= wxwindows
|
|
DISTNAME= wxWidgets-${PORTVERSION}-HTML
|
|
|
|
MAINTAINER= m.sund@arcor.de
|
|
COMMENT= wxWidgets ${PORTVERSION} HTML documentation
|
|
|
|
LATEST_LINK= wxgtk26_doc
|
|
|
|
NO_BUILD= YES
|
|
|
|
WXGTKDOCDIR= share/doc/${PORTNAME}_26
|
|
WRKSRC= ${WRKDIR}/wxWidgets-${PORTVERSION}/docs
|
|
|
|
do-install:
|
|
@${MKDIR} ${PREFIX}/${WXGTKDOCDIR}
|
|
@(cd ${WRKSRC} && ${FIND} html -type d -exec ${MKDIR} ${PREFIX}/${WXGTKDOCDIR}/{} \;)
|
|
@(cd ${WRKSRC} && ${FIND} html -type f -exec ${INSTALL_MAN} {} ${PREFIX}/${WXGTKDOCDIR}/{} \;)
|
|
|
|
post-install:
|
|
@(cd ${WRKSRC} && ${FIND} html -type f -exec ${ECHO} ${WXGTKDOCDIR}/{} >> ${TMPPLIST} \;)
|
|
@(cd ${WRKSRC} && ${FIND} html/* -type d -exec ${ECHO} @dirrm ${WXGTKDOCDIR}/{} >> ${TMPPLIST} \;)
|
|
@${ECHO} @dirrm ${WXGTKDOCDIR}/html >> ${TMPPLIST}
|
|
@${ECHO} @dirrm ${WXGTKDOCDIR} >> ${TMPPLIST}
|
|
|
|
.include <bsd.port.mk>
|