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/cdrdao | |
parent | Replace AWOL maintainer with an active one (Assar Westerlund <assar@stacken.k... (diff) |
Standardize all user defined options to the booleans WITH_FOO and
WITHOUT_FOO. Begin the process of reserving these prefixes for user defined
options.
No comment by: ports
Notes
Notes:
svn path=/head/; revision=27679
Diffstat (limited to 'audio/cdrdao')
-rw-r--r-- | audio/cdrdao/Makefile | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/audio/cdrdao/Makefile b/audio/cdrdao/Makefile index 7eace10ec83b..4cff53d52605 100644 --- a/audio/cdrdao/Makefile +++ b/audio/cdrdao/Makefile @@ -4,10 +4,6 @@ # # $FreeBSD$ # -# If you don't want to use Joerg Schilling's SCSI library, -# set DONT_USE_SCGLIB = yes -# If you don't want to use pthreads, set DONT_USE_PTHREADS = yes -# If you want the graphical X toc file editor, set XCDRDAO = yes PORTNAME= cdrdao PORTVERSION= 1.1.3 @@ -45,18 +41,21 @@ PLIST=${PKGDIR}/PLIST.xcdrdao CONFIGURE_ARGS= --disable-gtkmmtest .endif -.if defined(DONT_USE_SCGLIB) && ${OSVERSION} > 300000 +.if defined(WITHOUT_SCGLIB) && ${OSVERSION} > 300000 CONFIGURE_ARGS+= --without-scglib .endif -.if defined(DONT_USE_PTHREADS) && ${OSVERSION} > 320000 +.if defined(WITHOUT_PTHREADS) && ${OSVERSION} > 320000 CONFIGURE_ARGS+= --without-posix-threads .endif pre-fetch: + @${ECHO_MSG} "If you don't want to use Joerg Schilling's SCSI library," + @${ECHO_MSG} "set WITHOUT_SCGLIB=yes." + @${ECHO_MSG} "If you don't want to use pthreads, set WITHOUT_PTHREADS=yes." .if !defined(XCDRDAO) @${ECHO_MSG} "To build the graphical X toc file editor, xcdrdao, type:" - @${ECHO_MSG} " make XCDRDAO=yes" + @${ECHO_MSG} " make XCDRDAO=yes." .else @${ECHO_MSG} "Building with xcdrdao" .endif |