ports/54498: gnokii port upgrade
Guido Falsi
mad at madpilot.net
Wed Nov 26 19:30:25 UTC 2003
The following reply was made to PR ports/54498; it has been noted by GNATS.
From: Guido Falsi <mad at madpilot.net>
To: freebsd-gnats-submit at FreeBSD.org, mad at madpilot.net
Cc:
Subject: Re: ports/54498: gnokii port upgrade
Date: Wed, 26 Nov 2003 20:26:34 +0100
--ZPt4rx8FFjLCG7dd
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
I'm attaching a further diff (from the port as is in the ports tree)
from the port to upgrade it to 0.5.6, the latest version(lots of bugs
fixed).
I hope someone's going to look soon at it.
Thanks in advace!
--
Guido Falsi <mad at madpilot.net>
--ZPt4rx8FFjLCG7dd
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline; filename="gnokii.diff"
diff -ruN gnokii.old/Makefile gnokii/Makefile
--- gnokii.old/Makefile Wed Nov 26 20:20:47 2003
+++ gnokii/Makefile Wed Nov 26 14:47:58 2003
@@ -2,25 +2,50 @@
# Date created: 15 March 1999
# Whom: staffanu
#
-# $FreeBSD: ports/comms/gnokii/Makefile,v 1.23 2003/10/19 20:00:26 anders Exp $
+# $FreeBSD: ports/comms/gnokii/Makefile,v 1.20 2003/05/20 23:52:47 anders Exp $
#
PORTNAME= gnokii
-PORTVERSION= 0.5.0
-PORTREVISION= 1
+PORTVERSION= 0.5.6
PORTEPOCH= 1
CATEGORIES= comms
-MASTER_SITES= ftp://ftp.nuug.no/pub/anders/distfiles/ \
- http://freesoftware.fsf.org/download/gnokii/ \
+MASTER_SITES= http://savannah.nongnu.org/download/gnokii/ \
ftp://ftp.gnokii.org/pub/gnokii/
-MAINTAINER= ports at FreeBSD.org
+MAINTAINER= anders at FreeBSD.org
COMMENT= Tools to talk to Nokia cellular phones
LIB_DEPENDS= intl.5:${PORTSDIR}/devel/gettext
+# If smsd is enabled check if MySQL or PostgreSQL are installed and
+# build the modules, no switches to make this port build those, if
+# you want them, just install them before this port. The port will
+# then activate a dependency.
+.if !defined(WITH_SMSD)
+PLIST_SUB+= SMSD='@comment '
+PLIST_SUB+= PGM='@comment '
+PLIST_SUB+= MSM='@comment '
+.else
+PLIST_SUB+= SMSD=''
+.if exists(${LOCALBASE}/lib/mysql/libmysqlclient.so)
+LIB_DEPENDS+= mysqlclient.10:${PORTSDIR}/databases/mysql323-client
+PLIST_SUB+= MSM=''
+WITH_MYSQL= yes
+.else
+PLIST_SUB+= MSM='@comment '
+.endif
+.if exists(${LOCALBASE}/lib/libpq.so)
+LIB_DEPENDS+= pq.3:${PORTSDIR}/${POSTGRESQL_PORT}
+PLIST_SUB+= PGM=''
+WITH_PGSQL= yes
+.else
+PLIST_SUB+= PGM='@comment '
+.endif
+.endif
+
USE_REINPLACE= yes
USE_GMAKE= yes
+USE_BZIP2= yes
.if !defined(WITHOUT_X11)
USE_XPM= yes
USE_GNOME= gtk12
@@ -30,19 +55,20 @@
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --with-libintl-prefix=${LOCALBASE} --enable-security \
- --with-xgnokiidir=${PREFIX}/share
+ --with-xgnokiidir=${PREFIX}/share --enable-debug
.if defined(WITHOUT_X11)
CONFIGURE_ARGS+= --without-x
PLIST_SUB+= X11='@comment '
.else
PLIST_SUB+= X11=''
.endif
+
CONFIGURE_ENV+= MSGFMT="${LOCALBASE}/bin/msgfmt" \
XGETTEXT="${LOCALBASE}/bin/xgettext" \
CPPFLAGS="${CFLAGS} -I${LOCALBASE}/include" \
LIBS="-L${LOCALBASE}/lib"
-MAN1= gnokii.1 todologo.1
+MAN1= gnokii.1 todologo.1 ppm2nokia.1 sendsms.1 todologo.1
.if !defined(WITHOUT_X11)
MAN1+= xgnokii.1
.endif
@@ -54,6 +80,16 @@
FIXPREFIX= Docs/man/gnokiid.8 Docs/DataCalls-QuickStart Docs/README \
common/cfgreader.c po/et.po po/sl.po
+pre-fetch:
+ @${ECHO}
+ @${ECHO} "If you plan using the smsd daemon for automatically receiving,"
+ @${ECHO} "managing and sending SMSes define WITH_SMSD=yes."
+ @${ECHO} "smsd has support for normal file system operations, MySQL and"
+ @${ECHO} "PostgreSQL. If any of these 2 database systems are installed support"
+ @${ECHO} "will be automatically compiled in. Normal file systems support is"
+ @${ECHO} "always compiled in."
+ @${ECHO}
+
post-patch:
.for f in ${FIXPREFIX}
@${REINPLACE_CMD} -e "s:/etc/gnokiirc:${PREFIX}/etc/gnokiirc:g" \
@@ -66,6 +102,18 @@
${WRKSRC}/${f}
.endfor
+post-build:
+.if defined(WITH_SMSD)
+ @cd ${WRKSRC}/smsd && ${GMAKE} all
+ @cd ${WRKSRC}/smsd && ${GMAKE} libfile.so
+.if defined(WITH_MYSQL)
+ @cd ${WRKSRC}/smsd && ${GMAKE} libmysql.so
+.endif
+.if defined(WITH_PGSQL)
+ @cd ${WRKSRC}/smsd && ${GMAKE} libpq.so
+.endif
+.endif
+
pre-install:
@${SETENV} "PKG_PREFIX=${PREFIX}" ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
@@ -74,6 +122,21 @@
@(cd ${WRKSRC} && ${GMAKE} install-docs)
${INSTALL_DATA} ${WRKSRC}/Docs/sample/gnokiirc \
${PREFIX}/etc/gnokiirc.sample
+.if defined(WITH_SMSD)
+ ${MKDIR} ${PREFIX}/share/smsd
+ ${INSTALL_PROGRAM} ${WRKSRC}/smsd/smsd ${PREFIX}/sbin/smsd
+ ${INSTALL_SCRIPT} ${WRKSRC}/smsd/action ${PREFIX}/share/smsd/action
+ ${INSTALL_DATA} ${WRKSRC}/smsd/README ${PREFIX}/share/smsd/README
+ ${INSTALL_PROGRAM} ${WRKSRC}/smsd/libfile.so ${PREFIX}/share/smsd/libfile.so
+.if defined(WITH_MYSQL)
+ ${INSTALL_PROGRAM} ${WRKSRC}/smsd/libmysql.so ${PREFIX}/share/smsd/libmysql.so
+ ${INSTALL_DATA} ${WRKSRC}/smsd/sms.tables.mysql.sql ${PREFIX}/share/smsd/sms.tables.mysql.sql
+.endif
+.if defined(WITH_PGSQL)
+ ${INSTALL_PROGRAM} ${WRKSRC}/smsd/libpq.so ${PREFIX}/share/smsd/libpq.so
+ ${INSTALL_DATA} ${WRKSRC}/smsd/sms.tables.pq.sql ${PREFIX}/share/smsd/sms.tables.pq.sql
+.endif
+.endif
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>
diff -ruN gnokii.old/README.html gnokii/README.html
--- gnokii.old/README.html Wed Nov 26 20:20:47 2003
+++ gnokii/README.html Tue Sep 30 19:19:38 2003
@@ -11,7 +11,7 @@
<p>You are now in the directory for the port "comms/gnokii".</p>
- <p>The package name of this port is "gnokii-0.5.0,1".</p>
+ <p>The package name of this port is "gnokii-0.4.3,1".</p>
<p>This is the one-line description for this port:</p>
<hr>
@@ -28,9 +28,9 @@
"mailto:anders at FreeBSD.org">maintainer</a> of this port or the port <a href=
"mailto:ports at FreeBSD.org">mailing-list</a>.</p>
- <p>This port requires package(s) "XFree86-libraries-4.3.0_5 expat-1.95.6_1 fontconfig-2.2.0 freetype2-2.1.4_1 gettext-0.11.5_1 glib-1.2.10_9 gmake-3.80 gtk-1.2.10_9 imake-4.3.0 libiconv-1.8_2 perl-5.6.1_13 pkgconfig-0.15.0" to build.</p>
+ <p>This port requires package(s) "XFree86-libraries-4.3.0_4 expat-1.95.6_1 fontconfig-2.2.0 freetype2-2.1.4_1 gettext-0.11.5_1 glib-1.2.10_9 gmake-3.80 gtk-1.2.10_9 imake-4.3.0 libiconv-1.8_2 perl-5.6.1_13 pkgconfig-0.15.0" to build.</p>
- <p>This port requires package(s) "XFree86-libraries-4.3.0_5 expat-1.95.6_1 fontconfig-2.2.0 freetype2-2.1.4_1 gettext-0.11.5_1 glib-1.2.10_9 gtk-1.2.10_9 imake-4.3.0 libiconv-1.8_2 perl-5.6.1_13 pkgconfig-0.15.0" to run.</p>
+ <p>This port requires package(s) "XFree86-libraries-4.3.0_4 expat-1.95.6_1 fontconfig-2.2.0 freetype2-2.1.4_1 gettext-0.11.5_1 glib-1.2.10_9 gtk-1.2.10_9 imake-4.3.0 libiconv-1.8_2 perl-5.6.1_13 pkgconfig-0.15.0" to run.</p>
<p>Go to the <a href="../../README.html">top of the ports tree</a> for
a summary on how to use the ports collection.</p>
diff -ruN gnokii.old/distinfo gnokii/distinfo
--- gnokii.old/distinfo Wed Nov 26 20:20:47 2003
+++ gnokii/distinfo Wed Nov 26 14:51:07 2003
@@ -1 +1 @@
-MD5 (gnokii-0.5.0.tar.gz) = 30c8f3e2c6ef684578500cba088006df
+MD5 (gnokii-0.5.6.tar.bz2) = 98b3cd228aa2843f5e29af39887ec419
diff -ruN gnokii.old/files/patch-Docs-Makefile gnokii/files/patch-Docs-Makefile
--- gnokii.old/files/patch-Docs-Makefile Wed Nov 26 20:20:47 2003
+++ gnokii/files/patch-Docs-Makefile Tue Sep 30 19:19:38 2003
@@ -1,6 +1,6 @@
---- Docs/Makefile.orig Tue May 20 20:53:33 2003
-+++ Docs/Makefile Tue May 20 20:54:25 2003
-@@ -62,6 +62,7 @@
+--- Docs/Makefile.orig Tue Jul 8 23:23:28 2003
++++ Docs/Makefile Tue Jul 8 23:24:48 2003
+@@ -63,6 +63,7 @@
@echo
install:
@@ -8,12 +8,12 @@
$(INSTALL) -d $(DESTDIR)$(docdir)
$(INSTALL) -d $(DESTDIR)$(docdir)/sample/logo
$(INSTALL) -d $(DESTDIR)$(docdir)/sample/ringtone
-@@ -78,10 +79,10 @@
- $(INSTALL) $(GNOKII1_MAN) $(DESTDIR)$(man1dir)
- $(INSTALL) $(GNOKII8_MAN) $(DESTDIR)$(man8dir)
+@@ -79,10 +80,10 @@
+ $(INSTALL_DATA) $(GNOKII1_MAN) $(DESTDIR)$(man1dir)
+ $(INSTALL_DATA) $(GNOKII8_MAN) $(DESTDIR)$(man8dir)
if [ "x$(HAVE_XGNOKII)" = "xyes" ]; then \
- $(INSTALL) -d $(DESTDIR)$(xmandir); \
-- $(INSTALL) $(XGNOKII_MAN) $(DESTDIR)$(xmandir); \
+- $(INSTALL_DATA) $(XGNOKII_MAN) $(DESTDIR)$(xmandir); \
+ $(INSTALL) $(XGNOKII_MAN) $(DESTDIR)/$(xmandir)/xgnokii.1; \
fi
@echo "done"
diff -ruN gnokii.old/files/patch-Makefile.global.in gnokii/files/patch-Makefile.global.in
--- gnokii.old/files/patch-Makefile.global.in Wed Nov 26 20:20:47 2003
+++ gnokii/files/patch-Makefile.global.in Tue Sep 30 19:19:38 2003
@@ -1,6 +1,6 @@
---- Makefile.global.in.orig Tue May 20 20:34:17 2003
-+++ Makefile.global.in Tue May 20 20:37:15 2003
-@@ -22,14 +22,14 @@
+--- Makefile.global.in.orig Tue Jul 8 23:33:22 2003
++++ Makefile.global.in Tue Jul 8 23:33:03 2003
+@@ -22,15 +22,15 @@
bindir = @bindir@
sbindir = @sbindir@
@@ -10,8 +10,9 @@
-xgnokii_libdir = @XGNOKIIDIR@/share/@XPACKAGE@
+xgnokii_libdir = ${prefix}/share/@XPACKAGE@
includedir = @includedir@
- man1dir = @mandir@/man1/
- man8dir = @mandir@/man8/
+ mandir = @mandir@
+ man1dir = ${mandir}/man1/
+ man8dir = ${mandir}/man8/
-xmandir = @XGNOKIIDIR@/man/man1/
-docdir = ${prefix}/doc/${PACKAGE}
+xmandir = ${man1dir}
diff -ruN gnokii.old/files/patch-common-Makefile gnokii/files/patch-common-Makefile
--- gnokii.old/files/patch-common-Makefile Wed Nov 26 20:20:47 2003
+++ gnokii/files/patch-common-Makefile Fri Oct 10 22:28:46 2003
@@ -1,24 +1,30 @@
---- common/Makefile.orig Tue May 20 21:04:08 2003
-+++ common/Makefile Tue May 20 21:21:55 2003
-@@ -41,15 +41,12 @@
- misc.o \
+--- common/Makefile.orig Wed Oct 8 18:31:01 2003
++++ common/Makefile Fri Oct 10 21:58:52 2003
+@@ -44,13 +44,10 @@
snprintf.o
+ ifndef WIN32_CROSS
-ifdef NO_SHARED
-GNOKII_LIB=libgnokii.a
-else
-+GNOKII_LIBNOSHARED =libgnokii.a
++GNOKII_LIBNOSHARED=libgnokii.a
GNOKII_LIB =libgnokii.so
GNOKII_LIBM =$(GNOKII_LIB).$(MAJOR_NUMBER)
GNOKII_LIBMM=$(GNOKII_LIBM).$(MINOR_NUMBER)
-endif
+ else
+ ifdef NO_SHARED
+ GNOKII_LIB=gnokii.lib
+@@ -59,7 +56,7 @@
+ endif
+ endif
-all: $(GNOKII_LIB)
+all: $(GNOKII_LIB) $(GNOKII_LIBNOSHARED)
phones/PHONES.o:
$(MAKE) -C phones PHONES.o
-@@ -64,8 +61,7 @@
+@@ -74,8 +71,7 @@
$(CC) -o gnokii-debug $(OBJS) phones/PHONES.o links/LINKS.o devices/DEVICES.o ../gnokii/gnokii.o
libgnokii.so: $(OBJS) phones/PHONES.o links/LINKS.o devices/DEVICES.o
@@ -28,7 +34,7 @@
ln -sf $(GNOKII_LIBM) $(GNOKII_LIB)
libgnokii.a: $(OBJS) phones/PHONES.o links/LINKS.o devices/DEVICES.o
-@@ -84,8 +80,8 @@
+@@ -102,8 +98,8 @@
install:
$(INSTALL) -d $(DESTDIR)$(libdir)
@@ -38,4 +44,4 @@
+ $(INSTALL) $(GNOKII_LIBNOSHARED) $(DESTDIR)$(libdir)
cd $(DESTDIR)$(libdir) && ln -sf $(GNOKII_LIBM) $(GNOKII_LIB)
$(INSTALL) -d $(DESTDIR)$(libdir)/pkgconfig
- $(INSTALL) gnokii.pc $(DESTDIR)$(libdir)/pkgconfig
+ $(INSTALL_DATA) gnokii.pc $(DESTDIR)$(libdir)/pkgconfig
diff -ruN gnokii.old/files/patch-smsd-Makefile gnokii/files/patch-smsd-Makefile
--- gnokii.old/files/patch-smsd-Makefile Thu Jan 1 01:00:00 1970
+++ gnokii/files/patch-smsd-Makefile Fri Oct 10 22:41:59 2003
@@ -0,0 +1,50 @@
+--- smsd/Makefile.orig Fri Oct 10 22:38:59 2003
++++ smsd/Makefile Fri Oct 10 22:41:33 2003
+@@ -21,14 +21,14 @@
+ SMSD_MAN=man/smsd.8
+
+ CFLAGS += -DMODULES_DIR=\"${libdir}/smsd\" $(PTHREAD_CFLAGS) \
+- $(shell $(GLIBCFLAGS))
++ $(shell $(GLIBCFLAGS)) -I/usr/local/include `glib-config --cflags`
+
+ LDLIBS += $(PTHREAD_LIBS) \
+ $(shell $(GLIBLDLIBS))
+
+-LDLIBS += -s -rdynamic -L$(TOPDIR)/common -lgnokii -ldl
++# LDLIBS += -s -rdynamic -L$(TOPDIR)/common -lgnokii -ldl
+ # Some systems, eg. FreeBSD don't have libdl. Use this:
+-# LDLIBS += -s -rdynamic -L$(TOPDIR)/common -lgnokii
++LDLIBS += -s -rdynamic -L$(TOPDIR)/common -lgnokii
+
+ ifdef XPM_LIBS
+ LDLIBS +=$(XPM_LIBS)
+@@ -41,7 +41,7 @@
+
+
+ smsd: $(OBJS) $(TOPDIR)/common/libgnokii.so
+- gcc $(LDFLAGS) $(OBJS) $(LDLIBS) -o $@
++ $(CC) $(LDFLAGS) $(OBJS) $(LDLIBS) -o $@
+
+
+ ### DB Modules
+@@ -50,17 +50,17 @@
+
+ # PostgreSQL support
+ libpq.so: smsd.h pq.c
+- gcc -s -shared -o libpq.so $(CFLAGS) -I../include \
++ $(CC) -s -shared -o libpq.so $(CFLAGS) -I../include \
+ -I/usr/include/pgsql pq.c $(shell $(GLIBLDLIBS)) -lpq
+
+ # MySQL support
+ libmysql.so: smsd.h mysql.c
+- gcc -s -shared -o libmysql.so $(CFLAGS) -I../include \
++ $(CC) -s -shared -o libmysql.so $(CFLAGS) -I../include \
+ $(shell mysql_config --cflags) mysql.c $(shell $(GLIBLDLIBS)) $(shell mysql_config --libs)
+
+ # File support
+ libfile.so: smsd.h file.c
+- gcc -s -shared -o libfile.so $(CFLAGS) -I../include \
++ $(CC) -s -shared -o libfile.so $(CFLAGS) -I../include \
+ file.c $(shell $(GLIBLDLIBS))
+
+ ### End of DB Modules
diff -ruN gnokii.old/pkg-message gnokii/pkg-message
--- gnokii.old/pkg-message Wed Nov 26 20:20:47 2003
+++ gnokii/pkg-message Tue Sep 30 19:19:38 2003
@@ -7,4 +7,7 @@
Add the users that shall be authorized to run gnokii programs to the
gnokii group.
+
+NOTE: if you have anabled and plan using the smsd program check
+${PREFIX}/share/smsd/README
================================================================================
diff -ruN gnokii.old/pkg-plist gnokii/pkg-plist
--- gnokii.old/pkg-plist Wed Nov 26 20:20:47 2003
+++ gnokii/pkg-plist Sat Oct 11 00:41:36 2003
@@ -24,64 +24,77 @@
lib/pkgconfig/gnokii.pc
sbin/gnokiid
sbin/mgnokiidev
-%%PORTDOCS%%%%DOCSDIR%%/Bugs
-%%PORTDOCS%%%%DOCSDIR%%/CREDITS
-%%PORTDOCS%%%%DOCSDIR%%/DataCalls-QuickStart
-%%PORTDOCS%%%%DOCSDIR%%/README
-%%PORTDOCS%%%%DOCSDIR%%/README-2110
-%%PORTDOCS%%%%DOCSDIR%%/README-3810
-%%PORTDOCS%%%%DOCSDIR%%/README-6110
-%%PORTDOCS%%%%DOCSDIR%%/README-6510
-%%PORTDOCS%%%%DOCSDIR%%/README-7110
-%%PORTDOCS%%%%DOCSDIR%%/README-MacOSX
-%%PORTDOCS%%%%DOCSDIR%%/README-WIN32
-%%PORTDOCS%%%%DOCSDIR%%/README-dancall
-%%PORTDOCS%%%%DOCSDIR%%/README-ericsson
-%%PORTDOCS%%%%DOCSDIR%%/README-siemens
-%%PORTDOCS%%%%DOCSDIR%%/README.libsms
-%%PORTDOCS%%%%DOCSDIR%%/gettext-howto
-%%PORTDOCS%%%%DOCSDIR%%/gnokii-IrDA-Linux
-%%PORTDOCS%%%%DOCSDIR%%/gnokii-hackers-howto
-%%PORTDOCS%%%%DOCSDIR%%/gnokii-ir-howto
-%%PORTDOCS%%%%DOCSDIR%%/logos.txt
-%%PORTDOCS%%%%DOCSDIR%%/packaging-howto
-%%PORTDOCS%%%%DOCSDIR%%/ringtones.txt
-%%PORTDOCS%%%%DOCSDIR%%/sample/gnokiirc
-%%PORTDOCS%%%%DOCSDIR%%/sample/logo/bronto.xpm
-%%PORTDOCS%%%%DOCSDIR%%/sample/logo/gnokii.xpm
-%%PORTDOCS%%%%DOCSDIR%%/sample/logo/gnokiiop.xpm
-%%PORTDOCS%%%%DOCSDIR%%/sample/logo/horse.xpm
-%%PORTDOCS%%%%DOCSDIR%%/sample/logo/horse2.xpm
-%%PORTDOCS%%%%DOCSDIR%%/sample/logo/pacman.xpm
-%%PORTDOCS%%%%DOCSDIR%%/sample/magic
-%%PORTDOCS%%%%DOCSDIR%%/sample/ppp/cimd-connect
-%%PORTDOCS%%%%DOCSDIR%%/sample/ppp/options
-%%PORTDOCS%%%%DOCSDIR%%/sample/ppp/pap-secrets
-%%PORTDOCS%%%%DOCSDIR%%/sample/ppp/ppp-6210-modem
-%%PORTDOCS%%%%DOCSDIR%%/sample/ppp/ppp-FILES
-%%PORTDOCS%%%%DOCSDIR%%/sample/ppp/ppp-gnokii
-%%PORTDOCS%%%%DOCSDIR%%/sample/ppp/ppp-hscsd
-%%PORTDOCS%%%%DOCSDIR%%/sample/ppp/ppp-on
-%%PORTDOCS%%%%DOCSDIR%%/sample/ringtone/star.imelody
-%%PORTDOCS%%%%DOCSDIR%%/sample/ringtone/star.rtttl
-%%PORTDOCS%%%%DOCSDIR%%/sample/vCalendar/test.vcs
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/sample/logo
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/sample/ringtone
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/sample/vCalendar
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/sample/vCard
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/sample/ppp
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/sample
-%%PORTDOCS%%@dirrm %%DOCSDIR%%
-%%PORTDOCS%%@exec mkdir -m 755 %D/%%DOCSDIR%%/sample/vCard
+%%SMSD%%sbin/smsd
+%%PORTDOCS%%share/doc/gnokii/Bugs
+%%PORTDOCS%%share/doc/gnokii/CREDITS
+%%PORTDOCS%%share/doc/gnokii/DataCalls-QuickStart
+%%PORTDOCS%%share/doc/gnokii/gnokii.nol
+%%PORTDOCS%%share/doc/gnokii/README
+%%PORTDOCS%%share/doc/gnokii/README-2110
+%%PORTDOCS%%share/doc/gnokii/README-3810
+%%PORTDOCS%%share/doc/gnokii/README-6110
+%%PORTDOCS%%share/doc/gnokii/README-6510
+%%PORTDOCS%%share/doc/gnokii/README-7110
+%%PORTDOCS%%share/doc/gnokii/README-MacOSX
+%%PORTDOCS%%share/doc/gnokii/README-WIN32
+%%PORTDOCS%%share/doc/gnokii/README-dancall
+%%PORTDOCS%%share/doc/gnokii/README-ericsson
+%%PORTDOCS%%share/doc/gnokii/README-siemens
+%%PORTDOCS%%share/doc/gnokii/README.libsms
+%%PORTDOCS%%share/doc/gnokii/gettext-howto
+%%PORTDOCS%%share/doc/gnokii/gnokii-IrDA-Linux
+%%PORTDOCS%%share/doc/gnokii/gnokii-hackers-howto
+%%PORTDOCS%%share/doc/gnokii/gnokii-ir-howto
+%%PORTDOCS%%share/doc/gnokii/logos.txt
+%%PORTDOCS%%share/doc/gnokii/packaging-howto
+%%PORTDOCS%%share/doc/gnokii/ringtones.txt
+%%PORTDOCS%%share/doc/gnokii/sample/gnokiirc
+%%PORTDOCS%%share/doc/gnokii/sample/logo/bronto.xpm
+%%PORTDOCS%%share/doc/gnokii/sample/logo/gnokii.xpm
+%%PORTDOCS%%share/doc/gnokii/sample/logo/gnokiiop.xpm
+%%PORTDOCS%%share/doc/gnokii/sample/logo/horse.xpm
+%%PORTDOCS%%share/doc/gnokii/sample/logo/horse2.xpm
+%%PORTDOCS%%share/doc/gnokii/sample/logo/pacman.xpm
+%%PORTDOCS%%share/doc/gnokii/sample/magic
+%%PORTDOCS%%share/doc/gnokii/sample/ppp/cimd-connect
+%%PORTDOCS%%share/doc/gnokii/sample/ppp/options
+%%PORTDOCS%%share/doc/gnokii/sample/ppp/pap-secrets
+%%PORTDOCS%%share/doc/gnokii/sample/ppp/ppp-6210-modem
+%%PORTDOCS%%share/doc/gnokii/sample/ppp/ppp-FILES
+%%PORTDOCS%%share/doc/gnokii/sample/ppp/ppp-gnokii
+%%PORTDOCS%%share/doc/gnokii/sample/ppp/ppp-hscsd
+%%PORTDOCS%%share/doc/gnokii/sample/ppp/ppp-on
+%%PORTDOCS%%share/doc/gnokii/sample/ringtone/star.imelody
+%%PORTDOCS%%share/doc/gnokii/sample/ringtone/star.rtttl
+%%PORTDOCS%%share/doc/gnokii/sample/vCalendar/test.vcs
+%%PORTDOCS%%@dirrm share/doc/gnokii/sample/logo
+%%PORTDOCS%%@dirrm share/doc/gnokii/sample/ringtone
+%%PORTDOCS%%@dirrm share/doc/gnokii/sample/vCalendar
+%%PORTDOCS%%@dirrm share/doc/gnokii/sample/vCard
+%%PORTDOCS%%@dirrm share/doc/gnokii/sample/ppp
+%%PORTDOCS%%@dirrm share/doc/gnokii/sample
+%%PORTDOCS%%@dirrm share/doc/gnokii
+%%PORTDOCS%%@exec mkdir -m 755 %D/share/doc/gnokii/sample/vCard
share/locale/cs/LC_MESSAGES/gnokii.mo
share/locale/de/LC_MESSAGES/gnokii.mo
share/locale/et/LC_MESSAGES/gnokii.mo
share/locale/fi/LC_MESSAGES/gnokii.mo
+share/locale/fr/LC_MESSAGES/gnokii.mo
share/locale/it/LC_MESSAGES/gnokii.mo
share/locale/nl/LC_MESSAGES/gnokii.mo
share/locale/pl/LC_MESSAGES/gnokii.mo
share/locale/sk/LC_MESSAGES/gnokii.mo
share/locale/sl/LC_MESSAGES/gnokii.mo
+share/nls/POSIX
+share/nls/en_US.US-ASCII
+%%SMSD%%share/smsd/action
+%%SMSD%%share/smsd/README
+%%SMSD%%share/smsd/libfile.so
+%%MSM%%share/smsd/libmysql.so
+%%MSM%%share/smsd/sms.tables.mysql.sql
+%%PGM%%share/smsd/libpq.so
+%%PGM%%share/smsd/sms.tables.pq.sql
+%%SMSD%%@dirrm share/smsd
%%X11%%share/xgnokii/help/C
%%X11%%share/xgnokii/help/POSIX
%%X11%%share/xgnokii/help/en_US/COPYING
--ZPt4rx8FFjLCG7dd--
More information about the freebsd-ports-bugs
mailing list