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)
41 lines
953 B
Makefile
41 lines
953 B
Makefile
# New ports collection makefile for: xmms-infopipe
|
|
# Date created: 14 July 2003
|
|
# Whom: mig
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= xmms-infopipe
|
|
PORTVERSION= 1.3
|
|
PORTREVISION= 7
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://www.beastwithin.org/users/wwwwolf/code/xmms/
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Create a named pipe to retrive xmms info about currently playing song
|
|
|
|
LIB_DEPENDS= xmms.4:${PORTSDIR}/multimedia/xmms
|
|
RUN_DEPENDS= xmms-config:${PORTSDIR}/multimedia/xmms
|
|
|
|
USE_GNOME= gtk12
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
LIBDIR?= ${PREFIX}/lib/xmms/General
|
|
SRCLIBDIR?= src/.libs
|
|
|
|
LDCONFIG_DIRS= %%LOCALBASE%%/lib/xmms/General
|
|
PLIST_FILES= lib/xmms/General/libinfopipe.so
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/objformat=/s|=.*|=elf|' ${WRKSRC}/configure
|
|
|
|
do-install:
|
|
cd ${WRKSRC}/${SRCLIBDIR};\
|
|
${MKDIR} ${LIBDIR};\
|
|
${INSTALL_PROGRAM} libinfopipe-1.3.so.1 ${LIBDIR}/libinfopipe.so
|
|
|
|
.include <bsd.port.mk>
|