diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-05-02 07:13:27 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-05-02 07:13:27 +0000 |
commit | ef246cec1e89f84b601a30b4ef6587e5fd06a213 (patch) | |
tree | b8de52fc5b48e8756bd30a27393767510b8a19db /misc/snowflake | |
parent | 42c37c868eeecde4f3cb1447c2bce6dfa819d269 (diff) |
Notes
Diffstat (limited to 'misc/snowflake')
-rw-r--r-- | misc/snowflake/Makefile | 30 | ||||
-rw-r--r-- | misc/snowflake/distinfo | 2 | ||||
-rw-r--r-- | misc/snowflake/files/patch-sf.c | 55 | ||||
-rw-r--r-- | misc/snowflake/files/patch-sf.h | 10 | ||||
-rw-r--r-- | misc/snowflake/files/patch-sf_control.c | 22 | ||||
-rw-r--r-- | misc/snowflake/files/patch-sf_generate.c | 10 | ||||
-rw-r--r-- | misc/snowflake/files/patch-sf_view.c | 13 | ||||
-rw-r--r-- | misc/snowflake/pkg-descr | 1 |
8 files changed, 0 insertions, 143 deletions
diff --git a/misc/snowflake/Makefile b/misc/snowflake/Makefile deleted file mode 100644 index 2c8bc09c3894..000000000000 --- a/misc/snowflake/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -# New ports collection makefile for: snowflake -# Date created: 29 January 2000 -# Whom: Yukihiro Nakai <nakai@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= snowflake -PORTVERSION= 0.01a -PORTREVISION= 6 -CATEGORIES= misc -MASTER_SITES= ${MASTER_SITE_DEBIAN_POOL} -DISTNAME= ${PORTNAME}_${PORTVERSION}.orig - -MAINTAINER= ports@FreeBSD.org -COMMENT= A snowflake image generator - -DEPRECATED= Upstream disapear and distfile is no more available -EXPIRATION_DATE= 2011-05-01 - -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}.orig - -PLIST_FILES= bin/snowflake -USE_GNOME= gtk12 -MAKE_ARGS= CC="${CC} ${CFLAGS}" - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/snowflake ${PREFIX}/bin - -.include <bsd.port.mk> diff --git a/misc/snowflake/distinfo b/misc/snowflake/distinfo deleted file mode 100644 index 625735b9810a..000000000000 --- a/misc/snowflake/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (snowflake_0.01a.orig.tar.gz) = a13c2df13ec8469e7b73f042beb912bdc901076a4702bf9947d375bdb7a10433 -SIZE (snowflake_0.01a.orig.tar.gz) = 51518 diff --git a/misc/snowflake/files/patch-sf.c b/misc/snowflake/files/patch-sf.c deleted file mode 100644 index 66c9bbd546be..000000000000 --- a/misc/snowflake/files/patch-sf.c +++ /dev/null @@ -1,55 +0,0 @@ ---- sf.c.orig Mon Dec 21 00:18:55 1998 -+++ sf.c Sat Oct 7 16:19:50 2006 -@@ -23,9 +23,8 @@ - #include <sys/shm.h> - #include <sys/sem.h> - --#include "sf.h" -- - #include "getopt.h" -+#include "sf.h" - - /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ - -@@ -47,6 +46,7 @@ - - struct option long_options[] = - { -+ { "version", 0, 0, c_VERSION }, - { "view-geometry", 1, 0, c_VIEW_GEOMETRY }, - { "control-geometry", 1, 0, c_CONTROL_GEOMETRY }, - { "minimize", 0, 0, c_MINIMIZE }, -@@ -77,6 +77,8 @@ - - help_info_line help_info[] = - { -+ { "version", c_VERSION, " ", -+ "show program version" }, - { "view-geometry", c_VIEW_GEOMETRY, "+x+y", - "Control window placement" }, - { "control-geometry", c_CONTROL_GEOMETRY, "+x+y", -@@ -134,7 +136,7 @@ - - /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ - --void main( int argc,char* argv[] ) -+int main( int argc,char* argv[] ) - { - int i; - char* shop; -@@ -175,7 +177,14 @@ - help_info[i].description ); - - exit( 0 ); -- } -+ } -+ /* asking for version? */ -+ if ( ( strncmp( argv[1], "-V", 2 ) == 0 ) || -+ ( strncmp( argv[1],"--version",3 ) == 0 ) ) -+ { -+ printf( "%s - %s\n",program_name,version ); -+ exit( 0 ); -+ } - } - - /* create shared memory image and mutex */ diff --git a/misc/snowflake/files/patch-sf.h b/misc/snowflake/files/patch-sf.h deleted file mode 100644 index b6ef9deb2c58..000000000000 --- a/misc/snowflake/files/patch-sf.h +++ /dev/null @@ -1,10 +0,0 @@ ---- sf.h.orig Mon Dec 21 08:18:55 1998 -+++ sf.h Sat Nov 8 21:20:24 2003 -@@ -17,6 +17,7 @@ - - typedef enum - { -+ c_VERSION = 'V', - c_VIEW_GEOMETRY = 'v', - c_CONTROL_GEOMETRY = 'c', - c_MINIMIZE = 'm', diff --git a/misc/snowflake/files/patch-sf_control.c b/misc/snowflake/files/patch-sf_control.c deleted file mode 100644 index d50218d1d0f8..000000000000 --- a/misc/snowflake/files/patch-sf_control.c +++ /dev/null @@ -1,22 +0,0 @@ ---- sf_control.c.orig Mon Dec 21 00:18:55 1998 -+++ sf_control.c Sat Oct 7 16:20:33 2006 -@@ -15,9 +15,8 @@ - #include <sys/shm.h> - #include <sys/sem.h> - --#include "sf.h" -- - #include "getopt.h" -+#include "sf.h" - - /* for iconify_window(): */ - #include <X11/Xlib.h> -@@ -266,7 +265,7 @@ - static char xpm_filespec[MAX_FILESPEC+1] = { 0 }; - - static char design_filespec[MAX_FILESPEC+1] = { 0 }; --static char design_line = -1; -+static signed char design_line = -1; - static FILE* design_file = (FILE*)0; - - /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ diff --git a/misc/snowflake/files/patch-sf_generate.c b/misc/snowflake/files/patch-sf_generate.c deleted file mode 100644 index 9a7314d8119f..000000000000 --- a/misc/snowflake/files/patch-sf_generate.c +++ /dev/null @@ -1,10 +0,0 @@ ---- sf_generate.c.orig Sat Oct 7 16:21:57 2006 -+++ sf_generate.c Sat Oct 7 16:21:23 2006 -@@ -16,6 +16,7 @@ - #include <sys/shm.h> - #include <sys/sem.h> - -+#include "getopt.h" - #include "sf.h" - - /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ diff --git a/misc/snowflake/files/patch-sf_view.c b/misc/snowflake/files/patch-sf_view.c deleted file mode 100644 index 1fa74d4ea65d..000000000000 --- a/misc/snowflake/files/patch-sf_view.c +++ /dev/null @@ -1,13 +0,0 @@ ---- sf_view.c.orig Sat Oct 7 16:22:31 2006 -+++ sf_view.c Sat Oct 7 16:22:33 2006 -@@ -10,9 +10,8 @@ - #include <sys/shm.h> - #include <sys/sem.h> - --#include "sf.h" -- - #include "getopt.h" -+#include "sf.h" - - /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ - diff --git a/misc/snowflake/pkg-descr b/misc/snowflake/pkg-descr deleted file mode 100644 index b2bb167ca168..000000000000 --- a/misc/snowflake/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -a snowflake image generator |