diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2005-04-06 20:31:36 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2005-04-06 20:31:36 +0000 |
commit | de3ff7497edf0959f56cb3d69e27955e031e4ac5 (patch) | |
tree | 5f6f428ae283bafc4ed214d2645a4111fe28cb8d /dev-db | |
parent | make sure ppc compiles this with -O2 rather than -O3 which causes breakage. ... (diff) | |
download | historical-de3ff7497edf0959f56cb3d69e27955e031e4ac5.tar.gz historical-de3ff7497edf0959f56cb3d69e27955e031e4ac5.tar.bz2 historical-de3ff7497edf0959f56cb3d69e27955e031e4ac5.zip |
clean out cruft
Package-Manager: portage-1.585-cvs
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/sqsh/Manifest | 2 | ||||
-rw-r--r-- | dev-db/sqsh/files/digest-sqsh-2.1 | 1 | ||||
-rw-r--r-- | dev-db/sqsh/sqsh-2.1.ebuild | 57 |
3 files changed, 0 insertions, 60 deletions
diff --git a/dev-db/sqsh/Manifest b/dev-db/sqsh/Manifest index a8bbd0b1b094..73412cd78f00 100644 --- a/dev-db/sqsh/Manifest +++ b/dev-db/sqsh/Manifest @@ -1,6 +1,4 @@ MD5 7b96f2d3a1ec07f7a9733ea1a6d14116 ChangeLog 1402 MD5 6509e9226ac1a3b27bc9e6c6ce5513bb sqsh-2.1-r1.ebuild 1337 -MD5 bd336913d5a6f1d53a51e0d23b2e8b59 sqsh-2.1.ebuild 1328 MD5 b22849774e1f051fc6a523993f7f6325 files/config.patch 543 -MD5 19272f9055a78c6035e2f605dad0268c files/digest-sqsh-2.1 64 MD5 19272f9055a78c6035e2f605dad0268c files/digest-sqsh-2.1-r1 64 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/* -} |