Commit graph

305 commits

Author SHA1 Message Date
Ryan Steinmetz
ae3303f002 - Readd ${LOCALBASE}/lib to ldflags 2015-01-20 14:51:42 +00:00
Ryan Steinmetz
efea5e65c9 - Update to 5.7.3
- Add missing PYTHON files into pkg-plist
2015-01-19 18:10:31 +00:00
Mathieu Arnold
eee58d187e Change the way Perl modules are installed, update the default Perl to 5.18.
Before, we had:

  site_perl :           lib/perl5/site_perl/5.18
  site_perl/perl_arch : lib/perl5/site_perl/5.18/mach
  perl_man3 :           lib/perl5/5.18/man/man3

Now we have:

  site_perl : lib/perl5/site_perl
  site_arch : lib/perl5/site_perl/mach/5.18
  perl_man3 : lib/perl5/site_perl/man/man3

Modules without any .so will be installed at the same place regardless of the
Perl version, minimizing the upgrade when the major Perl version is changed.
It uses a version dependent directory for modules with compiled bits.

As PERL_ARCH is no longer needed in plists, it has been removed from
PLIST_SUB.

The USE_PERL5=fixpacklist keyword is removed, the .packlist file is now
always removed, as is perllocal.pod.

The old site_perl and site_perl/arch directories have been kept in the
default Perl @INC for all Perl ports, and will be phased out as these old
Perl versions expire.

PR:		194969
Differential Revision:	https://reviews.freebsd.org/D1019
Exp-run by:	antoine
Reviewed by:	perl@
Approved by:	portmgr
2014-11-26 13:08:24 +00:00
Baptiste Daroussin
2e15d779d2 Simplify plist 2014-10-31 23:44:28 +00:00
Ryan Steinmetz
cbf8c14167 - Convert USE_PYTHON to USES+=PYTHON 2014-09-17 15:44:42 +00:00
Ryan Steinmetz
438528a841 - Fix build when PREFIX != PKG_PREFIX
PR:		193358
Submitted by:	dinox@
2014-09-08 12:20:36 +00:00
Baptiste Daroussin
d96aa38d95 Remove support for pkg_install
Merge back bsd.pkgng.mk into bsd.port.mk
Add a note about @stopdaemon not being supported anymore

With hat:	portmgr
Differential Revision:	https://reviews.freebsd.org/D693
2014-09-01 13:03:25 +00:00
Ryan Steinmetz
b6cc11c1fb - Bump PORTREVISION to chase ports-mgmt/pkg update to 1.3.1 2014-07-27 12:16:47 +00:00
Ryan Steinmetz
3bd02a6fe0 - Bump PORTREVISION to chase ports-mgmt/pkg update 2014-07-23 22:22:46 +00:00
Adam Weinberger
0a68394133 Add DOCS to OPTIONS_DEFINE to ports that check for PORT_OPTIONS:MDOCS. 2014-07-15 16:44:50 +00:00
Jimmy Olgeni
7dc406a7a1 Remove indefinite articles and trailing periods from COMMENT, plus minor
COMMENT typos and surrounding whitespace fixes. A few Makefiles where not
included as they contain Latin-1 characters that break the Phabricator
workflow. Category N.

CR:		D307
Approved by:	portmgr (bapt)
2014-07-10 12:13:11 +00:00
Ryan Steinmetz
72d070542b - Resolve build under 10 when security/openssl is installed
- Bump PORTREVISION for easy tracking
2014-06-30 18:43:48 +00:00
Ryan Steinmetz
6294e6933b - Use WITH_OPENSSL_PORT as the conditional for adding libcrypto 2014-06-26 01:24:20 +00:00
Ryan Steinmetz
bc3fd0ac05 - Another attempt at unbreaking 2014-06-25 15:25:40 +00:00
Ryan Steinmetz
5d9c62504b - Fix yet another problem 2014-06-25 14:25:14 +00:00
Ryan Steinmetz
82d6345452 - Fix build when OPENSSL_PORT is specified
- Bump PORTREVISION

