9fee9c7be4
eventually, but it seems to contain some packages that aren't in kde-4.2 yet). svn path=/nixpkgs/trunk/; revision=14481
13 lines
360 B
Bash
Executable file
13 lines
360 B
Bash
Executable file
source ${stdenv}/setup
|
|
|
|
myPatchPhase()
|
|
{
|
|
echo "Fixing dbus calls in CMakeLists.txt files"
|
|
# Trailing slash in sed is essential
|
|
find .. -name CMakeLists.txt \
|
|
| xargs sed -e "s@\${DBUS_INTERFACES_INSTALL_DIR}/@${kdelibs}/share/dbus-1/interfaces/@" -i
|
|
sed -e '/^#define HAS_RANDR_1_2 1$/d' -i ../kcontrol/randr/randr.h
|
|
}
|
|
patchPhase=myPatchPhase
|
|
genericBuild
|