diff options
Diffstat (limited to 'dev-haskell/hdbc-odbc/hdbc-odbc-1.1.3.0.ebuild')
-rw-r--r-- | dev-haskell/hdbc-odbc/hdbc-odbc-1.1.3.0.ebuild | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/dev-haskell/hdbc-odbc/hdbc-odbc-1.1.3.0.ebuild b/dev-haskell/hdbc-odbc/hdbc-odbc-1.1.3.0.ebuild deleted file mode 100644 index c87e83547aa8..000000000000 --- a/dev-haskell/hdbc-odbc/hdbc-odbc-1.1.3.0.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hdbc-odbc/hdbc-odbc-1.1.3.0.ebuild,v 1.3 2010/07/12 13:18:10 slyfox Exp $ - -CABAL_FEATURES="lib profile haddock" -inherit haskell-cabal versionator - -MY_PN=HDBC-odbc -MY_P=${MY_PN}-${PV} - -DESCRIPTION="ODBC database driver for HDBC" -HOMEPAGE="http://software.complete.org/hdbc-odbc" -SRC_URI="http://hackage.haskell.org/packages/archive/${MY_PN}/${PV}/${MY_P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="" - -hdbc_PV=$(get_version_component_range 1-3) - -DEPEND=">=dev-lang/ghc-6.4.1 - dev-haskell/mtl - =dev-haskell/hdbc-${hdbc_PV}* - >=dev-db/unixODBC-2.2" - -S="${WORKDIR}/${MY_P}" - -CABAL_CONFIGURE_FLAGS="--constraint=base<4" - -src_unpack() { - unpack ${A} - - cp "${FILESDIR}/hdbc-odbc-helper.h" "${S}/" - - cabal-mksetup - echo "Extra-Libraries: odbc" >> "${S}/${MY_PN}.cabal" - sed -i -e 's/GHC-Options: -O2 -Wall/GHC-Options: -fvia-C/' \ - -e '/^Extensions:/a \ - , ForeignFunctionInterface' \ - "${S}/${MY_PN}.cabal" - - if version_is_at_least "6.8" "$(ghc-version)"; then - echo "GHC-Options: -XPatternSignatures" >> "${S}/${MY_PN}.cabal" - fi -} |