summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkinori Hattori <hattya@gentoo.org>2017-08-01 22:27:56 +0900
committerAkinori Hattori <hattya@gentoo.org>2017-08-01 22:32:30 +0900
commit8b2c908cbdbbb8b42d78431ea1e437b7965a2ead (patch)
treed9a0869a6460a10bb6a7c2bf237dcecb01aca491 /app-i18n/unicode-emoji/unicode-emoji-5.0.ebuild
parentnet-misc/bridge-utils: Bump to version 1.6 (diff)
downloadgentoo-8b2c908cbdbbb8b42d78431ea1e437b7965a2ead.tar.gz
gentoo-8b2c908cbdbbb8b42d78431ea1e437b7965a2ead.tar.bz2
gentoo-8b2c908cbdbbb8b42d78431ea1e437b7965a2ead.zip
app-i18n/unicode-emoji: initial import
Package-Manager: Portage-2.3.6, Repoman-2.3.1
Diffstat (limited to 'app-i18n/unicode-emoji/unicode-emoji-5.0.ebuild')
-rw-r--r--app-i18n/unicode-emoji/unicode-emoji-5.0.ebuild32
1 files changed, 32 insertions, 0 deletions
diff --git a/app-i18n/unicode-emoji/unicode-emoji-5.0.ebuild b/app-i18n/unicode-emoji/unicode-emoji-5.0.ebuild
new file mode 100644
index 000000000000..2387d662d310
--- /dev/null
+++ b/app-i18n/unicode-emoji/unicode-emoji-5.0.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+DESCRIPTION="UTR #51 Unicode Emoji"
+HOMEPAGE="http://unicode.org/emoji"
+BASE_URI="http://${PN%-*}.org/Public/${PN/*-}/${PV}"
+SRC_URI="${BASE_URI}/${PN/*-}-data.txt -> ${PN}-data-${PV}.txt
+ ${BASE_URI}/${PN/*-}-sequences.txt -> ${PN}-sequences-${PV}.txt
+ ${BASE_URI}/${PN/*-}-test.txt -> ${PN}-test-${PV}.txt
+ ${BASE_URI}/${PN/*-}-variation-sequences.txt -> ${PN}-variation-sequences-${PV}.txt
+ ${BASE_URI}/${PN/*-}-zwj-sequences.txt -> ${PN}-zwj-sequences-${PV}.txt"
+
+LICENSE="unicode"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+S="${WORKDIR}"
+
+src_unpack() {
+ :
+}
+
+src_install() {
+ local a
+ insinto /usr/share/${PN/-//}
+ for a in ${A}; do
+ newins "${DISTDIR}"/${a} $(echo ${a} | sed "s/${PN%-*}-\(.*\)-${PV}/\1/")
+ done
+}