aboutsummaryrefslogtreecommitdiff
path: root/converters/recode
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* converters/recode: fix info file, add LICENCE, quiet portlint/portclippyMatthias Andree2020-09-041-4/+12
| | | | | | | | | | | | | | | | | | | | | | This has been broken for almost 10 months, and again 3 months of silence from the maintainer, so let me step in to just fix it for the nonce. - Add LICENSE=GPLv2+ - Add USES=makeinfo to fix .info file in clean-room builds (poudriere) [1] - Reshuffle a few lines to please portclippy and portlint - Bump PORTREVISION to flush out the broken packages and force rebuild - Add DISABLED example to strip library in order to also please stage-qa with DEVELOPER=yes (would require maintainer approval), in post-install (just remove @: and the comment line to enable). PR: 241879 [1] Submitted by: Victor Sudakov <vas@sibptus.ru> [1] Approved by: portmgr@ (blanket, see MFH below) MFH: 2020Q3 (blanket LICENSE, dependencies to unbreak, modernization) Notes: svn path=/head/; revision=547547
* Remove non-ascii character to fix build on recent -current.Dmitry Sivachenko2019-11-211-0/+11
| | | | | | | | | | For the long term, port should be updated to newer version. PR: 241903 PR: 241969 Notes: svn path=/head/; revision=518089
* Install texinfo files (GNU info) into ${PREFIX}/share/infoBaptiste Daroussin2018-11-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | After a discussion on the mailing list on moving manpages to ${PREFIX}/share/man for consistency with base where it is installed in usr/share/man, it appeared the same should happen to GNU info files which were installed under share in base and not in ports. Now texinfo is not in base on any of the supported version of FreeBSD it is possible to proceed to this move and it is easier to do than the manpage change. Other benefit than consistency are less patching: all build tools but cmake are expecting info files to be under share/info and cmake (patched here) was having an exception for BSD so the patch makes FreeBSD case less specific for them Bump revision of all impacted ports PR: 232907 exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D17816 Notes: svn path=/head/; revision=484628
* Remove libiconv.so.3 compatibility link that was added in r374303 toTijl Coosemans2016-12-081-1/+1
| | | | | | | | prevent massive PORTREVISION bumps. Bump dependent ports that have not been bumped since. Notes: svn path=/head/; revision=428150
* ${RM} already has -f.Mathieu Arnold2016-10-211-1/+1
| | | | | | | | | | PR: 213570 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight Notes: svn path=/head/; revision=424411
* Remove $FreeBSD$ from patches files in categories a-j.Mathieu Arnold2015-05-221-3/+0
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=387021
* Update ports in the [bcd]* categories to not use GH_COMMIT.Mathieu Arnold2015-05-062-4/+3
| | | | | | | | | | With minor cleanups to make things simpler. With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=385521
* - Drop .la files, no dependees require themDmitry Marakasov2014-08-262-3/+2
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=366180
* Rename all patches that contain '::' as a path separator, and useAdam Weinberger2014-07-294-0/+0
| | | | | | | '__' instead. Notes: svn path=/head/; revision=363362
* Change mastersite to github.Dmitry Sivachenko2014-06-041-2/+2
| | | | | | | | | tarball did not change. PR: 190444 Notes: svn path=/head/; revision=356476
* Change mastersite to github.Dmitry Sivachenko2014-06-041-2/+6
| | | | | | | PR: 190444 Notes: svn path=/head/; revision=356475
* When linking a library libA with a library libB using libtool, if libB.laTijl Coosemans2014-04-231-2/+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 USE_AUTOTOOLS=libtool to USES=libtool.Tijl Coosemans2014-02-185-137/+19
| | | | | | | | | | | | | | | | | | | | | | | - Replace PERL with REINPLACE_CMD in post-patch. - Replace "iconv.h" with "${ICONV_PREFIX}/include/iconv.h" so /usr/include/iconv.h is included on FreeBSD 10 even when converters/iconv is installed. The port uses iconvctl(3) which isn't declared in /usr/local/include/iconv.h with -DLIBICONV_PLUG. - files/patch-lib-error.c: Implement program_name using __progname. - files/patch-libiconv-Makefile.in: deleted because the libiconv directory isn't built. - files/patch-src-Makefile.in: + Remove chunks that aren't needed. + Remove ../lib/libreco.a from LIBS so CFLAGS+=-fPIC can be removed from the port Makefile. Instead, just copy lib/error.c (the only file needed from libreco.a) to src/error.c and compile it into librecode.so. PR: 186637 Approved by: demon (maintainer) Notes: svn path=/head/; revision=344949
* Support stageBaptiste Daroussin2014-01-092-8/+2
| | | | Notes: svn path=/head/; revision=339229
* - Add explicit LDFLAGS for iconvGuido Falsi2013-09-241-1/+1
| | | | | | | | Submitted by: marino Approved by: portmgr (bapt) Notes: svn path=/head/; revision=328213
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | converters) Notes: svn path=/head/; revision=327715
* - Convert to new Uses/perl5.mk frameworkAndrej Zverev2013-07-311-2/+2
| | | | | | | | | | | - Resolve issues with implicit lang/perl in extract and patch dependencies - Trim Makefile header Reviewed by: bapt@ (exp-run) Approved by: bapt@ (portmrg@) Notes: svn path=/head/; revision=324007
* Add a patch to allow building with gcc-4.7 and 4.8.Mikhail Teterin2013-05-131-0/+9
| | | | | | | Approved by: maintainer Notes: svn path=/head/; revision=318132
* - Convert USE_ICONV=yes to USES=iconvMarcus von Appen2013-04-271-2/+1
| | | | | | | | | - Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig while here Reviewed by: bapt, kwm Notes: svn path=/head/; revision=316654
* - Convert USE_GETTEXT to USES (part 3)Alex Kozlov2013-04-241-1/+1
| | | | | | | Approved by: portmgr (bapt) Notes: svn path=/head/; revision=316464
* Remove extra lines.Dmitry Sivachenko2013-03-262-4/+0
| | | | Notes: svn path=/head/; revision=315290
* Do not compile and use bundled libiconv, the converters/iconv from ports.Dmitry Sivachenko2013-03-263-12/+118
| | | | | | | | | PR: 177321 Submitted by: William Grzybowski <william88@gmail.com> With help and suggestions from: bapt Notes: svn path=/head/; revision=315288
* - 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
* -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
* 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-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
* Conversion to a single libtool environment.Ade Lovett2006-02-232-2/+3
| | | | | | | Approved by: portmgr (kris) Notes: svn path=/head/; revision=156749
* SHA256ifyEdwin Groothuis2006-01-221-0/+1
| | | | | | | Approved by: krion@ Notes: svn path=/head/; revision=154141
* Plug memory leak in librecode.Dmitry Sivachenko2005-12-083-1/+52
| | | | | | | | | | Bump PORTREVISION. PR: 89934 Submitted by: Sergey Prikhodko <sergey@network-asp.biz> Notes: svn path=/head/; revision=150652
* 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
* Apply a big libtool patch to allow porters to use the libtool installed byJoe Marcus Clarke2004-07-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the libtoolX ports instead of the one included with each port. Ports that set USE_LIBTOOL_VER=X will now use the ports version of libtool instead of the included version. To restore previous behavior, use the new macro, USE_INC_LIBTOOL_VER. Both macros accept the same argument: a libtool version. For example, to use the ports version of libtool-1.5, add the following to your Makefile: USE_LIBTOOL_VER= 15 To use the included version of libtool with extra hacks provided by libtool-1.5, add the following to your Makefile: USE_INC_LIBTOOL_VER= 15 With this change, ports that had to add additional libtool hacks to prevent .la files from being installed or to fix certain threading issues can now delete those hacks (after appropriate testing, of course). PR: 63944 Based on work by:eik and marcus Approved by: ade (autotools maintainer) Tested by: kris on pointyhat Bound to be hidden problems: You bet Notes: svn path=/head/; revision=113296
* Add size data, approved by maintainers.Trevor Johnson2004-03-181-0/+1
| | | | Notes: svn path=/head/; revision=104520
* Whoa there, boy, that's a mighty big commit y'all have there...Ade Lovett2004-03-141-1/+1
| | | | | | | | | | | | | | | | | | Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed. Notes: svn path=/head/; revision=103963
* - Fix build on AMD64Kirill Ponomarev2004-02-081-0/+1
| | | | | | | Approved by: maintainer informed Notes: svn path=/head/; revision=100425
* 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
* Now gettext 0.12.1 is gettext-old.Trevor Johnson2004-01-231-1/+1
| | | | Notes: svn path=/head/; revision=98909
* USE_REINPLACE need be defined only when REINPLACE_CMD is used.Trevor Johnson2003-11-171-1/+0
| | | | Notes: svn path=/head/; revision=94172
* 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
* Utilize INFO variable.Dmitry Sivachenko2003-08-132-10/+2
| | | | Notes: svn path=/head/; revision=86872
* Fix compilation on alpha.Martin Blapp2003-04-161-7/+5
| | | | | | | | Submitted by: Christian Weisgerber <naddy@freebsd.org> PR: 51066 Notes: svn path=/head/; revision=79106
* Bump the port revision.Martin Blapp2003-03-231-1/+1
| | | | | | | Pointed out by: kris Notes: svn path=/head/; revision=77237
* Fix unresolved symbols in the recode port. Without thisMartin Blapp2003-03-232-1/+43
| | | | | | | fix the libs cannot be used with php. Notes: svn path=/head/; revision=77231
* Clear moonlight beckons.Ade Lovett2003-03-072-1/+1
| | | | | | | | | | Requiem mors pacem pkg-comment, And be calm ports tree. E Nomini Patri, E Fili, E Spiritu Sancti. Notes: svn path=/head/; revision=77045
* USE_PERL is needed for the post-po-file target.Edwin Groothuis2002-11-051-1/+2
| | | | | | | Submitted by: marius@alchemy.franken.de Notes: svn path=/head/; revision=69487
* Half of these ones missed yesterday while converting to USE_REINPLACE.Edwin Groothuis2002-11-041-2/+3
| | | | | | | | | The other half needs perl to build. Noticed on bento and others (full mailbox :-) Notes: svn path=/head/; revision=69475