9ecc2f4ce0
audio/squeezeboxserver: - Move to audio/logitechmediaserver - Update to 7.9.0 pre-release (git commit from 7.9 branch on 2016.09.30) - Change default install and database locations to suit new PORTNAME - Remove softsqueeze.sh as it is no longer bundled with the server - Add /usr/local/etc/newsyslog.conf.d/, don't edit /etc/newsyslog.conf - Add LICENSE details - Update maintainer (previous maintainer timeout) - Use customized perl modules provided in distfile and slimserver-vendor GitHub repo, rather than using perl dependencies from ports - Changed install method to now copy directly to stagedir instead of an intermediate step to TMP_SLIMDIR audio/squeezeboxserver-dynamicplaylist: - Move to audio/logitechmediaserver-dynamicplaylist - Update to 2.9.3853 - Fix MASTER_SITES - Add LICENSE details - Update maintainer audio/squeezeboxserver-lazysearch: - Move to audio/logitechmediaserver-lazysearch - Add LICENSE details - Update maintainer audio/squeezeboxserver-sqlplaylist: - Move to audio/logitechmediaserver-sqlplaylist - Update to 2.5.3859 - Fix MASTER_SITES - Add LICENSE details - Update maintainer audio/squeezeboxserver-superdatetime: - Move to audio/logitechmediaserver-superdatetime - Add LICENSE details - Update maintainer audio/squeezeboxserver-trackstat: - Move to audio/logitechmediaserver-trackstat - Update to 3.2.3951 - Fix MASTER_SITES - Add LICENSE details - Update maintainer PR: 180034 PR: 203266 Submitted by: woodsb02, mark@tranquillussoftware.co.uk (new maintainer) Reported by: david@dawninglight.net, amdmi3 Approved by: markk@knigma.org (maintainer timeout), tdb (maintainer), adamw (mentor) Differential Revision: https://reviews.freebsd.org/D6483
32 lines
835 B
Makefile
32 lines
835 B
Makefile
# Created by: Tim Bishop <tdb@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= lazysearch
|
|
PORTVERSION= 3.6.5
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://www.hickinbottom.com/sc-plugins/
|
|
PKGNAMEPREFIX= logitechmediaserver-
|
|
DISTNAME= LazySearch2-7-${PORTVERSION}
|
|
DIST_SUBDIR= logitechmediaserver
|
|
|
|
MAINTAINER= mark@tranquillussoftware.co.uk
|
|
COMMENT= Logitech Media Server plugin for performing lazy searches
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/LazySearch2/LICENSE
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/${SLIMDIR}/slimserver.pl:audio/logitechmediaserver
|
|
|
|
USES= zip
|
|
NO_WRKSUBDIR= yes
|
|
NO_BUILD= yes
|
|
NO_ARCH= yes
|
|
|
|
SLIMDIR?= share/logitechmediaserver
|
|
PLIST_SUB+= SLIMDIR=${SLIMDIR}
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/${SLIMDIR}/Plugins/LazySearch2
|
|
${CP} -R ${WRKSRC}/LazySearch2/* ${STAGEDIR}${PREFIX}/${SLIMDIR}/Plugins/LazySearch2
|
|
|
|
.include <bsd.port.mk>
|