summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2016-01-02 23:56:43 +0100
committerManuel Rüger <mrueg@gentoo.org>2016-01-02 23:56:43 +0100
commite805c79e88f11951f7c847ee34f68ce57b97e2ff (patch)
tree50941296a229ab42e2e7059703c0e382ef70aa3d /app-doc/csound-manual/csound-manual-5.19.ebuild
parentapp-backup/backintime: add RDEPEND PyQt4 (thanks Luis Lucas, bug 569982). (diff)
downloadgentoo-e805c79e88f11951f7c847ee34f68ce57b97e2ff.tar.gz
gentoo-e805c79e88f11951f7c847ee34f68ce57b97e2ff.tar.bz2
gentoo-e805c79e88f11951f7c847ee34f68ce57b97e2ff.zip
app-doc/csound-manual: Remove old
Package-Manager: portage-2.2.26
Diffstat (limited to 'app-doc/csound-manual/csound-manual-5.19.ebuild')
-rw-r--r--app-doc/csound-manual/csound-manual-5.19.ebuild64
1 files changed, 0 insertions, 64 deletions
diff --git a/app-doc/csound-manual/csound-manual-5.19.ebuild b/app-doc/csound-manual/csound-manual-5.19.ebuild
deleted file mode 100644
index d23addde33c8..000000000000
--- a/app-doc/csound-manual/csound-manual-5.19.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-MY_P=Csound${PV}
-
-DESCRIPTION="The Csound reference manual"
-HOMEPAGE="http://csounds.com/"
-SRC_URI="
- mirror://sourceforge/csound/${MY_P}_manual_pdf.zip
- linguas_fr? ( mirror://sourceforge/csound/${MY_P}_manual-fr_pdf.zip )
-
- html? (
- mirror://sourceforge/csound/${MY_P}_manual_html.zip
- linguas_fr? ( mirror://sourceforge/csound/${MY_P}_manual-fr_html.zip )
- )"
-
-LICENSE="FDL-1.3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="html"
-
-LANGS=" fr"
-IUSE+="${LANGS// / linguas_}"
-
-DEPEND="app-arch/unzip"
-
-S=${WORKDIR}
-
-src_unpack() {
- unpack ${MY_P}_manual_pdf.zip
-
- if use html ; then
- unpack ${MY_P}_manual_html.zip
- mv html html-en
- fi
-
- local lang
- for lang in ${LANGS} ; do
- use linguas_${lang} || continue
- unpack ${MY_P}_manual-${lang}_pdf.zip
- if use html ; then
- unpack ${MY_P}_manual-${lang}_html.zip
- mv html html-${lang}
- fi
- done
-}
-
-src_install() {
- dodoc *.pdf
-
- if use html ; then
- dohtml -r html-en/*
-
- local lang
- for lang in ${LANGS} ; do
- use linguas_${lang} || continue
- docinto html-${lang}
- dohtml -r html-${lang}/*
- done
- fi
-}