aboutsummaryrefslogtreecommitdiff
path: root/audio/cdrdao
diff options
context:
space:
mode:
authorSADA Kenji <sada@FreeBSD.org>1999-07-10 19:36:42 +0000
committerSADA Kenji <sada@FreeBSD.org>1999-07-10 19:36:42 +0000
commitd6e7d4e602ca1e4c2b4a1c6b15c7cfe60cbc8c18 (patch)
tree32a088799d038aa53b281f398197a22659920c57 /audio/cdrdao
parente073eff945cc8d9d05f0d8414170b78b2a8ff649 (diff)
downloadports-d6e7d4e602ca1e4c2b4a1c6b15c7cfe60cbc8c18.tar.gz
ports-d6e7d4e602ca1e4c2b4a1c6b15c7cfe60cbc8c18.zip
Upgrade to 1.1.1 .
PR: ports/12588 Submitted by: maintainer
Notes
Notes: svn path=/head/; revision=20147
Diffstat (limited to 'audio/cdrdao')
-rw-r--r--audio/cdrdao/Makefile17
-rw-r--r--audio/cdrdao/distinfo2
-rw-r--r--audio/cdrdao/pkg-message7
3 files changed, 15 insertions, 11 deletions
diff --git a/audio/cdrdao/Makefile b/audio/cdrdao/Makefile
index 46f170b5428c..551b92e705a3 100644
--- a/audio/cdrdao/Makefile
+++ b/audio/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
diff --git a/audio/cdrdao/distinfo b/audio/cdrdao/distinfo
index 0ebf0fae5ab5..ffc36c975452 100644
--- a/audio/cdrdao/distinfo
+++ b/audio/cdrdao/distinfo
@@ -1 +1 @@
-MD5 (cdrdao-1.1.0.src.tar.gz) = c290a9eb6ac6733483502949b4bc2ecc
+MD5 (cdrdao-1.1.1.src.tar.gz) = d5fd669ed5fee77c9053bc325c7b9f58
diff --git a/audio/cdrdao/pkg-message b/audio/cdrdao/pkg-message
index baeae725e65c..5656ed652f6d 100644
--- a/audio/cdrdao/pkg-message
+++ b/audio/cdrdao/pkg-message
@@ -1,12 +1,11 @@
Note:
* Be sure your kernel is built with "options SYSVMSG" and "options SYSVSHM".
Cdrdao requires kernel with these options.
- * If you want to use POSIX scheduling control for better scheduling,
- include
+ * Also, you must include
options "P1003_1B"
options "_KPOSIX_PRIORITY_SCHEDULING"
options "_KPOSIX_VERSION=199309L"
- your kernel configuration. It provides rtprio based soft real-time
- scheduling control.
+ in your kernel configuration. These options are required by POSIX thread
+ control functions.