1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-12 03:00:28 +00:00
Commit Graph

70 Commits

Author SHA1 Message Date
Baptiste Daroussin
ffb7170399 Modernize LIB_DEPENDS
With hat:	portmgr
2014-07-14 18:42:04 +00:00
Emanuel Haupt
cff8764726 Remove trailing whitespaces from category www 2014-02-21 13:39:57 +00:00
Emanuel Haupt
5005b67362 According to the Porter's Handbook (5.12.2.3.) default options must be added to
OPTIONS_DEFINE. This policy has been implemented only recently that's why we
have many ports violating this policy.

This patch adds the default options specified in the Porter's Handbook to
OPTIONS_DEFINE where they are being used. Ports maintained by
gnome@FreeBSD.org, kde@FreeBSD.org and x11@FreeBSD.org have been excluded.

Approved by:    portmgr (bapt)
2014-02-10 13:54:26 +00:00
Martin Wilke
ef6182f149 - Stage support 2014-01-29 07:59:00 +00:00
Baptiste Daroussin
85fbf21ec5 Add NO_STAGE all over the place in preparation for the staging support (cat: www) 2013-09-20 23:36:50 +00:00
Boris Samorodov
9f7e7e1326 Introduce ICONV_CONFIGURE_ARG variable defined at Uses/iconv.mk.
It's value is "--with-libiconv-prefix=/usr/local" for systems
before 100043 with ports libiconv and to use at systems post
100043 with base iconv it's value is "" (NULL).

Co-authors:	bapt, madpilot and bsam (me)
2013-09-04 20:01:05 +00:00
Alex Kozlov
d4041784dc - Remove MAKE_JOBS_SAFE variable
Approved by:	portmgr (bdrewery)
2013-08-14 22:35:50 +00:00
Baptiste Daroussin
5b86e88686 Finish converting www from WITHOUT_NLS to PORT_OPTIONS:MNLS 2013-05-06 06:54:19 +00:00
Baptiste Daroussin
5271da855f Rely on bsdtar to autodetermine the format of the distfiles when possible
For a while now bsdtar is able to autotermine compression and archive format.
Let's then use tar directly instead of piping to tar.

Now USE_BZIP2 and USE_XZ only set EXTRACT_SUFX to the right format
2013-04-29 08:57:12 +00:00
Marcus von Appen
95e7081976 - Convert USE_ICONV=yes to USES=iconv
- Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig and
  USE_GETTEXT=yes to USES=gettext while here
2013-04-27 18:25:24 +00:00
Alex Kozlov
e159824929 - Convert USE_GETTEXT to USES (part 3)
Approved by:	portmgr (bapt)
2013-04-24 18:10:30 +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
a9481afc8a - Get Rid MD5 support 2011-03-19 12:38:54 +00:00
Jeremy Messenger
113641e728 - Makes neon29 our default neon library. The neon 0.27.x to 0.29.x are API and
ABI backwards compatible. It is unnecessary to have more than one same
  libraries (ie: neon28 and neon29) as it creates issue in our ports tree such
  as CONFLICTS and made our Makefile complicate.
- Remove www/neonpp and www/neon28.
- Add USE_GNOME=ltverhack; it corrects the shared library version by change
  from libneon.so.29 to libneon.so.27. It won't get bump again with no reason
  unless ABI changes.
- Bump the PORTREVISION on all ports and chase the shared library change.
- Add info in the UPDATING for how to rebuild on all ports that depend on
  neon.

PR:		ports/148295
Approved by:	lev (maintainer timeout, no respone for months),
		portmgr
Tested by:	pointyhat-exp by pav
2010-07-30 22:14:49 +00:00
Ade Lovett
8d837132c7 Bounce PORTREVISION for gettext-related ports. Have fun, ya'll. 2010-05-31 02:01:56 +00:00
Pav Lucistnik
2bdc37f819 - Remove zero sized files 2010-05-11 15:18:32 +00:00
Josh Paetzel
6f3e57f295 Include missing file from previous commit.
Approved by:	itetcu@ (mentor)
2010-05-02 18:52:41 +00:00
Josh Paetzel
96e2d4ea60 Update www/cadaver to latest version
Add FreeBSD specific patches

