diff --git a/ChangeLog b/ChangeLog index 2e10096..9cf14cd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +ClipIt-v1.2.3-11112010002 - 11 Nov. 2010 + + Fixed: Fixed the manpage so it now aligns to the conventions for + writing Linux man pages. + + Fixed: Added the "-Wl,--as-needed" flag, so only the needed packages + are included. + ClipIt-v1.2.2-11112010001 - 11 Nov. 2010 + Fixed: Some small compatibility changes for debian packaging. diff --git a/configure.in b/configure.in index a784344..d2baaa6 100644 --- a/configure.in +++ b/configure.in @@ -2,7 +2,7 @@ # Autoconf/automake. # ------------------------------------------------------------------------------- AC_PREREQ([2.5]) -AC_INIT([clipit], [1.2.2], [oss@web-tm.com]) +AC_INIT([clipit], [1.2.3], [oss@web-tm.com]) AM_INIT_AUTOMAKE([AC_PACKAGE_TARNAME()], [AC_PACKAGE_VERSION()]) AC_CONFIG_MACRO_DIR([m4]) diff --git a/doc/clipit.1 b/doc/clipit.1 index 2736073..d0ed318 100644 --- a/doc/clipit.1 +++ b/doc/clipit.1 @@ -1,4 +1,4 @@ -.TH CLIPIT 1 "01.11.2010" +.TH CLIPIT 1 "2010-11-11" .SH NAME ClipIt \- Lightweight GTK+ Clipboard Manager .SH SYNOPSIS @@ -13,27 +13,33 @@ of your standard input get copied to your clipboard. See \fBCLI EXAMPLES\fR. .B OPTIONS .TP .B \-?\fR, \fB\-\-help -Show help options +Show help options. .TP .B \-d\fR, \fB\-\-daemon Run as daemon. Use this mode if you just want \fBClipIt\fR to keep your clipboard -and primary contents safe +and primary contents safe. .TP .B \-n\fR, \fB\-\-no-icon -Do not use status icon +Do not use status icon. .TP .B \-c\fR, \fB\-\-clipboard -Print clipboard contents +Print clipboard contents. +.TP .B \-p\fR, \fB\-\-primary -Print primary contents -.SH ACTIONS +Print primary contents. +.SH NOTES +.SS ACTIONS \fBClipIt's\fR actions perform commands using the contents of your clipboard. "\fB%s\fR" in the command is replaced with the clipboard contents. -.SH CLI EXAMPLES +.SS CLI EXAMPLES +.TP +Put text in the clipboard echo "copied to clipboard" | clipit clipit "copied to clipboard" +.TP +Put text in the clipboard and print the clipboard contents echo "copied to clipboard" | clipit \-c -.SH Hotkeys +.SS Hotkeys The available hotkey modifiers are , , , , , , .SH SEE ALSO .PP diff --git a/src/Makefile.am b/src/Makefile.am index e38cb67..f402aa9 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,6 +1,7 @@ AM_CFLAGS = -I$(top_srcdir) -DCLIPITLOCALEDIR=\""$(clipitlocaledir)"\" INCLUDES = $(GTK_CFLAGS) LDADD = $(GTK_LIBS) +AM_LDFLAGS = -Wl,--as-needed bin_PROGRAMS = clipit