diff options
author | Alberto Gonzalez Iniesta <agi@inittab.org> | 2012-11-06 13:24:06 +0100 |
---|---|---|
committer | Alberto Gonzalez Iniesta <agi@inittab.org> | 2013-01-10 17:55:36 +0100 |
commit | 359d9e6afe16cdd4d2260c75b1913a0ff38a12c6 (patch) | |
tree | b92a9ef5b5be19a85c00e088762b228e7d77daf3 | |
parent | d44c69f98c6e28d6eda945a46161dca8823896ad (diff) |
Finish 2.3 adjustments
-rw-r--r-- | debian/NEWS | 8 | ||||
-rw-r--r-- | debian/changelog | 1 | ||||
-rwxr-xr-x | debian/rules | 3 |
3 files changed, 11 insertions, 1 deletions
diff --git a/debian/NEWS b/debian/NEWS index 493b7f2..420734d 100644 --- a/debian/NEWS +++ b/debian/NEWS @@ -1,3 +1,11 @@ +openvpn (2.3~rc1-1) experimental; urgency=low + + auth-pam and down-root plugins renamed to: + openvpn-plugin-auth-pam.so + openvpn-plugin-down-root.so + + -- Alberto Gonzalez Iniesta <agi@inittab.org> Tue, 06 Nov 2012 13:22:13 +0100 + openvpn (2.1~rc15-1) unstable; urgency=low The openvpn utility changed its handling of pkcs11 certificates when it diff --git a/debian/changelog b/debian/changelog index 228272a..e198cca 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ openvpn (2.3~rc1-1) experimental; urgency=low * Upload to experimental + * New upstream release with reworked build system -- Alberto Gonzalez Iniesta <agi@inittab.org> Mon, 05 Nov 2012 16:31:15 +0100 diff --git a/debian/rules b/debian/rules index 0a2fc75..33727ec 100755 --- a/debian/rules +++ b/debian/rules @@ -14,7 +14,7 @@ export DEB_BUILD_MAINT_OPTIONS = hardening=+all dh $@ override_dh_auto_configure: - dh_auto_configure -- $(shell dpkg-buildflags --export=configure) --enable-password-save --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --with-ifconfig-path=/sbin/ifconfig --with-route-path=$(ROUTE_PATH) --with-plugindir=\$${prefix}/lib/openvpn --includedir=\$${prefix}/include/openvpn --sampledir=\$${prefix}/share/doc/openvpn/examples + dh_auto_configure -- $(shell dpkg-buildflags --export=configure) --enable-password-save --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --with-ifconfig-path=/sbin/ifconfig --with-route-path=$(ROUTE_PATH) --with-plugindir=\$${prefix}/lib/openvpn --includedir=\$${prefix}/include/openvpn override_dh_auto_build: @@ -59,6 +59,7 @@ override_dh_installexamples: dh_installexamples ## remove windoze stuff rm -rf $(CURDIR)/debian/openvpn/usr/share/doc/openvpn/examples/easy-rsa/Windows + rm -rf $(CURDIR)/debian/openvpn/usr/share/doc/openvpn/sample # clean permissions to make lintian happy # chmod a-x $(CURDIR)/debian/openvpn/usr/share/doc/openvpn/examples/easy-rsa/2.0/vars # chmod a-x $(CURDIR)/debian/openvpn/usr/share/doc/openvpn/examples/easy-rsa/2.0/openssl-*.cnf |