diff options
Diffstat (limited to 'packages/raw-tools')
-rw-r--r-- | packages/raw-tools/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/raw-tools/exiv2_0.15.bb | 14 | ||||
-rw-r--r-- | packages/raw-tools/gtkimageview_1.3.0.bb | 19 | ||||
-rw-r--r-- | packages/raw-tools/libopenraw.inc | 10 | ||||
-rw-r--r-- | packages/raw-tools/libopenraw_0.0.2.bb | 4 | ||||
-rw-r--r-- | packages/raw-tools/ufraw_0.12.bb | 16 |
6 files changed, 63 insertions, 0 deletions
diff --git a/packages/raw-tools/.mtn2git_empty b/packages/raw-tools/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/raw-tools/.mtn2git_empty diff --git a/packages/raw-tools/exiv2_0.15.bb b/packages/raw-tools/exiv2_0.15.bb new file mode 100644 index 0000000000..894abce114 --- /dev/null +++ b/packages/raw-tools/exiv2_0.15.bb @@ -0,0 +1,14 @@ +DESCRIPTION = "Exiv2 is a C++ library and a command line utility to access image metadata." +LICENSE = "GPL" +DEPENDS = "tiff zlib" + +SRC_URI = "http://www.exiv2.org/exiv2-${PV}.tar.gz" + +inherit autotools pkgconfig lib_package + + +do_stage() { + autotools_stage_all +} + + diff --git a/packages/raw-tools/gtkimageview_1.3.0.bb b/packages/raw-tools/gtkimageview_1.3.0.bb new file mode 100644 index 0000000000..aa45fe09b0 --- /dev/null +++ b/packages/raw-tools/gtkimageview_1.3.0.bb @@ -0,0 +1,19 @@ +DESCRIPTION = "GtkImageView is a simple image viewer widget for GTK." +DEPENDS = "gtk+" + +SRC_URI = "http://www.angstrom-distribution.org/unstable/sources/gtkimageview-${PV}.tar.gz" + +inherit autotools pkgconfig + + +do_configure() { + gnu-configize + libtoolize --force + oe_runconf +} + +do_stage() { + autotools_stage_all +} + + diff --git a/packages/raw-tools/libopenraw.inc b/packages/raw-tools/libopenraw.inc new file mode 100644 index 0000000000..1f39c2b667 --- /dev/null +++ b/packages/raw-tools/libopenraw.inc @@ -0,0 +1,10 @@ +DESCRIPTION = "libopenraw is an ongoing project to provide a free software implementation for camera RAW files decoding. " +LICENSE = "GPLv2" +DEPENDS = "boost jpeg gtk+" + +inherit autotools pkgconfig lib_package + +PACKAGES =+ "libopenrawgnome" + +FILES_libopenrawgnome = "${libdir}/libopenrawgnome.so.*" + diff --git a/packages/raw-tools/libopenraw_0.0.2.bb b/packages/raw-tools/libopenraw_0.0.2.bb new file mode 100644 index 0000000000..7a19c63bbc --- /dev/null +++ b/packages/raw-tools/libopenraw_0.0.2.bb @@ -0,0 +1,4 @@ +require libopenraw.inc + +SRC_URI = "http://libopenraw.freedesktop.org/download/libopenraw-${PV}.tar.gz" + diff --git a/packages/raw-tools/ufraw_0.12.bb b/packages/raw-tools/ufraw_0.12.bb new file mode 100644 index 0000000000..b9e06a3bc5 --- /dev/null +++ b/packages/raw-tools/ufraw_0.12.bb @@ -0,0 +1,16 @@ +DESCRIPTION = "The Unidentified Flying Raw (UFRaw) is a utility to read and manipulate raw images from digital cameras. " +LICENSE = "GPL" + +DEPENDS = "gtk+ gtkimageview lcms exiv2 tiff" + +SRC_URI = "${SOURCEFORGE_MIRROR}/ufraw/ufraw-${PV}.tar.gz" + +inherit autotools pkgconfig + +EXTRA_OECONF = " --enable-extras " + +PACKAGES =+ "dcraw dcraw-dbg" +FILES_dcraw = "${bindir}/dcraw" +FILES_dcraw-bdg = "${bindir}/.debug/dcraw" + + |