mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
55f4951c76
- Bump portrevision. Submitted by: Vladislav Sekulic Sys POC <pocsys@cs.toronto.edu> (based on) Approved by: secteam blanket Security: http://www.FreeBSD.org/ports/portaudit/0e43a14d-3f3f-11dc-a79a-0016179b2dd5.html
34 lines
701 B
Makefile
34 lines
701 B
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: pdftohtml
|
|
# Date created: 1 Jun 2001
|
|
# Whom: Soeren Boll Overgaard <boll@tolkien.dk>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pdftohtml
|
|
PORTVERSION= 0.39
|
|
PORTREVISION= 3
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= erwin@FreeBSD.org
|
|
COMMENT= A command-line tool for converting pdf-files into html
|
|
|
|
USE_GHOSTSCRIPT_RUN= yes
|
|
USE_GMAKE= yes
|
|
|
|
PLIST_FILES= bin/pdftohtml
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}
|
|
|
|
pre-patch:
|
|
@${FIND} ${WRKSRC} -name Makefile | ${XARGS} \
|
|
${REINPLACE_CMD} -e "s|-O[0-9]||" -e "s|-g||"
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/pdftohtml ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|