diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2017-01-03 16:09:29 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2017-01-03 16:09:29 +0000 |
commit | f0cd84a623f982bf08824ff154b80dfc7da16c75 (patch) | |
tree | e4e891b7e452c99b9ff97620bf633f72202abc96 | |
parent | a53b907d357eed428851596f8ff2088e111f27b7 (diff) |
add faba+moka icon themes
-rw-r--r-- | x11-themes/faba-icon-theme/Manifest | 1 | ||||
-rw-r--r-- | x11-themes/faba-icon-theme/faba-icon-theme-4.1.2.ebuild | 47 | ||||
-rw-r--r-- | x11-themes/moka-icon-theme/Manifest | 1 | ||||
-rw-r--r-- | x11-themes/moka-icon-theme/moka-icon-theme-5.3.5.ebuild | 40 |
4 files changed, 89 insertions, 0 deletions
diff --git a/x11-themes/faba-icon-theme/Manifest b/x11-themes/faba-icon-theme/Manifest new file mode 100644 index 00000000..0b2d577f --- /dev/null +++ b/x11-themes/faba-icon-theme/Manifest @@ -0,0 +1 @@ +DIST faba-icon-theme-4.1.2.tar.gz 1356232 SHA256 c7af0409846af799e15910257021a9c898167f4fddec6161b4ceab230c6d2242 SHA512 fd11e0aa1ab3e57ec2bde29a493dd58922759080291e7bd91b53d1395984a33e1e82da606d8e08fd8ce16e82f3709e90b12e5592261e2e450ad54d2a43d49fe4 WHIRLPOOL 4adfd21a3f63e3b2eed0f86f564e03b817157bed79655cf51f6c1b323e996aa3d80f713b62b39709a9ad6edf3bab9a1a1afa45f5a81a16dfc908c51ba867dc97 diff --git a/x11-themes/faba-icon-theme/faba-icon-theme-4.1.2.ebuild b/x11-themes/faba-icon-theme/faba-icon-theme-4.1.2.ebuild new file mode 100644 index 00000000..a2153a28 --- /dev/null +++ b/x11-themes/faba-icon-theme/faba-icon-theme-4.1.2.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=6 + +inherit eutils autotools + +DESCRIPTION="Faba is a sexy and modern icon theme with Tango influences." +HOMEPAGE="http://snwh.org" +if [[ ${PV} == *9999* ]];then + inherit git-r3 + SRC_URI="" + EGIT_REPO_URI="https://github.com/moka-project/faba-icon-theme.git" + KEYWORDS="" +else + SRC_URI="https://github.com/moka-project/faba-icon-theme/archive/v${PV}/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="amd64 x86" + RESTRICT="mirror" +fi + +LICENSE="LGPL-3.0" +SLOT="0" + +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_prepare(){ + eapply_user + eautoreconf +} + +src_compile(){ + emake DESTDIR="${D}" || die +} + +src_install(){ + emake DESTDIR="${D}" install || die +} + +pkg_postinst(){ + elog "Hi! Thanks for prefering Faba Icons." + elog "If you want to use some other variants, such as Moka, " + elog "please, install this theme first. Thanks." +} diff --git a/x11-themes/moka-icon-theme/Manifest b/x11-themes/moka-icon-theme/Manifest new file mode 100644 index 00000000..0680907b --- /dev/null +++ b/x11-themes/moka-icon-theme/Manifest @@ -0,0 +1 @@ +DIST moka-icon-theme-5.3.5.tar.gz 68250053 SHA256 91d1d702501fca85b7c8dedbc690884d697e482b732cd3801febd5f7c0525918 SHA512 81be63f0fe4b47eb70ca63681b40053c8facb7277d5df34212592a1fc7c349679508551e6ff67123127d372e88f61062ce59dd9c8ed6aaa02b49ef9e884e2b07 WHIRLPOOL 93cdf4f4fafb3d8bb64526b13ab5241608380dd0f1630eace5f6403fa8276c27c883c7ffc4967b5a06708a0ddc1c040cafa6c4b80544fe51291f6f6b3d1e7da4 diff --git a/x11-themes/moka-icon-theme/moka-icon-theme-5.3.5.ebuild b/x11-themes/moka-icon-theme/moka-icon-theme-5.3.5.ebuild new file mode 100644 index 00000000..318b1efa --- /dev/null +++ b/x11-themes/moka-icon-theme/moka-icon-theme-5.3.5.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=6 + +inherit eutils autotools + +DESCRIPTION="Moka is a stylized Linux desktop icon set, and the titular icon theme of the Moka Project. They are designed to be clear, simple and consistent." +HOMEPAGE="http://snwh.org" +if [[ ${PV} == *9999* ]];then + inherit git-r3 + SRC_URI="" + EGIT_REPO_URI="https://github.com/moka-project/moka-icon-theme.git" + KEYWORDS="" +else + SRC_URI="https://github.com/moka-project/moka-icon-theme/archive/v${PV}/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="amd64 x86" + RESTRICT="mirror" +fi + +LICENSE="LGPL-3.0" +SLOT="0" +IUSE="" + +DEPEND="x11-themes/faba-icon-theme" +RDEPEND="${DEPEND}" + +src_prepare(){ + eapply_user + eautoreconf +} + +src_compile(){ + emake DESTDIR="${D}" || die +} + +src_install(){ + emake DESTDIR="${D}" install || die +} |