mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-01 05:45:45 +00:00
libkdcraw is a C++ interface around a dcraw binary program
used to decode RAW picture files. WWW: http://www.kipi-plugins.org/
This commit is contained in:
parent
e486594704
commit
d56fc4a4f9
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=194623
@ -358,6 +358,7 @@
|
||||
SUBDIR += libimg-tk83
|
||||
SUBDIR += libimg-tkstep80
|
||||
SUBDIR += libiptcdata
|
||||
SUBDIR += libkdcraw
|
||||
SUBDIR += libkexif
|
||||
SUBDIR += libkexiv2
|
||||
SUBDIR += libkipi
|
||||
|
30
graphics/libkdcraw-kde4/Makefile
Normal file
30
graphics/libkdcraw-kde4/Makefile
Normal file
@ -0,0 +1,30 @@
|
||||
# New ports collection makefile for: libkdcraw
|
||||
# Date created: 22 June 2007
|
||||
# Whom: Alex Dupre <ale@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= libkdcraw
|
||||
PORTVERSION= 0.1.1
|
||||
CATEGORIES= graphics devel
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= kipi
|
||||
|
||||
MAINTAINER= ale@FreeBSD.org
|
||||
COMMENT= A C++ interface around a dcraw binary program
|
||||
|
||||
LIB_DEPENDS= lcms.1:${PORTSDIR}/graphics/lcms
|
||||
|
||||
USE_BZIP2= yes
|
||||
USE_KDELIBS_VER=3
|
||||
USE_GNOME= gnomehack pkgconfig
|
||||
USE_GMAKE= yes
|
||||
USE_AUTOTOOLS= libtool:15
|
||||
USE_LDCONFIG= yes
|
||||
INSTALLS_ICONS= yes
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e 's|-O2||g;s|-fno-schedule-insns -fno-inline||g' \
|
||||
${WRKSRC}/${CONFIGURE_SCRIPT}
|
||||
|
||||
.include <bsd.port.mk>
|
3
graphics/libkdcraw-kde4/distinfo
Normal file
3
graphics/libkdcraw-kde4/distinfo
Normal file
@ -0,0 +1,3 @@
|
||||
MD5 (libkdcraw-0.1.1.tar.bz2) = 46108744a7d8b0b9b0eaa9737c5e1fba
|
||||
SHA256 (libkdcraw-0.1.1.tar.bz2) = de95b38d44783100372f035bc2b35655067ce9d8fd38bdcbd5b936a807636485
|
||||
SIZE (libkdcraw-0.1.1.tar.bz2) = 548111
|
11
graphics/libkdcraw-kde4/files/patch-configure
Normal file
11
graphics/libkdcraw-kde4/files/patch-configure
Normal file
@ -0,0 +1,11 @@
|
||||
--- configure.orig Fri Jun 22 08:31:03 2007
|
||||
+++ configure Fri Jun 22 08:31:27 2007
|
||||
@@ -33495,7 +33495,7 @@
|
||||
|
||||
|
||||
|
||||
-KDCRAW_DIR="\$(libdir)/libkdcraw\$(ABI_MAJOR)"
|
||||
+KDCRAW_DIR="\$(bindir)"
|
||||
|
||||
|
||||
# -----------------------------------------------------------------
|
@ -0,0 +1,11 @@
|
||||
--- libkdcraw/dcraw/Makefile.in.orig Fri Jun 22 08:39:06 2007
|
||||
+++ libkdcraw/dcraw/Makefile.in Fri Jun 22 08:39:22 2007
|
||||
@@ -255,7 +255,7 @@
|
||||
am__quote = @am__quote@
|
||||
am__tar = @am__tar@
|
||||
am__untar = @am__untar@
|
||||
-bindir = $(KDCRAW_DIR)
|
||||
+bindir = @bindir@
|
||||
build = @build@
|
||||
build_alias = @build_alias@
|
||||
build_cpu = @build_cpu@
|
7
graphics/libkdcraw-kde4/pkg-descr
Normal file
7
graphics/libkdcraw-kde4/pkg-descr
Normal file
@ -0,0 +1,7 @@
|
||||
libkdcraw is a C++ interface around a dcraw binary program
|
||||
used to decode RAW picture files.
|
||||
|
||||
WWW: http://www.kipi-plugins.org/
|
||||
|
||||
- Alex Dupre
|
||||
ale@FreeBSD.org
|
19
graphics/libkdcraw-kde4/pkg-plist
Normal file
19
graphics/libkdcraw-kde4/pkg-plist
Normal file
@ -0,0 +1,19 @@
|
||||
bin/kdcraw
|
||||
include/libkdcraw/dcrawbinary.h
|
||||
include/libkdcraw/dcrawinfocontainer.h
|
||||
include/libkdcraw/dcrawsettingswidget.h
|
||||
include/libkdcraw/kdcraw.h
|
||||
include/libkdcraw/libkdcraw_export.h
|
||||
include/libkdcraw/rawdecodingsettings.h
|
||||
include/libkdcraw/rawfiles.h
|
||||
include/libkdcraw/version.h
|
||||
lib/libkdcraw.a
|
||||
lib/libkdcraw.la
|
||||
lib/libkdcraw.so
|
||||
lib/libkdcraw.so.1
|
||||
libdata/pkgconfig/libkdcraw.pc
|
||||
share/icons/hicolor/128x128/apps/kdcraw.png
|
||||
share/icons/hicolor/32x32/apps/kdcraw.png
|
||||
share/icons/hicolor/48x48/apps/kdcraw.png
|
||||
share/icons/hicolor/64x64/apps/kdcraw.png
|
||||
@dirrm include/libkdcraw
|
30
graphics/libkdcraw/Makefile
Normal file
30
graphics/libkdcraw/Makefile
Normal file
@ -0,0 +1,30 @@
|
||||
# New ports collection makefile for: libkdcraw
|
||||
# Date created: 22 June 2007
|
||||
# Whom: Alex Dupre <ale@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= libkdcraw
|
||||
PORTVERSION= 0.1.1
|
||||
CATEGORIES= graphics devel
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= kipi
|
||||
|
||||
MAINTAINER= ale@FreeBSD.org
|
||||
COMMENT= A C++ interface around a dcraw binary program
|
||||
|
||||
LIB_DEPENDS= lcms.1:${PORTSDIR}/graphics/lcms
|
||||
|
||||
USE_BZIP2= yes
|
||||
USE_KDELIBS_VER=3
|
||||
USE_GNOME= gnomehack pkgconfig
|
||||
USE_GMAKE= yes
|
||||
USE_AUTOTOOLS= libtool:15
|
||||
USE_LDCONFIG= yes
|
||||
INSTALLS_ICONS= yes
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e 's|-O2||g;s|-fno-schedule-insns -fno-inline||g' \
|
||||
${WRKSRC}/${CONFIGURE_SCRIPT}
|
||||
|
||||
.include <bsd.port.mk>
|
3
graphics/libkdcraw/distinfo
Normal file
3
graphics/libkdcraw/distinfo
Normal file
@ -0,0 +1,3 @@
|
||||
MD5 (libkdcraw-0.1.1.tar.bz2) = 46108744a7d8b0b9b0eaa9737c5e1fba
|
||||
SHA256 (libkdcraw-0.1.1.tar.bz2) = de95b38d44783100372f035bc2b35655067ce9d8fd38bdcbd5b936a807636485
|
||||
SIZE (libkdcraw-0.1.1.tar.bz2) = 548111
|
11
graphics/libkdcraw/files/patch-configure
Normal file
11
graphics/libkdcraw/files/patch-configure
Normal file
@ -0,0 +1,11 @@
|
||||
--- configure.orig Fri Jun 22 08:31:03 2007
|
||||
+++ configure Fri Jun 22 08:31:27 2007
|
||||
@@ -33495,7 +33495,7 @@
|
||||
|
||||
|
||||
|
||||
-KDCRAW_DIR="\$(libdir)/libkdcraw\$(ABI_MAJOR)"
|
||||
+KDCRAW_DIR="\$(bindir)"
|
||||
|
||||
|
||||
# -----------------------------------------------------------------
|
11
graphics/libkdcraw/files/patch-libkdcraw_dcraw_Makefile.in
Normal file
11
graphics/libkdcraw/files/patch-libkdcraw_dcraw_Makefile.in
Normal file
@ -0,0 +1,11 @@
|
||||
--- libkdcraw/dcraw/Makefile.in.orig Fri Jun 22 08:39:06 2007
|
||||
+++ libkdcraw/dcraw/Makefile.in Fri Jun 22 08:39:22 2007
|
||||
@@ -255,7 +255,7 @@
|
||||
am__quote = @am__quote@
|
||||
am__tar = @am__tar@
|
||||
am__untar = @am__untar@
|
||||
-bindir = $(KDCRAW_DIR)
|
||||
+bindir = @bindir@
|
||||
build = @build@
|
||||
build_alias = @build_alias@
|
||||
build_cpu = @build_cpu@
|
7
graphics/libkdcraw/pkg-descr
Normal file
7
graphics/libkdcraw/pkg-descr
Normal file
@ -0,0 +1,7 @@
|
||||
libkdcraw is a C++ interface around a dcraw binary program
|
||||
used to decode RAW picture files.
|
||||
|
||||
WWW: http://www.kipi-plugins.org/
|
||||
|
||||
- Alex Dupre
|
||||
ale@FreeBSD.org
|
19
graphics/libkdcraw/pkg-plist
Normal file
19
graphics/libkdcraw/pkg-plist
Normal file
@ -0,0 +1,19 @@
|
||||
bin/kdcraw
|
||||
include/libkdcraw/dcrawbinary.h
|
||||
include/libkdcraw/dcrawinfocontainer.h
|
||||
include/libkdcraw/dcrawsettingswidget.h
|
||||
include/libkdcraw/kdcraw.h
|
||||
include/libkdcraw/libkdcraw_export.h
|
||||
include/libkdcraw/rawdecodingsettings.h
|
||||
include/libkdcraw/rawfiles.h
|
||||
include/libkdcraw/version.h
|
||||
lib/libkdcraw.a
|
||||
lib/libkdcraw.la
|
||||
lib/libkdcraw.so
|
||||
lib/libkdcraw.so.1
|
||||
libdata/pkgconfig/libkdcraw.pc
|
||||
share/icons/hicolor/128x128/apps/kdcraw.png
|
||||
share/icons/hicolor/32x32/apps/kdcraw.png
|
||||
share/icons/hicolor/48x48/apps/kdcraw.png
|
||||
share/icons/hicolor/64x64/apps/kdcraw.png
|
||||
@dirrm include/libkdcraw
|
Loading…
Reference in New Issue
Block a user