diff options
author | perky <perky@FreeBSD.org> | 2005-11-29 11:19:47 +0000 |
---|---|---|
committer | perky <perky@FreeBSD.org> | 2005-11-29 11:19:47 +0000 |
commit | 25d162be3e2175327f9d165b71c0b94d30c6cc90 (patch) | |
tree | 7381ae5814973e3f39a1188beb6ae25fb500b837 /lang/io/Makefile | |
parent | 443e37c0ffeba1b458cf6c35d91941c16573e948 (diff) | |
download | FreeBSD-ports-25d162be3e2175327f9d165b71c0b94d30c6cc90.zip FreeBSD-ports-25d162be3e2175327f9d165b71c0b94d30c6cc90.tar.gz |
Include bin/ioServer and bin/ioDesktop to the distribution which
are executable instances for servers and desktops respectively.
Diffstat (limited to 'lang/io/Makefile')
-rw-r--r-- | lang/io/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lang/io/Makefile b/lang/io/Makefile index 6fd5e01..033af80 100644 --- a/lang/io/Makefile +++ b/lang/io/Makefile @@ -7,6 +7,7 @@ PORTNAME= io PORTVERSION= 0.0.2005.10.17 +PORTREVISION= 1 CATEGORIES= lang MASTER_SITES= http://io.urbanape.com/release/ \ http://www.sigusr1.org/~steve/ @@ -48,8 +49,9 @@ pre-patch: ${WRKSRC}/_build.io do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/vm/io ${PREFIX}/bin - ${INSTALL_PROGRAM} ${WRKSRC}/vm/io2c ${PREFIX}/bin +.for fname in vm/io2c vm/io binaries/ioDesktop binaries/ioServer + ${INSTALL_PROGRAM} ${WRKSRC}/${fname} ${PREFIX}/bin +.endfor ${INSTALL_DATA} ${WRKSRC}/vm/_libs/libIoVM.a ${PREFIX}/lib ${INSTALL_DATA} ${WRKSRC}/bindings/*/*.a ${PREFIX}/lib |