mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
e622242e78
user unknown and hideki70@osk2.threewebnet.or.jp--host unknown). Support NOPORTDOCS. Make a small nod to Jeremy Lea's new USE_GTK and USE_GLIB. Mention buggy preferences dialog.
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
# New ports collection makefile for: workplace
|
|
# Date created: 7 March 1998
|
|
# Whom: Andrey Zakhvatov
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= workplace
|
|
PORTVERSION= 1.0.a3
|
|
PORTEPOCH= 1
|
|
CATEGORIES= x11-fm
|
|
MASTER_SITES= http://people.freebsd.org/~trevor/ports/
|
|
PATCH_SITES= ${MASTER_SITES}
|
|
PATCHFILES= workplace-1.0.a3+tj1.diff.gz
|
|
|
|
MAINTAINER= trevor@FreeBSD.org
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_GLIB= yes
|
|
USE_GTK= yes
|
|
USE_X_PREFIX= yes
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include/glib12 \
|
|
-I${X11BASE}/include/gtk12" \
|
|
LIBS="-L${LOCALBASE}/lib"
|
|
|
|
pre-configure:
|
|
@ ${RM} ${WRKSRC}/config.cache
|
|
|
|
do-install:
|
|
@ ${INSTALL_PROGRAM} ${WRKSRC}/src/workplace ${PREFIX}/bin
|
|
@ ${MKDIR} ${PREFIX}/include/X11/pixmaps
|
|
@ ${INSTALL_DATA} ${WRKSRC}/icons/*.xpm ${PREFIX}/include/X11/pixmaps
|
|
@ ${MKDIR} ${PREFIX}/share/doc/workplace
|
|
.if !defined(NOPORTDOCS)
|
|
.for file in AUTHORS INSTALL README TODO
|
|
@ ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/workplace
|
|
.endfor
|
|
.endif
|
|
@ ${MKDIR} ${PREFIX}/share/examples/workplace
|
|
@ ${INSTALL_DATA} ${WRKSRC}/example/* ${PREFIX}/share/examples/workplace
|
|
|
|
.include <bsd.port.mk>
|