mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
jpeg2pdf: converts a directory of JPEG (JPG) files to a PDF file
* 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>
This commit is contained in:
parent
eac554e2b5
commit
cfbccda919
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=127143
5 changed files with 66 additions and 0 deletions
|
@ -201,6 +201,7 @@
|
|||
SUBDIR += jpatch
|
||||
SUBDIR += jpeg
|
||||
SUBDIR += jpeg-mmx
|
||||
SUBDIR += jpeg2pdf
|
||||
SUBDIR += jpeg2ps-a4
|
||||
SUBDIR += jpeg2ps-letter
|
||||
SUBDIR += jpeginfo
|
||||
|
|
25
graphics/jpeg2pdf/Makefile
Normal file
25
graphics/jpeg2pdf/Makefile
Normal file
|
@ -0,0 +1,25 @@
|
|||
# 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>
|
2
graphics/jpeg2pdf/distinfo
Normal file
2
graphics/jpeg2pdf/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
MD5 (jpeg2pdf-0.12.tar.bz2) = 65e721d5e284f4e1089fc8c45a881750
|
||||
SIZE (jpeg2pdf-0.12.tar.bz2) = 19186
|
12
graphics/jpeg2pdf/pkg-descr
Normal file
12
graphics/jpeg2pdf/pkg-descr
Normal file
|
@ -0,0 +1,12 @@
|
|||
jpeg2pdf has the following features:
|
||||
|
||||
* 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.
|
||||
|
||||
Author: Koen Vervloesem <koen.vervloesem@myrealbox.com>
|
||||
WWW: http://koan.studentenweb.org/software/jpeg2pdf.html
|
26
graphics/jpeg2pdf/pkg-plist
Normal file
26
graphics/jpeg2pdf/pkg-plist
Normal file
|
@ -0,0 +1,26 @@
|
|||
@comment $FreeBSD$
|
||||
bin/jpeg2pdf
|
||||
%%RUBY_SITELIBDIR%%/image_size.rb
|
||||
%%RUBY_SITELIBDIR%%/jpeg2pdf.rb
|
||||
%%RUBY_SITELIBDIR%%/rpdf.rb
|
||||
%%RUBY_SITELIBDIR%%/rpdf/crossreftable.rb
|
||||
%%RUBY_SITELIBDIR%%/rpdf/document.rb
|
||||
%%RUBY_SITELIBDIR%%/rpdf/documentcatalog.rb
|
||||
%%RUBY_SITELIBDIR%%/rpdf/imagedictionary.rb
|
||||
%%RUBY_SITELIBDIR%%/rpdf/page.rb
|
||||
%%RUBY_SITELIBDIR%%/rpdf/pagetree.rb
|
||||
%%RUBY_SITELIBDIR%%/rpdf/pdfarray.rb
|
||||
%%RUBY_SITELIBDIR%%/rpdf/pdfboolean.rb
|
||||
%%RUBY_SITELIBDIR%%/rpdf/pdfdictionary.rb
|
||||
%%RUBY_SITELIBDIR%%/rpdf/pdfinteger.rb
|
||||
%%RUBY_SITELIBDIR%%/rpdf/pdfname.rb
|
||||
%%RUBY_SITELIBDIR%%/rpdf/pdfnull.rb
|
||||
%%RUBY_SITELIBDIR%%/rpdf/pdfnumeric.rb
|
||||
%%RUBY_SITELIBDIR%%/rpdf/pdfobject.rb
|
||||
%%RUBY_SITELIBDIR%%/rpdf/pdfstream.rb
|
||||
%%RUBY_SITELIBDIR%%/rpdf/pdfstring.rb
|
||||
%%RUBY_SITELIBDIR%%/rpdf/rectangle.rb
|
||||
%%RUBY_SITELIBDIR%%/rpdf/trailer.rb
|
||||
%%RUBY_SITELIBDIR%%/rpdf/util.rb
|
||||
%%RUBY_SITELIBDIR%%/rpdf/version.rb
|
||||
@dirrm %%RUBY_SITELIBDIR%%/rpdf
|
Loading…
Add table
Reference in a new issue