diff options
author | danfe <danfe@FreeBSD.org> | 2014-01-21 18:14:47 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2014-01-21 18:14:47 +0800 |
commit | f9b7bcff1e20d63d01b4764928a7e7a8924c59a4 (patch) | |
tree | 7958f4b47bcfc9efbda7e9ed26c3fa792e3cd9a4 /audio | |
parent | 9da86e29234bc2b0283ed41a3c72567508cb8610 (diff) | |
download | freebsd-ports-gnome-f9b7bcff1e20d63d01b4764928a7e7a8924c59a4.tar.gz freebsd-ports-gnome-f9b7bcff1e20d63d01b4764928a7e7a8924c59a4.tar.zst freebsd-ports-gnome-f9b7bcff1e20d63d01b4764928a7e7a8924c59a4.zip |
Stagify, utilize OPTIONS helpers, reword comments slightly.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/gtkpod/Makefile | 40 | ||||
-rw-r--r-- | audio/gtkpod/pkg-plist | 1 |
2 files changed, 14 insertions, 27 deletions
diff --git a/audio/gtkpod/Makefile b/audio/gtkpod/Makefile index 76ac125585fe..3df8c7203f50 100644 --- a/audio/gtkpod/Makefile +++ b/audio/gtkpod/Makefile @@ -16,14 +16,13 @@ LIB_DEPENDS= libid3tag.so:${PORTSDIR}/audio/libid3tag \ libgpod.so:${PORTSDIR}/audio/libgpod USES= gettext gmake pkgconfig -NO_STAGE= yes USE_GNOME= gtk20 libglade2 GNU_CONFIGURE= yes +INSTALLS_ICONS= yes + CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -INSTALLS_ICONS= yes -MAN1= ${PORTNAME}.1 PORTDOCS= ChangeLog NEWS README TODOandBUGS.txt TROUBLESHOOTING OPTIONS_DEFINE= VORBIS FLAC CURL @@ -31,40 +30,27 @@ OPTIONS_DEFAULT= VORBIS FLAC CURL CURL_DESC= Cover art download support via libcurl -.include <bsd.port.pre.mk> - -.if ${PORT_OPTIONS:MVORBIS} -LIB_DEPENDS+= libvorbisfile.so:${PORTSDIR}/audio/libvorbis -.else -CONFIGURE_ARGS+= --without-ogg -.endif +VORBIS_LIB_DEPENDS= libvorbisfile.so:${PORTSDIR}/audio/libvorbis +VORBIS_CONFIGURE_OFF= --without-ogg -.if ${PORT_OPTIONS:MFLAC} -LIB_DEPENDS+= libFLAC.so:${PORTSDIR}/audio/flac -.else -CONFIGURE_ARGS+= --without-flac -.endif +FLAC_LIB_DEPENDS= libFLAC.so:${PORTSDIR}/audio/flac +FLAC_CONFIGURE_ARGS= --without-flac -.if ${PORT_OPTIONS:MCURL} -LIB_DEPENDS+= libcurl.so:${PORTSDIR}/ftp/curl -.else -CONFIGURE_ARGS+= --without-curl -.endif +CURL_LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl +CURL_CONFIGURE_ARGS= --without-curl post-patch: # Install locale files correctly (to share dir instead of lib dir) @${REINPLACE_CMD} -e 's|DATADIRNAME=lib|DATADIRNAME=share|' \ ${WRKSRC}/configure -# FreeBSD does not have libdl +# FreeBSD does not have separate libdl.so @${REINPLACE_CMD} -e 's| -ldl||' ${WRKSRC}/src/Makefile.in -# Adjust location of <endian.h> header +# Fix location of the <endian.h> header @${REINPLACE_CMD} -e 's|endian\.h|sys/&|' ${WRKSRC}/configure \ ${WRKSRC}/src/mp4file.c post-install: -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} -.endif + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} -.include <bsd.port.post.mk> +.include <bsd.port.mk> diff --git a/audio/gtkpod/pkg-plist b/audio/gtkpod/pkg-plist index 135becf58983..d6cad710df76 100644 --- a/audio/gtkpod/pkg-plist +++ b/audio/gtkpod/pkg-plist @@ -1,4 +1,5 @@ bin/gtkpod +man/man1/gtkpod.1.gz %%DATADIR%%/data/default-cover.png %%DATADIR%%/data/gtkpod-add-dirs.png %%DATADIR%%/data/gtkpod-add-files.png |