proj/gentoo: Initial commit
[gentoo.git] / eclass / go-mono.eclass
1 # Copyright 1999-2013 Gentoo Foundation
2 # Distributed under the terms of the GNU General Public License v2
3 # $Id$
4
5 # @ECLASS: go-mono.eclass
6 # @MAINTAINER:
7 # dotnet@gentoo.org
8 # @BLURB: Common functionality for go-mono.org apps
9 # @DESCRIPTION:
10 # Common functionality needed by all go-mono.org apps.
11
12 inherit base versionator mono
13
14 PRE_URI="http://mono.ximian.com/monobuild/preview/sources"
15
16 GIT_PN="${PN/mono-debugger/debugger}"
17
18 ESVN_STORE_DIR="${PORTAGE_ACTUAL_DISTDIR:-${DISTDIR}}/svn-src/mono"
19
20 GO_MONO_SUB_BRANCH=${GO_MONO_SUB_BRANCH}
21
22 if [[ "${PV%_rc*}" != "${PV}" ]]
23 then
24         GO_MONO_P="${P%_rc*}"
25         SRC_URI="${PRE_URI}/${PN}/${GO_MONO_P}.tar.bz2 -> ${P}.tar.bz2"
26         S="${WORKDIR}/${GO_MONO_P}"
27 elif [[ "${PV%_pre*}" != "${PV}" ]]
28 then
29         GO_MONO_P="${P%_pre*}"
30         SRC_URI="${PRE_URI}/${PN}/${GO_MONO_P}.tar.bz2 -> ${P}.tar.bz2"
31         S="${WORKDIR}/${GO_MONO_P}"
32 elif [[ "${PV}" == "9999" ]]
33 then
34         GO_MONO_P=${P}
35         EGIT_REPO_URI="http://github.com/mono/${GIT_PN}.git"
36         SRC_URI=""
37         inherit autotools git
38 elif [[ "${PV%.9999}" != "${PV}" ]]
39 then
40         GO_MONO_P=${P}
41         EGIT_REPO_URI="http://github.com/mono/${GIT_PN}.git"
42         EGIT_BRANCH="mono-$(get_version_component_range 1)-$(get_version_component_range 2)${GO_MONO_SUB_BRANCH}"
43         SRC_URI=""
44         inherit autotools git
45 else
46         GO_MONO_P=${P}
47         SRC_URI="http://download.mono-project.com/sources/${PN}/${P}.tar.bz2"
48 fi
49
50
51 NO_MONO_DEPEND=( "dev-lang/mono" "dev-dotnet/libgdiplus" "dev-dotnet/gluezilla" )
52
53 if [[ "$(get_version_component_range 3)" != "9999" ]]
54 then
55         GO_MONO_REL_PV="$(get_version_component_range 1-2)"
56
57 else
58         GO_MONO_REL_PV="${PV}"
59 fi
60
61 if ! has "${CATEGORY}/${PN}" "${NO_MONO_DEPEND[@]}"
62 then
63         RDEPEND=">=dev-lang/mono-${GO_MONO_REL_PV}"
64         DEPEND="${RDEPEND}"
65 fi
66
67 DEPEND="${DEPEND}
68         virtual/pkgconfig
69         userland_GNU? ( >=sys-apps/findutils-4.4.0 )"
70
71 # @FUNCTION: go-mono_src_unpack
72 # @DESCRIPTION:
73 # Runs default()
74 go-mono_src_unpack() {
75         if [[ "${PV%.9999}" != "${PV}" ||  "${PV}" == "9999" ]]
76         then
77                 default
78                 git_src_unpack
79         else
80                 default
81         fi
82 }
83
84 # @FUNCTION: go-mono_src_prepare
85 # @DESCRIPTION:
86 # Runs autopatch from base.eclass, if PATCHES is set.
87 go-mono_src_prepare() {
88         if [[ "${PV%.9999}" != "${PV}" ||  "${PV}" == "9999" ]]
89         then
90                 base_src_prepare
91                 [[ "$EAUTOBOOTSTRAP" != "no" ]] && eautoreconf
92         else
93                 base_src_prepare
94         fi
95 }
96
97 # @FUNCTION: go-mono_src_configure
98 # @DESCRIPTION:
99 # Runs econf, disabling static libraries and dependency-tracking.
100 go-mono_src_configure() {
101         econf   --disable-dependency-tracking           \
102                 --disable-static                        \
103                 "$@"
104 }
105
106 # @FUNCTION: go-mono_src_compile
107 # @DESCRIPTION:
108 # Runs emake.
109 go-mono_src_compile() {
110         emake "$@" || die "emake failed"
111 }
112
113 # @ECLASS-VARIABLE: DOCS
114 # @DESCRIPTION:
115 # Insert path of docs you want installed. If more than one,
116 # consider using an array.
117
118 # @FUNCTION: go-mono_src_install
119 # @DESCRIPTION:
120 # Rune emake, installs common doc files, if DOCS is
121 # set, installs those. Gets rid of .la files.
122 go-mono_src_install () {
123         emake -j1 DESTDIR="${D}" "$@" install || die "install failed"
124         mono_multilib_comply
125         local   commondoc=( AUTHORS ChangeLog README TODO )
126         for docfile in "${commondoc[@]}"
127         do
128                 [[ -e "${docfile}" ]] && dodoc "${docfile}"
129         done
130         if [[ "${DOCS[@]}" ]]
131         then
132                 dodoc "${DOCS[@]}" || die "dodoc DOCS failed"
133         fi
134         find "${D}" -name '*.la' -exec rm -rf '{}' '+' || die "la removal failed"
135 }
136
137 EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_install