summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-doc/diveintopython/diveintopython-2.ebuild')
-rw-r--r--app-doc/diveintopython/diveintopython-2.ebuild31
1 files changed, 0 insertions, 31 deletions
diff --git a/app-doc/diveintopython/diveintopython-2.ebuild b/app-doc/diveintopython/diveintopython-2.ebuild
deleted file mode 100644
index 194048ff03a2..000000000000
--- a/app-doc/diveintopython/diveintopython-2.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MY_PV="5.4"
-MY_P="${PN}-${MY_PV}"
-
-DESCRIPTION="'Dive Into Python' by Mark Pilgrim - Python 2"
-HOMEPAGE="http://www.diveintopython.net/"
-SRC_URI="
-http://www.diveintopython.net/download/${PN}-html-${MY_PV}.zip -> ${P}.zip
-pdf? ( http://www.diveintopython.net/download/${PN}-pdf-${MY_PV}.zip -> ${P}-pdf.zip )
-"
-
-LICENSE="FDL-1.1"
-SLOT="2"
-KEYWORDS="amd64 ppc ppc64 x86"
-IUSE="pdf"
-
-DEPEND="app-arch/unzip"
-
-S="${WORKDIR}/${MY_P}"
-
-src_install() {
- insinto "/usr/share/doc/${PN}-${SLOT}"
- use pdf && dodoc "${PN}.pdf"
- doins -r html/*
- insinto "/usr/share/doc/${PN}-${SLOT}"/examples
- doins -r py
-}