diff options
author | Kevin F. Quinn <kevquinn@gentoo.org> | 2007-03-26 06:49:29 +0000 |
---|---|---|
committer | Kevin F. Quinn <kevquinn@gentoo.org> | 2007-03-26 06:49:29 +0000 |
commit | eccfab7256eb9a65f38b018c60b5c8750e80d470 (patch) | |
tree | ec6cab5d9308bfb0feca253998df034087290358 /app-dicts/stardict | |
parent | Added ~x86 keyword. Bug #172259 (diff) | |
download | gentoo-2-eccfab7256eb9a65f38b018c60b5c8750e80d470.tar.gz gentoo-2-eccfab7256eb9a65f38b018c60b5c8750e80d470.tar.bz2 gentoo-2-eccfab7256eb9a65f38b018c60b5c8750e80d470.zip |
Remove insecure legacy script from files/ - bug #159543
(Portage version: 2.1.2.2)
Diffstat (limited to 'app-dicts/stardict')
-rw-r--r-- | app-dicts/stardict/ChangeLog | 6 | ||||
-rw-r--r-- | app-dicts/stardict/files/stardict-config.sh | 38 |
2 files changed, 5 insertions, 39 deletions
diff --git a/app-dicts/stardict/ChangeLog b/app-dicts/stardict/ChangeLog index 42a50fc8ec20..3b10ced6b199 100644 --- a/app-dicts/stardict/ChangeLog +++ b/app-dicts/stardict/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-dicts/stardict # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/stardict/ChangeLog,v 1.33 2007/03/22 15:16:07 matsuu Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-dicts/stardict/ChangeLog,v 1.34 2007/03/26 06:49:29 kevquinn Exp $ + + 26 Mar 2007; Kevin F. Quinn <kevquinn@gentoo.org> + -files/stardict-config.sh: + Remove insecure legacy script from files/ - bug #159543 22 Mar 2007; MATSUU Takuto <matsuu@gentoo.org> stardict-2.4.6-r1.ebuild, stardict-2.4.8.ebuild: diff --git a/app-dicts/stardict/files/stardict-config.sh b/app-dicts/stardict/files/stardict-config.sh deleted file mode 100644 index 6fe07a16c665..000000000000 --- a/app-dicts/stardict/files/stardict-config.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash -Big5 () { - - cat /usr/share/stardict/hzfont/fonts.dir | \ - sed "s/hz16.pcf/hz16ft.pcf/" > /tmp/fonts.dir - cp /tmp/fonts.dir /usr/share/stardict/hzfont/fonts.dir - xset fp rehash -} - -GB () { - xset fp rehash -} - -echo -echo -echo "This is a Chinese / Englist dict for Big5 or GB" -echo -echo - -echo -n "Please chose character-set big5 or gb [big5/gb] : " -read code - -case $code in - big5 ) - echo "Seting for big5" - Big5 - ;; - - gb ) - echo "Seting for gb" - GB - ;; - - *) - echo "Seting for big5" - Big5 - ;; -esac |