From: Stefan Schantl Date: Tue, 21 Feb 2023 17:27:06 +0000 (+0100) Subject: ipvsadm: Drop package X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4ba2958f650b6ff9416aaaa4df32286bc8468286;p=ipfire-3.x.git ipvsadm: Drop package Signed-off-by: Stefan Schantl Signed-off-by: Michael Tremer --- diff --git a/ipvsadm/ipvsadm.nm b/ipvsadm/ipvsadm.nm deleted file mode 100644 index 4986ca20d..000000000 --- a/ipvsadm/ipvsadm.nm +++ /dev/null @@ -1,47 +0,0 @@ -############################################################################### -# IPFire.org - An Open Source Firewall Solution # -# Copyright (C) - IPFire Development Team # -############################################################################### - -name = ipvsadm -version = 1.31 -release = 1 - -groups = Applications/System -url = https://www.linuxvirtualserver.org/software/ipvs.html -license = GPLv2+ -summary = Utility to administer the Linux Virtual Server. - -description - ipvsadm is a utility to administer the IP Virtual Server services - offered by the Linux kernel. -end - -source_dl = https://kernel.org/pub/linux/utils/kernel/ipvsadm/ - -build - requires - libnl3-devel - popt-devel - end - - PARALLELISMFLAGS = # parallel build not supported - - make_build_targets += CFLAGS="%{CFLAGS}" LDFLAGS="%{LDFLAGS}" - - make_install_targets += BUILD_ROOT="%{BUILDROOT}" \ - SBIN="%{BUILDROOT}%{sbindir}" MANDIR="%{mandir}" - - install_cmds - # Remove unwanted files. - rm -vfr %{BUILDROOT}/etc - end -end - -packages - package %{name} - - package %{name}-debuginfo - template DEBUGINFO - end -end diff --git a/ipvsadm/patches/build-flags.patch b/ipvsadm/patches/build-flags.patch deleted file mode 100644 index bc0899573..000000000 --- a/ipvsadm/patches/build-flags.patch +++ /dev/null @@ -1,26 +0,0 @@ -diff --git a/Makefile b/Makefile -index 91a2991..1d27655 100644 ---- a/Makefile -+++ b/Makefile -@@ -87,7 +87,7 @@ libs: - make -C libipvs - - ipvsadm: $(OBJS) $(STATIC_LIBS) -- $(CC) $(CFLAGS) -o $@ $^ $(LIBS) -+ $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) - - install: all - if [ ! -d $(SBIN) ]; then $(MKDIR) -p $(SBIN); fi -diff --git a/libipvs/Makefile b/libipvs/Makefile -index f845c8b..46cd4eb 100644 ---- a/libipvs/Makefile -+++ b/libipvs/Makefile -@@ -33,7 +33,7 @@ $(STATIC_LIB): libipvs.o ip_vs_nl_policy.o - ar rv $@ $^ - - $(SHARED_LIB): libipvs.o ip_vs_nl_policy.o -- $(CC) -shared -Wl,-soname,$@ -o $@ $^ -+ $(CC) $(LDFLAGS) -shared -Wl,-soname,$@ -o $@ $^ - - %.o: %.c - $(CC) $(CFLAGS) $(INCLUDE) $(DEFINES) -c -o $@ $<