summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <drac@gentoo.org>2008-02-11 15:19:47 +0000
committerSamuli Suominen <drac@gentoo.org>2008-02-11 15:19:47 +0000
commit3c8dfd33959f54fa99924c7fb87d3de25c576539 (patch)
tree231109d7562b18a964c64ac390f8d2b9d06e87ba /sys-libs
parentfew updates from toolchain.eclass, changed how patches are grouped, added few... (diff)
downloadgentoo-2-3c8dfd33959f54fa99924c7fb87d3de25c576539.tar.gz
gentoo-2-3c8dfd33959f54fa99924c7fb87d3de25c576539.tar.bz2
gentoo-2-3c8dfd33959f54fa99924c7fb87d3de25c576539.zip
old
(Portage version: 2.1.4.3)
Diffstat (limited to 'sys-libs')
-rw-r--r--sys-libs/slang/slang-2.1.3.ebuild41
1 files changed, 0 insertions, 41 deletions
diff --git a/sys-libs/slang/slang-2.1.3.ebuild b/sys-libs/slang/slang-2.1.3.ebuild
deleted file mode 100644
index 0ee29ebe9fa6..000000000000
--- a/sys-libs/slang/slang-2.1.3.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/slang/slang-2.1.3.ebuild,v 1.11 2008/02/11 11:44:57 drac Exp $
-
-inherit eutils
-
-DESCRIPTION="a portable programmer's library designed to allow a developer to create robust portable software."
-HOMEPAGE="http://www.s-lang.org"
-SRC_URI="ftp://ftp.fu-berlin.de/pub/unix/misc/slang/v${PV%.*}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="pcre png"
-
-RDEPEND="pcre? ( dev-libs/libpcre )
- png? ( media-libs/libpng )"
-DEPEND="${RDEPEND}
- !=sys-libs/slang-2.1.2"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${PN}-2.1.2-slsh-libs.patch
-}
-
-src_compile() {
- econf $(use_with pcre) $(use_with png)
- emake -j1 elf static || die "emake elf static failed."
- cd slsh
- emake -j1 slsh || die "emake slsh failed."
-}
-
-src_install() {
- emake -j1 DESTDIR="${D}" install-all || die "emake install failed."
-
- rm -rf "${D}"/usr/share/doc/{slang,slsh}
-
- dodoc NEWS README *.txt doc/{,internal,text}/*.txt
- dohtml doc/slangdoc.html slsh/doc/html/*.html
-}