1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00
Commit Graph

8424 Commits

Author SHA1 Message Date
Guido Falsi
05fdbf4394 - Update to 5.0
- Simplify Makefile

PR:		197426
Submitted by:	tkato432@yahoo.com
2015-03-03 20:28:56 +00:00
Baptiste Daroussin
9ae3fa335d Remove Author from pkg-descr and white space fixes 2015-03-02 23:26:42 +00:00
Sunpoet Po-Chuan Hsieh
386d128ff0 - Update to 7.4.648
Changes:	https://code.google.com/p/vim/source/list
2015-03-02 20:11:27 +00:00
Max Brazhnikov
23bb6e4584 Fix DESKTOP_ENTRIES:
- Icon field must be either absolute path or icon name if installation follows Icon Theme Specification
- Remove invalid categories
- StartupNotify field must be literally false/true, not ${FALSE}/${TRUE}
2015-02-27 16:30:40 +00:00
Don Lewis
5e342df15e Fix build breakage when libreoffice is installed.
The problem is that libreoffice installs its own copy of unopkg in
${PREFIX}/bin and that the openoffice build attempts to use this copy
of unopkg instead of the openoffice version which is in subdirectory
of ${WRKSRC}.

The reason is that the openoffice build expects to find its own copy
of unopkg by depending on having "." in its $PATH, but its $PATH has
${PREFIX}/bin before ".". Openoffice attempts to do the right thing
by first constructing $PATH by prepending "." and a small number of
other directories where it stashes executables used during the build
to the value of $PATH that it inherits from the environment. Things
go wrong when it tries to add the paths for ${CC}, perl, and java
to $PATH. If $PATH has /usr/bin before ${PREFIX}/bin, the openoffice
build finds the perl symlink in /usr/bin before it finds perl in
${PREFIX}/bin, so it prepends ${PREFIX}/bin to $PATH to try to ensure
that the correct version of perl will be found first. This moves
${PREFIX}/bin earlier in $PATH than ".".

The operation to put the path to ${CC} in $PATH has a different
problem. It uses the variable COMPATH for this, which is the dirname
of the patch to $CC, with the trailing /bin stripped off. That
results in /usr/local being added to $PATH, which is nonsensical,
though mostly harmless.

There are three fixes here:

* Always keep the parts of $PATH for the directories under ${WRKSRC},
  including "." at the beginning of the path.

* Ignore symlinks to executables when deciding to prepend a directory
  to the path.

* Append "/bin" when using COMPATH so that the result points to the
  directory where ${CC} actually resides.  There is actually another
  variable CC_PATH, but it has an extra trailing "/", so it doesn't
  match ${PREFIX}/bin.

PR:		195967
Differential Revision:	https://reviews.freebsd.org/D1957
Approved by:	mat (mentor)
2015-02-25 06:01:58 +00:00
Don Lewis
6db049bd90 Undo an unintended Makefile change that slipped in.
Approved by:	mat (mentor)
2015-02-25 05:58:56 +00:00
Don Lewis
a26ed809b6 Fix build breakage when libreoffice is installed.
The problem is that libreoffice installs its own copy of unopkg in
${PREFIX}/bin and that the openoffice build attempts to use this copy
of unopkg instead of the openoffice version which is in subdirectory
of ${WRKSRC}.

The reason is that the openoffice build expects to find its own copy
of unopkg by depending on having "." in its $PATH, but its $PATH has
${PREFIX}/bin before ".". Openoffice attempts to do the right thing
by first constructing $PATH by prepending "." and a small number of
other directories where it stashes executables used during the build
to the value of $PATH that it inherits from the environment. Things
go wrong when it tries to add the paths for ${CC}, perl, and java
to $PATH. If $PATH has /usr/bin before ${PREFIX}/bin, the openoffice
build finds the perl symlink in /usr/bin before it finds perl in
${PREFIX}/bin, so it prepends ${PREFIX}/bin to $PATH to try to ensure
that the correct version of perl will be found first. This moves
${PREFIX}/bin earlier in $PATH than ".".

The operation to put the path to ${CC} in $PATH has a different
problem. It uses the variable COMPATH for this, which is the dirname
of the patch to $CC, with the trailing /bin stripped off. That
results in /usr/local being added to $PATH, which is nonsensical,
though mostly harmless.

There are three fixes here:

* Always keep the parts of $PATH for the directories under ${WRKSRC},
  including "." at the beginning of the path.

* Ignore symlinks to executables when deciding to prepend a directory
  to the path.

