diff options
author | Justin Lecher <jlec@gentoo.org> | 2015-03-29 09:31:21 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2015-03-29 09:31:21 +0000 |
commit | a51bd72143c44c8b9fa49fbee97fbeeb9c7ee8ed (patch) | |
tree | cd1a07d358ba313e1f94ebd8830d3ec6a10adc47 /dev-db | |
parent | Drop obsolete patches (diff) | |
download | gentoo-2-a51bd72143c44c8b9fa49fbee97fbeeb9c7ee8ed.tar.gz gentoo-2-a51bd72143c44c8b9fa49fbee97fbeeb9c7ee8ed.tar.bz2 gentoo-2-a51bd72143c44c8b9fa49fbee97fbeeb9c7ee8ed.zip |
Drop old
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/metakit/ChangeLog | 5 | ||||
-rw-r--r-- | dev-db/metakit/metakit-2.4.9.7-r1.ebuild | 99 |
2 files changed, 4 insertions, 100 deletions
diff --git a/dev-db/metakit/ChangeLog b/dev-db/metakit/ChangeLog index ae6b2d37024b..70da2accee9d 100644 --- a/dev-db/metakit/ChangeLog +++ b/dev-db/metakit/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-db/metakit # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/metakit/ChangeLog,v 1.68 2015/03/28 21:33:28 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/metakit/ChangeLog,v 1.69 2015/03/29 09:31:21 jlec Exp $ + + 29 Mar 2015; Justin Lecher <jlec@gentoo.org> -metakit-2.4.9.7-r1.ebuild: + Drop old 28 Mar 2015; Agostino Sarubbo <ago@gentoo.org> metakit-2.4.9.7-r2.ebuild: Stable for ppc, wrt bug #543868 diff --git a/dev-db/metakit/metakit-2.4.9.7-r1.ebuild b/dev-db/metakit/metakit-2.4.9.7-r1.ebuild deleted file mode 100644 index 6a469fc7eb46..000000000000 --- a/dev-db/metakit/metakit-2.4.9.7-r1.ebuild +++ /dev/null @@ -1,99 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/metakit/metakit-2.4.9.7-r1.ebuild,v 1.6 2015/03/20 09:15:47 jlec Exp $ - -EAPI=4 - -PYTHON_DEPEND="python? 2" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.* *-jython 2.7-pypy-*" - -inherit eutils flag-o-matic multilib python toolchain-funcs - -DESCRIPTION="Embedded database library" -HOMEPAGE="http://www.equi4.com/metakit/" -SRC_URI="http://www.equi4.com/pub/mk/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="python static tcl" - -DEPEND="tcl? ( dev-lang/tcl:0 )" -RDEPEND="${DEPEND}" - -RESTRICT="test" - -pkg_setup() { - use python && python_pkg_setup -} - -src_prepare() { - epatch "${FILESDIR}/${P}-linking.patch" -} - -src_configure() { - local myconf mycxxflags - use tcl && myconf+=" --with-tcl=${EPREFIX}/usr/include,${EPREFIX}/usr/$(get_libdir)" - use static && myconf+=" --disable-shared" - use static || append-cxxflags -fPIC - - CXXFLAGS="${CXXFLAGS} ${mycxxflags}" unix/configure \ - ${myconf} \ - --host=${CHOST} \ - --prefix="${EPREFIX}/usr" \ - --libdir="${EPREFIX}/usr/$(get_libdir)" \ - --infodir="${EPREFIX}/usr/share/info" \ - --mandir="${EPREFIX}/usr/share/man" -} - -src_compile() { - emake SHLIB_LD="$(tc-getCXX) -shared -Wl,-soname,libmk4.so.2.4" - - if use python; then - python_copy_sources - - building() { - emake \ - SHLIB_LD="$(tc-getCXX) -shared" \ - pyincludedir="$(python_get_includedir)" \ - PYTHON_LIB="$(python_get_library)" \ - python - } - python_execute_function -s building - fi -} - -src_install () { - default - - mv "${ED}"//usr/$(get_libdir)/libmk4.so{,.2.4} - dosym libmk4.so.2.4 /usr/$(get_libdir)/libmk4.so.2 - dosym libmk4.so.2.4 /usr/$(get_libdir)/libmk4.so - - if use python; then - installation() { - dodir "$(python_get_sitedir)" || return 1 - emake \ - DESTDIR="${D}" \ - pylibdir="$(python_get_sitedir)" \ - install-python - } - python_execute_function -s installation - fi - - dohtml Metakit.html - dohtml -a html,gif,png,jpg -r doc/* -} - -pkg_postinst() { - if use python; then - python_mod_optimize metakit.py - fi -} - -pkg_postrm() { - if use python; then - python_mod_cleanup metakit.py - fi -} |