ClipIt-v1.2.3-11112010002

+ 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.

Changes to be committed:

        modified:   ChangeLog
        modified:   configure.in
        modified:   doc/clipit.1
        modified:   src/Makefile.am
This commit is contained in:
Cristian Henzel 2010-11-11 20:24:19 +02:00
parent 2ebb6b5085
commit 80f9e3d4f9
4 changed files with 23 additions and 10 deletions

View File

@ -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 ClipIt-v1.2.2-11112010001 - 11 Nov. 2010
+ Fixed: Some small compatibility changes for debian packaging. + Fixed: Some small compatibility changes for debian packaging.

View File

@ -2,7 +2,7 @@
# Autoconf/automake. # Autoconf/automake.
# ------------------------------------------------------------------------------- # -------------------------------------------------------------------------------
AC_PREREQ([2.5]) 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()]) AM_INIT_AUTOMAKE([AC_PACKAGE_TARNAME()], [AC_PACKAGE_VERSION()])
AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_MACRO_DIR([m4])

View File

@ -1,4 +1,4 @@
.TH CLIPIT 1 "01.11.2010" .TH CLIPIT 1 "2010-11-11"
.SH NAME .SH NAME
ClipIt \- Lightweight GTK+ Clipboard Manager ClipIt \- Lightweight GTK+ Clipboard Manager
.SH SYNOPSIS .SH SYNOPSIS
@ -13,27 +13,33 @@ of your standard input get copied to your clipboard. See \fBCLI EXAMPLES\fR.
.B OPTIONS .B OPTIONS
.TP .TP
.B \-?\fR, \fB\-\-help .B \-?\fR, \fB\-\-help
Show help options Show help options.
.TP .TP
.B \-d\fR, \fB\-\-daemon .B \-d\fR, \fB\-\-daemon
Run as daemon. Use this mode if you just want \fBClipIt\fR to keep your clipboard 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 .TP
.B \-n\fR, \fB\-\-no-icon .B \-n\fR, \fB\-\-no-icon
Do not use status icon Do not use status icon.
.TP .TP
.B \-c\fR, \fB\-\-clipboard .B \-c\fR, \fB\-\-clipboard
Print clipboard contents Print clipboard contents.
.TP
.B \-p\fR, \fB\-\-primary .B \-p\fR, \fB\-\-primary
Print primary contents Print primary contents.
.SH ACTIONS .SH NOTES
.SS ACTIONS
\fBClipIt's\fR actions perform commands using the contents of your clipboard. "\fB%s\fR" in the command \fBClipIt's\fR actions perform commands using the contents of your clipboard. "\fB%s\fR" in the command
is replaced with the clipboard contents. is replaced with the clipboard contents.
.SH CLI EXAMPLES .SS CLI EXAMPLES
.TP
Put text in the clipboard
echo "copied to clipboard" | clipit echo "copied to clipboard" | clipit
clipit "copied to clipboard" clipit "copied to clipboard"
.TP
Put text in the clipboard and print the clipboard contents
echo "copied to clipboard" | clipit \-c echo "copied to clipboard" | clipit \-c
.SH Hotkeys .SS Hotkeys
The available hotkey modifiers are <Ctrl>, <Alt> <Shift>, <Release>, <Meta>, <Super>, <Hyper>, <Mod[1\-5]> The available hotkey modifiers are <Ctrl>, <Alt> <Shift>, <Release>, <Meta>, <Super>, <Hyper>, <Mod[1\-5]>
.SH SEE ALSO .SH SEE ALSO
.PP .PP

View File

@ -1,6 +1,7 @@
AM_CFLAGS = -I$(top_srcdir) -DCLIPITLOCALEDIR=\""$(clipitlocaledir)"\" AM_CFLAGS = -I$(top_srcdir) -DCLIPITLOCALEDIR=\""$(clipitlocaledir)"\"
INCLUDES = $(GTK_CFLAGS) INCLUDES = $(GTK_CFLAGS)
LDADD = $(GTK_LIBS) LDADD = $(GTK_LIBS)
AM_LDFLAGS = -Wl,--as-needed
bin_PROGRAMS = clipit bin_PROGRAMS = clipit