aboutsummaryrefslogtreecommitdiff
path: root/archivers/liborange
Commit message (Collapse)AuthorAgeFilesLines
* Remove archivers/liborange.Rene Ladan2019-10-155-118/+0
| | | | | | | | It got broken after palm/synce-libsynce removal and its website is gone. It was also unmaintained. Notes: svn path=/head/; revision=514539
* archivers/orange: drop dependency on expired palm/synce-libsynceRene Ladan2019-10-141-9/+4
| | | | Notes: svn path=/head/; revision=514449
* Update to 1.4.1Sunpoet Po-Chuan Hsieh2017-01-151-1/+1
| | | | | | | | | | - Bump PORTREVISION for archivers/unshield shlib change Changes: https://github.com/twogood/unshield/releases MFH: 2017Q1 Notes: svn path=/head/; revision=431574
* Bump PORTREVISION for archivers/unshield shlib changeSunpoet Po-Chuan Hsieh2017-01-011-1/+1
| | | | Notes: svn path=/head/; revision=430283
* archivers/liborange: Remove redundant dependency on unzipJohn Marino2016-08-041-2/+1
| | | | | | | | A dependency on unzip will never be registered since unzip is available on all supported platforms (since FreeBSD 8.0). Notes: svn path=/head/; revision=419568
* Cleanup patches, a* categories.Mathieu Arnold2016-07-261-5/+5
| | | | | | | | | | Rename them to follow the make makepatch naming, and regenerate them. With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=419133
* Remove ${PORTSDIR}/ from dependencies, Mk and categories a, b, and c.Mathieu Arnold2016-04-011-6/+6
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412344
* - Improve options descriptionsPawel Pekala2016-01-201-23/+11
| | | | | | | | - Switch to USES=localbase - Use options helpers Notes: svn path=/head/; revision=406806
* - Strip libraryDmitry Marakasov2015-05-091-1/+2
| | | | Notes: svn path=/head/; revision=385860
* archivers/liborange: Unbreak port by working around configure flawJohn Marino2014-07-161-4/+6
| | | | | | | | | | | | | | | | | | The configure error "Not configured with libgsf or libole2 but that's needed for MSI support" is caused by using the wrong configure option of MSI that was introduced in last commit. Changing to MSI_CONFIGURE_ENABLE=libgsf to MSI_CONFIGURE_WITH=libgsf should have solved the problem, but unfortunately there is a logic flaw in the configure script. If --without-libgsf is passed to it, it mistakenly tries to find it anyway with pkgconfig and then fails. The way to fix this properly is to patch the configure script, but I am going to cheat by making libgsf an unconditional requirement as it was before adamw fixed the options reversal. Notes: svn path=/head/; revision=362115
* Reduce unnecessary bsd.port.options.mk inclusions by using OPTIONS helpers.Adam Weinberger2014-07-031-25/+16
| | | | | | | | | | For liborange, reverse the logic, as I'm pretty sure the OPTIONS were being used to disable the selected options. Approved by: portmgr (blanket) Notes: svn path=/head/; revision=360446
* - Drop .la files, no dependees require themDmitry Marakasov2014-06-052-3/+2
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=356690
* When linking a library libA with a library libB using libtool, if libB.laTijl Coosemans2014-04-231-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | exists, libtool will add all libraries libB.la refers to (dependency_libs field) to the linker command line and store them in the dependency_libs field of libA.la. So everything that subsequently links with libA will also link to these extra libraries. This causes too much overlinking. This commit modifies Mk/Uses/libtool.mk so it empties the dependency_libs field in .la libraries during staging. However, because .la libraries have very limited use when dependency_libs is empty it makes sense to completely remove them during staging. So with this commit USES=libtool is modified to remove .la libraries and a new form (USES=libtool:keepla) is introduced in case they need to be kept (dependency_libs is still emptied). PORTREVISION is bumped on all ports with USES=libtool that install .la libraries. Most ports are also changed to add :keepla because .la libraries have to be kept around as long as there are dependent ports with .la libraries that refer to them in their dependency_libs field. In most cases :keepla can be removed again as soon as all dependent ports that install .la libraries have some form of USES=libtool added to their Makefile. PR: ports/188759 Exp-run: bdrewery Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=351936
* Convert to USES=libtoolBaptiste Daroussin2014-02-052-2/+2
| | | | Notes: svn path=/head/; revision=342697
* In preparation for making libtool generate libraries with a sane name, fix allBaptiste Daroussin2013-12-111-4/+4
| | | | | | | | | LIB_DEPENDS in accessibility With hat: portmgr Notes: svn path=/head/; revision=336153
* Support staging.Emanuel Haupt2013-11-152-5/+2
| | | | Notes: svn path=/head/; revision=333828
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | archivers) Notes: svn path=/head/; revision=327699
* - Remove MAKE_JOBS_SAFE variableAlex Kozlov2013-08-141-1/+0
| | | | | | | Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=324744
* - Fix USE_ICONV leftovers missed in the previous updateMarcus von Appen2013-04-271-1/+0
| | | | Notes: svn path=/head/; revision=316684
* - Convert USE_ICONV=yes to USES=iconvMarcus von Appen2013-04-271-1/+1
| | | | | | | | | - Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig while here Reviewed by: bapt, kwm Notes: svn path=/head/; revision=316654
* Finish converting the whole ports tree to USES=pkgconfigBaptiste Daroussin2013-04-231-2/+1
| | | | Notes: svn path=/head/; revision=316355
* This changes almost all the "gnomehack" only USE_GNOME cases to USES= pathfix.Eitan Adler2013-03-191-1/+1
| | | | | | | | | | | | If a port used other USE_GNOME items it was untouched. The ports that used other USES were fixed by hand. PR: ports/177081 Reviewed by: bapt Approved by: portmgr (miwi) Notes: svn path=/head/; revision=314640
* Fix typoBaptiste Daroussin2013-02-201-1/+1
| | | | Notes: svn path=/head/; revision=312660
* - Reassign ports from avl@ back to pool at his request.Dima Panov2013-02-201-1/+1
| | | | | | | | Submitted by: avl via IM Approved by: avl via IM Notes: svn path=/head/; revision=312628
* - Convert to new options frameworkBaptiste Daroussin2012-12-291-21/+20
| | | | | | | | | | | | - Add an explicit built dependency on pkgconf - Trim headers PR: ports/173808 Submitted by: Chris Petrik <c.petrik.sosa@gmail.com> Approved by: maintainer timeout (1 month) Notes: svn path=/head/; revision=309639
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-231-2/+0
| | | | | | | | | | | | - 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-181-1/+0
| | | | | | | With hat: portmgr (myself) Notes: svn path=/head/; revision=271274
* Sync to new bsd.autotools.mkAde Lovett2010-12-041-1/+1
| | | | Notes: svn path=/head/; revision=265663
* - Switch SourceForge ports to the new File Release System: categories ↵Dmitry Marakasov2009-08-221-2/+1
| | | | | | | starting with A Notes: svn path=/head/; revision=240066
* -Repocopy devel/libtool15 -> libtool22 and libltdl15 -> libltdl22.Jeremy Messenger2009-08-021-1/+1
| | | | | | | | | | | | | | | | | | | | | -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 Notes: svn path=/head/; revision=238781
* Change MAINTAINER on my ports to my FreeBSD email addressAlexander Logvinov2009-05-281-1/+1
| | | | | | | Approved by: tabthorpe (mentor) Notes: svn path=/head/; revision=234716
* - Allow to build with MAKE_JOBS_SAFEMartin Wilke2009-03-311-0/+2
| | | | | | | | | | - Move some ports to SF macro PR: 133124 Submitted by: Alexander Logvinov <ports@logvinov.com> (maintainer) Notes: svn path=/head/; revision=231414
* - Update to 0.4Martin Wilke2009-01-132-6/+5
| | | | | | | | PR: 130395 Submitted by: Alexander Logvinov <ports@logvinov.com> (maintainer) Notes: svn path=/head/; revision=225909
* - Add missing RUN_DEPENDS on archivers/cabextract and archivers/unzipBeech Rintoul2008-08-071-1/+4
| | | | | | | | PR: ports/126321 Submitted by: Alexander Logvinov <ports@logvinov.com> (maintainer) Notes: svn path=/head/; revision=218178
* - Fix build with LIBSYNCE, LIBDYNAMITE, LIBUNSHIELD options enabledPav Lucistnik2008-07-292-4/+13
| | | | | | | | | | | | - Fix pkg-config file - Change WWW - Bump PORTREVISION PR: ports/126063 Submitted by: Alexander Logvinov <ports@logvinov.com> (maintainer) Notes: svn path=/head/; revision=217831
* - Repocopy archivers/orange to archivers/liborange.Marcelo Araujo2008-06-175-38/+64
| | | | | | | | | | - Update to 0.3.2. PR: ports/124402 Submitted by: Alexander Logvinov <ports@logvinov.com> (maintainer) Notes: svn path=/head/; revision=215032
* - Update is needed because dynamite has been renamed to libdynamite.Marcelo Araujo2008-06-051-3/+3
| | | | | | | | | | - Bump PORTREVISION. PR: ports/123941 Submitted by: Alexander Logvinov <ports@logvinov.com) Notes: svn path=/head/; revision=214379
* - Pass maintainership to submitterThomas Abthorpe2008-05-221-1/+1
| | | | | | | | PR: ports/123886 Submitted by: Alexander Logvinov <ports@logvinov.com> Notes: svn path=/head/; revision=213536
* - minor fixes to make portlint happierYen-Ming Lee2007-04-101-13/+3
| | | | Notes: svn path=/head/; revision=189656
* Use libtool port instead of included version to avoid a.out objformat botchKris Kennaway2007-01-291-0/+1
| | | | Notes: svn path=/head/; revision=183664
* Drop maintainership.Sam Lawrance2007-01-231-1/+1
| | | | Notes: svn path=/head/; revision=183062
* Remove USE_REINPLACE from ports in categories starting with A.Edwin Groothuis2006-05-031-1/+0
| | | | Notes: svn path=/head/; revision=161245
* Conversion to a single libtool environment.Ade Lovett2006-02-232-3/+4
| | | | | | | Approved by: portmgr (kris) Notes: svn path=/head/; revision=156749
* SHA256ifyEdwin Groothuis2006-01-221-0/+1
| | | | | | | Approved by: krion@ Notes: svn path=/head/; revision=154139
* 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
* Update to 0.3Sam Lawrance2005-08-012-3/+3
| | | | | | | | PR: ports/84330 Submitted by: Andrej Zverev <az@inec.ru> Notes: svn path=/head/; revision=140699
* Set my ports to their shiny new MAINTAINER address.Sam Lawrance2005-04-121-1/+1
| | | | | | | Approved by: clement (mentor) Notes: svn path=/head/; revision=133146
* At Kris's request, back out the MACHINE_ARCH spelling correction untilDavid E. O'Brien2005-04-121-1/+1
| | | | | | | after 5.4-RELEASE. Notes: svn path=/head/; revision=133116
* Assist getting more ports working on AMD64 by obeying theDavid E. O'Brien2005-04-111-1/+1
| | | | | | | Ports Collection documentation and use 'ARCH' rather than 'MACHINE_ARCH'. Notes: svn path=/head/; revision=132992
* Remove libtool archive.Kevin Lo2005-01-281-1/+0
| | | | | | | Submitted by: MAINTAINER Notes: svn path=/head/; revision=127514