From 66ebdecc478cc43f4f2d63e458b67d2736851603 Mon Sep 17 00:00:00 2001 From: Christian Parpart Date: Wed, 31 Jan 2007 19:49:21 +0000 Subject: cleaned out old ebuilds --- dev-libs/swl/swl-0.4.0_rc5.ebuild | 58 --------------------------------------- 1 file changed, 58 deletions(-) delete mode 100644 dev-libs/swl/swl-0.4.0_rc5.ebuild (limited to 'dev-libs/swl/swl-0.4.0_rc5.ebuild') diff --git a/dev-libs/swl/swl-0.4.0_rc5.ebuild b/dev-libs/swl/swl-0.4.0_rc5.ebuild deleted file mode 100644 index f84de43f8e3e..000000000000 --- a/dev-libs/swl/swl-0.4.0_rc5.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/swl/swl-0.4.0_rc5.ebuild,v 1.2 2005/07/20 11:05:19 dholm Exp $ - -inherit flag-o-matic multilib - -DESCRIPTION="SWL is a C++ cross platform library." -HOMEPAGE="http://swl.trapni-akane.org/" -SRC_URI="http://upstream.trapni-akane.org/swl/${P/_/-}.tar.gz" -LICENSE="LGPL-2.1" -SLOT="0.4" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="acl crypt debug doc ipv6" - -DEPEND="acl? ( >=sys-apps/acl-2.2.27 ) - >=sys-libs/glibc-2.3.4 - >=sys-devel/gcc-3.4.3 - crypt? ( >=dev-libs/libgcrypt-1.2.0 ) - doc? ( >=app-doc/doxygen-1.3.9.1 )" - -S="${WORKDIR}/${P/_/-}" - -src_compile() { - use debug && append-flags -g3 - use debug || append-flags -DNDEBUG=1 - - ./configure \ - --prefix="/usr" \ - --host="${CHOST}" \ - --libdir="/usr/$(get_libdir)" \ - `use_enable acl` \ - `use_enable crypt crypto` \ - `use_enable ipv6` \ - --without-tests \ - --without-examples \ - || die "./configure for ABI ${ABI} failed" - - emake || die "make for ABI ${ABI} failed" - - if use doc; then - ewarn "TODO: generate docs {html,man} via doxygen" - #make -C doc api-docs - # XXX: install example/test files? - fi -} - -src_install() { - make install DESTDIR="${D}" || die - - if use doc; then - ewarn "TODO: install man-pages and html version via doxygen" - #dodoc -r doc/html - fi - - dodoc AUTHORS ChangeLog* NEWS README* TODO -} - -# vim:ai:noet:ts=4:nowrap -- cgit v1.2.3-65-gdbad