1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-23 04:23:08 +00:00

- Update to 0.0.80

PR:		139717
Submitted by:	Kirn Gill <segin2005@gmail.com>
Approved by:	maintainer
This commit is contained in:
Martin Wilke 2009-10-20 10:03:23 +00:00
parent 5e8fd9c69f
commit 8996b7fad5
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=243098
3 changed files with 23 additions and 22 deletions

View File

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

View File

@ -1,3 +1,3 @@
MD5 (matwm2-0.0.75.tar.gz) = 74673df64b6bf5fdda27b0796bfca945
SHA256 (matwm2-0.0.75.tar.gz) = 524f667b636aed04052e64fbff17243b1c08b09b8726b2eb4e9485455d2dfd26
SIZE (matwm2-0.0.75.tar.gz) = 36278
MD5 (matwm2-0.0.80.tar.gz) = 7b66a3f93bdc77487efd3ec543d2feba
SHA256 (matwm2-0.0.80.tar.gz) = 45fa8973d24181e40e610ec1fb8b2b7e2b3580bcdeda002d33c4cb626fe67473
SIZE (matwm2-0.0.80.tar.gz) = 36956

View File

@ -1,24 +1,25 @@
--- Makefile.orig 2009-10-12 02:38:52.000000000 +0200
+++ Makefile 2009-10-12 02:41:48.000000000 +0200
--- 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
-XROOT = /usr/X11R6
-CC = cc
+prefix = ${PREFIX}
+manprefix = ${MANPREFIX}
+XROOT = ${LOCALBASE}
-prefix = /usr/local
-manprefix = /usr/local
-XROOT = /usr/X11R6
-CC = cc
+prefix = ${PREFIX}
+manprefix = ${MANPREFIX}
+XROOT = ${LOCALBASE}
CFLAGS += -DSHAPE -lXext # comment out this line if you haven't got the x extentions library
CFLAGS += -lX11 -I$(XROOT)/include -L$(XROOT)/lib
@@ -20,8 +19,8 @@
#CFLAGS += -DDEBUG -ggdb3 # -DDEBUG_EVENTS -DSYNC # for debugging
@@ -19,9 +18,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
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
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*