mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-25 09:34:11 +00:00
09b69954f2
after Feb 2 2004 if they are still broken at that time and no fixes have been submitted by PR.
52 lines
1.2 KiB
Makefile
52 lines
1.2 KiB
Makefile
# New ports collection makefile for: evilbar
|
|
# Date created: 31 Januar 2003
|
|
# Whom: Jens Arnfast <jens@arnfast.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= evilbar
|
|
PORTVERSION= 1.2.1
|
|
CATEGORIES+= audio sysutils x11-clocks
|
|
MASTER_SITES= http://arnfast.net/projects/
|
|
|
|
MAINTAINER= jens@arnfast.net
|
|
COMMENT= Minimalistic statusbar with XMMS control, APM status and clock
|
|
|
|
BROKEN= "Does not link, will be removed after Feb 2"
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_REINPLACE= yes
|
|
|
|
MAN1= evilbar.1 launch_evilbar.1
|
|
|
|
.if !defined(WITHOUT_XMMS)
|
|
BUILD_DEPENDS+= xmms:${PORTSDIR}/multimedia/xmms
|
|
RUN_DEPENDS+= xmms:${PORTSDIR}/multimedia/xmms
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-xmms
|
|
.endif
|
|
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
|
|
.if defined(WITH_APM)
|
|
CONFIGURE_ARGS+= --enable-apm
|
|
.endif
|
|
|
|
pre-everything::
|
|
.if !defined(WITHOUT_XMMS)
|
|
@${ECHO_MSG}
|
|
@${ECHO_MSG} "You can disable XMMS control by defining WITHOUT_XMMS."
|
|
.endif
|
|
.if !defined(WITH_APM)
|
|
@${ECHO_MSG}
|
|
@${ECHO_MSG} "You can enable APM status by defining WITH_APM."
|
|
.endif
|
|
@${ECHO_MSG}
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/for as_dir in/s/:/$$PATH_SEPARATOR/g' \
|
|
${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|