summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2012-05-31 11:29:20 +0000
committerTim Harder <radhermit@gentoo.org>2012-05-31 11:29:20 +0000
commit865f869b5fe2ea50f55cef1f2a8940f3ba287c3b (patch)
tree651f73374f9bcdbd45d12e61a1370368bf5a35ed /dev-libs/pugixml
parentDrop arches that need to keyword dev-libs/pugixml. (diff)
downloadgentoo-2-865f869b5fe2ea50f55cef1f2a8940f3ba287c3b.tar.gz
gentoo-2-865f869b5fe2ea50f55cef1f2a8940f3ba287c3b.tar.bz2
gentoo-2-865f869b5fe2ea50f55cef1f2a8940f3ba287c3b.zip
Remove old.
(Portage version: 2.2.0_alpha108/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/pugixml')
-rw-r--r--dev-libs/pugixml/ChangeLog6
-rw-r--r--dev-libs/pugixml/files/pugixml-1.0-cmake.patch18
-rw-r--r--dev-libs/pugixml/pugixml-1.0.ebuild20
3 files changed, 5 insertions, 39 deletions
diff --git a/dev-libs/pugixml/ChangeLog b/dev-libs/pugixml/ChangeLog
index 895182b7ab76..622a2b61067f 100644
--- a/dev-libs/pugixml/ChangeLog
+++ b/dev-libs/pugixml/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-libs/pugixml
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/pugixml/ChangeLog,v 1.2 2012/05/10 07:35:20 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/pugixml/ChangeLog,v 1.3 2012/05/31 11:29:20 radhermit Exp $
+
+ 31 May 2012; Tim Harder <radhermit@gentoo.org> -pugixml-1.0.ebuild,
+ -files/pugixml-1.0-cmake.patch:
+ Remove old.
*pugixml-1.2 (10 May 2012)
diff --git a/dev-libs/pugixml/files/pugixml-1.0-cmake.patch b/dev-libs/pugixml/files/pugixml-1.0-cmake.patch
deleted file mode 100644
index 9e2ad5aa0c91..000000000000
--- a/dev-libs/pugixml/files/pugixml-1.0-cmake.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- pugixml-1.0/scripts/CMakeLists.txt
-+++ pugixml-1.0/scripts/CMakeLists.txt
-@@ -1,5 +1,13 @@
-+cmake_minimum_required(VERSION 2.8)
- project(pugixml)
-
--set(SOURCES ../src/pugixml.hpp ../src/pugiconfig.hpp ../src/pugixml.cpp)
-+set(HEADERS ../src/pugixml.hpp ../src/pugiconfig.hpp)
-+set(SOURCES ${HEADERS} ../src/pugixml.cpp)
-
--add_library(pugixml STATIC ${SOURCES})
-+add_library(pugixml SHARED ${SOURCES})
-+set_target_properties(pugixml PROPERTIES SOVERSION 1 VERSION 1.0)
-+
-+install(TARGETS pugixml
-+ LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})
-+install(FILES ${HEADERS}
-+ DESTINATION include)
diff --git a/dev-libs/pugixml/pugixml-1.0.ebuild b/dev-libs/pugixml/pugixml-1.0.ebuild
deleted file mode 100644
index 15d9102316b4..000000000000
--- a/dev-libs/pugixml/pugixml-1.0.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/pugixml/pugixml-1.0.ebuild,v 1.1 2012/04/08 07:36:29 radhermit Exp $
-
-EAPI=4
-
-inherit cmake-utils
-
-DESCRIPTION="Light-weight, simple, and fast XML parser for C++ with XPath support"
-HOMEPAGE="http://pugixml.org/"
-SRC_URI="http://pugixml.googlecode.com/files/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-S=${WORKDIR}/scripts
-
-PATCHES=( "${FILESDIR}"/${P}-cmake.patch )