View | Details | Raw Unified | Return to bug 189910
Collapse All | Expand All

(-)Makefile (-4 / +5 lines)
Lines 2-20 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	ctwm
4
PORTNAME=	ctwm
5
PORTVERSION=	3.8.1
5
PORTVERSION=	3.8.2
6
PORTREVISION=	1
7
PORTEPOCH=	1
6
PORTEPOCH=	1
8
CATEGORIES=	x11-wm
7
CATEGORIES=	x11-wm
9
MASTER_SITES=	http://ctwm.free.lp.se/dist/ \
8
MASTER_SITES=	http://www.ctwm.org/dist/ \
10
		http://distfiles.over-yonder.net/ctwm/
9
		http://distfiles.over-yonder.net/ctwm/
11
10
12
MAINTAINER=	fullermd@over-yonder.net
11
MAINTAINER=	fullermd@over-yonder.net
13
COMMENT=	Extension to twm, with support for multiple virtual screens, etc
12
COMMENT=	Extension to twm, with support for multiple virtual screens, etc
14
13
14
LICENSE=	MIT
15
15
LIB_DEPENDS=	libjpeg.so:${PORTSDIR}/graphics/jpeg
16
LIB_DEPENDS=	libjpeg.so:${PORTSDIR}/graphics/jpeg
16
17
17
USES=		imake
18
USES=		imake tar:xz
18
USE_XORG=	xpm xmu
19
USE_XORG=	xpm xmu
19
20
20
pre-configure:
21
pre-configure:
(-)distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (ctwm-3.8.1.tar.gz) = 293657511eaa3f0f147bae2f50ed3caf6bbaa64dd142dfdbd9d6576d89c6970d
1
SHA256 (ctwm-3.8.2.tar.xz) = 574d67a8a69f2f1ebaa71aa40cc50667e814f74b51f5db8886e2def6a3e0900f
2
SIZE (ctwm-3.8.1.tar.gz) = 737958
2
SIZE (ctwm-3.8.2.tar.xz) = 549984
(-)files/patch-Imakefile (-13 lines)
Lines 1-13 Link Here
1
--- ./Imakefile.orig	2014-01-20 08:59:13.000000000 +0100
2
+++ ./Imakefile	2014-01-20 08:59:40.000000000 +0100
3
@@ -167,8 +167,8 @@
4
 		3dcircle.xpm 3ddimple.xpm 3ddot.xpm 3dfeet.xpm 3dleopard.xpm \
5
 		3dpie.xpm 3dpyramid.xpm 3dslant.xpm
6
 
7
-SpecialObjectRule(parse.o,parse.c,'-DSYSTEM_INIT_FILE="$(DESTDIR)$(CONFDIR)/system.ctwmrc"' '-DPIXMAP_DIRECTORY="$(DESTDIR)$(PIXMAPDIR)"')
8
-SpecialObjectRule(ctwm.o,ctwm.c,'-DPIXMAP_DIRECTORY="$(DESTDIR)$(PIXMAPDIR)"')
9
+SpecialObjectRule(parse.o,parse.c,'-DSYSTEM_INIT_FILE="$(CONFDIR)/system.ctwmrc"' '-DPIXMAP_DIRECTORY="$(PIXMAPDIR)"')
10
+SpecialObjectRule(ctwm.o,ctwm.c,'-DPIXMAP_DIRECTORY="$(PIXMAPDIR)"')
11
 #if !HasPutenv
12
 SpecialObjectRule(util.o,util.c,-DNOPUTENV)
13
 #endif
(-)files/patch-util.c (-11 lines)
Lines 1-11 Link Here
1
--- util.c.orig	2012-01-08 16:51:48.245308175 -0600
2
+++ util.c	2012-01-08 16:51:52.168309618 -0600
3
@@ -3941,7 +3941,7 @@
4
 #ifdef JPEG
5
 
6
 unsigned short int *buffer_16bpp;
7
-long *buffer_32bpp;
8
+uint32_t *buffer_32bpp;
9
 
10
 static void convert_for_16 (int w, int x, int y, int r, int g, int b) {
11
   buffer_16bpp [y * w + x] = ((r >> 3) << 11) + ((g >> 2) << 5) + (b >> 3);
(-)pkg-descr (-1 / +1 lines)
Lines 20-23 Link Here
20
        - Pinnable and sticky menus.
20
        - Pinnable and sticky menus.
21
        - etc...
21
        - etc...
22
22
23
WWW: http://ctwm.free.lp.se/
23
WWW: http://www.ctwm.org/

Return to bug 189910