[arch-commits] Commit in mtr/repos (6 files)
Ionuț Mircea Bîru
ioni at nymeria.archlinux.org
Tue Apr 9 18:07:19 UTC 2013
Date: Tuesday, April 9, 2013 @ 20:07:19
Author: ioni
Revision: 182370
archrelease: copy trunk to extra-i686, extra-x86_64
Added:
mtr/repos/extra-i686/PKGBUILD
(from rev 182369, mtr/trunk/PKGBUILD)
mtr/repos/extra-x86_64/PKGBUILD
(from rev 182369, mtr/trunk/PKGBUILD)
Deleted:
mtr/repos/extra-i686/PKGBUILD
mtr/repos/extra-i686/mtr-glib2.patch
mtr/repos/extra-x86_64/PKGBUILD
mtr/repos/extra-x86_64/mtr-glib2.patch
------------------------------+
/PKGBUILD | 84 +++++++++++++++++++++++++++++++++++++++++
extra-i686/PKGBUILD | 47 ----------------------
extra-i686/mtr-glib2.patch | 26 ------------
extra-x86_64/PKGBUILD | 47 ----------------------
extra-x86_64/mtr-glib2.patch | 26 ------------
5 files changed, 84 insertions(+), 146 deletions(-)
Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD 2013-04-09 18:06:50 UTC (rev 182369)
+++ extra-i686/PKGBUILD 2013-04-09 18:07:19 UTC (rev 182370)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru <ibiru at archlinux.org>
-# Contributor: Douglas Soares de Andrade <douglas at archlinux.org>
-
-pkgbase=mtr
-pkgname=(mtr mtr-gtk)
-pkgver=0.83
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('GPL')
-makedepends=('ncurses' 'gtk2')
-source=(ftp://ftp.bitwizard.nl/mtr/$pkgbase-$pkgver.tar.gz
- mtr-glib2.patch)
-url="http://www.bitwizard.nl/mtr/"
-md5sums=('2e3a40f2da47748ad0053a5d678b9b4a'
- '6bce08e1de7c6835bdda893847981bc8')
-
-build() {
- patch -Np0 -i mtr-glib2.patch
- cp -r $pkgbase-$pkgver $pkgbase-cli
- cd mtr-cli
- ./bootstrap.sh
- ./configure --prefix=/usr --without-gtk
- make
-
- cd "$srcdir/$pkgbase-$pkgver"
- ./bootstrap.sh
- ./configure --prefix=/usr
- make
-}
-
-package_mtr() {
- pkgdesc="Combines the functionality of traceroute and ping into one tool (CLI version)"
- depends=('ncurses' 'glib2')
- cd mtr-cli
- make DESTDIR="$pkgdir" install
-}
-
-package_mtr-gtk() {
- pkgdesc="Combines the functionality of traceroute and ping into one tool (GTK version)"
- depends=('ncurses' "gtk2")
- conflicts=("mtr")
- provides=("mtr=$pkgver")
-
- cd $pkgbase-$pkgver
- make DESTDIR="$pkgdir" install
-}
Copied: mtr/repos/extra-i686/PKGBUILD (from rev 182369, mtr/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-04-09 18:07:19 UTC (rev 182370)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer : Ionut Biru <ibiru at archlinux.org>
+# Contributor: Douglas Soares de Andrade <douglas at archlinux.org>
+
+pkgbase=mtr
+pkgname=(mtr mtr-gtk)
+pkgver=0.84
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('GPL')
+makedepends=('ncurses' 'gtk2')
+source=(ftp://ftp.bitwizard.nl/mtr/$pkgbase-$pkgver.tar.gz)
+url="http://www.bitwizard.nl/mtr/"
+md5sums=('df61096ae1b18b27f915feeb907ae48c')
+
+build() {
+ cp -r $pkgbase-$pkgver $pkgbase-cli
+ cd mtr-cli
+ ./configure --prefix=/usr --without-gtk
+ make
+
+ cd "$srcdir/$pkgbase-$pkgver"
+ ./configure --prefix=/usr
+ make
+}
+
+package_mtr() {
+ pkgdesc="Combines the functionality of traceroute and ping into one tool (CLI version)"
+ depends=('ncurses' 'glib2')
+ cd mtr-cli
+ make DESTDIR="$pkgdir" install
+}
+
+package_mtr-gtk() {
+ pkgdesc="Combines the functionality of traceroute and ping into one tool (GTK version)"
+ depends=('ncurses' "gtk2")
+ conflicts=("mtr")
+ provides=("mtr=$pkgver")
+
+ cd $pkgbase-$pkgver
+ make DESTDIR="$pkgdir" install
+}
Deleted: extra-i686/mtr-glib2.patch
===================================================================
--- extra-i686/mtr-glib2.patch 2013-04-09 18:06:50 UTC (rev 182369)
+++ extra-i686/mtr-glib2.patch 2013-04-09 18:07:19 UTC (rev 182370)
@@ -1,26 +0,0 @@
-diff -up mtr-0.83/configure.in.glib2 mtr-0.83/configure.in
---- mtr-0.83/configure.in.glib2 2013-02-18 20:10:00.767417356 +0100
-+++ mtr-0.83/configure.in 2013-02-18 20:10:53.549513018 +0100
-@@ -59,6 +59,8 @@ else
- GTK_OBJ=""
- fi
-
-+PKG_CHECK_MODULES([GLIB2], [glib-2.0])
-+
- AC_CHECK_FUNC(socket, ,
- AC_CHECK_LIB(socket, socket, , AC_MSG_ERROR(No socket library found)))
-
-diff -up mtr-0.83/Makefile.am.glib2 mtr-0.83/Makefile.am
---- mtr-0.83/Makefile.am.glib2 2013-02-18 20:13:54.635841512 +0100
-+++ mtr-0.83/Makefile.am 2013-02-18 20:16:17.877101679 +0100
-@@ -19,8 +19,9 @@ mtr_SOURCES = mtr.c \
- mtr-gtk.h
- EXTRA_mtr_SOURCES = curses.c \
- gtk.c
-+AM_CFLAGS = $(GLIB2_CFLAGS)
- mtr_DEPENDENCIES = $(GTK_OBJ) $(CURSES_OBJ)
--mtr_LDFLAGS = $(GTK_OBJ) $(CURSES_OBJ)
-+mtr_LDFLAGS = $(GTK_OBJ) $(GLIB2_LIBS) $(CURSES_OBJ)
-
- EXTRA_DIST = SECURITY mtr.8 Makefile Makefile.dist
- distclean-local:
Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD 2013-04-09 18:06:50 UTC (rev 182369)
+++ extra-x86_64/PKGBUILD 2013-04-09 18:07:19 UTC (rev 182370)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru <ibiru at archlinux.org>
-# Contributor: Douglas Soares de Andrade <douglas at archlinux.org>
-
-pkgbase=mtr
-pkgname=(mtr mtr-gtk)
-pkgver=0.83
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('GPL')
-makedepends=('ncurses' 'gtk2')
-source=(ftp://ftp.bitwizard.nl/mtr/$pkgbase-$pkgver.tar.gz
- mtr-glib2.patch)
-url="http://www.bitwizard.nl/mtr/"
-md5sums=('2e3a40f2da47748ad0053a5d678b9b4a'
- '6bce08e1de7c6835bdda893847981bc8')
-
-build() {
- patch -Np0 -i mtr-glib2.patch
- cp -r $pkgbase-$pkgver $pkgbase-cli
- cd mtr-cli
- ./bootstrap.sh
- ./configure --prefix=/usr --without-gtk
- make
-
- cd "$srcdir/$pkgbase-$pkgver"
- ./bootstrap.sh
- ./configure --prefix=/usr
- make
-}
-
-package_mtr() {
- pkgdesc="Combines the functionality of traceroute and ping into one tool (CLI version)"
- depends=('ncurses' 'glib2')
- cd mtr-cli
- make DESTDIR="$pkgdir" install
-}
-
-package_mtr-gtk() {
- pkgdesc="Combines the functionality of traceroute and ping into one tool (GTK version)"
- depends=('ncurses' "gtk2")
- conflicts=("mtr")
- provides=("mtr=$pkgver")
-
- cd $pkgbase-$pkgver
- make DESTDIR="$pkgdir" install
-}
Copied: mtr/repos/extra-x86_64/PKGBUILD (from rev 182369, mtr/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD (rev 0)
+++ extra-x86_64/PKGBUILD 2013-04-09 18:07:19 UTC (rev 182370)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer : Ionut Biru <ibiru at archlinux.org>
+# Contributor: Douglas Soares de Andrade <douglas at archlinux.org>
+
+pkgbase=mtr
+pkgname=(mtr mtr-gtk)
+pkgver=0.84
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('GPL')
+makedepends=('ncurses' 'gtk2')
+source=(ftp://ftp.bitwizard.nl/mtr/$pkgbase-$pkgver.tar.gz)
+url="http://www.bitwizard.nl/mtr/"
+md5sums=('df61096ae1b18b27f915feeb907ae48c')
+
+build() {
+ cp -r $pkgbase-$pkgver $pkgbase-cli
+ cd mtr-cli
+ ./configure --prefix=/usr --without-gtk
+ make
+
+ cd "$srcdir/$pkgbase-$pkgver"
+ ./configure --prefix=/usr
+ make
+}
+
+package_mtr() {
+ pkgdesc="Combines the functionality of traceroute and ping into one tool (CLI version)"
+ depends=('ncurses' 'glib2')
+ cd mtr-cli
+ make DESTDIR="$pkgdir" install
+}
+
+package_mtr-gtk() {
+ pkgdesc="Combines the functionality of traceroute and ping into one tool (GTK version)"
+ depends=('ncurses' "gtk2")
+ conflicts=("mtr")
+ provides=("mtr=$pkgver")
+
+ cd $pkgbase-$pkgver
+ make DESTDIR="$pkgdir" install
+}
Deleted: extra-x86_64/mtr-glib2.patch
===================================================================
--- extra-x86_64/mtr-glib2.patch 2013-04-09 18:06:50 UTC (rev 182369)
+++ extra-x86_64/mtr-glib2.patch 2013-04-09 18:07:19 UTC (rev 182370)
@@ -1,26 +0,0 @@
-diff -up mtr-0.83/configure.in.glib2 mtr-0.83/configure.in
---- mtr-0.83/configure.in.glib2 2013-02-18 20:10:00.767417356 +0100
-+++ mtr-0.83/configure.in 2013-02-18 20:10:53.549513018 +0100
-@@ -59,6 +59,8 @@ else
- GTK_OBJ=""
- fi
-
-+PKG_CHECK_MODULES([GLIB2], [glib-2.0])
-+
- AC_CHECK_FUNC(socket, ,
- AC_CHECK_LIB(socket, socket, , AC_MSG_ERROR(No socket library found)))
-
-diff -up mtr-0.83/Makefile.am.glib2 mtr-0.83/Makefile.am
---- mtr-0.83/Makefile.am.glib2 2013-02-18 20:13:54.635841512 +0100
-+++ mtr-0.83/Makefile.am 2013-02-18 20:16:17.877101679 +0100
-@@ -19,8 +19,9 @@ mtr_SOURCES = mtr.c \
- mtr-gtk.h
- EXTRA_mtr_SOURCES = curses.c \
- gtk.c
-+AM_CFLAGS = $(GLIB2_CFLAGS)
- mtr_DEPENDENCIES = $(GTK_OBJ) $(CURSES_OBJ)
--mtr_LDFLAGS = $(GTK_OBJ) $(CURSES_OBJ)
-+mtr_LDFLAGS = $(GTK_OBJ) $(GLIB2_LIBS) $(CURSES_OBJ)
-
- EXTRA_DIST = SECURITY mtr.8 Makefile Makefile.dist
- distclean-local:
More information about the arch-commits
mailing list