50 lines
1 KiB
Bash
50 lines
1 KiB
Bash
# Copyright 1999-2013 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.5 2013/03/09 18:13:15 ago Exp $
|
|
|
|
EAPI=5
|
|
|
|
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/~ago/distfiles/${P}.tar.bz2"
|
|
|
|
LICENSE="MIT"
|
|
KEYWORDS="amd64 ~ppc x86"
|
|
SLOT="0"
|
|
IUSE="debug doc"
|
|
|
|
DEPEND=">=dev-util/premake-4.3
|
|
doc? ( app-doc/doxygen )"
|
|
RDEPEND=""
|
|
|
|
src_prepare() {
|
|
premake4 gmake || die
|
|
|
|
sed -i "s:\$(ARCH)::g" TiCPP.make || die
|
|
}
|
|
|
|
src_compile() {
|
|
local myconf
|
|
use !debug && myconf="config=release"
|
|
emake ${myconf}
|
|
|
|
if use doc ; then
|
|
sed -i -e '/GENERATE_HTMLHELP/s:YES:NO:' dox || die
|
|
doxygen dox || die
|
|
fi
|
|
}
|
|
|
|
src_install () {
|
|
insinto /usr/include/ticpp
|
|
doins *.h
|
|
|
|
if use debug ; then
|
|
dolib lib/libticppd.a
|
|
else
|
|
dolib lib/libticpp.a
|
|
fi
|
|
|
|
dodoc {changes,readme,tutorial_gettingStarted,tutorial_ticpp}.txt
|
|
|
|
use doc && dohtml -r docs/*
|
|
}
|