* Append "/bin" when using COMPATH so that the result points to the
  directory where ${CC} actually resides.  There is actually another
  variable CC_PATH, but it has an extra trailing "/", so it doesn't
  match ${PREFIX}/bin.

Differential Revision:	https://reviews.freebsd.org/D1958
Reviewed by:	pfg
Approved by:	mat (mentor)
2015-02-25 05:55:10 +00:00
Danilo Egea Gondolfo
13fcb8347f - Update to 40.0.0 2015-02-23 14:14:29 +00:00
Jung-uk Kim
a9ba86c4c8 - Update to 4.3.6.
- Enable GIO when GTK2 or GTK3 is enabled. [1]

Submitted by:	tijl [1]
2015-02-20 20:26:23 +00:00
Jason Helfman
5266f565a0 - attach gplv2 license 2015-02-19 23:02:58 +00:00
Sunpoet Po-Chuan Hsieh
8b4bf35807 - Update to 7.4.640
Changes:	https://code.google.com/p/vim/source/list
2015-02-19 20:49:01 +00:00
Max Brazhnikov
b22224f636 - Remove deprecated USE_KDE4=kdehier
- while here, remove any reference to KDE in deskutils/charmtimetracker (Qt-only app)
  and supposedly fix build of graphics/gnash with KDE4 option
2015-02-19 18:19:28 +00:00
Don Lewis
e2ec3380c4 Switch back to USE_GCC=yes.
Work around this bug <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65009>
in g++49 -Os optimzation by using -O0 optimization if we are compiling
with g++49.

Differential Revision:	https://reviews.freebsd.org/D1607
Reviewed by:	pfg
Approved by:	mat (mentor)
2015-02-17 01:26:17 +00:00
Don Lewis
830f77d3d4 Switch back to USE_GCC=yes.
Work around this bug <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65009>
in g++49 -Os optimzation by using -O0 optimization if we are compiling
with g++49.

Differential Revision:	https://reviews.freebsd.org/D1792
Approved by:	mat (mentor)
2015-02-15 22:30:45 +00:00
Brad Davis
c31c9023ec math/coinmp: Update to 1.8.0
PR:		197554
Submitted by:	Carlos Jacobo Puga Medina <cpm@fbsd.es> (maintainer)
Approved by:	zi
2015-02-13 01:01:35 +00:00
Max Brazhnikov
bd4ce09326 editors/texmaker:
- Update to 4.4.1
- Add explicit PORTREVISION, hopefully people won't mistakenly bump PORTEPOCH anymore
2015-02-10 12:16:23 +00:00
Pawel Pekala
871ce42d4a - Update to version 0.9.4
- Submitter is new maintainer

PR:		197180
Submitted by:	chris@bsdjunk.com
2015-02-09 19:04:13 +00:00
Kurt Jaeger
9d52570074 editors/sublime3: change the path in the .desktop from absolute to relative
Submitted by:	jbeich
2015-02-08 20:40:42 +00:00
Kurt Jaeger
fd7d0fae4e editors/sublime3: patch .desktop file and add check for /dev/shm link
PR:		197381
Submitted by:	miguelmclara@gmail.com (maintainer)
2015-02-08 18:52:47 +00:00
Ashish SHUKLA
6f3324e98e - Update to git snapshot 5c9ad35f
- Add git commit id to PORTVERSION as upstream has switched to git
2015-02-07 20:03:01 +00:00
John Marino
7a7391aa50 editors/deforaos-editor: Upgrade version 0.2.1 => 0.3.0
PR:		152590
Submitted by:	maintainer (Olivier Cochard)
2015-02-06 15:03:38 +00:00
Danilo Egea Gondolfo
ccd9317c61 - Update to 5.2.0 2015-02-06 12:21:12 +00:00
Marcus von Appen
b6acb03961 - Update to version 2.1.0 2015-02-04 18:34:01 +00:00
Koop Mast
563f73ccfe Update poppler to 0.30.0 [1].
Make sure we use openjpeg1 in poppler, while openjpeg2 support
was added there still bugs in openjpeg2 that need to be fixed.
Add patches to inkscape for API changes in poppler 0.29.0 [2].

PR:		196599 [1]
Submitted by:	olivierd@ [1]
Exp-run by:	antoine@
Obtained from:	upstream [2]
2015-02-03 12:28:23 +00:00
Hiroki Sato
f534b6cf0a - Use fboundp instead of boundp to check binding of
deactivate-input-method.

- Remove an extra flag for test(1) in Makefile.in.

- Use with-current-buffer instead of a save-excursion + set-buffer pair.

- Fix (fboundp finalize) in egg/wnn.el and egg/canna.el.

