- Update to 0.0.89

PR:		140850
Submitted by:	Mattis Michel <sic_zer0@hotmail.com> (maintainer)
This commit is contained in:
Martin Wilke 2009-11-25 16:01:45 +00:00
parent d1f5ffadfa
commit 03806beb0e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=244748
3 changed files with 19 additions and 21 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= matwm2
PORTVERSION= 0.0.80
PORTVERSION= 0.0.89
CATEGORIES= x11-wm
MASTER_SITES= http://www.gatorgitter.com/~maties/

View File

@ -1,3 +1,3 @@
MD5 (matwm2-0.0.80.tar.gz) = 7b66a3f93bdc77487efd3ec543d2feba
SHA256 (matwm2-0.0.80.tar.gz) = 45fa8973d24181e40e610ec1fb8b2b7e2b3580bcdeda002d33c4cb626fe67473
SIZE (matwm2-0.0.80.tar.gz) = 36956
MD5 (matwm2-0.0.89.tar.gz) = 7568c19852302d829966a0d2f1b87001
SHA256 (matwm2-0.0.89.tar.gz) = 89ed180f5ed131a57b76ed24c5dc285008cee72526fb27746f7d07ed0fee208e
SIZE (matwm2-0.0.89.tar.gz) = 41998

View File

@ -1,25 +1,23 @@
--- Makefile.orig 2009-10-17 16:21:44.000000000 -0400
+++ Makefile 2009-10-17 21:33:55.000000000 -0400
@@ -1,7 +1,6 @@
-prefix = /usr/local
-manprefix = /usr/local
--- Makefile.orig 2009-11-25 01:51:50.000000000 +0100
+++ Makefile 2009-11-25 01:53:45.000000000 +0100
@@ -1,7 +1,4 @@
-PREFIX = /usr/local
-MANPREFIX = /usr/local
-XROOT = /usr/X11R6
-CC = cc
+prefix = ${PREFIX}
+manprefix = ${MANPREFIX}
+XROOT = ${LOCALBASE}
+XROOT = ${LOCALBASE}
RM = rm -f
CFLAGS += -DSHAPE -lXext # comment out this line if you haven't got the x extentions library
#CFLAGS += -DDEBUG -ggdb3 # -DDEBUG_EVENTS -DSYNC # for debugging
@@ -19,9 +18,8 @@
CFLAGS += -DSHAPE # comment out this line to disable shape support
@@ -26,9 +23,8 @@
./makeheader *.c > all.h
install: matwm2
- mkdir -p $(prefix)/bin $(manprefix)/man/man1
- install -s matwm2 $(prefix)/bin
- install matwm2.1 $(manprefix)/man/man1
+ ${BSD_INSTALL_PROGRAM} -s matwm2 $(prefix)/bin
+ ${BSD_INSTALL_MAN} matwm2.1 $(manprefix)/man/man1
- mkdir -p $(PREFIX)/bin $(MANPREFIX)/man/man1
- install -s matwm2 $(PREFIX)/bin
- install matwm2.1 $(MANPREFIX)/man/man1
+ ${BSD_INSTALL_PROGRAM} -s matwm2 $(PREFIX)/bin
+ ${BSD_INSTALL_MAN} matwm2.1 $(MANPREFIX)/man/man1
deinstall:
rm -f $(prefix)/bin/matwm2 $(manprefix)/man/man1/matwm2.1* $(manprefix)/man/cat1/matwm2.1*
rm -f $(PREFIX)/bin/matwm2 $(MANPREFIX)/man/man1/matwm2.1* $(MANPREFIX)/man/cat1/matwm2.1*