summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-03-21 00:05:31 -0700
committerroot <root@rshg054.dnsready.net>2013-03-21 00:05:31 -0700
commit76b6359ba6b2c7cce2f0b0725c7ecd831563cabf (patch)
treec0094f3f2750cc09b0e7bdce9a50af03858ddd51 /core
parent3cdbec41955c7232e91ef149f77ce9ed215a10fa (diff)
Thu Mar 21 00:05:30 PDT 2013
Diffstat (limited to 'core')
-rw-r--r--core/dnsutils/PKGBUILD49
-rw-r--r--core/dnsutils/remove-bind.patch25
-rw-r--r--core/idnkit/PKGBUILD40
-rw-r--r--core/ncurses/PKGBUILD20
-rw-r--r--core/shadow/PKGBUILD22
-rw-r--r--core/shadow/lastlog.tmpfiles2
6 files changed, 24 insertions, 134 deletions
diff --git a/core/dnsutils/PKGBUILD b/core/dnsutils/PKGBUILD
deleted file mode 100644
index b68e67f9c..000000000
--- a/core/dnsutils/PKGBUILD
+++ /dev/null
@@ -1,49 +0,0 @@
-# $Id: PKGBUILD 172785 2012-12-06 00:11:18Z bisson $
-# Maintainer: Gaetan Bisson <bisson@archlinux.org>
-# Contributor: kevin <kevin@archlinux.org>
-# Contributor: mario <mario_vazq@hotmail.com>
-
-pkgname=dnsutils
-_pkgver=9.9.2-P1
-pkgver=${_pkgver//-/.}
-pkgrel=1
-pkgdesc='DNS utilities: dig host nslookup'
-url='http://www.isc.org/software/bind/'
-license=('custom:ISC')
-arch=('i686' 'x86_64')
-options=('!makeflags')
-depends=('openssl' 'krb5' 'idnkit' 'dnssec-anchors')
-source=("http://ftp.isc.org/isc/bind9/${_pkgver}/bind-${_pkgver}.tar.gz"
- 'remove-bind.patch')
-sha1sums=('9d56db2a86dde8167f7adfb200beee0f51d771a5'
- 'bb13bd54134e4d787469be25461a3cc3f5cb57f4')
-
-replaces=('bind-tools' 'host')
-
-build() {
- cd "${srcdir}/bind-${_pkgver}"
-
- patch -p1 -i ../remove-bind.patch
- export STD_CDEFINES='-DDIG_SIGCHASE'
-
- # hack to remove unused bloat from the binaries
- CFLAGS+=' -fdata-sections -ffunction-sections'
- LDFLAGS+=' -Wl,--gc-sections'
-
- ./configure \
- --prefix=/usr \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --disable-static \
- --disable-linux-caps \
- --with-openssl \
- --with-idn \
-
- make
-}
-
-package() {
- cd "${srcdir}/bind-${_pkgver}"
- install -Dm644 COPYRIGHT "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
- cd bin; make DESTDIR="${pkgdir}" install
-}
diff --git a/core/dnsutils/remove-bind.patch b/core/dnsutils/remove-bind.patch
deleted file mode 100644
index 8d4b49848..000000000
--- a/core/dnsutils/remove-bind.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-diff -aur old/bin/Makefile.in new/bin/Makefile.in
---- old/bin/Makefile.in 2009-10-05 05:07:08.000000000 -0700
-+++ new/bin/Makefile.in 2011-08-28 19:16:17.245495043 -0700
-@@ -19,8 +19,7 @@
- VPATH = @srcdir@
- top_srcdir = @top_srcdir@
-
--SUBDIRS = named rndc dig dnssec tests tools nsupdate \
-- check confgen @PYTHON_TOOLS@ @PKCS11_TOOLS@
-+SUBDIRS = dig
- TARGETS =
-
- @BIND9_MAKE_RULES@
-diff -aur old/lib/Makefile.in new/lib/Makefile.in
---- old/lib/Makefile.in 2007-06-19 16:47:13.000000000 -0700
-+++ new/lib/Makefile.in 2011-08-28 19:17:50.828688599 -0700
-@@ -23,7 +23,7 @@
- # Attempt to disable parallel processing.
- .NOTPARALLEL:
- .NO_PARALLEL:
--SUBDIRS = isc isccc dns isccfg bind9 lwres tests
-+SUBDIRS = isc dns isccfg bind9 lwres
- TARGETS =
-
- @BIND9_MAKE_RULES@
diff --git a/core/idnkit/PKGBUILD b/core/idnkit/PKGBUILD
deleted file mode 100644
index 2a5fd256c..000000000
--- a/core/idnkit/PKGBUILD
+++ /dev/null
@@ -1,40 +0,0 @@
-# $Id: PKGBUILD 142702 2011-11-13 10:10:08Z bisson $
-# Contributor: Igor Nemilentsev <trezorg@gmail.com>
-# Maintainer: Gaetan Bisson <bisson@archlinux.org>
-
-pkgname=idnkit
-pkgver=1.0
-pkgrel=2
-pkgdesc='Provides functionalities about Internationalized Domain Name processing'
-url='http://www.nic.ad.jp/ja/idn/idnkit/download/'
-license=('custom:BSD')
-arch=('i686' 'x86_64')
-depends=('glibc')
-options=('!makeflags' '!libtool')
-source=("http://www.nic.ad.jp/ja/idn/idnkit/download/sources/idnkit-${pkgver}-src.tar.gz")
-sha1sums=('7d843ffcf9843b7af02079e5a160520f28c75048')
-
-backup=('etc/idnalias.conf' 'etc/idn.conf')
-
-build() {
- cd "${srcdir}/idnkit-${pkgver}-src"
- ./configure \
- --prefix=/usr \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --mandir=/usr/share/man \
- --enable-static=no
- make
-}
-
-check() {
- cd "${srcdir}/idnkit-${pkgver}-src"
- make check
-}
-
-package() {
- cd "${srcdir}/idnkit-${pkgver}-src"
- make DESTDIR="${pkgdir}" install
- install -Dm644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
- rm "${pkgdir}"/etc/*.sample
-}
diff --git a/core/ncurses/PKGBUILD b/core/ncurses/PKGBUILD
index af72c6073..86570733e 100644
--- a/core/ncurses/PKGBUILD
+++ b/core/ncurses/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 177037 2013-02-05 00:36:51Z allan $
+# $Id: PKGBUILD 180326 2013-03-20 13:37:40Z allan $
# Maintainer: Allan McRae <allan@archlinux.org>
# Contributor: judd <jvinet@zeroflux.org>
pkgname=ncurses
pkgver=5.9
-pkgrel=4
+pkgrel=5
pkgdesc="System V Release 4.0 curses emulation library"
arch=('i686' 'x86_64')
url="http://www.gnu.org/software/ncurses/"
@@ -25,7 +25,7 @@ build() {
# add --enable-ext-colors and --enable-ext-mouse with next soname bump
make
- # libncurses.so.5 for external binary support
+ # libraries for external binary support
cd ${srcdir}/ncurses-build
[ $CARCH = "x86_64" ] && CONFIGFLAG="--with-chtype=long"
../${pkgname}-${pkgver}/configure --prefix=/usr \
@@ -37,7 +37,7 @@ package() {
cd ${srcdir}/ncursesw-build
make DESTDIR=${pkgdir} install
- # Fool packages looking to link to non-wide-character ncurses libraries
+ # fool packages looking to link to non-wide-character ncurses libraries
for lib in ncurses form panel menu; do
echo "INPUT(-l${lib}w)" >${pkgdir}/usr/lib/lib${lib}.so
ln -s lib${lib}w.a ${pkgdir}/usr/lib/lib${lib}.a
@@ -48,16 +48,18 @@ package() {
ln -s ${lib}w.pc ${pkgdir}/usr/lib/pkgconfig/${lib}.pc
done
- # Some packages look for -lcurses during build
+ # some packages look for -lcurses during build
echo "INPUT(-lncursesw)" >${pkgdir}/usr/lib/libcursesw.so
ln -s libncurses.so ${pkgdir}/usr/lib/libcurses.so
ln -s libncursesw.a ${pkgdir}/usr/lib/libcursesw.a
ln -s libncurses.a ${pkgdir}/usr/lib/libcurses.a
- # non-widec compatibility library
- cd ${srcdir}/ncurses-build
- install -Dm755 lib/libncurses.so.${pkgver} ${pkgdir}/usr/lib/libncurses.so.${pkgver}
- ln -s libncurses.so.${pkgver} ${pkgdir}/usr/lib/libncurses.so.5
+ # non-widec compatibility libraries
+ cd ${srcdir}/ncurses-build
+ for lib in ncurses form panel menu; do
+ install -Dm755 lib/lib${lib}.so.${pkgver} ${pkgdir}/usr/lib/lib${lib}.so.${pkgver}
+ ln -s lib${lib}.so.${pkgver} ${pkgdir}/usr/lib/lib${lib}.so.5
+ done
# install license, rip it from the readme
cd ${srcdir}/${pkgname}-${pkgver}
diff --git a/core/shadow/PKGBUILD b/core/shadow/PKGBUILD
index 79fb31f1b..743c179a9 100644
--- a/core/shadow/PKGBUILD
+++ b/core/shadow/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 176249 2013-01-28 00:29:28Z allan $
+# $Id: PKGBUILD 180325 2013-03-20 12:45:26Z dreisner $
# Maintainer: Dave Reisner <dreisner@archlinux.org>
# Maintainer: Aaron Griffin <aaron@archlinux.org>
pkgname=shadow
pkgver=4.1.5.1
-pkgrel=4
+pkgrel=5
pkgdesc="Password and account management tool suite with support for shadow files and PAM"
arch=('i686' 'x86_64')
url='http://pkg-shadow.alioth.debian.org/'
@@ -44,7 +44,7 @@ sha1sums=('81f38720b953ef9c2c100c43d02dfe19cafd6c30'
'9ae93de5987dd0ae428f0cc1a5a5a5cd53583f19'
'6010fffeed1fc6673ad9875492e1193b1a847b53'
'21e12966a6befb25ec123b403cd9b5c492fe5b16'
- '87fa02bd73b774dfb6df3fd79e49efe5f48978dd')
+ 'f57ecde3f72b4738fad75c097d19cf46a412350f')
build() {
cd "$pkgname-$pkgver"
@@ -68,7 +68,8 @@ build() {
--mandir=/usr/share/man \
--sysconfdir=/etc \
--with-libpam \
- --without-selinux
+ --without-selinux \
+ --with-group-name-max-length=32
make
}
@@ -120,12 +121,13 @@ package() {
# ...and their many man pages
find "$pkgdir"/usr/share/man \
- '(' -name 'chsh.1' -o \
- -name 'chfn.1' -o \
- -name 'su.1' -o \
- -name 'login.1' -o \
- -name 'vipw.8' -o \
- -name 'vigr.8' -o \
+ '(' -name 'chsh.1' -o \
+ -name 'chfn.1' -o \
+ -name 'su.1' -o \
+ -name 'logoutd.8' -o \
+ -name 'login.1' -o \
+ -name 'vipw.8' -o \
+ -name 'vigr.8' -o \
-name 'newgrp.1' ')' \
-delete
rmdir \
diff --git a/core/shadow/lastlog.tmpfiles b/core/shadow/lastlog.tmpfiles
index d1602a729..9c07b39f2 100644
--- a/core/shadow/lastlog.tmpfiles
+++ b/core/shadow/lastlog.tmpfiles
@@ -1 +1 @@
-f /var/log/lastlog
+f /var/log/lastlog 0644 root root