diff options
author | skv <skv@FreeBSD.org> | 2002-06-02 21:30:21 +0800 |
---|---|---|
committer | skv <skv@FreeBSD.org> | 2002-06-02 21:30:21 +0800 |
commit | f916db9dc542799f1257c85c34432894b7bbec85 (patch) | |
tree | 1bdcfee19c2fae7a55d216b116ae849caf10894a | |
parent | bc7bcc15bb9d7ce8c333e20aa142140c7b0292d0 (diff) | |
download | freebsd-ports-gnome-f916db9dc542799f1257c85c34432894b7bbec85.tar.gz freebsd-ports-gnome-f916db9dc542799f1257c85c34432894b7bbec85.tar.zst freebsd-ports-gnome-f916db9dc542799f1257c85c34432894b7bbec85.zip |
Minor fixes
-rw-r--r-- | devel/p5-Class-Contract/Makefile | 12 | ||||
-rw-r--r-- | devel/p5-Class-Contract/files/patch-demo.pl | 8 |
2 files changed, 5 insertions, 15 deletions
diff --git a/devel/p5-Class-Contract/Makefile b/devel/p5-Class-Contract/Makefile index 040105d4f9c2..7d04d8ce83a4 100644 --- a/devel/p5-Class-Contract/Makefile +++ b/devel/p5-Class-Contract/Makefile @@ -14,16 +14,15 @@ PKGNAMEPREFIX= p5- MAINTAINER= skv@FreeBSD.org -BUILD_DEPENDS= dos2unix:${PORTSDIR}/converters/unix2dos - PERL_CONFIGURE= yes PLIST_SUB+= EXAMPLESDIR="share/examples/${PORTNAME}" MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} MAN3= Class::Contract.3 Class::Contract::Production.3 -post-extract: - @find ${WRKSRC} -type f -name "*.p[lm]" | xargs dos2unix -p +post-patch: + @${FIND} ${WRKSRC} -type f -name "*.p[lm]" | \ + xargs ${PERL} -pi -e 's/\x0d//g;' pre-configure: ${MKDIR} ${WRKSRC}/examples @@ -32,9 +31,8 @@ pre-configure: post-install: .ifndef(NOPORTDOCS) @${ECHO_MSG} "===> Installing examples for ${PKGNAME}" - @${MKDIR} ${PREFIX}/share/examples/${PORTNAME} - ${INSTALL_SCRIPT} ${WRKSRC}/examples/* \ - ${PREFIX}/share/examples/${PORTNAME} + @${MKDIR} ${EXAMPLESDIR} + ${INSTALL_SCRIPT} ${WRKSRC}/examples/* ${EXAMPLESDIR} .endif .include <bsd.port.mk> diff --git a/devel/p5-Class-Contract/files/patch-demo.pl b/devel/p5-Class-Contract/files/patch-demo.pl deleted file mode 100644 index 788c83802179..000000000000 --- a/devel/p5-Class-Contract/files/patch-demo.pl +++ /dev/null @@ -1,8 +0,0 @@ ---- demo.pl.orig Mon Nov 5 17:24:22 2001 -+++ demo.pl Mon Nov 5 17:24:29 2001 -@@ -1,4 +1,4 @@ --#! /usr/local/bin/perl -w -+#!/usr/bin/perl -w - - # NOTES: - # Invariants and pre- and post-conditions are expected |