]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/commitdiff
Hinzugefügt:
authorms <ms@ea5c0bd1-69bd-2848-81d8-4f18e57aeed8>
Thu, 20 Apr 2006 14:20:28 +0000 (14:20 +0000)
committerms <ms@ea5c0bd1-69bd-2848-81d8-4f18e57aeed8>
Thu, 20 Apr 2006 14:20:28 +0000 (14:20 +0000)
  * Sane - Scanning
  * LibJPEG
Geändert:
  * pwlib
  * xinetd

git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@105 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8

14 files changed:
doc/packages-list.txt
lfs/libjpeg [new file with mode: 0644]
lfs/pwlib
lfs/sane [new file with mode: 0644]
lfs/xinetd
make.sh
src/paks/libjpeg/CONFFILES [new file with mode: 0644]
src/paks/libjpeg/ROOTFILES [new file with mode: 0644]
src/paks/libjpeg/install.sh [new file with mode: 0644]
src/paks/libjpeg/uninstall.sh [new file with mode: 0644]
src/paks/sane/CONFFILES [new file with mode: 0644]
src/paks/sane/ROOTFILES [new file with mode: 0644]
src/paks/sane/install.sh [new file with mode: 0644]
src/paks/sane/uninstall.sh [new file with mode: 0644]

index 9576faf30419ab5fb75e12c7ee9f438b6bbbfde6..de4f590f351a772f6fef996da6de3a7cb9730f19 100644 (file)
@@ -87,6 +87,7 @@
   * iputils-ss020927
   * isapnptools-1.26
   * isdn4k-utils.v3.2p1
+  * jpegsrc.v6b
   * kbd-1.12
   * kudzu-0.99.50
   * less-382
   * psmisc-21.4
   * pulsar-4.0.19
   * pwlib-ipfire1
+  * pwlib-ipfire1
   * rp-pppoe-3.5
   * rrdtool-1.0.49
   * samba-3.0.22
+  * sane-backends-1.0.17
+  * sane-backends-1.0.17_1st
   * sed-4.0.9
   * setserial-2.17
   * shadow-4.0.4.1
diff --git a/lfs/libjpeg b/lfs/libjpeg
new file mode 100644 (file)
index 0000000..99763ec
--- /dev/null
@@ -0,0 +1,82 @@
+###############################################################################
+# This file is part of the IPCop Firewall.                                    #
+#                                                                             #
+# IPCop is free software; you can redistribute it and/or modify               #
+# it under the terms of the GNU General Public License as published by        #
+# the Free Software Foundation; either version 2 of the License, or           #
+# (at your option) any later version.                                         #
+#                                                                             #
+# IPCop is distributed in the hope that it will be useful,                    #
+# but WITHOUT ANY WARRANTY; without even the implied warranty of              #
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               #
+# GNU General Public License for more details.                                #
+#                                                                             #
+# You should have received a copy of the GNU General Public License           #
+# along with IPCop; if not, write to the Free Software                        #
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA    #
+#                                                                             #
+# Makefiles are based on LFSMake, which is                                    #
+# Copyright (C) 2002 Rod Roard <rod@sunsetsystems.com>                        #
+#                                                                             #
+###############################################################################
+
+###############################################################################
+# Definitions
+###############################################################################
+
+include Config
+
+VER        = v6b
+
+THISAPP    = jpegsrc.$(VER)
+DL_FILE    = $(THISAPP).tar.gz
+DL_FROM    = ftp://ftp.uu.net/graphics/jpeg
+DIR_APP    = $(DIR_SRC)/jpeg-6b
+TARGET     = $(DIR_INFO)/$(THISAPP)
+
+###############################################################################
+# Top-level Rules
+###############################################################################
+
+objects = $(DL_FILE)
+
+$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
+
+$(DL_FILE)_MD5 = dbd5f3b47ed13132f04c685d608a7547
+
+install : $(TARGET)
+
+check : $(patsubst %,$(DIR_CHK)/%,$(objects))
+
+download :$(patsubst %,$(DIR_DL)/%,$(objects))
+
+md5 : $(subst %,%_MD5,$(objects))
+
+dist: 
+       make-packages.sh libjpeg $(THISAPP)-ipfire-beta-1
+
+###############################################################################
+# Downloading, checking, md5sum
+###############################################################################
+
+$(patsubst %,$(DIR_CHK)/%,$(objects)) :
+       @$(CHECK)
+
+$(patsubst %,$(DIR_DL)/%,$(objects)) :
+       @$(LOAD)
+
+$(subst %,%_MD5,$(objects)) :
+       @$(MD5)
+
+###############################################################################
+# Installation Details
+###############################################################################
+
+$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
+       @$(PREBUILD)
+       @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
+       cd $(DIR_APP) && ./configure --prefix=/usr --enable-static --enable-shared && \
+                               make
+       cd $(DIR_APP) && make install
+       @rm -rf $(DIR_APP)
+       @$(POSTBUILD)
index 37207c0037d92c87a0edaade6ab6e72ec869ed02..6390266d5c234bf1259cef4c31cff98960190f07 100644 (file)
--- a/lfs/pwlib
+++ b/lfs/pwlib
@@ -75,11 +75,9 @@ $(subst %,%_MD5,$(objects)) :
 
 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @$(PREBUILD)
