Commit graph

68 commits

Author SHA1 Message Date
Mathieu Arnold
a0bcd2cf68 Use USES=pathfix where applicable.
PR:		213195
Submitted by:	mat
Exp-run by:	antoine
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D8093
2016-10-21 15:21:13 +00:00
Dmitry Marakasov
1d1f878054 - Fix trailing whitespace in pkg-descrs, categories [a-f]*
Approved by:	portmgr blanket
2016-05-19 10:21:23 +00:00
Stephen Hurd
8bc477a5e1 Fix plist when Python 3 is the default
USE_PYTHON=	py3kplist
fixes the issue with files going into __pycache__ on 3.x but not on 2.x
2016-04-08 07:15:48 +00:00
Stephen Hurd
8fcaf61ea5 Update to latest release 2016-04-08 00:00:17 +00:00
Mathieu Arnold
7f4572eae4 Remove ${PORTSDIR}/ from dependencies, Mk and categories a, b, and c.
With hat:	portmgr
Sponsored by:	Absolight
2016-04-01 13:29:15 +00:00
Diane Bruce
11ff194a50 Fix goof with missed plist entries
Strip libraries
Move hamlib.info from plist into Makefile using INFO
2015-10-03 16:30:19 +00:00
Diane Bruce
a90d43bd2f The Hamlib Group is pleased to announce the release of Hamlib 3.0.
This release of Hamlib introduces a change to the version scheme.
Essentially, the leading '1.' characters have been dropped so '3.0' is a
direct follow on from the '1.2.' releases and has been configured to be
ABI compatible with the '1.2.' releases.

Bug fixes to this release will start with '3.0.1' through '3.0.n'.

The next releases will be '3.1' through '3.n' until the next major
release.
Files are hosted at the Hamlib prjoect page at SourceForge.net:

https://sourceforge.net/projects/hamlib/files/hamlib/3.0/

The changes include:

Version 3.0
        2015-09-20
        * Kill RPC backends and rpc.rigd/rpc.rotd
        * Remove -e|--end-marker option from rigctld and rotctld
        * Build system updates--remove obsolete macros, autogen.sh now
                runs autoreconf to invoke Autotools to bootstrap the build
                system, libltdl is installed into the source tree as a part
                of the build system bootstrap and is included in the source
                tarball, ABI version is set to be compatible with the 1.2
                series, all Autotools installed files are copied rather than
                symlinked and put in the build-aux directory, building
                rigmem and rigmatrix are now user selectable at configure
                run time, building static libraries are disabled by default.
                Fixed TCL binding installation, fixed Perl binding build so it
                is not invoked by 'make dist' and clean up build files.  Cleaned
                up bindings builds to occur in alphabetical order.  Use new
                ax_pkg_swig macro and update ax_python_devel macro.  Test for
                presence of pkg-config before testing for pkg-config use.
        * Implement new RIT/XIT activation/deactivation through rig_get/set_func
+()
        * IC-PCR1500/2500 default write_delay to 0, IC-746/756, IC-PCR8500
                fixes, pcr.c, pcr1500.c: Add DSP support.  TNX Paul, KE7ZZ
        * WinRadio G313 updates.  TNX Julian Campbel
        * Readline editing and history support added to rigctl interactive
                mode.  Implement options for reading and writing history file.
        * Readline editing and history support added to rotctl interactive
                mode.  Implement options for reading and writing history file.
        * A new manual draft written in Texinfo added.  Both GNU Info and single
                HTML files are built and distributed, requires makeinfo.
        * Android build system support.  See android/README.android.  Android
                Makefile fragments are included in source tarballs.
        * Monolithic library, thanks to Remi Chateauneu for the majority of
                the work!  This allows enabling of a single static library so
                static libs are enabled by default.  Removes dependency on libltdl.
        * Fixes to easycomm, TNX Steve AI4QR.
        * Fixes to port handling allowing PTT and CAT on the same port.  TNX
                Bill, G4WJS.
        * New Peaberry models V1 and V2 added to kit backend.  TNX ON8VQ
                and R2AEE.
        * New IC-7100 model.  TNX Martin, CT1IQI.
        * Use AC_CHECK_LIB macro to search for libusb rather than rely on
            pkg-config.  Preserve environment variables LIBUSB_CFLAGS and
            LIBUSB_LIBS as user precious variables.  Two features,
            --with-xml-support and --enable-usrp still rely on pkg-config so
            only invoke pkg-config when either or both of these features are
            selected.  Only the Winradio g313 model uses libdl so test for it
            only when Winradio backend is enabled.
        * New IC-M700PRO, IC-M710, IC-M802.
        * New Icom ID-5100 model.
        * New rotor, cnctrk by KI4SBL
        * Many backend fixes and updates from many contributors (see Git
          log for complete details).
