From: Stefan Schantl Date: Sun, 3 May 2009 07:04:40 +0000 (+0200) Subject: Added additional information to lfs/libjpeg. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3b31bcd77ffb3bb2aef2a4880f16e13ad087cdec;p=ipfire-3.x.git Added additional information to lfs/libjpeg. I also added a Patch to fix Bufferoverflows. --- diff --git a/lfs/libjpeg b/lfs/libjpeg index 9a56364e9..19650a41e 100644 --- a/lfs/libjpeg +++ b/lfs/libjpeg @@ -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)