You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
676 B
35 lines
676 B
# Copyright 2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
DESCRIPTION="Collection of general purpose C++-classes"
|
|
HOMEPAGE="http://www.tntnet.org/cxxtools.html"
|
|
SRC_URI="http://www.tntnet.org/download/${P}.tar.gz"
|
|
|
|
LICENSE="LGPL-2.1"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~sparc x86"
|
|
|
|
RDEPEND="virtual/libiconv"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
DOCS=( AUTHORS )
|
|
|
|
src_configure() {
|
|
econf \
|
|
--disable-dependency-tracking \
|
|
--disable-demos \
|
|
--disable-unittest
|
|
|
|
default
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install
|
|
einstalldocs
|
|
|
|
# remove static libs
|
|
rm -f "${ED}"/usr/$(get_libdir)/libcxxtools{,-bin,-http,-json,-unit,-xmlrpc}.la || die
|
|
}
|