Files
Lawrence VelázquezandMojca Miklavec 34b3070336 Remove all $Id$ lines
for pf in */*/Portfile
do
    ed -s "$pf" <<-'EOF'
	1,3g/^[[:space:]]*#[[:space:]]*\$Id.*\$[[:space:]]*$/d
	1g/^[[:space:]]*$/d
	w
	q
	EOF
done
2016-12-28 18:14:04 +01:00

42 lines
1.4 KiB
Tcl

# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
PortSystem 1.0
PortGroup cmake 1.0
name efte
version 1.1
revision 1
categories editors
license {Artistic-1 GPL-2+}
platforms darwin
maintainers nomaintainer
description configurable programmers editor
long_description eFTE is a lightweight, extendable, folding text editor \
geared toward the programmer. eFTE is a fork of FTE with goals of \
taking FTE to the next step, hence, Enhanced FTE.
homepage http://efte.sourceforge.net
master_sites sourceforge:project/efte/efte/${version}
use_bzip2 yes
checksums rmd160 8f2410a2d942038b2143e34389d04e59cf7ab036 \
sha256 b71b9301dc781555bd9f4c73d7d81eb92701ccd5119b17da9b86ede402d31e16
depends_lib port:ncurses
configure.args -DUSE_GPM=OFF \
-DBUILD_CONSOLE=ON \
-DBUILD_X=OFF
variant x11 {
depends_lib-append port:xorg-libice\
port:xorg-libsm \
port:xorg-libXext \
port:xorg-libX11 \
port:xpm
configure.args-replace -DBUILD_X=OFF -DBUILD_X=ON
}
default_variants +x11