summaryrefslogtreecommitdiff
path: root/dev-libs/libcoyotl/libcoyotl-3.1.0-r2.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
commit1798c4aeca70ac8d0a243684d6a798fbc65735f8 (patch)
treee48e19cb6fa03de18e1c63e1a93371b7ebc4eb56 /dev-libs/libcoyotl/libcoyotl-3.1.0-r2.ebuild
parentd87262dd706fec50cd150aab3e93883b6337466d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-libs/libcoyotl/libcoyotl-3.1.0-r2.ebuild')
-rw-r--r--dev-libs/libcoyotl/libcoyotl-3.1.0-r2.ebuild50
1 files changed, 0 insertions, 50 deletions
diff --git a/dev-libs/libcoyotl/libcoyotl-3.1.0-r2.ebuild b/dev-libs/libcoyotl/libcoyotl-3.1.0-r2.ebuild
deleted file mode 100644
index 77cc8e787e76..000000000000
--- a/dev-libs/libcoyotl/libcoyotl-3.1.0-r2.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit eutils autotools
-
-DESCRIPTION="A collection of portable C++ classes"
-HOMEPAGE="http://www.coyotegulch.com/products/libcoyotl/"
-SRC_URI="http://www.coyotegulch.com/distfiles/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux"
-
-IUSE="doc static-libs"
-
-RDEPEND="media-libs/libpng:0="
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen )"
-
-DOCS=( AUTHORS ChangeLog NEWS README )
-
-src_prepare() {
- epatch "${FILESDIR}/${PV}-gcc-4.3.patch"
- epatch "${FILESDIR}/${PV}-gcc-4.7.patch"
- epatch_user
- eautoreconf
-}
-
-src_configure() {
- ac_cv_prog_HAVE_DOXYGEN="false" econf $(use_enable static-libs static)
-}
-
-src_compile() {
- emake
-
- if use doc ; then
- cd docs
- doxygen libcoyotl.doxygen || die "generating docs failed"
- fi
-}
-
-src_install() {
- default
- prune_libtool_files
- if use doc ; then
- dohtml docs/html/*
- fi
-}