]> Pileus Git - ~andy/sunrise/commitdiff
media-gfx/tintii: New Ebuild for bug 349308. Thanks to Tommy and c1pher.
authorChristophe LEFEBVRE (chtof) <chtof62@gmail.com>
Tue, 21 Dec 2010 21:15:39 +0000 (21:15 +0000)
committerChristophe LEFEBVRE (chtof) <chtof62@gmail.com>
Tue, 21 Dec 2010 21:15:39 +0000 (21:15 +0000)
svn path=/sunrise/; revision=11633

media-gfx/tintii/ChangeLog [new file with mode: 0644]
media-gfx/tintii/Manifest [new file with mode: 0644]
media-gfx/tintii/metadata.xml [new file with mode: 0644]
media-gfx/tintii/tintii-2.4.0.ebuild [new file with mode: 0644]

diff --git a/media-gfx/tintii/ChangeLog b/media-gfx/tintii/ChangeLog
new file mode 100644 (file)
index 0000000..aac3241
--- /dev/null
@@ -0,0 +1,12 @@
+# ChangeLog for media-gfx/tintii
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+  21 Dec 2010; Christophe LEFEBVRE (chtof) <chtof62@gmail.com>
+  +tintii-2.4.0.ebuild, +metadata.xml:
+  New Ebuild for bug 349308. Thanks to Tommy and c1pher.
+
+  21 Dec 2010; Christophe LEFEBVRE (chtof) <chtof62@gmail.com>
+  +tintii-2.4.0.ebuild, +metadata.xml:
+  New Ebuild for bug 349308. Thanks to Tommy and c1pher.
+
diff --git a/media-gfx/tintii/Manifest b/media-gfx/tintii/Manifest
new file mode 100644 (file)
index 0000000..df12f20
--- /dev/null
@@ -0,0 +1,4 @@
+DIST tintii-2.4.0.tar.gz 319838 RMD160 b49ea9f636ac0e6de8ced5856f9f9ec26ecb77c6 SHA1 7e34b32de6555a3fe8223b67e4b0536de9b5d70f SHA256 df2f57ae049b1b3c7e3653cc0f85347bc5e682c72fe8d89ab13c183da0836872
+EBUILD tintii-2.4.0.ebuild 698 RMD160 0b4d7769a6b880425c0db577c6eeecc3724cfd5f SHA1 9f068bcc20ae567dee4d2eb37ef5acb10d1f3764 SHA256 25c684c99376b8d51e4f04500d78334a941156473b7c2e96aacc634c2c27824a
+MISC ChangeLog 437 RMD160 defec3c5825b918ce0851404d502b0184462381d SHA1 358b924fceeb091a0600d366e109d10eaadaa721 SHA256 9c9a195c8dcde29e5d7784b20113ca84ec514e4b954183416c1ed4725bcde2c4
+MISC metadata.xml 231 RMD160 6aebfea93d789d2b96ea6d8259dc842dd1fdacd3 SHA1 e10a04c4c18a66af326abc1f40c61b28cc610fae SHA256 48054ea190d00518c1e035fc6663b2368854cdea5ff69a94830e4f9a38260987
diff --git a/media-gfx/tintii/metadata.xml b/media-gfx/tintii/metadata.xml
new file mode 100644 (file)
index 0000000..c6be580
--- /dev/null
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+       <herd>no-herd</herd>
+       <maintainer><email>maintainer-wanted@gentoo.org</email></maintainer>
+</pkgmetadata>
diff --git a/media-gfx/tintii/tintii-2.4.0.ebuild b/media-gfx/tintii/tintii-2.4.0.ebuild
new file mode 100644 (file)
index 0000000..23021cb
--- /dev/null
@@ -0,0 +1,39 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=2
+WX_GTK_VER="2.9"
+
+inherit scons-utils wxwidgets
+
+DESCRIPTION="Photo filter, striking colour pops in seconds"
+HOMEPAGE="http://www.indii.org/software/tintii"
+SRC_URI="mirror://sourceforge/tint/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc"
+
+RDEPEND="x11-libs/wxGTK:${WX_GTK_VER}[X]"
+DEPEND="${RDEPEND}
+       dev-libs/boost
+       doc? ( app-doc/doxygen )"
+
+src_compile() {
+       escons || die
+
+       if use doc ; then
+               doxygen Doxyfile || die
+       fi;
+}
+
+src_install() {
+       dobin ${PN} || die
+
+       dodoc README.txt || die
+       if use doc ; then
+               dohtml srcdocs/html/* || die
+       fi;
+}