diff options
author | Sam James <sam@gentoo.org> | 2022-04-05 03:37:45 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-04-05 03:37:45 +0100 |
commit | 87112c4ea4658dadd600465a0bdf98385d2d9026 (patch) | |
tree | 369f818155f2e7645438a5f561e5d2107ca7ff93 /dev-db | |
parent | app-containers/containerd: Stabilize 1.5.11 ppc64, #836778 (diff) | |
download | gentoo-87112c4ea4658dadd600465a0bdf98385d2d9026.tar.gz gentoo-87112c4ea4658dadd600465a0bdf98385d2d9026.tar.bz2 gentoo-87112c4ea4658dadd600465a0bdf98385d2d9026.zip |
dev-db/mysql-super-smack: drop 1.3-r4
Bug: https://bugs.gentoo.org/836635
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/mysql-super-smack/mysql-super-smack-1.3-r4.ebuild | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/dev-db/mysql-super-smack/mysql-super-smack-1.3-r4.ebuild b/dev-db/mysql-super-smack/mysql-super-smack-1.3-r4.ebuild deleted file mode 100644 index 453fcaa21ab9..000000000000 --- a/dev-db/mysql-super-smack/mysql-super-smack-1.3-r4.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -WANT_AUTOMAKE="1.13" - -inherit autotools libtool - -MY_PN="super-smack" -MY_P="${MY_PN}-${PV}" -DESCRIPTION="Benchmarking, stress testing, and load generation tool for MySQL & PostGreSQL" -HOMEPAGE="http://vegan.net/tony/supersmack/" -SRC_URI="mirror://gentoo/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~ppc x86" -IUSE="+mysql postgres" -REQUIRED_USE="|| ( mysql postgres )" - -COMMON_DEPEND="sys-libs/zlib:= - mysql? ( dev-db/mysql-connector-c:= ) - postgres? ( dev-db/postgresql:*[server] )" -DEPEND="${COMMON_DEPEND} sys-devel/bison sys-devel/flex" -RDEPEND="${COMMON_DEPEND} mysql? ( virtual/mysql )" - -S="${WORKDIR}/${MY_P}" - -PATCHES=( - "${FILESDIR}"/${PN}-1.2.destdir.patch - "${FILESDIR}"/${PN}-1.3.amd64.patch - "${FILESDIR}"/${PN}-1.3.gcc4.3.patch - "${FILESDIR}"/${PN}-1.3-gen-data.patch - "${FILESDIR}"/${PN}-1.3-automake-1.13.patch -) -DOCS=( CHANGES INSTALL MANUAL README TUTORIAL ) - -src_prepare() { - # Clean up files so eautoreconf does not pick up any - # deprecated autotools macros. - rm acinclude.m4 aclocal.m4 acconfig.h config.status config.h || die - mv configure.in configure.ac || die - export CXXFLAGS+=" -std=gnu++98" - default - eautoreconf - elibtoolize --patch-only -} - -src_configure() { - local myeconfargs=( - $(usex mysql --with-mysql "") - $(usex postgres --with-pgsql "") - --with-datadir=/var/tmp/${MY_PN} - --with-smacks-dir=/usr/share/${MY_PN} - ) - econf "${myeconfargs[@]}" -} - -src_install() { - default - keepdir /var/tmp/${MY_PN} -} - -pkg_postinst() { - elog "The gen-data binary is now installed as super-smack-gen-data" -} |