mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
pdflib v0.6 - a C library for dynamically generating PDF
This commit is contained in:
parent
8ee28cc021
commit
5be2f6ee90
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=16202
15 changed files with 183 additions and 0 deletions
38
print/pdflib/Makefile
Normal file
38
print/pdflib/Makefile
Normal file
|
@ -0,0 +1,38 @@
|
|||
# New ports collection makefile for: pdflib
|
||||
# Version required: 0.6
|
||||
# Date created: Mon Jan 18 17:03:33 CET 1999
|
||||
# Whom: Dirk Froemberg <dirk@FreeBSD.ORG>
|
||||
#
|
||||
# $Id$
|
||||
#
|
||||
|
||||
DISTNAME= pdflib-0.6
|
||||
CATEGORIES= print
|
||||
MASTER_SITES= http://www.ifconnection.de/~tm/software/pdflib/ \
|
||||
http://www.physik.TU-Berlin.DE/~ibex/ports/distfiles/
|
||||
|
||||
MAINTAINER= dirk@FreeBSD.ORG
|
||||
|
||||
RUN_DEPENDS= ${PREFIX}/lib/afm/Courier:${PORTSDIR}/print/afm
|
||||
LIB_DEPENDS= tiff.4:${PORTSDIR}/graphics/tiff34 \
|
||||
jpeg.9:${PORTSDIR}/graphics/jpeg
|
||||
|
||||
USE_GMAKE= yes
|
||||
MAKEFILE= makefile.gcc
|
||||
|
||||
pre-build:
|
||||
${SED} -e "s#!!PREFIX!!#${PREFIX}#" < ${WRKSRC}/pdf.h > ${WRKSRC}/pdf.h.tmp
|
||||
${MV} ${WRKSRC}/pdf.h.tmp ${WRKSRC}/pdf.h
|
||||
|
||||
do-install:
|
||||
${INSTALL_DATA} ${WRKSRC}/libpdf.a ${PREFIX}/lib
|
||||
.for prg in imagepdf pdfclock pdfdemo pdfgraph text2pdf
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/${prg} ${PREFIX}/bin
|
||||
.endfor
|
||||
${INSTALL_DATA} ${WRKSRC}/pdf.h ${PREFIX}/include
|
||||
.if !defined(NOPORTDOCS)
|
||||
${MKDIR} ${PREFIX}/share/doc/pdflib
|
||||
${INSTALL_DATA} ${WRKSRC}/PDFlib-0.6.pdf ${PREFIX}/share/doc/pdflib
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
1
print/pdflib/distinfo
Normal file
1
print/pdflib/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (pdflib-0.6.tar.gz) = a7773a2cbebe30655cbbe884f3a012db
|
1
print/pdflib/pkg-comment
Normal file
1
print/pdflib/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
A C library for dynamically generating PDF
|
12
print/pdflib/pkg-descr
Normal file
12
print/pdflib/pkg-descr
Normal file
|
@ -0,0 +1,12 @@
|
|||
PDFlib is a library of C routines which allow you to programmatically
|
||||
generate files in Adobe's Portable Document Format PDF. PDFlib
|
||||
acts as a backend processor to your own programs. While you (the
|
||||
programmer) are responsible for retrieving or maintaining the data
|
||||
to be processed, PDFlib takes over the task of generating the PDF
|
||||
code which graphically represents your data. While you must still
|
||||
format and arrange your text and graphical objects, PDFlib frees
|
||||
you from the internals and intricacies of PDF. Although being far
|
||||
from complete, PDFlib already offers many useful functions for
|
||||
creating text, graphics, images and hypertext elements in PDF files.
|
||||
|
||||
http://www.ifconnection.de/~tm/software/pdflib/
|
9
print/pdflib/pkg-plist
Normal file
9
print/pdflib/pkg-plist
Normal file
|
@ -0,0 +1,9 @@
|
|||
bin/imagepdf
|
||||
bin/pdfclock
|
||||
bin/pdfdemo
|
||||
bin/pdfgraph
|
||||
bin/text2pdf
|
||||
include/pdf.h
|
||||
lib/libpdf.a
|
||||
share/doc/pdflib/PDFlib-0.6.pdf
|
||||
@dirrm share/doc/pdflib
|
38
print/pdflib3/Makefile
Normal file
38
print/pdflib3/Makefile
Normal file
|
@ -0,0 +1,38 @@
|
|||
# New ports collection makefile for: pdflib
|
||||
# Version required: 0.6
|
||||
# Date created: Mon Jan 18 17:03:33 CET 1999
|
||||
# Whom: Dirk Froemberg <dirk@FreeBSD.ORG>
|
||||
#
|
||||
# $Id$
|
||||
#
|
||||
|
||||
DISTNAME= pdflib-0.6
|
||||
CATEGORIES= print
|
||||
MASTER_SITES= http://www.ifconnection.de/~tm/software/pdflib/ \
|
||||
http://www.physik.TU-Berlin.DE/~ibex/ports/distfiles/
|
||||
|
||||
MAINTAINER= dirk@FreeBSD.ORG
|
||||
|
||||
RUN_DEPENDS= ${PREFIX}/lib/afm/Courier:${PORTSDIR}/print/afm
|
||||
LIB_DEPENDS= tiff.4:${PORTSDIR}/graphics/tiff34 \
|
||||
jpeg.9:${PORTSDIR}/graphics/jpeg
|
||||
|
||||
USE_GMAKE= yes
|
||||
MAKEFILE= makefile.gcc
|
||||
|
||||
pre-build:
|
||||
${SED} -e "s#!!PREFIX!!#${PREFIX}#" < ${WRKSRC}/pdf.h > ${WRKSRC}/pdf.h.tmp
|
||||
${MV} ${WRKSRC}/pdf.h.tmp ${WRKSRC}/pdf.h
|
||||
|
||||
do-install:
|
||||
${INSTALL_DATA} ${WRKSRC}/libpdf.a ${PREFIX}/lib
|
||||
.for prg in imagepdf pdfclock pdfdemo pdfgraph text2pdf
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/${prg} ${PREFIX}/bin
|
||||
.endfor
|
||||
${INSTALL_DATA} ${WRKSRC}/pdf.h ${PREFIX}/include
|
||||
.if !defined(NOPORTDOCS)
|
||||
${MKDIR} ${PREFIX}/share/doc/pdflib
|
||||
${INSTALL_DATA} ${WRKSRC}/PDFlib-0.6.pdf ${PREFIX}/share/doc/pdflib
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
1
print/pdflib3/distinfo
Normal file
1
print/pdflib3/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (pdflib-0.6.tar.gz) = a7773a2cbebe30655cbbe884f3a012db
|
1
print/pdflib3/pkg-comment
Normal file
1
print/pdflib3/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
A C library for dynamically generating PDF
|
12
print/pdflib3/pkg-descr
Normal file
12
print/pdflib3/pkg-descr
Normal file
|
@ -0,0 +1,12 @@
|
|||
PDFlib is a library of C routines which allow you to programmatically
|
||||
generate files in Adobe's Portable Document Format PDF. PDFlib
|
||||
acts as a backend processor to your own programs. While you (the
|
||||
programmer) are responsible for retrieving or maintaining the data
|
||||
to be processed, PDFlib takes over the task of generating the PDF
|
||||
code which graphically represents your data. While you must still
|
||||
format and arrange your text and graphical objects, PDFlib frees
|
||||
you from the internals and intricacies of PDF. Although being far
|
||||
from complete, PDFlib already offers many useful functions for
|
||||
creating text, graphics, images and hypertext elements in PDF files.
|
||||
|
||||
http://www.ifconnection.de/~tm/software/pdflib/
|
9
print/pdflib3/pkg-plist
Normal file
9
print/pdflib3/pkg-plist
Normal file
|
@ -0,0 +1,9 @@
|
|||
bin/imagepdf
|
||||
bin/pdfclock
|
||||
bin/pdfdemo
|
||||
bin/pdfgraph
|
||||
bin/text2pdf
|
||||
include/pdf.h
|
||||
lib/libpdf.a
|
||||
share/doc/pdflib/PDFlib-0.6.pdf
|
||||
@dirrm share/doc/pdflib
|
38
print/pdflib4/Makefile
Normal file
38
print/pdflib4/Makefile
Normal file
|
@ -0,0 +1,38 @@
|
|||
# New ports collection makefile for: pdflib
|
||||
# Version required: 0.6
|
||||
# Date created: Mon Jan 18 17:03:33 CET 1999
|
||||
# Whom: Dirk Froemberg <dirk@FreeBSD.ORG>
|
||||
#
|
||||
# $Id$
|
||||
#
|
||||
|
||||
DISTNAME= pdflib-0.6
|
||||
CATEGORIES= print
|
||||
MASTER_SITES= http://www.ifconnection.de/~tm/software/pdflib/ \
|
||||
http://www.physik.TU-Berlin.DE/~ibex/ports/distfiles/
|
||||
|
||||
MAINTAINER= dirk@FreeBSD.ORG
|
||||
|
||||
RUN_DEPENDS= ${PREFIX}/lib/afm/Courier:${PORTSDIR}/print/afm
|
||||
LIB_DEPENDS= tiff.4:${PORTSDIR}/graphics/tiff34 \
|
||||
jpeg.9:${PORTSDIR}/graphics/jpeg
|
||||
|
||||
USE_GMAKE= yes
|
||||
MAKEFILE= makefile.gcc
|
||||
|
||||
pre-build:
|
||||
${SED} -e "s#!!PREFIX!!#${PREFIX}#" < ${WRKSRC}/pdf.h > ${WRKSRC}/pdf.h.tmp
|
||||
${MV} ${WRKSRC}/pdf.h.tmp ${WRKSRC}/pdf.h
|
||||
|
||||
do-install:
|
||||
${INSTALL_DATA} ${WRKSRC}/libpdf.a ${PREFIX}/lib
|
||||
.for prg in imagepdf pdfclock pdfdemo pdfgraph text2pdf
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/${prg} ${PREFIX}/bin
|
||||
.endfor
|
||||
${INSTALL_DATA} ${WRKSRC}/pdf.h ${PREFIX}/include
|
||||
.if !defined(NOPORTDOCS)
|
||||
${MKDIR} ${PREFIX}/share/doc/pdflib
|
||||
${INSTALL_DATA} ${WRKSRC}/PDFlib-0.6.pdf ${PREFIX}/share/doc/pdflib
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
1
print/pdflib4/distinfo
Normal file
1
print/pdflib4/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (pdflib-0.6.tar.gz) = a7773a2cbebe30655cbbe884f3a012db
|
1
print/pdflib4/pkg-comment
Normal file
1
print/pdflib4/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
A C library for dynamically generating PDF
|
12
print/pdflib4/pkg-descr
Normal file
12
print/pdflib4/pkg-descr
Normal file
|
@ -0,0 +1,12 @@
|
|||
PDFlib is a library of C routines which allow you to programmatically
|
||||
generate files in Adobe's Portable Document Format PDF. PDFlib
|
||||
acts as a backend processor to your own programs. While you (the
|
||||
programmer) are responsible for retrieving or maintaining the data
|
||||
to be processed, PDFlib takes over the task of generating the PDF
|
||||
code which graphically represents your data. While you must still
|
||||
format and arrange your text and graphical objects, PDFlib frees
|
||||
you from the internals and intricacies of PDF. Although being far
|
||||
from complete, PDFlib already offers many useful functions for
|
||||
creating text, graphics, images and hypertext elements in PDF files.
|
||||
|
||||
http://www.ifconnection.de/~tm/software/pdflib/
|
9
print/pdflib4/pkg-plist
Normal file
9
print/pdflib4/pkg-plist
Normal file
|
@ -0,0 +1,9 @@
|
|||
bin/imagepdf
|
||||
bin/pdfclock
|
||||
bin/pdfdemo
|
||||
bin/pdfgraph
|
||||
bin/text2pdf
|
||||
include/pdf.h
|
||||
lib/libpdf.a
|
||||
share/doc/pdflib/PDFlib-0.6.pdf
|
||||
@dirrm share/doc/pdflib
|
Loading…
Add table
Reference in a new issue