1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-12-26 12:27:52 +00:00
Go to file
2008-12-08 16:19:35 +01:00
app-admin/conky updating ebuild 2008-04-22 23:07:24 +00:00
data Merge with conky1-extra, Changelog contains the changes 2008-06-21 20:37:58 +00:00
debian Reformatted all code 2008-02-20 20:30:45 +00:00
doc drop docs of dropped objects 2008-12-08 16:11:39 +01:00
extras Merge with conky1-extra, Changelog contains the changes 2008-06-21 20:37:58 +00:00
m4 Reformatted all code 2008-02-20 20:30:45 +00:00
src rewrite hddtemp 2008-12-08 16:01:15 +01:00
.gitignore remove the automatically created README from git 2008-12-08 16:03:46 +01:00
AUTHORS First commit to fresh new hip git repo for Conky. 2008-12-06 23:03:24 -07:00
autogen.sh First commit to fresh new hip git repo for Conky. 2008-12-06 23:03:24 -07:00
buildubu.sh fixing some debian stuff 2005-11-17 00:28:32 +00:00
changelog2html.py Update README, fix file perms for changelog2html.py. 2008-12-07 01:35:56 -07:00
ChangeLog update changelog 2008-12-08 16:19:35 +01:00
config.rpath add config.rpath to satisfy AM_ICONV 2007-01-08 01:10:12 +00:00
configure.ac.in * Introduced (buggy) support for IMAP IDLE 2008-09-24 06:59:45 +00:00
Conky.kdevelop some small misc bug fixes 2005-09-05 02:09:31 +00:00
COPYING doc cleanup 2008-03-31 04:56:39 +00:00
INSTALL Initial revision 2005-07-20 00:30:40 +00:00
LICENSE.BSD clarifying licensing 2007-08-10 19:53:44 +00:00
LICENSE.GPL clarifying licensing 2007-08-10 19:53:44 +00:00
Makefile.am removed gnulib completely. use a simple getnameinfo function check for --enable-portmon. 2008-07-07 20:09:37 +00:00
NEWS Reformatted all code 2008-02-20 20:30:45 +00:00
README.svn-version Removed all trailing whitespace 2008-06-15 18:38:33 +00:00
TODO todo reminders 2006-11-23 02:28:47 +00:00

QUICK & EASY:
	$ sh autogen.sh
	$ ./configure
	$ make
	$ ./src/conky # to run Conky
	# make install

First, read the README. This contains instructions specific to building conky
Fresh from a SVN checkout:

* Conky requires three "auto-tools", with at least the specific version numbers.
	Make sure these are installed:

	aclocal-1.9
	automake-1.9
	autoconf-2.59

* In the directory where you checked out conky from SVN,
	run "aclocal", "automake", and then "autoconf".
	Make sure you run those commands with the latest versions...
	it is very possible that older versions are installed, and
	plain "automake" really means automake-1.4, not what we want,
	but "automake-1.9" instead.
	Use the "--version" option to check the program version, i.e.
	"autoconf --version".

	You can also try using the autogen.sh script, like so:

	$ sh autogen.sh

* After that, it's the familiar

	$ ./configure
	$ make
	# make install

	You might have to do the last step as root.