diff options
author | Matti Bickel <mabi@gentoo.org> | 2013-03-30 11:13:56 +0000 |
---|---|---|
committer | Matti Bickel <mabi@gentoo.org> | 2013-03-30 11:13:56 +0000 |
commit | 56cee3619121abdf36a52818eed71a4b5f012ef5 (patch) | |
tree | 385130299d6ff03d06def44a09b3ce9808d9a540 /dev-php/smarty-docs | |
parent | Copy last two changes from live ebuild. (diff) | |
download | gentoo-2-56cee3619121abdf36a52818eed71a4b5f012ef5.tar.gz gentoo-2-56cee3619121abdf36a52818eed71a4b5f012ef5.tar.bz2 gentoo-2-56cee3619121abdf36a52818eed71a4b5f012ef5.zip |
cleanup
(Portage version: 2.2.0_alpha168/cvs/Linux x86_64, signed Manifest commit with key 0x4849EC6C)
Diffstat (limited to 'dev-php/smarty-docs')
-rw-r--r-- | dev-php/smarty-docs/ChangeLog | 6 | ||||
-rw-r--r-- | dev-php/smarty-docs/smarty-docs-2.6.11.ebuild | 23 | ||||
-rw-r--r-- | dev-php/smarty-docs/smarty-docs-2.6.ebuild | 59 |
3 files changed, 5 insertions, 83 deletions
diff --git a/dev-php/smarty-docs/ChangeLog b/dev-php/smarty-docs/ChangeLog index b75ad9cd2a8c..146bb28aa976 100644 --- a/dev-php/smarty-docs/ChangeLog +++ b/dev-php/smarty-docs/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-php/smarty-docs # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/smarty-docs/ChangeLog,v 1.57 2013/01/21 18:10:18 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/smarty-docs/ChangeLog,v 1.58 2013/03/30 11:13:56 mabi Exp $ + + 30 Mar 2013; Matti Bickel <mabi@gentoo.org> -smarty-docs-2.6.11.ebuild, + -smarty-docs-2.6.ebuild: + cleanup 21 Jan 2013; Pacho Ramos <pacho@gentoo.org> metadata.xml: Cleanup as talked with him diff --git a/dev-php/smarty-docs/smarty-docs-2.6.11.ebuild b/dev-php/smarty-docs/smarty-docs-2.6.11.ebuild deleted file mode 100644 index ffd543e7416f..000000000000 --- a/dev-php/smarty-docs/smarty-docs-2.6.11.ebuild +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/smarty-docs/smarty-docs-2.6.11.ebuild,v 1.9 2011/01/06 13:09:02 armin76 Exp $ - -KEYWORDS="alpha amd64 hppa ~ia64 ppc ~ppc64 sparc x86" - -MY_P="Smarty-${PV}-docs" - -DESCRIPTION="Documentation for Smarty, a template engine for PHP." -HOMEPAGE="http://smarty.php.net/docs.php" -SRC_URI="http://smarty.php.net/distributions/manual/en/${MY_P}.tar.gz" -LICENSE="LGPL-2.1" -SLOT="0" -IUSE="" - -DEPEND="" -RDEPEND="" - -S="${WORKDIR}/manual" - -src_install() { - dohtml -r . -} diff --git a/dev-php/smarty-docs/smarty-docs-2.6.ebuild b/dev-php/smarty-docs/smarty-docs-2.6.ebuild deleted file mode 100644 index 4c4d3c834ccd..000000000000 --- a/dev-php/smarty-docs/smarty-docs-2.6.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/smarty-docs/smarty-docs-2.6.ebuild,v 1.3 2011/09/07 19:14:30 olemarkus Exp $ - -EAPI=4 - -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="pdf html" -DESCRIPTION="Documentation for Smarty, a template engine for PHP." -HOMEPAGE="http://www.smarty.net/documentation" -SRC_URI="html? ( http://www.smarty.net/files/docs/manual-en-${PV}.zip -> ${P}-en.zip ) - pdf? ( http://www.smarty.net/files/docs/manual-en-${PV}.pdf -> ${P}-en.pdf )" - -LANGS="de en es fr it ja pt_BR ru" - -for X in ${LANGS}; do - [[ ${X} != "en" ]] && SRC_URI="${SRC_URI} linguas_${X}? ( - html? ( http://www.smarty.net/files/docs/manual-${X}-${PV}.zip -> ${P}-${X}.zip ) - pdf? ( http://www.smarty.net/files/docs/manual-${X}-${PV}.pdf -> ${P}-${X}.pdf ) )" - IUSE="${IUSE} linguas_${X}" -done - -LICENSE="LGPL-2.1" -SLOT="0" - -DEPEND="html? ( app-arch/unzip )" -RDEPEND="${DEPEND}" - -REQUIRED_USE="|| ( html pdf )" - -src_unpack() { - mkdir -p "${S}" - - if use html; then - mkdir "${S}"/html - pushd "${S}"/html > /dev/null - - unpack ${P}-en.zip - - for X in ${LANGS}; do - if [[ ${X} != "en" ]] && use linguas_${X}; then - unpack ${P}-${X}.zip - fi - done - - popd > /dev/null - fi -} - -src_install() { - if use html; then - dohtml -r html/* - fi - - if use pdf; then - docinto pdf - dodoc "${DISTDIR}"/${P}-*.pdf - fi -} |