summaryrefslogtreecommitdiff
path: root/graphics/epeg
diff options
context:
space:
mode:
authorVanilla I. Shu <vanilla@FreeBSD.org>2005-06-01 14:03:51 +0000
committerVanilla I. Shu <vanilla@FreeBSD.org>2005-06-01 14:03:51 +0000
commita223a9ec6549219c4723d6dee1b61b886db12bd3 (patch)
tree6cb539874179763ad57c1f00581171315ca9f0b5 /graphics/epeg
parentUpgrade to 0.9.1.007. (diff)
Upgrade to 0.9.0.003.
Notes
Notes: svn path=/head/; revision=136601
Diffstat (limited to 'graphics/epeg')
-rw-r--r--graphics/epeg/Makefile13
-rw-r--r--graphics/epeg/distinfo4
-rw-r--r--graphics/epeg/pkg-descr23
3 files changed, 26 insertions, 14 deletions
diff --git a/graphics/epeg/Makefile b/graphics/epeg/Makefile
index ab98fd610a4b..678397ab27fa 100644
--- a/graphics/epeg/Makefile
+++ b/graphics/epeg/Makefile
@@ -1,18 +1,17 @@
# New ports collection makefile for: epeg
-# Date created: 08/08/2004
-# Whom: vanilla
+# Date created: 05/09/2005
+# Whom: vanilla
#
# $FreeBSD$
#
PORTNAME= epeg
-PORTVERSION= 0.9.0
+PORTVERSION= 0.9.0.003
CATEGORIES= graphics
-MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
-MASTER_SITE_SUBDIR= enlightenment
+MASTER_SITES= http://enlightenment.freedesktop.org/files/
MAINTAINER= vanilla@FreeBSD.org
-COMMENT= An immensely fast jpeg thumbnailer library API
+COMMENT= An IMMENSELY FAST JPEG thumbnailer library API
LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg
@@ -20,6 +19,6 @@ USE_LIBTOOL_VER= 15
USE_GNOME= gnomehack gnometarget
INSTALLS_SHLIB= yes
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
- LDFLAGS="-L${LOCALBASE}/lib"
+ LIBS="-L${LOCALBASE}/lib"
.include <bsd.port.mk>
diff --git a/graphics/epeg/distinfo b/graphics/epeg/distinfo
index 5f49c871fec8..680965145902 100644
--- a/graphics/epeg/distinfo
+++ b/graphics/epeg/distinfo
@@ -1,2 +1,2 @@
-MD5 (epeg-0.9.0.tar.gz) = 9b68516f27e8c0386d03168444a4f5de
-SIZE (epeg-0.9.0.tar.gz) = 2340371
+MD5 (epeg-0.9.0.003.tar.gz) = 5488affe74b7b012df7cd841ac4911d3
+SIZE (epeg-0.9.0.003.tar.gz) = 2363714
diff --git a/graphics/epeg/pkg-descr b/graphics/epeg/pkg-descr
index c0eca8260c1e..5fa894593cd5 100644
--- a/graphics/epeg/pkg-descr
+++ b/graphics/epeg/pkg-descr
@@ -1,6 +1,19 @@
-Embryo is a tiny library designed interpret limited small programs compiled
-by the included scmall compiler. This is mostly cleaning up and reduction
-in size of the original small abstract machine. the compiler itself has been
-left alone almost completely.
+An IMMENSELY FAST JPEG thumbnailer library API.
-WWW: http://www.enlightenment.org/pages/embryo.html
+Why write this? It's a convenience library API to using libjpeg to load JPEG
+images destined to be turned into thumbnails of the original, saving
+information with these thumbnails, retreiving it and managing to load the image
+ready for scaling with the minimum of fuss and CPU overhead.
+
+This means it's insanely fast at loading large JPEG images and scaling them
+down to tiny thumbnails. It's speedup will be proportional to the size
+difference between the source image and the output thumbnail size as a
+count of their pixels.
+
+It makes use of libjpeg features of being able to load an image by only
+decoding the DCT coefficients needed to reconstruct an image of the size
+desired. This gives a massive speedup. If you do not try and access the pixels
+in a format other than YUV (or GRAY8 if the source is grascale) then it also
+avoids colorspace conversions as well.
+
+Please see the full documentation for Epeg for more details.