diff options
author | Caleb Tennis <caleb@gentoo.org> | 2006-03-16 13:51:28 +0000 |
---|---|---|
committer | Caleb Tennis <caleb@gentoo.org> | 2006-03-16 13:51:28 +0000 |
commit | 24dce6b01a11c6b62651fe405ff588e2ca18810f (patch) | |
tree | 4933b7f4d32d6acc34ecb0aa51e1e9a76932cc45 /dev-db/sqsh/sqsh-2.1.3.ebuild | |
parent | Removed depend =app-text/tetex-1* since !>=app-text/tetex-2 is enough. (diff) | |
download | gentoo-2-24dce6b01a11c6b62651fe405ff588e2ca18810f.tar.gz gentoo-2-24dce6b01a11c6b62651fe405ff588e2ca18810f.tar.bz2 gentoo-2-24dce6b01a11c6b62651fe405ff588e2ca18810f.zip |
Migrate to modular X
(Portage version: 2.1_pre6-r3)
Diffstat (limited to 'dev-db/sqsh/sqsh-2.1.3.ebuild')
-rw-r--r-- | dev-db/sqsh/sqsh-2.1.3.ebuild | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/dev-db/sqsh/sqsh-2.1.3.ebuild b/dev-db/sqsh/sqsh-2.1.3.ebuild deleted file mode 100644 index 9ff7b2b61ead..000000000000 --- a/dev-db/sqsh/sqsh-2.1.3.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/sqsh/sqsh-2.1.3.ebuild,v 1.2 2005/04/07 04:05:55 mr_bones_ 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" - -LICENSE="GPL-2" -SLOT="0" -IUSE="readline X motif" -KEYWORDS="~x86 ~amd64" - -DEPEND="dev-db/freetds - readline? ( sys-libs/readline ) - X? ( virtual/x11 ) - motif? ( x11-libs/openmotif ) - virtual/libc" - -src_compile() { - export SYBASE=/usr - - local myconf - - use motif && myconf="--with-motif" - - econf \ - $(use_with readline) \ - $(use_with X x) \ - ${myconf} || die - - emake \ - SQSHRC_GLOBAL=/etc/sqshrc || die -} - -src_install () { - einstall \ - SQSHRC_GLOBAL=${D}/etc/sqshrc || die - - make man_dir=${D}/usr/share/man install.man || die - dodoc INSTALL README doc/* -} |