1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00
Commit Graph

14 Commits

Author SHA1 Message Date
Martin Wilke
61d8acdb49 - Remove emacs mode, -*- mode: ...; -*- [1]
- Comments for BUILD_ and RUN_DEPENDS fail to mention alternate means to specify dependencie [2]
- Fix make reinstall [3]
- Trivial comment change for PORTDATA [4]

PR:		151954 [1]
		161314 [2]
		167085 [3]
		167465 [4]
Submitted by:	Anonymous <swell.k@gmail.com> [1]
		dougb@ and Chris Rees <utisoft@gmail.com> [2]
		Garrett Cooper <yanegomi@gmail.com> [3]
		"Bryan Drewery" <bryan@shatow.net> [4]
Tested via:	phw
2012-05-23 08:17:49 +00:00
Raphael Kubo da Costa
97931d0e38 Remove CMAKE_USE_PTHREAD.
This has been in area51 since April, and discussions with makc
indicate this was only needed when we supported FreeBSD < 7.

Approved by:	avilla (mentor), portmgr (tabthorpe)
Feature safe:	yes
2011-11-10 19:50:26 +00:00
Alberto Villa
ccb1023f9c - Distinguish STRIP from WITH_DEBUG.
PR:		156543
Submitted by:	Pan Tsu <inyaoo@gmail.com>
2011-10-16 22:51:26 +00:00
Dmitry Marakasov
6f6fbe4bdf - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)
- 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
2011-09-23 22:26:39 +00:00
Raphael Kubo da Costa
44cfcd60fb - Remove the patch that was clearing default build flags for build
profiles, so that CMake can be used outside of ports.
- Bump CMake PORTREVISION.
- Pass default build flags (at least I hope) via bsd.cmake.mk.

PR:             159276
Submitted by:   Igor Soumenkov <2igosha@gmail.com>
Approved by:	avilla (mentor)
2011-09-11 02:04:09 +00:00
Max Brazhnikov
6fe3038318 - Set CMAKE_BUILD_TYPE to Release by default (and to Debug if WITH_DEBUG
is defined)
- Pass CMAKE_BUILD_TYPE to PLIST_SUB
- Reformat description
2011-04-10 08:40:13 +00:00
Max Brazhnikov
ec729db098 Fix typo in comment 2010-03-31 18:07:05 +00:00
Pietro Cerutti
ad1a551465 - Add a CMAKE_OUTSOURCE variable that, when set, causes the cmake framework
to use a directory other than ${WRKSRC} for generated files (out-of-source build).
  See http://www.cmake.org/Wiki/CMake_FAQ#What_is_an_.22out-of-source.22_build.3F

Approved by:	kde@, portmgr@
Feature safe:	yes
2010-03-03 07:48:30 +00:00
Thomas Abthorpe
0f43e19098 The FreeBSD KDE is please to announce the release of KDE 4.3.1,
a bugfix, translation and maintenance update. Release note can be found
at http://kde.org/announcements/announce-4.3.1.php

We would like to thank all our contributors and testers. My personal
thanks to miwi and makc for coaching me through my first KDE commit.
2009-09-01 22:19:47 +00:00
Max Brazhnikov
4d55666226 Update devel/cmake to 2.6.3.
- Set INSTALL_TARGET for cmake based ports to install/strip. This solves
  problem of installing non-stripped binaries (noticed by delphij for KDE4 ports)
- Fix linking to -lpthread for cmake based ports (KDE4 ports are affected mostly)
2009-03-24 19:11:23 +00:00
Martin Wilke
ef1b3d1071 The KDE FreeBSD team is proud to announce the release of KDE 4.2.0
for FreeBSD. The official KDE 4.2.0 (Codename: "The Answer") release
notes can be found at:
http://kde.org/announcements/4.2/index.php.

New supported languages include Arabic, Icelandic, Basque,
Hebrew, Romanian, Tajik and several Indian languages (Bengali India,
Gujarati, Kannada, Maithili, Marathi) indicating a rise in popularity in
this part of Asia.

New ports for KDE 4.2.0:
arabic/kde4-l10n		Arabic
hebrew/kde4-l10n		Hebrew
misc/kde4-l10n-bn_IN		Bengali (India)
misc/kde4-l10n-eu		Basque
misc/kde4-l10n-gu		Gujarati
misc/kde4-l10n-is		Icelandic
misc/kde4-l10n-kn		Kannada
misc/kde4-l10n-mai		Maithili
misc/kde4-l10n-mr		Marathi
misc/kde4-l10n-ro		Romanian
misc/kde4-l10n-tg		Tajik
math/eigen2			Lightweight library for vector and matrix math
graphics/kipi-plugins-kde4	KDE4 kipi graphics plugins
sysutils/policykit-kde		PolicyKit manager for KDE

Unfortunately FreeBSD 6.4 support is dropped.

We'd like to say thanks for feedback and help to:
	Matt Tosto, Kris Moore, stickibit, David Johnson, Markus Brueffer,
	David Naylor, Thomas Schlesinger, Warren Liddell, Thomas Abthorpe,
	Diego Depaoli, Mats Andreassen, portmgr for exp-run and repocopies.
2009-02-08 20:23:45 +00:00
Martin Wilke
18506f2253 - Update to 2.6.2
- Remove CMAKE_BUILD_TYPE [1]

CMAKE_BUILD_TYPE only affects compiler FLAGS and linking with specific
library versions  (debug |optimized | general).

In our case external libraries reside in other ports and only install
one version (no separate debug/optimized). Also, the ports system
provide correct compiler flags (-g and no optimizations when WITH_DEBUG
is used). Thus, cmake buildtypes only add extra compiler flags. Ports will
be built correctly both by default and for WITH_DEBUG case.

- Also, change WRKSRC to CONFIGURE_WRKSRC. (use CONFIGURE_WRKSRC for configure
  target instead of WRKSRC)

PR:		126507 [1]
Submitted by:	amdmi3@ [1]
Tested with:	exp-run
Thanks to:	pav/amdmi3
2009-01-30 19:25:22 +00:00
Martin Wilke
927ebf7e81 - Update to 2.6.1
Changelog:
	http://www.cmake.org/pipermail/cmake/2008-August/023188.html

bsd.cmake.mk
- Use VERBOSE mode when BATCH is defined to get more informative logs
  on pointyhat/tinderbox
2008-08-10 15:43:46 +00:00
Martin Wilke
18dd6954f3 - Add common code to support for cmake based ports.
- Update devel/cmake to 2.6.0 (also fix ports/123092)
- Use the new CMAKE build framework in all ports using cmake

Approved by:	portmgr (pav)
2008-05-27 22:12:09 +00:00