]> Pileus Git - ~andy/sunrise/commitdiff
dev-util/ticpp: New snapshot version added, thanks to hwoarang
authorLaurento Frittella (mrfree) <laurento.frittella@gmail.com>
Sat, 25 Sep 2010 13:51:41 +0000 (13:51 +0000)
committerLaurento Frittella (mrfree) <laurento.frittella@gmail.com>
Sat, 25 Sep 2010 13:51:41 +0000 (13:51 +0000)
svn path=/sunrise/; revision=11375

dev-util/ticpp/ChangeLog
dev-util/ticpp/Manifest
dev-util/ticpp/ticpp-20100924.ebuild [new file with mode: 0644]

index 0861bc79be18f6775770b93bdfb669dccc0fe8db..641b64058197d8af3447e0e25bf61c36de7f7197 100644 (file)
@@ -1,7 +1,11 @@
 # ChangeLog for dev-util/ticpp
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  25 Sep 2010; Laurento Frittella (mrfree) <laurento.frittella@gmail.com>
+  +ticpp-20100924.ebuild:
+  New snapshot version added, thanks to hwoarang
+
   20 Apr 2009; Christian Ruppert <idl0r@gentoo.org> ticpp-9999.ebuild:
   Live ebuilds shouldn't have KEYWORDS. Added missing die statement.
 
index b9ab73362352c03e5aebe3b1d82be2690f0205bc..7b24bbed047e5828d4888b1218b25b1e8b6188b9 100644 (file)
@@ -1,3 +1,5 @@
+DIST ticpp-20100924.tar.bz2 75740 RMD160 0669de81fcce0cc8058ac40f61b79e2d8d338341 SHA1 eedda7702227dabba36dd0ca0fe97ad6aee2535f SHA256 e87eb3751d068b9db5db29a85ba57ee06e02d91810f4324d69883cea2378ac0f
+EBUILD ticpp-20100924.ebuild 1185 RMD160 4ce0d0d24bb7d701eabf455fc4e0839fb827f0a0 SHA1 1970cbabc051a1edd11b92bfc458cf627c2f282d SHA256 3080a6a59133d886e15389e7bdaac7b47ae0d60f135a8174eb901b9983ff91c8
 EBUILD ticpp-9999.ebuild 1216 RMD160 a093b7949f311a2480969c8ae42d6cb61c26b536 SHA1 0070450256cb45ac74d9ce4d98c41413570967e5 SHA256 fd192181a8b61504feeeacc2bba85c5608b925016a2ad02c29ab4e1b5fb62db2
-MISC ChangeLog 940 RMD160 218990f151127968a1cd03ac66b6911040eb372e SHA1 77abbe0a5f1e81a297823e52fb91ef5e72c2d03f SHA256 50e23460df0d66136205ee81c78b6b69ba0177f26a8dd7897b4d87cf0611e897
+MISC ChangeLog 1090 RMD160 b3522521e1aa98dfd42baf17ce6f600a8d50dd66 SHA1 23bcbaaa0b215d545b86c15634c092bb17f26737 SHA256 b846bdb8c1156d40198b5b1cfa33059966399c2a529ea0971a169520b1359abd
 MISC metadata.xml 229 RMD160 f0f6417bec31ce8baba6d476664f7210c8c84c98 SHA1 e5f94f5caadc6f843fc90bb7959570cd503676fd SHA256 3b08fca3c878bdfc4e7639f477dd542d55a4ab5dce39a475e82633071d13eb3f
diff --git a/dev-util/ticpp/ticpp-20100924.ebuild b/dev-util/ticpp/ticpp-20100924.ebuild
new file mode 100644 (file)
index 0000000..562f98c
--- /dev/null
@@ -0,0 +1,51 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+DESCRIPTION="A completely new interface to TinyXML that uses MANY of the C++ strengths"
+HOMEPAGE="http://code.google.com/p/ticpp/"
+SRC_URI="http://dev.gentoo.org/~hwoarang/distfiles/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64"
+SLOT="0"
+IUSE="debug doc"
+
+DEPEND="dev-util/premake
+       doc? ( app-doc/doxygen sys-apps/sed )"
+RDEPEND=""
+
+src_compile() {
+       local myconf
+
+       premake --target gnu || die "creating Makefile failed"
+
+       if use !debug ; then
+               myconf="CONFIG=Release"
+       fi
+
+       emake ${myconf} || die "emake failed"
+
+       if use doc ; then
+               sed -i -e '/GENERATE_HTMLHELP/s:YES:NO:' dox || die "sed failed"
+               doxygen dox || die "doxygen failed"
+       fi
+}
+
+src_install () {
+       insinto /usr/include/ticpp
+       doins *.h || die "installing headers failed"
+
+       if use debug ; then
+               dolib ../lib/libticppd.a || die "installing library failed"
+       else
+               dolib ../lib/libticpp.a || die "installing library failed"
+       fi
+
+       dodoc {changes,readme,tutorial_gettingStarted,tutorial_ticpp}.txt || \
+               die "dodoc failed"
+
+       if use doc ; then
+               dohtml -r docs/* || die "installing docs failed"
+       fi
+}