Search Criteria
Package Details: edelib 2.1-1
Git Clone URL: | https://aur.archlinux.org/edelib.git (read-only, click to copy) |
---|---|
Package Base: | edelib |
Description: | Component construction library for Equinox Desktop Environment |
Upstream URL: | http://equinox-project.org/ |
Licenses: | |
Submitter: | keenerd |
Maintainer: | keenerd |
Last Packager: | keenerd |
Votes: | 15 |
Popularity: | 0.000000 |
First Submitted: | 2012-05-19 12:27 |
Last Updated: | 2017-03-09 22:01 |
Latest Comments
1 2 Next › Last »
bidulock commented on 2018-06-01 11:17
When you change depends=() and other significant changes, you need to increase pkgrel!
keenerd commented on 2017-03-09 22:01
Great work, thank you!
samuelgrigolato commented on 2017-03-09 21:04
I was having problems trying to install this package. The build would not finish complaining about some missing references (is_macro, is_inport and is_outport). I followed [1] and got the build to work by changing the PKGBUILD as follows:
diff --git a/PKGBUILD b/PKGBUILD
index 9e44d93..7075695 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -11,13 +11,16 @@ license=('LGPL')
depends=('fltk' 'dbus' 'libstdc++5' 'python')
makedepends=('ftjam')
source=("http://downloads.sourceforge.net/project/ede/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz"
- 'edelib.3592.patch')
+ 'edelib.3592.patch'
+ 'https://raw.githubusercontent.com/edeproject/edelib/master/edelib/ts/scheme.h')
md5sums=('2e6ee2e1ceaea327967ed55868a1cb9f'
- '530ddd4bbf774eb99a4fff3e7e705891')
+ '530ddd4bbf774eb99a4fff3e7e705891'
+ '4bfecfa9ab33550bb28e918a57dcbdc9')
prepare() {
cd "$srcdir/$pkgname-$pkgver"
patch -Np1 -i "$srcdir/edelib.3592.patch"
+ cp "$srcdir/scheme.h" "$srcdir/edelib-2.1/edelib/ts"
}
There probably is a better approach (I have no experience managing AUR packages so far), but I hope this is sufficient to to pave the way for a proper package update.
[1] https://sourceforge.net/p/ede/discussion/249616/thread/f1b2dd27/
AGTT commented on 2016-11-09 17:46
For me, in build(), jam fails.
The errors were (in brief):
...failed Link test/run_tests ...
...failed Link examples/theme ...
...failed Link examples/script_editor ...
...failed Link tools/edelib-dbus-explorer/edelib-dbus-explorer ...
I think this bug is it/related: http://bugs.equinox-project.org/show_bug.cgi?id=183
Maybe change 'jam' to 'jam || true' (like elsewhere) to fix it for now?
bidulock commented on 2016-08-16 04:39
Dependency must change from 'dbus-core' to 'dbus' as dbus package no longer provides 'dbus-core'.
akilesh1597 commented on 2014-11-16 07:01
I get build error
undefined reference for fl_disable_transient_for
undefined reference for fl_show_iconic
Any idea what I am missing?
bidulock commented on 2013-08-04 07:47
[brian@petunia edelib]$ namcap edelib-2.0-2-x86_64.pkg.tar.xz
edelib W: Package was 71% docs by size; maybe you should split out a docs package
edelib W: Dependency included and not needed ('libstdc++5')
kraileth commented on 2012-08-29 10:20
keenerd: I don't think that it would be of much use to start a seperate SVN-package. EDE doesn't have too many users at all and splitting up edelib is probably not a good thing. Also this SVN-version is just a fix that will become obsolete with the next regular version. Just wanted to bring to attention here that a fixed version exists.
keenerd commented on 2012-08-16 14:30
kraileth, I think you want to start maintaining the edelib-svn package.
kraileth commented on 2012-08-13 13:16
There is an update (icon fix) available via SVN which you may want to upgrade to: edelib 2.0.1.
It's only posted on the EDE forums. You don't have to search for it, though - just remove source and md5sum and replace the "build" part before ./autogen.sh with:
build() {
cd "$srcdir"
svn co https://ede.svn.sourceforge.net/svnroot/ede/branches/edelib-2.0.1
cd "$pkgname-$pkgver"