mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
Add ekg, a client for the polish IM System gadu-gadu
PR: 54586 Submitted by: Jacek Pelka <jacek@combit.com.pl>
This commit is contained in:
parent
893b6ff7ec
commit
752aaadf4b
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=85292
@ -134,6 +134,7 @@
|
||||
SUBDIR += edonkey-gui-gtk-urlslave
|
||||
SUBDIR += edonkey-gui-java
|
||||
SUBDIR += ehnt
|
||||
SUBDIR += ekg
|
||||
SUBDIR += erlang_xmlrpc
|
||||
SUBDIR += etherape
|
||||
SUBDIR += etherboot
|
||||
|
33
net/ekg/Makefile
Normal file
33
net/ekg/Makefile
Normal file
@ -0,0 +1,33 @@
|
||||
# Ports collection makefile for: ekg
|
||||
# Date created: 24 March 2003
|
||||
# Whom: Jacek Pelka <jacek@combit.com.pl>
|
||||
#
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= ekg
|
||||
PORTVERSION= 1.1
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= http://dev.null.pl/ekg/
|
||||
DISTNAME= ${PORTNAME}-${PORTVERSION}
|
||||
|
||||
MAINTAINER= jacek@combit.com.pl
|
||||
COMMENT= Text-mode Gadu-Gadu client
|
||||
|
||||
USE_GMAKE= yes
|
||||
GNU_CONFIGURE= yes
|
||||
USE_GNOME= gnomehack
|
||||
CONFIGURE_ARGS+= --enable-shared \
|
||||
--disable-static \
|
||||
--enable-dynamic \
|
||||
--mandir=${PREFIX}/man
|
||||
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
MAN1= ekg.1
|
||||
MANLANG= "" pl
|
||||
MANCOMPRESSED= no
|
||||
|
||||
post-install:
|
||||
${STRIP_CMD} ${PREFIX}/bin/ekg
|
||||
|
||||
.include <bsd.port.mk>
|
1
net/ekg/distinfo
Normal file
1
net/ekg/distinfo
Normal file
@ -0,0 +1 @@
|
||||
MD5 (ekg-1.1.tar.gz) = dfcc114d41a942b774b26143c509d90f
|
38
net/ekg/files/patch-aa
Normal file
38
net/ekg/files/patch-aa
Normal file
@ -0,0 +1,38 @@
|
||||
--- lib/Makefile.in Thu May 15 13:59:09 2003
|
||||
+++ lib/Makefile.in Thu Jul 17 15:33:55 2003
|
||||
@@ -8,7 +8,7 @@
|
||||
# increased with ABI changes
|
||||
VERSION_MAJOR=2
|
||||
# increased with API changes
|
||||
-VERSION_MINOR=13
|
||||
+#VERSION_MINOR=13
|
||||
|
||||
CC = @CC@
|
||||
CFLAGS = @CFLAGS_LIBGADU@ -I. -I.. -Wall
|
||||
@@ -27,7 +27,7 @@
|
||||
|
||||
SHAREDMM = libgadu.so
|
||||
SHAREDM = $(SHAREDMM).$(VERSION_MAJOR)
|
||||
-SHARED = $(SHAREDM).$(VERSION_MINOR)
|
||||
+SHARED = $(SHAREDMM).$(VERSION_MAJOR)
|
||||
STATIC = libgadu.a
|
||||
|
||||
all: @static@ @shared@
|
||||
@@ -57,7 +57,7 @@
|
||||
|
||||
$(SHARED): $(LOBJS)
|
||||
$(CC) -shared -Wl,-soname,libgadu.so.$(VERSION_MAJOR) -o $(SHARED) $(LOBJS) $(LIBS) -lc
|
||||
- $(LN_S) -f $(SHARED) $(SHAREDM)
|
||||
+# $(LN_S) -f $(SHARED) $(SHAREDM)
|
||||
$(LN_S) -f $(SHARED) $(SHAREDMM)
|
||||
|
||||
#
|
||||
@@ -82,7 +82,7 @@
|
||||
|
||||
install-shared: install-common @strip_libgadu_so@
|
||||
$(INSTALL) -m 755 $(SHARED) $(DESTDIR)$(libdir)
|
||||
- cd $(DESTDIR)$(libdir) && $(LN_S) -f $(SHARED) $(SHAREDM)
|
||||
+# cd $(DESTDIR)$(libdir) && $(LN_S) -f $(SHARED) $(SHAREDM)
|
||||
cd $(DESTDIR)$(libdir) && $(LN_S) -f $(SHARED) $(SHAREDMM)
|
||||
|
||||
install-static: install-common
|
4
net/ekg/pkg-descr
Normal file
4
net/ekg/pkg-descr
Normal file
@ -0,0 +1,4 @@
|
||||
Text-based Gadu-Gadu client for Unix-like systems.
|
||||
Gadu-Gadu is an ICQ-like messenger for polish language users.
|
||||
|
||||
WWW: http://dev.null.pl/ekg/
|
24
net/ekg/pkg-plist
Normal file
24
net/ekg/pkg-plist
Normal file
@ -0,0 +1,24 @@
|
||||
bin/ekg
|
||||
include/libgadu-config.h
|
||||
include/libgadu.h
|
||||
lib/libgadu.so
|
||||
lib/libgadu.so.2
|
||||
libdata/pkgconfig/libgadu.pc
|
||||
share/ekg/vars.txt
|
||||
share/ekg/themes/arim.theme
|
||||
share/ekg/themes/dj.theme
|
||||
share/ekg/themes/eileen.theme
|
||||
share/ekg/themes/emers.theme
|
||||
share/ekg/themes/feeg.theme
|
||||
share/ekg/themes/irc.theme
|
||||
share/ekg/themes/jamzed.theme
|
||||
share/ekg/themes/klith.theme
|
||||
share/ekg/themes/krzyk.theme
|
||||
share/ekg/themes/lcamtuf.theme
|
||||
share/ekg/themes/leon.theme
|
||||
share/ekg/themes/matik.theme
|
||||
share/ekg/themes/old.theme
|
||||
share/ekg/themes/sic.theme
|
||||
share/ekg/themes/tohver.theme
|
||||
@dirrm share/ekg/themes
|
||||
@dirrm share/ekg
|
33
polish/ekg/Makefile
Normal file
33
polish/ekg/Makefile
Normal file
@ -0,0 +1,33 @@
|
||||
# Ports collection makefile for: ekg
|
||||
# Date created: 24 March 2003
|
||||
# Whom: Jacek Pelka <jacek@combit.com.pl>
|
||||
#
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= ekg
|
||||
PORTVERSION= 1.1
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= http://dev.null.pl/ekg/
|
||||
DISTNAME= ${PORTNAME}-${PORTVERSION}
|
||||
|
||||
MAINTAINER= jacek@combit.com.pl
|
||||
COMMENT= Text-mode Gadu-Gadu client
|
||||
|
||||
USE_GMAKE= yes
|
||||
GNU_CONFIGURE= yes
|
||||
USE_GNOME= gnomehack
|
||||
CONFIGURE_ARGS+= --enable-shared \
|
||||
--disable-static \
|
||||
--enable-dynamic \
|
||||
--mandir=${PREFIX}/man
|
||||
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
MAN1= ekg.1
|
||||
MANLANG= "" pl
|
||||
MANCOMPRESSED= no
|
||||
|
||||
post-install:
|
||||
${STRIP_CMD} ${PREFIX}/bin/ekg
|
||||
|
||||
.include <bsd.port.mk>
|
1
polish/ekg/distinfo
Normal file
1
polish/ekg/distinfo
Normal file
@ -0,0 +1 @@
|
||||
MD5 (ekg-1.1.tar.gz) = dfcc114d41a942b774b26143c509d90f
|
38
polish/ekg/files/patch-aa
Normal file
38
polish/ekg/files/patch-aa
Normal file
@ -0,0 +1,38 @@
|
||||
--- lib/Makefile.in Thu May 15 13:59:09 2003
|
||||
+++ lib/Makefile.in Thu Jul 17 15:33:55 2003
|
||||
@@ -8,7 +8,7 @@
|
||||
# increased with ABI changes
|
||||
VERSION_MAJOR=2
|
||||
# increased with API changes
|
||||
-VERSION_MINOR=13
|
||||
+#VERSION_MINOR=13
|
||||
|
||||
CC = @CC@
|
||||
CFLAGS = @CFLAGS_LIBGADU@ -I. -I.. -Wall
|
||||
@@ -27,7 +27,7 @@
|
||||
|
||||
SHAREDMM = libgadu.so
|
||||
SHAREDM = $(SHAREDMM).$(VERSION_MAJOR)
|
||||
-SHARED = $(SHAREDM).$(VERSION_MINOR)
|
||||
+SHARED = $(SHAREDMM).$(VERSION_MAJOR)
|
||||
STATIC = libgadu.a
|
||||
|
||||
all: @static@ @shared@
|
||||
@@ -57,7 +57,7 @@
|
||||
|
||||
$(SHARED): $(LOBJS)
|
||||
$(CC) -shared -Wl,-soname,libgadu.so.$(VERSION_MAJOR) -o $(SHARED) $(LOBJS) $(LIBS) -lc
|
||||
- $(LN_S) -f $(SHARED) $(SHAREDM)
|
||||
+# $(LN_S) -f $(SHARED) $(SHAREDM)
|
||||
$(LN_S) -f $(SHARED) $(SHAREDMM)
|
||||
|
||||
#
|
||||
@@ -82,7 +82,7 @@
|
||||
|
||||
install-shared: install-common @strip_libgadu_so@
|
||||
$(INSTALL) -m 755 $(SHARED) $(DESTDIR)$(libdir)
|
||||
- cd $(DESTDIR)$(libdir) && $(LN_S) -f $(SHARED) $(SHAREDM)
|
||||
+# cd $(DESTDIR)$(libdir) && $(LN_S) -f $(SHARED) $(SHAREDM)
|
||||
cd $(DESTDIR)$(libdir) && $(LN_S) -f $(SHARED) $(SHAREDMM)
|
||||
|
||||
install-static: install-common
|
4
polish/ekg/pkg-descr
Normal file
4
polish/ekg/pkg-descr
Normal file
@ -0,0 +1,4 @@
|
||||
Text-based Gadu-Gadu client for Unix-like systems.
|
||||
Gadu-Gadu is an ICQ-like messenger for polish language users.
|
||||
|
||||
WWW: http://dev.null.pl/ekg/
|
24
polish/ekg/pkg-plist
Normal file
24
polish/ekg/pkg-plist
Normal file
@ -0,0 +1,24 @@
|
||||
bin/ekg
|
||||
include/libgadu-config.h
|
||||
include/libgadu.h
|
||||
lib/libgadu.so
|
||||
lib/libgadu.so.2
|
||||
libdata/pkgconfig/libgadu.pc
|
||||
share/ekg/vars.txt
|
||||
share/ekg/themes/arim.theme
|
||||
share/ekg/themes/dj.theme
|
||||
share/ekg/themes/eileen.theme
|
||||
share/ekg/themes/emers.theme
|
||||
share/ekg/themes/feeg.theme
|
||||
share/ekg/themes/irc.theme
|
||||
share/ekg/themes/jamzed.theme
|
||||
share/ekg/themes/klith.theme
|
||||
share/ekg/themes/krzyk.theme
|
||||
share/ekg/themes/lcamtuf.theme
|
||||
share/ekg/themes/leon.theme
|
||||
share/ekg/themes/matik.theme
|
||||
share/ekg/themes/old.theme
|
||||
share/ekg/themes/sic.theme
|
||||
share/ekg/themes/tohver.theme
|
||||
@dirrm share/ekg/themes
|
||||
@dirrm share/ekg
|
Loading…
Reference in New Issue
Block a user