From eb10ac0e97c1e5e98ce73a1966c97a7cedb9d086 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Tue, 1 Dec 2009 19:40:13 +0100 Subject: use pkill for startup scripts - seems to solve the issue, that the same init script get killed otherwise - fine tune dansguardian, squid and iptables package - add default firewall config file (from freewrt) - add an example for transparent proxy via an ethernet bridge --- package/pptpd/files/pptpd.init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'package/pptpd') diff --git a/package/pptpd/files/pptpd.init b/package/pptpd/files/pptpd.init index f4f37613f..e26b1f072 100644 --- a/package/pptpd/files/pptpd.init +++ b/package/pptpd/files/pptpd.init @@ -14,7 +14,7 @@ start) pptpd ;; stop) - killall pptpd + pkill pptpd ;; restart) sh $0 stop -- cgit v1.2.3 From ce621815fecece2b4d8a4cb7115eb82c1cb7ed44 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Wed, 23 Dec 2009 11:37:42 +0100 Subject: remove and ignore autogenerated Config.in files --- package/pptpd/Config.in | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 package/pptpd/Config.in (limited to 'package/pptpd') diff --git a/package/pptpd/Config.in b/package/pptpd/Config.in deleted file mode 100644 index 7f1144f1b..000000000 --- a/package/pptpd/Config.in +++ /dev/null @@ -1,11 +0,0 @@ -config ADK_PACKAGE_PPTPD - prompt "pptpd............................. PPTP (Point-to-Point Tunneling Protocol) server" - tristate - default n - select ADK_KPACKAGE_KMOD_NET_IPGRE - select ADK_PACKAGE_PPP - help - A Point-to-Point Tunneling Protocol server - - http://poptop.sourceforge.net/ - -- cgit v1.2.3 From 9de04cb9c83bc0a8d957f6bd052f3b650bbdf39a Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Wed, 30 Dec 2009 00:56:39 +0100 Subject: fix automatic kmod dependency handling It is required that kmod package names are directly useable in uppercase for automatic dependency handling. Fix all package names in mk/modules.mk. --- package/pptpd/Makefile | 1 - 1 file changed, 1 deletion(-) (limited to 'package/pptpd') diff --git a/package/pptpd/Makefile b/package/pptpd/Makefile index 0a5a10b87..463c2ac5c 100644 --- a/package/pptpd/Makefile +++ b/package/pptpd/Makefile @@ -24,7 +24,6 @@ TCFLAGS+= -DSBINDIR=\\\"/usr/sbin\\\" FAKE_FLAGS+= INSTALL="install" post-install: - ${INSTALL_DIR} ${IDIR_PPTPD}/etc ${INSTALL_DIR} ${IDIR_PPTPD}/etc/ppp ${INSTALL_DIR} ${IDIR_PPTPD}/usr/sbin ${INSTALL_DATA} ./files/pptpd.conf ${IDIR_PPTPD}/etc/ -- cgit v1.2.3 From 6daa792eab1488d013fefc5eb7e4d01f40f38687 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Sun, 7 Feb 2010 20:03:20 +0100 Subject: change defaults for CONFIG/BUILD/INSTALL styles All packages need an update, so here is a very huge commit. Most of the 460 source packages use automatic style for configuration, building and installing. Make these styles default to "auto". If you have a package, which does not conform to this, just use manual style and add a do-$task make target. I added a new style named AUTOTOOL style, which is needed for some broken packages, which needs to be updated via autoconf or automake. I renamed CONFIGURE_STYLE to CONFIG_STYLE. Updates for some packages, which have newer upstream versions. Renaming of all package/*/extra directories. Use the directory src/ to provide overwrites of source files or to add the code, when no upstream package is available or used. src directory will be automatically used. --- package/pptpd/Makefile | 3 --- 1 file changed, 3 deletions(-) (limited to 'package/pptpd') diff --git a/package/pptpd/Makefile b/package/pptpd/Makefile index 463c2ac5c..01e1147c0 100644 --- a/package/pptpd/Makefile +++ b/package/pptpd/Makefile @@ -17,9 +17,6 @@ include ${TOPDIR}/mk/package.mk $(eval $(call PKG_template,PPTPD,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) -CONFIGURE_STYLE:= gnu -BUILD_STYLE:= auto -INSTALL_STYLE:= auto TCFLAGS+= -DSBINDIR=\\\"/usr/sbin\\\" FAKE_FLAGS+= INSTALL="install" -- cgit v1.2.3