summaryrefslogtreecommitdiff
path: root/ftp/pavuk/Makefile
diff options
context:
space:
mode:
authorChris Piazza <cpiazza@FreeBSD.org>1999-08-05 04:03:44 +0000
committerChris Piazza <cpiazza@FreeBSD.org>1999-08-05 04:03:44 +0000
commitb8e020f661016b8e874b2ba6b8647f81e2df4257 (patch)
tree5e3c1712f397a2c39b400780972bbc240e7868d2 /ftp/pavuk/Makefile
parentNumerous -Wall fixes. None of which were potentially breaking things, (diff)
Fix a typo in the makefile, it was doing ${MKDIR} share/... instead
of ${MKDIR} ${PREFIX}/share and update to pl 18.
Notes
Notes: svn path=/head/; revision=20531
Diffstat (limited to 'ftp/pavuk/Makefile')
-rw-r--r--ftp/pavuk/Makefile19
1 files changed, 10 insertions, 9 deletions
diff --git a/ftp/pavuk/Makefile b/ftp/pavuk/Makefile
index 8d958d3e291d..3cc338f96c83 100644
--- a/ftp/pavuk/Makefile
+++ b/ftp/pavuk/Makefile
@@ -1,13 +1,13 @@
# New ports collection makefile for: pavuk
-# Version required: 0.9pl15
+# Version required: 0.9pl18
# Date created: 19 March 1998
# Whom: Andrey Zakhvatov
#
-# $Id: Makefile,v 1.9 1999/07/24 03:44:30 cpiazza Exp $
+# $Id: Makefile,v 1.10 1999/08/02 10:43:55 asami Exp $
#
-DISTNAME= pavuk-0.9pl15
-PKGNAME= pavuk-0.9.15
+DISTNAME= pavuk-0.9pl18
+PKGNAME= pavuk-0.9.18
CATEGORIES= ftp www
MASTER_SITES= ${MASTER_SITE_SUNSITE} \
ftp://ftp.idata.sk/pub/unix/www/ \
@@ -21,7 +21,7 @@ MAINTAINER= andy@icc.surw.chel.su
LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm
GNU_CONFIGURE= yes
-CONFIGURE_ARGS= --with-xpm-includes=${X11BASE}/include
+CONFIGURE_ARGS= --with-xpm-includes=${X11BASE}/include --disable-gtk
USE_GMAKE= yes
MAN1= pavuk.1
@@ -31,18 +31,19 @@ do-install:
@ ${INSTALL_MAN} ${WRKSRC}/man/pavuk.1 ${PREFIX}/man/man1
@ ${INSTALL_DATA} ${WRKSRC}/pavukrc.sample ${PREFIX}/etc
@ ${INSTALL_DATA} ${WRKSRC}/pavuk_authinfo.sample ${PREFIX}/etc
- @ ${MKDIR} share/locale/cs/LC_MESSAGES
- @ ${MKDIR} share/locale/de/LC_MESSAGES
- @ ${MKDIR} share/locale/sk/LC_MESSAGES
+ @ ${MKDIR} ${PREFIX}/share/locale/cs/LC_MESSAGES
+ @ ${MKDIR} ${PREFIX}/share/locale/de/LC_MESSAGES
+ @ ${MKDIR} ${PREFIX}/share/locale/sk/LC_MESSAGES
@ ${INSTALL_DATA} ${WRKSRC}/po/cs.mo ${PREFIX}/share/locale/cs/LC_MESSAGES/pavuk.mo
@ ${INSTALL_DATA} ${WRKSRC}/po/de.mo ${PREFIX}/share/locale/de/LC_MESSAGES/pavuk.mo
@ ${INSTALL_DATA} ${WRKSRC}/po/sk.mo ${PREFIX}/share/locale/sk/LC_MESSAGES/pavuk.mo
+ @ ${MKDIR} ${PREFIX}/share/icons
+ @ ${INSTALL_DATA} ${WRKSRC}/icons/*.xpm ${PREFIX}/share/icons
.if !defined(NOPORTDOCS)
@ ${MKDIR} ${PREFIX}/share/doc/pavuk
.for file in AUTHORS BUGS ChangeLog FAQ README THANK_TO TODO
@ ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/pavuk
.endfor
-
.endif
.include <bsd.port.mk>