- don't do silent builds

- don't strip binary unconditionally
- reformat DESCR
- regen patches

ok maintainer
This commit is contained in:
jasper 2010-11-24 13:09:11 +00:00
parent 486373a061
commit 973fe8b5b4
4 changed files with 40 additions and 7 deletions

View File

@ -1,8 +1,9 @@
# $OpenBSD: Makefile,v 1.12 2010/11/24 08:21:27 jasper Exp $ # $OpenBSD: Makefile,v 1.13 2010/11/24 13:09:11 jasper Exp $
COMMENT= tiling window management for the console COMMENT= tiling window management for the console
DISTNAME= dvtm-0.6 DISTNAME= dvtm-0.6
REVISION= 0
CATEGORIES= misc CATEGORIES= misc
HOMEPAGE= http://www.brain-dump.org/projects/dvtm/ HOMEPAGE= http://www.brain-dump.org/projects/dvtm/

View File

@ -0,0 +1,32 @@
$OpenBSD: patch-Makefile,v 1.1 2010/11/24 13:09:11 jasper Exp $
- Don't hide the compile commands.
- Don't unconditionally strip the binary.
--- Makefile.orig Wed Nov 24 09:29:08 2010
+++ Makefile Wed Nov 24 09:29:35 2010
@@ -13,13 +13,13 @@ options:
.c.o:
@echo CC $<
- @${CC} -c ${CFLAGS} $<
+ ${CC} -c ${CFLAGS} $<
${OBJ}: config.h config.mk
dvtm: ${OBJ}
@echo CC -o $@
- @${CC} -o $@ ${OBJ} ${LDFLAGS}
+ ${CC} -o $@ ${OBJ} ${LDFLAGS}
debug: clean
@make CFLAGS='${DEBUG_CFLAGS}'
@@ -40,8 +40,6 @@ dist: clean
@rm -rf dvtm-${VERSION}
install: dvtm
- @echo stripping executable
- @strip -s dvtm
@echo installing executable file to ${DESTDIR}${PREFIX}/bin
@mkdir -p ${DESTDIR}${PREFIX}/bin
@cp -f dvtm ${DESTDIR}${PREFIX}/bin

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-config_mk,v 1.6 2009/10/11 21:59:02 sthen Exp $ $OpenBSD: patch-config_mk,v 1.7 2010/11/24 13:09:11 jasper Exp $
--- config.mk.orig Tue Jul 7 19:29:12 2009 --- config.mk.orig Fri Oct 8 18:06:05 2010
+++ config.mk Sun Oct 11 21:24:40 2009 +++ config.mk Wed Nov 24 09:28:42 2010
@@ -3,15 +3,15 @@ VERSION = 0.5.2 @@ -3,15 +3,15 @@ VERSION = 0.6
# Customize below to fit your system # Customize below to fit your system