Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/liborigin/
Date: Wed, 14 Feb 2018 21:01:48
Message-Id: 1518642089.8e531dae2ac79bfa50d994f3ddd0bea227d08b3e.asturm@gentoo
1 commit: 8e531dae2ac79bfa50d994f3ddd0bea227d08b3e
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 14 20:46:49 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 14 21:01:29 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e531dae
7
8 sci-libs/liborigin: Drop old
9
10 Closes: https://bugs.gentoo.org/644468
11 Package-Manager: Portage-2.3.24, Repoman-2.3.6
12
13 sci-libs/liborigin/liborigin-20110829.ebuild | 53 ----------------------------
14 1 file changed, 53 deletions(-)
15
16 diff --git a/sci-libs/liborigin/liborigin-20110829.ebuild b/sci-libs/liborigin/liborigin-20110829.ebuild
17 deleted file mode 100644
18 index 801a874105f..00000000000
19 --- a/sci-libs/liborigin/liborigin-20110829.ebuild
20 +++ /dev/null
21 @@ -1,53 +0,0 @@
22 -# Copyright 1999-2015 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -
27 -inherit eutils multilib qt4-r2
28 -
29 -DESCRIPTION="Library for reading OriginLab OPJ project files"
30 -HOMEPAGE="http://soft.proindependent.com/liborigin2/"
31 -SRC_URI="https://dev.gentoo.org/~dilfridge/distfiles/${PN}2-${PV}.zip"
32 -
33 -LICENSE="GPL-3"
34 -SLOT="2"
35 -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
36 -IUSE="doc"
37 -
38 -RDEPEND="
39 - dev-libs/boost
40 - dev-qt/qtgui:4"
41 -DEPEND="${RDEPEND}
42 - app-arch/unzip
43 - dev-cpp/tree
44 - doc? ( app-doc/doxygen )"
45 -
46 -S="${WORKDIR}"/${PN}${SLOT}
47 -
48 -src_prepare() {
49 - mv liborigin2.pro liborigin.pro || die
50 - qt4-r2_src_prepare
51 - cat >> liborigin.pro <<-EOF
52 - INCLUDEPATH += "${EPREFIX}/usr/include/tree"
53 - headers.files = \$\$HEADERS
54 - headers.path = "${EPREFIX}/usr/include/liborigin2"
55 - target.path = "${EPREFIX}/usr/$(get_libdir)"
56 - INSTALLS = target headers
57 - EOF
58 - # use system one
59 - rm -f tree.hh || die
60 -}
61 -
62 -src_compile() {
63 - qt4-r2_src_compile
64 - if use doc; then
65 - cd doc && \
66 - doxygen Doxyfile || die "doc generation failed"
67 - fi
68 -}
69 -
70 -src_install() {
71 - local DOCS="readme FORMAT"
72 - use doc && local HTML_DOCS=( doc/html/. )
73 - qt4-r2_src_install
74 -}