summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-irc/sic/sic-0.5.ebuild')
-rw-r--r--net-irc/sic/sic-0.5.ebuild41
1 files changed, 0 insertions, 41 deletions
diff --git a/net-irc/sic/sic-0.5.ebuild b/net-irc/sic/sic-0.5.ebuild
deleted file mode 100644
index d7845ba00..000000000
--- a/net-irc/sic/sic-0.5.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-inherit toolchain-funcs
-
-DESCRIPTION="an extremly simple IRC client"
-HOMEPAGE="http://suckless.org/view/simple+irc+client"
-SRC_URI="http://suckless.org/download/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND=""
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- sed -i \
- -e "s/.*strip.*//" \
- Makefile || die "sed failed"
-
- sed -i \
- -e "s/CFLAGS = -Os/CFLAGS +=/" \
- -e "s/LDFLAGS =/LDFLAGS +=/" \
- config.mk || die "sed failed"
-}
-
-src_compile() {
- emake CC=$(tc-getCC) || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" PREFIX="/usr" install || die "emake install failed"
-
- dodoc README
-}