aboutsummaryrefslogtreecommitdiff
path: root/math/oleo
Commit message (Collapse)AuthorAgeFilesLines
* Remove $FreeBSD$ from patches files everywhere.Mathieu Arnold2015-05-222-4/+0
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=387082
* MASTER_SITES cleanup.Mathieu Arnold2015-05-141-2/+1
| | | | | | | | | | | | | | | | | | | | | | - Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=386312
* Fix build with Perl 5.21.1+Mathieu Arnold2015-04-201-0/+23
| | | | | | | | | | | | "defined(@array)" and "defined(%hash)" are now fatal errors These have been deprecated since v5.6.1 and have raised deprecation warnings since v5.16. With hat: perl@ Sponsored by: Absolight Notes: svn path=/head/; revision=384372
* - Reset maintainership of my portsPietro Cerutti2014-12-101-1/+1
| | | | Notes: svn path=/head/; revision=374492
* Cleanup plistAntoine Brodin2014-11-151-3/+0
| | | | Notes: svn path=/head/; revision=372596
* Remove USE_AUTOTOOLS and remove DATADIRNAME patchTijl Coosemans2014-09-242-21/+5
| | | | Notes: svn path=/head/; revision=369200
* Rename math/ patch-xy patches to reflect the files they modify.Adam Weinberger2014-07-2817-0/+0
| | | | Notes: svn path=/head/; revision=363276
* Support LIBS like LDFLAGS.Tijl Coosemans2014-06-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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) Notes: svn path=/head/; revision=357486
* - Chase revision 353604 to graphics/plotutils.Stephen Montgomery-Smith2014-05-101-1/+1
| | | | | | | See: http://svnweb.freebsd.org/ports?view=revision&revision=353604 Notes: svn path=/head/; revision=353607
* - STAGE-cleanPietro Cerutti2014-02-145-16/+102
| | | | | | | | - Convert to new LIB_DEPENDS format - Add LICENSE Notes: svn path=/head/; revision=344172
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | math) Notes: svn path=/head/; revision=327746
* Convert to new perl frameworkBaptiste Daroussin2013-09-161-2/+2
| | | | | | | Convert USE_GMAKE to USES Notes: svn path=/head/; revision=327414
* Convert from USE_MOTIF to USES=motifBaptiste Daroussin2013-07-101-1/+1
| | | | | | | | | | While here: - Trim headers - Convert USE_GMAKE to USES=gmake - Remove indefinite article from comment Notes: svn path=/head/; revision=322622
* - Convert USE_GETTEXT to USES (part 4)Alex Kozlov2013-04-261-1/+1
| | | | | | | Approved by: portmgr (bapt) Notes: svn path=/head/; revision=316596
* Convert USE_BISON to USES= bisonBaptiste Daroussin2013-03-081-1/+1
| | | | | | | | | | | | | | | | | It brings bison as a build dependency in case it is set the following way: USES= bison or USES= bison:build it brings bison as a run dependency in case it is set the following way: USES= bison:run it brings bison both as a run and build dependency in case it the set the following way: USES= bison:both While here trim some headers Convert some USE_GNOME= gnomehack to USES= pathfix Notes: svn path=/head/; revision=313635
* - Convert to OptionsNGPietro Cerutti2012-10-031-14/+9
| | | | | | | Notified by: http://wiki.freebsd.org/Ports/Options/ConvertingToOptionsNG Notes: svn path=/head/; revision=305189
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-231-2/+2
| | | | | | | | | | | | - 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 Notes: svn path=/head/; revision=282282
* - Get Rid MD5 supportMartin Wilke2011-03-201-1/+0
| | | | Notes: svn path=/head/; revision=271346
* Sync to new bsd.autotools.mkAde Lovett2010-12-041-1/+1
| | | | Notes: svn path=/head/; revision=265663
* Bounce PORTREVISION for gettext-related ports. Have fun, ya'll.Ade Lovett2010-05-311-1/+1
| | | | Notes: svn path=/head/; revision=255371
* Bump portrevision due to upgrade of devel/gettext.Edwin Groothuis2008-06-061-1/+1
| | | | | | | | | | | | | 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) Notes: svn path=/head/; revision=214430
* - Remove unneeded dependency from gtk12/gtk20 [1]Martin Wilke2008-04-191-2/+2
| | | | | | | | | | | | | | | | | | - Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav) Notes: svn path=/head/; revision=211584
* - Remove USE_XLIB in favor of USE_XORGPietro Cerutti2008-03-101-3/+5
| | | | | | | | | - Fix OPTIONS Approved by: miwi (mentor) Notes: svn path=/head/; revision=208748
* My reference e-mail address as a ports maintainer is now gahr@FreeBSD.org.Pietro Cerutti2008-02-211-1/+1
| | | | | | | Approved by: miwi (mentor) Notes: svn path=/head/; revision=207731
* - Fix build with gcc 4.2Martin Wilke2008-02-084-8/+49
| | | | | | | | | | - Pass maintainership to submitter PR: 120415 Submitted by: "Pietro Cerutti" <gahr@gahr.ch> Notes: svn path=/head/; revision=206919
* Migration from bison 1.x to 2.xAde Lovett2007-10-171-2/+2
| | | | | | | | PR: 117086 Tested by: -exp runs Notes: svn path=/head/; revision=201613
* BROKEN with gcc 4.2Kris Kennaway2007-05-271-0/+4
| | | | Notes: svn path=/head/; revision=191950
* - Welcome X.org 7.2 \o/.Florent Thoumie2007-05-191-1/+1
| | | | | | | | - Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}. Notes: svn path=/head/; revision=191544
* Remove USE_REINPLACE from ports starting with MEdwin Groothuis2006-05-101-1/+0
| | | | Notes: svn path=/head/; revision=162032
* - Add SHA256Pav Lucistnik2005-11-251-0/+1
| | | | Notes: svn path=/head/; revision=149432
* Mass-conversion to the USE_AUTOTOOLS New World Order. The code presentAde Lovett2005-11-151-1/+1
| | | | | | | | | | | | | | | | | | | | 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. Notes: svn path=/head/; revision=148323
* Fix build with gcc34 & open-motifVolker Stolz2005-01-192-5/+43
| | | | | | | | PR: ports/75900 Noticed by: Tyler Davidson Notes: svn path=/head/; revision=126849
* - Convert to OPTIONSPav Lucistnik2004-08-201-10/+5
| | | | | | | | PR: ports/70736 Submitted by: Ying-Chieh Chen <yinjieh@csie.nctu.edu.tw> Notes: svn path=/head/; revision=116857
* Fix build on 5.x and fix build with new X headers.Eric Anholt2004-07-154-7/+45
| | | | | | | Reported by: pointyhat via kris Notes: svn path=/head/; revision=113689
* BROKEN on 5.x: Does not compileKris Kennaway2004-06-191-1/+7
| | | | Notes: svn path=/head/; revision=111801
* Don't use gettext if not needed.Thierry Thomas2004-06-081-1/+1
| | | | Notes: svn path=/head/; revision=111099
* - unbreak;Thierry Thomas2004-06-075-24/+52
| | | | | | | - do some cleaning. Notes: svn path=/head/; revision=111034
* BROKEN on 5.x: does not compileKris Kennaway2004-02-071-0/+4
| | | | Notes: svn path=/head/; revision=100307
* Add USE_GETTEXT and bump PORTREVISION.Joe Marcus Clarke2004-02-041-3/+2
| | | | | | | | Submitted by: trevor Tested by: bento Notes: svn path=/head/; revision=99914
* SIZEify.Trevor Johnson2004-01-291-0/+1
| | | | Notes: svn path=/head/; revision=99421
* Now gettext 0.12.1 is gettext-old.Trevor Johnson2004-01-231-1/+1
| | | | Notes: svn path=/head/; revision=98909
* - Fix buildKirill Ponomarev2003-09-041-2/+8
| | | | | | | | PR: 56436 Submitted by: Ports Fury Notes: svn path=/head/; revision=88544
* Bump the PORTREVISION for the ports directly affected by the gettext upgrade.Joe Marcus Clarke2003-08-261-1/+1
| | | | | | | Prodded by: kris Notes: svn path=/head/; revision=87743
* Chase the libintl.so shared lib version.Joe Marcus Clarke2003-08-251-1/+1
| | | | Notes: svn path=/head/; revision=87644
* Fix build, and another fixes for building.Maho Nakata2003-07-195-7/+65
| | | | | | | | | | Unbreak. PR: 51923 Submitted by: KATO Tsuguru <tkato@prontomail.com> Notes: svn path=/head/; revision=85174
* Move inclusion of bsd.port.pre.mk later in the file for conditional BROKENKris Kennaway2003-06-041-6/+6
| | | | | | | | | | tag. Early inclusion caused problems for some ports, so to be safe I'm updating all of them. Pointy hat to: kris Notes: svn path=/head/; revision=82300
* BROKEN on 5.1: does not compileKris Kennaway2003-05-181-1/+7
| | | | Notes: svn path=/head/; revision=81209
* BROKEN: Does not compileKris Kennaway2003-05-061-0/+2
| | | | Notes: svn path=/head/; revision=80292
* De-pkg-comment.Akinori MUSHA2003-02-202-1/+1
| | | | Notes: svn path=/head/; revision=75971
* Add a patch to fix build with bison in -current.Pete Fritchman2003-01-021-0/+12
| | | | | | | | PR: 46690 Submitted by: Andreas Schulz <ats@first.fraunhofer.de> Notes: svn path=/head/; revision=72224