diff options
author | lioux <lioux@FreeBSD.org> | 2001-05-30 11:07:25 +0800 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2001-05-30 11:07:25 +0800 |
commit | 3657af8704737885124ff424272e1129ef39a326 (patch) | |
tree | 7311dc81f62b2ada88603931acd0c9ff27f0a0d7 /sysutils/wmbattery/Makefile | |
parent | 9f51a313f7cf8afb59f79d4dfa78fd9d3e617d44 (diff) | |
download | freebsd-ports-gnome-3657af8704737885124ff424272e1129ef39a326.tar.gz freebsd-ports-gnome-3657af8704737885124ff424272e1129ef39a326.tar.zst freebsd-ports-gnome-3657af8704737885124ff424272e1129ef39a326.zip |
- give maintainership to submitter
- update port to version 1.18
- add NOPORTDOCS support to PLIST
- be more minimalistic about patching, move some of the responsability
to CONFIGURE_ARGS
Submitted by: Patrick Li <pat@databits.net>
Diffstat (limited to 'sysutils/wmbattery/Makefile')
-rw-r--r-- | sysutils/wmbattery/Makefile | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/sysutils/wmbattery/Makefile b/sysutils/wmbattery/Makefile index b7eec49f788b..485c166dedcd 100644 --- a/sysutils/wmbattery/Makefile +++ b/sysutils/wmbattery/Makefile @@ -6,24 +6,29 @@ # PORTNAME= wmbattery -PORTVERSION= 1.13 +PORTVERSION= 1.18 CATEGORIES= sysutils windowmaker MASTER_SITES= http://kitenet.net/programs/code/wmbattery/ DISTNAME= ${PORTNAME}_${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= pat@databits.net WRKSRC= ${WRKDIR}/${PORTNAME} USE_X_PREFIX= yes USE_XPM= yes -ALL_TARGET= wmbattery +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --x-libraries=${X11BASE}/lib \ + --x-includes=${X11BASE}/include + MAN1= wmbattery.1 post-install: + @${INSTALL} -d -o ${SHAREOWN} -g ${SHAREGRP} -m 555 \ + ${PREFIX}/share/doc/${PORTNAME} .if !defined(NOPORTDOCS) -.for i in INSTALL README TODO - ${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/wmbattery +.for i in README TODO + @${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/doc/${PORTNAME} .endfor .endif |