summaryrefslogtreecommitdiff
path: root/editors/jed
diff options
context:
space:
mode:
authorwiz <wiz>2003-04-05 21:34:14 +0000
committerwiz <wiz>2003-04-05 21:34:14 +0000
commite0bfa4e83a43d964c913304ee597f86035ab3e24 (patch)
tree7f766f6d2222b076c08eb9a2e7f07d476c4b6880 /editors/jed
parent85855deac3d0cfd9c807c615e35d7e7f2fb81dbe (diff)
downloadpkgsrc-e0bfa4e83a43d964c913304ee597f86035ab3e24.tar.gz
Separate out a Makefile.common, to be shared with xjed.
Diffstat (limited to 'editors/jed')
-rw-r--r--editors/jed/Makefile28
-rw-r--r--editors/jed/Makefile.common28
2 files changed, 30 insertions, 26 deletions
diff --git a/editors/jed/Makefile b/editors/jed/Makefile
index 6ec102d0b5b..c3d7a188952 100644
--- a/editors/jed/Makefile
+++ b/editors/jed/Makefile
@@ -1,33 +1,9 @@
-# $NetBSD: Makefile,v 1.21 2003/04/05 20:29:41 wiz Exp $
+# $NetBSD: Makefile,v 1.22 2003/04/05 21:34:14 wiz Exp $
#
-
-DISTNAME= jed-0.99-16
PKGNAME= jed-0.99.16
-CATEGORIES= editors
-MASTER_SITES= ftp://ftp.jedsoft.org/pub/davis/jed/v0.99/ \
- ftp://ftp.fu-berlin.de/pub/unix/editors/jed/v0.99/ \
- ftp://ftp.ntua.gr/pub/lang/slang/jed/v0.99/ \
- ftp://ftp.bay.net.au/pub/jed/v0.99/ \
- ftp://ftp.uni-stuttgart.de/pub/unix/misc/slang/jed/v0.99/
-EXTRACT_SUFX= .tar.bz2
-
-MAINTAINER= joerg@gmx.net
-HOMEPAGE= http://www.jedsoft.org/jed/
+.include "../jed/Makefile.common"
COMMENT= Extensible folding editor with Emacs/WordStar/EDT emulations
-USE_BUILDLINK2= yes
-GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --without-X
-EGDIR= ${PREFIX}/share/examples/jed
-CONF_FILES= ${EGDIR}/jed.conf ${PREFIX}/etc/jed.conf
-
-post-install:
- ${RMDIR} ${PREFIX}/share/jed/bin
- ${RMDIR} ${PREFIX}/share/jed/lib/tm
- ${INSTALL_DATA_DIR} ${EGDIR}
- ${INSTALL_DATA} ${WRKSRC}/lib/jed.conf ${EGDIR}
-
-.include "../../mk/bsd.pkg.install.mk"
-.include "../../devel/libslang/buildlink2.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/editors/jed/Makefile.common b/editors/jed/Makefile.common
new file mode 100644
index 00000000000..ae7d2be2d74
--- /dev/null
+++ b/editors/jed/Makefile.common
@@ -0,0 +1,28 @@
+# $NetBSD: Makefile.common,v 1.1 2003/04/05 21:34:14 wiz Exp $
+#
+DISTNAME= jed-0.99-16
+CATEGORIES= editors
+MASTER_SITES= ftp://ftp.jedsoft.org/pub/davis/jed/v0.99/ \
+ ftp://ftp.fu-berlin.de/pub/unix/editors/jed/v0.99/ \
+ ftp://ftp.ntua.gr/pub/lang/slang/jed/v0.99/ \
+ ftp://ftp.bay.net.au/pub/jed/v0.99/ \
+ ftp://ftp.uni-stuttgart.de/pub/unix/misc/slang/jed/v0.99/
+EXTRACT_SUFX= .tar.bz2
+
+MAINTAINER= joerg@gmx.net
+HOMEPAGE= http://www.jedsoft.org/jed/
+
+USE_BUILDLINK2= yes
+GNU_CONFIGURE= yes
+
+EGDIR= ${PREFIX}/share/examples/jed
+CONF_FILES= ${EGDIR}/jed.conf ${PREFIX}/etc/jed.conf
+
+post-install:
+ ${RMDIR} ${PREFIX}/share/jed/bin
+ ${RMDIR} ${PREFIX}/share/jed/lib/tm
+ ${INSTALL_DATA_DIR} ${EGDIR}
+ ${INSTALL_DATA} ${WRKSRC}/lib/jed.conf ${EGDIR}
+
+.include "../../mk/bsd.pkg.install.mk"
+.include "../../devel/libslang/buildlink2.mk"