mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-14 07:43:06 +00:00
6527ef2070
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
37 lines
1.0 KiB
Makefile
37 lines
1.0 KiB
Makefile
# New ports collection makefile for: musiccontrol
|
|
# Date created: 9 june 2003
|
|
# Whom: Christian Laursen <xi@borderworlds.dk>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= musiccontrol
|
|
PORTVERSION= 0.3
|
|
PORTREVISION= 2
|
|
CATEGORIES= audio java
|
|
MASTER_SITES= http://borderworlds.dk/projects/mc/
|
|
DISTNAME= MusicControl-0.3
|
|
EXTRACT_SUFX= .jar
|
|
EXTRACT_ONLY=
|
|
|
|
MAINTAINER= xi@borderworlds.dk
|
|
COMMENT= An advanced music player
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/bin/mpg123:${PORTSDIR}/audio/mpg123 \
|
|
${LOCALBASE}/bin/ogg123:${PORTSDIR}/audio/vorbis-tools \
|
|
${LOCALBASE}/bin/simplemod:${PORTSDIR}/audio/simplemod
|
|
|
|
USE_JAVA= yes
|
|
JAVA_VERSION= 1.4+
|
|
NO_BUILD= yes
|
|
PLIST_FILES= share/java/classes/MusicControl-${PORTVERSION}.jar bin/musiccontrol
|
|
|
|
do-install:
|
|
@${MKDIR} ${JAVAJARDIR}
|
|
${INSTALL_DATA} ${DISTDIR}/MusicControl-${PORTVERSION}.jar ${JAVAJARDIR}/
|
|
${SED} 's,%%LOCALBASE%%,${LOCALBASE},g ; s,%%JAVAJARDIR%%,${JAVAJARDIR},g' \
|
|
${FILESDIR}/musiccontrol > ${WRKDIR}/musiccontrol
|
|
${INSTALL_SCRIPT} ${WRKDIR}/musiccontrol ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|