diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2007-07-16 13:56:38 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2007-07-16 13:56:38 +0000 |
commit | 1619b83fe198f93717cdf3921533d7e86c5341f0 (patch) | |
tree | a42f60c73ecd75ccfdba851ad7ae50eaaac5f398 /audio/ripit/Makefile | |
parent | 373714ddfe0ed8e14df03cb97963bae9c309eaf1 (diff) | |
download | ports-1619b83fe198f93717cdf3921533d7e86c5341f0.tar.gz ports-1619b83fe198f93717cdf3921533d7e86c5341f0.zip |
- Update to 3.6.0
- USE NOPORTEXAMLES
PR: 114209
Submitted by: Bradley W. Dutton <brad@duttonbros.com>
Approved by: maintainer timeout
Notes
Notes:
svn path=/head/; revision=195738
Diffstat (limited to 'audio/ripit/Makefile')
-rw-r--r-- | audio/ripit/Makefile | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/audio/ripit/Makefile b/audio/ripit/Makefile index f99bd6fd1387..31a2ccce5fbf 100644 --- a/audio/ripit/Makefile +++ b/audio/ripit/Makefile @@ -6,7 +6,7 @@ # PORTNAME= ripit -PORTVERSION= 3.5.1 +PORTVERSION= 3.6.0 CATEGORIES= audio MASTER_SITES= http://www.suwald.com/ripit/ @@ -20,25 +20,24 @@ RUN_DEPENDS+= lame:${PORTSDIR}/audio/lame RUN_DEPENDS+= cdparanoia:${PORTSDIR}/audio/cdparanoia NO_BUILD= yes -PLIST_FILES= bin/ripit.pl \ - bin/ripit \ - share/examples/ripit/config -PLIST_DIRS= share/examples/ripit +PLIST_FILES= bin/ripit MAN1= ripit.1 +PORTEXAMPLES= config USE_PERL5_RUN= yes USE_BZIP2= yes post-patch: - @ ${REINPLACE_CMD} -e "s|#!/usr/bin/perl|#!${PERL}|" ${WRKSRC}/ripit + @${REINPLACE_CMD} -e "s|#!/usr/bin/perl|#!${PERL}|" ${WRKSRC}/ripit.pl do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/ripit ${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/ripit.pl ${PREFIX}/bin/ripit ${INSTALL_MAN} ${WRKSRC}/ripit.1 ${MAN1PREFIX}/man/man1 +.if !defined(NOPORTEXAMPLES) ${MKDIR} ${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/config ${EXAMPLESDIR}/config +.endif post-install: - @ ${LN} -s ${PREFIX}/bin/ripit ${PREFIX}/bin/ripit.pl - @ ${CAT} ${PKGMESSAGE} + @${CAT} ${PKGMESSAGE} .include <bsd.port.mk> |