67 lines
1.6 KiB
Makefile
67 lines
1.6 KiB
Makefile
# $OpenBSD: Makefile,v 1.27 2011/09/16 08:26:10 espie Exp $
|
|
|
|
COMMENT-main= library to access the contents of an iPod
|
|
COMMENT-python= python bindings for libgpod
|
|
|
|
VERSION= 0.7.2
|
|
DISTNAME= libgpod-${VERSION}
|
|
PKGNAME-main= ${DISTNAME}
|
|
REVISION-main = 6
|
|
PKGNAME-python= py-gpod-${VERSION}
|
|
REVISION-python = 6
|
|
SHARED_LIBS= gpod 720.0
|
|
CATEGORIES= audio
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gtkpod/}
|
|
|
|
HOMEPAGE= http://www.gtkpod.org/libgpod/
|
|
|
|
MAINTAINER= Chris Kuethe <ckuethe@openbsd.org>
|
|
|
|
# LGPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MULTI_PACKAGES= -main -python
|
|
|
|
USE_LIBTOOL= Yes
|
|
USE_GMAKE= Yes
|
|
|
|
MODULES= devel/gettext \
|
|
lang/python \
|
|
textproc/intltool
|
|
|
|
BUILD_DEPENDS= audio/py-mutagen \
|
|
devel/swig
|
|
RUN_DEPENDS-python= audio/py-mutagen
|
|
LIB_DEPENDS-python= ${LIB_DEPENDS} \
|
|
devel/libffi \
|
|
${BUILD_PKGPATH},-main
|
|
LIB_DEPENDS= devel/glib2 \
|
|
graphics/gdk-pixbuf2 \
|
|
textproc/libxml
|
|
|
|
WANTLIB += gio-2.0 glib-2.0 gmodule-2.0 gobject-2.0 gthread-2.0 m z pcre
|
|
WANTLIB += gdk_pixbuf-2.0 xml2
|
|
WANTLIB-python += ${WANTLIB} ffi gpod
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ARGS+=--disable-hal \
|
|
--with-python="${MODPY_BIN}"
|
|
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib" \
|
|
CXXFLAGS="${CXXFLAGS} -ftrampolines" \
|
|
CFLAGS="${CFLAGS} -ftrampolines"
|
|
|
|
pre-configure:
|
|
@find ${WRKDIST} -name \*.py | \
|
|
xargs perl -pi -e 's,/usr/bin/python,${MODPY_BIN},g'
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/py-gpod
|
|
${INSTALL_DATA} ${WRKSRC}/bindings/python/examples/*.py \
|
|
${PREFIX}/share/examples/py-gpod
|
|
|
|
.include <bsd.port.mk>
|