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

(-)Makefile (-2 / +3 lines)
Lines 7-18 Link Here
7
#
7
#
8
8
9
PORTNAME=	dbtool
9
PORTNAME=	dbtool
10
PORTVERSION=	1.6
10
PORTVERSION=	1.7
11
PORTREVISION=	3
11
PORTREVISION=	3
12
CATEGORIES=	databases
12
CATEGORIES=	databases
13
MASTER_SITES=	http://www.daemon.de/idisk/Apps/dbtool/
13
MASTER_SITES=	http://www.daemon.de/idisk/Apps/dbtool/
14
14
15
MAINTAINER=	ports@FreeBSD.org
15
MAINTAINER=	scjamorim@bsd.com.br
16
COMMENT=	Store and retrieve data in a key/value format in a hash database
16
COMMENT=	Store and retrieve data in a key/value format in a hash database
17
17
18
LIB_DEPENDS=	pcre.0:${PORTSDIR}/devel/pcre
18
LIB_DEPENDS=	pcre.0:${PORTSDIR}/devel/pcre
Lines 60-65 Link Here
60
.for file in ${UB2PFX}
60
.for file in ${UB2PFX}
61
	@${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|" ${WRKSRC}/${file}
61
	@${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|" ${WRKSRC}/${file}
62
	@${RM} ${WRKSRC}/${file}.orig
62
	@${RM} ${WRKSRC}/${file}.orig
63
	@${RM} ${WRKSRC}/${file}~
63
.endfor
64
.endfor
64
.endif
65
.endif
65
66
(-)distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (dbtool-1.6.tar.gz) = a8e3f0982b42b0dbb3b9c1c31c975060
1
MD5 (dbtool-1.7.tar.gz) = f33106e3fc1c30f59f6f6cc2f313e280
2
SHA256 (dbtool-1.6.tar.gz) = fa97490f922fe65f0c73972addde09fa1373d4210d84f71d85fd920eaa97d248
2
SHA256 (dbtool-1.7.tar.gz) = 90e813b57f4d5f3714c3c54c95982b3fc9c1f6b011cade19e101045eb3f1e7a9
3
SIZE (dbtool-1.6.tar.gz) = 81631
3
SIZE (dbtool-1.7.tar.gz) = 124794
(-)pkg-plist (-11 / +11 lines)
Lines 1-12 Link Here
1
bin/dbtool
1
bin/dbtool
2
%%PORTDOCS%%%%EXAMPLESDIR%%/account-db/README
2
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/account-db/README
3
%%PORTDOCS%%%%EXAMPLESDIR%%/account-db/accdb
3
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/account-db/accdb
4
%%PORTDOCS%%%%EXAMPLESDIR%%/locate/README
4
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/locate/README
5
%%PORTDOCS%%%%EXAMPLESDIR%%/locate/locate
5
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/locate/locate
6
%%PORTDOCS%%%%EXAMPLESDIR%%/locate/updatedb
6
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/locate/updatedb
7
%%PORTDOCS%%%%EXAMPLESDIR%%/uback/README
7
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/uback/README
8
%%PORTDOCS%%%%EXAMPLESDIR%%/README
8
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/README
9
@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/account-db
9
@dirrmtry %%PORTEXAMPLES%%%%EXAMPLESDIR%%/account-db
10
@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/locate
10
@dirrmtry %%PORTEXAMPLES%%%%EXAMPLESDIR%%/locate
11
@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/uback
11
@dirrmtry %%PORTEXAMPLES%%%%EXAMPLESDIR%%/uback
12
@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%
12
@dirrmtry %%PORTEXAMPLES%%%%EXAMPLESDIR%%
(-)files/patch-Makefile.in (-20 lines)
Removed Link Here
1
--- Makefile.in.orig	Sat Apr 20 20:43:22 2002
2
+++ Makefile.in	Sat Mar 22 14:06:46 2003
3
@@ -68,7 +68,7 @@
4
 dbtool_SOURCES = cipher.cc  config.cc  dbtool.cc  digest.cc  engine.cc  rijndael.cc
5
 man_MANS = dbtool.1
6
 EXTRA_DIST = $(man_MANS)
7
-CXXFLAGS = -g -Wstrict-prototypes -O
8
+CXXFLAGS = @CXXFLAGS@
9
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
10
 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
11
 CONFIG_CLEAN_FILES = 
12
@@ -84,7 +84,7 @@
13
 dbtool_LDADD = $(LDADD)
14
 dbtool_DEPENDENCIES = 
15
 dbtool_LDFLAGS = 
16
-CXXCOMPILE = $(CXX) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
17
+CXXCOMPILE = $(CXX) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS)
18
 CXXLD = $(CXX)
19
 CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(LDFLAGS) -o $@
20
 man1dir = $(mandir)/man1
(-)files/patch-cipher.h (-17 lines)
Removed Link Here
1
--- cipher.h.orig	Thu Dec 21 14:26:06 2006
2
+++ cipher.h	Thu Dec 21 14:26:26 2006
3
@@ -62,12 +62,12 @@
4
   MD5Digest dig;
5
   unsigned char key[32];
6
   string blah;
7
-  const char* cipher::error(int num);
8
+  const char* error(int num);
9
 
10
  public:
11
   cipher() {};
12
   ~cipher() {};
13
-  void cipher::init(const string & phrase);
14
+  void init(const string & phrase);
15
   string encrypt(const string& source);
16
   string decrypt(const string& source);
17
 };
(-)files/patch-config.h (-11 lines)
Removed Link Here
1
--- config.h.orig	Thu Dec 21 14:30:15 2006
2
+++ config.h	Thu Dec 21 14:30:26 2006
3
@@ -71,7 +71,7 @@
4
 
5
  public:
6
   Config();
7
-  void Config::args(int argc, char *argv[]);
8
+  void args(int argc, char *argv[]);
9
   int parse();
10
   int     force, command, with, reverse, readonly, encrypted;
11
   string  filename, key, value, usage, token, phrase;

Return to bug 136074