diff options
author | Will Andrews <will@FreeBSD.org> | 2000-12-19 10:20:36 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2000-12-19 10:20:36 +0000 |
commit | 490492b8aa621d25fe7170f9fe1cfbf5011ca8d8 (patch) | |
tree | 6021f3cd31645b8e5379446b42fb562301f6a09a /misc/ftree/Makefile | |
parent | 04b54b93b96194616e951a0a781b5016558b9e56 (diff) |
Add ftree 1.6, a tool for displaying family tree genealogy information.
It's a Linux binary.
PR: 22997
Submitted by: Kim Scarborough <sluggo@unknown.nu>
Notes
Notes:
svn path=/head/; revision=36098
Diffstat (limited to 'misc/ftree/Makefile')
-rw-r--r-- | misc/ftree/Makefile | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/misc/ftree/Makefile b/misc/ftree/Makefile new file mode 100644 index 000000000000..f695d7ed50b7 --- /dev/null +++ b/misc/ftree/Makefile @@ -0,0 +1,54 @@ +# New ports collection makefile for: ftree +# Date created: 20 November 2000 +# Whom: Kim Scarborough <user@unknown.nu> +# +# $FreeBSD$ +# + +PORTNAME= ftree +PORTVERSION= 1.6 +CATEGORIES= misc linux +MASTER_SITES= http://www.vjet.demon.co.uk/ftree/ \ + http://www.unknown.nu/ports/ +DISTNAME= ftree-1.6-static +EXTRACT_SUFX= .tgz + +MAINTAINER= user@unknown.nu + +RUN_DEPENDS= /compat/linux/lib/libc.so.6:${PORTSDIR}/emulators/linux_base + +ONLY_FOR_ARCHS= i386 +NO_CDROM= Non-commercial use only +RESTRICTED= Non-commercial use only + +WRKSRC= ${WRKDIR}/usr +MAN1= ftree.1 + +STRIP= # empty: do not strip linux binary! + +do-patch: +do-configure: +do-build: + brandelf -t Linux ${WRKSRC}/X11R6/bin/ftree +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/X11R6/bin/ftree ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/X11R6/man/man1/ftree.1 ${PREFIX}/man/man1 +.if !defined(NOPORTDOCS) + ${MKDIR} ${PREFIX}/share/doc/ftree + ${MKDIR} ${PREFIX}/share/doc/ftree/examples + ${INSTALL_DATA} ${WRKSRC}/doc/ftree-1.6/Copyright\ + ${PREFIX}/share/doc/ftree + ${INSTALL_DATA} ${WRKSRC}/doc/ftree-1.6/ReleaseNotes-1.6.txt\ + ${PREFIX}/share/doc/ftree + ${INSTALL_DATA} ${WRKSRC}/doc/ftree-1.6/examples/royal.ged\ + ${PREFIX}/share/doc/ftree/examples +.endif + +pre-install: + @${ECHO} + @${ECHO} "This software is licensed for NON-COMMERCIAL USE only. If you intend" + @${ECHO} "to use ftree for any commercial purpose you must contact the author" + @${ECHO} "at ftree@vjet.demon.co.uk for a license arrangement." + @${ECHO} + +.include <bsd.port.mk> |