blob: 481b7d061a5e42c14ef9a3c486d6b8876d9d1a1f (
plain)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# New ports collection makefile for: pytone
# Date created: 2007-05-02
# Whom: David Thiel <lx@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= pytone
PORTVERSION= 2.3.1
CATEGORIES= audio python
MASTER_SITES= http://www.luga.de/pytone/download/ \
http://redundancy.redundancy.org/mirror/
DISTNAME= PyTone-${PORTVERSION}
MAINTAINER= lx@FreeBSD.org
COMMENT= A music jukebox written in Python with a curses GUI
LIB_DEPENDS= ao.3:${PORTSDIR}/audio/libao
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/_bsddb.so:${PORTSDIR}/databases/py-bsddb
USE_PYTHON= yes
USE_PYDISTUTILS= yes
OPTIONS= MAD "MPEG Audio Decoder (libmad) support" On \
VORBIS "Ogg/Vorbis support" On \
PYAO "Libao cross-platform audio library" Off \
XMMS "Enable XMMS player engine" Off \
MPG123 "Enable mpg123 player engine" Off \
MPG321 "Enable mpg321 player engine" Off
.include <bsd.port.pre.mk>
CFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib
.if ${OSVERSION} < 602107 || (${OSVERSION} > 700000 && ${OSVERSION} < 700033)
LIB_DEPENDS+= ncursesw.5:${PORTSDIR}/devel/ncurses
.endif
.if !defined(WITHOUT_MAD)
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/madmodule.so:${PORTSDIR}/audio/py-mad
.endif
.if !defined(WITHOUT_VORBIS)
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/ogg/vorbis.so:${PORTSDIR}/audio/py-vorbis
.endif
.if defined(WITH_PYAO)
BUILD_DEPENDS+= ${PYTHON_SITELIBDIR}/aomodule.so:${PORTSDIR}/audio/py-ao
.endif
.if defined(WITH_XMMS)
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/xmms/xmmscontrol.so:${PORTSDIR}/audio/py-xmms
.endif
.if defined(WITH_MPG123)
RUN_DEPENDS+= ${LOCALBASE}/bin/mpg123:${PORTSDIR}/audio/mpg123
.endif
.if defined(WITH_MPG321)
RUN_DEPENDS+= ${LOCALBASE}/bin/mpg321:${PORTSDIR}/audio/mpg321
.endif
post-patch:
@${REINPLACE_CMD} -e 's|src/|${PYTHON_SITELIBDIR}/pytone/|g' \
${WRKSRC}/pytone
@${REINPLACE_CMD} -e 's|src/|${PYTHON_SITELIBDIR}/pytone/|g' \
${WRKSRC}/pytonectl
.include <bsd.port.post.mk>
|