-       @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar xfz $(DIR_DL)/$(DL_FILE)
-       ln -sf -v $(DIR_SRC)/pwlib* $(DIR_APP)
-#      mv -f $(DIR_SRC)/pwlib* $(DIR_SRC)/pwlib
-#      mv -f /usr/include/ldap.h /
+       rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar xfz $(DIR_DL)/$(DL_FILE)
+       if [ -f /usr/include/ldap.h ]; then mv -f /usr/include/ldap.h / ; fi
        cd $(DIR_APP) && ./configure --prefix=/usr
-#      mv -f /ldap.h /usr/include      
+       if [ -f /ldap.h ]; then mv -f /ldap.h /usr/include/ ; fi
        cd $(DIR_APP) && make opt && make install
        @$(POSTBUILD)
diff --git a/lfs/sane b/lfs/sane
new file mode 100644 (file)
index 0000000..4e02215
--- /dev/null
+++ b/lfs/sane
@@ -0,0 +1,88 @@
+###############################################################################
+# This file is part of the IPCop Firewall.                                    #
+#                                                                             #
+# IPCop is free software; you can redistribute it and/or modify               #
+# it under the terms of the GNU General Public License as published by        #
+# the Free Software Foundation; either version 2 of the License, or           #
+# (at your option) any later version.                                         #
+#                                                                             #
+# IPCop is distributed in the hope that it will be useful,                    #
+# but WITHOUT ANY WARRANTY; without even the implied warranty of              #
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               #
+# GNU General Public License for more details.                                #
+#                                                                             #
+# You should have received a copy of the GNU General Public License           #
+# along with IPCop; if not, write to the Free Software                        #
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA    #
+#                                                                             #
+# Makefiles are based on LFSMake, which is                                    #
+# Copyright (C) 2002 Rod Roard <rod@sunsetsystems.com>                        #
+#                                                                             #
+# Modifications by:                                                           #
+# ??-12-2003 Mark Wormgoor < mark@wormgoor.com>                               #
+#          - Modified Makefile for IPCop build                                #
+#                                                                             #
+# $Id: ntp,v 1.6.2.3 2005/02/05 15:38:15 gespinasse Exp $
+#                                                                             #
+###############################################################################
+
+###############################################################################
+# Definitions
+###############################################################################
+
+include Config
+
+VER        = 1.0.17
+
+THISAPP    = sane-backends-$(VER)
+DL_FILE    = $(THISAPP).tar.gz
+DL_FROM    = ftp://ftp.sane-project.org/pub/sane/$(THISAPP)
+DIR_APP    = $(DIR_SRC)/$(THISAPP)
+TARGET     = $(DIR_INFO)/$(THISAPP)
+
+###############################################################################
+# Top-level Rules
+###############################################################################
+
+objects = $(DL_FILE)
+
+$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
+
+$(DL_FILE)_MD5 = b51c10da8a81a04e1bae88c9e6556df2
+
+install : $(TARGET)
+
+check : $(patsubst %,$(DIR_CHK)/%,$(objects))
+
+download :$(patsubst %,$(DIR_DL)/%,$(objects))
+
+md5 : $(subst %,%_MD5,$(objects))
+
+dist: 
+       make-packages.sh sane $(THISAPP)-ipfire-beta-1
+
+###############################################################################
+# Downloading, checking, md5sum
+###############################################################################
+
+$(patsubst %,$(DIR_CHK)/%,$(objects)) :
+       @$(CHECK)
+
+$(patsubst %,$(DIR_DL)/%,$(objects)) :
+       @$(LOAD)
+
+$(subst %,%_MD5,$(objects)) :
+       @$(MD5)
+
+###############################################################################
+# Installation Details
+###############################################################################
+
+$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
+       @$(PREBUILD)
+       @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
+       cd $(DIR_APP) && ./configure --prefix=/usr --sysconfdir=/etc --disable-translations && \
+                               make
+       cd $(DIR_APP) && make install
+       @rm -rf $(DIR_APP)
+       @$(POSTBUILD)
index b5c47b006a87277260cb4ba4a26e9ae0254ce3e3..d6110552465d910207143e9805e5425c50f7b900 100644 (file)
@@ -53,7 +53,7 @@ download :$(patsubst %,$(DIR_DL)/%,$(objects))
 md5 : $(subst %,%_MD5,$(objects))
 
 dist: 
-       make-packages.sh xinetd $(THISAPP)
+       make-packages.sh xinetd $(THISAPP)-ipfire-beta-1
 
 ###############################################################################
 # Downloading, checking, md5sum
