From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5E1DF1382C5 for ; Wed, 14 Feb 2018 21:01:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B3F25E0C5E; Wed, 14 Feb 2018 21:01:46 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 92F70E0C4F for ; Wed, 14 Feb 2018 21:01:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 110B7335C2C for ; Wed, 14 Feb 2018 21:01:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9411E1F1 for ; Wed, 14 Feb 2018 21:01:43 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1518642089.8e531dae2ac79bfa50d994f3ddd0bea227d08b3e.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/liborigin/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/liborigin/liborigin-20110829.ebuild X-VCS-Directories: sci-libs/liborigin/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 8e531dae2ac79bfa50d994f3ddd0bea227d08b3e X-VCS-Branch: master Date: Wed, 14 Feb 2018 21:01:43 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 1720a8f0-6c1e-43e2-acd9-522f1a9ecc8e X-Archives-Hash: aaeda12dba418a47efc3b0650386bcb2 commit: 8e531dae2ac79bfa50d994f3ddd0bea227d08b3e Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Feb 14 20:46:49 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Feb 14 21:01:29 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e531dae sci-libs/liborigin: Drop old Closes: https://bugs.gentoo.org/644468 Package-Manager: Portage-2.3.24, Repoman-2.3.6 sci-libs/liborigin/liborigin-20110829.ebuild | 53 ---------------------------- 1 file changed, 53 deletions(-) diff --git a/sci-libs/liborigin/liborigin-20110829.ebuild b/sci-libs/liborigin/liborigin-20110829.ebuild deleted file mode 100644 index 801a874105f..00000000000 --- a/sci-libs/liborigin/liborigin-20110829.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit eutils multilib qt4-r2 - -DESCRIPTION="Library for reading OriginLab OPJ project files" -HOMEPAGE="http://soft.proindependent.com/liborigin2/" -SRC_URI="https://dev.gentoo.org/~dilfridge/distfiles/${PN}2-${PV}.zip" - -LICENSE="GPL-3" -SLOT="2" -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" -IUSE="doc" - -RDEPEND=" - dev-libs/boost - dev-qt/qtgui:4" -DEPEND="${RDEPEND} - app-arch/unzip - dev-cpp/tree - doc? ( app-doc/doxygen )" - -S="${WORKDIR}"/${PN}${SLOT} - -src_prepare() { - mv liborigin2.pro liborigin.pro || die - qt4-r2_src_prepare - cat >> liborigin.pro <<-EOF - INCLUDEPATH += "${EPREFIX}/usr/include/tree" - headers.files = \$\$HEADERS - headers.path = "${EPREFIX}/usr/include/liborigin2" - target.path = "${EPREFIX}/usr/$(get_libdir)" - INSTALLS = target headers - EOF - # use system one - rm -f tree.hh || die -} - -src_compile() { - qt4-r2_src_compile - if use doc; then - cd doc && \ - doxygen Doxyfile || die "doc generation failed" - fi -} - -src_install() { - local DOCS="readme FORMAT" - use doc && local HTML_DOCS=( doc/html/. ) - qt4-r2_src_install -}