diff options
Diffstat (limited to 'dev-db/sqsh/sqsh-2.1.4.ebuild')
-rw-r--r-- | dev-db/sqsh/sqsh-2.1.4.ebuild | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/dev-db/sqsh/sqsh-2.1.4.ebuild b/dev-db/sqsh/sqsh-2.1.4.ebuild deleted file mode 100644 index 22c785a9afe0..000000000000 --- a/dev-db/sqsh/sqsh-2.1.4.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/sqsh/sqsh-2.1.4.ebuild,v 1.3 2009/09/23 16:35:03 patrick Exp $ - -inherit eutils - -DESCRIPTION="Replacement for the venerable 'isql' program supplied by Sybase." -HOMEPAGE="http://sourceforge.net/projects/sqsh/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz - mirror://gentoo/${PN}-2.1.3-autotools.patch.bz2" - -LICENSE="GPL-2" -SLOT="0" -IUSE="readline X motif" -KEYWORDS="~x86 ~amd64 ~x86-fbsd" - -DEPEND="dev-db/freetds - readline? ( sys-libs/readline ) - X? ( - x11-libs/libXaw - x11-libs/libXt - x11-libs/libXext - x11-libs/libXmu - x11-libs/libX11 ) - motif? ( x11-libs/openmotif )" - -src_unpack() { - unpack ${A}; cd ${S} - epatch ${WORKDIR}/${PN}-2.1.3-autotools.patch - # Patch knicked from ports so that we don't pass -ldb when in a BSD - epatch ${FILESDIR}/${PN}-2.1.3-fbsd-configure.patch -} - -src_compile() { - export SYBASE=/usr - - local myconf - - econf \ - $(use_with readline) \ - $(use_with X x) \ - $(use_with motif) \ - ${myconf} || die - - emake || die -} - -src_install () { - einstall install.man || die - - dodoc INSTALL README doc/* -} |