Re: [e-users] make uninstall

2015-01-27 Thread John Holland
Does that require some setting change so that other apps using efl etc know to look there for libraries? Not sure what it would be, something like ldconfig or ld.so in /etc ?? On Jan 27, 2015, at 12:03 AM, Martinx - ジェームズ thiagocmarti...@gmail.com wrote: On 26 January 2015 at 23:34, David

Re: [e-users] make uninstall

2015-01-27 Thread David Seikel
On Tue, 27 Jan 2015 05:48:12 -0500 John Holland jholl...@vin-dit.org wrote: Does that require some setting change so that other apps using efl etc know to look there for libraries? Not sure what it would be, something like ldconfig or ld.so in /etc ?? Yep, depends on your OS, but in my case

Re: [e-users] make uninstall

2015-01-27 Thread Massimo Maiurana
David Seikel ha scritto il 27/01/2015 alle 12:36: On Tue, 27 Jan 2015 05:48:12 -0500 John Holland jholl...@vin-dit.org wrote: Does that require some setting change so that other apps using efl etc know to look there for libraries? Not sure what it would be, something like ldconfig or ld.so

Re: [e-users] make uninstall

2015-01-26 Thread Christopher Barry
On Mon, 26 Jan 2015 09:24:27 +0100 Pierre Couderc pie...@couderc.eu wrote: Thank you, John, Massimo, Dustin. I did not know make uninstall. snip... One thing to note about uninstall in a makefile, is that it's typically designed to uninstall the same version it's also installing. Thus if file

Re: [e-users] make uninstall

2015-01-26 Thread Martinx - ジェームズ
If a source code can be compiled and installed with simple ./configure ; make ; make install', then, to build a Debian package for it, it is just a matter of 5 minutes, or less, if you have a template ready to go.;-) On 26 January 2015 at 17:44, John Holland jholl...@vin-dit.org wrote: If

Re: [e-users] make uninstall

2015-01-26 Thread Martinx - ジェームズ
Cool! Take a look at the following Debian package I created for Rage: https://launchpad.net/~martinx/+archive/ubuntu/enlightenment/+files/rage_0.1.0-0utopic0.debian.tar.gz It is one of the simplest package I created so far (in fact, I copied it from other guy as an example and I modified it)...

Re: [e-users] make uninstall

2015-01-26 Thread David Seikel
Some of us when compiling from source will install it into something like /opt/efl so uninstalling it all becomes as simple as - sudo rm -fr /opt/efl Though typically I'll move that to /opt/efl_SAVED when compiling a new version, in case something goes terribly wrong. -- A big old stinking

Re: [e-users] make uninstall

2015-01-26 Thread Martinx - ジェームズ
On 26 January 2015 at 23:34, David Seikel onef...@gmail.com wrote: Some of us when compiling from source will install it into something like /opt/efl so uninstalling it all becomes as simple as - sudo rm -fr /opt/efl Though typically I'll move that to /opt/efl_SAVED when compiling a new

Re: [e-users] make uninstall

2015-01-26 Thread John Holland
I have posted my debian packages for enlightenment on this server. I found it challenging to create them. Getting dependencies straight was the hardest part. In the past I created some rpms and I found that easier. I prefer to use debian though. On January 26, 2015 5:00:43 PM EST, Martinx -