1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-30 01:15:52 +00:00
Commit Graph

48 Commits

Author SHA1 Message Date
Tobias C. Berner
61dfcdd81d Update databases/libiodbc to 3.52.12
While doing so, make qa.sh happy by adding some GTK2-deps.

Approved by:	rakuco (mentor)
Differential Revision:	https://reviews.freebsd.org/D7728
2016-09-01 14:59:08 +00:00
Tijl Coosemans
a374acb969 By default libtool replaces -export-symbols <file> with -retain-symbols-file
<file> on ELF systems, but this doesn't really do what -export-symbols is
meant to do.  On GNU ELF systems it converts <file> to a simple version
script first and then uses -version-script instead of -retain-symbols-file.
Let USES=libtool patch libtool scripts to do this on all systems with GNU
ld(1).

Bump PORTREVISION on all ports where the build log contains -export-symbols.

audio/calf: This port builds a module that now exports only one function,
but it also builds a number of executables that link to this module and
expect to see other functions.  Because it's already a bit dodgy to link to
a module (libtool warns about this) let the module continue to export only
one function and instead build an ordinary library from the same source that
the executables can link to.  Fix a number of other issues in the same
Makefile.am and clean up the port Makefile.

japanese/scim-honoka: Tries to hide all symbols that start with an
underscore, but because this library is written in C++ all symbols start
with _Z so it ends up hiding everything.  Just don't hide anything at all
like the textproc/scim configure script does.

multimedia/schroedinger: Apply an upstream patch.

textproc/scim-input-pad: Same as japanese/scim-honoka.

PR:		201922
Approved by:	portmgr (antoine)
Exp-run by:	antoine
2015-08-02 15:03:19 +00:00
Baptiste Daroussin
3edc030b9f Cleanup plist 2014-10-20 10:41:12 +00:00
Raphael Kubo da Costa
1f3493ec86 Update to 3.52.9.
Changes upstream include:
* Added support for building on recent versions of Mac OS X
* Fixed warnings from autoconf/automake
* Fixed infinite loop in connection pool
* Fixed compiler warnings
* Fixed build dependency for make -jX
* Fixed check for Unicode driver
* Fixed issue calling SQLCancel from other thread
* Fixed SQLInstallDriverEx when driver is readonly

The "Fixed build dependency for make -jX" part is important, as parallel
builds (particularly with the GTK2 option on) normally fail with 3.52.8.

Based on a patch by Jia-Shiun Li <jiashiun@gmail.com> [1].

PR:		ports/189496 [1]
Submitted by:	Jia-Shiun Li <jiashiun@gmail.com> [1]
MFH:		2014Q2
2014-05-19 11:44:50 +00:00
Baptiste Daroussin
f4f46a920e Fix unixODBC vs libiodbc conflicts
Always rely on unixODBC each time a port is looking for libodbc.so
Remove odbc compat from libiodbc
This allows to install both kde and gnome at the same time

While here:
- Convert libiodbc to USES=libtool
- Convert a bunch of libiodbc dependencies to USES=libtool
- Chase libiodbc.so shlib change
- Stagify some ports
- Convert some ports to USES=pgsql

Discussed with:	rakuco (kde)
With hat:	portmgr
2014-05-05 16:24:00 +00:00
Tijl Coosemans
aad09bc5e2 When linking a library libA with a library libB using libtool, if libB.la
exists, libtool will add all libraries libB.la refers to (dependency_libs
field) to the linker command line and store them in the dependency_libs
field of libA.la.  So everything that subsequently links with libA will also
link to these extra libraries.  This causes too much overlinking.

This commit modifies Mk/Uses/libtool.mk so it empties the dependency_libs
field in .la libraries during staging.  However, because .la libraries have
very limited use when dependency_libs is empty it makes sense to completely
remove them during staging.

So with this commit USES=libtool is modified to remove .la libraries and a
new form (USES=libtool:keepla) is introduced in case they need to be kept
(dependency_libs is still emptied).

