mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +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)
43 lines
961 B
Makefile
43 lines
961 B
Makefile
# New ports collection makefile for: xmms-pipe
|
|
# Date created: 23 Aug 2002
|
|
# Whom: David Yeske <dyeske@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= xmms-pipe
|
|
PORTVERSION= 0.5.6
|
|
PORTREVISION= 3
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://rooster.stanford.edu/~ben/xmmspipe/files/
|
|
DISTNAME= xmmspipe-${PORTVERSION}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= dyeske@gmail.com
|
|
COMMENT= Controls XMMS with a named pipe
|
|
|
|
BUILD_DEPENDS= xmms-config:${PORTSDIR}/multimedia/xmms
|
|
RUN_DEPENDS= xmms:${PORTSDIR}/multimedia/xmms
|
|
|
|
USE_GMAKE= yes
|
|
ALL_TARGET= target
|
|
|
|
DOC_FILES= HISTORY README LICENSE COMMANDS
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -E -e 's|gcc|${CC}|; \
|
|
s|^(COPT=).+$$|\1${CFLAGS} ${PTHREAD_CFLAGS} ${PTHREAD_LIBS}|' \
|
|
${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
@${INSTALL_DATA} ${WRKSRC}/xmmspipe.so \
|
|
${PREFIX}/lib/xmms/General/
|
|
.ifndef(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for file in ${DOC_FILES}
|
|
@${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|