diff options
author | Alex Legler <a3li@gentoo.org> | 2009-08-16 11:45:49 +0000 |
---|---|---|
committer | Alex Legler <a3li@gentoo.org> | 2009-08-16 11:45:49 +0000 |
commit | 159510e379989ee7c10eb529a83564edc289a286 (patch) | |
tree | 57675ddec713b35fb9191c16980b6ac93cd8f756 | |
parent | old (diff) | |
download | gentoo-2-159510e379989ee7c10eb529a83564edc289a286.tar.gz gentoo-2-159510e379989ee7c10eb529a83564edc289a286.tar.bz2 gentoo-2-159510e379989ee7c10eb529a83564edc289a286.zip |
Initial commit. Thanks to Dan Murphy <dc.murphy@utoronto.ca> and John G. <giageo@gmail.com> for their ebuilds in bug 260572.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
-rw-r--r-- | x11-themes/gtk-engines-nodoka/ChangeLog | 11 | ||||
-rw-r--r-- | x11-themes/gtk-engines-nodoka/gtk-engines-nodoka-0.7.2.ebuild | 34 | ||||
-rw-r--r-- | x11-themes/gtk-engines-nodoka/metadata.xml | 12 |
3 files changed, 57 insertions, 0 deletions
diff --git a/x11-themes/gtk-engines-nodoka/ChangeLog b/x11-themes/gtk-engines-nodoka/ChangeLog new file mode 100644 index 000000000000..f230fb980789 --- /dev/null +++ b/x11-themes/gtk-engines-nodoka/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for x11-themes/gtk-engines-nodoka +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-themes/gtk-engines-nodoka/ChangeLog,v 1.1 2009/08/16 11:45:49 a3li Exp $ + +*gtk-engines-nodoka-0.7.2 (16 Aug 2009) + + 16 Aug 2009; Alex Legler <a3li@gentoo.org> + +gtk-engines-nodoka-0.7.2.ebuild, +metadata.xml: + Initial commit. Thanks for Dan Murphy <dc.murphy@utoronto.ca> and John G. + <giageo@gmail.com> for their ebuilds in bug 260572. + diff --git a/x11-themes/gtk-engines-nodoka/gtk-engines-nodoka-0.7.2.ebuild b/x11-themes/gtk-engines-nodoka/gtk-engines-nodoka-0.7.2.ebuild new file mode 100644 index 000000000000..f97ee8248adc --- /dev/null +++ b/x11-themes/gtk-engines-nodoka/gtk-engines-nodoka-0.7.2.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-themes/gtk-engines-nodoka/gtk-engines-nodoka-0.7.2.ebuild,v 1.1 2009/08/16 11:45:49 a3li Exp $ + +MY_P="gtk-nodoka-engine-${PV}" + +DESCRIPTION="GTK+ engine and themes developed by the Fedora Project" +HOMEPAGE="https://fedorahosted.org/nodoka/" +SRC_URI="https://fedorahosted.org/releases/n/o/nodoka/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="animation-rtl" + +RDEPEND=">=x11-libs/gtk+-2.8.0" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +S="${WORKDIR}/${MY_P}" + +src_compile() { + econf \ + --disable-dependency-tracking \ + --enable-animation \ + $(use_enable animation-rtl animationtoleft) + + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "install failed" + dodoc AUTHORS CREDITS ChangeLog NEWS README TODO || die "dodoc failed" +} diff --git a/x11-themes/gtk-engines-nodoka/metadata.xml b/x11-themes/gtk-engines-nodoka/metadata.xml new file mode 100644 index 000000000000..4ec31504d0f9 --- /dev/null +++ b/x11-themes/gtk-engines-nodoka/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>no-herd</herd> + <maintainer> + <email>a3li@gentoo.org</email> + <name>Alex Legler</name> + </maintainer> + <use> + <flag name="animation-rtl">Progressbar animation from right to left</flag> + </use> +</pkgmetadata> |