diff options
Diffstat (limited to 'sysutils/cdrdao/Makefile')
-rw-r--r-- | sysutils/cdrdao/Makefile | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/sysutils/cdrdao/Makefile b/sysutils/cdrdao/Makefile index 46f170b5428c..551b92e705a3 100644 --- a/sysutils/cdrdao/Makefile +++ b/sysutils/cdrdao/Makefile @@ -1,15 +1,16 @@ # New ports collection makefile for: cdrdao -# Version required: 1.1.0 +# Version required: 1.1.1 # Date created: 7 April 1999 # Whom: futatuki # -# $Id: Makefile,v 1.1.1.1 1999/04/21 13:51:10 sada Exp $ +# $Id: Makefile,v 1.2 1999/05/12 10:38:07 asami Exp $ # # If You don't want to use Joerg Schilling's SCSI library, # set DONT_USE_SCGLIB = yes +# If You don't want to use pthead, set DONT_USE_PTHREAD = yes -DISTNAME= cdrdao-1.1.0.src -PKGNAME= cdrdao-1.1.0 +DISTNAME= cdrdao-1.1.1.src +PKGNAME= cdrdao-1.1.1 CATEGORIES= audio MASTER_SITES= http://www.ping.de/sites/daneb/ @@ -18,7 +19,7 @@ MAINTAINER= futatuki@fureai.or.jp BUILD_DEPENDS= antlr:${PORTSDIR}/devel/pccts\ dlg:${PORTSDIR}/devel/pccts -WRKSRC= ${WRKDIR}/cdrdao-1.1.0 +WRKSRC= ${WRKDIR}/cdrdao-1.1.1 GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-gtkmmtest @@ -27,10 +28,14 @@ MAN1= cdrdao.1 .include <bsd.port.pre.mk> -.if defined(DONT_USE_SCGLIB) && ${OSVERSION} >= 300000 +.if defined(DONT_USE_SCGLIB) && ${OSVERSION} > 300000 CONFIGURE_ARGS+= --without-scglib .endif +.if defined(DONT_USE_PTHREAD) && ${OSVERSION} > 320000 +CONFIGURE_ARGS+= --without-posix-threads +.endif + post-install: strip $(PREFIX)/bin/cdrdao @${MKDIR} ${PREFIX}/share/doc/cdrdao |