diff options
author | vanilla <vanilla@FreeBSD.org> | 2005-06-01 22:03:51 +0800 |
---|---|---|
committer | vanilla <vanilla@FreeBSD.org> | 2005-06-01 22:03:51 +0800 |
commit | 7c75466c9fbaef1e331976881bca18a9bff7e2b8 (patch) | |
tree | 9bd8cdf2348366b469698b6d89484af5527849bf /graphics/epeg | |
parent | 23a17691b317f8886384d75f4c191738e91fc85d (diff) | |
download | freebsd-ports-gnome-7c75466c9fbaef1e331976881bca18a9bff7e2b8.tar.gz freebsd-ports-gnome-7c75466c9fbaef1e331976881bca18a9bff7e2b8.tar.zst freebsd-ports-gnome-7c75466c9fbaef1e331976881bca18a9bff7e2b8.zip |
Upgrade to 0.9.0.003.
Diffstat (limited to 'graphics/epeg')
-rw-r--r-- | graphics/epeg/Makefile | 13 | ||||
-rw-r--r-- | graphics/epeg/distinfo | 4 | ||||
-rw-r--r-- | graphics/epeg/pkg-descr | 23 |
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. |