diff options
author | Alastair Tse <liquidx@gentoo.org> | 2003-06-04 13:46:08 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2003-06-04 13:46:08 +0000 |
commit | ad2ee563b63e9a6c7a7f59fd8f342bffeba8f7a8 (patch) | |
tree | 166e17cf421d90489ea37dcf2dcfdf0c78230230 /app-dicts/stardict | |
parent | incoming stardict dictionaries for stardict 2.2.0 (diff) | |
download | gentoo-2-ad2ee563b63e9a6c7a7f59fd8f342bffeba8f7a8.tar.gz gentoo-2-ad2ee563b63e9a6c7a7f59fd8f342bffeba8f7a8.tar.bz2 gentoo-2-ad2ee563b63e9a6c7a7f59fd8f342bffeba8f7a8.zip |
new stardict version! yum!
Diffstat (limited to 'app-dicts/stardict')
-rw-r--r-- | app-dicts/stardict/ChangeLog | 8 | ||||
-rw-r--r-- | app-dicts/stardict/Manifest | 4 | ||||
-rw-r--r-- | app-dicts/stardict/files/digest-stardict-2.2.0 | 1 | ||||
-rw-r--r-- | app-dicts/stardict/stardict-2.2.0.ebuild | 42 |
4 files changed, 53 insertions, 2 deletions
diff --git a/app-dicts/stardict/ChangeLog b/app-dicts/stardict/ChangeLog index 156938f3c71b..8f95b34ef250 100644 --- a/app-dicts/stardict/ChangeLog +++ b/app-dicts/stardict/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-dicts/stardict # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/stardict/ChangeLog,v 1.6 2003/05/21 08:25:01 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-dicts/stardict/ChangeLog,v 1.7 2003/06/04 13:46:00 liquidx Exp $ + +*stardict-2.2.0 (04 Jun 2003) + + 04 Jun 2003; Alastair Tse <liquidx@gentoo.org> stardict-2.2.0.ebuild: + version bump. dictionary files are now distributed seperately. you must + install them by merging the appropriate ones named app-dicts/stardict-* 21 May 2003; Alastair Tse <liquidx@gentoo.org> stardict-1.3.ebuild, stardict-1.3.ebuild, stardict-2.0.0.ebuild, stardict-2.0.0_pre2.ebuild, diff --git a/app-dicts/stardict/Manifest b/app-dicts/stardict/Manifest index 4a3f50588c0c..d1391ecf77eb 100644 --- a/app-dicts/stardict/Manifest +++ b/app-dicts/stardict/Manifest @@ -1,5 +1,7 @@ -MD5 6c180ecc2cffb67e511681cf02e75585 ChangeLog 1252 +MD5 3dc06e5a84b870385aac34ee51e54cb3 ChangeLog 1504 +MD5 8e8b4088f874a598c02f025a5a2d650c stardict-2.2.0.ebuild 1209 MD5 e6135cced80802a7c5ea9039b395fa43 stardict-2.0.0.ebuild 741 MD5 b41107d5daeb5414fa21b3f9905e105c files/stardict-config.sh 565 MD5 40e8df6800d5f7bf138a3a6692854a56 files/stardict-gentoo.patch 547 MD5 373d2056aab691372d01a805d9fc0743 files/digest-stardict-2.0.0 66 +MD5 e8b3f99539f4c4b2b27c9efcfc794a4b files/digest-stardict-2.2.0 67 diff --git a/app-dicts/stardict/files/digest-stardict-2.2.0 b/app-dicts/stardict/files/digest-stardict-2.2.0 new file mode 100644 index 000000000000..eb2f03305b9e --- /dev/null +++ b/app-dicts/stardict/files/digest-stardict-2.2.0 @@ -0,0 +1 @@ +MD5 0a8e7f6ca31afabde59db8c4094253e1 stardict-2.2.0.tar.bz2 619927 diff --git a/app-dicts/stardict/stardict-2.2.0.ebuild b/app-dicts/stardict/stardict-2.2.0.ebuild new file mode 100644 index 000000000000..fd50938c619e --- /dev/null +++ b/app-dicts/stardict/stardict-2.2.0.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-dicts/stardict/stardict-2.2.0.ebuild,v 1.1 2003/06/04 13:46:00 liquidx Exp $ + +inherit gnome2 + +# NOTE: Even though the *.dict.dz are the same as dictd/freedict's files, +# their indexes seem to be in a different format. So we'll keep them +# seperate for now. + +IUSE="" +S=${WORKDIR}/${P} +DESCRIPTION="A GNOME2 international dictionary supporting fuzzy and glob style matching" +HOMEPAGE="http://stardict.sourceforge.net/ http://cosoft.org.cn/projects/stardict/" +SRC_URI="mirror://sourceforge/stardict/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +# when adding keywords, remember to add to stardict.eclass +KEYWORDS="~x86" + + +DEPEND=">=gnome-base/libbonobo-2.2.0 + >=gnome-base/libgnome-2.2.0 + >=gnome-base/libgnomeui-2.2.0 + >=gnome-base/bonobo-activation-2.2.0 + >=sys-libs/zlib-1.1.4 + >=gnome-base/gconf-1.2 + >=dev-libs/popt-1.7 + >=gnome-base/ORBit2-2.7" + +src_unpack() { + unpack ${A} + gnome2_omf_fix +} + +pkg_postinst() { + einfo "You will now need to install stardict dictionary files. If" + einfo "you have not, do :" + echo + einfo " emerge -s stardict-" +} |