summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-06-15 16:52:11 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-06-15 16:52:11 +0000
commit8471ced671106a1ee8776ad5b74090a72628898e (patch)
tree4435c366d3c5b4eebfd4592f7e57d0a18493591d /dev-libs/stfl
parentRemoving epause reported in bug 324139 (diff)
downloadgentoo-2-8471ced671106a1ee8776ad5b74090a72628898e.tar.gz
gentoo-2-8471ced671106a1ee8776ad5b74090a72628898e.tar.bz2
gentoo-2-8471ced671106a1ee8776ad5b74090a72628898e.zip
Delete older ebuilds.
Diffstat (limited to 'dev-libs/stfl')
-rw-r--r--dev-libs/stfl/stfl-0.17.ebuild76
-rw-r--r--dev-libs/stfl/stfl-0.18.ebuild75
2 files changed, 0 insertions, 151 deletions
diff --git a/dev-libs/stfl/stfl-0.17.ebuild b/dev-libs/stfl/stfl-0.17.ebuild
deleted file mode 100644
index b8f5b8071454..000000000000
--- a/dev-libs/stfl/stfl-0.17.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/stfl/stfl-0.17.ebuild,v 1.6 2009/03/09 21:03:27 mr_bones_ Exp $
-
-EAPI=2
-inherit eutils perl-module python toolchain-funcs
-
-DESCRIPTION="A library which implements a curses-based widget set for text terminals"
-HOMEPAGE="http://www.clifford.at/stfl/"
-SRC_URI="http://www.clifford.at/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-3"
-SLOT="0"
-KEYWORDS="x86"
-
-IUSE="examples perl ruby"
-
-COMMON_DEPEND="sys-libs/ncurses[unicode]
- perl? ( dev-lang/perl )
- ruby? ( dev-lang/ruby )"
-
-DEPEND="${COMMMON_DEPEND}
- perl? ( dev-lang/swig )
- ruby? ( dev-lang/swig )"
-
-RDEPEND="${COMMON_DEPEND}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- sed -i \
- -e "s!-Os -ggdb!!" \
- -e "s!^all:.*!all: libstfl.a!" \
- Makefile
-
- python_version
- sed -i -e "s:/usr/lib/python2.4:${D}/usr/lib/python${PYVER}:" \
- python/Makefile.snippet
-
- if ! use perl; then
- echo "FOUND_PERL5=0" >>Makefile.cfg
- fi
- if ! use ruby; then
- echo "FOUND_RUBY=0" >>Makefile.cfg
- fi
-}
-
-src_compile() {
- emake -j1 CC="$(tc-getCC)" || die "make failed"
-}
-
-src_install() {
- local exdir="/usr/share/doc/${PF}/examples"
-
- dodir /usr/lib/python${PYVER}/lib-dynload
- emake -j1 prefix="/usr" DESTDIR="${D}" install || die "make install failed"
-
- dodoc README
-
- if use examples; then
- insinto ${exdir}
- doins example.{c,stfl}
- insinto ${exdir}/python
- doins python/example.py
- if use perl; then
- insinto ${exdir}/perl
- doins perl5/example.pl
- fi
- if use ruby; then
- insinto ${exdir}/ruby
- doins ruby/example.rb
- fi
- fi
-
- fixlocalpod
-}
diff --git a/dev-libs/stfl/stfl-0.18.ebuild b/dev-libs/stfl/stfl-0.18.ebuild
deleted file mode 100644
index ec293b92c344..000000000000
--- a/dev-libs/stfl/stfl-0.18.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/stfl/stfl-0.18.ebuild,v 1.4 2009/03/09 21:03:27 mr_bones_ Exp $
-
-EAPI="2"
-inherit eutils multilib perl-module python toolchain-funcs
-
-DESCRIPTION="A library which implements a curses-based widget set for text terminals"
-HOMEPAGE="http://www.clifford.at/stfl/"
-SRC_URI="http://www.clifford.at/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-IUSE="examples perl ruby"
-
-DEPEND="sys-libs/ncurses[unicode]
- perl? ( dev-lang/swig dev-lang/perl )
- ruby? ( dev-lang/swig dev-lang/ruby )"
-
-RDEPEND="sys-libs/ncurses[unicode]
- perl? ( dev-lang/perl )
- ruby? ( dev-lang/ruby )"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- sed -i \
- -e "s!-Os -ggdb!!" \
- -e "s!^all:.*!all: libstfl.a!" \
- Makefile
-
- epatch "${FILESDIR}/${P}-multilib.patch"
- python_version
- sed -i -e "s:/usr/lib/python2.4:${D}/usr/lib/python${PYVER}:" \
- python/Makefile.snippet
-
- if ! use perl; then
- echo "FOUND_PERL5=0" >>Makefile.cfg
- fi
- if ! use ruby; then
- echo "FOUND_RUBY=0" >>Makefile.cfg
- fi
-}
-
-src_compile() {
- emake -j1 CC="$(tc-getCC)" || die "make failed"
-}
-
-src_install() {
- local exdir="/usr/share/doc/${PF}/examples"
-
- dodir /usr/lib/python${PYVER}/lib-dynload
- emake -j1 prefix="/usr" DESTDIR="${D}" LIBDIR="$(get_libdir)" install || die "make install failed"
-
- dodoc README
-
- if use examples; then
- insinto ${exdir}
- doins example.{c,stfl}
- insinto ${exdir}/python
- doins python/example.py
- if use perl; then
- insinto ${exdir}/perl
- doins perl5/example.pl
- fi
- if use ruby; then
- insinto ${exdir}/ruby
- doins ruby/example.rb
- fi
- fi
-
- fixlocalpod
-}