diff options
author | danfe <danfe@FreeBSD.org> | 2013-08-02 17:53:22 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2013-08-02 17:53:22 +0800 |
commit | 6b409abd9b8c369af3671212f2aa265ae0aff93f (patch) | |
tree | 2d9a07b00ecd2ecb03345cc5f195572d17cf9945 | |
parent | bb641513d3b66f1d91ca24110e7953b4c4c02a43 (diff) | |
download | freebsd-ports-gnome-6b409abd9b8c369af3671212f2aa265ae0aff93f.tar.gz freebsd-ports-gnome-6b409abd9b8c369af3671212f2aa265ae0aff93f.tar.zst freebsd-ports-gnome-6b409abd9b8c369af3671212f2aa265ae0aff93f.zip |
- Try to unbreak parallel (-jX) builds
- Define LICENSE (MIT), augment MASTER_SITES
- Cleanup Makefile and port description
-rw-r--r-- | x11-wm/vtwm/Makefile | 16 | ||||
-rw-r--r-- | x11-wm/vtwm/files/Makefile.bsd | 8 | ||||
-rw-r--r-- | x11-wm/vtwm/pkg-descr | 3 |
3 files changed, 13 insertions, 14 deletions
diff --git a/x11-wm/vtwm/Makefile b/x11-wm/vtwm/Makefile index c59c2994faf1..ccbbd7d8fbc9 100644 --- a/x11-wm/vtwm/Makefile +++ b/x11-wm/vtwm/Makefile @@ -1,21 +1,21 @@ -# Created by: bmah@ca.sandia.gov +# Created by: Bruce A. Mah <bmah@ca.sandia.gov> # $FreeBSD$ PORTNAME= vtwm PORTVERSION= 5.4.7 PORTREVISION= 4 CATEGORIES= x11-wm -MASTER_SITES= http://www.vtwm.org/downloads/ +MASTER_SITES= SF http://www.vtwm.org/downloads/ MAINTAINER= ak@FreeBSD.org -COMMENT= Twm with a virtual desktop and optional Motif-like features +COMMENT= Virtual tab window manager -USE_XORG= xpm xmu - -ETCDIR?= ${PREFIX}/etc +LICENSE= MIT +USE_XORG= xpm xmu MAKEFILE= ${FILESDIR}/Makefile.bsd +ETCDIR?= ${PREFIX}/etc MAN1= vtwm.1 OPTIONS_DEFINE= SOUND NLS @@ -24,13 +24,13 @@ OPTIONS_DEFAULT= SOUND NLS .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MSOUND} -LIB_DEPENDS+= rplay:${PORTSDIR}/audio/rplay +LIB_DEPENDS+= librplay.so:${PORTSDIR}/audio/rplay MAKE_ENV+= SOUND=yes .else MAKE_ENV+= SOUND=no .endif -.if empty(PORT_OPTIONS:MNLS) +.if ! ${PORT_OPTIONS:MNLS} CFLAGS+= -DNO_I18N_SUPPORT .endif diff --git a/x11-wm/vtwm/files/Makefile.bsd b/x11-wm/vtwm/files/Makefile.bsd index d053e34ee643..cb098894b9c6 100644 --- a/x11-wm/vtwm/files/Makefile.bsd +++ b/x11-wm/vtwm/files/Makefile.bsd @@ -5,7 +5,7 @@ MANDIR?= $(PREFIX)/man/man NO_MANCOMPRESS?= yes MAN1= vtwm.1 - + SOUND?= yes LN= ln -f @@ -36,7 +36,7 @@ FILES= system.vtwmrc FILESDIR= $(ETCDIR) FILESMODE= 644 -deftwmrc.c: vtwm.man system.vtwmrc +deftwmrc.c: system.vtwmrc echo '/* ' >$@ echo ' * This file is generated automatically from the default' >>$@ echo ' * VTWM bindings file system.vtwmrc.'$(SYS_VTWMRC_LOOK)' by the VTWM Makefile.' >>$@ @@ -56,8 +56,8 @@ lastmake.c: echo ' "Build: '`date`'",' >>$@ echo ' "" };' >>$@ -vtwm.man: - $(LN) doc/$@ vtwm.1 +$(MAN1): + $(LN) doc/vtwm.man $@ system.vtwmrc: $(LN) $@.$(SYS_VTWMRC_LOOK) $@ diff --git a/x11-wm/vtwm/pkg-descr b/x11-wm/vtwm/pkg-descr index 066d07216864..f75b420a38aa 100644 --- a/x11-wm/vtwm/pkg-descr +++ b/x11-wm/vtwm/pkg-descr @@ -1,6 +1,5 @@ -vtwm is a twm variant with a virtual desktop. Unlike its older cousin +Vtwm is a twm variant with a virtual desktop. Unlike its older cousin tvtwm, vtwm is under active development, and supports a number of relatively new features, such as configurable Motif-like decorations. -The homepage for this program is: WWW: http://www.vtwm.org/ |