diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2003-12-29 09:54:25 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2003-12-29 09:54:25 +0000 |
commit | b1ba755331d12fd3393d916075502601af5b0118 (patch) | |
tree | b0c9085161978c966d9e85517d6e2b818ecd5f81 /print/kover | |
parent | 8da7f1b71a9466cae0d62487216f585b80bcec00 (diff) | |
download | ports-b1ba755331d12fd3393d916075502601af5b0118.tar.gz ports-b1ba755331d12fd3393d916075502601af5b0118.zip |
Notes
Diffstat (limited to 'print/kover')
-rw-r--r-- | print/kover/Makefile | 25 | ||||
-rw-r--r-- | print/kover/distinfo | 1 | ||||
-rw-r--r-- | print/kover/files/patch-cddb_fill.cc | 114 | ||||
-rw-r--r-- | print/kover/files/patch-cdrom.cc | 17 | ||||
-rw-r--r-- | print/kover/files/patch-cdrom.h | 13 | ||||
-rw-r--r-- | print/kover/files/patch-cdrom_cddb.cc | 91 | ||||
-rw-r--r-- | print/kover/files/patch-net.cc | 12 | ||||
-rw-r--r-- | print/kover/pkg-descr | 13 | ||||
-rw-r--r-- | print/kover/pkg-plist | 55 |
9 files changed, 341 insertions, 0 deletions
diff --git a/print/kover/Makefile b/print/kover/Makefile new file mode 100644 index 000000000000..4f599a24e317 --- /dev/null +++ b/print/kover/Makefile @@ -0,0 +1,25 @@ +# New ports collection makefile for: kover +# Date created: Mon Dec 29 05:07:17 CET 2003 +# Whom: Markus Brueffer <brueffer@phoenix-systems.de> +# +# $FreeBSD$ + +PORTNAME= kover +PORTVERSION= 2.9.3 +CATEGORIES= print kde +MASTER_SITES= http://lisas.de/kover/ + +MAINTAINER= brueffer@phoenix-systems.de +COMMENT= WYSIWYG CD cover printer + +USE_KDELIBS_VER= 3 +USE_GMAKE= yes +GNU_CONFIGURE= yes +USE_REINPLACE= yes + +post-patch: + @${REINPLACE_CMD} -e 's|-O2||g' ${WRKSRC}/${CONFIGURE_SCRIPT} + +.include <bsd.port.pre.mk> +.include "${PORTSDIR}/x11/kde3/Makefile.kde" +.include <bsd.port.post.mk> diff --git a/print/kover/distinfo b/print/kover/distinfo new file mode 100644 index 000000000000..ef40a090c21d --- /dev/null +++ b/print/kover/distinfo @@ -0,0 +1 @@ +MD5 (kover-2.9.3.tar.gz) = 41446036588bdbf90ac4d7d1a4e56667 diff --git a/print/kover/files/patch-cddb_fill.cc b/print/kover/files/patch-cddb_fill.cc new file mode 100644 index 000000000000..7afc9b6a1d20 --- /dev/null +++ b/print/kover/files/patch-cddb_fill.cc @@ -0,0 +1,114 @@ +--- kover/cddb_fill.cc.orig Mon Dec 29 03:32:23 2003 ++++ kover/cddb_fill.cc Mon Dec 29 03:53:52 2003 +@@ -67,6 +67,11 @@ + #include "proxy_auth.h" + #include "categories.h" + ++#ifdef __FreeBSD__ ++#include <sys/cdio.h> ++#define CDROM_LEADOUT 0xAA ++#endif ++ + extern "C" { + + #ifdef HAVE_LINUX_CDROM_H +@@ -263,6 +268,10 @@ + globals.cdrom_device = strdup("/dev/cdrom"); + + if ((cd_fd = open(globals.cdrom_device, O_RDONLY | O_NONBLOCK)) < 0) { ++#ifdef __FreeBSD__ ++ emit statusText(QString(tr("Error while opening ")) ++ + QString(globals.cdrom_device)); ++#else + switch (errno) { + case EACCES: + emit statusText(QString(tr +@@ -281,9 +290,11 @@ + emit statusText(QString(tr("Unknown error while opening ")) + + QString(globals.cdrom_device)); + } ++#endif + return false; + } + ++#ifndef __FreeBSD__ + ds = ioctl(cd_fd, CDROM_DISC_STATUS); + + switch (ds) { +@@ -300,6 +311,7 @@ + return false; + } + _DEBUG_ fprintf(stderr, "CD opened: %d\n", ds); ++#endif + + return true; + } +@@ -314,8 +326,13 @@ + + bool CDDB_Fill::readTOC() + { ++#ifdef __FreeBSD__ ++ ioc_toc_header hdr; ++ ioc_read_toc_single_entry entry; ++#else + cdrom_tochdr hdr; + cdrom_tocentry entry; ++#endif + int i, pos; + _DEBUG_ fprintf(stderr, "Reading TOC\n"); + +@@ -327,7 +344,11 @@ + + emit statusText(tr("Reading table of contents...")); + ++#ifdef __FreeBSD__ ++ if (ioctl(cd_fd, CDIOREADTOCHEADER, &hdr) == -1) { ++#else + if (ioctl(cd_fd, CDROMREADTOCHDR, &hdr)) { ++#endif + emit statusText(tr("Error while reading table of contents!")); + + return false; +@@ -336,24 +357,41 @@ + cdinfo.artist = "Artist"; + cdinfo.cdname = "Title"; + cdinfo.length = 0; ++#ifdef __FreeBSD__ ++ cdinfo.ntracks = hdr.ending_track; ++#else + cdinfo.ntracks = hdr.cdth_trk1; +- ++#endif + cdinfo.trk.clear(); + + for (i = 0; i <= cdinfo.ntracks; i++) { + if (i == cdinfo.ntracks) ++#ifdef __FreeBSD__ ++ entry.track = CDROM_LEADOUT; ++ else ++ entry.track = i + 1; ++ entry.address_format = CD_MSF_FORMAT; ++ if (ioctl(cd_fd, CDIOREADTOCENTRY, &entry) == -1) { ++#else + entry.cdte_track = CDROM_LEADOUT; + else + entry.cdte_track = i + 1; + entry.cdte_format = CDROM_MSF; + if (ioctl(cd_fd, CDROMREADTOCENTRY, &entry)) { ++#endif + emit statusText(tr("Error while reading TOC entry!")); + + return false; + } + ++#ifdef __FreeBSD__ ++ cdinfo.trk.append(new track_info(i + 1, entry.entry.addr.msf.minute, ++ entry.entry.addr.msf.second, entry.entry.addr.msf.frame)); ++ ++#else + cdinfo.trk.append(new track_info(i + 1, entry.cdte_addr.msf.minute, + entry.cdte_addr.msf.second, entry.cdte_addr.msf.frame)); ++#endif + } + + pos = cdinfo.trk.first()->length; diff --git a/print/kover/files/patch-cdrom.cc b/print/kover/files/patch-cdrom.cc new file mode 100644 index 000000000000..8bf827d09de3 --- /dev/null +++ b/print/kover/files/patch-cdrom.cc @@ -0,0 +1,17 @@ +--- kover/cdrom.cc.orig Fri Feb 7 17:05:06 2003 ++++ kover/cdrom.cc Mon Dec 29 04:51:51 2003 +@@ -64,7 +64,14 @@ + return -1; + } + if (cdrom_fd > 0) ++#ifdef __FreeBSD__ ++ { ++ ioctl(cdrom_fd,CDIOCALLOW); ++ ioctl(cdrom_fd,CDIOCEJECT); ++ } ++#else + ioctl(cdrom_fd,CDROMEJECT); ++#endif + else + return -1; + close(); diff --git a/print/kover/files/patch-cdrom.h b/print/kover/files/patch-cdrom.h new file mode 100644 index 000000000000..44e52a2bbfa6 --- /dev/null +++ b/print/kover/files/patch-cdrom.h @@ -0,0 +1,13 @@ +--- kover/cdrom.h.orig Mon Dec 29 03:57:18 2003 ++++ kover/cdrom.h Mon Dec 29 03:57:39 2003 +@@ -41,6 +41,10 @@ + #include <sys/types.h> + #include <sys/stat.h> + ++#ifdef __FreeBSD__ ++#include <sys/cdio.h> ++#endif ++ + #ifdef HAVE_LINUX_CDROM_H + #include <linux/cdrom.h> + #endif diff --git a/print/kover/files/patch-cdrom_cddb.cc b/print/kover/files/patch-cdrom_cddb.cc new file mode 100644 index 000000000000..8aa792c35be5 --- /dev/null +++ b/print/kover/files/patch-cdrom_cddb.cc @@ -0,0 +1,91 @@ +--- kover/cdrom_cddb.cc.orig Mon Dec 29 04:01:52 2003 ++++ kover/cdrom_cddb.cc Mon Dec 29 04:08:20 2003 +@@ -31,6 +31,11 @@ + #include "cdrom_cddb.h" + #include <stdio.h> + ++#ifdef __FreeBSD__ ++#include <sys/cdio.h> ++#define CDROM_LEADOUT 0xAA ++#endif ++ + cdrom_cddb::cdrom_cddb(char *path):cdrom(path) + { + open(); +@@ -49,8 +54,13 @@ + + void cdrom_cddb::calc_cddb_id() + { ++#ifdef __FreeBSD__ ++ ioc_toc_header hdr; ++ ioc_read_toc_single_entry entry; ++#else + cdrom_tochdr hdr; + cdrom_tocentry entry; ++#endif + int i = 0; + int pos = 0; + int length = 0; +@@ -62,13 +72,28 @@ + exit(0); + } + ++#ifdef __FreeBSD__ ++ if (ioctl(cdrom_fd, CDIOREADTOCHEADER, &hdr) == -1) { ++#else + if (ioctl(cdrom_fd, CDROMREADTOCHDR, &hdr)) { ++#endif + fprintf(stderr, + "%s:error while reading table of contents. exiting now!\n", + PACKAGE); + exit(0); + } + ++#ifdef __FreeBSD__ ++ i = ntracks = hdr.ending_track; ++ ++ do { ++ if (i == ntracks) ++ entry.track = CDROM_LEADOUT; ++ else ++ entry.track = i + 1; ++ entry.address_format = CD_MSF_FORMAT; ++ if (ioctl(cdrom_fd, CDIOREADTOCENTRY, &entry)) { ++#else + i = ntracks = hdr.cdth_trk1; + + do { +@@ -78,12 +103,25 @@ + entry.cdte_track = i + 1; + entry.cdte_format = CDROM_MSF; + if (ioctl(cdrom_fd, CDROMREADTOCENTRY, &entry)) { ++#endif + fprintf(stderr, + "%s:error while reading toc entry. exiting now!\n", PACKAGE); + exit(0); + } + if (i != ntracks) + pos += ++#ifdef __FreeBSD__ ++ cddb_sum((entry.entry.addr.msf.minute * 60) + ++ entry.entry.addr.msf.second); ++ if (i == 0) ++ length = ++ length - ((entry.entry.addr.msf.minute * 60) + ++ entry.entry.addr.msf.second); ++ if (i == ntracks) ++ length = ++ (entry.entry.addr.msf.minute * 60) + ++ entry.entry.addr.msf.second; ++#else + cddb_sum((entry.cdte_addr.msf.minute * 60) + + entry.cdte_addr.msf.second); + if (i == 0) +@@ -94,6 +132,7 @@ + length = + (entry.cdte_addr.msf.minute * 60) + + entry.cdte_addr.msf.second; ++#endif + + } while (i--); + diff --git a/print/kover/files/patch-net.cc b/print/kover/files/patch-net.cc new file mode 100644 index 000000000000..fb852c37d443 --- /dev/null +++ b/print/kover/files/patch-net.cc @@ -0,0 +1,12 @@ +--- kover/net.cc.orig Mon Dec 29 04:55:16 2003 ++++ kover/net.cc Mon Dec 29 05:01:10 2003 +@@ -33,6 +33,9 @@ + #include "kover.h" + + #include <netdb.h> ++#ifdef __FreeBSD__ ++#include <sys/param.h> ++#endif + #include <netinet/in.h> + #include <sys/socket.h> + #include <unistd.h> diff --git a/print/kover/pkg-descr b/print/kover/pkg-descr new file mode 100644 index 000000000000..a8c43ed3c798 --- /dev/null +++ b/print/kover/pkg-descr @@ -0,0 +1,13 @@ +Kover is an easy to use WYSIWYG CD cover printer with CDDB support. + +Some features: + o CDDB support via freedb.org + o supports proxies with authentification (basic) + o image embedding in inlet and booklet + o should read files saved with Easy CD Pro 2.0 + o saves CDDB queries locally + o do CDDB query without the CD + o files created with K3B can be imported + +Author: Adrian Reber <adrian@lisas.de> +WWW: http://lisas.de/kover/ diff --git a/print/kover/pkg-plist b/print/kover/pkg-plist new file mode 100644 index 000000000000..78fe02798436 --- /dev/null +++ b/print/kover/pkg-plist @@ -0,0 +1,55 @@ +bin/cddb-id +bin/kover +share/applnk/Multimedia/kover.desktop +share/apps/kover/koverui.rc +share/apps/kover/pics/back_content.png +share/apps/kover/pics/back_title_content.png +share/apps/kover/pics/front_title-content-right_content-left.png +share/apps/kover/pics/front_title-right_content-left.png +share/apps/kover/pics/front_title_only.png +share/apps/kover/pics/one_page.png +share/icons/hicolor/32x32/apps/kover.png +share/icons/hicolor/48x48/apps/kover.png +share/icons/locolor/16x16/apps/kover.png +share/icons/locolor/32x32/apps/kover.png +share/locale/de/LC_MESSAGES/kover.mo +share/locale/es/LC_MESSAGES/kover.mo +share/locale/fr/LC_MESSAGES/kover.mo +share/locale/it/LC_MESSAGES/kover.mo +share/locale/nb/LC_MESSAGES/kover.mo +share/locale/no/LC_MESSAGES/kover.mo +share/locale/pl/LC_MESSAGES/kover.mo +share/mimelnk/application/x-kover.desktop +@unexec rmdir %D/share/mimelnk/application 2>/dev/null || true +@unexec rmdir %D/share/mimelnk 2>/dev/null || true +@unexec rmdir %D/share/locale/pl/LC_MESSAGES 2>/dev/null || true +@unexec rmdir %D/share/locale/pl 2>/dev/null || true +@unexec rmdir %D/share/locale/no/LC_MESSAGES 2>/dev/null || true +@unexec rmdir %D/share/locale/no 2>/dev/null || true +@unexec rmdir %D/share/locale/nb/LC_MESSAGES 2>/dev/null || true +@unexec rmdir %D/share/locale/nb 2>/dev/null || true +@unexec rmdir %D/share/locale/it/LC_MESSAGES 2>/dev/null || true +@unexec rmdir %D/share/locale/it 2>/dev/null || true +@unexec rmdir %D/share/locale/fr/LC_MESSAGES 2>/dev/null || true +@unexec rmdir %D/share/locale/fr 2>/dev/null || true +@unexec rmdir %D/share/locale/es/LC_MESSAGES 2>/dev/null || true +@unexec rmdir %D/share/locale/es 2>/dev/null || true +@unexec rmdir %D/share/locale/de/LC_MESSAGES 2>/dev/null || true +@unexec rmdir %D/share/locale/de 2>/dev/null || true +@unexec rmdir %D/share/locale 2>/dev/null || true +@unexec rmdir %D/share/icons/locolor/32x32/apps 2>/dev/null || true +@unexec rmdir %D/share/icons/locolor/32x32 2>/dev/null || true +@unexec rmdir %D/share/icons/locolor/16x16/apps 2>/dev/null || true +@unexec rmdir %D/share/icons/locolor/16x16 2>/dev/null || true +@unexec rmdir %D/share/icons/locolor 2>/dev/null || true +@unexec rmdir %D/share/icons/hicolor/48x48/apps 2>/dev/null || true +@unexec rmdir %D/share/icons/hicolor/48x48 2>/dev/null || true +@unexec rmdir %D/share/icons/hicolor/32x32/apps 2>/dev/null || true +@unexec rmdir %D/share/icons/hicolor/32x32 2>/dev/null || true +@unexec rmdir %D/share/icons/hicolor 2>/dev/null || true +@unexec rmdir %D/share/icons 2>/dev/null || true +@dirrm share/apps/kover/pics +@dirrm share/apps/kover +@unexec rmdir %D/share/apps 2>/dev/null || true +@unexec rmdir %D/share/applnk/Multimedia 2>/dev/null || true +@unexec rmdir %D/share/applnk 2>/dev/null || true |