summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2005-04-06 20:31:36 +0000
committerSeemant Kulleen <seemant@gentoo.org>2005-04-06 20:31:36 +0000
commit269b56c3ceaf58b03968101d313e8847fc2dbb6f (patch)
tree0f19a71d8a20575dab2224f519995cd93528ad7a /dev-db/sqsh
parentmake sure ppc compiles this with -O2 rather than -O3 which causes breakage. ... (diff)
downloadgentoo-2-269b56c3ceaf58b03968101d313e8847fc2dbb6f.tar.gz
gentoo-2-269b56c3ceaf58b03968101d313e8847fc2dbb6f.tar.bz2
gentoo-2-269b56c3ceaf58b03968101d313e8847fc2dbb6f.zip
clean out cruft
(Portage version: 1.585-cvs)
Diffstat (limited to 'dev-db/sqsh')
-rw-r--r--dev-db/sqsh/files/digest-sqsh-2.11
-rw-r--r--dev-db/sqsh/sqsh-2.1.ebuild57
2 files changed, 0 insertions, 58 deletions
diff --git a/dev-db/sqsh/files/digest-sqsh-2.1 b/dev-db/sqsh/files/digest-sqsh-2.1
deleted file mode 100644
index a1f69b1943e2..000000000000
--- a/dev-db/sqsh/files/digest-sqsh-2.1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 a9d75ae51eafd94f89640f99ee3a9918 sqsh-2.1-src.tar.gz 358874
diff --git a/dev-db/sqsh/sqsh-2.1.ebuild b/dev-db/sqsh/sqsh-2.1.ebuild
deleted file mode 100644
index f28f7766ca1e..000000000000
--- a/dev-db/sqsh/sqsh-2.1.ebuild
+++ /dev/null
@@ -1,57 +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.ebuild,v 1.13 2005/01/01 17:43:36 eradicator Exp $
-
-DESCRIPTION="Replacement for the venerable 'isql' program supplied by Sybase."
-HOMEPAGE="http://www.sqsh.org/"
-LICENSE="GPL-2"
-DEPEND="dev-db/freetds
- readline? ( sys-libs/readline )
- X? ( virtual/x11 )
- motif? ( x11-libs/openmotif )
- virtual/libc"
-SLOT="0"
-SRC_URI="http://www.sqsh.org/${P}-src.tar.gz"
-KEYWORDS="x86"
-IUSE="readline X motif"
-
-src_compile() {
- export SYBASE=/usr
-
- local myconf
-
- use readline \
- && myconf="${myconf} --with-readline"
-
- use X \
- && myconf="${myconf} --with-x"
-
- use motif \
- && myconf="${myconf} --with-motif"
-
- ./configure \
- ${myconf} \
- --host=${CHOST} \
- --prefix=/usr \
- --infodir=/usr/share/info \
- --mandir=/usr/share/man || die "./configure failed"
-
- patch src/config.h ${FILESDIR}/config.patch
-
- emake SQSHRC_GLOBAL=/etc/sqshrc || die
-}
-
-src_install () {
- make \
- DESTDIR=${D} \
- RPM_BUILD_ROOT=${D} \
- prefix=${D}/usr \
- mandir=${D}/usr/share/man \
- infodir=${D}/usr/share/info \
- install install.man || die
- # fix the silly placement of sqshrc
- mkdir -p ${D}/etc
- mv ${D}/usr/etc/sqshrc ${D}/etc/
- rmdir ${D}/usr/etc
- dodoc COPYING INSTALL README doc/*
-}