mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
bdbf1030b2
dependency references from both audio and graphics to multimedia category. audio/xmms --> multimedia/xmms graphics/avifile --> multimedia/avifile graphics/divx4linux --> multimedia/divx4linux graphics/ffmpeg --> multimedia/ffmpeg graphics/libdv --> multimedia/libdv graphics/libdvdcss --> multimedia/libdvdcss graphics/libdvdread --> multimedia/libdvdread graphics/libmpeg2 --> multimedia/libmpeg2 graphics/linux-realplayer --> multimedia/linux-realplayer graphics/mjpegtools --> multimedia/mjpegtools graphics/mplayer --> multimedia/mplayer graphics/mplayer-fonts --> multimedia/mplayer-fonts graphics/openquicktime --> multimedia/openquicktime graphics/win32-codecs --> multimedia/win32-codecs Repo copied by: joe (cvs hat) Approved by: knu (portmgr hat)
42 lines
906 B
Makefile
42 lines
906 B
Makefile
# New ports collection makefile for: xmms-pipe
|
|
# Date created: 23 Aug 2002
|
|
# Whom: David Yeske <dyeske@yahoo.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= xmms-pipe
|
|
PORTVERSION= 0.4.5
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://rooster.stanford.edu/~ben/xmmspipe/
|
|
DISTNAME= xmmspipe-${PORTVERSION}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= dyeske@yahoo.com
|
|
|
|
BUILD_DEPENDS= xmms-config:${PORTSDIR}/multimedia/xmms
|
|
RUN_DEPENDS= xmms:${PORTSDIR}/multimedia/xmms
|
|
|
|
USE_X_PREFIX= yes
|
|
USE_GMAKE= yes
|
|
USE_REINPLACE= yes
|
|
|
|
DOC_FILES= HISTORY README LICENSE
|
|
|
|
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/Effect/
|
|
.ifndef(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for file in ${DOC_FILES}
|
|
@${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|