diff options
author | steve <steve@FreeBSD.org> | 1999-05-03 12:41:09 +0800 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-05-03 12:41:09 +0800 |
commit | 37e38812497d4250b21689c4c3553ceaa76295c6 (patch) | |
tree | 0505ec09e82da2e56b5500279206c1aa9fcbe69e /deskutils/genius/Makefile | |
parent | a82e60dd5e9367c724bc2714e77a519c614bd00b (diff) | |
download | freebsd-ports-gnome-37e38812497d4250b21689c4c3553ceaa76295c6.tar.gz freebsd-ports-gnome-37e38812497d4250b21689c4c3553ceaa76295c6.tar.zst freebsd-ports-gnome-37e38812497d4250b21689c4c3553ceaa76295c6.zip |
Initial import of genius version 0.4.0.
An arbitrary precision calculator for the Gnome Desktop Environment.
PR: 11429
Submitted by: Andrey Zakhvatov <andy@icc.surw.chel.su>
Diffstat (limited to 'deskutils/genius/Makefile')
-rw-r--r-- | deskutils/genius/Makefile | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/deskutils/genius/Makefile b/deskutils/genius/Makefile new file mode 100644 index 000000000000..44172e29aba7 --- /dev/null +++ b/deskutils/genius/Makefile @@ -0,0 +1,50 @@ +# New ports collection makefile for: genius +# Version required: 0.4.0 +# Date created: 1 May 1999 +# Whom: Andrey Zakhvatov +# +# $Id$ +# + +DISTNAME= genius-0.4.0 +CATEGORIES= deskutils gnome +MASTER_SITES= http://ftp.5z.com/pub/genius/ + +MAINTAINER= andy@icc.surw.chel.su + +LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm \ + art_lgpl.1:${PORTSDIR}/x11/gnomelibs \ + audiofile.0:${PORTSDIR}/audio/libaudiofile \ + esd.1:${PORTSDIR}/audio/esound \ + gdk_imlib.3:${PORTSDIR}/graphics/imlib \ + gdk12.1:${PORTSDIR}/x11-toolkits/gtk12 \ + gif.3:${PORTSDIR}/graphics/png \ + glib12.1:${PORTSDIR}/devel/glib12 \ + gmodule12.1:${PORTSDIR}/devel/glib12 \ + gnome.1:${PORTSDIR}/x11/gnomelibs \ + gnomesupport.1:${PORTSDIR}/x11/gnomelibs \ + gnomeui.1:${PORTSDIR}/x11/gnomelibs \ + gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 \ + intl.1:${PORTSDIR}/devel/gettext \ + jpeg.9:${PORTSDIR}/graphics/jpeg \ + png.3:${PORTSDIR}/graphics/png \ + tiff.4:${PORTSDIR}/graphics/tiff34 + +USE_X_PREFIX= yes +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \ + --datadir=${PREFIX}/share/gnome \ + --with-gnome=${X11BASE} +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \ + GLIB_CONFIG="${LOCALBASE}/bin/glib12-config" \ + GTK_CONFIG="${X11BASE}/bin/gtk12-config" + +post-install: +.if !defined(NOPORTDOCS) + @ ${MKDIR} ${PREFIX}/share/doc/genius +.for file in AUTHORS COPYING ChangeLog NEWS README TODO + @ ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/genius +.endfor +.endif + +.include <bsd.port.mk> |