aboutsummaryrefslogtreecommitdiffstats
path: root/multimedia/avidemux/Makefile
blob: 0dd6a5cc22b0881829054c214e29c8d0d0ce948d (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
# New ports collection makefile for:    avidemux
# Date created:         15 August 2002
# Whom:                 Anish Mistry
#                       with help from mean
# $FreeBSD$
#

PORTNAME=   avidemux
PORTVERSION=    0.9.0.110
CATEGORIES= multimedia
MASTER_SITES=   http://fixounet.free.fr/avidemux/
DISTNAME=   avidemux-0.9
EXTRACT_SUFX=   .tgz

MAINTAINER= amistry@am-productions.biz
COMMENT=    Simple GUI-based video editor

LIB_DEPENDS=    mp3lame.0:${PORTSDIR}/audio/lame \
        mad.1:${PORTSDIR}/audio/mad \
        freetype.9:${PORTSDIR}/print/freetype2
BUILD_DEPENDS=  \
    ${X11BASE}/include/X11/extensions/Xvlib.h:${PORTSDIR}/graphics/xv

USE_REINPLACE=  yes
USE_X_PREFIX=   yes
USE_GNOME=  gtk12
GNU_CONFIGURE=  yes
CONFIGURE_ENV=  CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include \
        -I${LOCALASE}/include/ffmpeg \
        -I${LOCALBASE}/include/a52dec" \
        LIBFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" \
        LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
CONFIGURE_ARGS= --disable-warnings
USE_GMAKE=  yes

.include <bsd.port.pre.mk>

.if exists(${LOCALBASE}/lib/liba52.so.0)
WITH_A52=   yes
.endif

.if exists(${LOCALBASE}/lib/libxvidcore.so.2)
WITH_XVID=  yes
.endif

.if defined(WITH_XVID)
LIB_DEPENDS+=   xvidcore.2:${PORTSDIR}/multimedia/xvid
CONFIGURE_ARGS+=    --with-xvid-as-decoder
.endif

.if defined(WITH_A52)
LIB_DEPENDS+=   a52.0:${PORTSDIR}/audio/liba52
.endif

pre-everything::
.if !defined(WITH_XVID)
    @${ECHO_MSG} "To enable xvid as the decoder define WITH_XVID."
.endif

.if !defined(WITH_A52)
    @${ECHO_MSG} "To enable A/52 support define WITH_A52."
.endif

post-patch:
    @${TOUCH} ${WRKSRC}/*
    @${REINPLACE_CMD} 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure

.include <bsd.port.post.mk>