aboutsummaryrefslogtreecommitdiffstats
path: root/audio/libmp3splt/Makefile
blob: 3330c7021550a4addcb63e876063c5b15ab69066 (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
83
84
85
86
87
# Created by: Anton Yuzhaninov <citrin@citrin.ru>
# $FreeBSD$

PORTNAME=   libmp3splt
PORTVERSION=    0.8.2
CATEGORIES= audio
MASTER_SITES=   SF/mp3splt/${PORTNAME}/${PORTVERSION}

MAINTAINER= citrin@citrin.ru
COMMENT=    Library for splitting of various audio files

LICENSE=    GPLv2

GNU_CONFIGURE=  yes
CONFIGURE_ARGS= --disable-cutter --disable-doxygen_doc
USES=   pathfix
USE_LDCONFIG=   yes
USE_AUTOTOOLS=  libltdl
MAKE_JOBS_SAFE= yes

OPTIONS_MULTI=  plugin
OPTIONS_MULTI_plugin=   MAD VORBIS
OPTIONS_DEFINE= ID3 PCRE NLS

PCRE_DESC=  PCRE support to set tags from input filename

OPTIONS_DEFAULT=    MAD VORBIS ID3 PCRE NLS

PLUGIN_DIR= libmp3splt0

PLIST_DIRS= include/libmp3splt lib/${PLUGIN_DIR}
PLIST_DIRSTRY=  libdata/pkgconfig
PLIST_FILES=    include/libmp3splt/mp3splt.h include/libmp3splt/version.h lib/libmp3splt.a \
        lib/libmp3splt.la lib/libmp3splt.so lib/libmp3splt.so.0 \
        libdata/pkgconfig/libmp3splt.pc

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MMAD}
LIB_DEPENDS+=   mad:${PORTSDIR}/audio/libmad
PLIST_FILES+=   lib/${PLUGIN_DIR}/libsplt_mp3.a \
        lib/${PLUGIN_DIR}/libsplt_mp3.la \
        lib/${PLUGIN_DIR}/libsplt_mp3.so \
        lib/${PLUGIN_DIR}/libsplt_mp3.so.0
.else
CONFIGURE_ARGS+=    --disable-mp3
.endif

.if ${PORT_OPTIONS:MVORBIS}
LIB_DEPENDS+=   ogg:${PORTSDIR}/audio/libogg \
        vorbis:${PORTSDIR}/audio/libvorbis
PLIST_FILES+=   lib/${PLUGIN_DIR}/libsplt_ogg.a \
        lib/${PLUGIN_DIR}/libsplt_ogg.la \
        lib/${PLUGIN_DIR}/libsplt_ogg.so \
        lib/${PLUGIN_DIR}/libsplt_ogg.so.0
.else
CONFIGURE_ARGS+=    --disable-ogg
.endif

.if ${PORT_OPTIONS:MPCRE}
LIB_DEPENDS+=   pcre:${PORTSDIR}/devel/pcre
.else
CONFIGURE_ARGS+=    --disable-pcre
.endif

.if ${PORT_OPTIONS:MID3}
LIB_DEPENDS+=   id3tag:${PORTSDIR}/audio/libid3tag
.else
CONFIGURE_ARGS+=    --disable-id3tag
.endif

.if ${PORT_OPTIONS:MNLS}
USE_GETTEXT=    yes
LANGUAGES=  de_DE cs es fr_FR hr
.for language in ${LANGUAGES}
PLIST_FILES+=   share/locale/${language}/LC_MESSAGES/libmp3splt0.mo
.endfor
PLIST_FILES+=   "@dirrmtry share/locale/de_DE/LC_MESSAGES"
PLIST_FILES+=   "@dirrmtry share/locale/de_DE"
.else
CONFIGURE_ARGS+=    --disable-nls
.endif

CPPFLAGS+=  -I${LOCALBASE}/include
LDFLAGS+=   -L${LOCALBASE}/lib

.include <bsd.port.mk>