freebsd-ports/x11/conlecterm/Makefile
Marcelo Araujo d290f5e346 This is a multi tabbed terminal that uses embedded windows and a gtk
notebook.  Any program that has an option to be embedded can be used
with it.

Possible programs include:
* rxvt-unicode
* xterm
* emacs
* vim

WWW: https://github.com/hxw/conlecterm

Submitted by:	Christopher Hall <hsw@bitmark.com> (via Slack)
2019-09-18 07:23:47 +00:00

84 lines
2 KiB
Makefile

# $FreeBSD$
PORTNAME= conlecterm
PORTVERSION= 1.4.1.0
DISTVERSIONPREFIX= v
CATEGORIES= x11
MAINTAINER= hsw@bitmark.com
COMMENT= Multi tabbed terminal for rxvt/xterm/emacs
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= urxvt:x11/rxvt-unicode
USES= cabal xorg gnome pkgconfig
USE_GNOME= gtk30 cairo glib20
USE_XORG= xext x11 xscrnsaver xinerama xrandr
OPTIONS_DEFINE= EXAMPLES
OPTIONS_SUB= yes
INSTALLS_ICONS= yes
INSTALL_TARGET= install-strip
USE_GITHUB= yes
GH_ACCOUNT= hxw
EXECUTABLE= conlecterm
USE_CABAL= \
aeson-1.4.5.0 \
alex-3.2.4 \
attoparsec-0.13.2.3 \
base-compat-0.11.0 \
base-orphans-0.8.1 \
cairo-0.13.6.0 \
data-default-0.7.1.1 \
data-default-class-0.1.2.0 \
data-default-instances-containers-0.0.1 \
data-default-instances-dlist-0.0.1 \
data-default-instances-old-locale-0.0.1 \
dlist-0.8.0.7 \
gio-0.13.6.0 \
glib-0.13.7.0 \
gtk2hs-buildtools-0.13.5.0 \
gtk3-0.15.1 \
happy-1.19.12 \
hashable-1.3.0.0 \
hashtables-1.2.3.4 \
integer-logarithms-1.0.3 \
old-locale-1.0.0.7_2 \
pango-0.13.6.0 \
primitive-0.7.0.0 \
random-1.1 \
scientific-0.3.6.2 \
tagged-0.8.6 \
th-abstraction-0.3.1.0 \
time-compat-1.9.2.2 \
unordered-containers-0.2.10.0_1 \
utf8-string-1.0.1.1_3 \
uuid-types-1.0.3_2 \
vector-0.12.0.3 \
X11-1.9
PLIST_FILES+= share/applications/conlecterm.desktop
PLIST_FILES+= share/icons/hicolor/scalable/apps/conlecterm.svg
PORTEXAMPLES= \
conlecterm.conf \
conlecterm.css \
tabs.css
post-install:
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/conlecterm.conf ${STAGEDIR}${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/conlecterm.css ${STAGEDIR}${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/tabs.css ${STAGEDIR}${EXAMPLESDIR}
@${MKDIR} ${STAGEDIR}${PREFIX}/share/applications/
${INSTALL_DATA} ${WRKSRC}/conlecterm.desktop ${STAGEDIR}${PREFIX}/share/applications/
@${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps
${INSTALL_DATA} ${WRKSRC}/conlecterm.svg ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps/
.include <bsd.port.mk>