mirror of
https://github.com/void-linux/void-packages.git
synced 2025-07-27 07:52:55 +02:00
Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
70c4884943
9 changed files with 25 additions and 76 deletions
|
@ -1,9 +0,0 @@
|
||||||
--- autogen.sh.orig 2013-03-21 17:21:18.281013739 +0100
|
|
||||||
+++ autogen.sh 2013-03-21 17:21:23.960040231 +0100
|
|
||||||
@@ -124,6 +124,3 @@ echo " $AUTOMAKE --add-missing $AUTOMAK
|
|
||||||
$AUTOMAKE --add-missing $AUTOMAKE_FLAGS || exit 1
|
|
||||||
echo " autoconf"
|
|
||||||
autoconf || exit 1
|
|
||||||
-
|
|
||||||
-cd $olddir
|
|
||||||
-$srcdir/configure --enable-maintainer-mode "$@" && echo
|
|
|
@ -1,22 +0,0 @@
|
||||||
--- configure.in.orig 2013-03-21 17:43:57.269562981 +0100
|
|
||||||
+++ configure.in 2013-03-21 17:44:23.956687605 +0100
|
|
||||||
@@ -44,7 +44,7 @@ AC_FUNC_FSEEKO
|
|
||||||
AC_CHECK_SIZEOF(void*,0)
|
|
||||||
|
|
||||||
#@@@ new name is AC_CONFIG_HEADERS
|
|
||||||
-AM_CONFIG_HEADER(config.h)
|
|
||||||
+AC_CONFIG_HEADERS(config.h)
|
|
||||||
|
|
||||||
AC_C_BIGENDIAN
|
|
||||||
|
|
||||||
@@ -256,8 +256,8 @@ AH_TEMPLATE(FLAC__HAS_OGG, [define if yo
|
|
||||||
fi
|
|
||||||
|
|
||||||
dnl check for i18n(internationalization); these are from libiconv/gettext
|
|
||||||
-AM_ICONV
|
|
||||||
-AM_LANGINFO_CODESET
|
|
||||||
+AC_DEFINE([HAVE_ICONV], [], [Whether we have libiconv available]) LIBICONV=""
|
|
||||||
+AC_SUBST(LIBICONV)
|
|
||||||
|
|
||||||
AC_CHECK_PROGS(DOCBOOK_TO_MAN, docbook-to-man docbook2man)
|
|
||||||
AM_CONDITIONAL(FLaC__HAS_DOCBOOK_TO_MAN, test -n "$DOCBOOK_TO_MAN")
|
|
|
@ -1,10 +0,0 @@
|
||||||
--- examples/cpp/encode/file/main.cpp 2007-09-13 09:58:03.000000000 -0600
|
|
||||||
+++ examples/cpp/encode/file/main.cpp 2007-11-18 12:59:45.000000000 -0600
|
|
||||||
@@ -30,6 +30,7 @@
|
|
||||||
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
+#include <cstring>
|
|
||||||
#include "FLAC++/metadata.h"
|
|
||||||
#include "FLAC++/encoder.h"
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'flac'
|
# Template file for 'flac'
|
||||||
pkgname=flac
|
pkgname=flac
|
||||||
version=1.2.1
|
version=1.3.0
|
||||||
revision=6
|
revision=1
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
configure_args="--disable-rpath --disable-doxygen-docs --disable-xmms-plugin"
|
configure_args="--disable-rpath --disable-doxygen-docs --disable-xmms-plugin"
|
||||||
if [ "$XBPS_TARGET_MACHINE" = "i686" -o "$XBPS_TARGET_MACHINE" = "x86_64" ]; then
|
if [ "$XBPS_TARGET_MACHINE" = "i686" -o "$XBPS_TARGET_MACHINE" = "x86_64" ]; then
|
||||||
|
@ -12,8 +12,8 @@ short_desc="Free Lossless Audio Codec"
|
||||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||||
homepage="http://flac.sourceforge.net/"
|
homepage="http://flac.sourceforge.net/"
|
||||||
license="BSD, GPL"
|
license="BSD, GPL"
|
||||||
distfiles="${SOURCEFORGE_SITE}/$pkgname/$pkgname-$version.tar.gz"
|
distfiles="http://downloads.xiph.org/releases/flac/flac-${version}.tar.xz"
|
||||||
checksum=9635a44bceb478bbf2ee8a785cf6986fba525afb5fad1fd4bba73cf71f2d3edf
|
checksum=fa2d64aac1f77e31dfbb270aeb08f5b32e27036a52ad15e69a77e309528010dc
|
||||||
long_desc="
|
long_desc="
|
||||||
FLAC stands for Free Lossless Audio Codec. Grossly oversimplified, FLAC is
|
FLAC stands for Free Lossless Audio Codec. Grossly oversimplified, FLAC is
|
||||||
similar to MP3, but lossless. The FLAC project consists of:
|
similar to MP3, but lossless. The FLAC project consists of:
|
||||||
|
@ -26,15 +26,15 @@ long_desc="
|
||||||
works)"
|
works)"
|
||||||
|
|
||||||
if [ "$CROSS_BUILD" ]; then
|
if [ "$CROSS_BUILD" ]; then
|
||||||
hostmakedepends="automake pkg-config"
|
hostmakedepends="automake pkg-config libtool"
|
||||||
pre_configure() {
|
pre_configure() {
|
||||||
./autogen.sh
|
autoreconf -fi
|
||||||
}
|
}
|
||||||
configure_args+=" --with-ogg=$XBPS_CROSS_BASE"
|
configure_args+=" --with-ogg=$XBPS_CROSS_BASE"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
libflac_package() {
|
libflac_package() {
|
||||||
short_desc="${short_desc} - shared libraries"
|
short_desc+=" - shared libraries"
|
||||||
pkg_install() {
|
pkg_install() {
|
||||||
vmove "usr/lib/*.so*"
|
vmove "usr/lib/*.so*"
|
||||||
}
|
}
|
||||||
|
@ -42,11 +42,10 @@ libflac_package() {
|
||||||
|
|
||||||
libflac-devel_package() {
|
libflac-devel_package() {
|
||||||
depends="libstdc++-devel libogg-devel libflac>=${version}"
|
depends="libstdc++-devel libogg-devel libflac>=${version}"
|
||||||
short_desc="${short_desc} - development files"
|
short_desc+=" - development files"
|
||||||
pkg_install() {
|
pkg_install() {
|
||||||
vmove usr/include
|
vmove usr/include
|
||||||
vmove usr/lib/pkgconfig
|
vmove usr/lib/pkgconfig
|
||||||
vmove "usr/lib/*.a"
|
|
||||||
vmove usr/share/aclocal
|
vmove usr/share/aclocal
|
||||||
vmove usr/share/doc
|
vmove usr/share/doc
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'gnome-disk-utility'
|
# Template file for 'gnome-disk-utility'
|
||||||
pkgname=gnome-disk-utility
|
pkgname=gnome-disk-utility
|
||||||
version=3.8.0
|
version=3.8.2
|
||||||
revision=2
|
revision=1
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
configure_args="--disable-static"
|
configure_args="--disable-static"
|
||||||
hostmakedepends="pkg-config intltool gnome-doc-utils"
|
hostmakedepends="pkg-config intltool gnome-doc-utils"
|
||||||
|
@ -13,7 +13,7 @@ maintainer="Juan RP <xtraeme@gmail.com>"
|
||||||
homepage="http://www.gnome.org"
|
homepage="http://www.gnome.org"
|
||||||
license="GPL-2"
|
license="GPL-2"
|
||||||
distfiles="${GNOME_SITE}/$pkgname/3.8/$pkgname-$version.tar.xz"
|
distfiles="${GNOME_SITE}/$pkgname/3.8/$pkgname-$version.tar.xz"
|
||||||
checksum=2657aad8d06e5511bc34ee5ec1ff9426f70b7140b8687be528f693175759bd5e
|
checksum=6a64de6f40ddfebfe7566f3ef7856c1cb33fab7d21d9be43db74f014309298c3
|
||||||
|
|
||||||
gnome-disk-utility_package() {
|
gnome-disk-utility_package() {
|
||||||
depends="hicolor-icon-theme desktop-file-utils parted"
|
depends="hicolor-icon-theme desktop-file-utils parted"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'lm-sensors'
|
# Template file for 'lm-sensors'
|
||||||
pkgname=lm-sensors
|
pkgname=lm-sensors
|
||||||
version=3.3.3
|
version=3.3.4
|
||||||
revision=2
|
revision=1
|
||||||
wrksrc="lm_sensors-${version}"
|
wrksrc="lm_sensors-${version}"
|
||||||
hostmakedepends="which flex perl"
|
hostmakedepends="which flex perl"
|
||||||
short_desc="Utilities to read temperature/voltage/fan sensors"
|
short_desc="Utilities to read temperature/voltage/fan sensors"
|
||||||
|
@ -9,7 +9,7 @@ maintainer="Juan RP <xtraeme@gmail.com>"
|
||||||
license="GPL-2, LGPL-2.1"
|
license="GPL-2, LGPL-2.1"
|
||||||
homepage="http://www.lm-sensors.org/"
|
homepage="http://www.lm-sensors.org/"
|
||||||
distfiles="http://dl.lm-sensors.org/$pkgname/releases/lm_sensors-$version.tar.bz2"
|
distfiles="http://dl.lm-sensors.org/$pkgname/releases/lm_sensors-$version.tar.bz2"
|
||||||
checksum=ecc91ba3d918e96fb7d5eb9acce978af803b130e0b33b08d5ea05b2bfca84955
|
checksum=b4608610cb5de4b24e3fe1ae357712e8633a8a929bbb42df5eecc4ccee6ba76d
|
||||||
long_desc="
|
long_desc="
|
||||||
$pkgname provides most complete hardware health monitoring support for
|
$pkgname provides most complete hardware health monitoring support for
|
||||||
Linux, in the form of kernel drivers and a user-space library"
|
Linux, in the form of kernel drivers and a user-space library"
|
||||||
|
@ -42,7 +42,6 @@ libsensors-devel_package() {
|
||||||
lm-sensors_package() {
|
lm-sensors_package() {
|
||||||
conf_files="/etc/sensors3.conf"
|
conf_files="/etc/sensors3.conf"
|
||||||
pkg_install() {
|
pkg_install() {
|
||||||
vmove etc
|
vmove all
|
||||||
vmove usr
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,19 +1,19 @@
|
||||||
# Template file for 'pcre'
|
# Template file for 'pcre'
|
||||||
pkgname=pcre
|
pkgname=pcre
|
||||||
version=8.32
|
version=8.33
|
||||||
revision=2
|
revision=1
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
configure_args="--enable-utf8 --enable-unicode-properties --with-pic
|
configure_args="--enable-utf8 --enable-unicode-properties --with-pic
|
||||||
--enable-pcregrep-libz --enable-pcregrep-libbz2 --enable-newline-is-anycrlf
|
--enable-pcregrep-libz --enable-pcregrep-libbz2 --enable-newline-is-anycrlf
|
||||||
--enable-pcretest-libreadline --disable-pcregrep-jit --enable-jit
|
--enable-pcretest-libreadline --enable-jit --disable-static"
|
||||||
--disable-static"
|
|
||||||
makedepends="zlib-devel bzip2-devel readline-devel"
|
makedepends="zlib-devel bzip2-devel readline-devel"
|
||||||
short_desc="Perl Compatible Regular Expressions"
|
short_desc="Perl Compatible Regular Expressions"
|
||||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||||
homepage="http://www.pcre.org/"
|
homepage="http://www.pcre.org/"
|
||||||
license="BSD"
|
license="BSD"
|
||||||
distfiles="${SOURCEFORGE_SITE}/pcre/pcre-$version.tar.bz2"
|
#distfiles="${SOURCEFORGE_SITE}/pcre/pcre-$version.tar.gz"
|
||||||
checksum=a913fb9bd058ef380a2d91847c3c23fcf98e92dc3b47cd08a53c021c5cde0f55
|
distfiles="ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-${version}.tar.bz2"
|
||||||
|
checksum=c603957a4966811c04af5f6048c71cfb4966ec93312d7b3118116ed9f3bc0478
|
||||||
|
|
||||||
if [ "$CROSS_BUILD" ]; then
|
if [ "$CROSS_BUILD" ]; then
|
||||||
hostmakedepends="libtool automake"
|
hostmakedepends="libtool automake"
|
||||||
|
@ -22,19 +22,16 @@ if [ "$CROSS_BUILD" ]; then
|
||||||
}
|
}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
libpcrecpp_package() {
|
libpcrecpp_package() {
|
||||||
short_desc+=" - C++ shared libraries"
|
short_desc+=" - C++ shared libraries"
|
||||||
|
|
||||||
pkg_install() {
|
pkg_install() {
|
||||||
vmove "usr/lib/libpcrecpp.so*"
|
vmove "usr/lib/libpcrecpp.so*"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
libpcre_package() {
|
libpcre_package() {
|
||||||
short_desc="${short_desc} - shared libraries"
|
short_desc+=" - shared libraries"
|
||||||
replaces="pcre<8.11"
|
replaces="pcre<8.11"
|
||||||
|
|
||||||
pkg_install() {
|
pkg_install() {
|
||||||
vmove "usr/lib/libpcre.so*"
|
vmove "usr/lib/libpcre.so*"
|
||||||
vmove "usr/lib/libpcreposix.so*"
|
vmove "usr/lib/libpcreposix.so*"
|
||||||
|
@ -43,8 +40,7 @@ libpcre_package() {
|
||||||
|
|
||||||
pcre-devel_package() {
|
pcre-devel_package() {
|
||||||
depends="zlib-devel bzip2-devel libpcre>=${version} libpcrecpp>=${version}"
|
depends="zlib-devel bzip2-devel libpcre>=${version} libpcrecpp>=${version}"
|
||||||
short_desc="${short_desc} (development files)"
|
short_desci+=" - development files"
|
||||||
|
|
||||||
pkg_install() {
|
pkg_install() {
|
||||||
vmove usr/bin/pcre-config
|
vmove usr/bin/pcre-config
|
||||||
vmove usr/include
|
vmove usr/include
|
||||||
|
|
|
@ -36,6 +36,3 @@ net.ipv6.conf.all.forwarding = 0
|
||||||
# Reboot 600 seconds after kernel panic or oops.
|
# Reboot 600 seconds after kernel panic or oops.
|
||||||
#kernel.panic_on_oops = 1
|
#kernel.panic_on_oops = 1
|
||||||
#kernel.panic = 600
|
#kernel.panic = 600
|
||||||
|
|
||||||
# Disable SysRq key to avoid console security issues.
|
|
||||||
kernel.sysrq = 0
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Template file for 'procps-ng'
|
# Template file for 'procps-ng'
|
||||||
pkgname=procps-ng
|
pkgname=procps-ng
|
||||||
version=3.3.7
|
version=3.3.8
|
||||||
revision=1
|
revision=1
|
||||||
short_desc="Utilities for monitoring your system and its processes"
|
short_desc="Utilities for monitoring your system and its processes"
|
||||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||||
|
@ -62,7 +62,6 @@ procps-ng_package() {
|
||||||
provides="procps-${version}"
|
provides="procps-${version}"
|
||||||
conflicts="coreutils<8.21_3"
|
conflicts="coreutils<8.21_3"
|
||||||
pkg_install() {
|
pkg_install() {
|
||||||
vmove etc
|
vmove all
|
||||||
vmove usr
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue