View | Details | Raw Unified | Return to bug 198891
Collapse All | Expand All

(-)x11/stjerm/Makefile (-2 / +4 lines)
Lines 2-10 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	stjerm
4
PORTNAME=	stjerm
5
PORTVERSION=	0.16
5
PORTVERSION=	0.18
6
CATEGORIES=	x11
6
CATEGORIES=	x11
7
MASTER_SITES=	http://stjerm-terminal.googlecode.com/files/
8
7
9
MAINTAINER=	lichray@gmail.com
8
MAINTAINER=	lichray@gmail.com
10
COMMENT=	GTK+-based quake-like terminal emulator
9
COMMENT=	GTK+-based quake-like terminal emulator
Lines 12-17 Link Here
12
LICENSE=	GPLv2
11
LICENSE=	GPLv2
13
LICENSE_FILE=	${WRKSRC}/COPYING
12
LICENSE_FILE=	${WRKSRC}/COPYING
14
13
14
USE_GITHUB=	yes
15
GH_TAGNAME=	v${DISTVERSION}
16
15
GNU_CONFIGURE=	yes
17
GNU_CONFIGURE=	yes
16
LIBS+=		-L${LOCALBASE}/lib -lXinerama
18
LIBS+=		-L${LOCALBASE}/lib -lXinerama
17
USES=		gmake pkgconfig
19
USES=		gmake pkgconfig
(-)x11/stjerm/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (stjerm-0.16.tar.gz) = 517b370fa2e0a5baac885879707d4f550488a4283996ef2745210811b5c440dd
1
SHA256 (stjerm-stjerm-0.18-v0.18_GH0.tar.gz) = 7bfaa74d85bb0418ef8308e6a1471294ab8897b1f33c385fed4b2bf85a3433d3
2
SIZE (stjerm-0.16.tar.gz) = 45898
2
SIZE (stjerm-stjerm-0.18-v0.18_GH0.tar.gz) = 26095
(-)x11/stjerm/files/patch-src_config.c (-15 / +3 lines)
Lines 1-18 Link Here
1
--- src/config.c.orig	2011-07-19 16:52:33.000000000 -0500
1
--- src/config.c~	2014-01-12 11:31:51.000000000 -0500
2
+++ src/config.c	2011-10-12 17:05:50.164711868 -0500
2
+++ src/config.c	2015-03-24 17:32:49.873800297 -0400
3
@@ -146,7 +146,11 @@ pid_t get_stjerm_pid(void)
3
@@ -614,7 +614,7 @@ void conf_init(void)
4
     char buffer[100];
5
     char **list;
6
     int i = 0;
7
+#ifdef __FreeBSD__
8
+    FILE *p = popen("pgrep stjerm", "r");
9
+#else
10
     FILE *p = popen("pidof stjerm", "r");
11
+#endif
12
     
13
     if(p == NULL)
14
     {
15
@@ -552,7 +556,7 @@ void conf_init(void)
16
         exit(1);
4
         exit(1);
17
     }
5
     }
18
 
6
 
(-)x11/stjerm/pkg-descr (-4 / +3 lines)
Lines 1-5 Link Here
1
Stjerm is a quake-like terminal emulator. Its window is shown with a key
1
Stjerm is a roll-down, quake-like terminal emulator that shows up on keyboard
2
shortcut. Stjerm is very minimalistic and works well with Compiz window
2
shortcut, and hides away when not needed.
3
manager.
4
3
5
WWW: https://code.google.com/p/stjerm-terminal/
4
WWW: https://github.com/stjerm/stjerm

Return to bug 198891