mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
d26530b713
- convert all fuse ports to use the new macro The macro makes sure sysutils/fusefs-libs gets installed and depending on fuse being in base or not it installs sysutils/fusefs-kmod. Approved by: portmgr (bapt)
33 lines
743 B
Makefile
33 lines
743 B
Makefile
# Created by: Eric L. Camachat <eric@camachat.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= djmount
|
|
PORTVERSION= 0.71
|
|
PORTREVISION= 6
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= eric@camachat.org
|
|
COMMENT= Mount UPnP A/V Media
|
|
|
|
LIB_DEPENDS= upnp.9:${PORTSDIR}/devel/upnp
|
|
BUILD_DEPENDS= iconv:${PORTSDIR}/converters/libiconv
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
GNU_CONFIGURE= yes
|
|
USE_FUSE= yes
|
|
USE_GNOME= pkgconfig
|
|
CONFIGURE_ARGS= --with-libiconv-prefix=${LOCALBASE} \
|
|
--with-fuse-prefix=${LOCALBASE} \
|
|
--with-external-libupnp --with-libupnp-prefix=${LOCALBASE}
|
|
|
|
PORTDOCS= AUTHORS ChangeLog NEWS README TODO
|
|
|
|
post-install:
|
|
.ifndef NOPORTDOCS
|
|
@${INSTALL} -d ${DOCSDIR}/
|
|
@cd ${WRKSRC}/&&${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}/
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|