Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 438290 - net-misc/mirall-1.1.0 - Could NOT find Csync (missing: CSYNC_LIBRARY CSYNC_INCLUDE_PATH)
Summary: net-misc/mirall-1.1.0 - Could NOT find Csync (missing: CSYNC_LIBRARY CSYNC_I...
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] KDE (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Gentoo KDE team
URL:
Whiteboard:
Keywords: EBUILD, PATCH
Depends on:
Blocks:
 
Reported: 2012-10-14 06:01 UTC by Alexandr Oleinik
Modified: 2012-10-15 08:20 UTC (History)
2 users (show)

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


Attachments
Fixed ebuild for net-misc/mirall-1.1.0 (mirall-1.1.0.ebuild,694 bytes, text/plain)
2012-10-14 06:01 UTC, Alexandr Oleinik
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Alexandr Oleinik 2012-10-14 06:01:03 UTC
Created attachment 326508 [details]
Fixed ebuild for net-misc/mirall-1.1.0

Mirall-1.1.0 doesn't compile because it cann't find csync include dir. The solution is to pass CSYNC_DIR to cmake-utils_src_configure. The fixed ebuild is attached.

Reproducible: Always
Comment 1 Dennis Schridde 2012-10-14 09:09:57 UTC
Dupe of bug #438214.
Comment 2 Jeroen Roovers (RETIRED) gentoo-dev 2012-10-14 18:25:17 UTC
(In reply to comment #1)
> Dupe of bug #438214.

Not really. That report is about the version bump and this one is about fixing it. :)
Comment 3 Jeroen Roovers (RETIRED) gentoo-dev 2012-10-14 18:25:45 UTC
Comment on attachment 326508 [details]
Fixed ebuild for net-misc/mirall-1.1.0

--- mirall-1.1.0.ebuild 2012-10-13 14:58:33.000000000 +0200
+++ -   2012-10-14 20:25:37.289730131 +0200
@@ -22,3 +22,8 @@
        x11-libs/qt-test:4
 "
 DEPEND="${RDEPEND}"
+
+src_configure() {
+       export CSYNC_DIR="/usr/include/ocsync/"
+       cmake-utils_src_configure
+}
Comment 4 Tomáš Chvátal (RETIRED) gentoo-dev 2012-10-15 08:20:09 UTC
Thanks for the report, I was using internal csync so I didn't notice.