blob: fdd2f3d5e03f293b2ec907c954aaf29dd7133589 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="prefix"
inherit gnustep-2
MY_PN=${PN/p/P}
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}-${PV/_/}.tar.gz"
LICENSE="LGPL-2.1 Elm"
KEYWORDS="~amd64 ~x86"
SLOT="0"
DEPEND="dev-libs/openssl"
RDEPEND="${DEPEND}"
src_install() {
gnustep-base_src_install
dodoc ${S}/Documentation/*
docinto rfc
dodoc ${S}/Documentation/RFC/*
}
|