aboutsummaryrefslogtreecommitdiffstats
path: root/audio/osd-lyrics/Makefile
blob: 707fcc64464465d9a35b1d2145460eb3e049ba42 (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
# New ports collection makefile for:    OSD Lyrics
# Date created:             18 Nov 2011
# Whom:                 Alexey Dokuchaev <danfe@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=   osdlyrics
PORTVERSION=    0.4.2
PORTREVISION=   1
CATEGORIES= audio deskutils
MASTER_SITES=   GOOGLE_CODE
PROJECTHOST=    osd-lyrics

MAINTAINER= danfe@FreeBSD.org
COMMENT=    On-screen lyrics display program for various media players

LICENSE=    GPLv3

LIB_DEPENDS=    notify.4:${PORTSDIR}/devel/libnotify \
        dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \
        curl.6:${PORTSDIR}/ftp/curl

BROKEN=     does not compile

GNU_CONFIGURE=  yes
CONFIGURE_ENV=  DATADIRNAME=share
# Cannot enable -Werror yet: Clang does not like the code `printf(_("..."))',
# see this bug for details: http://llvm.org/bugs/show_bug.cgi?id=3814
#CONFIGURE_ARGS=    --with-werror
USE_GETTEXT=    yes
USE_GMAKE=  yes
USE_GNOME=  gtk20
USE_SQLITE= yes
INSTALLS_ICONS= yes
PORTDOCS=   AUTHORS ChangeLog NEWS README

OPTIONS=    MPD "Enable MPD support"        off \
        XMMS2   "Enable XMMS2 support"      off \
        AMAROK  "Enable Amarok 1.4 support" off

.include <bsd.port.options.mk>

.if defined(WITH_MPD)
LIB_DEPENDS+=   mpd.4:${PORTSDIR}/audio/libmpd
.else
CONFIGURE_ARGS+=    --disable-mpd
.endif

.if defined(WITH_XMMS2)
LIB_DEPENDS+=   xmmsclient.6:${PORTSDIR}/audio/xmms2
.else
CONFIGURE_ARGS+=    --disable-xmms2
.endif

.if defined(WITH_AMAROK)
CONFIGURE_ARGS+=    --enable-amarok1
.endif

post-install:
.if !defined(NOPORTDOCS)
    @${MKDIR} ${DOCSDIR}
    ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
.endif

.include <bsd.port.mk>