Commit graph

44 commits

Author SHA1 Message Date
Kris Kennaway
6efed8740a Use libtool port instead of included one to avoid objformat a.out botch 2007-01-27 06:58:07 +00:00
Ade Lovett
8503536d38 Conversion to a single libtool environment.
Approved by:	portmgr (kris)
2006-02-23 10:40:44 +00:00
Marcus Alves Grando
b7a8902914 Update to 1.0.4 [1]
Add OPTIONS to disable OPENSSL and enable DEBUG

PR:		91109 [1]
Submitted by:	Babak Farrokhi <babak@farrokhi.net> [1]
2005-12-31 02:28:24 +00:00
Ade Lovett
54a0b86543 Mass-conversion to the USE_AUTOTOOLS New World Order. The code present
in bsd.autotools.mk essentially makes this a no-op given that all the
old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in
exactly the same way as USE_AUTOTOOLS itself.

Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME
team -- all GNOME 2.12.x ports use it.

Preliminary documentation can be found at:
	http://people.FreeBSD.org/~ade/autotools.txt

which is in the process of being SGMLized before introduction into the
Porters Handbook.

Light blue touch-paper.  Run.
2005-11-15 06:52:12 +00:00
Marcus Alves Grando
ffcf729c85 Add SHA256 2005-11-09 02:32:50 +00:00
Marcus Alves Grando
346fd0a6a3 Update my email
Approved by: pav (mentor)
2005-09-16 17:58:32 +00:00
Roman Bogorodskiy
2a66b32e41 Pass maintainership to submitter.
PR:		85416
Submitted by:	Marcus Grando <marcus@corp.grupos.com.br>
2005-08-29 06:09:22 +00:00
David E. O'Brien
c3d8037aeb At Kris's request, back out the MACHINE_ARCH spelling correction until
after 5.4-RELEASE.
2005-04-12 03:26:56 +00:00
David E. O'Brien
f2fc2d60ae Assist getting more ports working on AMD64 by obeying the
Ports Collection documentation and use 'ARCH' rather than 'MACHINE_ARCH'.
2005-04-11 08:04:41 +00:00
Mark Linimon
09721c15a9 With portmgr hat on, reset maintainership of these ports. Maintainer's
old email address bounces, and he has not been responsive to email on the
only other one we have for him.

These ports are now available for adoption.

Come back coop, we miss ya ...
2005-02-13 18:28:23 +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
919a712ede - Update to 1.0.3
PR:		ports/68761
Submitted by:	John Merryweather Cooper <johnmary@adelphia.net> (maintainer)
2004-07-08 21:31:30 +00:00
Trevor Johnson
e1177f5c54 Add size data.
Approved by:	maintainers
2004-03-18 02:27:55 +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
Joe Marcus Clarke
73f7c91b5d Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.
(Part 1)
2004-02-04 05:10:27 +00:00
Clement Laforet
b2874ac490 - Add memrchr().
- Maintainer informed.

Requested by:    many
2004-01-18 21:06:55 +00:00
Clement Laforet
ae2a0c251d s/memrchr/memchr/.
It fixes an 'undefined reference to `memrchr''.

Approved by:        maintainer
Approved by:        erwin (mentor) (implicitly)
2004-01-18 11:47:06 +00:00
Joe Marcus Clarke
1d2a3cc53c Update to 1.0.2.
* patch applied to smtp-tls.c and examples/mail-file.c for Balsa
* smtp-tls.c
  - fixed typo in check_file()
  - domain name check is now done using the wildcard match per RFC 2818
  - better error reporting for check_file() and check_directory()

PR:		61434
Submitted by:	maintainer
2004-01-16 18:30:49 +00:00
Sergei Kolobov
66f15be23f - Update to 1.0.1 (a minor bug fix) [1]
While I'm here [2]
- Install additional documentation
- Always install examples (useful even when NOPORTDOCS defined)
- Define CONFIGURE_TARGET to silence configure warning
- Use EXAMPLESDIR macro in pkg-plist

PR:		58796 [1]
Submitted by:	maintainer [1], sergei [2]
2003-11-01 13:57:57 +00:00
Hajimu UMEMOTO
af6d6ef443 fix build on 5-CURRENT after RFC3542 change (EAI_ADDRFAMILY and
EAI_NODATA were obsoleted).

There is some issue; we have EAI_NODATA as an alias of EAI_NONAME
for workaround.  However, some of these ports use it as a case
label of switch.  Since our alias broke such code, we may better
to consider deleting such alias.

