diff options
Diffstat (limited to 'packaging/ipkg')
-rw-r--r-- | packaging/ipkg/conffiles | 1 | ||||
-rw-r--r-- | packaging/ipkg/control-freeswan-module.dist | 8 | ||||
-rw-r--r-- | packaging/ipkg/control-freeswan.dist | 8 | ||||
-rw-r--r-- | packaging/ipkg/debian-binary | 1 | ||||
-rwxr-xr-x | packaging/ipkg/generate-ipkg | 43 |
5 files changed, 0 insertions, 61 deletions
diff --git a/packaging/ipkg/conffiles b/packaging/ipkg/conffiles deleted file mode 100644 index ff0851c29..000000000 --- a/packaging/ipkg/conffiles +++ /dev/null @@ -1 +0,0 @@ -/etc/ipsec.conf diff --git a/packaging/ipkg/control-freeswan-module.dist b/packaging/ipkg/control-freeswan-module.dist deleted file mode 100644 index aec4091f1..000000000 --- a/packaging/ipkg/control-freeswan-module.dist +++ /dev/null @@ -1,8 +0,0 @@ -Package: freeswan-module -Priority: optional -Section: Communications -Version: VERSION -Architecture: ARCH -Maintainer: FreeS/WAN <users@lists.freeswan.org> -Depends: freeswan -Description: FreeS/WAN ipsec.o binary module diff --git a/packaging/ipkg/control-freeswan.dist b/packaging/ipkg/control-freeswan.dist deleted file mode 100644 index 376647e6f..000000000 --- a/packaging/ipkg/control-freeswan.dist +++ /dev/null @@ -1,8 +0,0 @@ -Package: freeswan -Priority: optional -Section: Communications -Version: VERSION -Architecture: ARCH -Maintainer: FreeS/WAN <users@lists.freeswan.org> -Depends: gawk libgmp -Description: FreeS/WAN daemons and userland tools diff --git a/packaging/ipkg/debian-binary b/packaging/ipkg/debian-binary deleted file mode 100644 index cd5ac039d..000000000 --- a/packaging/ipkg/debian-binary +++ /dev/null @@ -1 +0,0 @@ -2.0 diff --git a/packaging/ipkg/generate-ipkg b/packaging/ipkg/generate-ipkg deleted file mode 100755 index 5a288f34e..000000000 --- a/packaging/ipkg/generate-ipkg +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh - -# This script expects the following variables to be in the environment: -# DESTDIR -# FREESWANSRCDIR -# ARCH -# IPSECVERSION - -#set -e - -cd $DESTDIR -rm -f *.tar.gz - -mkdir -p $FREESWANSRCDIR/packaging/ipkg/ipkg -cp $FREESWANSRCDIR/packaging/ipkg/debian-binary . -cp $FREESWANSRCDIR/packaging/ipkg/conffiles . - -cat $FREESWANSRCDIR/packaging/ipkg/control-freeswan.dist | sed s/VERSION/$IPSECVERSION/ |sed s/ARCH/$ARCH/ > $FREESWANSRCDIR/packaging/ipkg/control-freeswan - -cp $FREESWANSRCDIR/packaging/ipkg/control-freeswan control - -tar -czf ./control.tar.gz ./conffiles ./control --owner=root --group=root - -tar -czf ./data.tar.gz ./* --owner=root --group=root --exclude=control.tar.gz --exclude=conffiles --exclude=control --exclude=debian-binary - -tar -czf $FREESWANSRCDIR/packaging/ipkg/ipkg/freeswan-utils-$IPSECVERSION.arm.ipk ./debian-binary ./control.tar.gz ./data.tar.gz --owner=root --group=root -mkdir -p $FREESWANSRCDIR/packaging/ipkg/kernel-module -cd $FREESWANSRCDIR/packaging/ipkg/kernel-module - -rm -f *.tar.gz -cp $FREESWANSRCDIR/packaging/ipkg/debian-binary . - -cat $FREESWANSRCDIR/packaging/ipkg/control-freeswan-module.dist | sed s/VERSION/$IPSECVERSION/ |sed s/ARCH/$ARCH/ > $FREESWANSRCDIR/packaging/ipkg/control-freeswan-module - -cp $FREESWANSRCDIR/packaging/ipkg/control-freeswan-module control - -tar czf ./control.tar.gz ./control --owner=root --group=root - -tar czf ./data.tar.gz * --owner=root --group=root --exclude=control.tar.gz --exclude=control --exclude=debian-binary - -tar czf $FREESWANSRCDIR/packaging/ipkg/ipkg/freeswan-module-$IPSECVERSION.arm.ipk ./debian-binary ./control.tar.gz ./data.tar.gz --owner=root --group=root -rm -rf $FREESWANSRCDIR/packaging/ipkg/ipkg/binaries/* -rm -rf $FREESWANSRCDIR/packaging/ipkg/ipkg/kernel-module/* |