diff options
author | sada <sada@FreeBSD.org> | 1999-04-21 21:51:11 +0800 |
---|---|---|
committer | sada <sada@FreeBSD.org> | 1999-04-21 21:51:11 +0800 |
commit | d3f546a9cf84aff9e9009c4c2e4666ea3d61602c (patch) | |
tree | cdd6653a7bb7bc298c23a5e015329f06396d63aa /sysutils/cdrdao | |
parent | 939c47eb36117c091e07bfb1bbc00b4ec37bdd45 (diff) | |
download | freebsd-ports-gnome-d3f546a9cf84aff9e9009c4c2e4666ea3d61602c.tar.gz freebsd-ports-gnome-d3f546a9cf84aff9e9009c4c2e4666ea3d61602c.tar.zst freebsd-ports-gnome-d3f546a9cf84aff9e9009c4c2e4666ea3d61602c.zip |
CDRDAO writes audio CD-Rs in disc-at-once (DAO) mode.
Submitted by: Yasuhito FUTATSUKI <futatuki@fureai.or.jp>
Reviewed by: Yoshiaki Uchikawa <yoshiaki@kt.rim.or.jp>,
FUJISHIMA Satsuki <k5@respo.or.jp>
Diffstat (limited to 'sysutils/cdrdao')
-rw-r--r-- | sysutils/cdrdao/Makefile | 42 | ||||
-rw-r--r-- | sysutils/cdrdao/distinfo | 1 | ||||
-rw-r--r-- | sysutils/cdrdao/pkg-comment | 1 | ||||
-rw-r--r-- | sysutils/cdrdao/pkg-descr | 13 | ||||
-rw-r--r-- | sysutils/cdrdao/pkg-message | 12 | ||||
-rw-r--r-- | sysutils/cdrdao/pkg-plist | 7 |
6 files changed, 76 insertions, 0 deletions
diff --git a/sysutils/cdrdao/Makefile b/sysutils/cdrdao/Makefile new file mode 100644 index 000000000000..c272091d5958 --- /dev/null +++ b/sysutils/cdrdao/Makefile @@ -0,0 +1,42 @@ +# New ports collection makefile for: cdrdao +# Version required: 1.1.0 +# Date created: 7 April 1999 +# Whom: futatuki +# +# $Id$ +# +# If You don't want to use Joerg Schilling's SCSI library, +# set DONT_USE_SCGLIB = yes + +DISTNAME= cdrdao-1.1.0.src +PKGNAME= cdrdao-1.1.0 +CATEGORIES= cdrdao +MASTER_SITES= http://www.ping.de/sites/daneb/ + +MAINTAINER= futatuki@fureai.or.jp + +BUILD_DEPENDS= antlr:${PORTSDIR}/devel/pccts\ + dlg:${PORTSDIR}/devel/pccts + +WRKSRC= ${WRKDIR}/cdrdao-1.1.0 + +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --disable-gtkmmtest +USE_GMAKE= yes +MAN1= cdrdao.1 + +.include <bsd.port.pre.mk> + +.if defined(DONT_USE_SCGLIB) && ${OSVERSION} >= 300000 +CONFIGURE_ARGS+= --without-scglib +.endif + +post-install: + strip $(PREFIX)/bin/cdrdao + @${MKDIR} ${PREFIX}/share/doc/cdrdao +.for i in COPYING INSTALL README README.FreeBSD README.PlexDAE + @${INSTALL_DATA} ${WRKSRC}/$i ${PREFIX}/share/doc/cdrdao/ +.endfor + @${CAT} ${PKGDIR}/MESSAGE + +.include <bsd.port.post.mk> diff --git a/sysutils/cdrdao/distinfo b/sysutils/cdrdao/distinfo new file mode 100644 index 000000000000..0ebf0fae5ab5 --- /dev/null +++ b/sysutils/cdrdao/distinfo @@ -0,0 +1 @@ +MD5 (cdrdao-1.1.0.src.tar.gz) = c290a9eb6ac6733483502949b4bc2ecc diff --git a/sysutils/cdrdao/pkg-comment b/sysutils/cdrdao/pkg-comment new file mode 100644 index 000000000000..bc2b411d8fce --- /dev/null +++ b/sysutils/cdrdao/pkg-comment @@ -0,0 +1 @@ +Cdrdao - Write audio CD-Rs in disk-at-once mode diff --git a/sysutils/cdrdao/pkg-descr b/sysutils/cdrdao/pkg-descr new file mode 100644 index 000000000000..141355e03130 --- /dev/null +++ b/sysutils/cdrdao/pkg-descr @@ -0,0 +1,13 @@ +Writes audio CD-Rs in disc-at-once (DAO) mode allowing control over pre-gaps +(length down to 0, nonzero audio data) and sub-channel information like ISRC +codes. All data that is written to the disc must be specified with a text +file. Audio data may be in WAVE or raw format. + + Andreas Mueller <mueller@daneb.ping.de> + +See http://www.ping.de/sites/daneb/cdrdao.html for more information. + +Note: +Cdrdao requires kernel with "options SYSVSHM" and "options SYSVMSG". + + -- Yasuhito FUTATSUKI <futatuki@fureai.or.jp> diff --git a/sysutils/cdrdao/pkg-message b/sysutils/cdrdao/pkg-message new file mode 100644 index 000000000000..baeae725e65c --- /dev/null +++ b/sysutils/cdrdao/pkg-message @@ -0,0 +1,12 @@ +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 + + options "P1003_1B" + options "_KPOSIX_PRIORITY_SCHEDULING" + options "_KPOSIX_VERSION=199309L" + + your kernel configuration. It provides rtprio based soft real-time + scheduling control. diff --git a/sysutils/cdrdao/pkg-plist b/sysutils/cdrdao/pkg-plist new file mode 100644 index 000000000000..7ceacc8dcfa8 --- /dev/null +++ b/sysutils/cdrdao/pkg-plist @@ -0,0 +1,7 @@ +bin/cdrdao +share/doc/cdrdao/COPYING +share/doc/cdrdao/INSTALL +share/doc/cdrdao/README +share/doc/cdrdao/README.FreeBSD +share/doc/cdrdao/README.PlexDAE +@dirrm share/doc/cdrdao |