diff options
author | Johan van Selst <johans@FreeBSD.org> | 2009-08-22 09:16:58 +0000 |
---|---|---|
committer | Johan van Selst <johans@FreeBSD.org> | 2009-08-22 09:16:58 +0000 |
commit | 081f5c138e6c6a794f4fe02b4956f81c84cfe3e9 (patch) | |
tree | 1f4a7ceb30aa436da4e9bed46b128a30100e9f93 /print | |
parent | 17b7bfd60c658969fadcdc633edbfbb6fdac39e2 (diff) |
- Rewrite pdfjoin to avoid bashisms
- Remove dependency on bash
Submitted by: Eygene Ryabinkin
Notes
Notes:
svn path=/head/; revision=240096
Diffstat (limited to 'print')
-rw-r--r-- | print/pdfjam/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/print/pdfjam/Makefile b/print/pdfjam/Makefile index f16393b53c26..0ddbb62da9b2 100644 --- a/print/pdfjam/Makefile +++ b/print/pdfjam/Makefile @@ -7,6 +7,7 @@ PORTNAME= pdfjam PORTVERSION= 1.21 +PORTREVISION= 1 CATEGORIES= print MASTER_SITES= http://www2.warwick.ac.uk/fac/sci/statistics/staff/academic/firth/software/pdfjam/ \ http://www.it.ca/~paul/src/ @@ -15,8 +16,7 @@ DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= johans@stack.nl COMMENT= Shell scripts to manipulate PDF files -RUN_DEPENDS= pdflatex:${PORTSDIR}/print/teTeX-base \ - bash:${PORTSDIR}/shells/bash +RUN_DEPENDS= pdflatex:${PORTSDIR}/print/teTeX-base WRKSRC= ${WRKDIR}/${PORTNAME} @@ -28,7 +28,7 @@ NO_BUILD= yes post-patch: cd ${WRKSRC} && \ - ${REINPLACE_CMD} -e"s,^#!/bin/bash,#!${LOCALBASE}/bin/bash," \ + ${REINPLACE_CMD} -e"s,^#!/bin/bash,#!/bin/sh," \ ${PLIST_FILES:C/bin/scripts/} do-install: |