New package: libgeotiff
authorMurat Demirten <mdemirten@yh.com.tr>
Sat, 6 Aug 2011 21:55:07 +0000 (00:55 +0300)
committerPeter Korsgaard <jacmet@sunsite.dk>
Sun, 11 Sep 2011 08:03:39 +0000 (10:03 +0200)
Libgeotiff is an open source library normally hosted on top of
libtiff for reading, and writing GeoTIFF information tags.

Signed-off-by: Murat Demirten <mdemirten@yh.com.tr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
package/Config.in
package/libgeotiff/Config.in [new file with mode: 0644]
package/libgeotiff/libgeotiff.mk [new file with mode: 0644]

index bcdf4210125ff529d8a4ccd31651e6a8f7437586..f56384de2d2a05171001b46b35c818b513793021 100644 (file)
@@ -284,6 +284,7 @@ source "package/libart/Config.in"
 source "package/libdrm/Config.in"
 source "package/libexif/Config.in"
 source "package/libgail/Config.in"
+source "package/libgeotiff/Config.in"
 source "package/libglade/Config.in"
 source "package/gdk-pixbuf/Config.in"
 source "package/libgtk2/Config.in"
diff --git a/package/libgeotiff/Config.in b/package/libgeotiff/Config.in
new file mode 100644 (file)
index 0000000..7489a47
--- /dev/null
@@ -0,0 +1,8 @@
+config BR2_PACKAGE_LIBGEOTIFF
+       bool "libgeotiff"
+       select BR2_PACKAGE_TIFF
+       help
+         Libgeotiff is an open source library normally hosted on top of
+         libtiff for reading, and writing GeoTIFF information tags.
+
+         http://geotiff.osgeo.org
diff --git a/package/libgeotiff/libgeotiff.mk b/package/libgeotiff/libgeotiff.mk
new file mode 100644 (file)
index 0000000..f159eba
--- /dev/null
@@ -0,0 +1,12 @@
+#############################################################
+#
+# libgeotiff
+#
+#############################################################
+LIBGEOTIFF_VERSION = 1.3.0
+LIBGEOTIFF_SOURCE = libgeotiff-$(LIBGEOTIFF_VERSION).tar.gz
+LIBGEOTIFF_SITE = http://download.osgeo.org/geotiff/libgeotiff
+LIBGEOTIFF_DEPENDENCIES = tiff
+LIBGEOTIFF_INSTALL_STAGING = YES
+
+$(eval $(call AUTOTARGETS,package,libgeotiff))