diff options
author | Hye-Shik Chang <perky@FreeBSD.org> | 2003-12-05 16:43:00 +0000 |
---|---|---|
committer | Hye-Shik Chang <perky@FreeBSD.org> | 2003-12-05 16:43:00 +0000 |
commit | b1b61e0ed05018bb9fba0648fc0e4e3017ae69c3 (patch) | |
tree | 048e811a4135c7003b6a7a3284afb05359efcb76 /audio/holyshout | |
parent | 9b83b66b06841056a3be9351f9ac73bdce111f66 (diff) | |
download | ports-b1b61e0ed05018bb9fba0648fc0e4e3017ae69c3.tar.gz ports-b1b61e0ed05018bb9fba0648fc0e4e3017ae69c3.zip |
- Correct '\r' representation to feed into sed.
- Bump PORTREVISION subsequently.
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=95144
Diffstat (limited to 'audio/holyshout')
-rw-r--r-- | audio/holyshout/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/audio/holyshout/Makefile b/audio/holyshout/Makefile index 71854fe42a15..573602544d73 100644 --- a/audio/holyshout/Makefile +++ b/audio/holyshout/Makefile @@ -7,6 +7,7 @@ PORTNAME= holyshout PORTVERSION= 0.2 +PORTREVISION= 1 CATEGORIES= audio net MASTER_SITES= ftp://ftp.holywar.net/pub/FreeBSD/ @@ -21,6 +22,6 @@ USE_REINPLACE= yes post-patch: ${REINPLACE_CMD} -e 's,/usr/local,${PREFIX},g' \ ${WRKSRC}/Makefile - ${REINPLACE_CMD} -e 's,
,\r,g' ${WRKSRC}/holyshout.c + ${REINPLACE_CMD} -e 's,
,\\r,g' ${WRKSRC}/holyshout.c .include <bsd.port.mk> |