From: Michael Tremer Date: Sun, 21 Feb 2010 18:07:04 +0000 (+0100) Subject: Remove bunch of old lfs files. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9a53e5681eab5b4ad020ec340e35cb44ec2d3c52;p=ipfire-3.x.git Remove bunch of old lfs files. --- diff --git a/lfs/dmraid b/lfs/dmraid deleted file mode 100644 index 341346852..000000000 --- a/lfs/dmraid +++ /dev/null @@ -1,97 +0,0 @@ -############################################################################### -# # -# IPFire.org - A linux based firewall # -# Copyright (C) 2007, 2008, 2009 Michael Tremer & Christian Schmidt # -# # -# This program 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 3 of the License, or # -# (at your option) any later version. # -# # -# This program 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 this program. If not, see . # -# # -############################################################################### - -############################################################################### -# Definitions -############################################################################### - -include Config - -PKG_NAME = dmraid -PKG_VER = 1.0.0.rc15 -PKG_REL = 0 - -THISAPP = $(PKG_NAME)-$(PKG_VER) -DL_FILE = $(THISAPP).tar.bz2 -DIR_APP = $(DIR_SRC)/$(PKG_NAME)/$(PKG_VER) - -OBJECT = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP) - -MAINTAINER = -GROUP = System/Filesystems -CORE = yes -EXTRA = no -DEBUG = no -BUILD_DEPS = -DEPS = lvm2 - -URL = http://people.redhat.com/heinzm/sw/dmraid -LICENSE = GPLv2+ -SHORT_DESC = Device-mapper RAID tool and library. - -define LONG_DESC - DMRAID supports RAID device discovery, RAID set activation, creation, \ - removal, rebuild and display of properties for ATARAID/DDF1 metadata on \ - Linux >= 2.4 using device-mapper. -endef - -############################################################################### -# Top-level Rules -############################################################################### - -objects = $(DL_FILE) - -download: $(objects) - -info: - $(DO_PKG_INFO) - -install: $(OBJECT) - -packages: $(PACKAGES) - -$(PACKAGES): $(OBJECT) - @$(DO_PACKAGE) - -$(objects): - @$(LOAD) - -############################################################################### -# Installation Details -############################################################################### - -$(OBJECT): $(objects) - @$(PREBUILD) - @rm -rf $(DIR_APP) && cd $(DIR_SRC) && $(EXTRACTOR) $(DIR_DL)/$(DL_FILE) - cd $(DIR_APP) && \ - ./configure \ - $(CONFIGURE_ARCH) \ - --prefix=/usr \ - --sbindir=/sbin \ - --libdir=/lib \ - --disable-static \ - --disable-static_link - cd $(DIR_APP) && make #$(PARALLELISMFLAGS) - cd $(DIR_APP) && make -C lib libdmraid.so #$(PARALLELISMFLAGS) - cd $(DIR_APP) && make install - cd $(DIR_APP) && install -v -m 755 lib/libdmraid.so /lib/libdmraid.so.$(PKG_VER) - ln -svf libdmraid.so.$(PKG_VER) /lib/libdmraid.so - @rm -rf $(DIR_APP) - @$(POSTBUILD) diff --git a/lfs/dosfstools b/lfs/dosfstools deleted file mode 100644 index 18137fe04..000000000 --- a/lfs/dosfstools +++ /dev/null @@ -1,86 +0,0 @@ -############################################################################### -# # -# IPFire.org - A linux based firewall # -# Copyright (C) 2007, 2008, 2009 Michael Tremer & Christian Schmidt # -# # -# This program 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 3 of the License, or # -# (at your option) any later version. # -# # -# This program 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 this program. If not, see . # -# # -############################################################################### - -############################################################################### -# Definitions -############################################################################### - -include Config - -PKG_NAME = dosfstools -PKG_VER = 3.0.1 -PKG_REL = 0 - -THISAPP = $(PKG_NAME)-$(PKG_VER) -DL_FILE = $(THISAPP).tar.bz2 -DIR_APP = $(DIR_SRC)/$(THISAPP) - -OBJECT = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP) - -MAINTAINER = -GROUP = System/Filesystems -CORE = yes -EXTRA = no -DEBUG = no -BUILD_DEPS = -DEPS = - -URL = http://www.daniel-baumann.ch/software/dosfstools/ -LICENSE = GPLv3+ -SHORT_DESC = Utilities for making and checking MS-DOS FAT filesystems on Linux. - -define LONG_DESC - The dosfstools package includes the mkdosfs and dosfsck utilities, \ - which respectively make and check MS-DOS FAT filesystems on hard \ - drives or on floppies. -endef - -############################################################################### -# Top-level Rules -############################################################################### - -objects = $(DL_FILE) - -download: $(objects) - -info: - $(DO_PKG_INFO) - -install: $(OBJECT) - -packages: $(PACKAGES) - -$(PACKAGES): $(OBJECT) - @$(DO_PACKAGE) - -$(objects): - @$(LOAD) - -############################################################################### -# Installation Details -############################################################################### - -$(OBJECT): $(objects) - @$(PREBUILD) - @rm -rf $(DIR_APP) && cd $(DIR_SRC) && $(EXTRACTOR) $(DIR_DL)/$(DL_FILE) - cd $(DIR_APP) && make $(PARALLELISMFLAGS) - cd $(DIR_APP) && make install-bin PREFIX=/usr SBINDIR=/sbin - @rm -rf $(DIR_APP) - @$(POSTBUILD) diff --git a/lfs/hostapd b/lfs/hostapd deleted file mode 100644 index 86252e8e2..000000000 --- a/lfs/hostapd +++ /dev/null @@ -1,89 +0,0 @@ -############################################################################### -# # -# IPFire.org - A linux based firewall # -# Copyright (C) 2007, 2008, 2009 Michael Tremer & Christian Schmidt # -# # -# This program 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 3 of the License, or # -# (at your option) any later version. # -# # -# This program 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 this program. If not, see . # -# # -############################################################################### - -############################################################################### -# Definitions -############################################################################### - -include Config - -PKG_NAME = hostapd -PKG_VER = 0.6.9 -PKG_REL = 0 - -THISAPP = $(PKG_NAME)-$(PKG_VER) -DL_FILE = $(THISAPP).tar.gz -DIR_APP = $(DIR_SRC)/$(THISAPP) - -OBJECT = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP) - -MAINTAINER = -GROUP = Networking/Tools -CORE = yes -EXTRA = no -DEBUG = no -BUILD_DEPS = libnl -DEPS = - -URL = http://hostap.epitest.fi/hostapd/ -LICENSE = GPLv2+ -SHORT_DESC = User space daemon to create Wifi Access points. - -define LONG_DESC - Hostapd is a user space daemon for access point and authentication \ - servers. It implements IEEE 802.11 access point management, IEEE \ - 802.1X/WPA/WPA2/EAP Authenticators, RADIUS client, EAP server, and \ - RADIUS authentication server. -endef - -############################################################################### -# Top-level Rules -############################################################################### - -objects = $(DL_FILE) - -download: $(objects) - -info: - $(DO_PKG_INFO) - -install: $(OBJECT) - -packages: $(PACKAGES) - -$(PACKAGES): $(OBJECT) - @$(DO_PACKAGE) - -$(objects): - @$(LOAD) - -############################################################################### -# Installation Details -############################################################################### - -$(OBJECT): $(objects) - @$(PREBUILD) - @rm -rf $(DIR_APP) && cd $(DIR_SRC) && $(EXTRACTOR) $(DIR_DL)/$(DL_FILE) - cd $(DIR_APP)/hostapd && cp $(DIR_SRC)/src/hostapd/config ./.config - cd $(DIR_APP)/hostapd && sed -e "s@/usr/local@/usr@g" -i Makefile - cd $(DIR_APP)/hostapd && make $(PARALLELISMFLAGS) - cd $(DIR_APP)/hostapd && make install - @rm -rf $(DIR_APP) - @$(POSTBUILD) diff --git a/lfs/mdadm b/lfs/mdadm deleted file mode 100644 index f3ea5fbf2..000000000 --- a/lfs/mdadm +++ /dev/null @@ -1,94 +0,0 @@ -############################################################################### -# # -# IPFire.org - A linux based firewall # -# Copyright (C) 2007, 2008, 2009 Michael Tremer & Christian Schmidt # -# # -# This program 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 3 of the License, or # -# (at your option) any later version. # -# # -# This program 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 this program. If not, see . # -# # -############################################################################### - -############################################################################### -# Definitions -############################################################################### - -include Config - -PKG_NAME = mdadm -PKG_VER = 3.0-devel2 -PKG_REL = 0 - -THISAPP = $(PKG_NAME)-$(PKG_VER) -DL_FILE = $(THISAPP).tar.bz2 -DIR_APP = $(DIR_SRC)/$(THISAPP) - -OBJECT = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP) - -MAINTAINER = -GROUP = System/Base -CORE = yes -EXTRA = no -DEBUG = no -BUILD_DEPS = -DEPS = - -URL = http://www.kernel.org/pub/linux/utils/raid/mdadm/ -LICENSE = GPLv2+ -SHORT_DESC = The mdadm program controls Linux md devices (software RAID arrays). - -define LONG_DESC - The mdadm program is used to create, manage, and monitor Linux MD (software \ - RAID) devices. As such, it provides similar functionality to the raidtools \ - package. However, mdadm is a single program, and it can perform \ - almost all functions without a configuration file, though a configuration \ - file can be used to help with some common tasks. -endef - -CFLAGS += -fno-strict-aliasing - -############################################################################### -# Top-level Rules -############################################################################### - -objects = $(DL_FILE) \ - $(THISAPP)-warn.patch - -download: $(objects) - -info: - $(DO_PKG_INFO) - -install: $(OBJECT) - -packages: $(PACKAGES) - -$(PACKAGES): $(OBJECT) - @$(DO_PACKAGE) - -$(objects): - @$(LOAD) - -############################################################################### -# Installation Details -############################################################################### - -$(OBJECT): $(objects) - @$(PREBUILD) - @rm -rf $(DIR_APP) && cd $(DIR_SRC) && $(EXTRACTOR) $(DIR_DL)/$(DL_FILE) - cd $(DIR_APP) && patch -Np1 -i $(DIR_PATCHES)/$(THISAPP)-warn.patch - cd $(DIR_APP) && make $(PARALLELISMFLAGS) CXFLAGS="$(CFLAGS)" \ - SYSCONFDIR="/etc" MDASSEMBLE_AUTO=1 - cd $(DIR_APP) && make install BINDIR=/sbin - -mkdir -p -m 700 /var/run/mdadm - @rm -rf $(DIR_APP) - @$(POSTBUILD) diff --git a/lfs/strace b/lfs/strace deleted file mode 100644 index 7f1174719..000000000 --- a/lfs/strace +++ /dev/null @@ -1,92 +0,0 @@ -############################################################################### -# # -# IPFire.org - A linux based firewall # -# Copyright (C) 2007 Michael Tremer & Christian Schmidt # -# # -# This program 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 3 of the License, or # -# (at your option) any later version. # -# # -# This program 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 this program. If not, see . # -# # -############################################################################### - -############################################################################### -# Definitions -############################################################################### - -include Config - -PKG_NAME = strace -PKG_VER = 4.5.18 -PKG_REL = 0 - -THISAPP = $(PKG_NAME)-$(PKG_VER) -DL_FILE = $(THISAPP).tar.bz2 -DIR_APP = $(DIR_SRC)/$(THISAPP) - -OBJECT = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP) - -MAINTAINER = -GROUP = Development/Debuggers -CORE = no -EXTRA = yes -DEBUG = yes -BUILD_DEPS = -DEPS = - -URL = http://sourceforge.net/projects/strace/ -LICENSE = BSD -SHORT_DESC = Tracks and displays system calls associated with a running process. - -define LONG_DESC - The strace program intercepts and records the system calls called and \ - received by a running process. Strace can print a record of each \ - system call, its arguments and its return value. Strace is useful \ - for diagnosing problems and debugging, as well as for instructional \ - purposes. -endef - -############################################################################### -# Top-level Rules -############################################################################### - -objects = $(DL_FILE) - -download: $(objects) - -info: - $(DO_PKG_INFO) - -install: $(OBJECT) - -packages: $(PACKAGES) - -$(PACKAGES): $(OBJECT) - @$(DO_PACKAGE) - -$(objects): - @$(LOAD) - -############################################################################### -# Installation Details -############################################################################### - -$(OBJECT): $(objects) - @$(PREBUILD) - @rm -rf $(DIR_APP) && cd $(DIR_SRC) && $(EXTRACTOR) $(DIR_DL)/$(DL_FILE) - cd $(DIR_APP) && \ - ./configure \ - $(CONFIGURE_ARCH) \ - --prefix=/usr - cd $(DIR_APP) && make $(PARALLELISMFLAGS) - cd $(DIR_APP) && make install - @rm -rf $(DIR_APP) - @$(POSTBUILD) diff --git a/lfs/sysfsutils b/lfs/sysfsutils deleted file mode 100644 index 457ac2a2e..000000000 --- a/lfs/sysfsutils +++ /dev/null @@ -1,91 +0,0 @@ -############################################################################### -# # -# IPFire.org - A linux based firewall # -# Copyright (C) 2007 Michael Tremer & Christian Schmidt # -# # -# This program 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 3 of the License, or # -# (at your option) any later version. # -# # -# This program 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 this program. If not, see . # -# # -############################################################################### - -############################################################################### -# Definitions -############################################################################### - -include Config - -PKG_NAME = sysfsutils -PKG_VER = 2.1.0 -PKG_REL = 0 - -THISAPP = $(PKG_NAME)-$(PKG_VER) -DL_FILE = $(THISAPP).tar.gz -DIR_APP = $(DIR_SRC)/$(THISAPP) - -OBJECT = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP) - -MAINTAINER = -GROUP = System/Libraries -CORE = yes -EXTRA = no -DEBUG = no -BUILD_DEPS = -DEPS = - -URL = http://sourceforge.net/projects/linux-diag/ -LICENSE = GPLv2 -SHORT_DESC = Utilities for interfacing with sysfs. - -define LONG_DESC - This package's purpose is to provide a set of utilities for interfacing \ - with sysfs. -endef - -############################################################################### -# Top-level Rules -############################################################################### - -objects = $(DL_FILE) - -download: $(objects) - -info: - $(DO_PKG_INFO) - -install: $(OBJECT) - -packages: $(PACKAGES) - -$(PACKAGES): $(OBJECT) - @$(DO_PACKAGE) - -$(objects): - @$(LOAD) - -############################################################################### -# Installation Details -############################################################################### - -$(OBJECT): $(objects) - @$(PREBUILD) - @rm -rf $(DIR_APP) && cd $(DIR_SRC) && $(EXTRACTOR) $(DIR_DL)/$(DL_FILE) - cd $(DIR_APP) && \ - ./configure \ - $(CONFIGURE_ARCH) \ - --prefix=/usr \ - --disable-static - cd $(DIR_APP) && make $(PARALLELISMFLAGS) - cd $(DIR_APP) && make install - rm -vf /usr/lib/libsysfs.la - @rm -rf $(DIR_APP) - @$(POSTBUILD) diff --git a/lfs/xfsprogs b/lfs/xfsprogs deleted file mode 100644 index 0aa4fb556..000000000 --- a/lfs/xfsprogs +++ /dev/null @@ -1,100 +0,0 @@ -############################################################################### -# # -# IPFire.org - A linux based firewall # -# Copyright (C) 2007 Michael Tremer & Christian Schmidt # -# # -# This program 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 3 of the License, or # -# (at your option) any later version. # -# # -# This program 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 this program. If not, see . # -# # -############################################################################### - -############################################################################### -# Definitions -############################################################################### - -include Config - -PKG_NAME = xfsprogs -PKG_VER = 2.10.2 -PKG_REL = 0 - -THISAPP = $(PKG_NAME)-$(PKG_VER) -DL_FILE = $(THISAPP)-1.tar.bz2 -DIR_APP = $(DIR_SRC)/$(THISAPP) - -OBJECT = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP) - -MAINTAINER = -GROUP = System/Filesystems -CORE = yes -EXTRA = no -DEBUG = no -BUILD_DEPS = -DEPS = libtool gettext - -URL = http://oss.sgi.com/projects/xfs/ -LICENSE = GPL+ and LGPLv2+ -SHORT_DESC = Utilities for managing the XFS filesystem. - -define LONG_DESC - A set of commands to use the XFS filesystem, including mkfs.xfs. -endef - -############################################################################### -# Top-level Rules -############################################################################### - -objects = $(DL_FILE) \ - $(THISAPP)-parallel-build.patch - -download: $(objects) - -info: - $(DO_PKG_INFO) - -install: $(OBJECT) - -packages: $(PACKAGES) - -$(PACKAGES): $(OBJECT) - @$(DO_PACKAGE) - -$(objects) : - @$(LOAD) - -############################################################################### -# Installation Details -############################################################################### - -$(OBJECT): $(objects) - @$(PREBUILD) - @rm -rf $(DIR_APP) && cd $(DIR_SRC) && $(EXTRACTOR) $(DIR_DL)/$(DL_FILE) - cd $(DIR_APP) && patch -Np2 -i $(DIR_PATCHES)/$(THISAPP)-parallel-build.patch - # XXX We compile xfsprogs STATIC at the moment because there is a bug with - # installation of the shared libs (may be it is libtool's fault). - cd $(DIR_APP) && DEBUG=-DNDEBUG \ - ./configure \ - $(CONFIGURE_ARCH) \ - --prefix=/usr \ - --bindir=/sbin \ - --sbindir=/sbin \ - --libdir=/lib \ - --libexecdir=/usr/lib \ - --enable-shared=no - cd $(DIR_APP) && make $(PARALLELISMFLAGS) - cd $(DIR_APP) && make install #install-dev - #chmod -v 755 /lib/libhandle.so* - #rm -f /lib/libhandle.{a,la,so} - #ln -svf ../../lib/libhandle.so.1 /usr/lib/libhandle.so - @rm -rf $(DIR_APP) - @$(POSTBUILD)