diff options
author | danfe <danfe@FreeBSD.org> | 2007-03-19 03:54:52 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2007-03-19 03:54:52 +0800 |
commit | 34776a72d88a6f337a9a719d4114b36144b1497e (patch) | |
tree | 7657d74cbffb53b29953d6e8b8dfe9479876e35a /audio | |
parent | 1be81f20e012719555b3a9176d2b7ca7bfb36713 (diff) | |
download | freebsd-ports-gnome-34776a72d88a6f337a9a719d4114b36144b1497e.tar.gz freebsd-ports-gnome-34776a72d88a6f337a9a719d4114b36144b1497e.tar.zst freebsd-ports-gnome-34776a72d88a6f337a9a719d4114b36144b1497e.zip |
Catch up with recent libgpod update to version 0.4.2.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/gtkpod/Makefile | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/audio/gtkpod/Makefile b/audio/gtkpod/Makefile index 039faf47e189..88e921dfe9b7 100644 --- a/audio/gtkpod/Makefile +++ b/audio/gtkpod/Makefile @@ -7,7 +7,7 @@ PORTNAME= gtkpod PORTVERSION= 0.99.8 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -16,7 +16,7 @@ MAINTAINER= danfe@FreeBSD.org COMMENT= GUI for Apple iPods using GTK2 LIB_DEPENDS= id3tag.0:${PORTSDIR}/audio/libid3tag \ - gpod.400:${PORTSDIR}/audio/libgpod + gpod.1:${PORTSDIR}/audio/libgpod RUN_DEPENDS= mp3gain:${PORTSDIR}/audio/mp3gain \ iconv:${PORTSDIR}/converters/libiconv @@ -42,14 +42,17 @@ LIB_DEPENDS+= mp4v2.0:${PORTSDIR}/multimedia/mpeg4ip-libmp4v2 CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" CONFIGURE_ENV+= LDFLAGS="-L${LOCALBASE}/lib" -pre-configure: +pre-configure: .SILENT # install locale correctly (share dir instead of lib dir) - @${REINPLACE_CMD} -e 's|DATADIRNAME=lib|DATADIRNAME=share|' \ + ${REINPLACE_CMD} -e 's|DATADIRNAME=lib|DATADIRNAME=share|' \ ${WRKSRC}/configure - @${REINPLACE_CMD} -e 's|(libdir)/locale|(datadir)/locale|' \ + ${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 + ${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) |