- Remove HAS_JISX0213 check.

- Nuke *.el files from plist.
2015-02-01 16:45:59 +00:00
Hiroki Sato
47129a3d1c - Fix a bug that deactivate-input-method was not called in
(egg-exit-from-minibuffer).

- Remove an unnecessary overriding-local-map call in
  (menudiag-select-internal).

- Regenerate patch files.
2015-01-31 11:32:42 +00:00
Hiroki Sato
bce319e636 - Call override-local-map to set menudiag minibuffer keymap securely.
This fixes "Text is read-only" error when a number is directly entered
  to select an entry. [*]

- Deactivate input method when opening minibuffer for consistency.

Reported by:	ARAI Shun-ichi [*]
2015-01-29 09:38:37 +00:00
Hiroki Sato
12e15d364f - Fix egg-sim "invalid code(s)" issue[*].
- Reword pkg-descr.

Reported by:	ARAI Shun-ichi [*]
2015-01-29 04:59:32 +00:00
Sunpoet Po-Chuan Hsieh
8db5803e71 - Update to 7.4.591
Changes:	https://code.google.com/p/vim/source/list
2015-01-27 11:27:10 +00:00
Dmitry Marakasov
72baf4cd71 - Update to 3.5.3
PR:		196952
Submitted by:	cyberbotx@cyberbotx.com (maintainer)
2015-01-26 19:55:34 +00:00
Thomas Zander
c51cd3516f Update to upstream version 0.5.2
PR:		196963
Submitted by:	vmagerya@gmail.com (maintainer)
2015-01-25 09:47:55 +00:00
Mikhail Teterin
6a7bd910aa Add a patch to relax requirements for matching font-names available
in the editor's menu. The menu isn't changeable through the interface
nor through the config-files (nor even Xresources).

By allowing the templates to be used, we let the users to, at least,
control the actual fonts in use by manipulating the font-path.

Bump PORTREVISION.
2015-01-24 18:43:27 +00:00
Antoine Brodin
728929b709 Switch ports depending on docbook* through a directory name to a package name,
as a directory name can't be attributed to a package
2015-01-23 22:50:49 +00:00
Antoine Brodin
4f4e8c52c6 Remove explicit dependency on javavmwrapper for ports that USE_JAVA 2015-01-23 16:03:57 +00:00
Don Lewis
b6397e0f73 Unbreak fetch.
Differential Revision:	https://reviews.freebsd.org/D1578
Reviewed by:	pfg
Approved by:	mat (mentor)
2015-01-21 22:57:34 +00:00
Antoine Brodin
087f2b567b Fix duplicate pkgnames 2015-01-21 19:50:32 +00:00
Don Lewis
1bf88ee8d8 Update to SVN revision 1652526.
Resynchronize to openoffice-4 including:

  * portlint fixes

  * fix all but one stage-qa warning

  * add source makefile patch to unbreak --with-system-jpeg

  * add the --with-system-hyphen, --with-system-nss, --with-system-jpeg,
    and --with-system-mythes configure options

  * remove the --with-system-saxon option to allow coexistance with
    math/scilab

  * add all distfiles that were previously downloaded during build
    to the ext_sources distfile, and add --disable-fetch-external

  * make the graphics/png dependency explicit

  * change from USE_GCC=yes to USE_GCC=4.8 because of a compile error with
    gcc 4.9

  * remove SVNREVISION from the ext_sources tarball name and
    tweak how it is extracted to allow it to be shared by
    multiple AOO releases

  * remove trailing cruft from files/patch-sal (from pfg@)

  * nuke files/patch-sal-inline (from pfg@)

  * modernize MASTER_SITES syntax and update MASTER_SITE for unowinreg.dll

  * unbreak sdk, package-canonical, and languagepack targets (from pfg@)

  * don't truncate generated plist (from mat@)

  * don't add @dirrm to generated plist, but add @dir for empty directories

  * don't add license files to generated plist because the framework
    does this (from mat@)

  * don't add a blank line to generated plist

  * merge post-install target into do-install (from mat@)

  * misc Makefile cleanup

PR:		192557
Differential Revision:	https://reviews.freebsd.org/D1571
Reviewed by:	pfg
Approved by:	mat (mentor)
2015-01-21 17:40:57 +00:00
Don Lewis
648cf48986 Unbreak languagepack target (package-rename and ure targets are still
broken).

plist fixes:
  * Don't add @dirrm to generated plist
  * Don't add a blank line to generated plist
  * Don't truncate ${TMPPLIST} (from mat@)
  * Don't add @dirrm to generated plist
  * Add @dir for empty directories

