diff options
author | Matti Bickel <mabi@gentoo.org> | 2010-03-31 22:04:00 +0000 |
---|---|---|
committer | Matti Bickel <mabi@gentoo.org> | 2010-03-31 22:04:00 +0000 |
commit | f04aeebf6d40e58f6b7522d8024a4a904bccee01 (patch) | |
tree | e82123f658bd985a827b45c24db1966188c41210 /app-doc | |
parent | Remove old KDE versions. (diff) | |
download | gentoo-2-f04aeebf6d40e58f6b7522d8024a4a904bccee01.tar.gz gentoo-2-f04aeebf6d40e58f6b7522d8024a4a904bccee01.tar.bz2 gentoo-2-f04aeebf6d40e58f6b7522d8024a4a904bccee01.zip |
remove cruft
(Portage version: 2.1.7.17/cvs/Linux i686)
Diffstat (limited to 'app-doc')
-rw-r--r-- | app-doc/php-docs/ChangeLog | 6 | ||||
-rw-r--r-- | app-doc/php-docs/php-docs-20070202-r1.ebuild | 35 | ||||
-rw-r--r-- | app-doc/php-docs/php-docs-20071125-r1.ebuild | 71 |
3 files changed, 5 insertions, 107 deletions
diff --git a/app-doc/php-docs/ChangeLog b/app-doc/php-docs/ChangeLog index 1d7b031b0722..0be44c8ecb2b 100644 --- a/app-doc/php-docs/ChangeLog +++ b/app-doc/php-docs/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-doc/php-docs # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-doc/php-docs/ChangeLog,v 1.43 2010/03/31 22:02:32 mabi Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-doc/php-docs/ChangeLog,v 1.44 2010/03/31 22:04:00 mabi Exp $ + + 31 Mar 2010; <mabi@gentoo.org> -php-docs-20070202-r1.ebuild, + -php-docs-20071125-r1.ebuild: + remove old versions *php-docs-20100326 (31 Mar 2010) diff --git a/app-doc/php-docs/php-docs-20070202-r1.ebuild b/app-doc/php-docs/php-docs-20070202-r1.ebuild deleted file mode 100644 index ee511fbe5332..000000000000 --- a/app-doc/php-docs/php-docs-20070202-r1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-doc/php-docs/php-docs-20070202-r1.ebuild,v 1.8 2007/12/05 23:40:21 jokey Exp $ - -DESCRIPTION="HTML documentation for PHP" -HOMEPAGE="http://www.php.net/download-docs.php" -SRC_URI="mirror://gentoo/php-docs-${PV}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~x86-fbsd" -IUSE="" - -S=${WORKDIR}/html - -src_install() { - # the whole structure is too much to do with a simple dohtml * - for x in a b c d e f g h i j k l m n o p q r s t u v w x y z ; do - files="$(echo function.${x}*)" - [[ -n ${files} ]] || continue; - - dohtml function.${x}* - rm function.${x}* - done - - # what's left will fit into a single dohtml * - dohtml *.html - mv * "${D}"/usr/share/doc/php-docs-${PVR}/html/ || die "bad mv" -} - -pkg_postinst() { - einfo "Creating symlink to PHP manual at /usr/share/php-docs" - [[ -e /usr/share/php-docs ]] && rm -f /usr/share/php-docs - ln -s /usr/share/doc/php-docs-${PVR}/html /usr/share/php-docs -} diff --git a/app-doc/php-docs/php-docs-20071125-r1.ebuild b/app-doc/php-docs/php-docs-20071125-r1.ebuild deleted file mode 100644 index d1c1f23838a6..000000000000 --- a/app-doc/php-docs/php-docs-20071125-r1.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-doc/php-docs/php-docs-20071125-r1.ebuild,v 1.6 2007/12/11 09:19:05 vapier Exp $ - -EAPI="1" - -DESCRIPTION="HTML documentation for PHP" -HOMEPAGE="http://www.php.net/download-docs.php" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm ~hppa ia64 ~ppc ~ppc64 s390 sh sparc x86 ~x86-fbsd" -IUSE="+linguas_en" -SRC_URI="linguas_en? ( http://dev.gentooexperimental.org/~jakub/distfiles/${P}_en.tar.gz - mirror://gentoo/${P}_en.tar.gz )" - -RESTRICT="strip binchecks" - -LANGS="cs da de el es fi fr he hu it ja ko nl pl pt_BR ro ru sk sv zh_CN zh_TW" -for lang in ${LANGS} ; do - IUSE="${IUSE} linguas_${lang}" - SRC_URI="${SRC_URI} - linguas_${lang}? ( http://dev.gentooexperimental.org/~jakub/distfiles/${P}_${lang}.tar.gz - mirror://gentoo/${P}_${lang}.tar.gz )" -done - -S=${WORKDIR} - -src_unpack() { - for lang in en ${LANGS} ; do - if use linguas_${lang} ; then - mkdir ${lang} - pushd ${lang} >/dev/null - unpack ${P}_${lang}.tar.gz || die "unpack failed on ${lang}" - popd >/dev/null - fi - done -} - -pkg_preinst() { - # remove broken/stale symlink created by previous ebuilds - [[ -L ${ROOT}/usr/share/php-docs ]] && rm -f "${ROOT}"/usr/share/php-docs -} - -src_install() { - for lang in en ${LANGS} ; do - if use linguas_${lang} ; then - pushd ${lang}/html >/dev/null - ebegin "Installing ${lang} manual, this will take a while..." - # the whole structure is too much to do with a simple dohtml * - for x in a b c d e f g h i j k l m n o p q r s t u v w x y z ; do - files="$(echo function.${x}*)" - [[ -n ${files} ]] || continue; - - dohtml function.${x}* - rm function.${x}* - done - - # what's left will fit into a single dohtml * - dohtml -r * - popd >/dev/null - dodir /usr/share/doc/${PF}/html/${lang} - mv "${D}"/usr/share/doc/${PF}/html/{*.html,figures} "${D}"/usr/share/doc/${PF}/html/${lang} \ - || die "mv failed on ${lang}" - eend $? - fi - done - - einfo "Creating symlink to PHP manual at /usr/share/php-docs" - dosym /usr/share/doc/${PF}/html /usr/share/php-docs -} |