[55194] trunk/dports/x11/awesome

snc at macports.org snc at macports.org
Fri Aug 7 05:01:27 PDT 2009


Revision: 55194
          http://trac.macports.org/changeset/55194
Author:   snc at macports.org
Date:     2009-08-07 05:01:25 -0700 (Fri, 07 Aug 2009)
Log Message:
-----------
add mode, fix lint, do a barrelroll

Modified Paths:
--------------
    trunk/dports/x11/awesome/Portfile

Added Paths:
-----------
    trunk/dports/x11/awesome/files/patch-Makefile.diff
    trunk/dports/x11/awesome/files/patch-config.mk.diff

Removed Paths:
-------------
    trunk/dports/x11/awesome/files/patch-Makefile
    trunk/dports/x11/awesome/files/patch-config.mk

Modified: trunk/dports/x11/awesome/Portfile
===================================================================
--- trunk/dports/x11/awesome/Portfile	2009-08-07 11:59:46 UTC (rev 55193)
+++ trunk/dports/x11/awesome/Portfile	2009-08-07 12:01:25 UTC (rev 55194)
@@ -1,3 +1,4 @@
+# -*- coding: utf-8; mode: tcl; tab-width: 4; truncate-lines: t; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4
 # $Id$
 
 PortSystem        1.0
@@ -38,7 +39,7 @@
         path:lib/pkgconfig/cairo.pc:cairo \
         port:libconfuse
 
