aboutsummaryrefslogtreecommitdiff
path: root/archivers/dact
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Cleanup patches, a* categories.Mathieu Arnold2016-07-261-4/+4
| | | | | | | | | | 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-2/+2
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412344
* Convert LICENSE= "GPLxx # or later" to "GPLxx+"Dmitry Marakasov2016-01-121-1/+1
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=405891
* - Switch to USES=localbaseDmitry Marakasov2016-01-071-3/+3
| | | | | | | - Switch to options helpers Notes: svn path=/head/; revision=405443
* - Unbreak modules buildDmitry Marakasov2015-03-013-8/+41
| | | | | | | | | | | | - Switch to @sample - Fix plist - Add LICENSE - Strip binary MFH: 2015Q1 Notes: svn path=/head/; revision=380197
* Reset miwi's maintainership per his demandBaptiste Daroussin2014-11-181-1/+1
| | | | | | | Hope to see you back! Thank for all the work! Notes: svn path=/head/; revision=372709
* Clean up plistBaptiste Daroussin2014-10-191-3/+0
| | | | Notes: svn path=/head/; revision=371222
* - Drop .la files for security/libmcrypt, no dependees require themDmitry Marakasov2014-09-171-0/+1
| | | | | | | | | - Bump dependent ports as .so version has changed Approved by: portmgr blanket Notes: svn path=/head/; revision=368406
* Support stageBaptiste Daroussin2014-03-243-21/+20
| | | | Notes: svn path=/head/; revision=349093
* Remove trailing whitespaces from category archiversEmanuel Haupt2014-02-211-1/+1
| | | | Notes: svn path=/head/; revision=345392
* According to the Porter's Handbook (5.12.2.3.) default options must be added toEmanuel Haupt2014-02-101-0/+2
| | | | | | | | | | | | | | 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) Notes: svn path=/head/; revision=343634
* Remove NOPORT* from archivers. The only holdouts here are ruby@ now.Adam Weinberger2014-01-031-2/+3
| | | | Notes: svn path=/head/; revision=338542
* In preparation for making libtool generate libraries with a sane name, fix allBaptiste Daroussin2013-12-111-2/+2
| | | | | | | | | LIB_DEPENDS in accessibility With hat: portmgr Notes: svn path=/head/; revision=336153
* 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
* Convert archivers from USE_GMAKE to USES=gmakeBaptiste Daroussin2013-08-301-7/+2
| | | | | | | | | | While here: - Trim headers - Convert some port to the new perl world - Convert some port from USE_GNOME=pkgconfig to USES=pkgconfig Notes: svn path=/head/; revision=325646
* - Remove MAKE_JOBS_SAFE variableAlex Kozlov2013-08-141-1/+0
| | | | | | | Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=324744
* Fix installation of ports that rely on cp -n for installing files. r245960Florian Smeets2013-05-041-1/+1
| | | | | | | | | | | | | | changed cp to exit with a non-zero exit code if the file exists and is not overwritten thus causing ports to fail installing when e.g. trying to cp .default -> .conf files that already exist. We just ignore the error and continue, as we used to. Reported by: jaset Approved by: portmgr (bapt) Notes: svn path=/head/; revision=317389
* Try to build this on the cluster, now that it has been updated to lzo2.Mark Linimon2011-12-111-2/+0
| | | | | | | | Feature safe: yes Hat: portmgr Notes: svn path=/head/; revision=287170
* - 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
* Repair INDEX after lzo removal. Mark broken.Matthias Andree2011-07-071-3/+5
| | | | | | | PR: ports/156954 Notes: svn path=/head/; revision=277206
* - Get Rid MD5 supportMartin Wilke2011-03-181-1/+0
| | | | | | | With hat: portmgr (myself) Notes: svn path=/head/; revision=271274
* - Update to 0.8.42Martin Wilke2010-06-052-5/+4
| | | | Notes: svn path=/head/; revision=255798
* - Mark MAKE_JOBS_SAFE for SMP compilationMartin Wilke2009-03-251-0/+1
| | | | Notes: svn path=/head/; revision=230975
* Update CONFIGURE_ARGS for how we pass CONFIGURE_TARGET to configure script.Rong-En Fan2008-08-211-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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) Notes: svn path=/head/; revision=218938
* - Respect NOPORTEXAMPLESMartin Wilke2008-05-232-8/+10
| | | | | | | Reported by: ionbot Notes: svn path=/head/; revision=213561
* - Remove unneeded dependency from gtk12/gtk20 [1]Martin Wilke2008-04-191-1/+1
| | | | | | | | | | | | | | | | | | - 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_GETOPT_LONG which is a no-op since March 2007Pav Lucistnik2008-03-201-1/+0
| | | | Notes: svn path=/head/; revision=209417
* - Remove the DESTDIR modifications from individual ports as we have a new,Gabor Kovesdan2007-08-041-3/+3
| | | | | | | | | | fully chrooted DESTDIR, which does not need such any more. Sponsored by: Google Summer of Code 2007 Approved by: portmgr (pav) Notes: svn path=/head/; revision=197075
* - Respect DESTDIR for all my portsMartin Wilke2006-08-071-2/+6
| | | | | | | | Reviewed by: gabor Approved by: krion (mentor) Notes: svn path=/head/; revision=169917
* Obey conventions and change my mail to @FreeBSD.org addressMartin Wilke2006-06-161-1/+1
| | | | | | | Approved by: krion (mentor) Notes: svn path=/head/; revision=165605
* - Update to 0.8.41Sergey Matveychuk2006-04-193-26/+9
| | | | | | | | | | - Pass maintainership to submitter PR: ports/96023 Submitted by: Martin Wilke <freebsd@unixfreunde.de> Notes: svn path=/head/; revision=159924
* - Add SHA256Pav Lucistnik2005-11-231-0/+1
| | | | Notes: svn path=/head/; revision=149223
* Remove explicit checks for /usr/bin/bzip2.Edwin Groothuis2005-11-141-3/+0
| | | | | | | This has been part of the base OS since 4.4. Notes: svn path=/head/; revision=148214
* Fix plistVolker Stolz2005-10-091-1/+2
| | | | | | | Submitted by: krisbot Notes: svn path=/head/; revision=144678
* Cleanup:Volker Stolz2005-09-273-23/+6
| | | | | | | | - no need for separate Makefile-patch - nuke static lib Notes: svn path=/head/; revision=143626
* - Backout latest commit, it needs a repocopy due to API change.Florent Thoumie2005-05-311-2/+2
| | | | | | | Noticed by: Matthias Andree <matthias.andree@gmx.de> Notes: svn path=/head/; revision=136557
* - Bump lzo lib version.Florent Thoumie2005-05-311-1/+2
| | | | | | | - Bump PORTREVISION. Notes: svn path=/head/; revision=136548
* 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
* - Update to 0.8.39Clement Laforet2005-01-184-7/+36
| | | | | | | - install shlibs and preserve config file Notes: svn path=/head/; revision=126743
* - Fix configure warningKirill Ponomarev2004-04-171-0/+1
| | | | | | | | PR: 65668 65669 65670 65671 65672 65673 Submitted by: Roman Neuhauser <neuhauser at chello dot cz> Notes: svn path=/head/; revision=107368
* Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.Joe Marcus Clarke2004-02-041-1/+1
| | | | | | | (Part 2) Notes: svn path=/head/; revision=99920
* Add SIZE.Trevor Johnson2004-01-271-0/+1
| | | | Notes: svn path=/head/; revision=99295
* - Update to 0.8.35Pav Lucistnik2004-01-093-2/+12
| | | | | | | | PR: ports/61088 Submitted by: Vincent Tantardini <vinc@FreeBSD-fr.org> Notes: svn path=/head/; revision=97720
* upgrade to 0.8.34Ying-Chieh Liao2003-12-134-15/+25
| | | | Notes: svn path=/head/; revision=95720
* De-pkg-comment.Akinori MUSHA2003-02-202-1/+1
| | | | Notes: svn path=/head/; revision=75951
* Fix fetchingMax Khon2003-01-271-2/+4
| | | | | | | PR: 47568 Notes: svn path=/head/; revision=74109
* chase mcrypt lib versionYing-Chieh Liao2003-01-031-1/+1
| | | | Notes: svn path=/head/; revision=72447
* o Rollback PORTCOMMENT modifications while this feature's implementationMario Sergio Fujikawa Ferreira2002-11-102-2/+1
| | | | | | | | | | | is better studied o Turn PORTCOMMENT variable in Makefile back into pkg-comment files Approved by: kris (portmgr hat), portmgr, re (silence) Notes: svn path=/head/; revision=69808