summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2010-10-01 13:30:22 +0000
committerMichał Górny <mgorny@gentoo.org>2010-10-01 13:30:22 +0000
commitcace9c62a824e9e6c0e55fb26e3329530e05f327 (patch)
tree1b69b1cedd35997ba753ed280d63c3194147801f /dev-util
parentapp-misc/2gis-data: Version bump to 2gis-data-2010.10 per oper777's request. ... (diff)
downloadsunrise-reviewed-cace9c62a824e9e6c0e55fb26e3329530e05f327.tar.gz
sunrise-reviewed-cace9c62a824e9e6c0e55fb26e3329530e05f327.tar.bz2
sunrise-reviewed-cace9c62a824e9e6c0e55fb26e3329530e05f327.zip
dev-util/ticpp: Revert "New snapshot version added, thanks to hwoarang"
This reverts r11375 as it doesn't conform to the Sunrise overlay standards. svn path=/sunrise/; revision=11386
Diffstat (limited to 'dev-util')
-rw-r--r--dev-util/ticpp/ChangeLog6
-rw-r--r--dev-util/ticpp/Manifest4
-rw-r--r--dev-util/ticpp/ticpp-20100924.ebuild51
3 files changed, 2 insertions, 59 deletions
diff --git a/dev-util/ticpp/ChangeLog b/dev-util/ticpp/ChangeLog
index 641b64058..0861bc79b 100644
--- a/dev-util/ticpp/ChangeLog
+++ b/dev-util/ticpp/ChangeLog
@@ -1,11 +1,7 @@
# ChangeLog for dev-util/ticpp
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2009 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.
diff --git a/dev-util/ticpp/Manifest b/dev-util/ticpp/Manifest
index 7b24bbed0..b9ab73362 100644
--- a/dev-util/ticpp/Manifest
+++ b/dev-util/ticpp/Manifest
@@ -1,5 +1,3 @@
-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 1090 RMD160 b3522521e1aa98dfd42baf17ce6f600a8d50dd66 SHA1 23bcbaaa0b215d545b86c15634c092bb17f26737 SHA256 b846bdb8c1156d40198b5b1cfa33059966399c2a529ea0971a169520b1359abd
+MISC ChangeLog 940 RMD160 218990f151127968a1cd03ac66b6911040eb372e SHA1 77abbe0a5f1e81a297823e52fb91ef5e72c2d03f SHA256 50e23460df0d66136205ee81c78b6b69ba0177f26a8dd7897b4d87cf0611e897
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
deleted file mode 100644
index 562f98c5e..000000000
--- a/dev-util/ticpp/ticpp-20100924.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# 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
-}