PORTREVISION is bumped on all ports with USES=libtool that install .la
libraries.  Most ports are also changed to add :keepla because .la
libraries have to be kept around as long as there are dependent ports with
.la libraries that refer to them in their dependency_libs field.  In most
cases :keepla can be removed again as soon as all dependent ports that
install .la libraries have some form of USES=libtool added to their
Makefile.

PR:		ports/188759
Exp-run:	bdrewery
Approved by:	portmgr (bdrewery)
2014-04-23 13:25:16 +00:00
Max Brazhnikov
625a9c622f databases/libiodbc:
- Amend LICENSE (BSD3CLAUSE)
- Convert to USES=libtool:oldver
- Convert to options
- Add stage support
2014-02-20 13:00:06 +00:00
Baptiste Daroussin
36117d7097 Add NO_STAGE all over the place in preparation for the staging support (cat: databases) 2013-09-20 16:13:47 +00:00
Baptiste Daroussin
5e04dfb987 Eliminate USE_GNOME=pkgconfig from databases
While here:
- trim headers
- Convert to USES=pathfix, USES=gmake
2013-09-02 09:01:51 +00:00
Raphael Kubo da Costa
d83bdd571b Update to 3.52.8.
This commit also tries to clean up the infrastructure a little bit. It
compiled fine on 7.4, 8.2, 9.0 and 10 on redports:

 - Remove iodbc.org from the MASTER_SITES list, it doesn't seem to
   exist anymore.
 - Set LICENSE.
 - Remove USE_GMAKE, it seems to build fine with make(1).
 - Remove the pthreads-related hacks and seds, as they do not seem to
   be needed anymore, especially now that only pthreads exists.
 - Remove the -D_BSD_WCHAR_T_DEFINED and the patch in files/, as
   libiodbc itself has accounted for _BSD_WCHAR_T_DECLARED since 2003.
 - Act on the example code based on NOPORTEXAMPLES instead of
   NOPORTDOCS.
2012-04-12 14:26:27 +00:00
Dmitry Marakasov
6f6fbe4bdf - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead

PR:		157936
Submitted by:	myself
Exp-runs by:	pav
Approved by:	pav
2011-09-23 22:26:39 +00:00
Martin Wilke
bb86cbe5d2 - Get Rid MD5 support 2011-03-20 12:54:45 +00:00
Ade Lovett
4a8684e352 Sync to new bsd.autotools.mk 2010-12-04 07:34:27 +00:00
Max Brazhnikov
8c10915766 Take maintainership for kde@ 2010-07-18 17:45:51 +00:00
Doug Barton
2fadfa2cfb For ports maintained by ports@FreeBSD.org, remove names and/or
e-mail addresses from the pkg-descr file that could reasonably
be mistaken for maintainer contact information in order to avoid
confusion on the part of users looking for support. As a pleasant
side effect this also avoids confusion and/or frustration for people
who are no longer maintaining those ports.
2009-12-21 02:19:12 +00:00
Martin Wilke
2210ebb84d - Update to 3.52.7
PR:		138814
Submitted by:	Ports Fury
Feature safe:	yes
2009-09-16 14:27:05 +00:00
Dmitry Marakasov
075acacd24 - Switch SourceForge ports to the new File Release System: categories starting with D 2009-08-22 00:18:43 +00:00
Jeremy Messenger
789d75c728 -Repocopy devel/libtool15 -> libtool22 and libltdl15 -> libltdl22.
-Update libtool and libltdl to 2.2.6a.
-Remove devel/libtool15 and devel/libltdl15.
-Fix ports build with libtool22/libltdl22.
-Bump ports that depend on libltdl22 due to shared library version change.
-Explain what to do update in the UPDATING.

It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop
and applications in the runtime.

With help:	marcus and kwm
Pointyhat-exp:	a few times by pav
Tested by:	pgollucci, "Romain Tartière" <romain@blogreen.org>, and
		a few MarcusCom CVS users. Also, I might have missed a few.
