mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
6f6fbe4bdf
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead PR: 157936 Submitted by: myself Exp-runs by: pav Approved by: pav
92 lines
2.3 KiB
Makefile
92 lines
2.3 KiB
Makefile
# New ports collection makefile for: libgpod
|
|
# Date created: Wed Jan 1 00:48:58 EST 2006
|
|
# Whom: Devon Ryan <dpryan@dpryan.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libgpod
|
|
PORTVERSION= 0.8.0
|
|
CATEGORIES= audio
|
|
MASTER_SITES= SF/gtkpod/${PORTNAME}/${PORTNAME}-${PORTVERSION:R}
|
|
|
|
MAINTAINER= avilla@FreeBSD.org
|
|
COMMENT= A library for direct access of iPod contents
|
|
|
|
LICENSE= LGPL20
|
|
|
|
LIB_DEPENDS= plist.1:${PORTSDIR}/devel/libplist \
|
|
tag.1:${PORTSDIR}/audio/taglib \
|
|
sgutils2.2:${PORTSDIR}/sysutils/sg3_utils
|
|
|
|
USE_GETTEXT= yes
|
|
USE_GMAKE= yes
|
|
USE_GNOME= gtk20
|
|
USE_SQLITE= 3
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
CONFIGURE_ARGS= --without-hal --with-html-dir="${PREFIX}/share/doc"
|
|
|
|
OPTIONS= IMOBILE "Support Apple iPhone/iPod Touch" on \
|
|
PYTHON "Enable Python bindings" off \
|
|
MONO "Enable Mono bindings" off
|
|
|
|
PORTDOCS= ChangeLog NEWS README*
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if defined(WITH_PYTHON)
|
|
USE_PYTHON= yes
|
|
USE_GNOME+= pygobject
|
|
BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/mutagen/__init__.py:${PORTSDIR}/audio/py-mutagen \
|
|
swig:${PORTSDIR}/devel/swig13
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
PLIST_SUB+= PYTHON=""
|
|
.else
|
|
CONFIGURE_ARGS+= --without-python
|
|
PLIST_SUB+= PYTHON="@comment "
|
|
.endif
|
|
|
|
.if defined(WITH_MONO)
|
|
USE_GNOME+= gtksharp20
|
|
CONFIGURE_ARGS+= --with-mono
|
|
PLIST_SUB+= MONO=""
|
|
.else
|
|
CONFIGURE_ARGS+= --without-mono
|
|
PLIST_SUB+= MONO="@comment "
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_IMOBILE) && (${OSVERSION} > 900002 || \
|
|
${OSVERSION} < 900000 && ${OSVERSION} > 800107)
|
|
COMMENT:= ${COMMENT:S,iPod,&/iPhone,}
|
|
LIB_DEPENDS+= imobiledevice.1:${PORTSDIR}/comms/libimobiledevice
|
|
CONFIGURE_ENV+= LIBUSB_CFLAGS=" " LIBUSB_LIBS="-lusb"
|
|
.else
|
|
CONFIGURE_ARGS+= --without-libimobiledevice
|
|
.endif
|
|
|
|
post-patch:
|
|
# Adjust pkgconfigdir to the FreeBSD world
|
|
@${REINPLACE_CMD} -e \
|
|
's,libdir)/pkgconfig,prefix)/libdata/pkgconfig,' \
|
|
${WRKSRC}/Makefile.in \
|
|
${WRKSRC}/bindings/mono/libgpod-sharp/Makefile.in
|
|
# Allow to build tools without HAL
|
|
@${REINPLACE_CMD} -e \
|
|
'/noinst_PROGRAMS =/s,^,@HAVE_HAL_TRUE@,' \
|
|
${WRKSRC}/tools/Makefile.in
|
|
.if defined(NOPORTDOCS)
|
|
@${REINPLACE_CMD} -e 's, docs,,' ${WRKSRC}/Makefile.in
|
|
.endif
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|