1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00

Tint is a simple panel/taskbar intentionally made for openbox3, but should

also work with other window managers.

The goal is to keep a clean and unintrusive look with lightweight code and
compliance with freedesktop specifications.

Tint taskbar features
    * color/transparency on font, icon, border and background
    * customize mouse event
    * drag and drop task between desktop and switch desktop

Tint panel features
    * clock with font, color and transparency
    * multi-monitor : panel position adjust to monitor, taskbar by monitor

WWW:	http://code.google.com/p/tint2/
This commit is contained in:
Doug Barton 2008-07-21 19:07:41 +00:00
parent 0c0742fc1c
commit aa266dbb06
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=217259
4 changed files with 80 additions and 0 deletions

View File

@ -273,6 +273,7 @@
SUBDIR += terminator
SUBDIR += thinglaunch
SUBDIR += tilda
SUBDIR += tint
SUBDIR += tkXwin
SUBDIR += tkgoodstuff
SUBDIR += trapproto

57
x11/tint/Makefile Normal file
View File

@ -0,0 +1,57 @@
# New ports collection makefile for: tint
# Date created: 21 July 2008
# Whom: dougb@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= tint
PORTVERSION= 0.6.0
CATEGORIES= x11
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
MAINTAINER= dougb@FreeBSD.org
COMMENT= Lightweight freedesktop-compliant panel/taskbar/clock
LIB_DEPENDS= cairo.2:${PORTSDIR}/graphics/cairo
PROJECTHOST= tint2
USE_GNOME= pango
USE_XORG= xinerama
USE_EFL= imlib2
USE_GMAKE= yes
MAKE_ENV+= DESTDIR=${PREFIX}
PLIST_FILES= bin/tint \
etc/xdg/tint/tintrc
PLIST_DIRS= etc/xdg/tint
PORTDOCS= ChangeLog README tint-0.6.pdf
WRKSRC= ${WRKDIR}/${PORTNAME}/src
ALL_TARGET= ${PORTNAME}
post-patch:
@${CP} ${WRKSRC}/Makefile ${WRKSRC}/Makefile.dist
@${SED} -e 's#/usr/bin#/bin#g' \
${WRKSRC}/Makefile.dist > ${WRKSRC}/Makefile
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/../ChangeLog ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/../README ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/../doc/tint-0.6.pdf ${DOCSDIR}
.endif
.if !defined(NOPORTEXAMPLES)
${MKDIR} ${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/../tintrc* ${EXAMPLESDIR}
.for N in 1 2 3 4
PLIST_FILES+= ${EXAMPLESDIR_REL}/tintrc${N}
.endfor
PLIST_DIRS+= ${EXAMPLESDIR_REL}
.endif
.include <bsd.port.mk>

3
x11/tint/distinfo Normal file
View File

@ -0,0 +1,3 @@
MD5 (tint-0.6.0.tar.gz) = 50a327730429373a18286b27f915fefd
SHA256 (tint-0.6.0.tar.gz) = d762311e4bda14ea49f306cb7df1b8375926a4279a48f46ee46a6b86ac2a3603
SIZE (tint-0.6.0.tar.gz) = 362794

19
x11/tint/pkg-descr Normal file
View File

@ -0,0 +1,19 @@
Tint is a simple panel/taskbar intentionally made for openbox3, but should
also work with other window managers.
The goal is to keep a clean and unintrusive look with lightweight code and
compliance with freedesktop specifications.
Tint taskbar features
* color/transparency on font, icon, border and background
* customize mouse event
* drag and drop task between desktop and switch desktop
Tint panel features
* clock with font, color and transparency
* multi-monitor : panel position adjust to monitor, taskbar by monitor
WWW: http://code.google.com/p/tint2/
- Doug Barton
dougb@FreeBSD.org