Repocopy by:	marcus
Approved by:	portmgr
2009-08-02 19:36:34 +00:00
Martin Wilke
0ce67f20c6 - Update to 3.52.6
PR:		117333
Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
2007-10-23 23:07:09 +00:00
Ion-Mihai Tetcu
2a92043ffa - Update to version 3.52.5
PR:		ports/107994
Submitted by:	KATO Tsuguru
2007-01-17 17:18:12 +00:00
Max Khon
956d5355c5 Bump PORTREVISION. 2006-12-11 18:23:27 +00:00
Max Khon
884360947b Sync with unixODBC port: build without GUI by default. 2006-12-11 18:18:17 +00:00
Cheng-Lung Sung
4de56a776b - s,INSTALLS_SHLIB,USE_LDCONFIG,g
- these include comms/ converters/ databases/ devel/ maintained by ports@

PR:		ports/101916
Submitted by:	Gea-Suan Lin <gslin_AT_gslin dot org>
2006-08-14 22:55:18 +00:00
Edwin Groothuis
2406d49a61 Remove USE_REINPLACE from all categories starting with D 2006-05-04 21:41:12 +00:00
Ade Lovett
fe279f0df8 Bump PORTREVISION on glib12/gtk12 consumer ports to ease the upgrade path.
Discussed with:	kris
Approved by:	portmgr (implicit)
2006-03-07 08:28:06 +00:00
Simon Barner
3cd345f14f - Update to version 3.52.4 [1]
- Use less greedy CONFLICTS

Submitted by:	Ports fury
PR:		ports/92612
2006-01-31 21:28:38 +00:00
Edwin Groothuis
8782296f87 Replace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtry 2006-01-22 00:30:24 +00:00
Marcus Alves Grando
141d91e47f Update to 3.52.3
Add SHA256

PR:		89013
Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
2005-11-14 21:39:04 +00:00
Pav Lucistnik
924d490ce1 - Add WITHOUT_X11 as a synonym to WITHOUT_GUI
PR:		ports/86183
Requested by:	Vivek Khera <vivek@khera.org>
2005-09-15 23:09:22 +00:00
Kirill Ponomarev
5dbc3b93ef Update to version 3.52.2
PR:		ports/77963
Submitted by:	Ports Fury
2005-02-25 13:25:27 +00:00
Kirill Ponomarev
4c9b90398d Fix package build.
Submitted by:	Ports Fury
2004-11-16 10:13:38 +00:00
Kirill Ponomarev
ec11665cbc Update to version 3.52.1
PR:		ports/73901
Submitted by:	Ports Fury
2004-11-14 09:25:35 +00:00
Volker Stolz
c0fe83c44c Add SourceForge to MASTER_SITES. 2004-07-13 15:20:55 +00:00
Joe Marcus Clarke
9e5632dd66 Apply a big libtool patch to allow porters to use the libtool installed by
the libtoolX ports instead of the one included with each port.  Ports that
set USE_LIBTOOL_VER=X will now use the ports version of libtool instead of
the included version.  To restore previous behavior, use the new macro,
USE_INC_LIBTOOL_VER.  Both macros accept the same argument: a libtool version.

For example, to use the ports version of libtool-1.5, add the following to
your Makefile:

USE_LIBTOOL_VER=        15

To use the included version of libtool with extra hacks provided by
libtool-1.5, add the following to your Makefile:

USE_INC_LIBTOOL_VER=    15

With this change, ports that had to add additional libtool hacks to prevent
.la files from being installed or to fix certain threading issues can now
delete those hacks (after appropriate testing, of course).

PR:		63944
Based on work by:eik and marcus
Approved by:	ade (autotools maintainer)
Tested by:	kris on pointyhat
Bound to be hidden problems:	You bet
2004-07-09 17:43:11 +00:00
Pav Lucistnik
8f4a956a74 - Update to 3.51.2
PR:		ports/68309
Submitted by:	Idar Tollefsen <idart@performancedesign.no>
2004-06-26 22:12:11 +00:00
Pav Lucistnik
edb7504dbe - Reset bouncing maintainer address:
This is a collection of reports about email delivery
process concerning a message you originated:

