summaryrefslogtreecommitdiff
path: root/audio/lame-devel/Makefile
blob: 3c8012621a987ab5f7434b72dcd7abfcde638b57 (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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# ports collection makefile for:   lame
# Date created:        11 January 1998
# Whom:                yoshiaki Uchikawa
#
# $FreeBSD$
#

PORTNAME=	lame
PORTVERSION=	3.89b
CATEGORIES=	audio
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE} \
		ftp://ftp.fu-berlin.de/unix/sound/%SUBDIR%/ \
		ftp://ftp.zlurp.com/source/%SUBDIR%/
MASTER_SITE_SUBDIR=	lame
PKGNAMESUFFIX=	-devel
DISTNAME=	${PORTNAME:S/-devel//}${PORTVERSION:S/b/beta/}

MAINTAINER=	clefevre@citeweb.net

BUILD_DEPENDS=	nasm:${PORTSDIR}/devel/nasm

# lame 3.89b builds ok w/ libvorbis-1.0.r1 but don't w/ r2.
# so, Ogg/Vorbis support should be disabled until this problem is fixed.
# see the following URL for details and followups :
# https://sourceforge.net/tracker/?func=detail&aid=462400&group_id=290&atid=100290
.if !defined(WITH_UNTESTED_VORBIS_FIX)
WITHOUT_VORBIS=	yes
.endif

.if !defined(WITHOUT_VORBIS)
LIB_DEPENDS=	vorbis.0:${PORTSDIR}/audio/libvorbis

# libvorbis sources are required wether or not the library is already installed.
DEPENDS=	${PORTSDIR}/audio/libvorbis:patch
.endif

WRKSRC=		${WRKDIR}/${PORTNAME:S/-devel//}-${PORTVERSION:S/b//}

GNU_CONFIGURE=	yes
INSTALLS_SHLIB=	yes
CONFIGURE_ARGS=	--enable-nasm \
		--enable-mp3x \
		--enable-mp3rtp
USE_GMAKE=	yes
USE_LIBTOOL=	yes
WANT_GTK=	yes

MAN1=		lame.1

.include <bsd.port.pre.mk>

.if defined(HAVE_GTK)
USE_GTK=	yes
.else
CONFIGURE_ARGS+=	--disable-gtktest
.endif

.if !defined(WITHOUT_VORBIS)
LIBVORBIS_SRC!=		cd ${PORTSDIR}/audio/libvorbis && ${MAKE} -V WRKSRC

CONFIGURE_ARGS+=	--with-vorbis
CONFIGURE_ENV+=		CONFIG_DEFS="${CONFIG_DEFS}" \
			CPPFLAGS="-I${LOCALBASE}/include \
				  -I${LIBVORBIS_SRC}/lib" \
			LDFLAGS="-L${LOCALBASE}/lib" \
			LIBS=-logg
CONFIG_DEFS=		-DUSE_FFT3DN # -DUSE_FFTSSE -DUSE_FFTFPU
.endif

DOCSDIR=	${PREFIX}/share/doc/${PORTNAME:S/-devel//}
DOC_FILES=	API PRESETS.draft README TODO USAGE

pre-everything::
.if !defined(WITH_UNTESTED_VORBIS_FIX)
	@${ECHO_MSG}
	@${ECHO_MSG} "If you want to compile with Vorbis support" \
		     "using an untested fix."
	@${ECHO_MSG} "hit Ctrl-C right now and use " \
		     "\"make WITH_UNTESTED_VORBIS_FIX=yes\""
	@${ECHO_MSG}
.else
.if !defined(WITHOUT_VORBIS)
	@${ECHO_MSG}
	@${ECHO_MSG} "If you don't want to compile with Vorbis support."
	@${ECHO_MSG} "hit Ctrl-C right now and use \"make WITHOUT_VORBIS=yes\""
	@${ECHO_MSG}
.endif
.endif

.if defined(NOPORTDOCS)
do-install:
	@cd ${INSTALL_WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} \
		${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} install-exec
	@cd ${INSTALL_WRKSRC}/include && ${SETENV} ${MAKE_ENV} ${GMAKE} \
		${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} install-data
	@cd ${INSTALL_WRKSRC}/doc/man && ${SETENV} ${MAKE_ENV} ${GMAKE} \
		${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} install-data
.else
post-install: install-doc

install-doc:
	@${MKDIR} ${DOCSDIR}
.for file in ${DOC_FILES}
	@${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif

.include <bsd.port.post.mk>