From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 17 05:20:17 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F068816A4CE for ; Tue, 17 Feb 2004 05:20:17 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D6B1D43D1D for ; Tue, 17 Feb 2004 05:20:17 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i1HDKHbv009830 for ; Tue, 17 Feb 2004 05:20:17 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i1HDKHkR009828; Tue, 17 Feb 2004 05:20:17 -0800 (PST) (envelope-from gnats) Date: Tue, 17 Feb 2004 05:20:17 -0800 (PST) Message-Id: <200402171320.i1HDKHkR009828@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Michael Nottebrock Subject: Re: ports/62927: Maintainer update: Update graphics/digikam to 0.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Michael Nottebrock List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Feb 2004 13:20:18 -0000 The following reply was made to PR ports/62927; it has been noted by GNATS. From: Michael Nottebrock To: freebsd-gnats-submit@FreeBSD.org, avleeuwen@piwebs.com Cc: Subject: Re: ports/62927: Maintainer update: Update graphics/digikam to 0.6 Date: Tue, 17 Feb 2004 13:48:54 +0100 --Boundary-00=_42gMAyx/tBDjWb8 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline I've added a few things (port installs shared libs, manpages and needs patches to compile with gcc2.95/-STABLE). Please review. !DSPAM:40320e3988501487423498! --Boundary-00=_42gMAyx/tBDjWb8 Content-Type: text/x-diff; charset="us-ascii"; name="digikam.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="digikam.diff" Index: Makefile =================================================================== RCS file: /home/pcvs/ports/graphics/digikam/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- Makefile 4 Feb 2004 05:20:50 -0000 1.4 +++ Makefile 17 Feb 2004 12:46:53 -0000 @@ -2,24 +2,35 @@ # Date created: 3 February 2003 # Whom: Arjan van Leeuwen <avleeuwen@piwebs.com> # -# $FreeBSD: ports/graphics/digikam/Makefile,v 1.4 2004/02/04 05:20:50 marcus Exp $ +# $FreeBSD: ports/graphics/digikam/Makefile,v 1.3 2003/04/05 19:40:19 arved Exp $ # PORTNAME= digikam -PORTVERSION= 0.5.1 -PORTREVISION= 1 +PORTVERSION= 0.6 CATEGORIES= graphics kde MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= avleeuwen@piwebs.com -COMMENT= A KDE frontend to gphoto2 for communicating with your digicam +COMMENT= Photo album manager for KDE with gphoto2 backend -LIB_DEPENDS= gphoto2.2:${PORTSDIR}/graphics/libgphoto2 -BUILD_DEPENDS= xml2pot:${PORTSDIR}/devel/kdesdk3 +LIB_DEPENDS= exif:${PORTSDIR}/graphics/libexif \ + gphoto2.2:${PORTSDIR}/graphics/libgphoto2 +USE_BZIP2= yes GNU_CONFIGURE= yes USE_GMAKE= yes USE_KDELIBS_VER=3 +USE_REINPLACE= yes +CONFIGURE_ARGS+=--program-prefix='' +INSTALLS_SHLIB= yes -.include <bsd.port.mk> +MAN1= digikam.1 digikamcameraclient.1 +MANCOMPRESSED= yes + +.include <bsd.port.pre.mk> + +pre-configure:: + ${REINPLACE_CMD} -e 's@-lpthread@${PTHREAD_LIBS}@g' ${WRKSRC}/configure + +.include <bsd.port.post.mk> Index: distinfo =================================================================== RCS file: /home/pcvs/ports/graphics/digikam/distinfo,v retrieving revision 1.1 diff -u -r1.1 distinfo --- distinfo 17 Feb 2003 20:08:55 -0000 1.1 +++ distinfo 17 Feb 2004 12:46:53 -0000 @@ -1 +1,2 @@ -MD5 (digikam-0.5.1.tar.gz) = 94ec87692a673a5a479162041a10e2fc +MD5 (digikam-0.6.tar.bz2) = c841d1bbd51d0105f545f106451d5ae5 +SIZE (digikam-0.6.tar.bz2) = 6054274 Index: pkg-descr =================================================================== RCS file: /home/pcvs/ports/graphics/digikam/pkg-descr,v retrieving revision 1.1 diff -u -r1.1 pkg-descr --- pkg-descr 17 Feb 2003 20:08:55 -0000 1.1 +++ pkg-descr 17 Feb 2004 12:46:53 -0000 @@ -1,7 +1,11 @@ -Digikam is a KDE application which acts as a frontend to gphoto2 for -communicating with your digital camera. It can preview and download images -via a convenient GUI. It is also able to autodetect the camera connected -to your computer. +Digikam is a simple digital photo management application, which makes +importing and organizing digital photos a "snap". The photos can be organized +in albums which are automatically sorted chronologically. An easy to use +interface is provided to connect to your camera and preview images and download +and/or delete them. + +Digikam also includes a very flexible plugin architecture. Install the +graphics/digikamplugins port to extend Digikam's features. WWW: http://digikam.sourceforge.net/ Index: pkg-plist =================================================================== RCS file: /home/pcvs/ports/graphics/digikam/pkg-plist,v retrieving revision 1.1 diff -u -r1.1 pkg-plist --- pkg-plist 17 Feb 2003 20:08:55 -0000 1.1 +++ pkg-plist 17 Feb 2004 12:46:53 -0000 @@ -1,24 +1,105 @@ bin/digikam +bin/digikamcameraclient +include/digikam/albuminfo.h +include/digikam/albummanager.h +include/digikam/digikamio.h +include/digikam/plugin.h +include/digikam/thumbnailjob.h +lib/kde3/kio_digikamthumbnail.la +lib/kde3/kio_digikamthumbnail.so +lib/libdigikam.la +lib/libdigikam.so +lib/libdigikam.so.0 share/applnk/Graphics/digikam.desktop share/apps/digikam/digikam-splash.png share/apps/digikam/digikamui.rc -share/doc/HTML/en/digikam/common +share/apps/digikam/icons/hicolor/32x32/actions/addimagefolder.png +share/apps/digikam/icons/hicolor/32x32/actions/albumfoldercomment.png +share/apps/digikam/icons/hicolor/32x32/actions/albumfoldernew.png +share/apps/digikam/icons/hicolor/32x32/actions/digitalcam.png +share/apps/digikam/icons/hicolor/32x32/actions/editimage.png +share/apps/digikam/icons/hicolor/32x32/actions/exifinfo.png +share/apps/digikam/icons/hicolor/32x32/actions/imagecomment.png +share/apps/digikam/icons/hicolor/32x32/actions/importfolders2albums.png +share/apps/digikamcameraclient/digikamcameraui.rc +share/apps/digikamcameraclient/icons/documents.png +share/apps/digikamcameraclient/icons/generic.png +share/apps/digikamcameraclient/icons/hicolor/32x32/actions/cameraconnect.png +share/apps/digikamcameraclient/icons/hicolor/32x32/actions/camerainfo.png +share/apps/digikamcameraclient/icons/hicolor/32x32/actions/deleteimage.png +share/apps/digikamcameraclient/icons/hicolor/32x32/actions/downloadcamera.png +share/apps/digikamcameraclient/icons/hicolor/32x32/actions/hidecamerafolders.png +share/apps/digikamcameraclient/icons/hicolor/32x32/actions/uploadcamera.png +share/apps/digikamcameraclient/icons/multimedia.png +share/apps/digikamcameraclient/icons/new.png +share/apps/digikamcameraclient/icons/pictures.png +share/apps/digikamcameraclient/icons/sound.png +share/doc/HTML/de/digikam/addcamera.png +share/doc/HTML/de/digikam/cameraclient.png +share/doc/HTML/de/digikam/imageviewer.png +share/doc/HTML/de/digikam/index.docbook +share/doc/HTML/de/digikam/index_de.po +share/doc/HTML/de/digikam/mainwindow.png +share/doc/HTML/de/digikam/setupalbum.png +share/doc/HTML/en/digikam/addcamera.png +share/doc/HTML/en/digikam/cameraclient.png +share/doc/HTML/en/digikam/imageviewer.png share/doc/HTML/en/digikam/index.cache.bz2 share/doc/HTML/en/digikam/index.docbook share/doc/HTML/en/digikam/index_en.pot -share/doc/HTML/fr/digikam/common -share/doc/HTML/fr/digikam/index.cache.bz2 +share/doc/HTML/en/digikam/mainwindow.png +share/doc/HTML/en/digikam/setupalbum.png +share/doc/HTML/fr/digikam/addcamera.png +share/doc/HTML/fr/digikam/cameraclient.png +share/doc/HTML/fr/digikam/imageviewer.png share/doc/HTML/fr/digikam/index.docbook share/doc/HTML/fr/digikam/index_fr.po +share/doc/HTML/fr/digikam/mainwindow.png +share/doc/HTML/fr/digikam/setupalbum.png share/icons/hicolor/16x16/apps/digikam.png +share/icons/hicolor/16x16/apps/digikamcameraclient.png share/icons/hicolor/22x22/apps/digikam.png +share/icons/hicolor/22x22/apps/digikamcameraclient.png share/icons/hicolor/32x32/apps/digikam.png +share/icons/hicolor/32x32/apps/digikamcameraclient.png share/icons/hicolor/48x48/apps/digikam.png +share/icons/hicolor/48x48/apps/digikamcameraclient.png share/icons/locolor/16x16/apps/digikam.png +share/icons/locolor/16x16/apps/digikamcameraclient.png share/icons/locolor/22x22/apps/digikam.png +share/icons/locolor/22x22/apps/digikamcameraclient.png share/icons/locolor/32x32/apps/digikam.png +share/icons/locolor/32x32/apps/digikamcameraclient.png share/icons/locolor/48x48/apps/digikam.png +share/icons/locolor/48x48/apps/digikamcameraclient.png +share/locale/cs/LC_MESSAGES/digikam.mo +share/locale/da/LC_MESSAGES/digikam.mo +share/locale/de/LC_MESSAGES/digikam.mo +share/locale/es/LC_MESSAGES/digikam.mo share/locale/fr/LC_MESSAGES/digikam.mo +share/locale/hu/LC_MESSAGES/digikam.mo +share/locale/it/LC_MESSAGES/digikam.mo +share/services/digikamthumbnail.protocol +share/servicetypes/digikamplugin.desktop +@dirrm share/servicetypes +@dirrm share/services +@dirrm share/nls/en_US.US-ASCII +@dirrm share/nls/POSIX +@dirrm share/locale/it/LC_MESSAGES +@dirrm share/locale/it +@dirrm share/locale/hu/LC_MESSAGES +@dirrm share/locale/hu +@dirrm share/locale/fr/LC_MESSAGES +@dirrm share/locale/fr +@dirrm share/locale/es/LC_MESSAGES +@dirrm share/locale/es +@dirrm share/locale/de/LC_MESSAGES +@dirrm share/locale/de +@dirrm share/locale/da/LC_MESSAGES +@dirrm share/locale/da +@dirrm share/locale/cs/LC_MESSAGES +@dirrm share/locale/cs +@dirrm share/locale @dirrm share/icons/locolor/48x48/apps @dirrm share/icons/locolor/48x48 @dirrm share/icons/locolor/32x32/apps @@ -27,6 +108,7 @@ @dirrm share/icons/locolor/22x22 @dirrm share/icons/locolor/16x16/apps @dirrm share/icons/locolor/16x16 +@dirrm share/icons/locolor @dirrm share/icons/hicolor/48x48/apps @dirrm share/icons/hicolor/48x48 @dirrm share/icons/hicolor/32x32/apps @@ -35,8 +117,28 @@ @dirrm share/icons/hicolor/22x22 @dirrm share/icons/hicolor/16x16/apps @dirrm share/icons/hicolor/16x16 +@dirrm share/icons/hicolor +@dirrm share/icons @dirrm share/doc/HTML/fr/digikam @dirrm share/doc/HTML/fr +@dirrm share/doc/HTML/en/digikam/common @dirrm share/doc/HTML/en/digikam +@dirrm share/doc/HTML/en +@dirrm share/doc/HTML/de/digikam +@dirrm share/doc/HTML/de +@dirrm share/doc/HTML +@dirrm share/apps/digikamcameraclient/icons/hicolor/32x32/actions +@dirrm share/apps/digikamcameraclient/icons/hicolor/32x32 +@dirrm share/apps/digikamcameraclient/icons/hicolor +@dirrm share/apps/digikamcameraclient/icons +@dirrm share/apps/digikamcameraclient +@dirrm share/apps/digikam/icons/hicolor/32x32/actions +@dirrm share/apps/digikam/icons/hicolor/32x32 +@dirrm share/apps/digikam/icons/hicolor +@dirrm share/apps/digikam/icons @dirrm share/apps/digikam +@dirrm share/apps @dirrm share/applnk/Graphics +@dirrm share/applnk +@dirrm lib/kde3 +@dirrm include/digikam Index: files/patch-digikamcameraclient-Makefile.in =================================================================== RCS file: files/patch-digikamcameraclient-Makefile.in diff -N files/patch-digikamcameraclient-Makefile.in --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-digikamcameraclient-Makefile.in 17 Feb 2004 12:46:53 -0000 @@ -0,0 +1,11 @@ +--- digikamcameraclient/Makefile.in.orig Tue Feb 17 11:46:36 2004 ++++ digikamcameraclient/Makefile.in Tue Feb 17 11:46:47 2004 +@@ -272,7 +272,7 @@ + digikamcameraclient_LDFLAGS = $(KDE_RPATH) $(all_libraries) + + # the libraries to link against. +-digikamcameraclient_LDADD = $(LIB_KDEUI) $(LIB_KFILE) \ ++digikamcameraclient_LDADD = $(LIB_KDEUI) $(LIB_KFILE) $(LIBPTHREAD) \ + $(top_builddir)/digikamcameraclient/cameraui/libcameraui.la \ + $(top_builddir)/digikam/libdigikam.la + Index: files/patch-kioslave-Makefile.in =================================================================== RCS file: files/patch-kioslave-Makefile.in diff -N files/patch-kioslave-Makefile.in --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-kioslave-Makefile.in 17 Feb 2004 12:46:53 -0000 @@ -0,0 +1,11 @@ +--- kioslave/Makefile.in.orig Tue Feb 17 11:33:53 2004 ++++ kioslave/Makefile.in Tue Feb 17 11:37:02 2004 +@@ -259,7 +259,7 @@ + kde_module_LTLIBRARIES = kio_digikamthumbnail.la + + kio_digikamthumbnail_la_SOURCES = digikamthumbnail.cpp +-kio_digikamthumbnail_la_LIBADD = $(LIB_KIO) -ljpeg ++kio_digikamthumbnail_la_LIBADD = $(LIB_KIO) -ljpeg $(LIBPTHREAD) + kio_digikamthumbnail_la_LDFLAGS = -module -avoid-version $(all_libraries) $(KDE_PLUGIN) + + protocol_DATA = digikamthumbnail.protocol --Boundary-00=_42gMAyx/tBDjWb8--