Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

7
graphics/ps2eps/DESCR Normal file
View File

@@ -0,0 +1,7 @@
ps2eps is a tool (written in Perl) to produce Encapsulated PostScript
Files (EPS/EPSF) from usual one-paged Postscript documents. It
calculates correct Bounding Boxes for those EPS files and filters some
special postscript command sequences that can produce erroneous
results on printers. EPS files are often needed for including
(scalable) graphics of high quality into TeX/LaTeX (or even Word)
documents.

29
graphics/ps2eps/Makefile Normal file
View File

@@ -0,0 +1,29 @@
# $NetBSD: Makefile,v 1.7 2013/05/31 12:41:09 wiz Exp $
DISTNAME= ps2eps-1.68
PKGREVISION= 2
CATEGORIES= graphics
MASTER_SITES= http://www.tm.uka.de/~bless/
EXTRACT_SUFX= .zip
MAINTAINER= minskim@NetBSD.org
HOMEPAGE= http://www.tm.uka.de/~bless/ps2eps
COMMENT= Tool for generating EPS Format files from one-page PS documents
USE_TOOLS+= perl:run
WRKSRC= ${WRKDIR}/ps2eps
REPLACE_PERL+= bin/ps2eps
INSTALLATION_DIRS+= bin man/man1
do-build:
cd ${WRKSRC:Q}/src/C && ${CC} ${CFLAGS} -o bbox bbox.c
do-install:
${INSTALL_PROGRAM} ${WRKSRC:Q}/src/C/bbox ${DESTDIR:Q}${PREFIX:Q}/bin
${INSTALL_SCRIPT} ${WRKSRC:Q}/bin/ps2eps ${DESTDIR:Q}${PREFIX:Q}/bin
${INSTALL_MAN} ${WRKSRC:Q}/doc/man/man1/*.1 \
${DESTDIR:Q}${PREFIX:Q}/${PKGMANDIR:Q}/man1
.include "../../mk/bsd.pkg.mk"

5
graphics/ps2eps/PLIST Normal file
View File

@@ -0,0 +1,5 @@
@comment $NetBSD: PLIST,v 1.1.1.1 2006/04/08 22:55:40 minskim Exp $
bin/bbox
bin/ps2eps
man/man1/bbox.1
man/man1/ps2eps.1

6
graphics/ps2eps/distinfo Normal file
View File

@@ -0,0 +1,6 @@
$NetBSD: distinfo,v 1.3 2011/07/28 07:21:07 minskim Exp $
SHA1 (ps2eps-1.68.zip) = de04bbda923cf115d544d6288286f437a516b70f
RMD160 (ps2eps-1.68.zip) = 4063d7b703c208e7d4b37a01cdde42898c802e5b
Size (ps2eps-1.68.zip) = 109264 bytes
SHA1 (patch-aa) = b411e4aff2d932b85c36ea30ed16eedcc6b8e20d

View File

@@ -0,0 +1,12 @@
$NetBSD: patch-aa,v 1.1.1.1 2006/04/08 22:55:40 minskim Exp $
--- bin/ps2eps.orig 2005-01-24 06:42:19.000000000 -0800
+++ bin/ps2eps
@@ -1,6 +1,3 @@
-eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}' && eval 'exec perl -S $0 $argv:q' # -*-perl-*-
- if 0;
-# The expression in the previous line replaces the unix specific line
-# {#!/usr/bin/perl}.
+#!/usr/bin/perl
# ps2eps - convert PostScript to EPS (Encapsulated PostScript) files
# -------------------------------------------------------------------