-patchfiles        patch-config.mk patch-Makefile
+patchfiles        patch-config.mk.diff patch-Makefile.diff
 post-patch      {
         reinplace "s|/opt/local|${prefix}|" ${worksrcpath}/config.mk
 	reinplace "s|CFLAGS =|CFLAGS = \$(UNIV_FLAGS)|" ${worksrcpath}/config.mk

Deleted: trunk/dports/x11/awesome/files/patch-Makefile
===================================================================
--- trunk/dports/x11/awesome/files/patch-Makefile	2009-08-07 11:59:46 UTC (rev 55193)
+++ trunk/dports/x11/awesome/files/patch-Makefile	2009-08-07 12:01:25 UTC (rev 55194)
@@ -1,16 +0,0 @@
---- Makefile.orig	2007-12-11 16:42:11.000000000 +0100
-+++ Makefile	2007-12-11 16:42:39.000000000 +0100
-@@ -64,10 +64,12 @@
- 
- install: strip install-unstrip
- 
--install-unstrip: awesome awesome-client man
-+install-unstrip: awesome awesome-client
- 	@echo installing executable file to ${DESTDIR}${PREFIX}/bin
- 	@install -d ${DESTDIR}${PREFIX}/bin
- 	@install -m 755 awesome awesome-client ${DESTDIR}${PREFIX}/bin
-+
-+install-man: man
- 	@echo installing manual page to ${DESTDIR}${MANPREFIX}/man1
- 	@install -d ${DESTDIR}${MANPREFIX}/man1
- 	@install -m 644 ${DOCS:.txt=} ${DESTDIR}${MANPREFIX}/man1

Copied: trunk/dports/x11/awesome/files/patch-Makefile.diff (from rev 55118, trunk/dports/x11/awesome/files/patch-Makefile)
===================================================================
--- trunk/dports/x11/awesome/files/patch-Makefile.diff	                        (rev 0)
+++ trunk/dports/x11/awesome/files/patch-Makefile.diff	2009-08-07 12:01:25 UTC (rev 55194)
@@ -0,0 +1,16 @@
+--- Makefile.orig	2007-12-11 16:42:11.000000000 +0100
++++ Makefile	2007-12-11 16:42:39.000000000 +0100
+@@ -64,10 +64,12 @@
+ 
+ install: strip install-unstrip
+ 
+-install-unstrip: awesome awesome-client man
++install-unstrip: awesome awesome-client
+ 	@echo installing executable file to ${DESTDIR}${PREFIX}/bin
+ 	@install -d ${DESTDIR}${PREFIX}/bin
+ 	@install -m 755 awesome awesome-client ${DESTDIR}${PREFIX}/bin
++
++install-man: man
+ 	@echo installing manual page to ${DESTDIR}${MANPREFIX}/man1
+ 	@install -d ${DESTDIR}${MANPREFIX}/man1
+ 	@install -m 644 ${DOCS:.txt=} ${DESTDIR}${MANPREFIX}/man1

Deleted: trunk/dports/x11/awesome/files/patch-config.mk
===================================================================
--- trunk/dports/x11/awesome/files/patch-config.mk	2009-08-07 11:59:46 UTC (rev 55193)
+++ trunk/dports/x11/awesome/files/patch-config.mk	2009-08-07 12:01:25 UTC (rev 55194)
@@ -1,27 +0,0 @@
---- config.mk.orig	2007-12-02 20:20:56.000000000 +0100
-+++ config.mk	2007-12-02 20:26:25.000000000 +0100
-@@ -8,18 +8,18 @@
- LAYOUTS = layouts/tile.c layouts/floating.c layouts/max.c
- 
- # paths
--PREFIX = /usr/local
-+PREFIX = /opt/local
- MANPREFIX = ${PREFIX}/share/man
- 
--X11INC = /usr/include/X11
--X11LIB = /usr/lib/X11
-+X11INC = /opt/local/include/X11
-+X11LIB = /opt/local/lib
- 
- # includes and libs
--INCS = -I. -I/usr/include -I${X11INC} `pkg-config --cflags libconfuse xft cairo`
--LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 `pkg-config --libs libconfuse xft cairo` -lXext -lXrandr -lXinerama
-+INCS = -I. -I/opt/local/include -I${X11INC} `pkg-config --cflags libconfuse xft cairo`
-+LIBS = -L/opt/local/lib -lc -L${X11LIB} -lX11 `pkg-config --libs libconfuse xft cairo` -lXext -lXrandr -lXinerama
- 
- # flags
--CFLAGS = -fgnu89-inline -std=gnu99 -ggdb3 -pipe -Wall -Wextra -W -Wchar-subscripts -Wundef -Wshadow -Wcast-align -Wwrite-strings -Wsign-compare -Wunused -Wuninitialized -Winit-self -Wpointer-arith -Wredundant-decls -Wno-format-zero-length -Wmissing-prototypes -Wmissing-format-attribute -Wmissing-noreturn -O3 ${INCS} -DVERSION=\"${VERSION}\" -DRELEASE=\"${RELEASE}\"
-+CFLAGS = -std=gnu99 -ggdb3 -pipe -Wall -Wextra -W -Wchar-subscripts -Wundef -Wshadow -Wcast-align -Wwrite-strings -Wsign-compare -Wunused -Wuninitialized -Winit-self -Wpointer-arith -Wredundant-decls -Wno-format-zero-length -Wmissing-prototypes -Wmissing-format-attribute -Wmissing-noreturn -O3 ${INCS} -DVERSION=\"${VERSION}\" -DRELEASE=\"${RELEASE}\"
- LDFLAGS = -ggdb3 ${LIBS}
- CLIENTLDFLAGS = -ggdb3
- 

Copied: trunk/dports/x11/awesome/files/patch-config.mk.diff (from rev 55118, trunk/dports/x11/awesome/files/patch-config.mk)
===================================================================
--- trunk/dports/x11/awesome/files/patch-config.mk.diff	                        (rev 0)
+++ trunk/dports/x11/awesome/files/patch-config.mk.diff	2009-08-07 12:01:25 UTC (rev 55194)
@@ -0,0 +1,27 @@
+--- config.mk.orig	2007-12-02 20:20:56.000000000 +0100
++++ config.mk	2007-12-02 20:26:25.000000000 +0100
+@@ -8,18 +8,18 @@
+ LAYOUTS = layouts/tile.c layouts/floating.c layouts/max.c
+ 
+ # paths
+-PREFIX = /usr/local
++PREFIX = /opt/local
+ MANPREFIX = ${PREFIX}/share/man
+ 
+-X11INC = /usr/include/X11
+-X11LIB = /usr/lib/X11
++X11INC = /opt/local/include/X11
++X11LIB = /opt/local/lib
+ 
+ # includes and libs
+-INCS = -I. -I/usr/include -I${X11INC} `pkg-config --cflags libconfuse xft cairo`
+-LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 `pkg-config --libs libconfuse xft cairo` -lXext -lXrandr -lXinerama
++INCS = -I. -I/opt/local/include -I${X11INC} `pkg-config --cflags libconfuse xft cairo`
++LIBS = -L/opt/local/lib -lc -L${X11LIB} -lX11 `pkg-config --libs libconfuse xft cairo` -lXext -lXrandr -lXinerama
+ 
+ # flags
+-CFLAGS = -fgnu89-inline -std=gnu99 -ggdb3 -pipe -Wall -Wextra -W -Wchar-subscripts -Wundef -Wshadow -Wcast-align -Wwrite-strings -Wsign-compare -Wunused -Wuninitialized -Winit-self -Wpointer-arith -Wredundant-decls -Wno-format-zero-length -Wmissing-prototypes -Wmissing-format-attribute -Wmissing-noreturn -O3 ${INCS} -DVERSION=\"${VERSION}\" -DRELEASE=\"${RELEASE}\"
++CFLAGS = -std=gnu99 -ggdb3 -pipe -Wall -Wextra -W -Wchar-subscripts -Wundef -Wshadow -Wcast-align -Wwrite-strings -Wsign-compare -Wunused -Wuninitialized -Winit-self -Wpointer-arith -Wredundant-decls -Wno-format-zero-length -Wmissing-prototypes -Wmissing-format-attribute -Wmissing-noreturn -O3 ${INCS} -DVERSION=\"${VERSION}\" -DRELEASE=\"${RELEASE}\"
+ LDFLAGS = -ggdb3 ${LIBS}
+ CLIENTLDFLAGS = -ggdb3
+ 
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20090807/7502523b/attachment.html>


More information about the macports-changes mailing list