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 DA900138AE9 for ; Tue, 26 Dec 2017 13:30:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EBE29E0BE2; Tue, 26 Dec 2017 13:30:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 CA3A9E0BE2 for ; Tue, 26 Dec 2017 13:30:32 +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 A567833C6B6 for ; Tue, 26 Dec 2017 13:30:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F0F46AE81 for ; Tue, 26 Dec 2017 13:30:29 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1514295023.2d8e7e2f7ac4079da53a2f69291c362261c2f964.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/docbook-dsssl-stylesheets/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/docbook-dsssl-stylesheets/docbook-dsssl-stylesheets-1.79.ebuild X-VCS-Directories: app-text/docbook-dsssl-stylesheets/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 2d8e7e2f7ac4079da53a2f69291c362261c2f964 X-VCS-Branch: master Date: Tue, 26 Dec 2017 13:30:29 +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: 9b823369-78c8-4d0d-bba0-9c3c8f752403 X-Archives-Hash: 36726dd7586595775936d1f8a01c127a commit: 2d8e7e2f7ac4079da53a2f69291c362261c2f964 Author: Mikle Kolyada gentoo org> AuthorDate: Tue Dec 26 13:30:23 2017 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Tue Dec 26 13:30:23 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d8e7e2f app-text/docbook-dsssl-stylesheets: Drop old Package-Manager: Portage-2.3.13, Repoman-2.3.3 .../docbook-dsssl-stylesheets-1.79.ebuild | 57 ---------------------- 1 file changed, 57 deletions(-) diff --git a/app-text/docbook-dsssl-stylesheets/docbook-dsssl-stylesheets-1.79.ebuild b/app-text/docbook-dsssl-stylesheets/docbook-dsssl-stylesheets-1.79.ebuild deleted file mode 100644 index 284f1ee3b29..00000000000 --- a/app-text/docbook-dsssl-stylesheets/docbook-dsssl-stylesheets-1.79.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="3" - -inherit sgml-catalog - -MY_P=${P/-stylesheets/} -S=${WORKDIR}/${MY_P} -DESCRIPTION="DSSSL Stylesheets for DocBook" -HOMEPAGE="https://github.com/docbook/wiki/wiki" -SRC_URI="mirror://sourceforge/docbook/${MY_P}.tar.bz2" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris" -IUSE="" - -RDEPEND="app-text/sgml-common" - -sgml-catalog_cat_include "/etc/sgml/dsssl-docbook-stylesheets.cat" \ - "/usr/share/sgml/docbook/dsssl-stylesheets-${PV}/catalog" -sgml-catalog_cat_include "/etc/sgml/sgml-docbook.cat" \ - "/etc/sgml/dsssl-docbook-stylesheets.cat" - -src_unpack() { - unpack ${A} - cd "${S}" - cp "${FILESDIR}/${PN}-1.77.Makefile" Makefile -} - -src_compile() { - return 0 -} - -src_install() { - make \ - BINDIR="${ED}/usr/bin" \ - DESTDIR="${ED}/usr/share/sgml/docbook/dsssl-stylesheets-${PV}" \ - install || die - - dodir /usr/share/sgml/stylesheets/dsssl/ - - if [ -d "${EPREFIX}"/usr/share/sgml/stylesheets/dsssl/docbook ] && - [ ! -L "${EPREFIX}"/usr/share/sgml/stylesheets/dsssl/docbook ] - then - ewarn "Not linking /usr/share/sgml/stylesheets/dsssl/docbook to" - ewarn "/usr/share/sgml/docbook/dsssl-stylesheets-${PV}" - ewarn "as directory already exists there. Will assume you know" - ewarn "what you're doing." - else - dosym ../../docbook/dsssl-stylesheets-${PV} \ - /usr/share/sgml/stylesheets/dsssl/docbook - fi - - dodoc BUGS ChangeLog README RELEASE-NOTES.txt WhatsNew -}