2015-10-02 13:39:19 +00:00
Dmitry Marakasov
8dd44382a0 - Fix shebangs
- Unsilence install commands

Approved by:	portmgr blanket
2015-09-18 15:09:17 +00:00
Stephen Hurd
7fcfab2d22 Add patch to allow building with an external toolchain.
PR:             196937
Submitted by:   mikael.urankar@gmail.com
2015-01-25 20:03:32 +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
2c8db67726 Cleanup plist 2014-10-20 09:31:33 +00:00
Marcus von Appen
dae43d7a6d - Convert ports from cad/, chinese/, comms/ and converters/ to new
USES=python

Approved by:	portmgr (implicit)
2014-10-19 07:50:53 +00:00
Tijl Coosemans
15c4a5ecf3 Replace USE_AUTOTOOLS=libltdl with an ordinary LIB_DEPENDS in all ports.
There are only 60 such ports so there doesn't need to be a separate
keyword or USES for this.

Approved by:	portmgr (bapt)
2014-09-17 07:38:15 +00:00
Dmitry Marakasov
13b4c8496d - Switch to USES=libtool
Approved by:	portmgr blanket
2014-08-06 15:37:14 +00:00
Adam Weinberger
44eaadcb75 Add OPTIONS_DEFINE=DOCS for ports with %%PORTDOCS%% in the plist.
Where possible, correct a few instances where PORTDOCS was being used
to flag stuff in EXAMPLESDIR. For some ports, mostly those owned by
ruby@, PORTDOCS is applied to pretty much everything whether it's
documentation or example.
2014-07-15 23:11:12 +00:00
Diane Bruce
fd3422fced - hamlib should have been hamradio 2014-07-02 11:39:44 +00:00
Stephen Hurd
37a172c645 Fix perl module .packlist and remove perllocal.pod
Change maintainer to hamradio@ (per db@)

Reviewed by:	skreuzer
Approved by:	db, skreuzer (mentors)
2014-06-27 19:51:32 +00:00
Tijl Coosemans
9f8b4bcde3 Support LIBS like LDFLAGS.
- Add LIBS="${LIBS}" to MAKE_ENV and CONFIGURE_ENV.
- Add an option helper for LIBS.
- Adjust all ports that already use LIBS.  Also remove references to
  PTHREAD_CFLAGS and PTHREAD_LIBS while here.
- Some ports did not support having a LIBS environment variable and
  required additional patches.

Somewhat simplified a linker command line looks like:

${CC} ${src_LDFLAGS} ${LDFLAGS} ${src_LIBS} ${LIBS}

where src_LDFLAGS and src_LIBS are controlled by upstream and LDFLAGS and
LIBS can be controlled by us.  If possible -L and -l flags need to be
added to LIBS to make sure they appear after any -L and -l flags set by
upstream.  Many ports currently add -L${LOCALBASE}/lib to LDFLAGS but this
may appear too early on the command line causing installed libraries to
be linked in instead of freshly built ones.

Additional changes:
benchmarks/netio: Replace WITH_IPV6 with an IPV6 option.
comms/gnokii: Replace some patches with USES=pathfix.  Also remove -fPIC.
graphics/gimageview: USES=libtool and install desktop file in DESKTOPDIR.
graphics/visionworkbench: Remove FreeBSD 7 support.
multimedia/libmovtar: New LIB_DEPENDS syntax.
multimedia/opencinematools: Use standard do-build.
net/siproxd: USES=libtool:keepla (port actually needs .la files for plugins)
net-mgmt/nagios: Remove -fPIC.
net-mgmt/nagios4: Remove -fPIC.
print/cups-base: Only add -lssp_nonshared on i386 and OSVERSION < 1000036.
security/p11-kit: Replace PTHREAD_LIBS in CONFIGURE_ENV with
ac_cv_func_pthread_mutexattr_init=no in CONFIGURE_ARGS.  This skips a test
in configure that falsely detects pthread_mutexattr_init in our libc.
sysutils/dar: Fix iconv detection.
x11/rxvt-unicode: Remove -lstdc++ and patch configure to remove a FreeBSD
hack and use $CXX as linker as on other platforms.

PR:		190592
Exp-run by:	antoine
Approved by:	portmgr (antoine)
2014-06-11 14:49:59 +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
Niclas Zeising
39fc32e828 The FreeBSD x11@ and graphics team proudly presents
a zeising, kwm production, with help from dumbbell, bdrewery:

NEW XORG ON FREEBSD 9-STABLE AND 10-STABLE