error: nosuchuser: ebakke@trolltech.com
2004-06-26 21:54:58 +00:00
Pav Lucistnik
9877989572 - Fix detect of wchar_t on FreeBSD. Using _BSD_CT_RUNE_T_ is not sufficient
for some version of FreeBSD, rather test on __FreeBSD__. This problem
  prevent other programs to include iodbc's header files on -STABLE systems.

PR:		ports/64743
Submitted by:	eik
Approved by:	maintainer timeout (2 weeks)
2004-04-10 14:02:52 +00:00
Mark Linimon
864e345d34 Update to 3.51.1: catch up with the newest development branch, but not
yet the newest release from that branch.  From the PR:

"I am aware that this patch does not update to the very latest version
of the libiodbc library, but I will submit another update when I am
back online after my move (along with a maintainer-email update)."

Changes over time include: added new SQLDrivers implementation; added
ODBC Tracing facility; code restructuring; fixes for installations in
many more environments; bugfixes.  See ChangeLog for complete details.

PR:		ports/62877
Submitted by:	Erik H. Bakke <ebakke@trolltech.com> (maintainer)
2004-03-22 19:11:39 +00:00
Ade Lovett
3f651573ad Whoa there, boy, that's a mighty big commit y'all have there...
Begin autotools sanitization sequence by requiring ports to explicitly
specify which version of {libtool,autoconf,automake} they need, erasing
the concept of a "system default".

For ports-in-waiting:

	USE_LIBTOOL=YES		->	USE_LIBTOOL_VER=13
	USE_AUTOCONF=YES	->	USE_AUTOCONF_VER=213
	USE_AUTOMAKE=YES	->	USE_AUTOMAKE_VER=14

Ports attempting to use the old style system after June 1st 2004 will be
sorely disappointed.
2004-03-14 06:17:56 +00:00
Kirill Ponomarev
acadb0fcf3 - Add CONFLICTS between libiodbc and unixODBC
PR:		ports/62528
Submitted by:	Ports Fury
2004-02-08 13:29:32 +00:00
Joe Marcus Clarke
053fdb6a6b Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.
(Part 2)
2004-02-04 05:21:48 +00:00
Joe Marcus Clarke
daa68ed157 Remove USE_GNOMENG. 2003-04-18 21:20:06 +00:00
Akinori MUSHA
2e4c764a61 De-pkg-comment. 2003-02-21 11:15:57 +00:00
Ying-Chieh Liao
944f5449af - Enable --with-pthreads option.
- Add WITH_GUI support(not default).

PR:		36129
Submitted by:	Hidekazu Kuroki <hidekazu@pc88.gr.jp>
Approved by:	maintainer timeout
2002-10-10 07:20:24 +00:00
Mario Sergio Fujikawa Ferreira
a1236aeac7 Deploy USE_GNOMENG infrastructure
PR:		42192
Submitted by:	Edwin Groothuis <edwin@mavetju.org>
2002-08-30 13:16:55 +00:00
Ying-Chieh Liao
40cd1c359c update maintainer email
PR:		32402
Submitted by:	maintainer
2001-12-02 09:46:11 +00:00
Johann Visagie
46e10b77bd - Update to version 3.0.5
- Add dependency on GTK (new in this version) via USE_GTK knob
- Install sample configuration files
- Install odbctest binary
- Tweak installation directory of configuration files, and name of odbctest
  binary so as not to conflict with the port databases/unixODBC
- Install some basic documentation in $DOCSDIR
- Expand and clarify pkg-descr; reword pkg-comment to be more correct

Approved by:	No response in ~25h from maintainer.  (Apologies for the
		short wait;  I have a port waiting in the wings which depends
		on this one.)
2001-10-03 12:54:13 +00:00
Will Andrews
1fdcbff778 Add libiodbc, a library which allows access to ODBC databases.
PR:		17587
Submitted by:	Erik H. Bakke <erikhb@bgnett.no>
2000-05-29 08:23:02 +00:00