blob: 8cb2f3c4afc089fa1aceb6da0d7fd56f26b8014b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# New ports collection makefile for: peercast
# Date created: 21 Dec 2004
# Whom: Jean-Yves Lefort <jylefort@brutele.be>
#
# $FreeBSD$
#
PORTNAME= peercast
PORTVERSION= 0.1217
CATEGORIES= net-p2p multimedia
MASTER_SITES= http://www.peercast.org/
DISTNAME= peercast-linux
EXTRACT_SUFX= .tgz
MAINTAINER= jylefort@FreeBSD.org
COMMENT= A peer-to-peer network for broadcasting and listening to streams
USE_LINUX= yes
NO_WRKSUBDIR= yes
NO_BUILD= yes
SUB_FILES= peercast.sh
do-install:
${INSTALL_SCRIPT} ${WRKDIR}/peercast.sh ${PREFIX}/bin/peercast
${INSTALL_PROGRAM} ${WRKSRC}/peercast ${PREFIX}/libexec
.for lang in de en fr ja
${MKDIR} ${DATADIR}/html/${lang}
${INSTALL_DATA} ${WRKSRC}/html/${lang}/*.* ${DATADIR}/html/${lang}
${MKDIR} ${DATADIR}/html/${lang}/images
${INSTALL_DATA} ${WRKSRC}/html/${lang}/images/*.* ${DATADIR}/html/${lang}/images
.endfor
.include <bsd.port.mk>
|