pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/eet Import eet from pkgsrc-wip. Packaged by Pet...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/648824dd1faf
branches:  trunk
changeset: 481805:648824dd1faf
user:      minskim <minskim%pkgsrc.org@localhost>
date:      Wed Oct 13 08:57:55 2004 +0000

description:
Import eet from pkgsrc-wip.  Packaged by Peter Bex and modified by me.

EET is a tiny library designed to write an arbitrary set of chunks of
data to a file and optionally compress each chunk (very much like a
zip file) and allow fast random-access reading of the file later on.
It does not do zip as a zip itself has more complexity than is needed,
and it was much simpler to implement this once here.

EET is extremely fast, small and simple.  EET files can be very small
and highly compressed, making them very optimal for just sending
across the Internet without having to archive, compress or decompress
and install them.  They allow for lightning-fast random-access reads
once created, making them perfect for storing data that is written
once (or rarely) and read many times, but the program does not want to
have to read it all in at once.

It also can encode and decode data structures in memory, as well as
image data for saving to EET files or sending across the network to
other machines, or just writing to arbitrary files on the system.  All
data is encoded in a platform independent way and can be written and
read by any architecture.

diffstat:

 devel/eet/DESCR         |  19 +++++++++++++++++++
 devel/eet/Makefile      |  21 +++++++++++++++++++++
 devel/eet/PLIST         |   6 ++++++
 devel/eet/buildlink3.mk |  22 ++++++++++++++++++++++
 devel/eet/distinfo      |   4 ++++
 5 files changed, 72 insertions(+), 0 deletions(-)

diffs (92 lines):

diff -r 5b364c04aed9 -r 648824dd1faf devel/eet/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/eet/DESCR   Wed Oct 13 08:57:55 2004 +0000
@@ -0,0 +1,19 @@
+EET is a tiny library designed to write an arbitrary set of chunks of
+data to a file and optionally compress each chunk (very much like a
+zip file) and allow fast random-access reading of the file later on.
+It does not do zip as a zip itself has more complexity than is needed,
+and it was much simpler to implement this once here.
+
+EET is extremely fast, small and simple.  EET files can be very small
+and highly compressed, making them very optimal for just sending
+across the Internet without having to archive, compress or decompress
+and install them.  They allow for lightning-fast random-access reads
+once created, making them perfect for storing data that is written
+once (or rarely) and read many times, but the program does not want to
+have to read it all in at once.
+
+It also can encode and decode data structures in memory, as well as
+image data for saving to EET files or sending across the network to
+other machines, or just writing to arbitrary files on the system.  All
+data is encoded in a platform independent way and can be written and
+read by any architecture.
diff -r 5b364c04aed9 -r 648824dd1faf devel/eet/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/eet/Makefile        Wed Oct 13 08:57:55 2004 +0000
@@ -0,0 +1,21 @@
+# $NetBSD: Makefile,v 1.1.1.1 2004/10/13 08:57:55 minskim Exp $
+#
+
+DISTNAME=      eet-0.9.9
+CATEGORIES=    devel archivers
+MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=enlightenment/}
+
+MAINTAINER=    Peter.Bex%student.kun.nl@localhost
+HOMEPAGE=      http://www.enlightenment.org/pages/eet.html
+COMMENT=       Library for speedy storage, retrieval, and compression
+
+PKG_INSTALLATION_TYPES=        overwrite pkgviews
+
+GNU_CONFIGURE= YES
+USE_BUILDLINK3=        YES
+USE_LIBTOOL=   YES
+
+.include "../../devel/libtool/buildlink3.mk"
+.include "../../devel/zlib/buildlink3.mk"
+.include "../../graphics/jpeg/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 5b364c04aed9 -r 648824dd1faf devel/eet/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/eet/PLIST   Wed Oct 13 08:57:55 2004 +0000
@@ -0,0 +1,6 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2004/10/13 08:57:55 minskim Exp $
+bin/eet
+bin/eet-config
+include/Eet.h
+lib/libeet.la
+lib/pkgconfig/eet.pc
diff -r 5b364c04aed9 -r 648824dd1faf devel/eet/buildlink3.mk
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/eet/buildlink3.mk   Wed Oct 13 08:57:55 2004 +0000
@@ -0,0 +1,22 @@
+# $NetBSD: buildlink3.mk,v 1.1.1.1 2004/10/13 08:57:55 minskim Exp $
+
+BUILDLINK_DEPTH:=      ${BUILDLINK_DEPTH}+
+EET_BUILDLINK3_MK:=    ${EET_BUILDLINK3_MK}+
+
+.if !empty(BUILDLINK_DEPTH:M+)
+BUILDLINK_DEPENDS+=    eet
+.endif
+
+BUILDLINK_PACKAGES:=   ${BUILDLINK_PACKAGES:Neet}
+BUILDLINK_PACKAGES+=   eet
+
+.if !empty(EET_BUILDLINK3_MK:M+)
+BUILDLINK_DEPENDS.eet+=        eet>=0.9.9
+BUILDLINK_PKGSRCDIR.eet?=      ../../wip/eet
+.endif # EET_BUILDLINK3_MK
+
+.include "../../devel/libtool/buildlink3.mk"
+.include "../../devel/zlib/buildlink3.mk"
+.include "../../graphics/jpeg/buildlink3.mk"
+
+BUILDLINK_DEPTH:=     ${BUILDLINK_DEPTH:S/+$//}
diff -r 5b364c04aed9 -r 648824dd1faf devel/eet/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/eet/distinfo        Wed Oct 13 08:57:55 2004 +0000
@@ -0,0 +1,4 @@
+$NetBSD: distinfo,v 1.1.1.1 2004/10/13 08:57:55 minskim Exp $
+
+SHA1 (eet-0.9.9.tar.gz) = 79f8a669c4fd59a04e5307b19cb4e39d3ea30f86
+Size (eet-0.9.9.tar.gz) = 2379197 bytes



Home | Main Index | Thread Index | Old Index