aboutsummaryrefslogtreecommitdiff
path: root/x11-toolkits/open-motif
Commit message (Collapse)AuthorAgeFilesLines
* Update 2.3.7 --> 2.3.8Cy Schubert2017-12-062-4/+4
| | | | Notes: svn path=/head/; revision=455654
* Adjust MASTER_SITES to replace a hardcoded version number withCy Schubert2017-12-061-1/+1
| | | | | | | PORTVERSION. Notes: svn path=/head/; revision=455652
* Cleanup LIB_DEPENDS on libpngAntoine Brodin2017-12-011-1/+1
| | | | Notes: svn path=/head/; revision=455251
* Update 2.3.6 --> 2.3.7Cy Schubert2017-03-283-17/+5
| | | | Notes: svn path=/head/; revision=437094
* The output of tools like awk, date, sort, tr,... depends on the currentTijl Coosemans2017-01-181-1/+0
| | | | | | | | | | | | | | | | | | | | | locale set by the user. Add LANG=C and LC_ALL=C at the beginning of bsd.port.mk and export them so all commands are executed with the C locale. LC_ALL=C overrides all other LC_* variables. LANG is used by setlocale(3) as default value for LC_* variables, so normally it isn't used when LC_ALL is set, but there's code out there that looks at LANG directly so it's safer to set it as well. The only commands not captured by this are != assignments before any inclusion of bsd.port.*mk. Introduce USE_LOCALE=<locale> that adds LANG=<locale> and LC_ALL=<locale> to CONFIGURE_ENV and MAKE_ENV so upstream build systems can be executed with a different locale (e.g. USE_LOCALE=en_US.UTF-8). PR: 215882 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=431796
* Correct the graphics/png dependency.Cy Schubert2016-07-091-3/+3
| | | | Notes: svn path=/head/; revision=418262
* Update 2.3.5 --> 2.3.6Cy Schubert2016-06-113-35/+9
| | | | Notes: svn path=/head/; revision=416702
* Remove useless WRKSRC definitions.Mathieu Arnold2016-05-251-2/+0
| | | | | | | | | While there, correct DEV_WARNINGS when they occur. Sponsored by: Absolight Notes: svn path=/head/; revision=415839
* - Fix trailing whitespace in pkg-descrs, categories [p-x]*Dmitry Marakasov2016-05-191-1/+1
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=415500
* Remove ${PORTSDIR}/ from dependencies, categories v, w, x, y, and z.Mathieu Arnold2016-04-011-1/+1
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412351
* Update 2.3.4 --> 2.3.5.Cy Schubert2016-03-173-8/+18
| | | | | | | | | | | Take maintainership of this port. PR: 2208077 Submitted by: cy Approved by: Maintainer (Mikhail Tsatsenko <m.tsatsenko@gmail.com>) Notes: svn path=/head/; revision=411302
* Convert to USES=jpegAntoine Brodin2015-06-221-3/+2
| | | | Notes: svn path=/head/; revision=390310
* - Drop @dirrm* from and add empty directories to pkg-plistsDmitry Marakasov2015-01-271-43/+0
| | | | | | | Approved by: portmgr blanket, kwm (for gnome@ ports) Notes: svn path=/head/; revision=378019
* Bump portrevision after png updateBaptiste Daroussin2014-12-251-1/+1
| | | | Notes: svn path=/head/; revision=375598
* Change libpng15.so to libpng.so in LIB_DEPENDS to prepare the upgradeAntoine Brodin2014-12-251-1/+1
| | | | Notes: svn path=/head/; revision=375594
* Convert to USES=autoreconfBaptiste Daroussin2014-12-181-6/+2
| | | | | | | | Strip binaries Remove useless inclusion of bsd.port.options.mk Notes: svn path=/head/; revision=374899
* Convert a bunch of EXTRACT_SUFX=... into USES=tar:...Adam Weinberger2014-07-291-2/+1
| | | | | | | Approved by: portmgr (not really, but touches unstaged ports) Notes: svn path=/head/; revision=363374
* Rename all patches that contain '::' as a path separator, and useAdam Weinberger2014-07-291-0/+0
| | | | | | | '__' instead. Notes: svn path=/head/; revision=363362
* Remove two libtool fixes from Mk/Uses/libtool.mk. They don't always workTijl Coosemans2014-07-231-62/+0
| | | | | | | | | | | | | | | | | | | | | | | when an older version of a package is installed. This is the case when an executable links with installed libraries and with uninstalled libraries that link with other uninstalled libraries. For each of the directly linked libraries the executable will have an rpath (/usr/local/lib for the installed libraries and a path under WRKDIR for each of the uninstalled libraries), but not for the indirect libraries. Both ld(1) and rtld(1) search the rpath of the executable first before any rpath of libraries, so the indirectly linked libraries will be found in /usr/local/lib if they are installed instead of in WRKDIR. With this commit executables will overlink with uninstalled indirect libraries again so their location is added to the rpath of the executable. This partially reverts r358784. PR: 191611 Approved by: portmgr (bapt) Notes: svn path=/head/; revision=362656
* Add 4 new sed commands to USES=libtool. The first two apply some of theTijl Coosemans2014-06-221-2/+63
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | changes that Debian made to their libtool. The first command applies to libtool versions 1.4 and up. The second command is somewhat more elaborate but essentially it uses the sed hold space to move an "elif...fi" block down. It applies to 2.x. Together these reduce overlinking to unpatched .la files (from ports that don't have USES=libtool yet but also .la files in the work directory). The third and fourth command fix relinking. During staging libtool may relink libA when it links to another library in the work directory libB. The reason is that libA created during build phase has its runpath set to the location of libB in the work directory. This allows running an executable that links to libA from within the work directory. The relink removes this extra runpath. When libtool relinks libA it replaces "libB.la" on the linker command line with "-L${STAGEDIR}${PREFIX}/lib -lB" with the intention to link to libB in the stage directory but this -L flag isn't necessarily the first so another libB may be linked instead. The two sed commands make relink the same as a normal link. This means libtool will relink with libraries from the work directory using a path similar to "../srcB/.libs/libB.so" without -L flags. This applies to libtool 1.4 and up. Earlier versions don't seem to relink libraries. (This fixes ports like devel/apr1 so they link with freshly built libraries instead of installed libraries.) Fix all ports with missing libraries. Additionally: archivers/rpm4: USES=patchfix. databases/gdbm: INSTALL_TARGET=install-strip. devel/gnome-vfs: remove patch that doesn't change anything. devel/ois: INSTALL_TARGET=install-strip and use standard USE_AUTOTOOLS. devel/zziplib: INSTALL_TARGET=install-strip, MAKE_CMD. multimedia/mjpegtools: remove USE_AUTOTOOLS, use modern compiler on i386 instead of disabling optimisations. net/libnetdude: disable static plugins. PR: 190941 Exp-run: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=358784
* - Convert to USES=libtool.Tijl Coosemans2014-04-282-11/+11
| | | | | | | | | - Replace autogen.sh in pre-configure with normal USE_AUTOTOOLS. The script also ran ./configure so configure ran twice. - Remove --with-pic from CONFIGURE_ARGS. Not needed. Notes: svn path=/head/; revision=352538
* Remove more cruft (patching Makefile.in when automake is used)Antoine Brodin2014-02-191-4/+0
| | | | Notes: svn path=/head/; revision=345159
* - Stage supportAntoine Brodin2014-02-193-919/+713
| | | | | | | - Remove non working cruft Notes: svn path=/head/; revision=345153
* For clang, stop adding -fno-tree-ter to CFLAGS, since it will cause anDimitry Andric2014-02-021-0/+11
| | | | | | | | | error message for clang 3.4 and later. Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=342312
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-1/+1
| | | | | | | x11-toolkits) Notes: svn path=/head/; revision=327785
* - Make ports use the libc provided iconv implementation on 10-CURRENTGuido Falsi2013-09-041-1/+0
| | | | | | | | | | | | | after r254273 - Fix a bunch of ports to properly work after this - Mark converters/libiconv as IGNORE for systems with iconv in libc Reviewed by: bapt Approved by: portmgr (bapt) Discussed with: bapt, bsam (who both contributed ideas and code) Notes: svn path=/head/; revision=326307
* Add an explicit dependency on pkgconfBaptiste Daroussin2013-09-021-1/+1
| | | | Notes: svn path=/head/; revision=326011
* Fix build at 10.x after recent changes at /usr/bin/ld. Error log:Boris Samorodov2013-08-301-0/+1
| | | | | | | | | | | | | | | ---- ./../lib/Xm/.libs/libXm.so: undefined reference to `libiconv' ./../lib/Xm/.libs/libXm.so: undefined reference to `libiconv_close' ./../lib/Xm/.libs/libXm.so: undefined reference to `libiconv_open' ----- PR: ports/181579 Submitted by: bsam (me) Approved by: Mikhail Tsatsenko <m.tsatsenko@gmail.com> (maintainer) Notes: svn path=/head/; revision=325668
* Convert from USE_MOTIF to USES=motifBaptiste Daroussin2013-07-101-6/+1
| | | | | | | | | | While here: - Trim headers - Convert USE_GMAKE to USES=gmake - Remove indefinite article from comment Notes: svn path=/head/; revision=322622
* Convert the last USE_ICONV to USES=iconvBaptiste Daroussin2013-04-271-1/+1
| | | | Notes: svn path=/head/; revision=316695
* - Fix build with nondefault LOCALBASEDmitry Marakasov2012-12-031-0/+1
| | | | | | | | | | PR: 174019 Submitted by: myself Approved by: Mikhail Tsatsenko <m.tsatsenko@gmail.com> (maintainer) Feature safe: yes Notes: svn path=/head/; revision=308164
* Remove redundant conflict.Cy Schubert2012-11-061-1/+1
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=307111
* Temporarily make this port fetchable until the rename happens.Cy Schubert2012-11-061-2/+4
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=307109
* r307088 broke too much. Rename motif back to open-motif, keeping the 2.3.3 toCy Schubert2012-11-067-0/+1641
| | | | | | | | | 2.3.4 update and the LGPL 2.1 bit. Feature safe: yes Notes: svn path=/head/; revision=307104
* Update motif from 2.3.3 to 2.3.4.Cy Schubert2012-11-0613-1403/+0
| | | | | | | | | | | | | | Openmotif is now named motif (again). Motif is LGPL 2.1. PR: 173198 Submitted by: myself (cy@) Approved by: Maintainer (Mikhail Tsatsenko <m.tsatsenko@gmail.com>> Feature safe: yes Notes: svn path=/head/; revision=307088
* - fix detection of X11/extensions/XPrint.hRuslan Makhmatkhanov2012-09-131-2/+2
| | | | | | | | | | | - bump PORTREVISION PR: 170626 Submitted by: Mikhail Tsatsenko <m.tsatsenko at gmail dot com> (maintainer) Reported by: Marcin Cieslak <saper at saper dot info> Notes: svn path=/head/; revision=304183
* - update png to 1.5.10Dirk Meyer2012-06-011-1/+2
| | | | Notes: svn path=/head/; revision=297915
* Fix -fno-tree-ter configure checkPawel Pekala2011-10-261-0/+1
| | | | | | | | | PR: ports/161970 Submitted by: Nali Toja <nalitoja@gmail.com> Approved by: maintainer Notes: svn path=/head/; revision=284383
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-231-1/+1
| | | | | | | | | | | | - 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
* - Respect LOCALBASEDmitry Marakasov2011-09-101-0/+2
| | | | | | | | | PR: 160550 Submitted by: myself Approved by: Mikhail Tsatsenko <m.tsatsenko@gmail.com> (maintainer) Notes: svn path=/head/; revision=281551
* Add 'USE_CSTD= gnu89' to fix build with clangMax Brazhnikov2011-06-211-0/+1
| | | | | | | | Submitted by: rdivacky via mail Approved by: Mikhail Tsatsenko (maintainer) Notes: svn path=/head/; revision=276001
* Update open-motif to 2.3.3Max Brazhnikov2011-05-0214-300/+225
| | | | | | | | | | | | Remove needles patches (integrated upstream) Pass maintainership to submitter PR: ports/154044 Submitted by: Mikhail Tsatsenko <m.tsatsenko at gmail.com> Exp-runs by: pav Notes: svn path=/head/; revision=273473
* Sync to new bsd.autotools.mkAde Lovett2010-12-041-1/+1
| | | | Notes: svn path=/head/; revision=265663
* steve's commit bit has been taken for safekeeping, so return these portsMark Linimon2010-11-121-1/+1
| | | | | | | | | to the pool. Hat: portmgr Notes: svn path=/head/; revision=264468
* Update to reflect new homepage.Steve Price2009-08-171-1/+1
| | | | | | | Submitted by: olgeni Notes: svn path=/head/; revision=239739
* -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
* Set MAKE_JOBS_UNSAFE for this port.Steve Price2009-06-121-0/+2
| | | | | | | | PR: 135490 Submitted by: pgollucci Notes: svn path=/head/; revision=235618
* - Update download locationPav Lucistnik2009-01-301-2/+1
| | | | | | | Reported by: -fetch-original pointyhat run Notes: svn path=/head/; revision=227179
* - Update X.org ports to 7.4+ (few ports are more recent than the katamari).Florent Thoumie2009-01-231-1/+1
| | | | | | | | | | | - Bump PORTREVISION for all ports depending on libglut since the shlib version number went from 4 to 3. - Bump PORTREVISION for all ports depending on libXaw as libXaw.so.8 isn't installed anymore. - Couple of ports fixes (mostly missing xorg components added to USE_XORG). Notes: svn path=/head/; revision=226727
* Keep ports depending on the Motif libraries from crashing on 7.x.Steve Price2008-08-271-0/+1
| | | | | | | | PR: 112999, 117626 Submitted by: sgk@troutmask.apl.washington.edu Notes: svn path=/head/; revision=219344