diff options
author | sketch <sketch@pkgsrc.org> | 2005-06-07 15:01:09 +0000 |
---|---|---|
committer | sketch <sketch@pkgsrc.org> | 2005-06-07 15:01:09 +0000 |
commit | 4b5e2f544584cfdaaa6d4c950ccbee61704fd23e (patch) | |
tree | 01b42adc47f4b668c46b21abce87410cd9d33ef4 /wm/evilwm/Makefile | |
parent | c12e16a2e99256d7d82574ac0f5ef6fc1f82f0f5 (diff) | |
download | pkgsrc-4b5e2f544584cfdaaa6d4c950ccbee61704fd23e.tar.gz |
Update evilwm to 0.99.18. Changes:
2004-07-10
Fix Alt+Tab crash when there are no clients.
2004-07-11
Coalesce move() and resize() into moveresize().
Refactor window move/resize-by-mouse to eliminate arg to moveresize().
2004-07-12
Added -app option to specify default vdesk (incl sticky), positions
and dimensions.
2004-07-13
Fix so shape information is applied on WM startup.
2005-03-19
Split geometry and vdesk out of -app option into separate -g and -v
options (each apply to the last -app defined).
2005-03-20
Add -mask1 and mask2 switches to override default modifier grabs.
2005-03-29
Tidy client_update_current using Larry Doolittle's patch.
2005-03-30
Handle applications reparenting a window to root - manage them unless
in Withdrawn state.
2005-04-04
Use strchr,strrchr instead of index,rindex.
Set border size to frame size when unmanaging window.
2005-04-06
Return to properly implemented interpretation of win_gravity on
initial mapping of windows.
Restore window's original border width on WM exit.
2005-04-20
Remove deprecated 'vdesk' external pager support.
2005-04-25
Merging Larry Doolittle's patches: Stricter warning settings for gcc.
LD: Cast unused paramters to void.
2005-04-26
Applied LD's patch to declare opt_term statically for now (intent
is to allow arguments to program specified with -term).
LD: Try to print ssize_t correctly and within strict standards.
LD: Add $(EXTRA_DEFINES) to Makefile.
LD: Improve punctuation in comments.
LD: Use long instead of CARD32 for argument to XChangeProperty()
due to odd X Consortium decision.
LD: Un-shadow variable p in remove_client debugging segment.
LD: Assign opt_term at compile time instead of malloc.
LD: Fuss with execvp casting and comments (edited for brevity by CA).
2005-06-02
Ignore PPosition during window placement (back to old behaviour of
positioning window under pointer unless user-specified).
Diffstat (limited to 'wm/evilwm/Makefile')
-rw-r--r-- | wm/evilwm/Makefile | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/wm/evilwm/Makefile b/wm/evilwm/Makefile index f4580c409e0..6a1faafaa9c 100644 --- a/wm/evilwm/Makefile +++ b/wm/evilwm/Makefile @@ -1,25 +1,24 @@ -# $NetBSD: Makefile,v 1.14 2005/06/01 18:03:25 jlam Exp $ +# $NetBSD: Makefile,v 1.15 2005/06/07 15:01:09 sketch Exp $ # -DISTNAME= evilwm_0.99.17.orig -PKGNAME= ${DISTNAME:S/.orig//:S/_/-/} +DISTNAME= evilwm-0.99.18 CATEGORIES= wm x11 -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=evilwm/} +MASTER_SITES= http://www.6809.org.uk/evilwm/ MAINTAINER= sketch@NetBSD.org -HOMEPAGE= http://evilwm.sourceforge.net/ +HOMEPAGE= http://www.6809.org.uk/evilwm/ COMMENT= Minimalist Window Manager for X -WRKSRC= ${WRKDIR}/${DISTNAME:S/_/-/} - -BUILD_TARGET= allinone - .include "../../mk/x11.buildlink3.mk" -post-install: +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/evilwm ${PREFIX}/bin/evilwm + ${INSTALL_MAN} ${WRKSRC}/evilwm.1 ${PREFIX}/man/man1/evilwm.1 ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/evilwm - cd ${WRKSRC} && \ - ${INSTALL_DATA} ChangeLog README README.vdesk TODO \ - ${PREFIX}/share/doc/evilwm + for file in ChangeLog README TODO; \ + do \ + ${INSTALL_DATA} ${WRKSRC}/$$file ${PREFIX}/share/doc/evilwm/; \ + done + .include "../../mk/bsd.pkg.mk" |