41 lines
909 B
Makefile
41 lines
909 B
Makefile
|
# $OpenBSD: Makefile,v 1.1.1.1 2007/04/27 22:00:55 jasper Exp $
|
||
|
|
||
|
COMMENT= "File Alteration Monitor"
|
||
|
|
||
|
DISTNAME= fam-2.7.0
|
||
|
SHARED_LIBS += fam 0.0 # .0.0
|
||
|
CATEGORIES= sysutils
|
||
|
|
||
|
HOMEPAGE= http://oss.sgi.com/projects/fam/
|
||
|
|
||
|
MAINTAINER= Aleksander Piotrowski <alek@openbsd.org>
|
||
|
|
||
|
# GPL
|
||
|
PERMIT_PACKAGE_FTP= Yes
|
||
|
PERMIT_PACKAGE_CDROM= Yes
|
||
|
PERMIT_DISTFILES_FTP= Yes
|
||
|
PERMIT_DISTFILES_CDROM= Yes
|
||
|
WANTLIB= c m pthread rpcsvc stdc++
|
||
|
|
||
|
MASTER_SITES= ftp://oss.sgi.com/projects/fam/download/stable/ \
|
||
|
http://humppa.nl/distfiles/
|
||
|
|
||
|
USE_LIBTOOL= Yes
|
||
|
|
||
|
AUTOCONF_VERSION=2.59
|
||
|
CONFIGURE_STYLE=autoconf
|
||
|
CONFIGURE_ENV= CXXFLAGS="${CXXFLAGS} -DHAVE_SOCKADDR_SUN_LEN" \
|
||
|
LDFLAGS="-pthread"
|
||
|
|
||
|
post-patch:
|
||
|
rm -f ${WRKSRC}/configure
|
||
|
|
||
|
pre-configure:
|
||
|
cp ${FILESDIR}/* ${WRKSRC}/src
|
||
|
|
||
|
post-install:
|
||
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/fam/
|
||
|
mv ${WRKINST}/${SYSCONFDIR}/fam.conf ${PREFIX}/share/examples/fam/
|
||
|
|
||
|
.include <bsd.port.mk>
|