summaryrefslogtreecommitdiff
path: root/community/sxiv
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-04-26 04:02:52 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-04-26 04:02:52 +0000
commitbec32799094d2ee07f46a6c5d369603a79438ce6 (patch)
tree6cfdca109dc01f74d281de3cc7098783a479b023 /community/sxiv
parent2e237e087ac1a2449690b7dfdfed1e406838feaf (diff)
Sat Apr 26 03:59:59 UTC 2014
Diffstat (limited to 'community/sxiv')
-rw-r--r--community/sxiv/PKGBUILD21
-rw-r--r--community/sxiv/config.h154
-rw-r--r--community/sxiv/sxiv.install5
3 files changed, 7 insertions, 173 deletions
diff --git a/community/sxiv/PKGBUILD b/community/sxiv/PKGBUILD
index e7ab28b45..dbe4d6937 100644
--- a/community/sxiv/PKGBUILD
+++ b/community/sxiv/PKGBUILD
@@ -1,30 +1,23 @@
-# $Id: PKGBUILD 106175 2014-02-24 18:03:28Z bpiotrowski $
+# $Id: PKGBUILD 110167 2014-04-25 15:45:41Z bpiotrowski $
# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
# Contributor: Thomas Dziedzic < gostrc at gmail >
# Contributor: Bert Muennich <muennich at informatik.hu-berlin.de>
# Contributor: Brad Fanella <bradfanella@archlinux.us>
pkgname=sxiv
-pkgver=1.1.1
-pkgrel=3
+pkgver=1.2
+pkgrel=1
pkgdesc='Simple X Image Viewer'
arch=('i686' 'x86_64')
license=('GPL2')
install=sxiv.install
url='https://github.com/muennich/sxiv'
-depends=('libx11' 'xproto' 'imlib2' 'giflib' 'desktop-file-utils')
-source=(https://github.com/muennich/sxiv/archive/v$pkgver.tar.gz
- config.h)
-md5sums=('786f647326bdb24b672519924928dfca'
- '53729e7dfba3c12b26fc8359d56523a2')
-
-prepare() {
- cp config.h sxiv-$pkgver
-}
+depends=('imlib2' 'desktop-file-utils')
+source=(https://github.com/muennich/sxiv/archive/v$pkgver.tar.gz)
+md5sums=('9b79d3c70693d9abbc66295cf6f281a0')
build() {
- cd sxiv-$pkgver
- make
+ make -C sxiv-$pkgver
}
package() {
diff --git a/community/sxiv/config.h b/community/sxiv/config.h
deleted file mode 100644
index cd89b5fac..000000000
--- a/community/sxiv/config.h
+++ /dev/null
@@ -1,154 +0,0 @@
-#ifdef _WINDOW_CONFIG
-
-/* default window dimensions (overwritten via -g option): */
-enum {
- WIN_WIDTH = 800,
- WIN_HEIGHT = 600
-};
-
-/* bar font:
- * (see X(7) section "FONT NAMES" for valid values)
- */
-static const char * const BAR_FONT = "-*-fixed-medium-r-*-*-13-*-*-*-*-60-*-*";
-
-/* colors:
- * (see X(7) section "COLOR NAMES" for valid values)
- */
-static const char * const WIN_BG_COLOR = "#777777";
-static const char * const WIN_FS_COLOR = "#000000";
-static const char * const SEL_COLOR = "#DDDDDD";
-static const char * const BAR_BG_COLOR = "#222222";
-static const char * const BAR_FG_COLOR = "#EEEEEE";
-
-#endif
-#ifdef _IMAGE_CONFIG
-
-/* how should images be scaled when they are loaded?
- * (also controllable via -d/-s/-Z/-z options)
- * SCALE_DOWN: 100%, but fit large images into window,
- * SCALE_FIT: fit all images into window,
- * SCALE_ZOOM: use current zoom level, 100% at startup
- */
-static const scalemode_t SCALE_MODE = SCALE_DOWN;
-
-/* levels (in percent) to use when zooming via '-' and '+':
- * (first/last value is used as min/max zoom level)
- */
-static const float zoom_levels[] = {
- 12.5, 25.0, 50.0, 75.0,
- 100.0, 150.0, 200.0, 400.0, 800.0
-};
-
-/* default settings for multi-frame gif images: */
-enum {
- GIF_DELAY = 100, /* delay time (in ms) */
- GIF_AUTOPLAY = 1, /* autoplay when loaded [0/1] */
- GIF_LOOP = 0 /* endless loop [0/1] */
-};
-
-#endif
-#ifdef _THUMBS_CONFIG
-
-/* default dimension of thumbnails (width == height): */
-enum { THUMB_SIZE = 60 };
-
-#endif
-#ifdef _MAPPINGS_CONFIG
-
-/* keyboard mappings for image and thumbnail mode: */
-static const keymap_t keys[] = {
- /* ctrl key function argument */
- { false, XK_q, it_quit, (arg_t) None },
- { false, XK_Return, it_switch_mode, (arg_t) None },
- { false, XK_f, it_toggle_fullscreen, (arg_t) None },
- { false, XK_b, it_toggle_bar, (arg_t) None },
-
- { false, XK_r, it_reload_image, (arg_t) None },
- { false, XK_R, t_reload_all, (arg_t) None },
- { false, XK_D, it_remove_image, (arg_t) None },
-
- { false, XK_n, i_navigate, (arg_t) +1 },
- { false, XK_space, i_navigate, (arg_t) +1 },
- { false, XK_p, i_navigate, (arg_t) -1 },
- { false, XK_BackSpace, i_navigate, (arg_t) -1 },
- { false, XK_bracketright, i_navigate, (arg_t) +10 },
- { false, XK_bracketleft, i_navigate, (arg_t) -10 },
- { true, XK_6, i_alternate, (arg_t) None },
- { false, XK_g, it_first, (arg_t) None },
- { false, XK_G, it_n_or_last, (arg_t) None },
-
- { true, XK_n, i_navigate_frame, (arg_t) +1 },
- { true, XK_p, i_navigate_frame, (arg_t) -1 },
- { true, XK_space, i_toggle_animation, (arg_t) None },
-
- { false, XK_h, it_scroll_move, (arg_t) DIR_LEFT },
- { false, XK_Left, it_scroll_move, (arg_t) DIR_LEFT },
- { false, XK_j, it_scroll_move, (arg_t) DIR_DOWN },
- { false, XK_Down, it_scroll_move, (arg_t) DIR_DOWN },
- { false, XK_k, it_scroll_move, (arg_t) DIR_UP },
- { false, XK_Up, it_scroll_move, (arg_t) DIR_UP },
- { false, XK_l, it_scroll_move, (arg_t) DIR_RIGHT },
- { false, XK_Right, it_scroll_move, (arg_t) DIR_RIGHT },
-
- { true, XK_h, it_scroll_screen, (arg_t) DIR_LEFT },
- { true, XK_Left, it_scroll_screen, (arg_t) DIR_LEFT },
- { true, XK_j, it_scroll_screen, (arg_t) DIR_DOWN },
- { true, XK_Down, it_scroll_screen, (arg_t) DIR_DOWN },
- { true, XK_k, it_scroll_screen, (arg_t) DIR_UP },
- { true, XK_Up, it_scroll_screen, (arg_t) DIR_UP },
- { true, XK_l, it_scroll_screen, (arg_t) DIR_RIGHT },
- { true, XK_Right, it_scroll_screen, (arg_t) DIR_RIGHT },
-
- { false, XK_H, i_scroll_to_edge, (arg_t) DIR_LEFT },
- { false, XK_J, i_scroll_to_edge, (arg_t) DIR_DOWN },
- { false, XK_K, i_scroll_to_edge, (arg_t) DIR_UP },
- { false, XK_L, i_scroll_to_edge, (arg_t) DIR_RIGHT },
-
- { false, XK_plus, i_zoom, (arg_t) +1 },
- { false, XK_KP_Add, i_zoom, (arg_t) +1 },
- { false, XK_minus, i_zoom, (arg_t) -1 },
- { false, XK_KP_Subtract, i_zoom, (arg_t) -1 },
- { false, XK_equal, i_set_zoom, (arg_t) 100 },
- { false, XK_w, i_fit_to_win, (arg_t) SCALE_FIT },
- { false, XK_e, i_fit_to_win, (arg_t) SCALE_WIDTH },
- { false, XK_E, i_fit_to_win, (arg_t) SCALE_HEIGHT },
- { false, XK_W, i_fit_to_img, (arg_t) None },
-
- { false, XK_less, i_rotate, (arg_t) DIR_LEFT },
- { false, XK_greater, i_rotate, (arg_t) DIR_RIGHT },
-
- { false, XK_backslash, i_flip, (arg_t) FLIP_HORIZONTAL },
- { false, XK_bar, i_flip, (arg_t) FLIP_VERTICAL },
-
- { false, XK_a, i_toggle_antialias, (arg_t) None },
- { false, XK_A, it_toggle_alpha, (arg_t) None },
-
- /* open current image with given program: */
- { true, XK_g, it_open_with, (arg_t) "gimp" },
-
- /* run shell command line on current file ("$SXIV_IMG"): */
- { true, XK_less, it_shell_cmd, (arg_t) \
- "mogrify -rotate -90 \"$SXIV_IMG\"" },
- { true, XK_greater, it_shell_cmd, (arg_t) \
- "mogrify -rotate +90 \"$SXIV_IMG\"" },
- { true, XK_comma, it_shell_cmd, (arg_t) \
- "jpegtran -rotate 270 -copy all -outfile \"$SXIV_IMG\" \"$SXIV_IMG\"" },
- { true, XK_period, it_shell_cmd, (arg_t) \
- "jpegtran -rotate 90 -copy all -outfile \"$SXIV_IMG\" \"$SXIV_IMG\"" },
-};
-
-/* mouse button mappings for image mode: */
-static const button_t buttons[] = {
- /* ctrl shift button function argument */
- { false, false, Button1, i_navigate, (arg_t) +1 },
- { false, false, Button3, i_navigate, (arg_t) -1 },
- { false, false, Button2, i_drag, (arg_t) None },
- { false, false, Button4, it_scroll_move, (arg_t) DIR_UP },
- { false, false, Button5, it_scroll_move, (arg_t) DIR_DOWN },
- { false, true, Button4, it_scroll_move, (arg_t) DIR_LEFT },
- { false, true, Button5, it_scroll_move, (arg_t) DIR_RIGHT },
- { true, false, Button4, i_zoom, (arg_t) +1 },
- { true, false, Button5, i_zoom, (arg_t) -1 },
-};
-
-#endif
diff --git a/community/sxiv/sxiv.install b/community/sxiv/sxiv.install
index 1e3ec7774..916de2271 100644
--- a/community/sxiv/sxiv.install
+++ b/community/sxiv/sxiv.install
@@ -1,10 +1,5 @@
post_install () {
update-desktop-database -q
-
- echo "* Edit config.h in sxiv's PKGBUILD directory (generally /var/abs/community/sxiv/)"
- echo " and rebuild package if you want to change settings."
- echo "* Create the directory ~/.sxiv/cache to enable thumbnail caching."
- echo " See sxiv(1) for more information."
}
post_upgrade () {