[arch-commits] Commit in emelfm2/repos (6 files)

Giovanni Scafora giovanni at archlinux.org
Mon Feb 27 17:34:40 UTC 2012


    Date: Monday, February 27, 2012 @ 12:34:40
  Author: giovanni
Revision: 151556

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  emelfm2/repos/extra-i686/PKGBUILD
    (from rev 151555, emelfm2/trunk/PKGBUILD)
  emelfm2/repos/extra-i686/emelfm2-0.8.0-dsofix.patch
    (from rev 151555, emelfm2/trunk/emelfm2-0.8.0-dsofix.patch)
  emelfm2/repos/extra-x86_64/PKGBUILD
    (from rev 151555, emelfm2/trunk/PKGBUILD)
  emelfm2/repos/extra-x86_64/emelfm2-0.8.0-dsofix.patch
    (from rev 151555, emelfm2/trunk/emelfm2-0.8.0-dsofix.patch)
Deleted:
  emelfm2/repos/extra-i686/PKGBUILD
  emelfm2/repos/extra-x86_64/PKGBUILD

-----------------------------------------+
 extra-i686/PKGBUILD                     |   57 +++++++++++++++---------------
 extra-i686/emelfm2-0.8.0-dsofix.patch   |   11 +++++
 extra-x86_64/PKGBUILD                   |   57 +++++++++++++++---------------
 extra-x86_64/emelfm2-0.8.0-dsofix.patch |   11 +++++
 4 files changed, 82 insertions(+), 54 deletions(-)

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD	2012-02-27 17:34:17 UTC (rev 151555)
+++ extra-i686/PKGBUILD	2012-02-27 17:34:40 UTC (rev 151556)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Kevin Piche <kevin at archlinux.org>
-# Contributor: contrasutra
-
-pkgname=emelfm2
-pkgver=0.8.0
-pkgrel=1
-pkgdesc="A file manager that implements the popular two-pane design"
-arch=(i686 x86_64)
-url="http://emelfm2.net/"
-depends=('gtk2')
-license=('GPL')
-source=(http://emelfm2.net/rel/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('8490d501e19009860f53ac6a98db74c1')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make PREFIX=/usr
-  make PREFIX=${pkgdir}/usr install
-  make PREFIX=${pkgdir}/usr install_i18n
-
-  install -m 755 ${pkgdir}/usr/share/pixmaps/emelfm2/emelfm2_48.png \
-      ${pkgdir}/usr/share/pixmaps/emelfm2.png
-  sed -e '/Icon=/ s^emelfm2/emelfm2_48.png^emelfm2.png^' \
-      -e '/Categories=/ s^;$^;Application;Utility;^' \
-      -i ${pkgdir}/usr/share/applications/emelfm2.desktop
-}

Copied: emelfm2/repos/extra-i686/PKGBUILD (from rev 151555, emelfm2/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD	                        (rev 0)
+++ extra-i686/PKGBUILD	2012-02-27 17:34:40 UTC (rev 151556)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Kevin Piche <kevin at archlinux.org>
+# Contributor: contrasutra
+
+pkgname=emelfm2
+pkgver=0.8.0
+pkgrel=2
+pkgdesc="A file manager that implements the popular two-pane design"
+arch=(i686 x86_64)
+url="http://emelfm2.net/"
+depends=('gtk2')
+license=('GPL')
+source=("http://emelfm2.net/rel/${pkgname}-${pkgver}.tar.bz2"
+        'emelfm2-0.8.0-dsofix.patch')
+md5sums=('8490d501e19009860f53ac6a98db74c1'
+         '0a6252eda0c3a98ba693148dfdd6ccba')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i "${srcdir}/emelfm2-0.8.0-dsofix.patch"
+  make PREFIX=/usr
+  make PREFIX=${pkgdir}/usr install
+  make PREFIX=${pkgdir}/usr install_i18n
+
+  install -m 755 ${pkgdir}/usr/share/pixmaps/emelfm2/emelfm2_48.png \
+      ${pkgdir}/usr/share/pixmaps/emelfm2.png
+  sed -e '/Icon=/ s^emelfm2/emelfm2_48.png^emelfm2.png^' \
+      -e '/Categories=/ s^;$^;Application;Utility;^' \
+      -i ${pkgdir}/usr/share/applications/emelfm2.desktop
+}

