From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B5BC11381F3 for ; Wed, 24 Jul 2013 19:15:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 71791E09C0; Wed, 24 Jul 2013 19:15:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E9960E09D5 for ; Wed, 24 Jul 2013 19:15:17 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E427F33E865 for ; Wed, 24 Jul 2013 19:15:16 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 385C6E5458 for ; Wed, 24 Jul 2013 19:15:14 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1374693333.272a1ce1af544b23c1aefb97f802c1bb83cb76ae.sping@gentoo> Subject: [gentoo-commits] proj/betagarden:master commit in: x11-themes/MediterraneanNight/ X-VCS-Repository: proj/betagarden X-VCS-Files: x11-themes/MediterraneanNight/MediterraneanNight-2.03.ebuild X-VCS-Directories: x11-themes/MediterraneanNight/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 272a1ce1af544b23c1aefb97f802c1bb83cb76ae X-VCS-Branch: master Date: Wed, 24 Jul 2013 19:15:14 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: ae4987ee-d9e5-4502-b747-b3a6d8e9a9ec X-Archives-Hash: 8f40df25fedb2a87a3d95088a8b6ccdb commit: 272a1ce1af544b23c1aefb97f802c1bb83cb76ae Author: Sebastian Pipping pipping org> AuthorDate: Wed Jul 24 19:15:33 2013 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Wed Jul 24 19:15:33 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=272a1ce1 x11-themes/MediterraneanNight: 2.03 --- .../MediterraneanNight-2.03.ebuild | 42 ++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/x11-themes/MediterraneanNight/MediterraneanNight-2.03.ebuild b/x11-themes/MediterraneanNight/MediterraneanNight-2.03.ebuild new file mode 100644 index 0000000..86cc8fc --- /dev/null +++ b/x11-themes/MediterraneanNight/MediterraneanNight-2.03.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="4" + +DESCRIPTION="MediterraneanNight GTK 2/3 theme series" +HOMEPAGE="http://gnome-look.org/content/show.php/MediterraneanNight+Series?content=156782" +SRC_URI="https://dl.dropboxusercontent.com/u/80497678/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="gtk2 gtk3 linguas_es" + +DEPEND="" +RDEPEND="gtk2? ( x11-themes/murrine-themes ) + gtk3? ( >=x11-libs/gtk+-3.6:3 x11-themes/gtk-engines-unico )" + +S=${WORKDIR} + +src_prepare() { + rm Mediterranean*/xfwm4/{.gitignore,Makefile} || die + rm -R Mediterranean*/xfwm4/srcimg || die +} + +src_install() { + dodoc ${PN}/{change-log,readme}.txt + use linguas_es && dodoc ${PN}/leeme.txt + + local folders= + use gtk2 && folders+=" gtk-2.0 metacity-1 xfwm4" + use gtk3 && folders+=" gtk-3.0 unity" + + for i in Mediterranean* ; do + insinto /usr/share/themes/${i} + for j in ${folders} ; do + [[ -e ${i}/${j} ]] || continue + doins -r ${i}/${j} || die + done + done +}