aboutsummaryrefslogtreecommitdiff
path: root/x11-fm
Commit message (Collapse)AuthorAgeFilesLines
* 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 x11-*/ patch-xy patches to reflect the files they modify.Adam Weinberger2014-07-2910-3/+2
| | | | | | | Finally, this is the last of it. Notes: svn path=/head/; revision=363358
* - Convert multimedia/smpeg* to USES=libtool and bump dependent portsTijl Coosemans2014-07-151-2/+2
| | | | | | | - Add INSTALL_TARGET=install-strip Notes: svn path=/head/; revision=361996
* Modernize LIB_DEPENDSBaptiste Daroussin2014-07-132-5/+3
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=361720
* Support stageBaptiste Daroussin2014-07-072-15/+23
| | | | | | | | | | Pass maintainership to submitter PR: 191669 Submitted by: A.J. "Fonz" van Werven (freebsd@skysmurf.nl) Notes: svn path=/head/; revision=361048
* Canonicalize maintainer.Mark Linimon2014-07-071-1/+1
| | | | | | | Approved by: portmgr (blanket fix) Notes: svn path=/head/; revision=361036
* Remove NOPORTDOCS.Adam Weinberger2014-07-041-2/+2
| | | | Notes: svn path=/head/; revision=360684
* - Update from 1.2.0 to 1.2.1 [1]Danilo Egea Gondolfo2014-07-043-17/+9
| | | | | | | | | | | - Use options helpers [1] - Use @sample in pkg-plist PR: ports/191590 Submitted by: Horia Racoviceanu <horia@racoviceanu.com> [1] Notes: svn path=/head/; revision=360538
* First batch at resetting maintainership on ports that have not been staged andBaptiste Daroussin2014-07-021-1/+1
| | | | | | | | | without any pending PR With hat: portmgr Notes: svn path=/head/; revision=360222
* 1: Stagify.Vanilla I. Shu2014-07-014-7/+20
| | | | | | | | | 2: use options helper. Approved by: portmgr@ (blanket approval) Notes: svn path=/head/; revision=360007
* - Switch to USES= libtoolOlivier Duchateau2014-06-262-6/+8
| | | | | | | | - Add LICENSE and LICENSE_FILE - Bump PORTREVISION Notes: svn path=/head/; revision=359392
* - Switch to USES= libtoolOlivier Duchateau2014-06-262-27/+16
| | | | | | | | | - Add LICENSE* - Remove DBUS option, now dbus-glib is in LIB_DEPENDS - Bump PORTREVISION Notes: svn path=/head/; revision=359389
* - Update from 1.4.2 to 1.4.3Danilo Egea Gondolfo2014-06-233-4/+5
| | | | | | | - Take maintainership Notes: svn path=/head/; revision=358989
* - Update to 14.06.18.10Pietro Cerutti2014-06-202-3/+3
| | | | | | | | | | | | | | Changes: * Found and fixed a bug in CopyAs when source is a directory. * Found and fixed a bug in HardLnk which caused failure if the source was a directory and a simple copy if the source was a file. * Expanded the chmod command to include chown as well. Changed the window to show and allow the user to modify the mode by number, xrw... or the checkbox and to see what it is in those two modes. Extended the chown command to aftp sftp and ftp. Notes: svn path=/head/; revision=358510
* - Bump PORTREVISION. New lazarus version is availableJose Alonso Cardenas Marquez2014-06-181-3/+5
| | | | Notes: svn path=/head/; revision=358315
* - Update to 1.4.2Martin Wilke2014-06-174-56/+198
| | | | | | | PR: 191100 Notes: svn path=/head/; revision=358135
* Reset the 99 ports still listed under sylvio@John Marino2014-06-111-1/+1
| | | | | | | | | | | | | | Sylvio's last commit was 17 months ago, a full 5 months after all of his ports could have been reset per policy. Given the push to complete staging (48 ports are still unstaged, something like 70+ have already been staged by other committers) and given that PRs are automatically assigned but never addressed, it's better just to reset all the ports and PRs so that it's clear to others that these ports are free to maintain. Approved by: portmgr (implicit) Notes: svn path=/head/; revision=357526
* Support LIBS like LDFLAGS.Tijl Coosemans2014-06-111-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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
* - Update from 3.2.0 to 3.4.1Danilo Egea Gondolfo2014-06-102-4/+3
| | | | | | | | PR: ports/190844 Submitted by: mp39590@gmail.com Notes: svn path=/head/; revision=357234
* Remove indefinite articles from COMMENT where I'm maintainer.Jimmy Olgeni2014-06-081-1/+1
| | | | Notes: svn path=/head/; revision=357013
* - Switch to USES=libtoolDmitry Marakasov2014-06-051-2/+2
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=356664
* - Convert BZIP2 to USESMartin Wilke2014-06-026-12/+6
| | | | Notes: svn path=/head/; revision=356201
* - Update to 0.9.6 releaseMartin Wilke2014-05-202-5/+4
| | | | | | | | PR: 189047 Submitted by: maintainer Notes: svn path=/head/; revision=354589
* Convert x11-toolkits/unique to "USES=libtool pathfix tar:bzip2".Tijl Coosemans2014-05-132-2/+2
| | | | | | | | | | | | | | | | | | Bump PORTREVISION on all dependent ports. [1] audio/ario: USES=libtool. audio/gmpc: USES=libtool. audio/gnome-media: USES=libtool:keepla tar:bzip2. audio/xfce4-mixer: USES=libtool tar:bzip2. graphics/shotwell: Unbreak and USES=tar:xz. science/gwyddion: USES=libtool tar:bzip2. sysutils/mate-control-center: USES=libtool. x11/xfce4-clipman-plugin: USES=libtool tar:bzip2. Approved by: portmgr (implicit) [1] Notes: svn path=/head/; revision=353934
* - Switch to USE_GNOME=introspectionDmitry Marakasov2014-05-121-2/+1
| | | | | | | Approved by: maintainer timeout Notes: svn path=/head/; revision=353759
* Convert all :U to :tu and :L to :tlBaptiste Daroussin2014-05-051-1/+1
| | | | | | | | | | | | | | | | | Since FreeBSD 8.4 and FreeBSD 9.1 make(1) do support :tu and :tl as a replacement for :U and :L (which has been marked as deprecated) bmake which is the default on FreeBSD 10+ only support by default :tu/:tl a hack has been added at the time to support :U and :L to ease migration. This hack is now not necessary anymore Note that this makes the ports tree incompatible with make(1) from FreeBSD 8.3 or earlier With hat: portmgr Notes: svn path=/head/; revision=352986
* Mark BROKEN: Violates stagedir and fails to packageAntoine Brodin2014-05-031-0/+2
| | | | | | | | | | | | | | | ====>> Error: Filesystem touched during stage (files must install to ${STAGEDIR}): extra: usr/local/share/mime/packages/pbi-thumbnail-mime.xml extra: usr/local/etc/gconf/schemas/pbi-thumbnail.schemas .. ===> Building package for pbi-thumbnailer-0.9.2_5 pkg-static: lstat(/wrkdirs/usr/ports/x11-fm/pbi-thumbnailer/work/stage/usr/local/share/mime/packages/pbi-thumbnail-mime.xml): No such file or directory pkg-static: lstat(/wrkdirs/usr/ports/x11-fm/pbi-thumbnailer/work/stage/usr/local/etc/gconf/schemas/pbi-thumbnail.schemas): No such file or directory Reported by: pkg-fallout Notes: svn path=/head/; revision=352902
* Switch to USES=libtoolBaptiste Daroussin2014-04-252-13/+8
| | | | | | | Strip binaries Notes: svn path=/head/; revision=352090
* When linking a library libA with a library libB using libtool, if libB.laTijl Coosemans2014-04-232-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Support stageBaptiste Daroussin2014-04-221-10/+6
| | | | Notes: svn path=/head/; revision=351861
* Support stageBaptiste Daroussin2014-04-222-7/+3
| | | | | | | | Modernize Fix dependencies Notes: svn path=/head/; revision=351832
* Support stageBaptiste Daroussin2014-04-222-26/+34
| | | | Notes: svn path=/head/; revision=351831
* These ports are no longer used or cared for.Rusmir Dusko2014-04-212-8/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Horia Racoviceanu <horia@racoviceanu.com> wishes to maintain these ports with my help. misc/lxde-common - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com misc/xdg-menu - Change Makefile header, use my name and @FreeBSD.org email - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com - Change Desktop entry file - Add DOCS Option - Break lines around 80 characters - Change pkg-plist, remove mtree sysutils/lxinput - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com sysutils/lxtask - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com - Remove TODO from DOCS sysutils/lxterminal - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com - Change pkg-plist, add missing x11/florence - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com - Use tar:bzip2 instead of USE_BZIP2=yes and not needed desktop-file-utils - Remove not needed MAN1 from Makefile x11/libfm - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com - Use tar:xz instead of USE_XZ=yes - Change pkg-plist, remove mtree x11/lxde-meta - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com x11/lxmenu-data - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com - Change pkg-plist, remove mtree x11/lxpanel - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com - Strip libraries - Change pkg-plist, add missing x11/menu-cache - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com - USES pathfix instead of USE_GNOME gnomehack - Strip library x11-fm/pcmanfm - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com - Use tar:xz instead of USE_XZ=yes - Change pkg-plist, remove mtree, add missing x11-themes/lxde-icon-theme - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com - Use tar:bzip2 instead of USE_BZIP2=yes - Change pkg-plist, remove mtree x11-wm/lxmed - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com x11-wm/lxsession - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com - Change pkg-plist, add missing x11-wm/obapps - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com - Add DOCS Option - Change Desktop entry file x11-wm/obmenu - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com - Change Desktop entry file - Break lines around 80 characters Notes: svn path=/head/; revision=351711
* The FreeBSD x11@ and graphics team proudly presentsNiclas Zeising2014-04-166-4/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a zeising, kwm production, with help from dumbbell, bdrewery: NEW XORG ON FREEBSD 9-STABLE AND 10-STABLE This update switches over to use the new xorg stack by default on FreeBSD 9 and 10 stable, on osversions where vt(9) is available. It is still possible to use the old stack by specifying WITHOUT_NEW_XORG in /etc/make.conf . FreeBSD 8-STABLE and released versions of FreeBSD still use the old version. A package repository with binary packages for new xorg will be available soon. This patch also contains updates of libxcb and related ports, pixman, as well as some drivers and utilities. Bump portrevisions for xf86-* ports, as well as virtualbox-ose-additions due to xserver version change. Apart from these updates, the way shared libraries are handled has been changed for all xorg ports, as well as libxml2 and freetype, which means ltverhack is gone and as a consequence shared libraries have been bumped. The plan is that this change will make library bumps less likely in the future. All affected ports have had their portrevisions bumped as a consequence of this. Fix some issues where WITH_NEW_XORG weren't detected properly on CURRENT. Update instructions, hardware support, and more notes can be found on https://wiki.freebsd.org/Graphics Thanks to: all testers, bdrewery and the FreeBSD x11@ team exp-run by: bdrewery [1] PR: ports/187602 [1] Approved by: portmgr (bdrewery), core (jhb) Notes: svn path=/head/; revision=351411
* - Update to 14.02.22.11Pietro Cerutti2014-04-154-31/+60
| | | | Notes: svn path=/head/; revision=351317
* Remove buggy dependency on gdkpixbufBaptiste Daroussin2014-04-111-1/+2
| | | | Notes: svn path=/head/; revision=351024
* Remove expired ports:Rene Ladan2014-04-1110-579/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2014-03-10 www/p5-CGI-modules: No more public distfiles 2014-04-10 www/p5-WWW-Link: Depends on expired www/p5-CGI-modules 2014-03-10 www/sbox-dtc: No more public distfiles 2014-04-10 sysutils/dtc: Depends on expired www/sbox-dtc 2014-03-10 textproc/glimpse: No more public distfiles 2014-04-10 ftp/ftplocate: Depends on expired textproc/glimpse 2014-04-10 misc/tkman: Depends on expired textproc/glimpse 2014-04-09 devel/asl: Unmaintained since 1997 2014-04-09 net/pcnfsd: Unmaintained since 1997 2014-04-10 cad/chipmunk: Unmaintained since 1999 2014-04-10 graphics/comix: Insists on installing in /usr/local, and uses nautilus2 which is deprecated. 2014-04-10 www/mambo: Broken for more than 6 months 2014-04-10 devel/lua-rds-parser: Broken for more than 6 months 2014-04-10 editors/the: Unmaintained since 1999 2014-04-10 japanese/exmh2: Unmaintained since 1999 2014-04-10 net/freewais-sf: Unmaintained since 1999 2014-04-10 editors/elvis: Unmaintained since 1999 2014-04-10 japanese/sed: Unmaintained since 1999 2014-04-10 x11-fm/xfm: Unmaintained since 1999 2014-04-10 print/rtf2latex: Unmaintained since 1999 2014-04-10 graphics/fbm: Unmaintained since 1999 2014-04-11 devel/p5-Penguin-Easy: Unmaintained since 2000 2014-04-11 emulators/prodosemu: Unmaintained since 2000 2014-04-11 security/gtkportscan: Unmaintained since 2000 2014-04-11 graphics/xmfract: Unmaintained since 2000 2014-04-11 databases/xmbase-grok: Unmaintained since 2000 2014-04-11 emulators/svr4_base: Unmaintained since 2000 2014-04-11 math/freefem: Unmaintained since 2000 2014-04-11 graphics/tiff2png: Unmaintained since 2000 2014-04-11 math/wingz: Unmaintained since 2000 2014-04-11 lang/STk: Unmaintained since 2000 2014-04-11 graphics/kdc2tiff: Unmaintained since 2000 2014-04-11 math/xlispstat: Unmaintained since 2000 2014-04-11 databases/typhoon: Unmaintained since 2000 2014-04-11 graphics/dc20ctrl: Unmaintained since 2000 2014-04-11 www/fhttpd: Unmaintained since 2000 2014-04-11 graphics/xmorph: Unmaintained since 2000 2014-04-11 editors/axe: Unmaintained since 2000 2014-04-11 www/cgic: Unmaintained since 2000 Notes: svn path=/head/; revision=350942
* 2014-04-10 deskutils/nautilus-locked-folder: nautilus will be updated to the ↵Baptiste Daroussin2014-04-116-72/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | 3.x version which is not compatible with 2.x 2014-04-10 www/screem: gnome-menus 2.x will be updated in the GNOME 3 import 2014-04-10 deskutils/nautilus-actions: nautilus will be updated to the 3.x version which is not compatible with 2.x 2014-04-10 deskutils/nautilus-sendto: nautilus will be updated to the 3.x version which is not compatible with 2.x 2014-04-10 deskutils/nautilus-open-terminal: nautilus will be updated to the 3.x version which is not compatible with 2.x 2014-04-10 sysutils/eiciel: nautilus will be updated to the 3.x version which is not compatible with 2.x 2014-04-10 sysutils/nautilus-cd-burner: nautilus will be updated to the 3.x version which is not compatible with 2.x 2014-04-10 x11-fm/py-nautilus: nautilus will be updated to the 3.x version which is not compatible with 2.x 2014-04-10 sysutils/sensors-applet: gnome-panel 2.x will be updated in the GNOME 3 import 2014-04-10 net/link-monitor-applet: gnome-panel 2.x will be updated in the GNOME 3 import 2014-04-10 net/netspeed_applet: gnome-panel 2.x will be updated in the GNOME 3 import 2014-04-10 net/remmina-applet: gnome-panel 2.x will be updated in the GNOME 3 import 2014-04-10 misc/uf-view: gnome-desktop 2.x will be updated in the GNOME 3 import 2014-04-10 textproc/uim-gnome: gnome-panel 2.x will be updated in the GNOME 3 import 2014-04-10 audio/istream: gnome-panel will be updated to the 3.x version which is not compatible with 2.x 2014-04-10 mail/contact-lookup-applet: gnome-panel will be updated to the 3.x version which is not compatible with 2.x 2014-04-10 security/tuntun: gnome-panel 2.x will be updated in the GNOME 3 import 2014-04-10 misc/quick-lounge-applet: gnome-panel 2.x will be updated in the GNOME 3 import 2014-04-10 sysutils/bubblemon2: gnome-panel 2.x will be updated in the GNOME 3 import Notes: svn path=/head/; revision=350933
* Support stageBaptiste Daroussin2014-04-112-15/+16
| | | | | | | Modernize Notes: svn path=/head/; revision=350927
* Support stageBaptiste Daroussin2014-04-101-5/+3
| | | | Notes: svn path=/head/; revision=350844
* Support stageBaptiste Daroussin2014-04-101-9/+8
| | | | Notes: svn path=/head/; revision=350843
* Support stageBaptiste Daroussin2014-04-102-9/+7
| | | | Notes: svn path=/head/; revision=350842
* Support stageBaptiste Daroussin2014-04-102-22/+10
| | | | Notes: svn path=/head/; revision=350840
* - Update to 0.5.9. Changelog:Jose Alonso Cardenas Marquez2014-03-262-6/+6
| | | | | | | | | | | http://doublecmd.sourceforge.net/mantisbt/changelog_page.php?version_id=28 - Convert to new LIB_DEPENDS syntax PR: ports/187908 Submitted by: maintainer Notes: svn path=/head/; revision=349259
* - Convert USE_XZ/BZIP2/GMAKE to USESMartin Wilke2014-03-151-2/+1
| | | | Notes: svn path=/head/; revision=348343
* nautilus will be updated to the 3.x version when GNOME 3 will merged.Koop Mast2014-03-111-0/+3
| | | | | | | Deprecate the ports that are incompatible with the new 3.x version. Notes: svn path=/head/; revision=347907
* Update the default version of GCC used in the Ports Collection fromGerald Pfeifer2014-03-101-0/+1
| | | | | | | | | | | | | | GCC 4.6.4 to GCC 4.7.3. This entails updating the lang/gcc port as well as changing the default in Mk/bsd.default-versions.mk. Part II, Bump PORTREVISIONs. PR: 182136 Supported by: Christoph Moench-Tegeder <cmt@burggraben.net> (fixing many ports) Tested by: bdrewery (two -exp runs) Notes: svn path=/head/; revision=347809
* Remove expired port:Rene Ladan2014-03-105-197/+0
| | | | | | | 2014-03-10 x11-fm/dfm: No more public distfiles Notes: svn path=/head/; revision=347749
* Deprecate a few unmaintained ports (leaf ports, non staged and unmaintained ↵Antoine Brodin2014-03-081-0/+2
| | | | | | | since more than 12 years) Notes: svn path=/head/; revision=347539
* Replace USE_GCC=4.6+ by USE_GCC=yes.Gerald Pfeifer2014-03-031-1/+1
| | | | | | | Approved by: portmgr (mat) Notes: svn path=/head/; revision=346975