aboutsummaryrefslogtreecommitdiff
path: root/audio/jokosher/Makefile
blob: ed30edaf7e353e49ca59eced5f4b6a5b7e34bd90 (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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
# New ports collection makefile for:	jokosher
# Date created:				13 Aug 2009
# Whom:					Anonymous
#
# $FreeBSD$
#

PORTNAME=	jokosher
PORTVERSION=	0.11.5
CATEGORIES=	audio
MASTER_SITES=	http://launchpadlibrarian.net/43860543/

MAINTAINER=	swell.k@gmail.com
COMMENT=	Multi-track non-linear audio editing

RUN_DEPENDS+=	${PYTHON_SITELIBDIR}/xdg/__init__.py:${PORTSDIR}/devel/py-xdg \
		easy_install:${PORTSDIR}/devel/py-setuptools

USE_PYTHON=	yes
USE_PYDISTUTILS=yes
USE_GSTREAMER=	gnonlin good python
INSTALLS_ICONS=	yes

WANT_GNOME=	yes
WANT_GSTREAMER=	yes

BROKEN=	touches filesystem before make install

OPTIONS=	DBUS	"D-Bus extension" on \
		FLAC	"Flac export/import" on \
		GCONF	"Gnome Audio playback/record" on \
		JACK	"Jack audio playback/record" off \
		LADSPA	"Instrument effects" on \
		LAME	"Mp3 export" off \
		MP3	"Mp3 import" off \
		PIDGIN	"Pidgin status extension" off \
		PROFILES "Gnome Audio Profiles extension" off \
		PULSE	"PulseAudio playback/record" off \
		VORBIS	"Ogg Vorbis export/import" on

.include <bsd.port.pre.mk>

.if defined(WITH_DBUS)
RUN_DEPENDS+=	${PYTHON_SITELIBDIR}/dbus/__init__.py:${PORTSDIR}/devel/py-dbus
.endif

.if defined(WITH_GNOME) || ${HAVE_GNOME:Mgnomehier}!=""
USE_GNOME+=	desktopfileutils gnomehier
.endif

.if defined(WITH_GNOME) || defined(WITH_PROFILES) \
	|| ${HAVE_GNOME:Mpygnome2}!=""
USE_GNOME+=	pygnome2
.endif

.if defined(WITH_PIDGIN)
. if defined(WITHOUT_DBUS)
IGNORE=		requires DBUS support
. endif
RUN_DEPENDS+=	pidgin:${PORTSDIR}/net-im/pidgin
.endif

.if !defined(WITHOUT_OMF) || exists(${LOCALBASE}/bin/scrollkeeper-update)
RUN_DEPENDS+=	scrollkeeper-update:${PORTSDIR}/textproc/scrollkeeper
INSTALLS_OMF=	yes
PLIST_SUB+=	OMF=""
.else
PLIST_SUB+=	OMF="@comment "
.endif

.for plugin in flac gconf jack ladspa lame mp3 pulse vorbis
. if defined(WITH_${plugin:U})
USE_GSTREAMER+=${plugin}
. endif
.endfor

post-patch:	.SILENT
	${REINPLACE_CMD} -e 's|/usr/share|${PREFIX}/share|g' -e \
		'\|scrollkeeper-preinstall|s|HELPURI\[fileNum]|"file://" + &|' \
		${WRKSRC}/bin/${PORTNAME} ${WRKSRC}/${PYSETUP}

.include <bsd.port.post.mk>