diff options
author | obrien <obrien@FreeBSD.org> | 2002-09-11 23:04:14 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-09-11 23:04:14 +0800 |
commit | 110ff723f31680ed5d11dd5dc9d5e51768ad1f32 (patch) | |
tree | a123fa0f28ec4127efefee23100fd4d0788a5ef1 /news/aub/Makefile | |
parent | 8fa7d02fa9f6d2ed180032af4891ac09da4f7e05 (diff) | |
download | freebsd-ports-gnome-110ff723f31680ed5d11dd5dc9d5e51768ad1f32.tar.gz freebsd-ports-gnome-110ff723f31680ed5d11dd5dc9d5e51768ad1f32.tar.zst freebsd-ports-gnome-110ff723f31680ed5d11dd5dc9d5e51768ad1f32.zip |
Upgrade to 2.1.3.
Submitted by: wjv
Diffstat (limited to 'news/aub/Makefile')
-rw-r--r-- | news/aub/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/news/aub/Makefile b/news/aub/Makefile index c3fe8c432eaf..fbc171178353 100644 --- a/news/aub/Makefile +++ b/news/aub/Makefile @@ -7,24 +7,26 @@ # PORTNAME= aub -PORTVERSION= 2.1.2 +PORTVERSION= 2.1.3 CATEGORIES= news MASTER_SITES= http://yukidoke.org/~mako/projects/aub/download/ MAINTAINER= obrien@FreeBSD.org NO_BUILD= yes -MAN1= aub.1 +MAN1= aub.1 aubconf.1 DOC_FILES= COPYING README aubconf.example Introducing_AUB USAGE do-install: ${INSTALL_SCRIPT} ${WRKSRC}/aub ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/aub.1 ${PREFIX}/man/man1 +.for manpage in ${MAN1} + ${INSTALL_MAN} ${WRKSRC}/${manpage} ${MANPREFIX}/man/man1 +.endfor .if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/aub + ${MKDIR} ${DOCSDIR} .for doc in ${DOC_FILES} - ${INSTALL_MAN} ${WRKSRC}/${doc} ${PREFIX}/share/doc/aub + ${INSTALL_MAN} ${WRKSRC}/${doc} ${DOCSDIR} .endfor .endif |