Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 143878 Details for
Bug 162846
dev-cpp/poco (new ebuild)
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
Poco 1.3.2 ebuild
poco-1.3.2.ebuild (text/plain), 1.89 KB, created by
Keith R.
on 2008-02-18 14:28:05 UTC
(
hide
)
Description:
Poco 1.3.2 ebuild
Filename:
MIME Type:
Creator:
Keith R.
Created:
2008-02-18 14:28:05 UTC
Size:
1.89 KB
patch
obsolete
>#Copyright 1999-2008 Gentoo Foundation >#Distributed under the terms of the GNU General Public License v2 ># $Header: $ > >inherit toolchain-funcs > >DESCRIPTION="C++ POrtable C0mponents framework" >HOMEPAGE="http://pocoproject.org/poco/info/index.html" >SRC_URI="mirror://sourceforge/${PN}/${P}-data.tar.bz2 > !odbc? ( !ssl? ( mirror://sourceforge/${PN}/${P}.tar.bz2 ) ) > !odbc? ( ssl? ( mirror://sourceforge/${PN}/${P}-ssl.tar.bz2 ) )" > >LICENSE="Boost" >SLOT="0" >KEYWORDS="~x86" >IUSE="examples test odbc ssl" >S=${WORKDIR}/${P}-data > >DEPEND="!build? ( > odbc? ( > ssl? ( > dev-libs/openssl > ) > dev-db/unixODBC > ) >)" > >src_unpack() { > unpack ${A} > if [ odbc ]; then > if [ ssl ]; then > S="${WORKDIR}/${P}-data" > else > die "SSL USE flag is required with odbc USE flag!" > fi > elif [ !odbc ]; then > if [ ssl ]; then > S="${WORKDIR}/${P}-ssl" > fi > fi > > cd "${S}" > > sed -i 's/"LINKMODE = SHARED"/"LINKMODE = BOTH"/' build/config/Linux \ > || die "sed linkmode failed!" > sed -i -e "s/CFLAGS =/CFLAGS = ${CFLAGS}/" build/config/Linux \ > || die "sed cflags failed!" > sed -i -e "s/CXXFLAGS = -Wall -Wno-sign-compare/CXXFLAGS = -Wall -Wno-sign-compare ${CXXFLAGS}/" build/config/Linux \ > || die "sed cxxflags failed!" > >} > >src_compile() { > local myconf="" > > if [ ! test ]; then > myconf="${myconf} --no-tests" > fi > > if [ ! examples ]; then > myconf="${myconf} --no-samples" > fi > > econf ${myconf} --prefix=/usr || die "econf failed!" > emake || die "emake failed" >} > >src_install() { > emake DESTDIR="${D}" install || die "Install failed" >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 162846
:
107480
|
107613
|
107615
|
107616
|
108643
|
143878
|
143989
|
144102
|
144104