mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
f5961677bc
- Add a mirror. - Update WWW. PR: 111008 Submitted by: Jason Harris <jharris@widomaker.com> Approved by: maintainer
56 lines
1.9 KiB
Makefile
56 lines
1.9 KiB
Makefile
# New ports collection makefile for: podcastamatic
|
|
# Date created: 12 July 2005
|
|
# Whom: lars.eggert@gmx.net
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= podcastamatic
|
|
PORTVERSION= 1.3
|
|
PORTREVISION= 1
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://kenwardtown.com/projects/podcastamatic/ \
|
|
http://people.nokia.net/~lars/distfiles/
|
|
DISTNAME= ${PORTNAME}${PORTVERSION:S/./_/}
|
|
|
|
MAINTAINER= lars.eggert@gmx.net
|
|
COMMENT= Automates creation of webpage and RSS feed for a podcast
|
|
|
|
RUN_DEPENDS= ${SITE_PERL}/MP3/Info.pm:${PORTSDIR}/audio/p5-MP3-Info \
|
|
${SITE_PERL}/MP4/Info.pm:${PORTSDIR}/multimedia/p5-MP4-Info
|
|
|
|
USE_ZIP= yes
|
|
USE_PERL5_RUN= yes
|
|
|
|
NO_BUILD= yes
|
|
|
|
do-patch:
|
|
@${REINPLACE_CMD} -e "s|${PORTNAME}.conf|${PREFIX}/etc/${PORTNAME}.conf|"\
|
|
${WRKSRC}/${PORTNAME}.pl
|
|
@${REINPLACE_CMD} -e "s|../test/podcastamatic.log|/var/log/${PORTNAME}.log|"\
|
|
${WRKSRC}/example_${PORTNAME}.conf
|
|
@${REINPLACE_CMD} -e "s|/projects/podcastamatic|/podcast|"\
|
|
${WRKSRC}/example_${PORTNAME}.conf
|
|
@${REINPLACE_CMD} -e "s|style.css|${PREFIX}/share/${PORTNAME}/style.css|"\
|
|
${WRKSRC}/example_${PORTNAME}.conf
|
|
@${REINPLACE_CMD} -e "s|/testpodcast||" ${WRKSRC}/example_${PORTNAME}.conf
|
|
@${REINPLACE_CMD} -e "s|/audio||" ${WRKSRC}/example_${PORTNAME}.conf
|
|
@${REINPLACE_CMD} -e "s|[wW]:|${PREFIX}/www|" ${WRKSRC}/example_${PORTNAME}.conf
|
|
|
|
do-install:
|
|
@${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.pl ${PREFIX}/bin/${PORTNAME}
|
|
@${INSTALL_DATA} ${WRKSRC}/example_${PORTNAME}.conf ${PREFIX}/etc/${PORTNAME}.conf.sample
|
|
test \! -f ${PREFIX}/etc/${PORTNAME}.conf && ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.conf ${PREFIX}/etc/${PORTNAME}.conf || true
|
|
@${MKDIR} ${PREFIX}/share/${PORTNAME}
|
|
@${INSTALL_DATA} ${WRKSRC}/style.css ${PREFIX}/share/${PORTNAME}/
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/readme.html ${DOCSDIR}
|
|
.endif
|
|
@${ECHO}
|
|
@${ECHO} "Edit ${PREFIX}/etc/${PORTNAME}.conf"
|
|
@${ECHO} "CSS in ${PREFIX}/share/${PORTNAME}/style.css"
|
|
@${ECHO}
|
|
|
|
.include <bsd.port.mk>
|