summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2020-01-26 15:27:07 +0100
committerDavid Seifert <soap@gentoo.org>2020-01-26 15:27:07 +0100
commita1ff7d26aa8a9108614540280696a7697a392424 (patch)
tree266276e47f95d87a4beabf63dcd6197314453053 /dev-libs/tinyxml
parentsci-libs/mpfi: Remove old 1.5.1 (diff)
downloadgentoo-a1ff7d26aa8a9108614540280696a7697a392424.tar.gz
gentoo-a1ff7d26aa8a9108614540280696a7697a392424.tar.bz2
gentoo-a1ff7d26aa8a9108614540280696a7697a392424.zip
dev-libs/tinyxml: Remove old 2.6.2-r2
Package-Manager: Portage-2.3.85, Repoman-2.3.20 Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-libs/tinyxml')
-rw-r--r--dev-libs/tinyxml/tinyxml-2.6.2-r2.ebuild52
1 files changed, 0 insertions, 52 deletions
diff --git a/dev-libs/tinyxml/tinyxml-2.6.2-r2.ebuild b/dev-libs/tinyxml/tinyxml-2.6.2-r2.ebuild
deleted file mode 100644
index a2ea37056cdf..000000000000
--- a/dev-libs/tinyxml/tinyxml-2.6.2-r2.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-inherit flag-o-matic toolchain-funcs eutils multilib versionator
-
-DESCRIPTION="Simple and small C++ XML parser"
-HOMEPAGE="http://www.grinninglizard.com/tinyxml/index.html"
-SRC_URI="mirror://sourceforge/${PN}/${PN}_${PV//./_}.tar.gz"
-
-LICENSE="ZLIB"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~x64-macos ~x86-macos"
-IUSE="debug doc static-libs +stl"
-
-RDEPEND=""
-DEPEND="doc? ( app-doc/doxygen )"
-
-S="${WORKDIR}/${PN}"
-
-src_prepare() {
- local major_v=$(get_major_version)
- local minor_v=$(get_version_component_range 2-3)
-
- sed -e "s:@MAJOR_V@:$major_v:" \
- -e "s:@MINOR_V@:$minor_v:" \
- "${FILESDIR}"/Makefile-3 > Makefile || die
-
- epatch "${FILESDIR}"/${PN}-2.6.1-entity.patch
-
- use debug && append-cppflags -DDEBUG
- use stl && epatch "${FILESDIR}"/${P}-defineSTL.patch
-
- if ! use static-libs; then
- sed -e "/^all:/s/\$(name).a //" -i Makefile || die
- fi
-
- tc-export AR CXX RANLIB
-
- [[ ${CHOST} == *-darwin* ]] && export LIBDIR="${EPREFIX}"/usr/$(get_libdir)
-}
-
-src_install() {
- dolib.so *$(get_libname)*
-
- insinto /usr/include
- doins *.h
-
- dodoc {changes,readme}.txt
-
- use doc && dohtml -r docs/*
-}