summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authoradam <adam>2005-08-08 09:44:39 +0000
committeradam <adam>2005-08-08 09:44:39 +0000
commitf45a557e4687dcb234ed1a10b2e4c2003d7d34aa (patch)
tree1c2e4dd5931ca7bdd43e1fd87e0242cee4a0838a /devel
parent51cb989fc4e00caad31c0dfa3a4c3942b9cf4859 (diff)
downloadpkgsrc-f45a557e4687dcb234ed1a10b2e4c2003d7d34aa.tar.gz
Changes 0.5.2:
Bugfixes in exiv2 extractor fixing remaining issues. Changed plugins to not use filename but always only rely on mmapped memory. Extended API with function that allows running getKeywords on data in memory (instead of filename). Extended API with encode and decode functions for binary metadata. Changes 0.5.1: Preliminary integration of exiv2 support (not enabled by default due to bugs). Moved Python and Java bindings into separate packages. print keywords.
Diffstat (limited to 'devel')
-rw-r--r--devel/libextractor/Makefile19
-rw-r--r--devel/libextractor/PLIST6
-rw-r--r--devel/libextractor/distinfo11
-rw-r--r--devel/libextractor/patches/patch-ab6
-rw-r--r--devel/libextractor/patches/patch-ac12
5 files changed, 34 insertions, 20 deletions
diff --git a/devel/libextractor/Makefile b/devel/libextractor/Makefile
index 5c62b747139..fd9cd59458e 100644
--- a/devel/libextractor/Makefile
+++ b/devel/libextractor/Makefile
@@ -1,17 +1,16 @@
-# $NetBSD: Makefile,v 1.7 2005/06/10 17:03:35 tv Exp $
-#
+# $NetBSD: Makefile,v 1.8 2005/08/08 09:44:39 adam Exp $
-DISTNAME= libextractor-0.4.2
-CATEGORIES= devel
-MASTER_SITES= http://gnunet.org/libextractor/download/
+DISTNAME= libextractor-0.5.2
+CATEGORIES= devel
+MASTER_SITES= http://gnunet.org/libextractor/download/
-MAINTAINER= tv@duh.org
-HOMEPAGE= http://gnunet.org/libextractor/
-COMMENT= Metadata extractor for various file data types
+MAINTAINER= tv@duh.org
+HOMEPAGE= http://gnunet.org/libextractor/
+COMMENT= Metadata extractor for various file data types
-USE_TOOLS+= gmake
-USE_PKGLOCALEDIR= yes
USE_LIBTOOL= yes
+USE_PKGLOCALEDIR= yes
+USE_TOOLS+= gmake
GNU_CONFIGURE= yes
PTHREAD_OPTS+= require
diff --git a/devel/libextractor/PLIST b/devel/libextractor/PLIST
index 837f49391c3..fccbb5b1204 100644
--- a/devel/libextractor/PLIST
+++ b/devel/libextractor/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2005/06/10 17:03:35 tv Exp $
+@comment $NetBSD: PLIST,v 1.3 2005/08/08 09:44:39 adam Exp $
bin/extract
include/extractor.h
lib/libextractor.la
@@ -6,6 +6,7 @@ lib/libextractor/libextractor_asf.la
lib/libextractor/libextractor_deb.la
lib/libextractor/libextractor_dvi.la
lib/libextractor/libextractor_elf.la
+lib/libextractor/libextractor_exiv2.la
lib/libextractor/libextractor_filename.la
lib/libextractor/libextractor_gif.la
lib/libextractor/libextractor_hash_md5.la
@@ -38,7 +39,6 @@ lib/libextractor/libextractor_riff.la
lib/libextractor/libextractor_rpm.la
lib/libextractor/libextractor_split.la
lib/libextractor/libextractor_tar.la
-lib/libextractor/libextractor_thumbnail.la
lib/libextractor/libextractor_tiff.la
lib/libextractor/libextractor_translit.la
lib/libextractor/libextractor_wav.la
@@ -46,4 +46,6 @@ lib/libextractor/libextractor_zip.la
man/man1/extract.1
man/man3/libextractor.3
${PKGLOCALEDIR}/locale/de/LC_MESSAGES/libextractor.mo
+${PKGLOCALEDIR}/locale/ro/LC_MESSAGES/libextractor.mo
+${PKGLOCALEDIR}/locale/rw/LC_MESSAGES/libextractor.mo
@dirrm lib/libextractor
diff --git a/devel/libextractor/distinfo b/devel/libextractor/distinfo
index 8a27c304eb1..298d3c18984 100644
--- a/devel/libextractor/distinfo
+++ b/devel/libextractor/distinfo
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.5 2005/06/10 17:03:35 tv Exp $
+$NetBSD: distinfo,v 1.6 2005/08/08 09:44:39 adam Exp $
-SHA1 (libextractor-0.4.2.tar.gz) = b294392590e03c634a055153af09cba7940300f5
-RMD160 (libextractor-0.4.2.tar.gz) = 72d3af052020b0972c158538f74978169b1f81ed
-Size (libextractor-0.4.2.tar.gz) = 5887095 bytes
+SHA1 (libextractor-0.5.2.tar.gz) = 6bfae8c24ea20a4c7d1ae7d68363afde3847d81e
+RMD160 (libextractor-0.5.2.tar.gz) = 1b103e7613c836fdce621416f8ae0285e6e18ace
+Size (libextractor-0.5.2.tar.gz) = 6019715 bytes
SHA1 (patch-aa) = e3c770fd3a0cc918cf1f05f79cb1a148dd928533
-SHA1 (patch-ab) = 3d8cf383a9edf340b6289cb2b4fa98e3029efdef
+SHA1 (patch-ab) = f4d0ab325aba0a624da755dc60c7b4b99652566f
+SHA1 (patch-ac) = 8e6382b5052636cf0d9f85193465bcb0499acbfc
diff --git a/devel/libextractor/patches/patch-ab b/devel/libextractor/patches/patch-ab
index b13c123f06f..36be353d620 100644
--- a/devel/libextractor/patches/patch-ab
+++ b/devel/libextractor/patches/patch-ab
@@ -1,8 +1,8 @@
-$NetBSD: patch-ab,v 1.1.1.1 2004/11/05 18:22:29 tv Exp $
+$NetBSD: patch-ab,v 1.2 2005/08/08 09:44:39 adam Exp $
---- src/main/extractor.c.orig 2004-11-05 13:00:50.000000000 -0500
+--- src/main/extractor.c.orig 2005-07-14 19:52:50.000000000 +0000
+++ src/main/extractor.c
-@@ -152,7 +152,6 @@ libextractor_id3v24:\
+@@ -171,7 +171,6 @@ libextractor_id3v24:\
libextractor_mime:\
libextractor_tar:\
libextractor_dvi:\
diff --git a/devel/libextractor/patches/patch-ac b/devel/libextractor/patches/patch-ac
new file mode 100644
index 00000000000..ed576bdc4a4
--- /dev/null
+++ b/devel/libextractor/patches/patch-ac
@@ -0,0 +1,12 @@
+$NetBSD: patch-ac,v 1.3 2005/08/08 09:45:16 adam Exp $
+
+--- src/main/Makefile.in.orig 2005-08-08 11:25:14.000000000 +0000
++++ src/main/Makefile.in
+@@ -250,7 +250,6 @@ AM_CFLAGS = \
+ extract_LDADD = \
+ $(top_builddir)/src/main/libextractor.la
+
+-@MINGW_FALSE@dlflag = -ldl
+ libextractor_la_LDFLAGS = \
+ -export-dynamic -version-info 2:0:1 $(LIBICONV)
+