Commit graph

318 commits

Author SHA1 Message Date
Doug Torrance f95b6655d1 wmclock: Add version 1.0.14 to repository.
Obtained from:
http://www.bluestop.org/wmclock/wmclock-1.0.14.tar.gz
2014-12-11 15:40:20 +00:00
Doug Torrance fc4f7f845c wmifinfo: Bump to version 0.10. 2014-12-09 11:17:56 +00:00
Doug Torrance fedf1586c2 wmifinfo: Add valid timeval.
Patch by Julien BLACHE from Debian:
http://sources.debian.net/src/wmifinfo/0.09-7/debian/patches/wmifinfo-timeval_fix.patch/

For more information, see:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=503416
2014-12-09 11:17:56 +00:00
Doug Torrance e34aacbd37 wmifinfo: Fix -Wformat compiler warnings. 2014-12-09 11:17:56 +00:00
Doug Torrance e6cd763cba wmifinfo: Fix -Wpedantic compiler warning. 2014-12-09 11:17:56 +00:00
Doug Torrance 2c511c999b wmifinfo: Remove C++ style comments. 2014-12-09 11:17:56 +00:00
Doug Torrance 83981ad8a3 wmifinfo: Fix -Wunused-result compiler warnings. 2014-12-09 11:17:56 +00:00
Doug Torrance 2521cf102f wmifinfo: Fix -Wunused-but-set-variable compiler warning. 2014-12-09 11:17:56 +00:00
Doug Torrance 592cd44621 wmifinfo: Fix -Wpointer-sign compiler warnings. 2014-12-09 11:17:56 +00:00
Doug Torrance 0e62034030 wmifinfo: Add manpage.
Adapted from Debian manpage:
http://sources.debian.net/src/wmifinfo/0.09-7/debian/wmifinfo.1/
2014-12-09 11:17:56 +00:00
Doug Torrance 6905ad773e wmifinfo: Update Makefile.
In particular, add support for common user-defined variables CFLAGS,
CPPFLAGS, LDFLAGS, DESTDIR, and PREFIX.  Also remove reference to
deprecated X11R6 directory and use install instead of cp for install
target.

Inspired by the Debian patches:
http://sources.debian.net/src/wmifinfo/0.09-7/debian/patches/makefile_add_ldflags.patch/
http://sources.debian.net/src/wmifinfo/0.09-7/debian/patches/makefile_patch.patch/
2014-12-09 11:17:56 +00:00
Robert Jacobs ad6d781c1a Keep mute state from getting out of sync with reality 2014-12-04 10:18:32 +00:00
Doug Torrance 20cb8b1e0f Add libdockapp information for dockapps webpage. 2014-11-28 18:08:48 +00:00
Doug Torrance 45e0863ded libdockapp: Release version 0.6.4. 2014-11-28 16:39:20 +00:00
Doug Torrance 7961c22e72 libdockapp: Update contact information. 2014-11-28 16:39:20 +00:00
Doug Torrance 536b9b677a libdockapp: Add update-changelog target to Makefile to update ChangeLog. 2014-11-28 16:39:20 +00:00
Doug Torrance 69a7c6f39b libdockapp: Add new ChangeLog, created by git2cl. 2014-11-28 16:39:20 +00:00
Doug Torrance 423d103fb3 libdockapp: Merge ChangeLog into NEWS (they were largely the same). 2014-11-28 16:39:20 +00:00
Doug Torrance 16088c0c34 libdockapp: Add #include <time.h> to basic example.
Otherwise, we get the following compiler warning:
basic.c: In function ‘main’:
basic.c:111:2: warning: implicit declaration of function ‘time’ [-Wimplicit-function-declaration]
  srandom(time(NULL));
  ^
2014-11-28 16:39:20 +00:00
Doug Torrance b22f634ce2 libdockapp: Replace example Imakefiles with Makefiles.
imake is deprecated.
2014-11-28 16:39:20 +00:00
Doug Torrance 19bf1f277f libdockapp: Use consistent code formatting.
Used uncrustify to minimize warnings and errors from checkpatch.pl in the
Window Maker source tree.
2014-11-28 16:39:20 +00:00
Doug Torrance b002ed2e01 libdockapp: Remove CVS cruft. 2014-11-28 16:39:20 +00:00
Doug Torrance d02f58d26d libdockapp: Remove trailing whitespace. 2014-11-28 16:30:06 +00:00
Doug Torrance 3c0684b235 libdockapp: Remove autotools-generated files. 2014-11-28 16:30:06 +00:00
Doug Torrance 2dd42394ac libdockapp: Add version 0.6.3 to repository.
Obtained from:
http://sourceforge.net/projects/libdockapp/files/libdockapp-0.6.3.tar.gz/download
2014-11-28 16:30:06 +00:00
Doug Torrance c34aababd9 wmacpi: Bump to version 2.3. 2014-11-24 09:35:58 +00:00
Doug Torrance 8530ba751d wmacpi: Fix -Wunused-result compiler warnings.
In particular,
libacpi.c: In function ‘power_init’:
libacpi.c:339:5: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result]
     fread(buf, 4096, 1, acpi);
     ^
