| 1 |
# Copyright 1999-2005 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/fox.eclass,v 1.12 2011/07/08 11:35:01 ssuominen Exp $
|
| 4 |
|
| 5 |
# @ECLASS: fox.eclass
|
| 6 |
# @MAINTAINER:
|
| 7 |
# mabi@gentoo.org
|
| 8 |
# @BLURB: Functionality required the FOX Toolkit and it's applications
|
| 9 |
# @DESCRIPTION:
|
| 10 |
# This eclass allows building SLOT-able FOX Toolkit installations
|
| 11 |
# (x11-libs/fox: headers, libs, and docs), which are by design
|
| 12 |
# parallel-installable, while installing only one version of the utils
|
| 13 |
# (dev-util/reswrap) and apps (app-editors/adie, sci-calculators/calculator,
|
| 14 |
# x11-misc/pathfinder, and x11-misc/shutterbug).
|
| 15 |
#
|
| 16 |
# Version numbering follows the kernel-style odd-even minor version
|
| 17 |
# designation. Even-number minor versions are API stable, which patch
|
| 18 |
# releases aimed mostly at the library; apps generally won't need to be
|
| 19 |
# bumped for a patch release.
|
| 20 |
#
|
| 21 |
# Odd-number versions are development branches with their own SLOT and
|
| 22 |
# are API unstable; changes are made to the apps, and likely need to be
|
| 23 |
# bumped together with the library.
|
| 24 |
#
|
| 25 |
# Here are sample [R]DEPENDs for the fox apps
|
| 26 |
# 1.6: 'x11-libs/fox:1.6'
|
| 27 |
# 1.7: '~x11-libs/fox-${PV}'
|
| 28 |
#
|
| 29 |
# EAPI phase trickery borrowed from enlightenment.eclass
|
| 30 |
|
| 31 |
inherit autotools versionator
|
| 32 |
|
| 33 |
|
| 34 |
FOX_EXPF="src_unpack src_compile src_install pkg_postinst"
|
| 35 |
case "${EAPI:-0}" in
|
| 36 |
2|3|4) FOX_EXPF+=" src_prepare src_configure" ;;
|
| 37 |
*) ;;
|
| 38 |
esac
|
| 39 |
EXPORT_FUNCTIONS ${FOX_EXPF}
|
| 40 |
|
| 41 |
# @ECLASS-VARIABLE: FOX_PV
|
| 42 |
# @DESCRIPTION:
|
| 43 |
# The version of the FOX Toolkit provided or required by the package
|
| 44 |
: ${FOX_PV:=${PV}}
|
| 45 |
|
| 46 |
# @ECLASS-VARIABLE: FOXVER
|
| 47 |
# @INTERNAL
|
| 48 |
# @DESCRIPTION:
|
| 49 |
# The major.minor version of FOX_PV, usually acts as $SLOT and is used in
|
| 50 |
# building the applications
|
| 51 |
FOXVER=$(get_version_component_range 1-2 ${FOX_PV})
|
| 52 |
|
| 53 |
# @ECLASS-VARIABLE: FOX_APPS
|
| 54 |
# @INTERNAL
|
| 55 |
# @DESCRIPTION:
|
| 56 |
# The applications originally packaged in the FOX Toolkit
|
| 57 |
FOX_APPS="adie calculator pathfinder shutterbug"
|
| 58 |
|
| 59 |
# @ECLASS-VARIABLE: FOXCONF
|
| 60 |
# @DEFAULT_UNSET
|
| 61 |
# @DESCRIPTION:
|
| 62 |
# Set this to add additional configuration options during src_configure
|
| 63 |
|
| 64 |
DESCRIPTION="C++ based Toolkit for developing Graphical User Interfaces easily and effectively"
|
| 65 |
HOMEPAGE="http://www.fox-toolkit.org/"
|
| 66 |
SRC_URI="ftp://ftp.fox-toolkit.org/pub/fox-${FOX_PV}.tar.gz"
|
| 67 |
|
| 68 |
IUSE="debug doc profile"
|
| 69 |
|
| 70 |
if [[ ${PN} != fox ]] ; then
|
| 71 |
FOX_COMPONENT="${FOX_COMPONENT:-${PN}}"
|
| 72 |
fi
|
| 73 |
|
| 74 |
if [[ -z ${FOX_COMPONENT} ]] ; then
|
| 75 |
DOXYGEN_DEP="doc? ( app-doc/doxygen )"
|
| 76 |
fi
|
| 77 |
|
| 78 |
if [[ ${PN} != reswrap ]] ; then
|
| 79 |
RESWRAP_DEP="dev-util/reswrap"
|
| 80 |
fi
|
| 81 |
|
| 82 |
DEPEND="${DOXYGEN_DEP}
|
| 83 |
${RESWRAP_DEP}
|
| 84 |
>=sys-apps/sed-4"
|
| 85 |
|
| 86 |
S="${WORKDIR}/fox-${FOX_PV}"
|
| 87 |
|
| 88 |
fox_src_unpack() {
|
| 89 |
unpack ${A}
|
| 90 |
cd "${S}"
|
| 91 |
|
| 92 |
has src_prepare ${FOX_EXPF} || fox_src_prepare
|
| 93 |
}
|
| 94 |
|
| 95 |
fox_src_prepare() {
|
| 96 |
# fox changed from configure.in to configure.am in 1.6.38
|
| 97 |
local confFile="configure.ac"
|
| 98 |
[[ -r "configure.in" ]] && confFile="configure.in"
|
| 99 |
|
| 100 |
# Respect system CXXFLAGS
|
| 101 |
sed -i -e 's:CXXFLAGS=""::' $confFile || die "sed ${confFile} error"
|
| 102 |
|
| 103 |
# don't strip binaries
|
| 104 |
sed -i -e '/LDFLAGS="-s ${LDFLAGS}"/d' $confFile || die "sed ${confFile} error"
|
| 105 |
|
| 106 |
# don't build apps from top-level (i.e. x11-libs/fox)
|
| 107 |
# utils == reswrap
|
| 108 |
local d
|
| 109 |
for d in ${FOX_APPS} utils windows ; do
|
| 110 |
sed -i -e "s:${d}::" Makefile.am || die "sed Makefile.am error"
|
| 111 |
done
|
| 112 |
|
| 113 |
# use the installed reswrap for everything else
|
| 114 |
for d in ${FOX_APPS} chart controlpanel tests ; do
|
| 115 |
[[ -d ${d} ]] &&
|
| 116 |
(sed -i -e 's:$(top_builddir)/utils/reswrap:reswrap:' \
|
| 117 |
${d}/Makefile.am || die "sed ${d}/Makefile.am error")
|
| 118 |
done
|
| 119 |
|
| 120 |
# use the installed headers and library for apps
|
| 121 |
for d in ${FOX_APPS} ; do
|
| 122 |
sed -i \
|
| 123 |
-e "s:-I\$(top_srcdir)/include -I\$(top_builddir)/include:-I\$(includedir)/fox-${FOXVER}:" \
|
| 124 |
-e 's:$(top_builddir)/src/libFOX:-lFOX:' \
|
| 125 |
-e 's:\.la::' \
|
| 126 |
${d}/Makefile.am || die "sed ${d}/Makefile.am error"
|
| 127 |
done
|
| 128 |
|
| 129 |
eautoreconf
|
| 130 |
}
|
| 131 |
|
| 132 |
fox_src_configure() {
|
| 133 |
use debug && FOXCONF+=" --enable-debug" \
|
| 134 |
|| FOXCONF+=" --enable-release"
|
| 135 |
|
| 136 |
econf ${FOXCONF} \
|
| 137 |
$(use_with profile profiling)
|
| 138 |
}
|
| 139 |
|
| 140 |
|
| 141 |
fox_src_compile() {
|
| 142 |
has src_configure ${FOX_EXPF} || fox_src_configure
|
| 143 |
|
| 144 |
cd "${S}/${FOX_COMPONENT}"
|
| 145 |
emake || die "compile error"
|
| 146 |
|
| 147 |
# build class reference docs (FOXVER >= 1.2)
|
| 148 |
if use doc && [[ -z ${FOX_COMPONENT} ]] ; then
|
| 149 |
emake -C "${S}"/doc docs || die "doxygen error"
|
| 150 |
fi
|
| 151 |
}
|
| 152 |
|
| 153 |
fox_src_install() {
|
| 154 |
cd "${S}/${FOX_COMPONENT}"
|
| 155 |
|
| 156 |
emake install \
|
| 157 |
DESTDIR="${D}" \
|
| 158 |
htmldir=/usr/share/doc/${PF}/html \
|
| 159 |
artdir=/usr/share/doc/${PF}/html/art \
|
| 160 |
screenshotsdir=/usr/share/doc/${PF}/html/screenshots \
|
| 161 |
|| die "install error"
|
| 162 |
|
| 163 |
# create desktop menu items for apps
|
| 164 |
case ${FOX_COMPONENT} in
|
| 165 |
adie)
|
| 166 |
newicon big_gif.gif adie.gif
|
| 167 |
make_desktop_entry adie "Adie Text Editor" adie.gif
|
| 168 |
;;
|
| 169 |
calculator)
|
| 170 |
newicon bigcalc.gif foxcalc.gif
|
| 171 |
make_desktop_entry calculator "FOX Calculator" foxcalc.gif
|
| 172 |
;;
|
| 173 |
pathfinder)
|
| 174 |
newicon iconpath.gif pathfinder.gif
|
| 175 |
make_desktop_entry PathFinder "PathFinder" pathfinder.gif "FileManager"
|
| 176 |
;;
|
| 177 |
shutterbug)
|
| 178 |
doicon shutterbug.gif
|
| 179 |
make_desktop_entry shutterbug "ShutterBug" shutterbug.gif "Graphics"
|
| 180 |
;;
|
| 181 |
esac
|
| 182 |
|
| 183 |
for doc in ADDITIONS AUTHORS LICENSE_ADDENDUM README TRACING ; do
|
| 184 |
[ -f $doc ] && dodoc $doc
|
| 185 |
done
|
| 186 |
|
| 187 |
# remove documentation if USE=-doc
|
| 188 |
use doc || rm -fr "${D}/usr/share/doc/${PF}/html"
|
| 189 |
|
| 190 |
# install class reference docs if USE=doc
|
| 191 |
if use doc && [[ -z ${FOX_COMPONENT} ]] ; then
|
| 192 |
dohtml -r "${S}/doc/ref"
|
| 193 |
fi
|
| 194 |
|
| 195 |
# slot fox-config
|
| 196 |
if [[ -f ${D}/usr/bin/fox-config ]] ; then
|
| 197 |
mv "${D}/usr/bin/fox-config" "${D}/usr/bin/fox-${FOXVER}-config" \
|
| 198 |
|| die "failed to install fox-config"
|
| 199 |
fi
|
| 200 |
}
|
| 201 |
|
| 202 |
fox_pkg_postinst() {
|
| 203 |
if [ -z "${FOX_COMPONENT}" ] ; then
|
| 204 |
echo
|
| 205 |
einfo "Multiple versions of the FOX Toolkit library may now be installed"
|
| 206 |
einfo "in parallel SLOTs on the same system."
|
| 207 |
einfo
|
| 208 |
einfo "The reswrap utility and the applications included in the FOX Toolkit"
|
| 209 |
einfo "(adie, calculator, pathfinder, shutterbug) are now available as"
|
| 210 |
einfo "separate ebuilds."
|
| 211 |
echo
|
| 212 |
einfo "The fox-config script has been installed as fox-${FOXVER}-config."
|
| 213 |
einfo "The fox-wrapper package is used to direct calls to fox-config"
|
| 214 |
einfo "to the correct versioned script, based on the WANT_FOX variable."
|
| 215 |
einfo "For example:"
|
| 216 |
einfo
|
| 217 |
einfo " WANT_FOX=\"${FOXVER}\" fox-config <options>"
|
| 218 |
einfo
|
| 219 |
fi
|
| 220 |
}
|