aboutsummaryrefslogtreecommitdiffstats
path: root/audio/gtkpod/Makefile
blob: 88e921dfe9b7550f3d39c720c81ced0a16da6429 (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
# New ports collection makefile for:    gtkpod
# Date created:             28 January 2003
# Whom:                 David Le Brun <david@dyn-ns.net>
#
# $FreeBSD$
#

PORTNAME=   gtkpod
PORTVERSION=    0.99.8
PORTREVISION=   2
CATEGORIES= audio
MASTER_SITES=   ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}

MAINTAINER= danfe@FreeBSD.org
COMMENT=    GUI for Apple iPods using GTK2

LIB_DEPENDS=    id3tag.0:${PORTSDIR}/audio/libid3tag \
        gpod.1:${PORTSDIR}/audio/libgpod
RUN_DEPENDS=    mp3gain:${PORTSDIR}/audio/mp3gain \
        iconv:${PORTSDIR}/converters/libiconv

USE_X_PREFIX=   yes

USE_GETTEXT=    yes
USE_GMAKE=  yes
USE_GNOME=  gtk20 libglade2
GNU_CONFIGURE=  yes

OPTIONS=    MPEG4IP "Enable AAC and H.264 support with MPEG4IP" off

.include <bsd.port.pre.mk>

.if exists(${LOCALBASE}/lib/libmp4v2.so)
WITH_MPEG4IP=   YES
.endif

.if defined(WITH_MPEG4IP)
LIB_DEPENDS+=   mp4v2.0:${PORTSDIR}/multimedia/mpeg4ip-libmp4v2
.endif

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

pre-configure: .SILENT
# install locale correctly (share dir instead of lib dir)
    ${REINPLACE_CMD} -e 's|DATADIRNAME=lib|DATADIRNAME=share|' \
        ${WRKSRC}/configure
    ${REINPLACE_CMD} -e 's|(libdir)/locale|(datadir)/locale|' \
        ${WRKSRC}/po/Makefile.in.in
# work-around a segfault when attempting to delete track from iPod
    ${REINPLACE_CMD} '83,85d' ${WRKSRC}/src/confirmation.c
# catch up with recent libgpod update to version 0.4.2
    ${REINPLACE_CMD} -e 's|unk208|mediatype|g' ${WRKSRC}/src/file.c \
        ${WRKSRC}/src/file_itunesdb.c

post-install:
.if !defined(NOPORTDOCS)
    @${MKDIR} ${DOCSDIR}
    ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
    ${INSTALL_DATA} ${WRKSRC}/ChangeLog ${DOCSDIR}
    ${INSTALL_DATA} ${WRKSRC}/TODOandBUGS.txt ${DOCSDIR}
.endif

.include <bsd.port.post.mk>