mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
984b385456
- Add LICENSE_FILE - Switch to options helpers - Regenerate patches with `make makepatch`
31 lines
619 B
Makefile
31 lines
619 B
Makefile
# Created by: Maxim Sobolev <sobomax@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xlhtml
|
|
PORTVERSION= 0.5
|
|
PORTREVISION= 4
|
|
PORTEPOCH= 1
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= SF/chicago/${PORTNAME}/backend
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Convert Excel and PowerPoint files to HTML and text
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= gmake tar:tgz
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install-DOCS-on:
|
|
.for dir in xlhtml ppthtml
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}/${dir}
|
|
cd ${WRKSRC}/${dir} && \
|
|
${INSTALL_DATA} ChangeLog README THANKS \
|
|
${STAGEDIR}${DOCSDIR}/${dir}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|