Package Details: ede 2.1-1

Git Clone URL: https://aur.archlinux.org/ede.git (read-only, click to copy)
Package Base: ede
Description: The lightweight Equinox Desktop Environment
Upstream URL: https://edeproject.org/
Licenses: LGPL
Conflicts: pekwm
Provides: pekwm
Submitter: haawda
Maintainer: iamawacko
Last Packager: iamawacko
Votes: 20
Popularity: 0.000000
First Submitted: 2008-11-09 11:03 (UTC)
Last Updated: 2024-06-15 17:47 (UTC)

Dependencies (3)

Required by (0)

Sources (1)

Latest Comments

1 2 3 Next › Last »

promethazine commented on 2024-12-31 19:41 (UTC)

Seems like the pkgbuild file has a typo because otherwise makepkg -si fails with "no such file or directory", so heres a patch in git format:

From c29c7c4f0825256a641c969faa966296d72d78a8 Mon Sep 17 00:00:00 2001
From: euochaisthai <notjerrycantrell@proton.me>
Date: Tue, 31 Dec 2024 22:21:48 +0300
Subject: [PATCH] PKGBUILD edits so u cd into the correct dir

---
 PKGBUILD | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/PKGBUILD b/PKGBUILD
index 238cabe..ebca124 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -20,7 +20,7 @@ source=(${pkgname}-${pkgver}.tar.gz::https://github.com/edeproject/ede/archive/e
 sha256sums=('65fd31c3dafbd7e79f859bd0bba4dfc6333c655a801d85119834f1345f87767b')

 build() {
-    cd "$srcdir/$pkgname-$pkgver"
+    cd "$srcdir/$pkgname-$pkgname-$pkgver"
     find ./ -type f -name '*.py' | xargs -n 1 sed -i 's|/usr/bin/env python$|/usr/bin/env python2|'
     CFLAGS="-mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -fPIC"
     CXXFLAGS="-mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -fPIC"
@@ -34,7 +34,7 @@ build() {
 }

 package() {
-    cd "$srcdir/$pkgname-$pkgver"
+    cd "$srcdir/$pkgname-$pkgname-$pkgver"
     jam prefix="$pkgdir/usr" install || true
     # use official pekwm eventually
     #rm -rf "$pkgdir/usr/etc/pekwm"
-- 
2.47.1

promethazine commented on 2024-12-01 11:50 (UTC)

Genuinely a beautiful DE judging by the screenshots, can't wait to try it out :)

mikearch commented on 2024-08-28 09:55 (UTC) (edited on 2024-08-28 10:29 (UTC) by mikearch)

This wont build without modifications to the PKGBuild as the tar file lists the source directory as ede-ede-2.1, while the PKGBuild looks for ede-2.1.

There are also no pekwm sources included, even though it is listed as provides, it's also listed as conflict. This is fine, however pekwm that is included fails to build with a lot of error messages.

A very hacky, dirty and broken way of making it work is installing pekwem first, and then remove

/usr/share/pekwm/themes/default/menuline.png /usr/share/pekwm/themes/default/title.png /usr/share/pekwm/themes/default/theme /usr/share/pekwm/scripts/pekwm_*

If you don't the ede package will refuse to install. You'll at least get the window manager working.

Also found this issue with how it is packaged:

https://github.com/edeproject/ede/issues/2

There are also no desktop icons and no menu icons, among other things that seem to not be working.

giovariot commented on 2021-12-03 14:33 (UTC)

Well, this is still using sources from the sourceforge repository (last updated in 2014). Currently there is a github repository whose last commit dates 2018 (https://github.com/edeproject/ede), so I think this could be considered out of date

keenerd commented on 2020-01-22 21:08 (UTC)

Why was this flagged out of date? There was no new version released.

<deleted-account> commented on 2012-10-03 16:52 (UTC)

late but at time: The AUR/PKGBUILd standard say try to not override the flags else if is need like the -fPIC probably a ${cxxflasg} -fPIC can by enought but I need watch another pkg with same problems for see wath is done there

tombenko commented on 2012-08-11 12:52 (UTC)

Wow, I like this DE! :) Small, fast and recalls sweet old memories. :) Thank You!

neuromancer85 commented on 2012-06-10 09:30 (UTC)

Thanks for the -fPIC fix. However, is there any reason to not use "-march=native -mtune=native" since the package is usually compiled for the machine where it will be installed?

<deleted-account> commented on 2012-06-10 02:09 (UTC)

if [ $CARCH = 'i686' ] ; then build flags for i686 then build flags for x86_64 fi Tip: If you have errors in build try to read them, in this case, all tips that i give to you are taken from error outputs

<deleted-account> commented on 2012-06-10 02:08 (UTC)

if [ $CARCH = 'i686' ] ; then build flags for i686 then build flags for x86_64 fi