blob: 500068070e20cdc1e06d38896211716d1c3a1ccd (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnustep-libs/objcunit/objcunit-1.2.ebuild,v 1.4 2006/03/26 09:14:37 grobian Exp $
S=${WORKDIR}/ObjcUnit-1.2/ObjcUnit
inherit gnustep
DESCRIPTION="ObjcUnit: a unit testing framework for Obj-C on MacOSX and GNUstep"
HOMEPAGE="http://oops.se/objcunit/"
#SRC_URI="ftp://ftp.oops.se/pub/software/ObjcUnit/ObjcUnit-${PV}.tar.gz"
# note: we cannot take original upstream sources, as they need GNUstep
# patches, which are included in below URL
SRC_URI="http://xanthippe.dyndns.org/Zipper/ObjcUnit-${PV}-GNUstep.tar.gz"
KEYWORDS="~ppc ~x86"
LICENSE="IBM"
SLOT="0"
IUSE=""
DEPEND="${GS_DEPEND}"
RDEPEND="${GS_RDEPEND}"
egnustep_install_domain "System"
src_install() {
egnustep_env
egnustep_install || die
if use doc ; then
egnustep_env
egnustep_doc || die
fi
egnustep_package_config
dosym `egnustep_install_domain`/Library/Frameworks/ObjcUnit.framework/Headers `egnustep_install_domain`/Library/Headers/ObjcUnit
}
|