Add no_esd flavor; ok maintainer.

This commit is contained in:
fgsch 2001-12-03 21:10:30 +00:00
parent e88258dbab
commit ef9e68764e

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.5 2001/10/24 12:29:50 espie Exp $
# $OpenBSD: Makefile,v 1.6 2001/12/03 21:10:30 fgsch Exp $
COMMENT= "chat program that combines AIM, ICQ, and Yahoo! Chat"
@ -9,8 +9,7 @@ MASTER_SITES= http://www.everybuddy.com/files/
HOMEPAGE= http://www.everybuddy.com/
LIB_DEPENDS= gtk.1.2,gdk.1.2::x11/gtk+ \
esd::audio/esound
LIB_DEPENDS= gtk.1.2,gdk.1.2::x11/gtk+
MAINTAINER= Josh Rivel <dorqus@bsdfreek.com>
@ -19,8 +18,18 @@ PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
USE_GMAKE= Yes
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS= --disable-arts --without-gnome
USE_GMAKE= Yes
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS+= --disable-arts --without-gnome
FLAVORS= no_esd
FLAVOR?=
.if ${FLAVOR:L:Mno_esd}
CONFIGURE_ARGS+= --disable-esd
.else
CONFIGURE_ARGS+= --with-esd
LIB_DEPENDS= esd::audio/esound
.endif
.include <bsd.port.mk>