- remove old and unmaintained gtksee.

it's using a legacy toolkit (gtk+1) and there are enough applications around
that do the same, but with the modern gtk+2 toolkit. like gqview for example.

discussed with and ok ajacoutot@
This commit is contained in:
jasper 2009-03-17 12:45:31 +00:00
parent 35afd34c73
commit 85ff4c692d
11 changed files with 1 additions and 136 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.231 2009/02/15 18:08:43 jasper Exp $
# $OpenBSD: Makefile,v 1.232 2009/03/17 12:45:31 jasper Exp $
# $FreeBSD: Makefile,v 1.55 1997/11/03 12:12:27 tg Exp $
#
@ -70,7 +70,6 @@
SUBDIR += gracula
SUBDIR += gthumb
SUBDIR += gtkam
SUBDIR += gtksee
SUBDIR += gwenview
SUBDIR += gwenview-i18n
SUBDIR += ilmbase

View File

@ -1,31 +0,0 @@
# $OpenBSD: Makefile,v 1.22 2007/09/15 20:09:41 simon Exp $
COMMENT= image viewer similar to ACDSee for Windows
DISTNAME= gtksee-0.5.0
CATEGORIES= graphics
MASTER_SITES= ${MASTER_SITE_BERLIOS:=gtksee/}
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB= X11 Xext Xi c glib gmodule iconv intl m z
LIB_DEPENDS= gtk.>=1.2,gdk.>=1.2::x11/gtk+ \
jpeg.>=62::graphics/jpeg \
tiff.>=35::graphics/tiff \
png.>=2::graphics/png
RUN_DEPENDS= :bzip-*:archivers/bzip \
:bzip2-*:archivers/bzip2
USE_X11= Yes
SEPARATE_BUILD= concurrent
CONFIGURE_STYLE= gnu
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include/libpng -I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
CONFIGURE_ARGS+=--with-im-libs="${PREFIX}/lib" \
--with-im-incs="${PREFIX}/include"
.include <bsd.port.mk>

View File

@ -1,5 +0,0 @@
MD5 (gtksee-0.5.0.tar.gz) = Iaip8o+mHXNyX7YGli+hCA==
RMD160 (gtksee-0.5.0.tar.gz) = GNX4RKRbZU20tzs4wZUq00zgV8c=
SHA1 (gtksee-0.5.0.tar.gz) = gPuBufRGbxxnvNaDCj9Ulwj6tZM=
SHA256 (gtksee-0.5.0.tar.gz) = wWG3vDno4C1v3tcxS/ObsI2VBIJaRDvMB1OfZNIQUP8=
SIZE (gtksee-0.5.0.tar.gz) = 224809

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-configure,v 1.1 2001/03/17 15:52:16 wilfried Exp $
--- configure.orig Sat Sep 25 08:31:26 1999
+++ configure Thu Mar 15 20:55:43 2001
@@ -1158,7 +1158,7 @@ else
fi
-CFLAGS=""
+# CFLAGS=""
IMCFLAGS=""
IMLIBS=""

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-configure_in,v 1.1 2001/03/17 15:52:16 wilfried Exp $
--- configure.in.orig Sat Sep 25 08:30:30 1999
+++ configure.in Thu Mar 15 20:55:16 2001
@@ -13,7 +13,7 @@ AC_PROG_INSTALL
AC_PROG_MAKE_SET
AC_PROG_RANLIB
-CFLAGS=""
+dnl CFLAGS=""
IMCFLAGS=""
IMLIBS=""

View File

@ -1,14 +0,0 @@
$OpenBSD: patch-po_Makefile_in_in,v 1.1 2001/03/30 08:54:43 wilfried Exp $
--- po/Makefile.in.in.orig Fri Sep 24 16:17:45 1999
+++ po/Makefile.in.in Fri Mar 30 10:48:16 2001
@@ -16,8 +16,8 @@ srcdir = @srcdir@
top_srcdir = @top_srcdir@
VPATH = @srcdir@
-prefix = @prefix@
-exec_prefix = @exec_prefix@
+prefix = $(DESTDIR)/@prefix@
+exec_prefix = $(DESTDIR)/@exec_prefix@
datadir = $(prefix)/@DATADIRNAME@
localedir = $(datadir)/locale
gnulocaledir = $(prefix)/share/locale

View File

@ -1,11 +0,0 @@
--- src/detect.c.orig Fri Sep 24 09:05:55 1999
+++ src/detect.c Sat Dec 28 15:15:06 2002
@@ -62,8 +62,6 @@ detect_jpeg(guchar *header, guchar *file
{
#ifdef HAVE_LIBJPEG
jpeg_info jinfo;
-
- if (strncmp(&header[6], "JFIF", 4) != 0) return FALSE;
if (jpeg_get_header(filename, &jinfo))
{

View File

@ -1,21 +0,0 @@
# $OpenBSD: patch-src_gtksee_c,v 1.2 2002/12/28 23:25:32 pvalchev Exp $
--- src/gtksee.c.orig Sat Sep 25 00:27:40 1999
+++ src/gtksee.c Sat Dec 28 15:15:06 2002
@@ -322,13 +322,13 @@ file_selected_internal(ImageList *il)
}
if (hour == 0)
{
- sprintf(buffer, "%s, %02i/%02i/%02i 12:%02i AM",
- text, time->tm_year, time->tm_mon+1, time->tm_mday,
+ sprintf(buffer, "%s, %04i/%02i/%02i 12:%02i AM",
+ text, time->tm_year + 1900, time->tm_mon+1, time->tm_mday,
time->tm_min);
} else
{
- sprintf(buffer, "%s, %02i/%02i/%02i %02i:%02i %s",
- text, time->tm_year, time->tm_mon+1, time->tm_mday,
+ sprintf(buffer, "%s, %04i/%02i/%02i %02i:%02i %s",
+ text, time->tm_year + 1900, time->tm_mon+1, time->tm_mday,
hour, time->tm_min, (time->tm_hour<12)?"AM":"PM");
}
g_free(text);

View File

@ -1,21 +0,0 @@
$OpenBSD: patch-src_scanline_c,v 1.1 2002/12/28 23:29:13 pvalchev Exp $
--- src/scanline.c.orig Sat Dec 28 15:15:22 2002
+++ src/scanline.c Sat Dec 28 15:15:43 2002
@@ -231,7 +231,7 @@ preprocess_second(gchar *filename)
_exit(127);
}
execlp ("wmftogif", "wmftogif",
- filename, newfile, NULL);
+ filename, newfile, (void *)NULL);
_exit(127);
} else
{
@@ -642,7 +642,7 @@ load_scaled_image(
{
_exit(127);
}
- execlp (cmd, cmd, args, orig_filename, NULL);
+ execlp (cmd, cmd, args, orig_filename, (void *)NULL);
_exit(127);
} else
{

View File

@ -1 +0,0 @@
GTKSee is an image viewer based off of the ACDSee program for Windows.

View File

@ -1,6 +0,0 @@
@comment $OpenBSD: PLIST,v 1.4 2004/09/15 00:50:09 espie Exp $
bin/gtksee
share/locale/
share/locale/zh_CN.EUC/
share/locale/zh_CN.EUC/LC_MESSAGES/
share/locale/zh_CN.EUC/LC_MESSAGES/gtksee.mo