diff options
Diffstat (limited to 'dev-db/odbtp/odbtp-1.1.4.ebuild')
-rw-r--r-- | dev-db/odbtp/odbtp-1.1.4.ebuild | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/dev-db/odbtp/odbtp-1.1.4.ebuild b/dev-db/odbtp/odbtp-1.1.4.ebuild deleted file mode 100644 index fa6048a6e8f1..000000000000 --- a/dev-db/odbtp/odbtp-1.1.4.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit eutils toolchain-funcs - -DESCRIPTION="Fast, efficient TCP/IP protocol for connecting to Win32-based databases" -HOMEPAGE="http://odbtp.sourceforge.net/" -SRC_URI="mirror://sourceforge/odbtp/${P}.tar.gz" - -LICENSE="GPL-2 LGPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc" - -src_unpack() { - unpack ${A} - cd "${S}" - - # Patch according to the README.64bitOS - use amd64 && epatch "${FILESDIR}/${P}-amd64.patch" -} - -src_compile() { - # respect $CC (bug #243768) - tc-export CC - econf || die "econf failed" - emake -j1 || die "emake failed" -} - -src_install() { - make DESTDIR="${D}" install || die "make install failed" - - # Install various documentation - dodoc AUTHORS INSTALL NEWS README* - if use doc ; then - dohtml -r docs/* - fi -} |