cfbccda919
* jpeg2pdf is fast. Unlike ImageMagick or other general image conversion tools, jpeg2pdf is specialized for its task an does this very efficiently. * jpeg2pdf generates compact PDF files. Unlike general image conversion tools, jpeg2pdf doesn't do any processing/rescaling of the images, nor does it generate thumbnails of the pages in the PDF file. * jpeg2pdf is a command-line program. So it can very easily be integrated in a shell script or a web server process to automate a conversion task. PR: ports/76562 Submitted by: <ports@c0decafe.net>
26 lines
516 B
Makefile
26 lines
516 B
Makefile
# New ports collection makefile for: jpeg2pdf
|
|
# Date created: 2005-01-22
|
|
# Whom: <ports@c0decafe.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= jpeg2pdf
|
|
PORTVERSION= 0.12
|
|
CATEGORIES= graphics converters
|
|
MASTER_SITES= http://koan.studentenweb.org/software/
|
|
|
|
MAINTAINER= ports@c0decafe.net
|
|
COMMENT= Converts a directory of JPEG (JPG) files to a PDF file
|
|
|
|
USE_BZIP2= yes
|
|
USE_RUBY= yes
|
|
USE_RUBY_SETUP= yes
|
|
RUBY_SETUP= install.rb
|
|
CONFIGURE_ARGS= --prefix=${PREFIX}
|
|
|
|
pre-install:
|
|
@${RM} ${WRKSRC}/bin/test.rb
|
|
|
|
.include <bsd.port.mk>
|