2005-07-20 00:30:40 +00:00
|
|
|
bin_PROGRAMS = conky
|
|
|
|
|
|
|
|
if BUILD_SETI
|
|
|
|
seti = seti.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
if BUILD_MPD
|
|
|
|
mpd = mpd.c libmpdclient.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
if BUILD_LINUX
|
|
|
|
linux = linux.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
if BUILD_SOLARIS
|
|
|
|
solaris = solaris.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
if BUILD_FREEBSD
|
|
|
|
freebsd = freebsd.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
if BUILD_NETBSD
|
|
|
|
netbsd = netbsd.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
if BUILD_CAIRO
|
|
|
|
cairo = cairo.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
if BUILD_METAR
|
|
|
|
metar = ftp.c metarinfo.c
|
|
|
|
METAR_LIBS = -lmetar
|
|
|
|
endif
|
|
|
|
|
|
|
|
if BUILD_MLDONKEY
|
|
|
|
mldonkey = mldonkey.c
|
|
|
|
endif
|
|
|
|
|
2005-08-08 01:18:52 +00:00
|
|
|
if BUILD_X11
|
|
|
|
x11 = x11.c
|
|
|
|
endif
|
|
|
|
|
2005-07-20 00:30:40 +00:00
|
|
|
conky_SOURCES = common.c fs.c top.c $(linux) mail.c mixer.c $(seti) $(mpd) \
|
2005-08-08 01:18:52 +00:00
|
|
|
$(solaris) $(freebsd) $(netbsd) $(cairo) conky.c conky.h $(x11) $(metar) \
|
2005-08-08 06:05:49 +00:00
|
|
|
$(mldonkey) remoted.c remoted.h remotec.c remotec.h
|
2005-07-20 00:30:40 +00:00
|
|
|
|
|
|
|
conky_LDFLAGS = $(X11_LIBS) $(XFT_LIBS) $(CAIRO_LIBS)
|
|
|
|
|
|
|
|
conky_LDADD = $(METAR_LIBS)
|
|
|
|
|
|
|
|
man_MANS = conky.1
|
|
|
|
|
2005-08-12 04:54:26 +00:00
|
|
|
LIBS = -lm -lpthread
|
2005-07-20 00:30:40 +00:00
|
|
|
|
|
|
|
if HAVE_HELP2MAN
|
|
|
|
conky.1: conky conky.x
|
|
|
|
help2man -h -h -v -V -i conky.x -o conky.1 -N ./conky
|
|
|
|
endif
|
|
|
|
|
|
|
|
# conky.1 is in EXTRA_DIST in case that someone doesn't have help2man
|
2005-08-07 06:11:36 +00:00
|
|
|
EXTRA_DIST = conkyrc.sample conky.1 conky.x \
|
|
|
|
app-admin/conky/conky-1.2.ebuild
|
2005-07-20 00:30:40 +00:00
|
|
|
|
|
|
|
EXTRA_conky_SOURCES = seti.c linux.c solaris.c freebsd.c netbsd.c mpd.c libmpdclient.c \
|
2005-08-08 06:05:49 +00:00
|
|
|
cairo.c libmpdclient.h top.h mldonkey.c ftp.c metarinfo.c ftp.h metarinfo.h x11.c
|