diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2016-10-07 20:59:12 +0200 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2016-10-07 21:58:33 +0200 |
commit | a5849b0e468c1f80a33d1dec8a4f8ffcaa2d6b61 (patch) | |
tree | dd0588aede3d064325db5e5f4d485ae3d1ba15bd /net-misc/icaclient | |
parent | net-p2p/transmission: remove old (diff) | |
download | gentoo-a5849b0e468c1f80a33d1dec8a4f8ffcaa2d6b61.tar.gz gentoo-a5849b0e468c1f80a33d1dec8a4f8ffcaa2d6b61.tar.bz2 gentoo-a5849b0e468c1f80a33d1dec8a4f8ffcaa2d6b61.zip |
net-misc/icaclient: Revbump to add a couple of fixes.
Package-Manager: portage-2.3.1
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'net-misc/icaclient')
-rw-r--r-- | net-misc/icaclient/icaclient-13.4.0.10109380-r1.ebuild (renamed from net-misc/icaclient/icaclient-13.4.0.10109380.ebuild) | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/net-misc/icaclient/icaclient-13.4.0.10109380.ebuild b/net-misc/icaclient/icaclient-13.4.0.10109380-r1.ebuild index ffbfc59a8ba3..c76f4971c179 100644 --- a/net-misc/icaclient/icaclient-13.4.0.10109380.ebuild +++ b/net-misc/icaclient/icaclient-13.4.0.10109380-r1.ebuild @@ -15,7 +15,7 @@ LICENSE="icaclient" SLOT="0" KEYWORDS="-* ~amd64 ~x86" IUSE="nsplugin linguas_de linguas_es linguas_fr linguas_ja linguas_zh_CN" -RESTRICT="mirror strip fetch" +RESTRICT="mirror strip userpriv fetch" ICAROOT="/opt/Citrix/ICAClient" @@ -83,6 +83,8 @@ src_unpack() { } src_install() { + local tmpl + dodir "${ICAROOT}" exeinto "${ICAROOT}" @@ -99,12 +101,17 @@ src_install() { insinto "${ICAROOT}" doins nls/en.UTF-8/eula.txt + doins -r usb insinto "${ICAROOT}"/nls/en doins nls/en.UTF-8/eula.txt insinto "${ICAROOT}"/config doins config/* config/.* nls/en/*.ini + for tmpl in {appsrv,wfclient}.template ; do + newins nls/en/${tmpl} ${tmpl/template/ini} + done + touch "${ED}/${ICAROOT}"/config/.server || die insinto "${ICAROOT}"/gtk doins gtk/* @@ -139,6 +146,12 @@ src_install() { insinto "${ICAROOT}"/nls/${lang} dosym UTF-8 "${ICAROOT}"/nls/${lang}/utf8 + + for tmpl in {appsrv,wfclient}.template ; do + cp "${ED}/${ICAROOT}"/nls/${lang}/${tmpl} \ + "${ED}/${ICAROOT}"/nls/${lang}/${tmpl/template/ini} \ + || die + done done insinto "${ICAROOT}"/nls |