summaryrefslogtreecommitdiff
path: root/package/freeradius
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2009-05-30 20:39:07 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2009-05-30 20:39:07 +0200
commitba3359722cbf8aa7b0ed39e1f81d1d74ec88fecd (patch)
tree10c726d162bc0ded85eb7aeacf8f246bd39ad63a /package/freeradius
parentbbd610f15a71b27c955175cb98392b114717fd47 (diff)
optimize ipkg package management
- generate ipkg control file from PKG_* variables - automatically install init scripts from ./files/*.init set #PKG pkgname to set the binary package - rename FWINIT -> INIT - move postinst and conffiles meta data to ./files - update the packages to the latest upstream version - remove some unready or unused package (strongswan,..) more cleanups needed after allmodconfig
Diffstat (limited to 'package/freeradius')
-rw-r--r--package/freeradius/Makefile54
-rw-r--r--package/freeradius/files/freeradius-mod-eap.conffiles (renamed from package/freeradius/ipkg/freeradius-mod-eap.conffiles)0
-rw-r--r--package/freeradius/files/freeradius-mod-files.conffiles (renamed from package/freeradius/ipkg/freeradius-mod-files.conffiles)0
-rw-r--r--package/freeradius/files/freeradius-mod-ldap.conffiles (renamed from package/freeradius/ipkg/freeradius-mod-ldap.conffiles)0
-rw-r--r--package/freeradius/files/freeradius-mod-preprocess.conffiles (renamed from package/freeradius/ipkg/freeradius-mod-preprocess.conffiles)0
-rw-r--r--package/freeradius/files/freeradius-mod-realm.conffiles (renamed from package/freeradius/ipkg/freeradius-mod-realm.conffiles)0
-rw-r--r--package/freeradius/files/freeradius-mod-sql.conffiles (renamed from package/freeradius/ipkg/freeradius-mod-sql.conffiles)0
-rw-r--r--package/freeradius/files/freeradius.conffiles (renamed from package/freeradius/ipkg/freeradius.conffiles)0
-rw-r--r--package/freeradius/files/freeradius.postinst (renamed from package/freeradius/ipkg/freeradius.postinst)0
-rw-r--r--package/freeradius/files/radiusd.init3
-rw-r--r--package/freeradius/ipkg/freeradius-democerts.control5
-rw-r--r--package/freeradius/ipkg/freeradius-mod-chap.control5
-rw-r--r--package/freeradius/ipkg/freeradius-mod-detail.control5
-rw-r--r--package/freeradius/ipkg/freeradius-mod-digest.control5
-rw-r--r--package/freeradius/ipkg/freeradius-mod-eap-gtc.control5
-rw-r--r--package/freeradius/ipkg/freeradius-mod-eap-md5.control5
-rw-r--r--package/freeradius/ipkg/freeradius-mod-eap-mschapv2.control5
-rw-r--r--package/freeradius/ipkg/freeradius-mod-eap-peap.control5
-rw-r--r--package/freeradius/ipkg/freeradius-mod-eap-tls.control5
-rw-r--r--package/freeradius/ipkg/freeradius-mod-eap-ttls.control5
-rw-r--r--package/freeradius/ipkg/freeradius-mod-eap.control5
-rw-r--r--package/freeradius/ipkg/freeradius-mod-files.control5
-rw-r--r--package/freeradius/ipkg/freeradius-mod-ldap.control5
-rw-r--r--package/freeradius/ipkg/freeradius-mod-mschap.control5
-rw-r--r--package/freeradius/ipkg/freeradius-mod-pap.control5
-rw-r--r--package/freeradius/ipkg/freeradius-mod-preprocess.control5
-rw-r--r--package/freeradius/ipkg/freeradius-mod-realm.control5
-rw-r--r--package/freeradius/ipkg/freeradius-mod-sql-mysql.control5
-rw-r--r--package/freeradius/ipkg/freeradius-mod-sql-pgsql.control5
-rw-r--r--package/freeradius/ipkg/freeradius-mod-sql.control5
-rw-r--r--package/freeradius/ipkg/freeradius-utils.control5
-rw-r--r--package/freeradius/ipkg/freeradius.control5
32 files changed, 29 insertions, 138 deletions
diff --git a/package/freeradius/Makefile b/package/freeradius/Makefile
index f6fece17d..f6e4a29ca 100644
--- a/package/freeradius/Makefile
+++ b/package/freeradius/Makefile
@@ -9,7 +9,11 @@ PKG_NAME:= freeradius
PKG_VERSION:= 2.1.4
PKG_RELEASE:= 1
PKG_MD5SUM:= 07837a2e78028a0fcf5fc3bb5ca292e9
-MASTER_SITES:= ftp://ftp.freeradius.org/pub/radius/ \
+PKG_DESCR:= a flexible RADIUS server
+PKG_SECTION:= net
+PKG_DEPENDS:= libltdl libopenssl libpthread
+PKG_URL:= http://www.freeradius.org
+PKG_SITES:= ftp://ftp.freeradius.org/pub/radius/ \
http://freeradius.portal-to-web.de/ \
ftp://ftp.uk.freeradius.org/pub/radius/
@@ -18,7 +22,6 @@ WRKDIST= ${WRKDIR}/${PKG_NAME}-server-${PKG_VERSION}
PKG_CONFIGURE_OPTIONS:=
-# disabled, problems exist when libldap is installed on hostsystem
ifneq (${ADK_PACKAGE_FREERADIUS_MOD_LDAP},)
PKG_CONFIGURE_LIBS+= -lcrypto -lssl
PKG_CONFIGURE_OPTIONS+= \
@@ -66,28 +69,28 @@ ${2}-install:
done
endef
-$(eval $(call PKG_template,FREERADIUS,freeradius,${PKG_VERSION}-${PKG_RELEASE}))
-$(eval $(call PKG_template,FREERADIUS_DEMOCERTS,freeradius-democerts,${PKG_VERSION}-${PKG_RELEASE}))
-$(eval $(call PKG_template,FREERADIUS_MOD_CHAP,freeradius-mod-chap,${PKG_VERSION}-${PKG_RELEASE}))
-$(eval $(call PKG_template,FREERADIUS_MOD_DETAIL,freeradius-mod-detail,${PKG_VERSION}-${PKG_RELEASE}))
-$(eval $(call PKG_template,FREERADIUS_MOD_DIGEST,freeradius-mod-digest,${PKG_VERSION}-${PKG_RELEASE}))
-$(eval $(call PKG_template,FREERADIUS_MOD_EAP,freeradius-mod-eap,${PKG_VERSION}-${PKG_RELEASE}))
-$(eval $(call PKG_template,FREERADIUS_MOD_EAP_GTC,freeradius-mod-eap-gtc,${PKG_VERSION}-${PKG_RELEASE}))
-$(eval $(call PKG_template,FREERADIUS_MOD_EAP_MD5,freeradius-mod-eap-md5,${PKG_VERSION}-${PKG_RELEASE}))
-$(eval $(call PKG_template,FREERADIUS_MOD_EAP_MSCHAPV2,freeradius-mod-eap-mschapv2,${PKG_VERSION}-${PKG_RELEASE}))
-$(eval $(call PKG_template,FREERADIUS_MOD_EAP_PEAP,freeradius-mod-eap-peap,${PKG_VERSION}-${PKG_RELEASE}))
-$(eval $(call PKG_template,FREERADIUS_MOD_EAP_TLS,freeradius-mod-eap-tls,${PKG_VERSION}-${PKG_RELEASE}))
-$(eval $(call PKG_template,FREERADIUS_MOD_EAP_TTLS,freeradius-mod-eap-ttls,${PKG_VERSION}-${PKG_RELEASE}))
-$(eval $(call PKG_template,FREERADIUS_MOD_FILES,freeradius-mod-files,${PKG_VERSION}-${PKG_RELEASE}))
-$(eval $(call PKG_template,FREERADIUS_MOD_LDAP,freeradius-mod-ldap,${PKG_VERSION}-${PKG_RELEASE}))
-$(eval $(call PKG_template,FREERADIUS_MOD_MSCHAP,freeradius-mod-mschap,${PKG_VERSION}-${PKG_RELEASE}))
-$(eval $(call PKG_template,FREERADIUS_MOD_PAP,freeradius-mod-pap,${PKG_VERSION}-${PKG_RELEASE}))
-$(eval $(call PKG_template,FREERADIUS_MOD_PREPROCESS,freeradius-mod-preprocess,${PKG_VERSION}-${PKG_RELEASE}))
-$(eval $(call PKG_template,FREERADIUS_MOD_REALM,freeradius-mod-realm,${PKG_VERSION}-${PKG_RELEASE}))
-$(eval $(call PKG_template,FREERADIUS_MOD_SQL,freeradius-mod-sql,${PKG_VERSION}-${PKG_RELEASE}))
-$(eval $(call PKG_template,FREERADIUS_MOD_SQL_MYSQL,freeradius-mod-sql-mysql,${PKG_VERSION}-${PKG_RELEASE}))
-$(eval $(call PKG_template,FREERADIUS_MOD_SQL_PGSQL,freeradius-mod-sql-pgsql,${PKG_VERSION}-${PKG_RELEASE}))
-$(eval $(call PKG_template,FREERADIUS_UTILS,freeradius-utils,${PKG_VERSION}-${PKG_RELEASE}))
+$(eval $(call PKG_template,FREERADIUS,freeradius,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+$(eval $(call PKG_template,FREERADIUS_DEMOCERTS,freeradius-democerts,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+$(eval $(call PKG_template,FREERADIUS_MOD_CHAP,freeradius-mod-chap,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+$(eval $(call PKG_template,FREERADIUS_MOD_DETAIL,freeradius-mod-detail,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+$(eval $(call PKG_template,FREERADIUS_MOD_DIGEST,freeradius-mod-digest,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+$(eval $(call PKG_template,FREERADIUS_MOD_EAP,freeradius-mod-eap,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+$(eval $(call PKG_template,FREERADIUS_MOD_EAP_GTC,freeradius-mod-eap-gtc,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+$(eval $(call PKG_template,FREERADIUS_MOD_EAP_MD5,freeradius-mod-eap-md5,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+$(eval $(call PKG_template,FREERADIUS_MOD_EAP_MSCHAPV2,freeradius-mod-eap-mschapv2,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+$(eval $(call PKG_template,FREERADIUS_MOD_EAP_PEAP,freeradius-mod-eap-peap,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+$(eval $(call PKG_template,FREERADIUS_MOD_EAP_TLS,freeradius-mod-eap-tls,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+$(eval $(call PKG_template,FREERADIUS_MOD_EAP_TTLS,freeradius-mod-eap-ttls,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+$(eval $(call PKG_template,FREERADIUS_MOD_FILES,freeradius-mod-files,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+$(eval $(call PKG_template,FREERADIUS_MOD_LDAP,freeradius-mod-ldap,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+$(eval $(call PKG_template,FREERADIUS_MOD_MSCHAP,freeradius-mod-mschap,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+$(eval $(call PKG_template,FREERADIUS_MOD_PAP,freeradius-mod-pap,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+$(eval $(call PKG_template,FREERADIUS_MOD_PREPROCESS,freeradius-mod-preprocess,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+$(eval $(call PKG_template,FREERADIUS_MOD_REALM,freeradius-mod-realm,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+$(eval $(call PKG_template,FREERADIUS_MOD_SQL,freeradius-mod-sql,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+$(eval $(call PKG_template,FREERADIUS_MOD_SQL_MYSQL,freeradius-mod-sql-mysql,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+$(eval $(call PKG_template,FREERADIUS_MOD_SQL_PGSQL,freeradius-mod-sql-pgsql,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+$(eval $(call PKG_template,FREERADIUS_UTILS,freeradius-utils,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
$(eval $(call PKG_mod_template,FREERADIUS_MOD_CHAP,rlm_chap,))
$(eval $(call PKG_mod_template,FREERADIUS_MOD_DETAIL,rlm_detail,))
@@ -155,9 +158,6 @@ FAKE_FLAGS+= R="${WRKINST}" \
INSTALLSTRIP=""
post-install: ${INSTALL_MODS_y} ${INSTALL_MODS_m}
- ${INSTALL_DIR} ${IDIR_FREERADIUS}/etc/init.d
- install -m0755 ./files/radiusd.init \
- ${IDIR_FREERADIUS}/etc/init.d/radiusd
${INSTALL_DIR} ${IDIR_FREERADIUS}/etc/freeradius
${CP} ./files/users ${IDIR_FREERADIUS}/etc/freeradius/
${INSTALL_DATA} ./files/radiusd.conf ${IDIR_FREERADIUS}/etc/freeradius
diff --git a/package/freeradius/ipkg/freeradius-mod-eap.conffiles b/package/freeradius/files/freeradius-mod-eap.conffiles
index 7e0e30e73..7e0e30e73 100644
--- a/package/freeradius/ipkg/freeradius-mod-eap.conffiles
+++ b/package/freeradius/files/freeradius-mod-eap.conffiles
diff --git a/package/freeradius/ipkg/freeradius-mod-files.conffiles b/package/freeradius/files/freeradius-mod-files.conffiles
index 4fcd92bff..4fcd92bff 100644
--- a/package/freeradius/ipkg/freeradius-mod-files.conffiles
+++ b/package/freeradius/files/freeradius-mod-files.conffiles
diff --git a/package/freeradius/ipkg/freeradius-mod-ldap.conffiles b/package/freeradius/files/freeradius-mod-ldap.conffiles
index ada9fafc1..ada9fafc1 100644
--- a/package/freeradius/ipkg/freeradius-mod-ldap.conffiles
+++ b/package/freeradius/files/freeradius-mod-ldap.conffiles
diff --git a/package/freeradius/ipkg/freeradius-mod-preprocess.conffiles b/package/freeradius/files/freeradius-mod-preprocess.conffiles
index b29cca816..b29cca816 100644
--- a/package/freeradius/ipkg/freeradius-mod-preprocess.conffiles
+++ b/package/freeradius/files/freeradius-mod-preprocess.conffiles
diff --git a/package/freeradius/ipkg/freeradius-mod-realm.conffiles b/package/freeradius/files/freeradius-mod-realm.conffiles
index a4d412612..a4d412612 100644
--- a/package/freeradius/ipkg/freeradius-mod-realm.conffiles
+++ b/package/freeradius/files/freeradius-mod-realm.conffiles
diff --git a/package/freeradius/ipkg/freeradius-mod-sql.conffiles b/package/freeradius/files/freeradius-mod-sql.conffiles
index 8ab119d07..8ab119d07 100644
--- a/package/freeradius/ipkg/freeradius-mod-sql.conffiles
+++ b/package/freeradius/files/freeradius-mod-sql.conffiles
diff --git a/package/freeradius/ipkg/freeradius.conffiles b/package/freeradius/files/freeradius.conffiles
index 56552e6c1..56552e6c1 100644
--- a/package/freeradius/ipkg/freeradius.conffiles
+++ b/package/freeradius/files/freeradius.conffiles
diff --git a/package/freeradius/ipkg/freeradius.postinst b/package/freeradius/files/freeradius.postinst
index c65fa195f..c65fa195f 100644
--- a/package/freeradius/ipkg/freeradius.postinst
+++ b/package/freeradius/files/freeradius.postinst
diff --git a/package/freeradius/files/radiusd.init b/package/freeradius/files/radiusd.init
index 4e47678da..818f803ff 100644
--- a/package/freeradius/files/radiusd.init
+++ b/package/freeradius/files/radiusd.init
@@ -1,5 +1,6 @@
#!/bin/sh
-#FWINIT 75
+#PKG freeradius
+#INIT 75
. /etc/rc.conf
case $1 in
diff --git a/package/freeradius/ipkg/freeradius-democerts.control b/package/freeradius/ipkg/freeradius-democerts.control
deleted file mode 100644
index c77c62a7a..000000000
--- a/package/freeradius/ipkg/freeradius-democerts.control
+++ /dev/null
@@ -1,5 +0,0 @@
-Package: freeradius-democerts
-Priority: optional
-Section: net
-Description: a set of certificates to test FreeRADIUS
-Depends: freeradius
diff --git a/package/freeradius/ipkg/freeradius-mod-chap.control b/package/freeradius/ipkg/freeradius-mod-chap.control
deleted file mode 100644
index 36f945345..000000000
--- a/package/freeradius/ipkg/freeradius-mod-chap.control
+++ /dev/null
@@ -1,5 +0,0 @@
-Package: freeradius-mod-chap
-Priority: optional
-Section: net
-Description: a CHAP module for FreeRADIUS
-Depends: freeradius
diff --git a/package/freeradius/ipkg/freeradius-mod-detail.control b/package/freeradius/ipkg/freeradius-mod-detail.control
deleted file mode 100644
index 8254c0076..000000000
--- a/package/freeradius/ipkg/freeradius-mod-detail.control
+++ /dev/null
@@ -1,5 +0,0 @@
-Package: freeradius-mod-detail
-Priority: optional
-Section: net
-Description: a detailed accounting module for FreeRADIUS
-Depends: freeradius
diff --git a/package/freeradius/ipkg/freeradius-mod-digest.control b/package/freeradius/ipkg/freeradius-mod-digest.control
deleted file mode 100644
index aec524320..000000000
--- a/package/freeradius/ipkg/freeradius-mod-digest.control
+++ /dev/null
@@ -1,5 +0,0 @@
-Package: freeradius-mod-digest
-Priority: optional
-Section: net
-Description: digest authentication for FreeRADIUS
-Depends: freeradius
diff --git a/package/freeradius/ipkg/freeradius-mod-eap-gtc.control b/package/freeradius/ipkg/freeradius-mod-eap-gtc.control
deleted file mode 100644
index 16fd01a4b..000000000
--- a/package/freeradius/ipkg/freeradius-mod-eap-gtc.control
+++ /dev/null
@@ -1,5 +0,0 @@
-Package: freeradius-mod-eap-gtc
-Priority: optional
-Section: net
-Description: an EAP/GTC module for FreeRADIUS
-Depends: freeradius, freeradius-mod-eap
diff --git a/package/freeradius/ipkg/freeradius-mod-eap-md5.control b/package/freeradius/ipkg/freeradius-mod-eap-md5.control
deleted file mode 100644
index 7c060b465..000000000
--- a/package/freeradius/ipkg/freeradius-mod-eap-md5.control
+++ /dev/null
@@ -1,5 +0,0 @@
-Package: freeradius-mod-eap-md5
-Priority: optional
-Section: net
-Description: an EAP/MD5 module for FreeRADIUS
-Depends: freeradius, freeradius-mod-eap
diff --git a/package/freeradius/ipkg/freeradius-mod-eap-mschapv2.control b/package/freeradius/ipkg/freeradius-mod-eap-mschapv2.control
deleted file mode 100644
index b4e23f483..000000000
--- a/package/freeradius/ipkg/freeradius-mod-eap-mschapv2.control
+++ /dev/null
@@ -1,5 +0,0 @@
-Package: freeradius-mod-eap-mschapv2
-Priority: optional
-Section: net
-Description: an EAP/MS-CHAPv2 module for FreeRADIUS
-Depends: freeradius, freeradius-mod-eap
diff --git a/package/freeradius/ipkg/freeradius-mod-eap-peap.control b/package/freeradius/ipkg/freeradius-mod-eap-peap.control
deleted file mode 100644
index cfd8aec7e..000000000
--- a/package/freeradius/ipkg/freeradius-mod-eap-peap.control
+++ /dev/null
@@ -1,5 +0,0 @@
-Package: freeradius-mod-eap-peap
-Priority: optional
-Section: net
-Description: an EAP/PEAP module for FreeRADIUS
-Depends: freeradius, freeradius-mod-eap, freeradius-mod-eap-tls
diff --git a/package/freeradius/ipkg/freeradius-mod-eap-tls.control b/package/freeradius/ipkg/freeradius-mod-eap-tls.control
deleted file mode 100644
index 3f09ceb90..000000000
--- a/package/freeradius/ipkg/freeradius-mod-eap-tls.control
+++ /dev/null
@@ -1,5 +0,0 @@
-Package: freeradius-mod-eap-tls
-Priority: optional
-Section: net
-Description: an EAP/TLS module for FreeRADIUS
-Depends: freeradius, freeradius-mod-eap
diff --git a/package/freeradius/ipkg/freeradius-mod-eap-ttls.control b/package/freeradius/ipkg/freeradius-mod-eap-ttls.control
deleted file mode 100644
index 84be74c4e..000000000
--- a/package/freeradius/ipkg/freeradius-mod-eap-ttls.control
+++ /dev/null
@@ -1,5 +0,0 @@
-Package: freeradius-mod-eap-ttls
-Priority: optional
-Section: net
-Description: an EAP/TTLS module for FreeRADIUS
-Depends: freeradius, freeradius-mod-eap, freeradius-mod-eap-tls
diff --git a/package/freeradius/ipkg/freeradius-mod-eap.control b/package/freeradius/ipkg/freeradius-mod-eap.control
deleted file mode 100644
index f01a045e7..000000000
--- a/package/freeradius/ipkg/freeradius-mod-eap.control
+++ /dev/null
@@ -1,5 +0,0 @@
-Package: freeradius-mod-eap
-Priority: optional
-Section: net
-Description: an EAP module for FreeRADIUS
-Depends: freeradius
diff --git a/package/freeradius/ipkg/freeradius-mod-files.control b/package/freeradius/ipkg/freeradius-mod-files.control
deleted file mode 100644
index 5126aa13c..000000000
--- a/package/freeradius/ipkg/freeradius-mod-files.control
+++ /dev/null
@@ -1,5 +0,0 @@
-Package: freeradius-mod-files
-Priority: optional
-Section: net
-Description: a module for FreeRADIUS, using local files for authorization
-Depends: freeradius
diff --git a/package/freeradius/ipkg/freeradius-mod-ldap.control b/package/freeradius/ipkg/freeradius-mod-ldap.control
deleted file mode 100644
index 7649e6ec9..000000000
--- a/package/freeradius/ipkg/freeradius-mod-ldap.control
+++ /dev/null
@@ -1,5 +0,0 @@
-Package: freeradius-mod-ldap
-Priority: optional
-Section: net
-Description: an LDAP module for FreeRADIUS
-Depends: freeradius, libopenldap, libopenssl, libsasl2
diff --git a/package/freeradius/ipkg/freeradius-mod-mschap.control b/package/freeradius/ipkg/freeradius-mod-mschap.control
deleted file mode 100644
index 69edfd6f2..000000000
--- a/package/freeradius/ipkg/freeradius-mod-mschap.control
+++ /dev/null
@@ -1,5 +0,0 @@
-Package: freeradius-mod-mschap
-Priority: optional
-Section: net
-Description: an MS-CHAP and MS-CHAPv2 module for FreeRADIUS
-Depends: freeradius
diff --git a/package/freeradius/ipkg/freeradius-mod-pap.control b/package/freeradius/ipkg/freeradius-mod-pap.control
deleted file mode 100644
index e094b6a7c..000000000
--- a/package/freeradius/ipkg/freeradius-mod-pap.control
+++ /dev/null
@@ -1,5 +0,0 @@
-Package: freeradius-mod-pap
-Priority: optional
-Section: net
-Description: a PAP module for FreeRADIUS
-Depends: freeradius
diff --git a/package/freeradius/ipkg/freeradius-mod-preprocess.control b/package/freeradius/ipkg/freeradius-mod-preprocess.control
deleted file mode 100644
index 7adc171a4..000000000
--- a/package/freeradius/ipkg/freeradius-mod-preprocess.control
+++ /dev/null
@@ -1,5 +0,0 @@
-Package: freeradius-mod-preprocess
-Priority: optional
-Section: net
-Description: a request preprocessing module for FreeRADIUS
-Depends: freeradius
diff --git a/package/freeradius/ipkg/freeradius-mod-realm.control b/package/freeradius/ipkg/freeradius-mod-realm.control
deleted file mode 100644
index 3f84e3621..000000000
--- a/package/freeradius/ipkg/freeradius-mod-realm.control
+++ /dev/null
@@ -1,5 +0,0 @@
-Package: freeradius-mod-realm
-Priority: optional
-Section: net
-Description: a realm module for FreeRADIUS
-Depends: freeradius
diff --git a/package/freeradius/ipkg/freeradius-mod-sql-mysql.control b/package/freeradius/ipkg/freeradius-mod-sql-mysql.control
deleted file mode 100644
index 532cbd0e6..000000000
--- a/package/freeradius/ipkg/freeradius-mod-sql-mysql.control
+++ /dev/null
@@ -1,5 +0,0 @@
-Package: freeradius-mod-sql-mysql
-Priority: optional
-Section: net
-Description: a MySQL module for FreeRADIUS
-Depends: freeradius, freeradius-mod-sql, libmysqlclient
diff --git a/package/freeradius/ipkg/freeradius-mod-sql-pgsql.control b/package/freeradius/ipkg/freeradius-mod-sql-pgsql.control
deleted file mode 100644
index 31e308045..000000000
--- a/package/freeradius/ipkg/freeradius-mod-sql-pgsql.control
+++ /dev/null
@@ -1,5 +0,0 @@
-Package: freeradius-mod-sql-pgsql
-Priority: optional
-Section: net
-Description: a PostgreSQL module for FreeRADIUS
-Depends: freeradius, freeradius-mod-sql, libpq
diff --git a/package/freeradius/ipkg/freeradius-mod-sql.control b/package/freeradius/ipkg/freeradius-mod-sql.control
deleted file mode 100644
index e4040acb8..000000000
--- a/package/freeradius/ipkg/freeradius-mod-sql.control
+++ /dev/null
@@ -1,5 +0,0 @@
-Package: freeradius-mod-sql
-Priority: optional
-Section: net
-Description: an SQL module for FreeRADIUS
-Depends: freeradius
diff --git a/package/freeradius/ipkg/freeradius-utils.control b/package/freeradius/ipkg/freeradius-utils.control
deleted file mode 100644
index b29c94dd3..000000000
--- a/package/freeradius/ipkg/freeradius-utils.control
+++ /dev/null
@@ -1,5 +0,0 @@
-Package: freeradius-utils
-Priority: optional
-Section: net
-Description: some client utilities for FreeRADIUS
-Depends: freeradius
diff --git a/package/freeradius/ipkg/freeradius.control b/package/freeradius/ipkg/freeradius.control
deleted file mode 100644
index 329d329b1..000000000
--- a/package/freeradius/ipkg/freeradius.control
+++ /dev/null
@@ -1,5 +0,0 @@
-Package: freeradius
-Priority: optional
-Section: net
-Description: a flexible RADIUS server
-Depends: libltdl, libopenssl, libpthread