Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 2259 - kdepim doesn't build kpilot by default
Summary: kdepim doesn't build kpilot by default
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Dan Armak (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-04-29 21:27 UTC by Matthew Turk (RETIRED)
Modified: 2002-04-30 14:35 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments
fixes kpilot's build (kdepim-3.0.ebuild,695 bytes, text/plain)
2002-04-29 21:31 UTC, Matthew Turk (RETIRED)
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Matthew Turk (RETIRED) gentoo-dev 2002-04-29 21:27:56 UTC
kdepim-3.0 doesn't seem to build kpilot, as the pilot-link includes are placed   in /usr/include/libpisock .  I've corrected this so that it builds properly,   and attached the updated ebuild.  If there are any problems in my setup, let me  know - I'm still learning.  ;-)    . /usr/portage/eclass/inherit.eclass || die  inherit kde-dist    DESCRIPTION="${DESCRIPTION}PIM"    DEPEND="$DEPEND sys-devel/perl"    newdepend "pda ? ( >=dev-libs/pilot-link-0.9.0 )"    src_compile() {          kde_src_compile myconf          use pda    && myconf="$myconf  --with-extra-includes=/usr/include/libpisock/"          echo $myconf                                                                          kde_src_compile configure make  }    src_install() {          kde_src_install          docinto html          dodoc *.html  }
Comment 1 Matthew Turk (RETIRED) gentoo-dev 2002-04-29 21:31:20 UTC
Created attachment 724 [details]
fixes kpilot's build

I mucked it all up by inlining it, so I'm attempting to fix it by attaching.
Comment 2 Dan Armak (RETIRED) gentoo-dev 2002-04-30 14:35:36 UTC
Committing as r1. Only difference to your version is that I moved the myconf modifier line outside src_compile; that way we don't need to crete an src_compile at all. Thanks for reporting!