diff options
author | Aisha Tammy <gentoo@aisha.cc> | 2020-09-25 22:56:51 +0000 |
---|---|---|
committer | Aisha Tammy <gentoo@aisha.cc> | 2020-09-25 22:56:51 +0000 |
commit | e535df72eeecfcae9a0f18dd392d2659e25e1a81 (patch) | |
tree | 6a30ea8ef41972235a00a0373642dfd22a60273d /dev-libs/simclist/simclist-1.6.ebuild | |
parent | dev-libs/utf8proc: drop old versions (diff) | |
download | sci-e535df72eeecfcae9a0f18dd392d2659e25e1a81.tar.gz sci-e535df72eeecfcae9a0f18dd392d2659e25e1a81.tar.bz2 sci-e535df72eeecfcae9a0f18dd392d2659e25e1a81.zip |
dev-libs/simclist: various fixes and options
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Aisha Tammy <gentoo@aisha.cc>
Diffstat (limited to 'dev-libs/simclist/simclist-1.6.ebuild')
-rw-r--r-- | dev-libs/simclist/simclist-1.6.ebuild | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/dev-libs/simclist/simclist-1.6.ebuild b/dev-libs/simclist/simclist-1.6.ebuild deleted file mode 100644 index 179cabbcb..000000000 --- a/dev-libs/simclist/simclist-1.6.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit cmake-utils - -DESCRIPTION="SimCList is a high quality C (C++ embeddable) library for handling lists" -HOMEPAGE="http://mij.oltrelinux.com/devel/simclist" -SRC_URI="${HOMEPAGE}/${P/_/}.tar.bz2" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc examples" - -S="${WORKDIR}/${P/_/}" - -DEPEND="doc? ( app-doc/doxygen )" -RDEPEND="" - -src_compile(){ - cmake-utils_src_compile - if use doc; then - doxygen || die "doxygen failed" - fi -} - -src_install() { - mkdir -p "${D}"/usr/include - cp simclist.h "${D}"/usr/include/ - cd "${BUILD_DIR}" - dolib libsimclist.so - cd "${S}" - if use doc; then - dohtml -r doc/html/* - fi - if use examples; then - docinto examples - dodoc examples/* - fi -} |