diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2016-01-16 15:27:59 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2016-01-16 15:28:03 +0100 |
commit | 48ab8a653e890c49969f154821569c125aaf5c9b (patch) | |
tree | edf1c0b90a04d14d7d50c1ddda8b59e8e507ed83 /ubuntu/maverick/tdenetwork/debian/rules | |
parent | 23b8b87795eafc65f362f9d596fc7f935ef9a26f (diff) | |
download | tde-packaging-48ab8a653e890c49969f154821569c125aaf5c9b.tar.gz tde-packaging-48ab8a653e890c49969f154821569c125aaf5c9b.zip |
Install kppp-options into /etc instead of /opt/trinity/etc on Debian and Ubuntu
Default kppp-options moved from tde-packaging into tdenetwork
This resolves Bug 2529
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'ubuntu/maverick/tdenetwork/debian/rules')
-rwxr-xr-x | ubuntu/maverick/tdenetwork/debian/rules | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ubuntu/maverick/tdenetwork/debian/rules b/ubuntu/maverick/tdenetwork/debian/rules index b10997d3b..29888398b 100755 --- a/ubuntu/maverick/tdenetwork/debian/rules +++ b/ubuntu/maverick/tdenetwork/debian/rules @@ -30,7 +30,7 @@ DEB_CONFIGURE_EXTRA_FLAGS := --prefix=/opt/trinity --with-extra-libs=/opt/trinit DEB_CMAKE_EXTRA_FLAGS := \ -DCMAKE_INSTALL_PREFIX="/opt/trinity" \ -DCONFIG_INSTALL_DIR="/etc/trinity" \ - -DSYSCONF_INSTALL_DIR="/etc/trinity" \ + -DSYSCONF_INSTALL_DIR="/etc" \ -DXDG_MENU_INSTALL_DIR="/etc/xdg/menus" \ -DCMAKE_BUILD_TYPE=RelWithDebInfo \ -DCMAKE_VERBOSE_MAKEFILE="ON" \ @@ -54,11 +54,11 @@ PACKAGES_WITH_LIBS := librss1-trinity kopete-trinity ksirc-trinity kwifimanager- #$(foreach p,$(PACKAGES_WITH_LIBS),$(eval DEB_DH_MAKESHLIBS_ARGS_$(p) := -V'$(p) (>= $(shlibs_ver))')) DEB_FIXPERMS_EXCLUDE := opt/trinity/bin/kppp opt/trinity/bin/kppplogview \ - opt/trinity/etc/ppp/peers/kppp-options + etc/ppp/peers/kppp-options binary-install/kppp-trinity:: chown root:dip debian/kppp-trinity/opt/trinity/bin/kppp* - chown root:dip debian/kppp-trinity/opt/trinity/etc/ppp/peers/kppp-options + chown root:dip debian/kppp-trinity/etc/ppp/peers/kppp-options chmod 4754 debian/kppp-trinity/opt/trinity/bin/kppp chmod 0754 debian/kppp-trinity/opt/trinity/bin/kppplogview - chmod 0640 debian/kppp-trinity/opt/trinity/etc/ppp/peers/kppp-options + chmod 0640 debian/kppp-trinity/etc/ppp/peers/kppp-options |