summaryrefslogtreecommitdiff
path: root/dev-libs/librtfcomp/librtfcomp-1.2.ebuild
diff options
context:
space:
mode:
Diffstat (limited to 'dev-libs/librtfcomp/librtfcomp-1.2.ebuild')
-rw-r--r--dev-libs/librtfcomp/librtfcomp-1.2.ebuild46
1 files changed, 0 insertions, 46 deletions
diff --git a/dev-libs/librtfcomp/librtfcomp-1.2.ebuild b/dev-libs/librtfcomp/librtfcomp-1.2.ebuild
deleted file mode 100644
index 07fa86e4505..00000000000
--- a/dev-libs/librtfcomp/librtfcomp-1.2.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-PYTHON_DEPEND="python? 2:2.7"
-
-inherit python
-
-DESCRIPTION="Library for handling compressed RTF documents"
-HOMEPAGE="https://sourceforge.net/projects/synce/"
-SRC_URI="mirror://sourceforge/synce/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="python static-libs"
-
-RDEPEND="python? ( >=dev-python/pyrex-0.9.6 )"
-DEPEND="${RDEPEND}"
-
-DOCS="CHANGELOG"
-
-pkg_setup() {
- if use python; then
- python_set_active_version 2
- python_pkg_setup
- fi
-}
-
-src_configure() {
- econf \
- $(use_enable static-libs static) \
- $(use_enable python python-bindings)
-}
-
-src_install() {
- default
-
- # prune_libtool_files() from eutils.eclass fails wrt #421197
- find "${ED}" -name '*.la' -exec rm -f {} +
-
- # Always remove static archive from site-packages
- use static-libs && find "${ED}" -name pyrtfcomp.a -exec rm -f {} +
-}