49f34d2c58
modify and otherwise manipulate text files, both interactively and via shell scripts. A restricted version of ed, red, can only edit files in the current directory and cannot execute shell commands. Ed is the "standard" text editor in the sense that it is the original editor for Unix, and thus widely available. For most purposes, however, it is superseded by full-screen editors such as GNU Emacs or GNU Moe. ok landry@
36 lines
789 B
Makefile
36 lines
789 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2012/06/25 23:07:54 pascal Exp $
|
|
|
|
COMMENT = GNU version of standard text editor
|
|
|
|
V = 1.6
|
|
DISTNAME = ed-${V}
|
|
PKGNAME = ged-${V}
|
|
|
|
CATEGORIES = editors
|
|
|
|
HOMEPAGE = http://www.gnu.org/software/ed/
|
|
|
|
MAINTAINER = Pascal Stumpf <Pascal.Stumpf@cubes.de>
|
|
|
|
# GPLv3+
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
WANTLIB = c
|
|
|
|
MASTER_SITES = ${MASTER_SITE_GNU:=ed/}
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ARGS += ${CONFIGURE_SHARED} \
|
|
--program-prefix=g \
|
|
CC="${CC}" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
|
|
|
|
FAKE_FLAGS = INSTALL_PROGRAM="${INSTALL_PROGRAM}" \
|
|
INSTALL_SCRIPT="${INSTALL_SCRIPT}" \
|
|
INSTALL_DATA="${INSTALL_DATA}" \
|
|
INSTALL_DIR="${INSTALL_DATA_DIR}"
|
|
|
|
.include <bsd.port.mk>
|