blob: 83e5bdbf80f0725c39c7ab9a1beb77639dbae87f (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/qscintilla/qscintilla-1.5.1.ebuild,v 1.11 2006/02/17 15:36:55 agriffis Exp $
inherit eutils toolchain-funcs
SCINTILLA_VER="1.62"
MY_P="${PN}-${SCINTILLA_VER}-gpl-${PV}"
MY_P=${MY_P/_pre/snapshot-}
S=${WORKDIR}/${MY_P}
DESCRIPTION="QScintilla is a port to Qt of Neil Hodgson's Scintilla C++ editor class."
HOMEPAGE="http://www.riverbankcomputing.co.uk/qscintilla/"
#SRC_URI="http://www.river-bank.demon.co.uk/download/snapshots/QScintilla/${MY_P}.tar.gz"
#SRC_URI="http://www.river-bank.demon.co.uk/download/QScintilla/${MY_P}.tar.gz"
SRC_URI="mirror://gentoo/${MY_P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86"
IUSE="doc"
DEPEND="virtual/libc
sys-apps/sed
=x11-libs/qt-3*"
LIBDIR="${ROOT}/usr/$(get_libdir)"
src_unpack() {
unpack ${A} ; cd ${S}/qt
sed -i -e "s:DESTDIR = \$(QTDIR)/lib:DESTDIR = \${destdir}:" qscintilla.pro
echo -e "\nQMAKE_CFLAGS_RELEASE=${CFLAGS} -w\nQMAKE_CXXFLAGS_RELEASE=${CXXFLAGS} -w\nQMAKE_LFLAGS_RELEASE=${LDFLAGS}" >> qscintilla.pro
${QTDIR}/bin/qmake -o Makefile qscintilla.pro
epatch ${FILESDIR}/${PN}-1.5-sandbox.patch
}
src_compile() {
cd ${S}/qt
# It uses g++'s syntax while linking (-Wl,) so it can't use tc-getLD.
make destdir=${LIBDIR} all staticlib CC="$(tc-getCC)" CXX="$(tc-getCXX)" LINK="$(tc-getCXX)" || die "make failed"
}
src_install() {
dodoc ChangeLog LICENSE NEWS README README.MacOS
dodir /usr/include ${LIBDIR} /usr/share/qscintilla/translations
cd ${S}/qt
cp qextscintilla*.h "${D}/usr/include"
cp qscintilla*.qm "${D}/usr/share/qscintilla/translations"
cp libqscintilla.a* "${D}${LIBDIR}"
cp -d libqscintilla.so.* "${D}${LIBDIR}"
dodir ${QTDIR}/translations/
for I in $(ls -1 qscintilla*.qm) ; do
dosym "/usr/share/qscintilla/translations/${I}" "${QTDIR}/translations/${I}"
done
if use doc ; then
dohtml ${S}/doc/html/*
insinto /usr/share/doc/${PF}/Scintilla
doins ${S}/doc/Scintilla/*
fi
}
|