blob: 7d1fe672d975d615f86799227c6db6484c2d3fea (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/qscintilla/qscintilla-1.60.ebuild,v 1.7 2004/07/18 17:23:22 weeve Exp $
inherit eutils
MY_P=${P}-gpl-1.3
S=${WORKDIR}/${MY_P}
DESCRIPTION="QScintilla is a port to Qt of Neil Hodgson's Scintilla C++ editor class."
SRC_URI="mirror://gentoo/${MY_P}.tar.gz"
HOMEPAGE="http://www.riverbankcomputing.co.uk/qscintilla/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc sparc alpha ~ia64 ~amd64"
IUSE="doc"
DEPEND="virtual/libc
x11-libs/qt"
src_compile() {
cd ${S}/qt
qmake -o Makefile qscintilla.pro
sed -i -e "s/CFLAGS = -pipe -w -O2/CFLAGS = ${CFLAGS} -w/" Makefile
sed -i -e "s/CXXFLAGS = -pipe -w -O2/CXXFLAGS = ${CXXFLAGS} -w/" Makefile
epatch ${FILESDIR}/${P}-sandbox.patch
make all staticlib
}
src_install() {
dodoc ChangeLog LICENSE NEWS README
dodir ${QTDIR}/{include,translations,lib}
cd ${S}/qt
cp qextscintilla*.h ${D}/$QTDIR/include
cp qscintilla*.qm ${D}/$QTDIR/translations
cp libqscintilla.a* ${D}/$QTDIR/lib
cp -d libqscintilla.so.* ${D}/$QTDIR/lib
use doc && ( dohtml ${S}/doc/html/*
insinto /usr/share/doc/${PF}/Scintilla
doins ${S}/doc/Scintilla/* )
}
|