libacpi.c: In function ‘procfs_get_power_status’:
libacpi.c:434:5: warning: ignoring return value of ‘fgets’, declared with attribute warn_unused_result [-Wunused-result]
     fgets(buf, 1024, file);
     ^
2014-11-24 09:35:58 +00:00
Doug Torrance dde6a84b93 wmacpi: Fix -Wunused-but-set-variable compiler warning.
In particular,
libacpi.c: In function ‘procfs_get_battery_info’:
libacpi.c:582:9: warning: variable ‘buflen’ set but not used [-Wunused-but-set-variable]
     int buflen;
         ^
2014-11-24 09:35:58 +00:00
Doug Torrance 3b0dceb28e wmacpi: Respect DESTDIR variable in Makefile, e.g., for package creation. 2014-11-24 09:35:58 +00:00
Doug Torrance 7232482853 wmacpi: Merge clean and clean-all targets in Makefile.
"make clean" should do the expected thing.
2014-11-24 09:35:58 +00:00
Doug Torrance d2808842d3 wmacpi: Remove deprecated /usr/X11R6/include directory from CFLAGS. 2014-11-24 09:35:58 +00:00
Doug Torrance 4a4d34c424 Fix warning in update-dockapps.pl.
In particular, dereference hashes passed to keys function to avoid the following
warnings:
keys on reference is experimental at ./update-dockapps.pl line 91.
keys on reference is experimental at ./update-dockapps.pl line 113.

These warnings appeared after upgrading to Perl 5.20.
2014-11-23 13:30:02 +00:00
Doug Torrance 2b788b3e51 Add wmcliphist information for dockapps webpage. 2014-11-23 10:33:33 +00:00
Doug Torrance 95a8878871 Add wmcpufreq information for dockapps webpage. 2014-11-23 10:33:33 +00:00
Doug Torrance f959c7e9cb wmcliphist: Release version 2.1. 2014-11-23 10:26:23 +00:00
Doug Torrance 48a0ccca75 wmcliphist: Add -b command line option to select which clipboard to manage. 2014-11-23 10:26:23 +00:00
Doug Torrance a32b41a0a2 wmcliphist: Add -v command line option to print version. 2014-11-23 10:26:23 +00:00
Doug Torrance 7aa3b460c3 wmcliphist: Remove Mercurial directory. 2014-11-23 10:26:23 +00:00
Doug Torrance 6709f68671 wmcliphist: Add manpage from Debian. 2014-11-23 10:26:23 +00:00
Doug Torrance a1b5618d24 wmcliphist: Remove .spec file; not needed upstream. 2014-11-23 10:26:23 +00:00
Doug Torrance 5928f82f3e wmcliphist: Fix new compiler warnings that appeared after GTK3 transition. 2014-11-23 10:26:23 +00:00
Doug Torrance 49f749a29a wmcliphist: Migrate to GTK3; remove bitmaps in favor of Cairo for mask. 2014-11-23 10:26:22 +00:00
Doug Torrance 7a271c57db wmcliphist: Replace xpm icons with png.
In preparation for eventual switch to Cairo/GTK3.
2014-11-23 10:26:22 +00:00
Doug Torrance 3e0aad923b wmcliphist: Replace deprecated GTK symbols. 2014-11-23 10:26:22 +00:00
Doug Torrance e976c4e5fa wmcliphist: Remove foodock library; use GTK dockapp code from wmpasman. 2014-11-23 10:26:22 +00:00
Doug Torrance 42f9f9a70f wmcliphist: Remove trailing whitespace. 2014-11-23 10:26:22 +00:00
Doug Torrance a134f7433b wmcliphist: Switch from angled brackets to quotes for local includes. 2014-11-23 10:26:22 +00:00
Doug Torrance cf6aed73bc wmcliphist: Fix unused but set variable compiler warning.
In particular,
utils.c: In function ‘from_utf8’:
utils.c:13:7: warning: variable ‘error_code’ set but not used
 [-Wunused-but-set-variable]
  gint error_code;
       ^
2014-11-23 10:26:22 +00:00
Doug Torrance e2ecd4b877 wmcliphist: Add <sys/stat.h> to includes.
Otherwise, we get the following compiler warning:
history.c:289:2: warning: implicit declaration of function ‘chmod’
[-Wimplicit-function-declaration]
  if ((chmod(fname, S_IRUSR|S_IWUSR)) != 0) {
  ^
2014-11-23 10:26:22 +00:00
Doug Torrance 3a4d0d4147 wmcliphist: Add X11 build flags; otherwise wmcliphist fails to build. 2014-11-23 10:26:22 +00:00