This update switches over to use the new xorg stack by default on FreeBSD 9
and 10 stable, on osversions where vt(9) is available.
It is still possible to use the old stack by specifying WITHOUT_NEW_XORG in
/etc/make.conf .
FreeBSD 8-STABLE and released versions of FreeBSD still use
the old version.
A package repository with binary packages for new xorg will
be available soon.

This patch also contains updates of libxcb and related ports, pixman, as well
as some drivers and utilities.

Bump portrevisions for xf86-* ports, as well as virtualbox-ose-additions due
to xserver version change.

Apart from these updates, the way shared libraries are handled has been
changed for all xorg ports, as well as libxml2 and freetype, which means
ltverhack is gone and as a consequence shared libraries have been bumped.
The plan is that this change will make library bumps less likely in the
future.
All affected ports have had their portrevisions bumped as a consequence of
this.

Fix some issues where WITH_NEW_XORG weren't detected properly on CURRENT.

Update instructions, hardware support, and more notes can be found on
https://wiki.freebsd.org/Graphics

Thanks to:	all testers, bdrewery and the FreeBSD x11@ team
exp-run by:	bdrewery [1]
PR:		ports/187602 [1]
Approved by:	portmgr (bdrewery), core (jhb)
2014-04-16 18:28:47 +00:00
Pietro Cerutti
96bb272cf6 - Convert to USES=tcl 2014-01-29 13:32:25 +00:00
Diane Bruce
82a0f43d37 - Enable staging 2013-12-30 21:51:43 +00:00
Baptiste Daroussin
2b300eeb3f Add NO_STAGE all over the place in preparation for the staging support (cat: comms) 2013-09-20 16:03:29 +00:00
Baptiste Daroussin
b8871ecaa0 Eliminate USE_GNOME=pkgconfig from comms 2013-09-02 09:03:40 +00:00
Diane Bruce
6a1746b4cc - Convert header into new form
- Move LICENSE line to make portlint happy
- No code changes

Feature safe:	yes
2012-11-03 14:36:21 +00:00
Diane Bruce
74ba9ea4d6 Changes in this release from 1.2.15.2 are:
Version 1.2.15.3 2012-11-01
        * Fix configure.ac so that rigctld/rotcld work on Win32 platform
        * Add NSIS script to build executable installer on Win32 platform
        * Remove unsupported commands on IC-756 (non-Pro model) from AK6I
        * Fix set_split in netrigctl.c to properly accept the split value.
                TNX, N2ADR.
        * IC-R8500: Add RIG_LEVEL_AF to has_set_level. TNX John, EI7IG
        * ADAT updates from Frank, DG1SBG, needed for stable operation.

This is likely the last planned release of the Hamlib 1.2 series.
Development will now focus on the Hamlib 3 series which is now
configured to be ABI compatible with the 1.2 series.

Feature safe:	yes
2012-11-03 01:03:59 +00:00
Andrej Zverev
43b2f3f94d - Fix typos (LICENSE is correct form inside bsd.licenses.mk).
- Removed LICENSE_FILE where is no need in this.

Spotted by:	zont@
Approved by:	portmgr (bapt@)
2012-10-02 16:40:40 +00:00
Diane Bruce
0a3741e846 - Update to Version 1.2.15.2
2012-08-05
        * Read eeprom value for digital mode from FT-857
        * Clean up TS-950 series commands and read mode using IF command
        * Fix GS-232A/B rotor command terminations
        * Fix warnings and other issues found by mingw-w64
        * Allow seamless access to ports higher than COM9 on Windows
        * Fix ineffective packed attribute on WinRadio
        * Correct low signal strength S-meter error on AR7030+
        * Updates to HiQSDR by Jim, N2ADR
2012-08-09 00:03:18 +00:00
Diane Bruce
84b5095e8a - Update to 1.2.15
From change log:
* New models: TT-599 Eagle, IC-RX7, IC-1275, HiQSDR,
                ADAT ADT-200A, DttSP UDP, TM-D710
        * New rotator backends:
        * Celestron (telescope mount)
        * Fixes and features: K3, various other rigs
        * Update LGPL/GPL header boilerplate
        * Quell various compiler errors
        * Add CM108 PTT capability
2012-02-04 01:03:18 +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
Diane Bruce
00915371dd - Update to hamlib 1.2.14
From release e-mail:

The Hamlib team announces the release of Hamlib 1.2.14, the first since
adopting a timed release schedule of 1 Feb and 1 Aug each year.  Changes
since 1.2.13 include:

    * New models: SigFox Transfox, TH-D72A, IC-7410, IC-9100, IC-R9500,
      KX3, V4L2 API support (untested),

    * New rotator backends: IF-100, TS-7400

    * Fixes and features: K3/KX3, Build Win32 from script,
      rigctld/rotctld ported to Mingw32, Win32 build fixes, remove
      obsolete bundled libtool files, rigctl improvements, FUNcube
      string test (works with V0.0 and V1.0), Yaesu newcat.c fixed to
      use rig->state.current_vfo to store vfo value, add a command to
      halt rigctld, select PTT source in Kenwood backends (TS-590S),
      make sure scan is stopped at IC-9000 opening, thd72 get channel
      data (alpha).

