]> Pileus Git - ~andy/sunrise/commitdiff
media-gfx/tintii: The ebuild took now into account flags from make.conf, thantk to...
authorChristophe LEFEBVRE (chtof) <chtof62@gmail.com>
Sat, 25 Dec 2010 18:52:30 +0000 (18:52 +0000)
committerChristophe LEFEBVRE (chtof) <chtof62@gmail.com>
Sat, 25 Dec 2010 18:52:30 +0000 (18:52 +0000)
svn path=/sunrise/; revision=11637

media-gfx/tintii/ChangeLog
media-gfx/tintii/Manifest
media-gfx/tintii/tintii-2.4.0.ebuild

index aac324158ab568cb0223c54e92d9b656c6c7c164..fef4ff53d9ab62104516315c3281caca9dcaf1ad 100644 (file)
@@ -2,6 +2,10 @@
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  25 Dec 2010; Christophe LEFEBVRE (chtof) <chtof62@gmail.com>
+  tintii-2.4.0.ebuild:
+  The ebuild took now into account flags from make.conf, thantk to mgorny
+
   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.
index df12f20b5e58136316f1e7b0099c724dcf30bbab..7ac11555b912889f10f32f0290d0fe2677b19df6 100644 (file)
@@ -1,4 +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
+EBUILD tintii-2.4.0.ebuild 841 RMD160 dc7e7b65c125b45eb07c013caf9f1490c07ca4fa SHA1 c2a74358af2737ce69bb44ffdaaf50af2ad088a5 SHA256 a7243f2d5a52a56655a5e56c906f933e78830b2a9d30c95ae81b4d6ff4a02d4d
+MISC ChangeLog 598 RMD160 c8b99156e29879c6fe327929e6a88ca90bfdedef SHA1 31b2bbccbf6585fb114db217500583a1a621ed54 SHA256 420be193ea89bfa016c03720643e4b8f865d05bc01489fb0fb82140dd1d4ae39
 MISC metadata.xml 231 RMD160 6aebfea93d789d2b96ea6d8259dc842dd1fdacd3 SHA1 e10a04c4c18a66af326abc1f40c61b28cc610fae SHA256 48054ea190d00518c1e035fc6663b2368854cdea5ff69a94830e4f9a38260987
index 23021cb3f8e6c94f29d85be2dec0004fb3148e0f..5706b59865a69752afcf6fa81aa211da8967a12a 100644 (file)
@@ -5,7 +5,7 @@
 EAPI=2
 WX_GTK_VER="2.9"
 
-inherit scons-utils wxwidgets
+inherit scons-utils toolchain-funcs wxwidgets
 
 DESCRIPTION="Photo filter, striking colour pops in seconds"
 HOMEPAGE="http://www.indii.org/software/tintii"
@@ -22,7 +22,9 @@ DEPEND="${RDEPEND}
        doc? ( app-doc/doxygen )"
 
 src_compile() {
-       escons || die
+       escons CXX="$(tc-getCXX)" \
+               CXXFLAGS="${CXXFLAGS} `wx-config --cxxflags`" \
+               LINKFLAGS="`wx-config --libs` `wx-config --libs aui`" || die
 
        if use doc ; then
                doxygen Doxyfile || die
@@ -31,8 +33,8 @@ src_compile() {
 
 src_install() {
        dobin ${PN} || die
-
        dodoc README.txt || die
+
        if use doc ; then
                dohtml srcdocs/html/* || die
        fi;