7be7bfd4f1
- Drop `libgnomecanvas' dependency: cairo is now used for coverart display effects - Add missing runtime dependency for Ogg conversion to work [2] - Similarly to [2], register dependencies for MPEG-4 audio encoding/decoding and MP3 encoding via LAME - Flip cURL support knob to "on", since vorbis-tools require it anyways (and Ogg support is "on" by default). This is OK since cURL is likely to be installed on a typical desktop system; lots of other software wants it - Convert to use PORTDOCS and simplify their installation (get rid of `for' loop in Makefile) - Augment some OPTIONS text, clean up pkg-plist PR: ports/138007 [1], ports/126760 [2] Submitted by: keramida [1], ehaupt [2]
83 lines
2.3 KiB
Makefile
83 lines
2.3 KiB
Makefile
# 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.14
|
|
CATEGORIES= audio
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= danfe@FreeBSD.org
|
|
COMMENT= GUI for Apple iPod using GTK2
|
|
|
|
LIB_DEPENDS= id3tag.0:${PORTSDIR}/audio/libid3tag \
|
|
gpod.5:${PORTSDIR}/audio/libgpod
|
|
RUN_DEPENDS= mp3gain:${PORTSDIR}/audio/mp3gain \
|
|
iconv:${PORTSDIR}/converters/libiconv
|
|
|
|
USE_GETTEXT= yes
|
|
USE_GMAKE= yes
|
|
USE_GNOME= gtk20 libglade2
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib"
|
|
INSTALLS_ICONS= yes
|
|
WANT_GNOME= yes
|
|
MAN1= gtkpod.1
|
|
|
|
PORTDOCS= ChangeLog README TODOandBUGS.txt TROUBLESHOOTING
|
|
|
|
OPTIONS= MPEG4IP "Enable AAC and H.264 support with MPEG4IP" off \
|
|
VORBIS "Enable Ogg/Vorbis support (decoding)" on \
|
|
FLAC "Enable FLAC support (decoding)" on \
|
|
LAME "Enable encoding to MP3 format" on \
|
|
GNOMEVFS "Enable iPod autodetection support" off \
|
|
HAL "Enable HAL support" off \
|
|
CURL "Build with coverart download support" on
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_MPEG4IP) || exists(${LOCALBASE}/lib/libmp4v2.so)
|
|
LIB_DEPENDS+= mp4v2.0:${PORTSDIR}/multimedia/mpeg4ip-libmp4v2
|
|
RUN_DEPENDS+= faac:${PORTSDIR}/audio/faac faad:${PORTSDIR}/audio/faad
|
|
.endif
|
|
|
|
.if defined(WITH_VORBIS) || exists(${LOCALBASE}/lib/libvorbis.so)
|
|
LIB_DEPENDS+= vorbis.4:${PORTSDIR}/audio/libvorbis
|
|
RUN_DEPENDS+= oggdec:${PORTSDIR}/audio/vorbis-tools
|
|
.endif
|
|
|
|
.if defined(WITH_FLAC) || exists(${LOCALBASE}/lib/libFLAC.so)
|
|
LIB_DEPENDS+= FLAC.10:${PORTSDIR}/audio/flac
|
|
.endif
|
|
|
|
.if defined(WITH_LAME) || exists(${LOCALBASE}/bin/lame)
|
|
RUN_DEPENDS+= lame:${PORTSDIR}/audio/lame
|
|
.endif
|
|
|
|
.if defined(WITH_GNOMEVFS) || ${HAVE_GNOME:Mgnomevfs2}
|
|
USE_GNOME+= gnomevfs2
|
|
.endif
|
|
|
|
.if defined(WITH_HAL) || exists(${LOCALBASE}/lib/libhal.so)
|
|
LIB_DEPENDS+= hal.1:${PORTSDIR}/sysutils/hal
|
|
.endif
|
|
|
|
.if defined(WITH_CURL) || exists(${LOCALBASE}/lib/libcurl.so)
|
|
LIB_DEPENDS+= curl.5:${PORTSDIR}/ftp/curl
|
|
.endif
|
|
|
|
pre-configure: .SILENT
|
|
# install locale correctly (share dir instead of lib dir)
|
|
${REINPLACE_CMD} -e 's|DATADIRNAME=lib|DATADIRNAME=share|' \
|
|
${WRKSRC}/configure
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|