aboutsummaryrefslogtreecommitdiff
path: root/deskutils/gcal
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2001-09-11 12:17:27 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2001-09-11 12:17:27 +0000
commit091e5e8ce2f99bce5e8181833ca5da0de4ee9d01 (patch)
treeb2c32a566ad549fef4845928e89740a32399b199 /deskutils/gcal
parent638bd0a217da9b3800908db80debe26ecb296804 (diff)
downloadports-091e5e8ce2f99bce5e8181833ca5da0de4ee9d01.tar.gz
ports-091e5e8ce2f99bce5e8181833ca5da0de4ee9d01.zip
- Hand the maintainership over to the submitter.
- Make some minor fixes including making it honor PREFIX. PR: ports/30384 Submitted by: Cyrille Lefevre <clefevre@citeweb.net>
Notes
Notes: svn path=/head/; revision=47660
Diffstat (limited to 'deskutils/gcal')
-rw-r--r--deskutils/gcal/Makefile33
1 files changed, 30 insertions, 3 deletions
diff --git a/deskutils/gcal/Makefile b/deskutils/gcal/Makefile
index 91407ce5c6e9..6cd75f3890d6 100644
--- a/deskutils/gcal/Makefile
+++ b/deskutils/gcal/Makefile
@@ -11,15 +11,42 @@ CATEGORIES= deskutils
MASTER_SITES= ${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= gcal
-MAINTAINER= ports@freebsd.org
+MAINTAINER= clefevre@citeweb.net
+
+# Global variables
+#
LIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext
GNU_CONFIGURE= yes
+# required to rebuild info files if needed.
+USE_GMAKE= yes
+
+# PREFIX isn't honored. force it w/ prefix.
+MAKE_ARGS= prefix="${PREFIX}"
+
MAN1= gcal.1 gcal2txt.1 tcal.1 txt2gcal.1
-post-install:
- install-info ${PREFIX}/info/gcal.info ${PREFIX}/info/dir
+# Local variables
+#
+
+INSTALL_INFO?= install-info
+
+# Post-extract
+#
+
+# it's not so simple to get rid of splitted *.info-* files
+# w/ hacking doc/Makefile.in. so, do nothing and left them.
+# post-extract:
+# @${RM} -f ${WRKSRC}/doc/*/${PORTNAME}.info*
+
+# Post-install
+#
+
+post-install: install-info
+
+install-info:
+ @${INSTALL_INFO} ${PREFIX}/info/${PORTNAME}.info ${PREFIX}/info/dir
.include <bsd.port.mk>