]> git.ipfire.org Git - ipfire-3.x.git/commitdiff
Added additional information to lfs/libjpeg.
authorStefan Schantl <Stevee@ipfire.org>
Sun, 3 May 2009 07:04:40 +0000 (09:04 +0200)
committerStefan Schantl <Stevee@ipfire.org>
Sun, 3 May 2009 07:04:40 +0000 (09:04 +0200)
I also added a Patch to fix Bufferoverflows.

lfs/libjpeg

index 9a56364e9754e584d773bdffac2c7de68034c671..19650a41e13d8404877abc25309b20221f3db061 100644 (file)
@@ -26,6 +26,7 @@ include Config
 
 PKG_NAME   = libjpeg
 PKG_VER    = 6b
+PKG_REL    = 0
 
 THISAPP    = $(PKG_NAME)-$(PKG_VER)
 DL_FILE    = jpegsrc.v$(PKG_VER).tar.gz
@@ -33,12 +34,29 @@ DIR_APP    = $(DIR_SRC)/jpeg-$(PKG_VER)
 
 OBJECT     = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP)
 
+MAINTAINER =
+GROUP      = System/Libraries
+EXTRA      = no
+DEBUG      = no
+DEPS       =
+
+URL        = http://www.ijg.org/
+LICENSE    = IJG
+SHORT_DESC = A library for manipulating JPEG image format files.
+
+definde LONG_DESC
+       The libjpeg package contains a library of functions for manipulating \
+       JPEG images, as well as simple client programs for accessing the \
+       libjpeg functions.
+endef
+
 ###############################################################################
 # Top-level Rules
 ###############################################################################
 
-objects = $(DL_FILE)
-
+objects = $(DL_FILE) \
+       libjpeg-6b-buffferoverflow.patch
+       
 download: $(objects)
 
 info:
@@ -65,6 +83,9 @@ $(OBJECT): $(objects)
                        --prefix=/usr \
                        --disable-static \
                        --enable-shared
+       
+       cd $(DIR_APP) && patch -Np1 -i libjpeg-6b-buffferoverflow.patch
+
        cd $(DIR_APP) && make $(PARALLELISMFLAGS)
        cd $(DIR_APP) && make install
        @rm -rf $(DIR_APP)