diff options
author | Anders Nordby <anders@FreeBSD.org> | 2002-11-18 05:22:43 +0000 |
---|---|---|
committer | Anders Nordby <anders@FreeBSD.org> | 2002-11-18 05:22:43 +0000 |
commit | 53baf682f9b6591432f7da443ad77ebf0744bec1 (patch) | |
tree | 3818ba74e360a89a58fcb9cf9ae9c2fb07365179 /audio/xsidplay | |
parent | Connect libsidplay2 to the build. (diff) |
Add WITH_SIDPLAY2 knob for enabling libsidplay2/resid libraries.
Diffstat (limited to 'audio/xsidplay')
-rw-r--r-- | audio/xsidplay/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/audio/xsidplay/Makefile b/audio/xsidplay/Makefile index cb7064f75ea8..68920379773d 100644 --- a/audio/xsidplay/Makefile +++ b/audio/xsidplay/Makefile @@ -15,13 +15,20 @@ EXTRACT_SUFX= .tgz MAINTAINER= coop9211@uidaho.edu +.if defined(WITH_SIDPLAY2) +LIB_DEPENDS= sidplay2.0:${PORTSDIR}/audio/libsidplay2 +.else LIB_DEPENDS= sidplay.1:${PORTSDIR}/audio/libsidplay +.endif USE_X_PREFIX= yes USE_QT_VER= 3 USE_GMAKE= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-qt3 --with-qt-binaries=${X11BASE}/bin +CONFIGURE_ARGS+= --with-qt3 --with-qt-binaries=${X11BASE}/bin +.if defined(WITH_SIDPLAY2) +CONFIGURE_ARGS+= --with-sidplay2 +.endif QTCPPFLAGS+= ${PTHREAD_CFLAGS} QTCFGLIBS+= ${PTHREAD_LIBS} USE_REINPLACE= yes |