mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-16 13:31:26 +02:00
minor fix
This commit is contained in:
@@ -31,7 +31,7 @@ PLIST_SUB+= CERTDIR=${CERTDIR}
|
||||
# !!! Please DO NOT submit patches for new version until it has !!!
|
||||
# !!! been committed there first. !!!
|
||||
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
VERSION_NSS= 3.48
|
||||
VERSION_NSS= 3.50
|
||||
#NSS_SUFFIX= -with-ckbi-1.98
|
||||
|
||||
CERTDATA_TXT_PATH= nss-${VERSION_NSS}/nss/lib/ckfw/builtins/certdata.txt
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
TIMESTAMP = 1575417811
|
||||
SHA256 (nss-3.48.tar.gz) = 3f9c822a86a4e3e1bfe63e2ed0f922d8b7c2e0b7cafe36774b1c627970d0f8ac
|
||||
SIZE (nss-3.48.tar.gz) = 76481237
|
||||
TIMESTAMP = 1583390114
|
||||
SHA256 (nss-3.50.tar.gz) = 185df319775243f5f5daa9d49b7f9cc5f2b389435be3247c3376579bee063ba7
|
||||
SIZE (nss-3.50.tar.gz) = 78041630
|
||||
|
||||
24
devel/cxref/Makefile
Normal file
24
devel/cxref/Makefile
Normal file
@@ -0,0 +1,24 @@
|
||||
# Created by: Thomas Gellekum <tg@FreeBSD.org>
|
||||
# $FreeBSD: head/devel/cxref/Makefile 363197 2014-07-28 16:28:02Z adamw $
|
||||
|
||||
PORTNAME= cxref
|
||||
PORTVERSION= 1.6e
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= http://www.gedanken.org.uk/software/cxref/download/ \
|
||||
http://fossies.org/linux/misc/
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= C program cross-referencing & documentation tool
|
||||
|
||||
USES= gmake shebangfix tar:tgz
|
||||
SHEBANG_FILES= contrib/xrgr.pl
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --without-cxref-cpp
|
||||
ALL_TARGET= programs
|
||||
|
||||
post-install:
|
||||
${MKDIR} ${STAGEDIR}${DATADIR}
|
||||
(cd ${WRKSRC}/contrib && ${INSTALL_DATA} *.el *.pl *.py README* \
|
||||
${STAGEDIR}${DATADIR})
|
||||
|
||||
.include <bsd.port.mk>
|
||||
2
devel/cxref/distinfo
Normal file
2
devel/cxref/distinfo
Normal file
@@ -0,0 +1,2 @@
|
||||
SHA256 (cxref-1.6e.tgz) = 21492210f9e1030e4e697f0d84f31ac57a0844e64c8fb28432001c44663242f2
|
||||
SIZE (cxref-1.6e.tgz) = 381883
|
||||
24
devel/cxref/files/patch-query_Makefile.in
Normal file
24
devel/cxref/files/patch-query_Makefile.in
Normal file
@@ -0,0 +1,24 @@
|
||||
--- query/Makefile.in.orig Wed Jun 23 02:31:53 2004
|
||||
+++ query/Makefile.in Fri Oct 1 21:01:20 2004
|
||||
@@ -27,6 +27,9 @@
|
||||
# The installation program.
|
||||
|
||||
INSTALL=@INSTALL@
|
||||
+INSTALL_PROGRAM=@INSTALL_PROGRAM@
|
||||
+INSTALL_SCRIPT=@INSTALL_SCRIPT@
|
||||
+INSTALL_DATA=@INSTALL_DATA@
|
||||
|
||||
# The C compiler and linker
|
||||
|
||||
@@ -49,9 +52,9 @@
|
||||
|
||||
install : cxref-query
|
||||
[ -d $(bindir) ] || $(INSTALL) -d $(bindir)
|
||||
- $(INSTALL) -m 755 cxref-query $(bindir)
|
||||
+ $(INSTALL_PROGRAM) cxref-query $(bindir)
|
||||
[ -d $(mandir)/man1 ] || $(INSTALL) -d $(mandir)/man1
|
||||
- $(INSTALL) -m 644 $(srcdir)/README.man $(mandir)/man1/cxref-query.1
|
||||
+ $(INSTALL_DATA) $(srcdir)/README.man $(mandir)/man1/cxref-query.1
|
||||
|
||||
install-win32 : cxref-query
|
||||
[ -d $(bindir) ] || $(INSTALL) -d $(bindir)
|
||||
23
devel/cxref/files/patch-src_Makefile.in
Normal file
23
devel/cxref/files/patch-src_Makefile.in
Normal file
@@ -0,0 +1,23 @@
|
||||
--- src/Makefile.in.orig Sun Feb 6 04:35:02 2005
|
||||
+++ src/Makefile.in Wed May 4 14:16:28 2005
|
||||
@@ -26,6 +26,9 @@
|
||||
# The installation program.
|
||||
|
||||
INSTALL=@INSTALL@
|
||||
+INSTALL_PROGRAM=@INSTALL_PROGRAM@
|
||||
+INSTALL_SCRIPT=@INSTALL_SCRIPT@
|
||||
+INSTALL_DATA=@INSTALL_DATA@
|
||||
|
||||
# The C compiler and linker
|
||||
|
||||
@@ -69,8 +72,8 @@
|
||||
|
||||
install : programs
|
||||
[ -d $(bindir) ] || $(INSTALL) -d $(bindir)
|
||||
- $(INSTALL) -m 755 cxref-inst $(bindir)/cxref
|
||||
- $(INSTALL) -m 755 $(srcdir)/cxref-cc $(bindir)
|
||||
+ $(INSTALL_PROGRAM) cxref-inst $(bindir)/cxref
|
||||
+ $(INSTALL_SCRIPT) $(srcdir)/cxref-cc $(bindir)
|
||||
|
||||
install-win32 : programs
|
||||
[ -d $(bindir) ] || $(INSTALL) -d $(bindir)
|
||||
12
devel/cxref/pkg-descr
Normal file
12
devel/cxref/pkg-descr
Normal file
@@ -0,0 +1,12 @@
|
||||
A program that takes as input a series of C source files and produces a
|
||||
LaTeX or HTML document containing a cross reference of the
|
||||
files/functions/variables in the program, including documentation taken
|
||||
from suitably formatted source code comments.
|
||||
|
||||
The documentation is stored in the C source file in specially formatted
|
||||
comments, making it simple to maintain. The cross referencing includes
|
||||
lists of functions called, callers of each function, usage of global
|
||||
variables, header file inclusion, macro definitions and type
|
||||
definitions. Works for ANSI C, including a few gcc extensions.
|
||||
|
||||
WWW: http://www.gedanken.org.uk/software/cxref/
|
||||
20
devel/cxref/pkg-plist
Normal file
20
devel/cxref/pkg-plist
Normal file
@@ -0,0 +1,20 @@
|
||||
bin/cxref
|
||||
bin/cxref-cc
|
||||
bin/cxref-query
|
||||
man/man1/cxref-query.1.gz
|
||||
man/man1/cxref.1.gz
|
||||
share/cxref/cflow.el
|
||||
share/cxref/cxref_includes.pl
|
||||
share/cxref/cxref.el
|
||||
share/cxref/daVinvi_function.pl
|
||||
share/cxref/daVinvi_include.pl
|
||||
share/cxref/fixheader.pl
|
||||
share/cxref/includes2cxref.pl
|
||||
share/cxref/knr2ansi.pl
|
||||
share/cxref/make_depend.pl
|
||||
share/cxref/README
|
||||
share/cxref/README.xrgr
|
||||
share/cxref/tree.pl
|
||||
share/cxref/xrefgraph.py
|
||||
share/cxref/xrgr.pl
|
||||
@dir share/cxref
|
||||
@@ -1,2 +1,3 @@
|
||||
SHA256 (libass-libass-0.12.1_GH0.tar.xz) = 5a745bd37feb8b1eb6c88adff8dbc244abf016dcc01a750901089319aa77e1a6
|
||||
SIZE (libass-libass-0.12.1_GH0.tar.xz) = 127966
|
||||
TIMESTAMP = 1584171863
|
||||
SHA256 (libass-libass-0.12.1_GH0.tar.gz) = 5a745bd37feb8b1eb6c88adff8dbc244abf016dcc01a750901089319aa77e1a6
|
||||
SIZE (libass-libass-0.12.1_GH0.tar.gz) = 127966
|
||||
|
||||
14
media/libass/files/patch-x-libass-Makefile.am
Normal file
14
media/libass/files/patch-x-libass-Makefile.am
Normal file
@@ -0,0 +1,14 @@
|
||||
--- ./libass/Makefile.am~ 2015-01-07 18:29:04.000000000 +0200
|
||||
+++ ./libass/Makefile.am 2020-03-14 09:46:14.634379000 +0200
|
||||
@@ -2,9 +2,9 @@
|
||||
-Werror-implicit-function-declaration -Wstrict-prototypes \
|
||||
-Wpointer-arith -Wredundant-decls
|
||||
|
||||
-LIBASS_LT_CURRENT = 6
|
||||
+LIBASS_LT_CURRENT = 5
|
||||
LIBASS_LT_REVISION = 0
|
||||
-LIBASS_LT_AGE = 1
|
||||
+LIBASS_LT_AGE = 5
|
||||
|
||||
yasm_verbose = $(yasm_verbose_$(V))
|
||||
yasm_verbose_ = $(yasm_verbose_$(AM_DEFAULT_VERBOSITY))
|
||||
@@ -2,7 +2,7 @@
|
||||
# $Id$
|
||||
#
|
||||
PORTNAME= m2store
|
||||
PORTVERSION= 0.1.14
|
||||
PORTVERSION= 0.1.16
|
||||
CATEGORIES= www net
|
||||
|
||||
MAINTAINER= borodin@unix7.org
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
TIMESTAMP = 1580468739
|
||||
SHA256 (onborodin-m2store-0.1.14_GH0.tar.gz) = 086d89b4c5298268f5376f6522a06eb70fb220345093ff75109a92c4f9342860
|
||||
SIZE (onborodin-m2store-0.1.14_GH0.tar.gz) = 3734042
|
||||
TIMESTAMP = 1581714032
|
||||
SHA256 (onborodin-m2store-0.1.16_GH0.tar.gz) = 0538956c078540695dd3307fa7d7eaeadefc2993238774c82d1e75a5e18f020e
|
||||
SIZE (onborodin-m2store-0.1.16_GH0.tar.gz) = 1856761
|
||||
|
||||
@@ -12,7 +12,7 @@ COMMENT= Full-featured exFAT FS implementation as a FUSE module
|
||||
|
||||
#LIB_DEPENDS= libublio.so:devel/libublio
|
||||
|
||||
USES= autoreconf fuse localbase pkgconfig
|
||||
USES= autoreconf localbase pkgconfig
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= relan
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
@@ -17,8 +17,8 @@ include/ntfs-3g/collate.h
|
||||
include/ntfs-3g/compat.h
|
||||
include/ntfs-3g/compress.h
|
||||
include/ntfs-3g/debug.h
|
||||
include/ntfs-3g/device.h
|
||||
include/ntfs-3g/device_io.h
|
||||
include/ntfs-3g/device.h
|
||||
include/ntfs-3g/dir.h
|
||||
include/ntfs-3g/ea.h
|
||||
include/ntfs-3g/efs.h
|
||||
@@ -50,7 +50,6 @@ lib/libntfs-3g.a
|
||||
lib/libntfs-3g.la
|
||||
lib/libntfs-3g.so
|
||||
lib/libntfs-3g.so.88
|
||||
lib/pkgconfig/libntfs-3g.pc
|
||||
man/man8/mkntfs.8.gz
|
||||
man/man8/ntfs-3g.8.gz
|
||||
man/man8/ntfs-3g.probe.8.gz
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
# $Id$
|
||||
#
|
||||
PORTNAME= xfce4-desktop
|
||||
PORTVERSION= 4.12.3
|
||||
PORTVERSION= 4.12.5
|
||||
CATEGORIES= x11-wm xfce
|
||||
MASTER_SITES= ${MASTER_SITE_XFCE}
|
||||
DISTNAME= xfdesktop-${PORTVERSION}
|
||||
@@ -45,8 +45,6 @@ USES+= tar:bzip2
|
||||
USES+= gmake
|
||||
USE_LDCONFIG= yes
|
||||
|
||||
PLIST_FILES+= man/man1/xfdesktop.1.gz
|
||||
|
||||
#CONFIGURE_ARGS+= --enable-panel-plugin
|
||||
CONFIGURE_ARGS+= --enable-desktop-menu
|
||||
CONFIGURE_ARGS+= --enable-exo
|
||||
|
||||
@@ -1,2 +1,3 @@
|
||||
SHA256 (xfce4/xfdesktop-4.12.3.tar.bz2) = a8a8d93744d842ca6ac1f9bd2c8789ee178937bca7e170e5239cbdbef30520ac
|
||||
SIZE (xfce4/xfdesktop-4.12.3.tar.bz2) = 1420704
|
||||
TIMESTAMP = 1581922227
|
||||
SHA256 (xfce4/xfdesktop-4.12.5.tar.bz2) = 3f2426ac28b94cfe5d6fd187c59b4e78f40e66c2842318e158ecd82abe2e7c0a
|
||||
SIZE (xfce4/xfdesktop-4.12.5.tar.bz2) = 1442736
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
bin/xfdesktop
|
||||
bin/xfdesktop-settings
|
||||
man/man1/xfdesktop.1.gz
|
||||
share/applications/xfce-backdrop-settings.desktop
|
||||
share/backgrounds/xfce/xfce-blue.jpg
|
||||
share/backgrounds/xfce/xfce-teal.jpg
|
||||
@@ -48,8 +49,8 @@ share/locale/nn/LC_MESSAGES/xfdesktop.mo
|
||||
share/locale/oc/LC_MESSAGES/xfdesktop.mo
|
||||
share/locale/pa/LC_MESSAGES/xfdesktop.mo
|
||||
share/locale/pl/LC_MESSAGES/xfdesktop.mo
|
||||
share/locale/pt/LC_MESSAGES/xfdesktop.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/xfdesktop.mo
|
||||
share/locale/pt/LC_MESSAGES/xfdesktop.mo
|
||||
share/locale/ro/LC_MESSAGES/xfdesktop.mo
|
||||
share/locale/ru/LC_MESSAGES/xfdesktop.mo
|
||||
share/locale/si/LC_MESSAGES/xfdesktop.mo
|
||||
@@ -63,8 +64,8 @@ share/locale/th/LC_MESSAGES/xfdesktop.mo
|
||||
share/locale/tr/LC_MESSAGES/xfdesktop.mo
|
||||
share/locale/ug/LC_MESSAGES/xfdesktop.mo
|
||||
share/locale/uk/LC_MESSAGES/xfdesktop.mo
|
||||
share/locale/ur/LC_MESSAGES/xfdesktop.mo
|
||||
share/locale/ur_PK/LC_MESSAGES/xfdesktop.mo
|
||||
share/locale/ur/LC_MESSAGES/xfdesktop.mo
|
||||
share/locale/uz/LC_MESSAGES/xfdesktop.mo
|
||||
share/locale/vi/LC_MESSAGES/xfdesktop.mo
|
||||
share/locale/zh_CN/LC_MESSAGES/xfdesktop.mo
|
||||
@@ -77,5 +78,127 @@ share/pixmaps/xfce4_xicon3.png
|
||||
share/pixmaps/xfce4_xicon4.png
|
||||
share/pixmaps/xfdesktop/xfdesktop-fallback-icon.png
|
||||
@dir share/backgrounds/xfce
|
||||
@dir share/backgrounds
|
||||
@dir share/locale/am/LC_MESSAGES
|
||||
@dir share/locale/am
|
||||
@dir share/locale/ar/LC_MESSAGES
|
||||
@dir share/locale/ar
|
||||
@dir share/locale/ast/LC_MESSAGES
|
||||
@dir share/locale/ast
|
||||
@dir share/locale/be/LC_MESSAGES
|
||||
@dir share/locale/be
|
||||
@dir share/locale/bg/LC_MESSAGES
|
||||
@dir share/locale/bg
|
||||
@dir share/locale/bn/LC_MESSAGES
|
||||
@dir share/locale/bn
|
||||
@dir share/locale/ca/LC_MESSAGES
|
||||
@dir share/locale/ca
|
||||
@dir share/locale/cs/LC_MESSAGES
|
||||
@dir share/locale/cs
|
||||
@dir share/locale/da/LC_MESSAGES
|
||||
@dir share/locale/da
|
||||
@dir share/locale/de/LC_MESSAGES
|
||||
@dir share/locale/de
|
||||
@dir share/locale/el/LC_MESSAGES
|
||||
@dir share/locale/el
|
||||
@dir share/locale/en_AU/LC_MESSAGES
|
||||
@dir share/locale/en_AU
|
||||
@dir share/locale/en_GB/LC_MESSAGES
|
||||
@dir share/locale/en_GB
|
||||
@dir share/locale/eo/LC_MESSAGES
|
||||
@dir share/locale/eo
|
||||
@dir share/locale/es/LC_MESSAGES
|
||||
@dir share/locale/es
|
||||
@dir share/locale/et/LC_MESSAGES
|
||||
@dir share/locale/et
|
||||
@dir share/locale/eu/LC_MESSAGES
|
||||
@dir share/locale/eu
|
||||
@dir share/locale/fa_IR/LC_MESSAGES
|
||||
@dir share/locale/fa_IR
|
||||
@dir share/locale/fi/LC_MESSAGES
|
||||
@dir share/locale/fi
|
||||
@dir share/locale/fr/LC_MESSAGES
|
||||
@dir share/locale/fr
|
||||
@dir share/locale/gl/LC_MESSAGES
|
||||
@dir share/locale/gl
|
||||
@dir share/locale/he/LC_MESSAGES
|
||||
@dir share/locale/he
|
||||
@dir share/locale/hr/LC_MESSAGES
|
||||
@dir share/locale/hr
|
||||
@dir share/locale/hu/LC_MESSAGES
|
||||
@dir share/locale/hu
|
||||
@dir share/locale/id/LC_MESSAGES
|
||||
@dir share/locale/id
|
||||
@dir share/locale/is/LC_MESSAGES
|
||||
@dir share/locale/is
|
||||
@dir share/locale/it/LC_MESSAGES
|
||||
@dir share/locale/it
|
||||
@dir share/locale/ja/LC_MESSAGES
|
||||
@dir share/locale/ja
|
||||
@dir share/locale/kk/LC_MESSAGES
|
||||
@dir share/locale/kk
|
||||
@dir share/locale/ko/LC_MESSAGES
|
||||
@dir share/locale/ko
|
||||
@dir share/locale/lt/LC_MESSAGES
|
||||
@dir share/locale/lt
|
||||
@dir share/locale/lv/LC_MESSAGES
|
||||
@dir share/locale/lv
|
||||
@dir share/locale/ms/LC_MESSAGES
|
||||
@dir share/locale/ms
|
||||
@dir share/locale/nb/LC_MESSAGES
|
||||
@dir share/locale/nb
|
||||
@dir share/locale/nl/LC_MESSAGES
|
||||
@dir share/locale/nl
|
||||
@dir share/locale/nn/LC_MESSAGES
|
||||
@dir share/locale/nn
|
||||
@dir share/locale/oc/LC_MESSAGES
|
||||
@dir share/locale/oc
|
||||
@dir share/locale/pa/LC_MESSAGES
|
||||
@dir share/locale/pa
|
||||
@dir share/locale/pl/LC_MESSAGES
|
||||
@dir share/locale/pl
|
||||
@dir share/locale/pt/LC_MESSAGES
|
||||
@dir share/locale/pt
|
||||
@dir share/locale/pt_BR/LC_MESSAGES
|
||||
@dir share/locale/pt_BR
|
||||
@dir share/locale/ro/LC_MESSAGES
|
||||
@dir share/locale/ro
|
||||
@dir share/locale/ru/LC_MESSAGES
|
||||
@dir share/locale/ru
|
||||
@dir share/locale/si/LC_MESSAGES
|
||||
@dir share/locale/si
|
||||
@dir share/locale/sk/LC_MESSAGES
|
||||
@dir share/locale/sk
|
||||
@dir share/locale/sl/LC_MESSAGES
|
||||
@dir share/locale/sl
|
||||
@dir share/locale/sq/LC_MESSAGES
|
||||
@dir share/locale/sq
|
||||
@dir share/locale/sr/LC_MESSAGES
|
||||
@dir share/locale/sr
|
||||
@dir share/locale/sv/LC_MESSAGES
|
||||
@dir share/locale/sv
|
||||
@dir share/locale/te/LC_MESSAGES
|
||||
@dir share/locale/te
|
||||
@dir share/locale/th/LC_MESSAGES
|
||||
@dir share/locale/th
|
||||
@dir share/locale/tr/LC_MESSAGES
|
||||
@dir share/locale/tr
|
||||
@dir share/locale/ug/LC_MESSAGES
|
||||
@dir share/locale/ug
|
||||
@dir share/locale/uk/LC_MESSAGES
|
||||
@dir share/locale/uk
|
||||
@dir share/locale/ur/LC_MESSAGES
|
||||
@dir share/locale/ur
|
||||
@dir share/locale/ur_PK/LC_MESSAGES
|
||||
@dir share/locale/ur_PK
|
||||
@dir share/locale/uz/LC_MESSAGES
|
||||
@dir share/locale/uz
|
||||
@dir share/locale/vi/LC_MESSAGES
|
||||
@dir share/locale/vi
|
||||
@dir share/locale/zh_CN/LC_MESSAGES
|
||||
@dir share/locale/zh_CN
|
||||
@dir share/locale/zh_HK/LC_MESSAGES
|
||||
@dir share/locale/zh_HK
|
||||
@dir share/locale/zh_TW/LC_MESSAGES
|
||||
@dir share/locale/zh_TW
|
||||
@dir share/locale
|
||||
@dir share/pixmaps/xfdesktop
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
# $Id$
|
||||
#
|
||||
PORTNAME= xfce4-panel
|
||||
PORTVERSION= 4.12.1 #0
|
||||
PORTVERSION= 4.12.2
|
||||
CATEGORIES= x11-wm xfce
|
||||
MASTER_SITES= ${MASTER_SITE_XFCE}
|
||||
DIST_SUBDIR= xfce4
|
||||
|
||||
@@ -1,2 +1,3 @@
|
||||
SHA256 (xfce4/xfce4-panel-4.12.1.tar.bz2) = 93d58b80cca9c9eb58adb281bc75404df7cf6cae89f7f98bb9f38690009aa2e8
|
||||
SIZE (xfce4/xfce4-panel-4.12.1.tar.bz2) = 1142476
|
||||
TIMESTAMP = 1581922417
|
||||
SHA256 (xfce4/xfce4-panel-4.12.2.tar.bz2) = 42058abb81b8f87691d3999627447de71c3285bcf055f308aab5cefab2de0ce9
|
||||
SIZE (xfce4/xfce4-panel-4.12.2.tar.bz2) = 1167175
|
||||
|
||||
10
xfce/xfce4-panel/files/panel-desktop-handler.desktop.in
Normal file
10
xfce/xfce4-panel/files/panel-desktop-handler.desktop.in
Normal file
@@ -0,0 +1,10 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
_Name=Create Launcher on the panel
|
||||
_Comment=Add a new launcher to the panel based on the information of this desktop file
|
||||
Exec=xfce4-panel --add=launcher %u
|
||||
Icon=application-x-executable
|
||||
Terminal=false
|
||||
NoDisplay=true
|
||||
StartupNotify=false
|
||||
MimeType=application/x-desktop;
|
||||
14
xfce/xfce4-panel/files/panel-preferences.desktop.in
Normal file
14
xfce/xfce4-panel/files/panel-preferences.desktop.in
Normal file
@@ -0,0 +1,14 @@
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Exec=xfce4-panel --preferences
|
||||
Icon=xfce4-panel
|
||||
Type=Application
|
||||
Categories=XFCE;GTK;Settings;DesktopSettings;X-XFCE-SettingsDialog;X-XFCE-PersonalSettings;
|
||||
OnlyShowIn=XFCE;
|
||||
Terminal=false
|
||||
StartupNotify=true
|
||||
X-XfcePluggable=true
|
||||
X-XfceHelpComponent=xfce4-panel
|
||||
X-XfceHelpPage=preferences
|
||||
_Name=Panel
|
||||
_Comment=Customize the panel
|
||||
@@ -1,19 +1,36 @@
|
||||
--- ./ltmain.sh.orig 2016-10-24 23:48:22.000000000 +0200
|
||||
+++ ./ltmain.sh 2017-02-19 10:02:19.604168000 +0200
|
||||
@@ -7414,14 +7414,9 @@
|
||||
verstring="-compatibility_version $minor_current -current_version $minor_current.$revision"
|
||||
--- ./ltmain.sh.orig 2017-12-14 01:14:28.000000000 +0200
|
||||
+++ ./ltmain.sh 2020-02-17 08:54:29.521079000 +0200
|
||||
@@ -8811,13 +8811,13 @@
|
||||
#
|
||||
case $version_type in
|
||||
# correct linux to gnu/linux during the next big refactor
|
||||
- darwin|freebsd-elf|linux|osf|windows|none)
|
||||
+ darwin|linux|osf|windows|none)
|
||||
func_arith $number_major + $number_minor
|
||||
current=$func_arith_result
|
||||
age=$number_minor
|
||||
revision=$number_revision
|
||||
;;
|
||||
- freebsd-aout|qnx|sunos)
|
||||
+ freebsd*|qnx|sunos)
|
||||
current=$number_major
|
||||
revision=$number_minor
|
||||
age=0
|
||||
@@ -8900,15 +8900,9 @@
|
||||
esac
|
||||
;;
|
||||
|
||||
- freebsd-aout)
|
||||
+ freebsd*)
|
||||
major=".$current"
|
||||
- versuffix=".$current.$revision";
|
||||
major=.$current
|
||||
- versuffix=.$current.$revision
|
||||
- ;;
|
||||
-
|
||||
- freebsd-elf)
|
||||
- major=".$current"
|
||||
- versuffix=".$current"
|
||||
+ versuffix=".$current";
|
||||
- func_arith $current - $age
|
||||
- major=.$func_arith_result
|
||||
- versuffix=$major.$age.$revision
|
||||
+ versuffix=.$current
|
||||
;;
|
||||
|
||||
irix | nonstopux)
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
# $Id$
|
||||
#
|
||||
PORTNAME= xfce4-wm
|
||||
PORTVERSION= 4.12.4
|
||||
PORTVERSION= 4.12.5
|
||||
CATEGORIES= x11-wm xfce
|
||||
MASTER_SITES+= ${MASTER_SITE_XFCE}
|
||||
DISTNAME= xfwm4-${PORTVERSION}
|
||||
|
||||
@@ -1,2 +1,3 @@
|
||||
SHA256 (xfce4/xfwm4-4.12.4.tar.bz2) = fa74048a75649a6e92df763a3cfb706d3fed1e1a6adf567f6693325a5a6efb36
|
||||
SIZE (xfce4/xfwm4-4.12.4.tar.bz2) = 1208874
|
||||
TIMESTAMP = 1581922342
|
||||
SHA256 (xfce4/xfwm4-4.12.5.tar.bz2) = 7775c02216666c2d023275e7ed6d85e57d965e5cc1407bb6a05c53cc38d8caca
|
||||
SIZE (xfce4/xfwm4-4.12.5.tar.bz2) = 1215450
|
||||
|
||||
Reference in New Issue
Block a user