b9972244a7
- Bump all affected ports Maintainer of net/ushare was asked for review, no response in 2 weeks
50 lines
1.2 KiB
Makefile
50 lines
1.2 KiB
Makefile
# New ports collection makefile for: ushare
|
|
# Date created: 11 December 2006
|
|
# Whom: Volker Theile <votdev@gmx.de>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ushare
|
|
PORTVERSION= 1.1a
|
|
PORTREVISION= 9
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://ushare.geexbox.org/releases/
|
|
|
|
MAINTAINER= votdev@gmx.de
|
|
COMMENT= A lightweight UPnP (TM) A/V Media Server
|
|
|
|
LIB_DEPENDS= upnp.9:${PORTSDIR}/devel/upnp
|
|
|
|
HAS_CONFIGURE= yes
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
USE_GNOME= pkgconfig
|
|
USE_GETTEXT= yes
|
|
LDFLAGS+= -L${LOCALBASE}/lib -lintl
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include -I${WRKSRC}
|
|
|
|
MAN1= ${PORTNAME}.1
|
|
|
|
OPTIONS= LIBDLNA "Enable DLNA (PS3) support" off
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if defined(WITH_LIBDLNA)
|
|
LIB_DEPENDS+= dlna:${PORTSDIR}/devel/libdlna
|
|
CONFIGURE_ARGS= --enable-dlna
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/src/${PORTNAME} ${PREFIX}/bin
|
|
${CP} ${WRKSRC}/scripts/${PORTNAME}.conf \
|
|
${PREFIX}/etc/${PORTNAME}.conf.sample
|
|
${INSTALL_SCRIPT} ${WRKSRC}/scripts/${PORTNAME} ${PREFIX}/etc/rc.d
|
|
${INSTALL_MAN} ${WRKSRC}/src/${PORTNAME}.1 ${PREFIX}/man/man1
|
|
|
|
post-install:
|
|
${CP} -np ${PREFIX}/etc/${PORTNAME}.conf.sample \
|
|
${PREFIX}/etc/${PORTNAME}.conf
|
|
|
|
.include <bsd.port.mk>
|