Submitted by:	mat, bapt
2014-06-24 23:56:11 +00:00
Ryan Steinmetz
c949a868d3 - Portscout: skip version 5.7.2.1 as this was for a linux-only vuln
- Remove redundant PS_CMD as it is now in Mk/bsd.commands.mk
- Do not bump PORTREVISION as this is a NOOP
2014-06-23 19:13:44 +00:00
Ryan Steinmetz
de7e469b15 - Unbreak build after previous commits
- Bump PORTREVISION

PR:		191148
Submitted by:	girgen@
2014-06-23 03:35:40 +00:00
Kurt Jaeger
2db0c147d8 net-mgmt/net-snmp: fix USE_PERL5
Reported by:	az
2014-06-13 19:06:57 +00:00
Kurt Jaeger
e363bfa17b net-mgmt/net-snmp: fixpacklist
Approved by:	portmgr (blanket)
2014-06-13 18:40:39 +00:00
Mathieu Arnold
61de712f46 Remove all the bootstrap files (.bs) from the plists.
Starting with perl 5.20, they're not installed any more if empty,
and on FreeBSD, they're (always ?) empty.

PR:		190681
Submitted by:	mat
Exp-Run by:	antoine
Sponsored by:	Absolight
2014-06-10 12:14:12 +00:00
Baptiste Daroussin
4a4ec28d37 Convert all :U to :tu and :L to :tl
Since FreeBSD 8.4 and FreeBSD 9.1 make(1) do support :tu and :tl as a
replacement for :U and :L (which has been marked as deprecated)

bmake which is the default on FreeBSD 10+ only support by default
:tu/:tl a hack has been added at the time to support :U and :L to ease
migration. This hack is now not necessary anymore

Note that this makes the ports tree incompatible with make(1) from
FreeBSD 8.3 or earlier

With hat:	portmgr
2014-05-05 09:45:36 +00:00
Bryan Drewery
3c7bfe1f22 - Fix build with pkg_install
Reported by:	zi
2014-04-23 02:17:35 +00:00
Bryan Drewery
59a410425d - Remove LIB_DEPENDS on libpkg.so to fix pkg-devel usage.
* While this dependency is proper, it creates a hard dependency on
    ports-mgmt/pkg, which interferes with pkg-devel testing. Users
    using pkg-devel are forced to install ports-mgmt/pkg if using this
    port or anything depending on this port.
    While the LIB_DEPENDS has been removed, pkg will still record that
    the net-snmp package requires libpkg.so.1, due to its auto shlib
    dependency registering. This is fine as the package depends on
    libpkg.so.1 but not explicitly on ports-mgmt/pkg. The pkg solver
    can decide how to satisfy that dependency.
  * If using pkg you'll already have pkg installed while building
    this port in ports or installing from packages. So nothing is lost
    here.
  * Once pkg-1.3 is out we may change ACTUAL-PACKAGE-DEPENDS to only
    consider RUN_DEPENDS, not also LIB_DEPENDS. This would remove
    the hard dependency on ports-mgmt/pkg here. pkg-1.2 cannot
    handle this yet though.

Reported by:	rpaulo
Reported at:	https://github.com/freebsd/pkg/issues/785
With hat:	portmgr
2014-04-23 01:29:25 +00:00
Ryan Steinmetz
ddc608e001 - Fix another pkg-plist issue
- Bump PORTREVISION
2014-04-10 22:02:00 +00:00
Ryan Steinmetz
49f85ed3aa - Unbreak python support
- Fix pkg-plist issue
- Bump PORTREVISION

