summaryrefslogtreecommitdiff
blob: 2bb9891665f0ca86be555e19d4a8779ed7df6495 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnustep-libs/rigs/rigs-0.2.2.20050714.ebuild,v 1.2 2005/07/15 16:47:52 swegener Exp $

inherit gnustep

DESCRIPTION="Ruby Interface for GNUstep."
HOMEPAGE="http://www.gnustep.org/experience/RIGS.html"
SRC_URI="mirror://gentoo/${P}.tar.bz2"

KEYWORDS="~x86 ~ppc"
LICENSE="LGPL-2.1 GPL-2"
SLOT="0"

IUSE="doc"
DEPEND="${GS_DEPEND}
	dev-lang/ruby"
RDEPEND="${GS_RDEPEND}
	dev-lang/ruby"

egnustep_install_domain "Local"

src_unpack() {
	unpack ${A}
	cd ${S}
	epatch ${FILESDIR}/${P}-install-rb.patch
}

src_install() {
	gnustep_src_install

	# install shared library
	RUBY_SITE_ARCH_DIR=$(ruby -rrbconfig -e 'print Config::CONFIG["sitearchdir"]')
	dodir ${RUBY_SITE_ARCH_DIR}
	cd ${S}/Source/obj
	if use debug; then
		#dolib librigs_d.so
		if [ "${GNUSTEP_FLATTENED}" ]; then
			dosym \
				${GNUSTEP_LOCAL_ROOT}/Library/Libraries/librigs_d.so \
				${RUBY_SITE_ARCH_DIR}/librigs.so
		else
			dosym \
				${GNUSTEP_LOCAL_ROOT}/Library/Libraries/${GNUSTEP_HOST_CPU}/${GNUSTEP_HOST_OS}/${LIBRARY_COMBO}/librigs_d.so \
				${RUBY_SITE_ARCH_DIR}/librigs.so
		fi
	else
		#dolib librigs.so
		if [ "${GNUSTEP_FLATTENED}" ]; then
			dosym \
				${GNUSTEP_LOCAL_ROOT}/Library/Libraries/librigs.so \
				${RUBY_SITE_ARCH_DIR}/librigs.so
		else
			dosym \
				${GNUSTEP_LOCAL_ROOT}/Library/Libraries/${GNUSTEP_HOST_CPU}/${GNUSTEP_HOST_OS}/${LIBRARY_COMBO}/librigs.so \
				${RUBY_SITE_ARCH_DIR}/librigs.so
		fi
	fi

	# Install .rb files
	RUBY_SITE_LIB_DIR=$(ruby -rrbconfig -e 'print Config::CONFIG["sitelibdir"]')
	dodir ${RUBY_SITE_LIB_DIR}/rigs
	cd ${S}/Ruby
	cp -f rigs.rb Foundation.rb AppKit.rb ${D}/${RUBY_SITE_LIB_DIR}
	cd ${S}/Ruby/rigs
	RB_FILES=$(ls *.rb -1 --color=never)
	cp -f ${RB_FILES} ${D}/${RUBY_SITE_LIB_DIR}/rigs

	# install examples
	if use doc; then
		cd ${S}
		dodir ${GNUSTEP_LOCAL_ROOT}/Library/Documentation/RIGS
		cp -a Examples ${D}/${GNUSTEP_LOCAL_ROOT}/Library/Documentation/RIGS
		rm -Rf \
			${D}/${GNUSTEP_LOCAL_ROOT}/Library/Documentation/RIGS/Examples/CVS \
			${D}/${GNUSTEP_LOCAL_ROOT}/Library/Documentation/RIGS/Examples/Base/CVS \
			${D}/${GNUSTEP_LOCAL_ROOT}/Library/Documentation/RIGS/Examples/Gui/CVS
	fi
}