summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Mende <angelos@gentoo.org>2010-06-25 22:32:12 +0000
committerChristoph Mende <angelos@gentoo.org>2010-06-25 22:32:12 +0000
commit79f1130b0c969c754609ca726b943e77c282866b (patch)
treed16aaf7890bfec367a90ac01185289f0e75b5e09
parentFix usage of python_set_active_version() and python_pkg_setup() (bug #313549). (diff)
downloadgentoo-2-79f1130b0c969c754609ca726b943e77c282866b.tar.gz
gentoo-2-79f1130b0c969c754609ca726b943e77c282866b.tar.bz2
gentoo-2-79f1130b0c969c754609ca726b943e77c282866b.zip
Removed old
(Portage version: 2.1.8.3/cvs/Linux x86_64)
-rw-r--r--net-irc/eiwic/eiwic-1.1.3.ebuild54
1 files changed, 0 insertions, 54 deletions
diff --git a/net-irc/eiwic/eiwic-1.1.3.ebuild b/net-irc/eiwic/eiwic-1.1.3.ebuild
deleted file mode 100644
index ac13fecddc4f..000000000000
--- a/net-irc/eiwic/eiwic-1.1.3.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/eiwic/eiwic-1.1.3.ebuild,v 1.5 2009/02/09 16:58:10 angelos Exp $
-
-inherit autotools eutils multilib flag-o-matic
-
-DESCRIPTION="A modular IRC bot written in C"
-HOMEPAGE="http://lordi.styleliga.org/eiwic/"
-SRC_URI="http://lordi.styleliga.org/eiwic/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~x86"
-IUSE="debug doc ipv6 rss"
-
-DEPEND="rss? ( media-libs/raptor )"
-RDEPEND="${DEPEND}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- sed -i "/^set MODULE_PATH/s:modules:/usr/$(get_libdir)/eiwic:" sample.conf
- sed -i "/^load MODULE/s:$:.so:" sample.conf
- epatch "${FILESDIR}"/${P}-ldflags.patch
- eautoreconf
-}
-
-src_compile() {
- econf \
- $(use_enable debug vv-debug) \
- $(use_enable ipv6)
- emake || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "install failed"
- dodoc AUTHORS ChangeLog README NEWS TODO sample.conf
-
- if use doc; then
- dohtml doc/*
- fi
-}
-
-pkg_postinst() {
- echo
- einfo "You need a configuration file to run eiwic"
- einfo "A sample configuration was installed to"
- einfo "/usr/share/doc/${PF}/"
- echo
- if use debug; then
- einfo "For debugging options please see eiwic -h"
- echo
- fi
-}