Stagify, utilize OPTIONS helpers, reword comments slightly.
This commit is contained in:
parent
27985fe3f2
commit
9a92b25822
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=340590
2 changed files with 15 additions and 28 deletions
|
@ -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
|
||||
CPPFLAGS+= -I${LOCALBASE}/include
|
||||
LDFLAGS+= -L${LOCALBASE}/lib
|
||||
INSTALLS_ICONS= yes
|
||||
|
||||
MAN1= ${PORTNAME}.1
|
||||
CPPFLAGS+= -I${LOCALBASE}/include
|
||||
LDFLAGS+= -L${LOCALBASE}/lib
|
||||
|
||||
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>
|
||||
VORBIS_LIB_DEPENDS= libvorbisfile.so:${PORTSDIR}/audio/libvorbis
|
||||
VORBIS_CONFIGURE_OFF= --without-ogg
|
||||
|
||||
.if ${PORT_OPTIONS:MVORBIS}
|
||||
LIB_DEPENDS+= libvorbisfile.so:${PORTSDIR}/audio/libvorbis
|
||||
.else
|
||||
CONFIGURE_ARGS+= --without-ogg
|
||||
.endif
|
||||
FLAC_LIB_DEPENDS= libFLAC.so:${PORTSDIR}/audio/flac
|
||||
FLAC_CONFIGURE_ARGS= --without-flac
|
||||
|
||||
.if ${PORT_OPTIONS:MFLAC}
|
||||
LIB_DEPENDS+= libFLAC.so:${PORTSDIR}/audio/flac
|
||||
.else
|
||||
CONFIGURE_ARGS+= --without-flac
|
||||
.endif
|
||||
|
||||
.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>
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue