diff options
author | Mikle Kolyada <zlogene@gentoo.org> | 2014-04-07 14:23:38 +0000 |
---|---|---|
committer | Mikle Kolyada <zlogene@gentoo.org> | 2014-04-07 14:23:38 +0000 |
commit | f7468f631a9dc6c634ccb18d66ae54c5ec4b5b6f (patch) | |
tree | eb68a313ffabd9426acc6828c7cc385d25192b2b /dev-db/maatkit | |
parent | EAPI bump to 5. (diff) | |
download | gentoo-2-f7468f631a9dc6c634ccb18d66ae54c5ec4b5b6f.tar.gz gentoo-2-f7468f631a9dc6c634ccb18d66ae54c5ec4b5b6f.tar.bz2 gentoo-2-f7468f631a9dc6c634ccb18d66ae54c5ec4b5b6f.zip |
Drop old
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xC42EB5D6)
Diffstat (limited to 'dev-db/maatkit')
-rw-r--r-- | dev-db/maatkit/ChangeLog | 5 | ||||
-rw-r--r-- | dev-db/maatkit/maatkit-7540.ebuild | 112 |
2 files changed, 4 insertions, 113 deletions
diff --git a/dev-db/maatkit/ChangeLog b/dev-db/maatkit/ChangeLog index 9535d2dbf734..4abb63eec88b 100644 --- a/dev-db/maatkit/ChangeLog +++ b/dev-db/maatkit/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-db/maatkit # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/maatkit/ChangeLog,v 1.28 2014/03/03 23:36:33 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/maatkit/ChangeLog,v 1.29 2014/04/07 14:23:38 zlogene Exp $ + + 07 Apr 2014; Mikle Kolyada <zlogene@gentoo.org> -maatkit-7540.ebuild: + Drop old 03 Mar 2014; Pacho Ramos <pacho@gentoo.org> maatkit-7540-r1.ebuild: amd64 stable, bug #491976 diff --git a/dev-db/maatkit/maatkit-7540.ebuild b/dev-db/maatkit/maatkit-7540.ebuild deleted file mode 100644 index 0d77f2a5fd8d..000000000000 --- a/dev-db/maatkit/maatkit-7540.ebuild +++ /dev/null @@ -1,112 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/maatkit/maatkit-7540.ebuild,v 1.3 2011/09/20 10:12:12 nativemad Exp $ - -EAPI=3 - -inherit perl-app perl-module toolchain-funcs - -DESCRIPTION="essential command-line utilities for MySQL" -HOMEPAGE="http://www.maatkit.org/" -SRC_URI="http://maatkit.googlecode.com/files/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="udf" - -COMMON_DEPEND="dev-perl/DBI - dev-perl/DBD-mysql - virtual/perl-Time-HiRes" -RDEPEND="${COMMON_DEPEND} - virtual/perl-Getopt-Long - virtual/perl-Time-Local - virtual/perl-Digest-MD5 - virtual/perl-IO-Compress - virtual/perl-File-Temp - virtual/perl-File-Spec - virtual/perl-Time-HiRes - virtual/perl-Scalar-List-Utils - dev-perl/TermReadKey" -DEPEND="${COMMON_DEPEND} - udf? ( dev-db/mysql ) - virtual/perl-ExtUtils-MakeMaker" - -mysql-udf_src_compile() { - local udfdir="${T}/udf/" - mkdir -p "${udfdir}" - - local udfname udffile udfext udfoutpath - udfname="${1}" - udfext=".so" - udffile="${udfname}${udfext}" - udfoutpath="${udfdir}/${udffile}" - shift - CXX="$(tc-getCXX)" - local src="$@" - if [ -z "$@" ]; then - src="${udfname}.cc" - fi - for f in ${src} ; do - [ -f "${f}" ] || \ - die "UDF ${udfname}: Cannot find source file ${f} to compile" - done - einfo "UDF ${udfname}: compiling from ${src}" - ${CXX} \ - ${CXXFLAGS} -I/usr/include/mysql \ - ${LDFLAGS} -fPIC -shared -o "${udfoutpath}" $src \ - || die "UDF ${udfname}: Failed to compile" -} - -mysql-udf_src_install() { - local udfdir="${T}/udf/" - local udfname udfext udffile udfoutpath - udfname="${1}" - udfext=".so" - udffile="${udfname}${udfext}" - udfoutpath="${udfdir}/${udffile}" - insinto /usr/$(get_libdir)/mysql/plugins - doins "${udfoutpath}" || die -} - -udf_done_intro=0 -mysql-udf_pkg_postinst() { - local udfname udffile udfext udffunc udfreturn - udfname="${1}" - udfext=".so" - udffile="${udfname}${udfext}" - udffunc="${2}" - udfreturn="${3}" - if [ ${udf_done_intro} -eq 0 ]; then - elog "To use the UDFs that were built:" - elog "Update your configuration to include 'plugin_dir=/usr/$(get_libdir)/mysql/plugins'" - elog "Issue the following commands as a user with FUNCTION privileges:" - udf_done_intro=1 - fi - elog "CREATE FUNCTION ${udffunc} RETURNS ${udfreturn} SONAME '${udffile}'" -} - -src_compile() { - perl-app_src_compile - if use udf; then - cd "${S}"/udf - mysql-udf_src_compile murmur_udf - mysql-udf_src_compile fnv_udf - fi -} - -src_install() { - perl-module_src_install - if use udf; then - mysql-udf_src_install murmur_udf - mysql-udf_src_install fnv_udf - fi -} - -pkg_postinst() { - perl-module_pkg_postinst - if use udf; then - mysql-udf_pkg_postinst murmur_udf murmur_hash INTEGER - mysql-udf_pkg_postinst fnv_udf fnv_64 INTEGER - fi -} |