aboutsummaryrefslogtreecommitdiffstats
path: root/audio/scrobbler/Makefile
blob: 02bbc7eb33216fed5bf4d5ee7c53a11775ce25fc (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
# New ports collection makefile for:    xmms-scrobbler
# Date created:                         2004-12-06
# Whom:                                 arved
#
# $FreeBSD$

PORTNAME?=  scrobbler
PORTVERSION=    0.3.8.1
PORTREVISION=   3
CATEGORIES= audio
MASTER_SITES=   http://static.audioscrobbler.com/plugins/ \
        http://www.pipian.com/stuffforchat/
DISTNAME=   xmms-scrobbler-${PORTVERSION}

MAINTAINER?=    novel@FreeBSD.org
COMMENT?=   XMMS/BMP plugin for Audioscrobbler.com

LIB_DEPENDS=    musicbrainz.4:${PORTSDIR}/audio/libmusicbrainz \
        curl.3:${PORTSDIR}/ftp/curl

CONFLICTS=  bmp-scrobbler-[0-9]* \
        xmms-scrobbler-[0-9]*

USE_BZIP2=  yes
USE_X_PREFIX=   yes
GNU_CONFIGURE=  yes
USE_GMAKE=  yes
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib"

SLAVEDIRS=  audio/xmms-scrobbler audio/bmp-scrobbler

.if !defined(WITH_XMMS) && !defined(WITH_BMP)
WITH_XMMS=  yes
WITH_BMP=   yes
.endif

.if defined(WITH_XMMS)
LIB_DEPENDS+=   xmms.4:${PORTSDIR}/multimedia/xmms
PLIST_FILES+=   lib/xmms/General/libxmms_scrobbler.la \
        lib/xmms/General/libxmms_scrobbler.so
.else
CONFIGURE_ARGS+=    --disable-xmms-plugin
.endif

.if defined(WITH_BMP)
LIB_DEPENDS+=   beep.2:${PORTSDIR}/multimedia/beep-media-player
PLIST_FILES+=   lib/bmp/General/libbmp_scrobbler.la \
        lib/bmp/General/libbmp_scrobbler.so
.else
CONFIGURE_ARGS+=    --disable-bmp-plugin
.endif

.if defined(WITH_DEBUG)
CONFIGURE_ARGS+=    --enable-debug
.endif

.if defined(WITH_APE)
CONFIGURE_ARGS+=    --enable-prefer-ape
.endif

.if defined(WITH_ENCODINGS_PATCH)
USE_ICONV=  yes

post-patch::
    @${PATCH} ${PATCH_ARGS} -p1 < ${FILESDIR}/extra-encodings-patch
.endif

pre-everything::
    @${ECHO_MSG} "You may specify the following on the command line:"
    @${ECHO_MSG} " "
    @${ECHO_MSG} "WITH_XMMS=yes to enable xmms support"
    @${ECHO_MSG} "WITH_BMP=yes to enable beep-media-player support"
    @${ECHO_MSG} "WITH_DEBUG=yes to turn on debug mode"
    @${ECHO_MSG} "WITH_APE=yes to enable ape"
    @${ECHO_MSG} "WITH_ENCODINGS_PATCH=yes to enable ID3 tags recoding support"
    @${ECHO_MSG} " "

.include <bsd.port.mk>