diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2008-05-02 15:41:33 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2008-05-02 15:41:33 +0000 |
commit | 4e2ce9f57986e33fabb83c302d9ba15c66ed7b7e (patch) | |
tree | beb204dafdeed3e3f78d33b940acc21d6c3796bd /app-i18n/scim-wijesekera | |
parent | stable x86, bug 219332 (diff) | |
download | gentoo-2-4e2ce9f57986e33fabb83c302d9ba15c66ed7b7e.tar.gz gentoo-2-4e2ce9f57986e33fabb83c302d9ba15c66ed7b7e.tar.bz2 gentoo-2-4e2ce9f57986e33fabb83c302d9ba15c66ed7b7e.zip |
Initial import, bug #217558.
(Portage version: 2.1.5_rc6)
Diffstat (limited to 'app-i18n/scim-wijesekera')
-rw-r--r-- | app-i18n/scim-wijesekera/ChangeLog | 10 | ||||
-rw-r--r-- | app-i18n/scim-wijesekera/Manifest | 4 | ||||
-rw-r--r-- | app-i18n/scim-wijesekera/metadata.xml | 6 | ||||
-rw-r--r-- | app-i18n/scim-wijesekera/scim-wijesekera-0.3.3.ebuild | 28 |
4 files changed, 48 insertions, 0 deletions
diff --git a/app-i18n/scim-wijesekera/ChangeLog b/app-i18n/scim-wijesekera/ChangeLog new file mode 100644 index 000000000000..6fc1717fc712 --- /dev/null +++ b/app-i18n/scim-wijesekera/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for app-i18n/scim-wijesekera +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-wijesekera/ChangeLog,v 1.1 2008/05/02 15:41:33 matsuu Exp $ + +*scim-wijesekera-0.3.3 (02 May 2008) + + 02 May 2008; MATSUU Takuto <matsuu@gentoo.org> +metadata.xml, + +scim-wijesekera-0.3.3.ebuild: + Initial import, bug #217558. + diff --git a/app-i18n/scim-wijesekera/Manifest b/app-i18n/scim-wijesekera/Manifest new file mode 100644 index 000000000000..5922ddc82f61 --- /dev/null +++ b/app-i18n/scim-wijesekera/Manifest @@ -0,0 +1,4 @@ +DIST scim-wijesekera-0.3.3.tar.gz 193023 RMD160 b5ee7eec72a8b909a6428472603a0253da52c71d SHA1 69459840c894247968c462b61fd1249c1af66dc0 SHA256 2f759889801645eadc15aacb0e7e0219823859e3166e48bb929b39fb6c43bc5b +EBUILD scim-wijesekera-0.3.3.ebuild 567 RMD160 ad8dd50100b4bd25558c22c04bc99451295c3441 SHA1 c3bd621fe17898dc0c22446fa24bea2cea334572 SHA256 a5ec599e87da567fb38368d108944b7324a7939a03b7a867990a0e5622ac617f +MISC ChangeLog 292 RMD160 3ccbdf34625f4fc222bda947d717aec9249ad73e SHA1 4554cba1c0ae67d7ce9b2b427226f1031559c8c5 SHA256 9617854a8e4c950bc68bb89c97a4ccf2f29205e17c851986dad4265be8f99399 +MISC metadata.xml 157 RMD160 97adcce791d5b0e94b3844a1e27e00be60378454 SHA1 e11f0d9b1f8c57c4f50e453a89d2e61cf737329a SHA256 92a8379a3f1d8c9e52e17dbaf224721ad5bd6ba9fba4302e909aa2b099b33f89 diff --git a/app-i18n/scim-wijesekera/metadata.xml b/app-i18n/scim-wijesekera/metadata.xml new file mode 100644 index 000000000000..51689f0cbcb5 --- /dev/null +++ b/app-i18n/scim-wijesekera/metadata.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>cjk</herd> +</pkgmetadata> + diff --git a/app-i18n/scim-wijesekera/scim-wijesekera-0.3.3.ebuild b/app-i18n/scim-wijesekera/scim-wijesekera-0.3.3.ebuild new file mode 100644 index 000000000000..2047e1e3bb7f --- /dev/null +++ b/app-i18n/scim-wijesekera/scim-wijesekera-0.3.3.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-wijesekera/scim-wijesekera-0.3.3.ebuild,v 1.1 2008/05/02 15:41:33 matsuu Exp $ + +inherit autotools + +DESCRIPTION="Wijesekara keyboard for Sinhala input using scim" +HOMEPAGE="http://sinhala.sourceforge.net/" +SRC_URI="http://sinhala.sourceforge.net/files/${P}.tar.gz" +LICENSE="GPL-3" +SLOT="0" + +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=">=app-i18n/scim-0.99.8" + +src_unpack() { + unpack ${A} + cd "${S}" + eautoreconf +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + + dodoc AUTHORS ChangeLog NEWS README +} |