summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMartin Väth <martin@mvath.de>2016-12-02 14:30:11 +0100
committerMartin Väth <martin@mvath.de>2016-12-02 14:30:11 +0100
commit343c54ef36bc4007506046ca0bfd9080e49564dd (patch)
tree0fb2ff49d221c14bad8856899d28dbafbf586e7b /eclass
parentPrepeare future eix ebuild (diff)
downloadmv-343c54ef36bc4007506046ca0bfd9080e49564dd.tar.gz
mv-343c54ef36bc4007506046ca0bfd9080e49564dd.tar.bz2
mv-343c54ef36bc4007506046ca0bfd9080e49564dd.zip
Remove data which remains in gentoo repository
Diffstat (limited to 'eclass')
-rw-r--r--eclass/ChangeLog3
-rw-r--r--eclass/stardict.eclass60
2 files changed, 3 insertions, 60 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog
index bfe6fa3f..db783c5f 100644
--- a/eclass/ChangeLog
+++ b/eclass/ChangeLog
@@ -49,3 +49,6 @@
29 Nov 2016; Martin Väth <martin@mvath.de>:
stardict.eclass: Add from main gentoo repository
+
+ 02 Dec 2016; Martin Väth <martin@mvath.de>:
+ stardict.eclass: Remove again since it stays in main gentoo repository
diff --git a/eclass/stardict.eclass b/eclass/stardict.eclass
deleted file mode 100644
index 1e1156c2..00000000
--- a/eclass/stardict.eclass
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-# Author : Alastair Tse <liquidx@gentoo.org>
-#
-# Convienence class to do stardict dictionary installations.
-#
-# Usage:
-# - Variables to set :
-# * FROM_LANG - From this language
-# * TO_LANG - To this language
-# * DICT_PREFIX - SRC_URI prefix, like "dictd_www.mova.org_"
-# * DICT_SUFFIX - SRC_URI after the prefix.
-
-RESTRICT="strip"
-
-[ -n "${DICT_SUFFIX}" ] || DICT_SUFFIX=${PN#stardict-[[:lower:]]*-}
-[ -n "${DICT_P}" ] || DICT_P=stardict-${DICT_PREFIX}${DICT_SUFFIX}-${PV}
-
-if [ -n "${FROM_LANG:++}" ] && [ -n "${TO_LANG:++}" ]
-then DESCRIPTION="Stardict Dictionary ${FROM_LANG} to ${TO_LANG}"
-else DESCRIPTION="Another Stardict Dictionary"
-fi
-
-HOMEPAGE="http://stardict.sourceforge.net/"
-SRC_URI="mirror://sourceforge/stardict/${DICT_P}.tar.bz2"
-
-IUSE="gzip"
-SLOT="0"
-LICENSE="GPL-2"
-
-DEPEND="|| ( >=app-text/stardict-2.4.2
- app-text/sdcv
- app-text/goldendict
-)
-gzip? ( app-arch/gzip
- app-text/dictd
-)"
-
-S=${WORKDIR}/${DICT_P}
-
-stardict_src_compile() {
- if use gzip
- then for file in *.idx
- do test -f "$file" && gzip "$file"
- done
- for file in *.dict
- do test -f "$file" && dictzip "$file"
- done
- fi
-}
-
-stardict_src_install() {
- insinto /usr/share/stardict/dic
- doins *.dict.dz*
- doins *.idx*
- doins *.ifo
-}
-
-EXPORT_FUNCTIONS src_compile src_install