PR:		ports/188440
Submitted by: 	Johannes Jost Meixner <xmj@FreeBSD.org>
2014-04-10 21:48:42 +00:00
Ryan Steinmetz
ee4a36e4e4 - Try fixing the plist again 2014-04-10 02:41:12 +00:00
Ryan Steinmetz
949b407edd - Fix plist
- Fix include path
2014-04-10 02:26:09 +00:00
Ryan Steinmetz
69ecdcb7a8 - Add pkgNG support for HOST-RESOURCES-MIB::hrSWInstalled*
- Add STAGE support
- Bump PORTREVISION
2014-04-10 02:03:40 +00:00
Ryan Steinmetz
fc4e917843 - Fix dependency on py-setuptools
Reported by:	Kalidarn@freenode
2014-03-25 13:21:48 +00:00
Ryan Steinmetz
8d0c701f1b - Improve english in pkg-message 2014-03-19 18:28:08 +00:00
Ryan Steinmetz
a14ef2fb69 - Bring in bugfix for upstream bug #2525 to resolve snmpd crash
- Remove unneeded test.t from FILESDIR
- Bump PORTREVISION
2014-02-24 20:42:17 +00:00
Ryan Steinmetz
a4674e6a09 - Fix python build
PR:		ports/186074
Submitted by:	Jimmy Olgeni <olgeni@FreeBSD.org>
2014-01-25 02:24:39 +00:00
William Grzybowski
f8452d0517 net-mgmt/net-snmp: catch up with setuptools change
Approved by:	portmgr (bapt, implicit)
2013-11-27 23:57:23 +00:00
Ryan Steinmetz
87168aa813 - Fix FreeBSD 11 support 2013-11-23 00:15:03 +00:00
Tijl Coosemans
970da3e658 Add support for FreeBSD 11.
PR:		ports/183594
Approved by:	maintainer timeout (17 days)
2013-11-19 20:15:54 +00:00
Ryan Steinmetz
ef9c2dcc5b - Fix build under HEAD 2013-11-08 01:36:37 +00:00
Ryan Steinmetz
6752b4018e - Eliminate warnings when upgrading from package
Submitted by:	Jimmy Olgeni <olgeni@FreeBSD.org>
2013-10-15 11:54:14 +00:00
Baptiste Daroussin
985b201424 Add NO_STAGE all over the place in preparation for the staging support (cat: net-mgmt) 2013-09-20 22:24:43 +00:00
Baptiste Daroussin
7fb9058d37 Convert to new perl framework 2013-09-17 09:00:42 +00:00
Ryan Steinmetz
19d8e2cbf2 - Make SMUX an easily editable option, default to ON 2013-08-13 16:34:57 +00:00
Andrej Zverev
124b00a56f - Fix build with new site_perl
Submitted by:	olli hauer <ohauer@gmx.de>
2013-06-12 17:45:02 +00:00
Ryan Steinmetz
686ddc7a7f - Fix kvm_read() issue
- Bump PORTREVISION

PR:		ports/177761
Submitted by:	sbruno@
2013-05-30 11:55:31 +00:00
Ruslan Makhmatkhanov
b06fadc69e - replace deprecated devel/py-setuptools with devel/py-distribute
- change explicit dependency for the ports, that don't utilize USE_DISTUTILS feature
- add UPDATING entry

PR:		176142
Submitted by:	rm (myself)
Approved by:	portmgr (miwi)
Tested by:  	exp-run by miwi
2013-03-05 07:12:24 +00:00
Ryan Steinmetz
29e2b46af0 - Merge in upstream fix for bug 2439 [1]
- Convert header to new 'created by' style
- Fix pkgng issue [2]
- Bump PORTREVISION

Submitted by:	Paul Beard <paulbeard@gmail.com> [1]
Reported by:	bapt@ [2]
2013-02-13 00:41:56 +00:00
Ryan Steinmetz
4200e33a5d - Fix embedded perl support [1]
- Fix segfault during config reload [2]
- Bump PORTREVISION

PR:		ports/173213 [1]
Submitted by:	Frank Wall <fw@moov.de> [1], Alexey Kouznetsov <alexey@kouznetsov.com> [2]
Obtained from:	upstream repo [2]
Feature safe:	yes
2012-11-21 13:37:10 +00:00
Ryan Steinmetz
eab4eef5be - Fix build under FreeBSD jail
Feature safe:	yes
2012-10-14 16:07:54 +00:00
Ryan Steinmetz
5437390ccc - Update to 5.7.2
- Convert to OptionsNG

Feature safe:	yes
2012-10-13 01:07:32 +00:00
Doug Barton
9aac569eaa Move the rc.d scripts of the form *.sh.in to *.in
Where necessary add $FreeBSD$ to the file

No PORTREVISION bump necessary because this is a no-op
2012-08-05 23:19:36 +00:00
Ryan Steinmetz
6fb8b3b9b1 - Fix issue when using pkgng
PR:		ports/170197
Submitted by:	ohauer
2012-07-26 15:02:15 +00:00