For a complete log of changes to Hamlib 1.2.14, please visit:

http://hamlib.git.sourceforge.net/git/gitweb.cgi?p=hamlib/hamlib;\
a=shortlog;h=refs/heads/Hamlib-1.2.14
2011-08-04 00:36:24 +00:00
Diane Bruce
5fba694945 From releaae e-mail:
This release is a bug fix release and includes no new features or
backends:

Version 1.2.13.1
        * 2011-05-29
        * Conversion to Git SCM and updated README documentation for Git SCM
        * Mingw32 build fixes
        * FUNcube dongle USB fixes for Win32
        * Added kit/README.funcubedongle
        * Bug fix--K3 antenna selection function
Users of the FUN Cube dongle on Win32 and K3 users on all platforms are
urged to upgrade to Hamlib 1.2.13.1.

73, de Nate >>
2011-05-29 22:38:42 +00:00
Diane Bruce
6011d09851 Update to
Version 1.2.13
        2011-03-12
        * New models: VX-1700, FUNcube, FiFi-SDR, KTH-SDR Si570, FT-5000,
                TS-590S
        * Rotor fixes and features: SPID
        * New Rotor backend: F1TE Tracker
        * Fixes and features: TS-440S, K2, K3, SR-2200, THF6A, THF7E, NewCAT
                rigs serial port defaults, TM-D700,
        * Removed libtool tree from source tree
        * Removed old DocBook files
        * Allow USB device's VID/PID/Vendor/Product to be explicitly specified
        * Doxygen documentation updates and new style sheet
2011-03-14 02:30:17 +00:00
Philip M. Gollucci
116ec22ac1 - DISTNAME= ${PORTNAME}-${PORTVERSION} is the default and not needed.
PR:             ports/153292
Submitted by:   myself (pgollucci)
Tested by:      -exp run by pav
Approved by:    portmgr (pav)
2010-12-29 20:04:42 +00:00
Ade Lovett
4a8684e352 Sync to new bsd.autotools.mk 2010-12-04 07:34:27 +00:00
Ade Lovett
6abd00a86b Punt autoconf267->autoconf268 2010-10-16 11:52:47 +00:00
Ade Lovett
8262a7b51d Autotools update. Read ports/UPDATING 20100915 for details.
Approved by:	portmgr (for Mk/bsd.port.mk part)
Tested by:	Multiple -exp runs
2010-09-15 18:35:24 +00:00
Diane Bruce
f70b9b757e - Update to 1.2.11
- Adds a few more radios
2010-06-10 14:01:04 +00:00
Diane Bruce
e0bebb7eff - Update to 1.2.10
- Add port docs
2009-11-25 17:30:42 +00:00
Dmitry Marakasov
c926af277e - Switch SourceForge ports to the new File Release System: categories starting with B,C 2009-08-22 00:15:15 +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
Philip M. Gollucci
20cfadf5f7 Utilize %%SITE_PERL%% and %%PERL_ARCH%% in pkg-plists
PR:             ports/136771
Exp Run by:     pav
Approved by:    portmgr (pav)
2009-07-30 23:04:49 +00:00
Diane Bruce
55d7c6ad26 - Update to latest vendor version of hamlib.
- patch for rig.h now in vendor version.
2009-02-28 02:20:21 +00:00
Martin Matuska
24bf28eff1 - Change default Tcl/Tk version to 8.5
- Bump PORTVERSION of ports affected

Tested by:	pointyhat (pav)
2009-02-23 14:46:37 +00:00
Diane Bruce
21e62fd3b4 - remove a bogus , from rig.h 2008-11-30 03:08:37 +00:00
Diane Bruce
50d3a2c100 - Update to 1.2.8
- Clean up port.
2008-11-12 16:29:14 +00:00
Ade Lovett
771ea13f41 Conversion from (now defunct) autoconf-2.61 to autoconf-2.62
Tested by:	exp build run (erwin)
2008-08-20 00:57:32 +00:00
Pav Lucistnik
dad0d0873a - Remove USE_GETOPT_LONG which is a no-op since March 2007 2008-03-20 09:23:28 +00:00
Diane Bruce
c3f0477410 - Update to 1.2.7 2008-02-19 01:24:35 +00:00
Mark Linimon
48420a5ebd Switch autoconf dependencies from 2.53 or 2.59 to 2.61.
PR:		ports/116639
Submitted by:	aDe
2007-09-30 04:47:36 +00:00