Copied: emelfm2/repos/extra-i686/emelfm2-0.8.0-dsofix.patch (from rev 151555, emelfm2/trunk/emelfm2-0.8.0-dsofix.patch)
===================================================================
--- extra-i686/emelfm2-0.8.0-dsofix.patch	                        (rev 0)
+++ extra-i686/emelfm2-0.8.0-dsofix.patch	2012-02-27 17:34:40 UTC (rev 151556)
@@ -0,0 +1,11 @@
+--- a/Makefile	2011-06-06 11:10:28.000000000 +0200
++++ b/Makefile	2012-02-27 18:20:11.000000000 +0100
+@@ -382,7 +382,7 @@
+ 
+ $(TARGET): $(OBJECTS)
+ 	@echo "linking binary '$(TARGET)'"
+-	@$(CC) $(LDFLAGS) $(OBJECTS) -o $(TARGET) -Wl,--as-needed $(lLIBS)
++	@$(CC) $(LDFLAGS) $(OBJECTS) -o $(TARGET) -lm -ldl -Wl,--as-needed $(lLIBS)
+ ifeq ($(STRIP), 1)
+ ifneq ($(DEBUG), 1)
+ 	@echo "stripping binary '$(TARGET)'"

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD	2012-02-27 17:34:17 UTC (rev 151555)
+++ extra-x86_64/PKGBUILD	2012-02-27 17:34:40 UTC (rev 151556)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Kevin Piche <kevin at archlinux.org>
-# Contributor: contrasutra
-
-pkgname=emelfm2
-pkgver=0.8.0
-pkgrel=1
-pkgdesc="A file manager that implements the popular two-pane design"
-arch=(i686 x86_64)
-url="http://emelfm2.net/"
-depends=('gtk2')
-license=('GPL')
-source=(http://emelfm2.net/rel/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('8490d501e19009860f53ac6a98db74c1')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make PREFIX=/usr
-  make PREFIX=${pkgdir}/usr install
-  make PREFIX=${pkgdir}/usr install_i18n
-
-  install -m 755 ${pkgdir}/usr/share/pixmaps/emelfm2/emelfm2_48.png \
-      ${pkgdir}/usr/share/pixmaps/emelfm2.png
-  sed -e '/Icon=/ s^emelfm2/emelfm2_48.png^emelfm2.png^' \
-      -e '/Categories=/ s^;$^;Application;Utility;^' \
-      -i ${pkgdir}/usr/share/applications/emelfm2.desktop
-}

Copied: emelfm2/repos/extra-x86_64/PKGBUILD (from rev 151555, emelfm2/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD	                        (rev 0)
+++ extra-x86_64/PKGBUILD	2012-02-27 17:34:40 UTC (rev 151556)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Kevin Piche <kevin at archlinux.org>
+# Contributor: contrasutra
+
+pkgname=emelfm2
+pkgver=0.8.0
+pkgrel=2
+pkgdesc="A file manager that implements the popular two-pane design"
+arch=(i686 x86_64)
+url="http://emelfm2.net/"
+depends=('gtk2')
+license=('GPL')
+source=("http://emelfm2.net/rel/${pkgname}-${pkgver}.tar.bz2"
+        'emelfm2-0.8.0-dsofix.patch')
+md5sums=('8490d501e19009860f53ac6a98db74c1'
+         '0a6252eda0c3a98ba693148dfdd6ccba')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i "${srcdir}/emelfm2-0.8.0-dsofix.patch"
+  make PREFIX=/usr
+  make PREFIX=${pkgdir}/usr install
+  make PREFIX=${pkgdir}/usr install_i18n
+
+  install -m 755 ${pkgdir}/usr/share/pixmaps/emelfm2/emelfm2_48.png \
+      ${pkgdir}/usr/share/pixmaps/emelfm2.png
+  sed -e '/Icon=/ s^emelfm2/emelfm2_48.png^emelfm2.png^' \
+      -e '/Categories=/ s^;$^;Application;Utility;^' \
+      -i ${pkgdir}/usr/share/applications/emelfm2.desktop
+}

Copied: emelfm2/repos/extra-x86_64/emelfm2-0.8.0-dsofix.patch (from rev 151555, emelfm2/trunk/emelfm2-0.8.0-dsofix.patch)
===================================================================
--- extra-x86_64/emelfm2-0.8.0-dsofix.patch	                        (rev 0)
+++ extra-x86_64/emelfm2-0.8.0-dsofix.patch	2012-02-27 17:34:40 UTC (rev 151556)
@@ -0,0 +1,11 @@
+--- a/Makefile	2011-06-06 11:10:28.000000000 +0200
++++ b/Makefile	2012-02-27 18:20:11.000000000 +0100
+@@ -382,7 +382,7 @@
+ 
+ $(TARGET): $(OBJECTS)
+ 	@echo "linking binary '$(TARGET)'"
+-	@$(CC) $(LDFLAGS) $(OBJECTS) -o $(TARGET) -Wl,--as-needed $(lLIBS)
++	@$(CC) $(LDFLAGS) $(OBJECTS) -o $(TARGET) -lm -ldl -Wl,--as-needed $(lLIBS)
+ ifeq ($(STRIP), 1)
+ ifneq ($(DEBUG), 1)
+ 	@echo "stripping binary '$(TARGET)'"




More information about the arch-commits mailing list