Submitted by:	"Mikhail T." <mi+thun@aldan.algebra.com>
Approved by:	itetcu@ (mentor)
2010-05-02 18:16:52 +00:00
Josh Paetzel
a31f8f0d82 Change MAINTAINER to my @FreeBSD.org address.
Approved by:	ade (mentor)
2008-09-06 20:16:45 +00:00
Rong-En Fan
741aa71483 Update CONFIGURE_ARGS for how we pass CONFIGURE_TARGET to configure script.
Specifically, newer autoconf (> 2.13) has different semantic of the
configure target. In short, one should use --build=CONFIGURE_TARGET
instead of CONFIGURE_TARGET directly. Otherwise, you will get a warning
and the old semantic may be removed in later autoconf releases.

To workaround this issue, many ports hack the CONFIGURE_TARGET variable
so that it contains the ``--build='' prefix.

To solve this issue, under the fact that some ports still have
configure script generated by the old autoconf, we use runtime detection
in the do-configure target so that the proper argument can be used.

Changes to Mk/*:
 - Add runtime detection magic in bsd.port.mk
 - Remove CONFIGURE_TARGET hack in various bsd.*.mk
 - USE_GNOME=gnometarget is now an no-op

Changes to individual ports, other than removing the CONFIGURE_TARGET hack:

= pkg-plist changed (due to the ugly CONFIGURE_TARGET prefix in * executables)
  - comms/gnuradio
  - science/abinit
  - science/elmer-fem
  - science/elmer-matc
  - science/elmer-meshgen2d
  - science/elmerfront
  - science/elmerpost

= use x86_64 as ARCH
  - devel/g-wrap

= other changes
  - print/magicfilter
    GNU_CONFIGURE -> HAS_CONFIGURE since it's not generated by autoconf

Total # of ports modified:  1,027
Total # of ports affected: ~7,000 (set GNU_CONFIGURE to yes)

PR:		126524 (obsoletes 52917)
Submitted by:	rafan
Tested on:	two pointyhat 7-amd64 exp runs (by pav)
Approved by:	portmgr (pav)
2008-08-21 06:18:49 +00:00
Beech Rintoul
e4b6a80e6d - Update to 0.23.2
PR:		ports/125143
Submitted by:	TAOKA Fumiyoshi <fmysh@iijmio-mail.jp>
Approved by:	Josh Paetzel <josh@tcbug.org> (maintainer)
2008-07-05 06:56:52 +00:00
Edwin Groothuis
090059a210 Bump portrevision due to upgrade of devel/gettext.
The affected ports are the ones with gettext as a run-dependency
according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT
in Makefile (29 of them).

PR:             ports/124340
Submitted by:   edwin@
Approved by:    portmgr (pav)
2008-06-06 14:17:21 +00:00
Edwin Groothuis
f970dfe37e Rename www/neon to www/neon26 to make the integration
of www/neon28 possible
2008-05-05 08:33:57 +00:00
Pav Lucistnik
6f8a3dbfb1 - Remove USE_GETOPT_LONG which is a no-op since March 2007 2008-03-20 10:03:51 +00:00
Lev A. Serebryakov
de7020af32 (1) Update `www/neon' to 0.26.3
(2) Bump port revisions (and dependencies) on all ports, using libneon
  (3) Mark `devel/bazaar' broken, it doesn't support new neon version.
      Approved by maintainer.
  (4) Mark `www/neonpp' broken, it doesn't support new neon version.
      Maintainer timeout.
2007-03-16 10:03:11 +00:00
Gabor Kovesdan
c0ce4105e7 Remove USE_GPG from all effected ports. This knob is a no-op and the way it
was supposed to work is useless, because if we can't trust the distfile from
the remote machine, we can't trust the signature from the same machine either.
Our MD5 and SHA256 are good for checking both the sanity and the
trustiness of distfiles.

Approved by:	portmgr (erwin), erwin (mentor)
2007-01-29 19:05:07 +00:00
Martin Wilke
925fadf5fc - Update to 0.22.5
PR:		108275
Submitted by:	Josh Paetzel <josh@tcbug.org> (maintainer)
2007-01-23 22:03:13 +00:00
Martin Wilke
8ba1ac41bd - Update to 0.22.4
PR:		ports/107301
Submitted by:	Josh Paetzel (maintainer)
2006-12-30 00:07:58 +00:00
Vasil Dimov
cebee858d6 * Fix build by adding missing dependency to gettext and make that
conditional by WITHOUT_NLS being set or not
* Fix path in EXTRACT_AFTER_ARGS
* Bump PORTREVISION because internationalization can now be turned on and off

PR:		ports/91756, ports/91962
Submitted by:	rushani, Josh Paetzel <josh@tcbug.org> (maintainer)
Approved by:	garga (mentor), Josh Paetzel <josh@tcbug.org> (maintainer)
2006-02-07 17:14:35 +00:00
Kris Kennaway
e3df59997f BROKEN: Does not compile 2006-01-19 23:41:08 +00:00
Lev A. Serebryakov
92fda7c482 [1] Update to 0.22.3
[2] Use new neon library

PR:		ports/91278
Submitted:	Maintainer
2006-01-05 08:38:44 +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
Kirill Ponomarev
78fd972664 Fix MASTER_SITES
Portlint(1)

PR:		ports/76793
Submitted by:	maintainer
2005-01-29 10:39:08 +00:00
Tilman Keskinoz
f102055f53 Assign Maintainership to Josh Paetzel <josh@tcbug.org>
PR:		74587
Submitted by:	Josh Paetzel <josh@tcbug.org>
2004-12-04 17:51:52 +00:00
Hye-Shik Chang
a4648dac05 - Add a mirror site.
- Utilize SIG_FILE.

PR:		74490
Submitted by:	Jason Harris <jharris@widomaker.com>
2004-11-28 22:35:36 +00:00
Hye-Shik Chang
03ca4968c9 Update to 0.22.2 2004-11-07 15:03:21 +00:00
Mikhail Teterin
a6de9bdd90 Upgrade from 0.22.0 to 0.22.1 (April 14th). Drop expat-dependency --
this port uses whatever www/neon provides. Loosen the neon-dependency --
don't require the exact version of -lneon. Don't extract the expat and
libneon bundled with the cadaver -- to avoid #include-ing a wrong header
accidentally. Patch some warnings.
2004-05-04 21:26:41 +00:00
Jun Kuriyama
4a868f8a2a o Bump $LIB_DEPENDS line to chase expat's shlib version.
o Bump $PORTREVISION.
2004-03-14 07:58:26 +00:00
Trevor Johnson
3c175cb569 Use PLIST_FILES.
Reviewed by:	marcus
2004-02-05 20:38:07 +00:00
Trevor Johnson
f15b845ebe SIZEify. 2004-01-29 16:13:06 +00:00
Max Khon
f73d7f9f63 - Update to 0.22.0.
- Chase libneon version.
2003-10-10 11:24:48 +00:00
Pete Fritchman
a7ebc6b6af Use USE_GETOPT_LONG.
PR:		51387, 51383, 51380, 51388, 51384, 51372, 51373,
		51381, 51382
Submitted by:	Ports Fury
2003-05-18 16:03:16 +00:00
Max Khon
87818b3dd7 Update to 0.21 2003-04-18 09:41:36 +00:00
Akinori MUSHA
cb07270bfe De-pkg-comment. 2003-02-20 19:21:36 +00:00
Norikatsu Shigemura
d6428c128a Change CPPFLAGS+=/LDFLAGS+= to CPPFLAGS=/LDFLAGS=.
Submitted by:	Ports Fury
2003-02-08 05:27:23 +00:00
Norikatsu Shigemura
adf17e7bcf Conditionalize libgnugetopt dependencies.
PR:		ports/47752
Submitted by:	Ports Fury
2003-02-02 14:42:53 +00:00
Max Khon
63de032394 Do not build with included neon.
Installed (in ${LOCALBASE}) libneon was linked in if it exists anyway
and included expat is not used anymore.
2003-01-22 14:30:35 +00:00
Mario Sergio Fujikawa Ferreira
f0a1969d34 o Rollback PORTCOMMENT modifications while this feature's implementation
is better studied
o Turn PORTCOMMENT variable in Makefile back into pkg-comment files

Approved by:	kris (portmgr hat),
		portmgr, re (silence)
2002-11-10 16:48:51 +00:00
Adam Weinberger
d9611f9375 Use PORTCOMMENT in the Makefile, and whack the pkg-comment.
Approved by:	pat
2002-11-06 22:47:41 +00:00