diff options
-rw-r--r-- | dev-util/ticpp/ChangeLog | 6 | ||||
-rw-r--r-- | dev-util/ticpp/ticpp-0_p20100924.ebuild | 51 | ||||
-rw-r--r-- | dev-util/ticpp/ticpp-0_p20120423.ebuild | 4 |
3 files changed, 7 insertions, 54 deletions
diff --git a/dev-util/ticpp/ChangeLog b/dev-util/ticpp/ChangeLog index eded2b97231d..157eca32d846 100644 --- a/dev-util/ticpp/ChangeLog +++ b/dev-util/ticpp/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-util/ticpp # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/ticpp/ChangeLog,v 1.9 2012/06/18 14:20:31 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/ticpp/ChangeLog,v 1.10 2012/06/22 21:45:51 ago Exp $ + + 22 Jun 2012; Agostino Sarubbo <ago@gentoo.org> -ticpp-0_p20100924.ebuild, + ticpp-0_p20120423.ebuild: + Stable for amd64/x86, removed old 18 Jun 2012; Agostino Sarubbo <ago@gentoo.org> ticpp-0_p20100924.ebuild, ticpp-0_p20120423.ebuild, ticpp-9999.ebuild: diff --git a/dev-util/ticpp/ticpp-0_p20100924.ebuild b/dev-util/ticpp/ticpp-0_p20100924.ebuild deleted file mode 100644 index 58cd58fa8d73..000000000000 --- a/dev-util/ticpp/ticpp-0_p20100924.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/ticpp/ticpp-0_p20100924.ebuild,v 1.6 2012/06/18 14:20:31 ago Exp $ - -DESCRIPTION="A completely new interface to TinyXML that uses MANY of the C++ strengths" -HOMEPAGE="http://code.google.com/p/ticpp/" -SRC_URI="http://sulmonalug.it/files/mrfree/${P}.tar.bz2" - -LICENSE="MIT" -KEYWORDS="amd64 x86" -SLOT="0" -IUSE="debug doc" - -DEPEND="<dev-util/premake-4.3 - 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 -} diff --git a/dev-util/ticpp/ticpp-0_p20120423.ebuild b/dev-util/ticpp/ticpp-0_p20120423.ebuild index 9538ce78fdff..d4f59597b246 100644 --- a/dev-util/ticpp/ticpp-0_p20120423.ebuild +++ b/dev-util/ticpp/ticpp-0_p20120423.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/ticpp/ticpp-0_p20120423.ebuild,v 1.2 2012/06/18 14:20:31 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/ticpp/ticpp-0_p20120423.ebuild,v 1.3 2012/06/22 21:45:51 ago Exp $ EAPI=4 @@ -9,7 +9,7 @@ HOMEPAGE="http://code.google.com/p/ticpp/" SRC_URI="http://dev.gentoo.org/~ago/distfiles/${P}.tar.bz2" LICENSE="MIT" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" SLOT="0" IUSE="debug doc" |