blob: aa03147a4a68503f81cbce3fb68297b53f4b614b (
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
|
# New ports collection makefile for: libmp3splt
# Date created: 2009-03-26
# Whom: Anton Yuzhaninov <citrin@citrin.ru>
#
# $FreeBSD$
#
PORTNAME= libmp3splt
PORTVERSION= 0.7.2
CATEGORIES= audio
MASTER_SITES= SF/mp3splt/${PORTNAME}/${PORTVERSION}
MAINTAINER= citrin@citrin.ru
COMMENT= Library for mp3splt and mp3splt-gtk
GNU_CONFIGURE= yes
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
PLIST_DIRS= include/libmp3splt lib/libmp3splt
PLIST_FILES= include/libmp3splt/mp3splt.h lib/libmp3splt.a \
lib/libmp3splt.la lib/libmp3splt.so lib/libmp3splt.so.0 \
share/aclocal/mp3splt.m4
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MMAD}
LIB_DEPENDS+= mad:${PORTSDIR}/audio/libmad
PLIST_FILES+= lib/libmp3splt/libsplt_mp3.a \
lib/libmp3splt/libsplt_mp3.la \
lib/libmp3splt/libsplt_mp3.so \
lib/libmp3splt/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/libmp3splt/libsplt_ogg.a \
lib/libmp3splt/libsplt_ogg.la \
lib/libmp3splt/libsplt_ogg.so \
lib/libmp3splt/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/libmp3splt.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>
|