| 1 | # Copyright 1999-2012 Gentoo Foundation |
1 | # Copyright 1999-2012 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.125 2012/04/19 14:52:12 pesa Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.127 2012/05/02 17:09:17 pesa Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: qt4-build.eclass |
5 | # @ECLASS: qt4-build.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Qt herd <qt@gentoo.org> |
7 | # Qt herd <qt@gentoo.org> |
| 8 | # @BLURB: Eclass for Qt4 split ebuilds. |
8 | # @BLURB: Eclass for Qt4 split ebuilds. |
| … | |
… | |
| 46 | fi |
46 | fi |
| 47 | if version_is_at_least 4.8; then |
47 | if version_is_at_least 4.8; then |
| 48 | IUSE+=" c++0x qpa" |
48 | IUSE+=" c++0x qpa" |
| 49 | fi |
49 | fi |
| 50 | |
50 | |
| 51 | DEPEND="dev-util/pkgconfig" |
51 | DEPEND="virtual/pkgconfig" |
| 52 | if [[ ${QT4_BUILD_TYPE} == live ]]; then |
52 | if [[ ${QT4_BUILD_TYPE} == live ]]; then |
| 53 | DEPEND+=" dev-lang/perl" |
53 | DEPEND+=" dev-lang/perl" |
| 54 | fi |
54 | fi |
| 55 | |
55 | |
| 56 | RDEPEND=" |
56 | RDEPEND=" |
| … | |
… | |
| 502 | # @DESCRIPTION: |
502 | # @DESCRIPTION: |
| 503 | # For MacOS X we need to add some symlinks when frameworks are |
503 | # For MacOS X we need to add some symlinks when frameworks are |
| 504 | # being used, to avoid complications with some more or less stupid packages. |
504 | # being used, to avoid complications with some more or less stupid packages. |
| 505 | fix_includes() { |
505 | fix_includes() { |
| 506 | if use aqua && [[ ${CHOST##*-darwin} -ge 9 ]]; then |
506 | if use aqua && [[ ${CHOST##*-darwin} -ge 9 ]]; then |
|
|
507 | local frw dest f h rdir |
| 507 | # Some packages tend to include <Qt/...> |
508 | # Some packages tend to include <Qt/...> |
| 508 | dodir "${QTHEADERDIR#${EPREFIX}}"/Qt |
509 | dodir "${QTHEADERDIR#${EPREFIX}}"/Qt |
| 509 | |
510 | |
| 510 | # Fake normal headers when frameworks are installed... eases life later on |
511 | # Fake normal headers when frameworks are installed... eases life later |
| 511 | local dest f h |
512 | # on, make sure we use relative links though, as some ebuilds assume |
|
|
513 | # these dirs exist in src_install to add additional files |
|
|
514 | f=${QTHEADERDIR} |
|
|
515 | h=${QTLIBDIR} |
|
|
516 | while [[ -n ${f} && ${f%%/*} == ${h%%/*} ]] ; do |
|
|
517 | f=${f#*/} |
|
|
518 | h=${h#*/} |
|
|
519 | done |
|
|
520 | rdir=${h} |
|
|
521 | f="../" |
|
|
522 | while [[ ${h} == */* ]] ; do |
|
|
523 | f="${f}../" |
|
|
524 | h=${h#*/} |
|
|
525 | done |
|
|
526 | rdir="${f}${rdir}" |
|
|
527 | |
| 512 | for frw in "${D}${QTLIBDIR}"/*.framework; do |
528 | for frw in "${D}${QTLIBDIR}"/*.framework; do |
| 513 | [[ -e "${frw}"/Headers ]] || continue |
529 | [[ -e "${frw}"/Headers ]] || continue |
| 514 | f=$(basename ${frw}) |
530 | f=$(basename ${frw}) |
| 515 | dest="${QTHEADERDIR#${EPREFIX}}"/${f%.framework} |
531 | dest="${QTHEADERDIR#${EPREFIX}}"/${f%.framework} |
| 516 | dosym "${QTLIBDIR#${EPREFIX}}"/${f}/Headers "${dest}" |
532 | dosym "${rdir}"/${f}/Headers "${dest}" |
| 517 | |
533 | |
| 518 | # Link normal headers as well. |
534 | # Link normal headers as well. |
| 519 | for hdr in "${D}/${QTLIBDIR}/${f}"/Headers/*; do |
535 | for hdr in "${D}/${QTLIBDIR}/${f}"/Headers/*; do |
| 520 | h=$(basename ${hdr}) |
536 | h=$(basename ${hdr}) |
| 521 | dosym "${QTLIBDIR#${EPREFIX}}"/${f}/Headers/${h} "${QTHEADERDIR#${EPREFIX}}"/Qt/${h} |
537 | dosym "../${rdir}"/${f}/Headers/${h} \ |
|
|
538 | "${QTHEADERDIR#${EPREFIX}}"/Qt/${h} |
| 522 | done |
539 | done |
| 523 | done |
540 | done |
| 524 | fi |
541 | fi |
| 525 | } |
542 | } |
| 526 | |
543 | |