mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
7f445804a9
r472723 seems to have been incomplete PR: 229442 Submitted by: Yasuhiro KIMURA <yasu@utahime.org>
35 lines
723 B
Makefile
35 lines
723 B
Makefile
# Created by: Maxim Sobolev <sobomax@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xlhtml
|
|
PORTVERSION= 0.5
|
|
PORTREVISION= 5
|
|
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= autoreconf 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
|
|
|
|
post-build:
|
|
@${STRIP_CMD} ${WRKSRC}/xlhtml/xlhtml
|
|
@${STRIP_CMD} ${WRKSRC}/ppthtml/ppthtml
|
|
|
|
.include <bsd.port.mk>
|