blob: d8d87bae6af670e4d4752e5a7212629e143efd2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnustep-libs/pantomime/pantomime-1.2.0.20060925.ebuild,v 1.1 2006/10/11 20:21:55 grobian Exp $
inherit gnustep
MY_PN=${PN/p/P}
MY_PV=${PV%.*}
S=${WORKDIR}/${MY_PN}
DESCRIPTION="A set of Objective-C classes that model a mail system."
HOMEPAGE="http://www.collaboration-world.com/pantomime/"
SRC_URI="http://www.collaboration-world.com/pantomime.data/releases/Stable/${MY_PN}-${MY_PV}pre2.tar.gz"
LICENSE="LGPL-2.1 Elm"
KEYWORDS="~x86 ~ppc"
SLOT="0"
IUSE=""
DEPEND="${GS_DEPEND}
dev-libs/openssl"
RDEPEND="${GS_RDEPEND}
dev-libs/openssl"
egnustep_install_domain "System"
src_install() {
egnustep_env
egnustep_install
dodoc ${S}/Documentation/*
docinto rfc
dodoc ${S}/Documentation/RFC/*
}
|