# $Id: Portfile,v 1.1 2004/03/09 02:46:50 waqar Exp $

PortSystem	1.0
name		ipcs
version		1.0
categories	sysutils
maintainers	waqar@opendarwin.org
description	ipcs / ipcrm commands for os x
long_description \
	The ipcs command can be used to obtain the status of all 	\
	System V IPC objects. The ipcrm command can be used to remove 	\
	an IPC object from the kernel. While IPC objects can be 	\
	removed via system calls in user code, the need often arises, 	\
	especially under development environments, to remove IPC 	\
	objects manually.
homepage	http://www.cameronpond.org/computer.html
distname	${name}
platforms	darwin
master_sites	http://www.cameronpond.org/~alex
checksums	md5 10f014a4c94d9d4bb1e3163a34534934
use_configure	no
build.target	{}
destroot	{
	cd ${worksrcpath}
	system "install ipcs ${destroot}${prefix}/bin"
	system "install ipcrm ${destroot}${prefix}/bin"
	system "install ipcs.1 ${destroot}${prefix}/share/man/man1"
	system "install ipcrm.1 ${destroot}${prefix}/share/man/man1"
}