diff --git a/make.sh b/make.sh
index c527cf1a03c146fcb6d6a7f8c9fad6406a54bd88..b0cefc36ecb5dae8307c7edf0b955dc759c653d1 100644 (file)
--- a/make.sh
+++ b/make.sh
@@ -646,6 +646,7 @@ buildipcop() {
 ## Zuerst die Libs und dann die Programme. Ordnung muss sein!
   ipcopmake berkeley
   ipcopmake libtiff
+  ipcopmake libjpeg
   ipcopmake libxml2
   ipcopmake spandsp
   ipcopmake lzo
@@ -671,6 +672,7 @@ buildipcop() {
   ipcopmake openvpn
   ipcopmake asterisk
   ipcopmake edonkeyclc
+  ipcopmake sane
 #  wget http://www.guzu.net/linux/hddtemp.db && mv hddtemp.db $BASEDIR/build/etc/hddtemp.db
 #  ipcopmake hddtemp
 # ipcopmake stunnel # Ausgeschaltet, weil wir es doch nicht nutzen
@@ -759,8 +761,8 @@ buildpackages() {
   # packages-list.txt is ready to be displayed for wiki page
 
   # Create ISO for CDRom and USB-superfloppy
-#  ipcopmake cdrom
-#  cp $LFS/install/images/{*.iso,*.tgz} $BASEDIR >> $LOGFILE 2>&1
+  ipcopmake cdrom
+  cp $LFS/install/images/{*.iso,*.tgz} $BASEDIR >> $LOGFILE 2>&1
 
   # Build IPFire packages
   ipfiredist asterisk
diff --git a/src/paks/libjpeg/CONFFILES b/src/paks/libjpeg/CONFFILES
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/src/paks/libjpeg/ROOTFILES b/src/paks/libjpeg/ROOTFILES
new file mode 100644 (file)
index 0000000..df76fec
--- /dev/null
@@ -0,0 +1,19 @@
+usr/bin/cjpeg
+usr/bin/djpeg
+usr/bin/jpegtran
+usr/bin/rdjpgcom
+usr/bin/wrjpgcom
+#usr/include/jconfig.h
+#usr/include/jerror.h
+#usr/include/jmorecfg.h
+#usr/include/jpeglib.h
+usr/lib/libjpeg.a
+usr/lib/libjpeg.la
+usr/lib/libjpeg.so
+usr/lib/libjpeg.so.62
+usr/lib/libjpeg.so.62.0.0
+#usr/share/man/man1/cjpeg.1
+#usr/share/man/man1/djpeg.1
+#usr/share/man/man1/jpegtran.1
+#usr/share/man/man1/rdjpgcom.1
+#usr/share/man/man1/wrjpgcom.1
diff --git a/src/paks/libjpeg/install.sh b/src/paks/libjpeg/install.sh
new file mode 100644 (file)
index 0000000..3a9ce55
--- /dev/null
@@ -0,0 +1,11 @@
+#!/bin/bash
+#
+#################################################################
+#                                                               #
+# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org #
+#                                                               #
+#################################################################
+#
+# Extract the files
+tar xfz files.tgz -C /
+cp -f ROOTFILES /opt/pakfire/installed/ROOTFILES.$2
diff --git a/src/paks/libjpeg/uninstall.sh b/src/paks/libjpeg/uninstall.sh
new file mode 100644 (file)
index 0000000..ad61226
--- /dev/null
@@ -0,0 +1,10 @@
+#!/bin/bash
+#################################################################
+#                                                               #
+# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org #
+#                                                               #
+#################################################################
+#
+# Delete the files
+## Befehl fehlt noch
+rm -f /opt/pakfire/installed/ROOTFILES.$2
diff --git a/src/paks/sane/CONFFILES b/src/paks/sane/CONFFILES
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/src/paks/sane/ROOTFILES b/src/paks/sane/ROOTFILES
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/src/paks/sane/install.sh b/src/paks/sane/install.sh
new file mode 100644 (file)
index 0000000..3a9ce55
--- /dev/null
@@ -0,0 +1,11 @@
+#!/bin/bash
+#
+#################################################################
+#                                                               #
+# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org #
+#                                                               #
+#################################################################
+#
+# Extract the files
+tar xfz files.tgz -C /
+cp -f ROOTFILES /opt/pakfire/installed/ROOTFILES.$2
diff --git a/src/paks/sane/uninstall.sh b/src/paks/sane/uninstall.sh
new file mode 100644 (file)
index 0000000..ad61226
--- /dev/null
@@ -0,0 +1,10 @@
+#!/bin/bash
+#################################################################
+#                                                               #
+# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org #
+#                                                               #
+#################################################################
+#
+# Delete the files
+## Befehl fehlt noch
+rm -f /opt/pakfire/installed/ROOTFILES.$2