blob: 1256aa8baf15b06d3d464f28c54655fbc0b29bfe (
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/libodbc++/libodbc++-0.2.5.ebuild,v 1.1 2010/02/19 21:41:22 robbat2 Exp $
EAPI=2
inherit eutils flag-o-matic
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~x86"
DESCRIPTION="Libodbc++ is a c++ class library that provides a subset of the well-known JDBC 2.0(tm) and runs on top of ODBC."
SRC_URI="mirror://sourceforge/libodbcxx/${P}.tar.bz2"
HOMEPAGE="http://libodbcxx.sourceforge.net/"
LICENSE="LGPL-2.1"
SLOT=0
IUSE="qt3"
DEPEND="dev-db/unixODBC
sys-libs/ncurses"
RDEPEND="${DEPEND}"
SB="${S}-build"
SB_MT="${S}-build-mt"
# non-mt QT does not build presently.
#SB_QT="${S}-build_qt"
SB_QT_MT="${S}-build_qt-mt"
src_unpack() {
unpack ${A}
cd "${S}"
#epatch "${FILESDIR}"/${PN}-0.2.3-std-streamsize.patch
epatch "${FILESDIR}"/${PN}-0.2.3-doxygen.patch
epatch "${FILESDIR}"/${PN}-0.2.3-gcc41.patch
#epatch "${FILESDIR}"/${PN}-0.2.3-gcc43.patch
#epatch "${FILESDIR}"/${PN}-0.2.3-typecast.patch
epatch "${FILESDIR}"/${PN}-0.2.3-gcc44.patch
# Fix configure to use ncurses instead of termcap (bug #103105)
sed -i -e 's~termcap~ncurses~g' configure
}
src_configure() {
local commonconf buildlist
commonconf="--with-odbc=/usr --without-tests"
commonconf="${commonconf} --enable-static --enable-shared"
# " --enable-threads"
export ECONF_SOURCE="${S}"
append-flags -DODBCXX_DISABLE_READLINE_HACK
buildlist="${SB} ${SB_MT}"
use qt3 && buildlist="${buildlist} $SB_QT $SB_QT_MT"
for sd in ${buildlist}; do
einfo "Doing configure pass for $sd"
mkdir -p "${sd}"
cd "${sd}"
commonconf2=''
LIBS=''
[ "${sd}" == "${SB_MT}" -o "${sd}" == "${SB_QT_MT}" ] && commonconf2="${commonconf2} --enable-threads"
[ "${sd}" == "${SB_QT}" -o "${sd}" == "${SB_QT_MT}" ] && commonconf2="${commonconf2} --with-qt"
# isql++ tool fails to compile:
#libodbc++-0.2.5/isql++/isql++.cpp: In constructor 'Isql::Isql(odbc::Connection*)':
#libodbc++-0.2.5/isql++/isql++.cpp:275: error: invalid cast to function type 'char** ()()'
#[ "${sd}" == "${SB}" ] && commonconf2="${commonconf2} --with-isqlxx"
# Upstream configure is broken as well, passing --without or
# --with-isqlxx=no will turn it ON instead of forcing it off.
#commonconf2="${commonconf2} _-without-isqlxx"
[ "${sd}" == "${SB_QT}" ] && commonconf2="${commonconf2} --with-qtsqlxx"
export LIBS
# using without-qt breaks the build
#--without-qt \
econf \
${commonconf} \
${commonconf2} \
|| die "econf failed"
done
}
src_compile() {
local buildlist failures
buildlist="${SB} ${SB_MT}"
use qt3 && buildlist="${buildlist} $SB_QT $SB_QT_MT"
for sd in ${buildlist}; do
einfo "Doing compile pass for $sd"
cd "${sd}"
emake LIBS='' || failures="${failures} ${sd//${S}-}"
done
[ -n "${failures}" ] && die "Failures: ${failures}"
}
src_install () {
cd "${S}"
dodoc AUTHORS BUGS ChangeLog NEWS README THANKS TODO
buildlist="${SB} ${SB_MT}"
use qt3 && buildlist="${buildlist} $SB_QT $SB_QT_MT"
for sd in ${buildlist}; do
einfo "Doing install pass for $sd"
cd ${sd}
emake DESTDIR="${D}" install || die "make install failed"
done
}
|