diff options
author | Yukihiro Nakai <nakai@FreeBSD.org> | 2000-01-31 08:43:45 +0000 |
---|---|---|
committer | Yukihiro Nakai <nakai@FreeBSD.org> | 2000-01-31 08:43:45 +0000 |
commit | 5149da90dc36f6008f22de90d7db74a5e20bbfbb (patch) | |
tree | 4ebd806873fc733804fff7c78ccdbfe5a06bbf21 /editors/dedit/Makefile | |
parent | d3fddc1271eeb363c450f74d53fccdc55a77645a (diff) |
Notes
Diffstat (limited to 'editors/dedit/Makefile')
-rw-r--r-- | editors/dedit/Makefile | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/editors/dedit/Makefile b/editors/dedit/Makefile new file mode 100644 index 000000000000..f4d861a68a7d --- /dev/null +++ b/editors/dedit/Makefile @@ -0,0 +1,38 @@ +# New ports collection makefile for: dedit +# Version required: 0.5.6 +# Date created: 26 January 2000 +# Whom: Yukihiro Nakai <nakai@FreeBSD.org> +# +# $FreeBSD$ +# + +DISTNAME= dedit_0.5.6 +PKGNAME= dedit-0.5.6 +CATEGORIES= editors +MASTER_SITES= ftp://ftp.debian.org/debian/dists/unstable/main/source/editors/ + +MAINTAINER= nakai@FreeBSD.org + +LIB_DEPENDS= iconv.0:${PORTSDIR}/converters/iconv \ + gnome.3:${PORTSDIR}/x11/gnomelibs + +WRKSRC= ${WRKDIR}/dedit-0.5.6 + +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config + +USE_GMAKE= yes +USE_X_PREFIX= yes +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \ + --datadir=${PREFIX}/share/gnome \ + --with-gnome=${PREFIX} +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASSE}/include" \ + GTK_CONFIG="${GTK_CONFIG}" \ + LIBS="-L${LOCALBASE}/lib -liconv" + +MAN1= dedit.1 dedit.ja.1 + +pre-configure: + ( cd ${WRKSRC}; ${SH} bootstrap ) + +.include <bsd.port.mk> |