Makefile diff reduction vs. upcoming openoffice-devel update.

Differential Revision:	https://reviews.freebsd.org/D1561
Approved by:	mat (mentor)
2015-01-21 09:03:09 +00:00
Don Lewis
9ddf46748a The sdk and package-canonical targets were suffering from bit rot.
Unbreak. [1]

The port build fails with gcc 4.9, convert to USE_GCC=4.8. [2]

Differential Revision:	https://reviews.freebsd.org/D1557
Submitted by:	pfg [1]
Submitted by:	gerald [2]
Reviewed by:	pfg
Approved by:	mat (mentor)
2015-01-19 17:45:17 +00:00
Don Lewis
6d07df8ef9 The editors/openoffice-4 port currently depends on textproc/saxon-devel and
relies on features that are only present in this version of saxon.  The
recent update to math/scilab added a dependency to textproc/saxon-he, and
it requires features that are only present in this version.  Unfortunately
saxon-devel and saxon-he conflict because they both want to install
/usr/local/share/java/classes/saxon9-xqj.jar, which means that openoffice-4
and scilab can't both be installed on the same machine.  Avoid this problem
by tweaking openoffice-4 use a private copy of saxon.  This requires a
new version of the ext_sources tarball.

Bump PORTREVISION so that users pick up the updated port.

Modernize MASTER_SITES syntax and update MASTER_SITE for unowinreg.dll.

Update comment to take de facto mainternship.

PR:		193776
Differential Revision:	https://reviews.freebsd.org/D1553
Reviewed by:	bapt, pfg
Approved by:	mat (mentor)
2015-01-19 00:57:30 +00:00
Koop Mast
bb89f80c35 Update ImageMagick to 6.9.0.4.
- Normalize the ImageMagick library name so it stays the same regardless of
  what the 16-bit and HDRI option are set to [1]. Teach cmake to look for
  the new name. Bump ports that link to the libraries due to this.
- As a result do away with the "HALFSUPPORTED" option block, and list
  16-bit and HDRI with the other options.
- ImageMagick ships a basic SVG plugin when not using librsvg2 for SVG
  support. This basic SVG plugin needs libxml2 to work [2]. Make libxml2
  a mandatory dependency (instead of only when the SVG option was selected).
- Don't touch .keep files in the modules directory, there files there so
  it useless.

PR:		194949 [1]
PR:		195227 [2]
Requested by:	many [1]
Submitted by:	software-freebsd@interfasys.ch [2]
2015-01-18 21:12:42 +00:00
Antoine Brodin
c6faa705a5 Update graphics/giflib to 5.0.5
Differential Revision:	https://reviews.freebsd.org/D1361
Submitted by:	bapt
Reviewed by:	self
Exp-run by:	self
2015-01-14 18:19:32 +00:00
Dmitry Marakasov
64bc476bb5 - Remove diskmode fix for FreeBSD - it didn't work anyway and HEAD doesn't even have the ioctl used 2015-01-12 17:25:03 +00:00
Jose Alonso Cardenas Marquez
54a12ed5cb - Update to 1.2.6 2015-01-11 03:18:46 +00:00
Dmitry Sivachenko
3a18883882 Switch default python3 version from 3.3 to 3.4.
Bump PORTREVISIONs for the affected ports.

Exp-run by:	antoine
2015-01-10 23:15:27 +00:00
Koop Mast
c4722772b4 Don't hardcode python version.
While here:
Add vala as build depend to gedit.
Gedit-plugins: builds vte3 and gucharmap bindings. Register the depends
and package the files.

PR:		196618
Submitted by:	python3 default to 3.4 exp-run (via antoine@)
2015-01-08 21:52:42 +00:00
Emanuel Haupt
2ffa0bbce4 Move MASTER_SITES from CRITICAL to LOCAL/ehaupt 2015-01-06 09:37:41 +00:00
Kurt Jaeger
c41eeadb30 editors/ted: fix directory where ted finds its Ted.properties file
by adding CONFIGURE_ARGS+=--datadir=${PREFIX}/share

PR:		194833
Submitted by:	shersch@dssgmbh.de
2015-01-05 08:35:26 +00:00
John Marino
d2ffff55de Assign maintainership of FPC ports to new FPC ports team
The new team currently consists of the previous maintainer (acm@) and
myself (marino@).

PR:	195363
2015-01-05 00:16:00 +00:00
Jimmy Olgeni
2ef987e578 Upgrade to version 24. 2015-01-04 09:42:13 +00:00