public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] dev/dev-zero:master commit in: app-admin/eselect-boost/files/, app-admin/eselect-boost/, ...
@ 2013-10-24  8:23 Tiziano Müller
  0 siblings, 0 replies; only message in thread
From: Tiziano Müller @ 2013-10-24  8:23 UTC (permalink / raw
  To: gentoo-commits

commit:     c4919db3389e519d1e3d80ed320ff14c49f3acd5
Author:     Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 24 08:23:25 2013 +0000
Commit:     Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
CommitDate: Thu Oct 24 08:23:25 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=dev/dev-zero.git;a=commit;h=c4919db3

Remove old/obsolete/outdated packages

---
 app-admin/eselect-boost/Manifest                  |   2 -
 app-admin/eselect-boost/eselect-boost-0.1.ebuild  |  22 ---
 app-admin/eselect-boost/files/boost.eselect-0.1   | 199 ----------------------
 app-admin/php-toolkit/ChangeLog                   | 142 ---------------
 app-admin/php-toolkit/Manifest                    |   5 -
 app-admin/php-toolkit/files/php-toolkit-fpm.patch |  42 -----
 app-admin/php-toolkit/metadata.xml                |   5 -
 app-admin/php-toolkit/php-toolkit-1.0.2.ebuild    |  39 -----
 8 files changed, 456 deletions(-)

diff --git a/app-admin/eselect-boost/Manifest b/app-admin/eselect-boost/Manifest
deleted file mode 100644
index 96af93c..0000000
--- a/app-admin/eselect-boost/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-AUX boost.eselect-0.1 5664 RMD160 816bb8c155b44b2558f84654db5fc84d5b3ef72c SHA1 7a5234efbc2969768322a1b891e27fcae4c13556 SHA256 67daf40b04f91ca2153c1bd46c2f1da68539511c69fb2688c10386138aafe125
-EBUILD eselect-boost-0.1.ebuild 546 RMD160 0649ef073548728f0d16f2661f68c31774b68920 SHA1 f8ac8e324a3d6fc8d72bab4a288322a24002a19f SHA256 dc43f6fb7174dd8faf8553ce3767b32ad836854c5262fe90f58f8bf23b10a7d8

diff --git a/app-admin/eselect-boost/eselect-boost-0.1.ebuild b/app-admin/eselect-boost/eselect-boost-0.1.ebuild
deleted file mode 100644
index 60a80bf..0000000
--- a/app-admin/eselect-boost/eselect-boost-0.1.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-inherit multilib
-
-DESCRIPTION="boost module for eselect"
-HOMEPAGE="http://www.gentoo.org/proj/en/eselect/"
-SRC_URI=""
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND=">=app-admin/eselect-1.0.5"
-
-src_install() {
-	local mdir="/usr/share/eselect/modules"
-	dodir ${mdir}
-	sed -e "s|%LIBDIR%|$(get_libdir)|g" "${FILESDIR}/boost.eselect-${PVR}" > "${D}${mdir}/boost.eselect" || die "failed to install"
-}

diff --git a/app-admin/eselect-boost/files/boost.eselect-0.1 b/app-admin/eselect-boost/files/boost.eselect-0.1
deleted file mode 100644
index 5204d38..0000000
--- a/app-admin/eselect-boost/files/boost.eselect-0.1
+++ /dev/null
@@ -1,199 +0,0 @@
-
-DESCRIPTION="Manage boost installations"
-
-_boost_tools="bcp bjam compiler_status inspect library_status process_jam_log quickbook wave"
-
-find_targets() {
-	local f
-	for f in "${ROOT}"/usr/include/boost-[[:digit:]]* ; do
-		[[ -d "${f}" ]] && echo $(basename "${f}")
-	done
-}
-
-remove_installation() {
-	local link
-	for link in "${ROOT}/usr/include/boost" "${ROOT}/usr/share/boostbook" ; do
-		if [[ -L "${link}" ]] ; then
-			rm "${link}" || die -q "Couldn't remove \"${link}\" symlink"
-		else
-			[[ -e "${link}" ]] && die -q "\${link}\" exists and isn't a symlink"
-		fi
-	done
-
-	pushd "${ROOT}/usr/%LIBDIR%" 1>/dev/null
-	local lib
-	for lib in libboost_*.{a,so} ; do
-		[[ -L "${lib}" && "${lib}" != libboost_*[[:digit:]]_[[:digit:]][[:digit:]].@(a|so) ]] || continue
-		rm "${lib}" || die -q "Unable to remove \"/usr/%LIBDIR%/${lib}\" symlink"
-	done
-	popd 1>/dev/null
-
-	pushd "${ROOT}"/usr/bin 1>/dev/null
-	local tool
-	for tool in ${_boost_tools} ; do
-		[[ -L "${tool}" ]] && ( rm "${tool}" || die -q "Unable to remove \"/usr/bin/${tool}\" symlink" )
-	done
-	popd 1>/dev/null
-
-	local mod="mpi.so"
-	for moddir in "${ROOT}"/usr/%LIBDIR%/python*/site-packages ; do
-		if [ -L "${moddir}/${mod}" ] ; then
-			rm "${moddir}/${mod}" || die -q "Unable to remove \"${moddir}/${mod}\" symlink"
-		else
-			[[ -e "${moddir}/${mod}" ]] && die -q "\"${moddir}/${mod}\" exists and isn't a symlink"
-		fi
-	done
-}
-
-set_installation() {
-	[[ -z "${2}" ]] && die -q "Too few parameters to set_installation()"
-	local target="${1}"
-	local version="${2}"
-
-	if [[ -d "${ROOT}/usr/include/${target}" ]] ; then
-		pushd "${ROOT}/usr/include" 1>/dev/null
-		ln -s "${target}/boost" boost || die -q "Couldn't create symlink \"/usr/include/boost\""
-		popd 1>/dev/null
-
-		pushd "${ROOT}/usr/share/" 1>/dev/null
-		[[ -d "boostbook-${version}" ]] && \
-			( ln -s "boostbook-${version}" "boostbook" || die -q "Couldn't create symlink \"/usr/bin/${tool}\"" )
-		popd 1>/dev/null
-
-		pushd "${ROOT}/usr/%LIBDIR%" 1>/dev/null
-		local lib
-		for lib in libboost_*-"${version}".{a,so} ; do
-			[[ -e "${lib}" ]] && \
-				( ln -s "${lib}" "${lib//-${version}}" || die -q "Couldn't create symlink \"/usr/%LIBDIR%/${lib}\"" )
-		done
-		popd 1>/dev/null
-
-		pushd "${ROOT}/usr/bin/" 1>/dev/null
-		local tool
-		for tool in ${_boost_tools} ; do
-			[[ -e "${tool}" ]] && die -q "\"/usr/bin/${tool}\" exists and isn't a symlink"
-			[[ -e "${tool}-${version}" ]] && \
-				( ln -s "${tool}-${version}" "${tool}" || die -q "Couldn't create symlink \"/usr/bin/${tool}\"" )
-		done
-		popd 1>/dev/null
-
-		local mod="mpi.so"
-		for moddir in "${ROOT}"/usr/%LIBDIR%/python*/site-packages ; do
-			pushd "${moddir}" 1>/dev/null
-			[[ -e "${mod}" ]] && die -q "\"${moddir}/${mod}\" exists and isn't a symlink"
-			[[ -e "mpi_${version}/mpi.so" ]] && \
-				( ln -s "mpi_${version}/${mod}" "${mod}" || die -q "Couldn't create symlink \"${moddir}/${mod}\"" )
-			popd 1>/dev/null
-		done
-
-	else
-		die -q "Target \"${target}\" doesn't appear to be valid!"
-	fi
-}
-
-### show action ###
-
-describe_show() {
-	echo "Show the current boost version used"
-}
-
-do_show() {
-	local include
-
-	write_list_start "Current boost version:"
-	if [[ -L "${ROOT}"/usr/include/boost ]] ; then
-		include=$(basename $(dirname $(canonicalise "${ROOT}"/usr/include/boost )))
-		write_kv_list_entry "${include%/}" ""
-	else
-		write_kv_list_entry "(unset)" ""
-	fi
-}
-
-### list action ###
-
-describe_list() {
-	echo "List available boost versions"
-}
-
-do_list() {
-	local targets=( $(find_targets ) )
-	write_list_start "Available boost versions:"
-	if [[ -n "${targets[@]}" ]] ; then
-		local i
-		for (( i = 0 ; i < ${#targets[@]} ; i = i + 1 )) ; do
-			[[ "${targets[${i}]}" == $(basename $(dirname $(canonicalise "${ROOT}"/usr/include/boost))) ]] && \
-				targets[${i}]="${targets[${i}]} $(highlight '*' )"
-		done
-		write_numbered_list "${targets[@]}"
-	else
-		write_kv_list_entry "(none found)" ""
-	fi
-}
-
-### set action ###
-
-describe_set() {
-	echo "Set a new boost version"
-}
-
-describe_set_parameters() {
-	echo "<target>"
-}
-
-describe_set_options() {
-	echo "target : Target name or number (from 'list' action)"
-}
-
-do_set() {
-	if [[ -z "${1}" ]] ; then
-		# no parameter
-		die -q "You didn't tell me what to set the version to"
-	fi
-
-	local target="${1}"
-	if is_number "${target}" ; then
-		targets=($(find_targets))
-		target="${targets[$((${target} - 1))]}"
-	fi
-	local version="${target//boost-}"
-
-	if [[ -L "${ROOT}"/usr/include/boost ]] ; then
-		if ! remove_installation ; then
-			die -q "Couldn't unset existing installation"
-		elif ! set_installation "${target}" "${version}" ; then
-			die -q "Couldn't set a new installation"
-		fi
-	elif [[ -e "${ROOT}"/usr/include/boost ]] ; then
-		die -q "Sorry, existing boost installation confuses me"
-	else
-		set_installation "${target}" "${version}" || die -q "Couldn't set a new version"
-	fi
-}
-
-### update action ###
-
-describe_update() {
-	echo "Automaticly update boost version used"
-}
-
-do_update() {
-	local current=
-	if [[ -L "${ROOT}/usr/include/boost" ]]; then
-		current=$(basename $(canonicalise "${ROOT}/usr/include/boost") )
-		if [[ ! -e $(canonicalise "${ROOT}/usr/include/boost") ]]; then
-			# clean up dead symlinks
-			remove_installation || die -q "Couldn't remove existing installation"
-		fi
-	elif [[ -e "${ROOT}/usr/include/boost" ]]; then
-		die -q "Sorry, \"/usr/include/boost\" exists but is not a symlink"
-	fi
-
-	local targets=($(find_targets))
-	if [[ ${#targets[@]} -gt 0 ]]; then
-		remove_installation || die -q "Couldn't remove existing installation"
-		local target="${targets[@]:(-1)}"
-		set_installation "${target}" "${target//boost-}" || die -q "Couldn't set a new symlink"
-	else
-		die -q "No slotted boost version found"
-	fi
-}

diff --git a/app-admin/php-toolkit/ChangeLog b/app-admin/php-toolkit/ChangeLog
deleted file mode 100644
index 2c63b69..0000000
--- a/app-admin/php-toolkit/ChangeLog
+++ /dev/null
@@ -1,142 +0,0 @@
-# ChangeLog for app-admin/php-toolkit
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/php-toolkit/ChangeLog,v 1.31 2009/12/30 00:47:19 hoffie Exp $
-
-*php-toolkit-1.0.2 (30 Dec 2009)
-
-  30 Dec 2009; Christian Hoffmann <hoffie@gentoo.org>
-  +php-toolkit-1.0.2.ebuild:
-  version bump; this version adds support for php-5.3's USE=embed
-  management, but should retain backward compatibility
-
-  29 Dec 2009; Christian Hoffmann <hoffie@gentoo.org> -files/php-select,
-  -files/php-select-modules/apache1.sh,
-  -files/php-select-modules/apache2.sh,
-  -files/php-select-modules/libapache.sh,
-  -files/php-select-modules/libsymlink.sh, -files/php-select-modules/php.sh,
-  -files/php-select-modules/php-cgi.sh,
-  -files/php-select-modules/php-devel.sh:
-  cleaning files/ from leftovers (pre-tarball times)
-
-  29 Jul 2009; Jeremy Olexa <darkside@gentoo.org>
-  -php-toolkit-1.0-r2.ebuild:
-  Remove vulnerable version, bug 271731
-
-  09 Aug 2008; Christian Hoffmann <hoffie@gentoo.org> files/php-select:
-  Cosmetic change (drop php4)
-
-  07 Apr 2008; Raúl Porcel <armin76@gentoo.org> php-toolkit-1.0.1.ebuild:
-  alpha/ia64/sparc stable wrt security #209535
-
-  06 Apr 2008; Tobias Scherbaum <dertobi123@gentoo.org>
-  php-toolkit-1.0.1.ebuild:
-  ppc stable, bug #209535
-
-  06 Apr 2008; Markus Rothe <corsair@gentoo.org> php-toolkit-1.0.1.ebuild:
-  Stable on ppc64; bug #209535
-
-  06 Apr 2008; Markus Meier <maekke@gentoo.org> php-toolkit-1.0.1.ebuild:
-  x86 stable, security bug #209535
-
-  06 Apr 2008; Jeroen Roovers <jer@gentoo.org> php-toolkit-1.0.1.ebuild:
-  Stable for HPPA (bug #209535).
-
-  06 Apr 2008; Christian Hoffmann <hoffie@gentoo.org>
-  php-toolkit-1.0.1.ebuild:
-  marking 1.0.1 stable on amd64 (will be requested by security anyway, and
-  as I tested it...)
-
-*php-toolkit-1.0.1 (06 Apr 2008)
-
-  06 Apr 2008; Christian Hoffmann <hoffie@gentoo.org>
-  +php-toolkit-1.0.1.ebuild:
-  bumping version to ensure everyone updates wrt security bug 209535, fixing
-  packaging (using tarball instead of putting everything in files/),
-  dropping blocker against the no longer available app-admin/eselect-php,
-  reverting back to ~arch to allow for proper testing
-
-  24 Mar 2008; Benedikt Böhm <hollow@gentoo.org>
-  files/php-select-modules/libapache.sh:
-  fix the fix
-
-  24 Mar 2008; Benedikt Böhm <hollow@gentoo.org>
-  files/php-select-modules/libapache.sh:
-  fix #209535
-
-  25 Aug 2006; Sebastian Bergmann <sebastian@gentoo.org>
-  php-toolkit-1.0-r2.ebuild:
-  Fix bug #145035.
-
-  18 May 2006; Diego Pettenò <flameeyes@gentoo.org>
-  php-toolkit-1.0-r2.ebuild:
-  Add ~x86-fbsd keyword.
-
-  26 Jan 2006; Jeroen Roovers <jer@gentoo.org> php-toolkit-1.0-r2.ebuild:
-  Marked hppa (bug #119436).
-
-  25 Jan 2006; Bryan Østergaard <kloeri@gentoo.org
-  php-toolkit-1.0-r2.ebuild:
-  Stable on alpha.
-
-  23 Jan 2006; Rene Nussbaumer <killerfox@gentoo.org>
-  php-toolkit-1.0-r2.ebuild:
-  Unstable on hppa.
-
-  21 Jan 2006; Jason Wever <weeve@gentoo.org> php-toolkit-1.0-r2.ebuild:
-  Stable on SPARC wrt bug #119436.
-
-  21 Jan 2006; <nixnut@gentoo.org> php-toolkit-1.0-r2.ebuild:
-  Added ppc keyword. bug 119436
-
-  21 Jan 2006; Simon Stelling <blubb@gentoo.org> php-toolkit-1.0-r2.ebuild:
-  stable on amd64
-
-  19 Jan 2006; Krzysiek Pawlik <nelchael@gentoo.org>
-  php-toolkit-1.0-r2.ebuild:
-  Stable on x86.
-
-  18 Jan 2006; Markus Rothe <corsair@gentoo.org> php-toolkit-1.0-r2.ebuild:
-  Stable on ppc64; bug #119436
-
-*php-toolkit-1.0-r2 (16 Jan 2006)
-
-  16 Jan 2006; Luca Longinotti <chtekk@gentoo.org>
-  files/php-select-modules/libapache.sh, -php-toolkit-1.0-r1.ebuild,
-  +php-toolkit-1.0-r2.ebuild:
-  Fix bug #119136.
-
-*php-toolkit-1.0-r1 (04 Jan 2006)
-
-  04 Jan 2006; Luca Longinotti <chtekk@gentoo.org>
-  files/php-select-modules/libsymlink.sh, -php-toolkit-1.0.ebuild,
-  +php-toolkit-1.0-r1.ebuild:
-  Fix bug #117733.
-
-  03 Jan 2006; Mark Loeser <halcy0n@gentoo.org> php-toolkit-1.0.ebuild:
-  Adding ~ppc
-
-  03 Jan 2006; Markus Rothe <corsair@gentoo.org> php-toolkit-1.0.ebuild:
-  Added ~ppc64
-
-  30 Dec 2005; Luca Longinotti <chtekk@gentoo.org> php-toolkit-1.0.ebuild:
-  Added ~alpha and ~ia64 keywords, kloeri's ok with it.
-
-  30 Dec 2005; Gustavo Zacarias <gustavoz@gentoo.org>
-  php-toolkit-1.0.ebuild:
-  Keyworded ~sparc wrt #116975
-
-  29 Dec 2005; Simon Stelling <blubb@gentoo.org> php-toolkit-1.0.ebuild:
-  added ~amd64 keyword
-
-*php-toolkit-1.0 (28 Dec 2005)
-
-  28 Dec 2005; Luca Longinotti <chtekk@gentoo.org> +files/php-select,
-  +files/php-select-modules/apache1.sh,
-  +files/php-select-modules/apache2.sh,
-  +files/php-select-modules/libapache.sh,
-  +files/php-select-modules/libsymlink.sh, +files/php-select-modules/php.sh,
-  +files/php-select-modules/php-cgi.sh,
-  +files/php-select-modules/php-devel.sh, +metadata.xml,
-  +php-toolkit-1.0.ebuild:
-  Initial ebuild for php-toolkit. Includes php-select.
-

diff --git a/app-admin/php-toolkit/Manifest b/app-admin/php-toolkit/Manifest
deleted file mode 100644
index 90d4f29..0000000
--- a/app-admin/php-toolkit/Manifest
+++ /dev/null
@@ -1,5 +0,0 @@
-MISC ChangeLog 4864 RMD160 159d4f0fae1f59c993fbe640001219bd0f300397 SHA1 fd501fbf178eb14e988b8290061daa3fc917fd25 SHA256 49d1680fde927713ee66418728fc005e80f5278ab69d1daca5f581daf04f0706
-AUX php-toolkit-fpm.patch 1584 RMD160 b3c5163eb8f31ed6f6f6370caed2a477facdb341 SHA1 251e7fcf8b9472ef40715f7897531a79c924653a SHA256 17e9e35fb16ace5f3576beb132bea393f1e2a22d149c516d40d7ac24a32efea3
-MISC metadata.xml 157 RMD160 a98db3a086fae3c09a903dadbc05f60443ec4b1a SHA1 ddaa23cc35eb917bf8962b652442bebb1ce0f440 SHA256 54f8878ca0228e380abbaa4b529806b5533a6b9b51b3b16c0909e906586a91a1
-EBUILD php-toolkit-1.0.2.ebuild 736 RMD160 829e7a46f21103f4d7759f893fb52aa9543977e3 SHA1 92be0e6eb27bbe5e59e67191719591401ddaeecc SHA256 f5f1233d32f2edd96c5dc4822f62e022c0a1224ecef19ad552bee867a15f41df
-DIST php-toolkit-1.0.2.tar.bz2 5583 RMD160 c63dc32dcc4c90863f12c83b1add9c9bd2d27c7a SHA1 3f479a3e600d5401648e92ff4241a834cc306138 SHA256 f6f574d94a10e985a13ccb625e888ca84d8bffdb3bc9498b80ed68bce1e4d82a

diff --git a/app-admin/php-toolkit/files/php-toolkit-fpm.patch b/app-admin/php-toolkit/files/php-toolkit-fpm.patch
deleted file mode 100644
index 966c71f..0000000
--- a/app-admin/php-toolkit/files/php-toolkit-fpm.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-diff -urN php-toolkit-1.0.2.orig/php-select php-toolkit-1.0.2/php-select
---- php-toolkit-1.0.2.orig/php-select	2010-01-17 13:52:25.000000000 +0300
-+++ php-toolkit-1.0.2/php-select	2010-01-17 14:00:34.000000000 +0300
-@@ -18,7 +18,7 @@
- #
- # where
- #    <component> is one of
--#      php|php-cgi|php-devel|apache|apache2
-+#      php|php-cgi|php-fpm|php-devel|apache|apache2
- #
- #    <php-version> is the directory under /usr/lib where PHP is installed
- #
-@@ -107,6 +107,7 @@
- 	echo "    apache2   - Apache webserver v2.x"
- 	echo "    php       - /usr/bin/php (the CLI SAPI)"
- 	echo "    php-cgi   - /usr/bin/php-cgi (the CGI SAPI)"
-+	echo "    php-fpm   - /usr/bin/php-fpm (the FPM SAPI)"
- 	echo "    php-devel - the scripts used to build PECL extensions"
- 	echo
- 	echo "and where <php-version> is one of:"
-diff -urN php-toolkit-1.0.2.orig/php-select-modules/php-fpm.sh php-toolkit-1.0.2/php-select-modules/php-fpm.sh
---- php-toolkit-1.0.2.orig/php-select-modules/php-fpm.sh	1970-01-01 03:00:00.000000000 +0300
-+++ php-toolkit-1.0.2/php-select-modules/php-fpm.sh	2010-01-17 13:53:28.000000000 +0300
-@@ -0,0 +1,18 @@
-+#
-+# /usr/share/php-select/php-fpm.sh
-+#		Module to manage /usr/bin/php-fpm binary
-+#
-+#		Written for Gentoo Linux
-+#
-+# Author	Stuart Herbert
-+#		(stuart@gentoo.org)
-+#
-+# Copyright	(c) 2005 Gentoo Foundation, Inc.
-+#		Released under version 2 of the GNU General Public License
-+#
-+# ========================================================================
-+
-+G_SYMLINK_SOURCE[0]="bin/php-fpm"
-+G_SYMLINK_TARGET[0]="/usr/bin/php-fpm"
-+
-+. $G_MODULE_PATH/libsymlink.sh

diff --git a/app-admin/php-toolkit/metadata.xml b/app-admin/php-toolkit/metadata.xml
deleted file mode 100644
index fd3dbe3..0000000
--- a/app-admin/php-toolkit/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<herd>php</herd>
-</pkgmetadata>

diff --git a/app-admin/php-toolkit/php-toolkit-1.0.2.ebuild b/app-admin/php-toolkit/php-toolkit-1.0.2.ebuild
deleted file mode 100644
index 6bd9cd1..0000000
--- a/app-admin/php-toolkit/php-toolkit-1.0.2.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="2"
-
-inherit eutils multilib
-
-DESCRIPTION="Utilities for managing installed copies of PHP"
-HOMEPAGE="http://www.gentoo.org/proj/en/php/"
-SRC_URI="http://dev.gentoo.org/~hoffie/distfiles/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS=""
-IUSE=""
-
-DEPEND=""
-RDEPEND=""
-
-src_prepare() {
-	epatch "${FILESDIR}/php-toolkit-fpm.patch"
-}
-
-src_configure() {
-	sed -i \
-		-e "s:@@GENTOO_LIBDIR@@:$(get_libdir):" \
-		php-select || die "GENTOO_LIBDIR sed failed"
-}
-
-src_install() {
-	dosbin php-select || die
-
-	dodir /usr/share/php-select
-	insinto /usr/share/php-select
-	doins php-select-modules/*
-
-	dodoc ChangeLog TODO
-}


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2013-10-24  8:23 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-24  8:23 [gentoo-commits] dev/dev-zero:master commit in: app-admin/eselect-boost/files/, app-admin/eselect-boost/, Tiziano Müller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox