diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-12-26 16:12:17 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-12-26 16:12:17 +0000 |
commit | 932763559943d3386e87556c2ef5635009db4db7 (patch) | |
tree | 7f03efd4fbc2bc789eb93d9fa5954c03ba2083e7 /cad/linux-eagle5/Makefile | |
parent | 27892f93f910c950c71fd9aea71315ec3718cf62 (diff) | |
download | ports-932763559943d3386e87556c2ef5635009db4db7.tar.gz ports-932763559943d3386e87556c2ef5635009db4db7.zip |
Notes
Diffstat (limited to 'cad/linux-eagle5/Makefile')
-rw-r--r-- | cad/linux-eagle5/Makefile | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/cad/linux-eagle5/Makefile b/cad/linux-eagle5/Makefile new file mode 100644 index 000000000000..df8f84656610 --- /dev/null +++ b/cad/linux-eagle5/Makefile @@ -0,0 +1,46 @@ +# New ports collection makefile for: linux-eagle +# Date created: 29 December 2001 +# Whom: Maxim Sobolev <sobomax@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= eagle +PKGNAMEPREFIX= linux- +EAGLEVERSION= 4.08r2 +PORTVERSION= ${EAGLEVERSION:S/r/./} +CATEGORIES= cad +MASTER_SITES= ftp://ftp.cadsoft.de/pub/program/${EAGLEVERSION}/ +DISTNAME= ${PORTNAME}-${EAGLEVERSION}e +EXTRACT_SUFX= .tgz + +MAINTAINER= ports@FreeBSD.org + +RUN_DEPENDS= ${LINUXBASE}/lib/ld.so:${PORTSDIR}/emulators/linux_base + +ONLY_FOR_ARCHS= i386 + +WRKSRC= ${WRKDIR}/${PORTNAME}-${EAGLEVERSION} + +RESTRICTED= "Usage permitted for non-commercial purposes only" +NO_CDROM= "Sale for profit is not permitted" + +NO_BUILD= yes +NO_FILTER_SHLIBS= yes + +MAN1= eagle.1 + +do-install: + ${MKDIR} ${DATADIR} + ${TAR} -C ${WRKSRC} -cf - . | ${TAR} -C ${DATADIR} --unlink -xf - + ${LN} -sf ${DATADIR}/bin/eagle ${PREFIX}/bin/eagle + ${INSTALL_MAN} ${DATADIR}/man/eagle.1 ${PREFIX}/man/man1 + +post-install: + @${ECHO_MSG} + @${ECHO_MSG} "After installation please enter the command \`eagle' to invoke the product" + @${ECHO_MSG} "registration (you need to have WRITE ACCESS to ${DATADIR}/bin" + @${ECHO_MSG} "directory for doing this)." + @${ECHO_MSG} + +.include <bsd.port.mk> |