diff options
author | Jeremy Lea <reg@FreeBSD.org> | 2000-04-17 00:18:05 +0000 |
---|---|---|
committer | Jeremy Lea <reg@FreeBSD.org> | 2000-04-17 00:18:05 +0000 |
commit | 877b8a533b44bb6324ebbaf65cd80a60d1572003 (patch) | |
tree | e1a018208ceade04ca56a70c5184978cac51853e /audio/timidity++ | |
parent | d12f14432cc492205cefb505a3c1320dd0f4e31a (diff) | |
download | ports-877b8a533b44bb6324ebbaf65cd80a60d1572003.tar.gz ports-877b8a533b44bb6324ebbaf65cd80a60d1572003.zip |
Notes
Diffstat (limited to 'audio/timidity++')
-rw-r--r-- | audio/timidity++/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/audio/timidity++/Makefile b/audio/timidity++/Makefile index b1aafdfdc920..7b22d0f903e6 100644 --- a/audio/timidity++/Makefile +++ b/audio/timidity++/Makefile @@ -13,12 +13,12 @@ DISTNAME= TiMidity++-${PORTVERSION} MAINTAINER= yatt@msc.biglobe.ne.jp -# If you don't have X11, type "make -DNO_X11" or uncomment this. -#NO_X11= yes +# If you don't have X11, type "make -DWITHOUT_X11" or uncomment this. +#WITHOUT_X11= yes USE_BZIP2= yes GNU_CONFIGURE= yes -.if !defined(NO_X11) +.if !defined(WITHOUT_X11) USE_XLIB= yes LIB_DEPENDS+= png.3:${PORTSDIR}/graphics/png .endif @@ -26,7 +26,7 @@ LIB_DEPENDS+= png.3:${PORTSDIR}/graphics/png DIST_SUBDIR= timidity INSTALL_TARGET= install install.man -.if !defined(NO_X11) +.if !defined(WITHOUT_X11) CONFIGURE_ARGS= --with-x --enable-ncurses --enable-vt100 \ --enable-dynamic --enable-server \ --enable-network --enable-spectrogram --enable-wrd @@ -35,7 +35,7 @@ CONFIGURE_ARGS= --enable-ncurses --enable-vt100 \ --enable-network --disable-spectrogram --disable-wrd .endif -.if defined(USE_ESOUND) +.if defined(WITH_ESOUND) LIB_DEPENDS+= esd.2:${PORTSDIR}/audio/esound CONFIGURE_ARGS+= --enable-audio=oss,esd .else |