Requested by:	kris
Approved by:	portmgr (kris) (implicitly)
2003-10-29 16:25:23 +00:00
Akinori MUSHA
4d0a0dc1c6 De-pkg-comment. 2003-02-21 12:51:06 +00:00
Jacques Vidrine
8085471b6b Fix build with OpenSSL 0.9.7.
Approved by:	maintainer
2003-02-12 20:22:04 +00:00
Joe Marcus Clarke
a2f8b226cc * Do not explicitly link against libc
* Do not install module .a files

Approved by:	maintainer
2003-01-19 19:22:53 +00:00
Joe Marcus Clarke
c163f5110e Add a missing build dependency on Perl.
PR:	45380
Submitted by:	maintainer
2002-11-18 03:02:48 +00:00
Edwin Groothuis
50e0a5e5e1 Maintainer update to version 1.0
PR:		ports/45299
Submitted by:	John Merryweather Cooper <coop9211@uidaho.edu>
2002-11-16 14:14:31 +00:00
Joe Marcus Clarke
cc852bfa9f Update to 1.0rc1. This includes a minor ABI change as well as improved
performance.

PR:		41985
Submitted by:	maintainer
2002-08-25 03:12:47 +00:00
Ade Lovett
50812c2c1c Update to 0.8.11
PR:		35583
Submitted by:	MAINTAINER
2002-03-13 00:25:26 +00:00
Ade Lovett
e8ff45fadb Update to 0.8.10p1
PR:		34490
Submitted by:	maintainer
2002-02-13 04:44:23 +00:00
Anton Berezin
2f33028b39 Update to 0.8.9.
PR:		33511
Submitted by:	maintainer
2002-01-22 16:43:25 +00:00
Maxim Sobolev
d0fba3e0f1 Backout previous change - it seems that new revision of the patch doesn't
apply everywhere.

Submitted by:	Todd Punderson <todd@doonga.net>
2001-12-20 06:19:02 +00:00
Maxim Sobolev
41c22e9c76 Don't filter libc_r on 5-CURRENT. 2001-12-19 20:20:23 +00:00
Ying-Chieh Liao
5f2daadb48 upgrade to 0.8.8
PR:		32752
Submitted by:	maintainer
2001-12-12 19:43:15 +00:00
Anton Berezin
ccd489da95 Update to 0.8.7.
PR:		31847
Submitted by:	maintainer
2001-11-18 22:48:04 +00:00
Maxim Sobolev
b0790e4238 Don't link in libc - FreeBSD doesn't need this.
Submitted by:	Ports Fury
2001-10-31 08:20:45 +00:00
Anton Berezin
00abf90bb3 Prepare this port to the forthcoming autoconf-2.52.
Remove Balsa site and volunteer maintainer's own personal website to
host the tarball.

Prune obsolete configure flags.

Make PTHREADs functional.

PR:		31546
Submitted by:	Maintainer
2001-10-30 21:59:31 +00:00
Ying-Chieh Liao
f91a8d53a7 Fix Null-Pointer Dereference causing SEGV
PR:		31376
Submitted by:	maintainer
2001-10-20 13:15:34 +00:00
Anton Berezin
f24b9523bc Update to 0.8.6.
PR:		31346
Submitted by:	maintainer
2001-10-18 11:33:51 +00:00
Anton Berezin
0f2ff67431 Update mail/libesmtp to 0.8.4.
PR:		29677
Submitted by:	maintainer
2001-08-15 20:02:34 +00:00
Anton Berezin
65a911e079 Remove libtool-based "nit" in build.log to silence complaints about
discovering libtool files after building/installing.  Correct a
punctuation error in a comment.

PR:		29283
Submitted by:	maintainer
2001-07-30 12:05:02 +00:00
Maxim Sobolev
ff7076dd35 - Don't infect user's system with totally useless .la files;
- remove USE_LIBTOOL (which is nop in this case) and associated patches that
  "make" it work;
- add missed USE_OPENSSL.
2001-07-20 09:58:19 +00:00
Maxim Sobolev
8d89a8b137 Remove bogus comment. 2001-07-20 09:32:54 +00:00
Anton Berezin
54983db379 Upgrade mail/libesmtp to 0.8.3.
Change the MAINTAINER to jmcoopr@webmail.bmi.net.
2001-07-14 21:38:26 +00:00
Anton Berezin
c8df88ddad Updated MAINTAINER to my new committer email address.
Do the same for pkg-descr files.

Approved by:	markm
2001-06-12 19:25:41 +00:00
Peter Pentchev
fd0f122f9f Add libesmtp, a library for sending email messages via SMTP.
PR:		25269
Submitted by:	Anton Berezin <tobez@tobez.org>
2001-03-07 10:52:05 +00:00