mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
Update to 0.6.3.1. Notable changes in this release:
- Now uses libiconv to generalize the charset handling. It can also decode UCS2-encoded SMS, localize the date format, and add the status report request bit to outgoing SMSes. - SL45 also handled. PR: 45519 Submitted by: Janos Mohacsi <janos.mohacsi@bsd.hu>
This commit is contained in:
parent
a908358dca
commit
fac16aaf89
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=70695
@ -6,17 +6,20 @@
|
||||
#
|
||||
|
||||
PORTNAME= scmxx
|
||||
PORTVERSION= 0.6.1.6
|
||||
PORTVERSION= 0.6.3.1
|
||||
CATEGORIES= comms
|
||||
MASTER_SITES= http://ma2geo.mathematik.uni-karlsruhe.de/~hendrik/scmxx/download/
|
||||
|
||||
MAINTAINER= janos.mohacsi@bsd.hu
|
||||
|
||||
LIB_DEPENDS= gnugetopt.1:${PORTSDIR}/devel/libgnugetopt
|
||||
LIB_DEPENDS= gnugetopt.1:${PORTSDIR}/devel/libgnugetopt \
|
||||
iconv.3:${PORTSDIR}/converters/libiconv
|
||||
|
||||
USE_BZIP2= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib -lgnugetopt"
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
CFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
USE_GMAKE= yes
|
||||
|
||||
MAN1= scmxx.1
|
||||
@ -27,7 +30,7 @@ post-install:
|
||||
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/docs/*.txt ${DOCSDIR}
|
||||
@${MKDIR} ${EXAMPLESDIR}
|
||||
.for file in phonebook sms vCalendar
|
||||
.for file in phonebook sms.txt vCalendar.vcs vCard.vcf
|
||||
${INSTALL_DATA} ${WRKSRC}/examples/${file} ${EXAMPLESDIR}
|
||||
.endfor
|
||||
.endif
|
||||
|
@ -1 +1 @@
|
||||
MD5 (scmxx-0.6.1.6.tar.bz2) = 6ea4abb48f05399ecd88e04175a1ffe7
|
||||
MD5 (scmxx-0.6.3.1.tar.bz2) = bf6ee43e0bf5ed8c64784207d3d6a242
|
||||
|
@ -1,21 +1,25 @@
|
||||
*** Makefile.in.orig Sun May 26 16:04:19 2002
|
||||
--- Makefile.in Wed May 29 15:14:31 2002
|
||||
***************
|
||||
*** 5,12 ****
|
||||
bindir=@bindir@
|
||||
mandir=@mandir@
|
||||
|
||||
! COMPILER=@CC@
|
||||
! CFLAGS= @CCADD@
|
||||
LDFLAGS=@LDADD@
|
||||
INSTALL=@INSTALL@
|
||||
VERSION=`cat VERSION`
|
||||
--- 5,12 ----
|
||||
bindir=@bindir@
|
||||
mandir=@mandir@
|
||||
|
||||
! COMPILER=@CC@
|
||||
! CFLAGS= @CCADD@ -I${LOCALBASE}/include
|
||||
LDFLAGS=@LDADD@
|
||||
INSTALL=@INSTALL@
|
||||
VERSION=`cat VERSION`
|
||||
--- Makefile.in.orig Wed Nov 20 10:50:12 2002
|
||||
+++ Makefile.in Wed Nov 20 10:51:01 2002
|
||||
@@ -7,7 +7,7 @@
|
||||
BINARY=scmxx@EXEEXT@
|
||||
|
||||
all:
|
||||
- make -C src all
|
||||
+ $(MAKE) -C src all
|
||||
|
||||
install: all
|
||||
$(INSTALL) -d $(DESTDIR)$(bindir)
|
||||
@@ -16,11 +16,11 @@
|
||||
$(INSTALL) docs/scmxx.1 $(DESTDIR)$(mandir)/man1/$(BINARY).1
|
||||
|
||||
clean:
|
||||
- make -C src clean
|
||||
+ $(MAKE) -C src clean
|
||||
rm -rf $(BINARY)
|
||||
|
||||
dist-clean:
|
||||
- make -C src dist-clean
|
||||
+ $(MAKE) -C src dist-clean
|
||||
rm -rf $(BINARY) Makefile config.cache config.log config.status config.h
|
||||
|
||||
maintainer-clean: dist-clean
|
||||
|
@ -1,11 +1,12 @@
|
||||
@comment $FreeBSD$
|
||||
bin/scmxx
|
||||
%%PORTDOCS%%share/doc/scmxx/README
|
||||
%%PORTDOCS%%share/doc/scmxx/greekchars.txt
|
||||
%%PORTDOCS%%share/doc/scmxx/gsmcharset.txt
|
||||
%%PORTDOCS%%share/doc/scmxx/specialchars.txt
|
||||
%%PORTDOCS%%share/doc/scmxx/gsm0338.txt
|
||||
%%PORTDOCS%%share/doc/scmxx/doc_sources.txt
|
||||
%%PORTDOCS%%share/examples/scmxx/phonebook
|
||||
%%PORTDOCS%%share/examples/scmxx/sms
|
||||
%%PORTDOCS%%share/examples/scmxx/vCalendar
|
||||
%%PORTDOCS%%share/examples/scmxx/sms.txt
|
||||
%%PORTDOCS%%share/examples/scmxx/vCalendar.vcs
|
||||
%%PORTDOCS%%share/examples/scmxx/vCard.vcf
|
||||
%%PORTDOCS%%@dirrm share/doc/scmxx
|
||||
%%PORTDOCS%%@dirrm share/examples/scmxx
|
||||
|
Loading…
Reference in New Issue
Block a user