diff options
author | Will Andrews <will@FreeBSD.org> | 2001-03-31 02:46:32 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2001-03-31 02:46:32 +0000 |
commit | f94af4fd928e8be89faca726de57352376402fab (patch) | |
tree | 003adecdf72c2bb362306639f4e9e239893705f8 /devel/fampp/Makefile | |
parent | d81cf027d1d10d86d23173c2cc3880256409385f (diff) | |
download | ports-f94af4fd928e8be89faca726de57352376402fab.tar.gz ports-f94af4fd928e8be89faca726de57352376402fab.zip |
Notes
Diffstat (limited to 'devel/fampp/Makefile')
-rw-r--r-- | devel/fampp/Makefile | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/devel/fampp/Makefile b/devel/fampp/Makefile new file mode 100644 index 000000000000..4247b9b317b0 --- /dev/null +++ b/devel/fampp/Makefile @@ -0,0 +1,36 @@ +# ports collection makefile for: fampp +# Date created: 18 March 2001 +# Whom: Jeremy Norris <ishmael27@home.com> +# +# $FreeBSD$ +# + +PORTNAME= fampp +PORTVERSION= 1.0 +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= ishmael27@home.com + +LIB_DEPENDS= fam.0:${PORTSDIR}/devel/fam + +# This isn't required to utilize full functionality +#USE_GNOME= yes + +WRKSRC= ${WRKDIR}/${PORTNAME} +NO_BUILD= yes + +do-install: +.for FILE in FamppEvents.hh FamppExceptions.hh fam.hh famStatic.hh handle.hh + ${INSTALL_DATA} ${WRKSRC}/include/${FILE} ${PREFIX}/include +.endfor + ${MKDIR} ${PREFIX}/include/private + ${INSTALL_DATA} ${WRKSRC}/include/private/FamppEventModel.hh \ + ${WRKSRC}/include/private/FamppModel.hh ${PREFIX}/include/private + ${MKDIR} ${PREFIX}/share/fampp/examples +.for DIR in gtk simple singleton + ${INSTALL_DATA} ${WRKSRC}/examples/${DIR}/main.cpp ${PREFIX}/share/fampp/examples/${DIR}-main.cpp +.endfor + +.include <bsd.port.mk> |