[arch-commits] Commit in links/repos (3 files)

2020-08-06 Thread Christian Hesse via arch-commits
Date: Thursday, August 6, 2020 @ 19:57:46
  Author: eworm
Revision: 393217

archrelease: copy trunk to testing-x86_64

Added:
  links/repos/testing-x86_64/
  links/repos/testing-x86_64/PKGBUILD
(from rev 393216, links/trunk/PKGBUILD)
  links/repos/testing-x86_64/links.desktop
(from rev 393216, links/trunk/links.desktop)

---+
 PKGBUILD  |   65 
 links.desktop |8 ++
 2 files changed, 73 insertions(+)

Copied: links/repos/testing-x86_64/PKGBUILD (from rev 393216, 
links/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-08-06 19:57:46 UTC (rev 393217)
@@ -0,0 +1,65 @@
+# Maintainer: Christian Hesse 
+# Contributor: Eric Bélanger 
+
+pkgname=links
+pkgver=2.21
+pkgrel=1
+pkgdesc="A text WWW browser, similar to Lynx"
+arch=('x86_64')
+url="http://links.twibright.com/";
+license=('GPL')
+depends=('bzip2' 'gpm' 'libevent' 'pcre' 'xz')
+makedepends=('libtiff' 'libpng' 'libxt' 'librsvg')
+optdepends=('libx11: for using xlinks'
+   'libtiff: for using xlinks'
+   'libpng: for using xlinks'
+   'librsvg: for using xlinks')
+source=("http://links.twibright.com/download/${pkgname}-${pkgver}.tar.bz2";
+'links.desktop')
+sha256sums=('285eed8591c7781ec26213df82786665aaa1b9286782e8a7a1a7e2a6e1630d63'
+'f96bf2638e9c309bfdb857bd62a732b980231b3a683cd585ec872b249c2c1b19')
+
+configure_options=(
+  --prefix=/usr
+  --mandir=/usr/share/man
+  --disable-javascript
+)
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" configure
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  (cd intl; ./gen-intl; ./synclang)
+  ./configure \
+"${configure_options[@]}" \
+--enable-graphics \
+--with-x \
+--with-fb
+  make
+  mv links xlinks
+
+  ./configure \
+"${configure_options[@]}" \
+--disable-graphics \
+--without-x \
+--without-fb
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -D -m0755 xlinks "${pkgdir}/usr/bin/xlinks"
+  ln -s links.1.gz "${pkgdir}/usr/share/man/man1/xlinks.1.gz"
+
+  install -D -m0644 "${srcdir}/links.desktop" 
"${pkgdir}/usr/share/applications/links.desktop"
+  install -d "${pkgdir}/usr/share/pixmaps"
+  install -m0644 links_16x16_1.xpm links_16x16_2.xpm links_32x32.xpm 
links-48x48.xpm "${pkgdir}/usr/share/pixmaps/"
+
+  install -d "${pkgdir}/usr/share/doc/links/calibration"
+  install -m0644 doc/links_cal/* "${pkgdir}/usr/share/doc/links/calibration/"
+}

Copied: links/repos/testing-x86_64/links.desktop (from rev 393216, 
links/trunk/links.desktop)
===
--- testing-x86_64/links.desktop(rev 0)
+++ testing-x86_64/links.desktop2020-08-06 19:57:46 UTC (rev 393217)
@@ -0,0 +1,8 @@
+[Desktop Entry]
+Name=Links
+Comment=Minimal web browser in graphical mode
+Exec=xlinks -g
+Icon=links-48x48.xpm
+Type=Application
+Terminal=false
+Categories=Network;WebBrowser;


[arch-commits] Commit in links/repos (3 files)

2020-06-04 Thread Christian Hesse via arch-commits
Date: Thursday, June 4, 2020 @ 11:44:09
  Author: eworm
Revision: 388274

archrelease: copy trunk to testing-x86_64

Added:
  links/repos/testing-x86_64/
  links/repos/testing-x86_64/PKGBUILD
(from rev 388273, links/trunk/PKGBUILD)
  links/repos/testing-x86_64/links.desktop
(from rev 388273, links/trunk/links.desktop)

---+
 PKGBUILD  |   65 
 links.desktop |8 ++
 2 files changed, 73 insertions(+)

Copied: links/repos/testing-x86_64/PKGBUILD (from rev 388273, 
links/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-06-04 11:44:09 UTC (rev 388274)
@@ -0,0 +1,65 @@
+# Maintainer: Christian Hesse 
+# Contributor: Eric Bélanger 
+
+pkgname=links
+pkgver=2.20.2
+pkgrel=4
+pkgdesc="A text WWW browser, similar to Lynx"
+arch=('x86_64')
+url="http://links.twibright.com/";
+license=('GPL')
+depends=('bzip2' 'gpm' 'libevent' 'pcre' 'xz')
+makedepends=('libtiff' 'libpng' 'libxt' 'librsvg')
+optdepends=('libx11: for using xlinks'
+   'libtiff: for using xlinks'
+   'libpng: for using xlinks'
+   'librsvg: for using xlinks')
+source=("http://links.twibright.com/download/${pkgname}-${pkgver}.tar.bz2";
+'links.desktop')
+sha256sums=('4b4f07d0e6261118d1365a5a5bfa31e1eafdbd280cfae6f0e9eedfea51a2f424'
+'f96bf2638e9c309bfdb857bd62a732b980231b3a683cd585ec872b249c2c1b19')
+
+configure_options=(
+  --prefix=/usr
+  --mandir=/usr/share/man
+  --disable-javascript
+)
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" configure
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  (cd intl; ./gen-intl; ./synclang)
+  ./configure \
+"${configure_options[@]}" \
+--enable-graphics \
+--with-x \
+--with-fb
+  make
+  mv links xlinks
+
+  ./configure \
+"${configure_options[@]}" \
+--disable-graphics \
+--without-x \
+--without-fb
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -D -m0755 xlinks "${pkgdir}/usr/bin/xlinks"
+  ln -s links.1.gz "${pkgdir}/usr/share/man/man1/xlinks.1.gz"
+
+  install -D -m0644 "${srcdir}/links.desktop" 
"${pkgdir}/usr/share/applications/links.desktop"
+  install -d "${pkgdir}/usr/share/pixmaps"
+  install -m0644 links_16x16_1.xpm links_16x16_2.xpm links_32x32.xpm 
links-48x48.xpm "${pkgdir}/usr/share/pixmaps/"
+
+  install -d "${pkgdir}/usr/share/doc/links/calibration"
+  install -m0644 doc/links_cal/* "${pkgdir}/usr/share/doc/links/calibration/"
+}

Copied: links/repos/testing-x86_64/links.desktop (from rev 388273, 
links/trunk/links.desktop)
===
--- testing-x86_64/links.desktop(rev 0)
+++ testing-x86_64/links.desktop2020-06-04 11:44:09 UTC (rev 388274)
@@ -0,0 +1,8 @@
+[Desktop Entry]
+Name=Links
+Comment=Minimal web browser in graphical mode
+Exec=xlinks -g
+Icon=links-48x48.xpm
+Type=Application
+Terminal=false
+Categories=Network;WebBrowser;


[arch-commits] Commit in links/repos (3 files)

2020-06-02 Thread Christian Hesse via arch-commits
Date: Tuesday, June 2, 2020 @ 07:21:24
  Author: eworm
Revision: 388053

archrelease: copy trunk to testing-x86_64

Added:
  links/repos/testing-x86_64/
  links/repos/testing-x86_64/PKGBUILD
(from rev 388052, links/trunk/PKGBUILD)
  links/repos/testing-x86_64/links.desktop
(from rev 388052, links/trunk/links.desktop)

---+
 PKGBUILD  |   65 
 links.desktop |7 ++
 2 files changed, 72 insertions(+)

Copied: links/repos/testing-x86_64/PKGBUILD (from rev 388052, 
links/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-06-02 07:21:24 UTC (rev 388053)
@@ -0,0 +1,65 @@
+# Maintainer: Christian Hesse 
+# Contributor: Eric Bélanger 
+
+pkgname=links
+pkgver=2.20.2
+pkgrel=3
+pkgdesc="A text WWW browser, similar to Lynx"
+arch=('x86_64')
+url="http://links.twibright.com/";
+license=('GPL')
+depends=('bzip2' 'gpm' 'libevent' 'pcre' 'xz')
+makedepends=('libtiff' 'libpng' 'libxt' 'librsvg')
+optdepends=('libx11: for using xlinks'
+   'libtiff: for using xlinks'
+   'libpng: for using xlinks'
+   'librsvg: for using xlinks')
+source=("http://links.twibright.com/download/${pkgname}-${pkgver}.tar.bz2";
+'links.desktop')
+sha256sums=('4b4f07d0e6261118d1365a5a5bfa31e1eafdbd280cfae6f0e9eedfea51a2f424'
+'ea492eb7184b54b9308b90f198e8ae53668c51b821e38ea3f21282962a417ec6')
+
+configure_options=(
+  --prefix=/usr
+  --mandir=/usr/share/man
+  --disable-javascript
+)
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" configure
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  (cd intl; ./gen-intl; ./synclang)
+  ./configure \
+"${configure_options[@]}" \
+--enable-graphics \
+--with-x \
+--with-fb
+  make
+  mv links xlinks
+
+  ./configure \
+"${configure_options[@]}" \
+--disable-graphics \
+--without-x \
+--without-fb
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -D -m0755 xlinks "${pkgdir}/usr/bin/xlinks"
+  ln -s links.1.gz "${pkgdir}/usr/share/man/man1/xlinks.1.gz"
+
+  install -D -m0644 "${srcdir}/links.desktop" 
"${pkgdir}/usr/share/applications/links.desktop"
+  install -d "${pkgdir}/usr/share/pixmaps"
+  install -m0644 links_16x16_1.xpm links_16x16_2.xpm links_32x32.xpm 
links-48x48.xpm "${pkgdir}/usr/share/pixmaps/"
+
+  install -d "${pkgdir}/usr/share/doc/links/calibration"
+  install -m0644 doc/links_cal/* "${pkgdir}/usr/share/doc/links/calibration/"
+}

Copied: links/repos/testing-x86_64/links.desktop (from rev 388052, 
links/trunk/links.desktop)
===
--- testing-x86_64/links.desktop(rev 0)
+++ testing-x86_64/links.desktop2020-06-02 07:21:24 UTC (rev 388053)
@@ -0,0 +1,7 @@
+[Desktop Entry]
+Name=Links
+Exec=xlinks -g
+Icon=links-48x48.xpm
+Type=Application
+Terminal=false
+Categories=Network;WebBrowser;


[arch-commits] Commit in links/repos (3 files)

2019-11-13 Thread Felix Yan via arch-commits
Date: Wednesday, November 13, 2019 @ 16:01:58
  Author: felixonmars
Revision: 368148

archrelease: copy trunk to staging-x86_64

Added:
  links/repos/staging-x86_64/
  links/repos/staging-x86_64/PKGBUILD
(from rev 368147, links/trunk/PKGBUILD)
  links/repos/staging-x86_64/links.desktop
(from rev 368147, links/trunk/links.desktop)

---+
 PKGBUILD  |   65 
 links.desktop |7 ++
 2 files changed, 72 insertions(+)

Copied: links/repos/staging-x86_64/PKGBUILD (from rev 368147, 
links/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-11-13 16:01:58 UTC (rev 368148)
@@ -0,0 +1,65 @@
+# Maintainer: Christian Hesse 
+# Contributor: Eric Bélanger 
+
+pkgname=links
+pkgver=2.20.2
+pkgrel=2
+pkgdesc="A text WWW browser, similar to Lynx"
+arch=('x86_64')
+url="http://links.twibright.com/";
+license=('GPL')
+depends=('bzip2' 'gpm' 'libevent' 'pcre' 'xz')
+makedepends=('libtiff' 'libpng' 'libxt' 'librsvg')
+optdepends=('libx11: for using xlinks'
+   'libtiff: for using xlinks'
+   'libpng: for using xlinks'
+   'librsvg: for using xlinks')
+source=("http://links.twibright.com/download/${pkgname}-${pkgver}.tar.bz2";
+'links.desktop')
+sha256sums=('4b4f07d0e6261118d1365a5a5bfa31e1eafdbd280cfae6f0e9eedfea51a2f424'
+'484571172aa19cf91c4ce9d9528a4ac52e9252d6e741897e7339880aa30dbc88')
+
+configure_options=(
+  --prefix=/usr
+  --mandir=/usr/share/man
+  --disable-javascript
+)
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" configure
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  (cd intl; ./gen-intl; ./synclang)
+  ./configure \
+"${configure_options[@]}" \
+--enable-graphics \
+--with-x \
+--with-fb
+  make
+  mv links xlinks
+
+  ./configure \
+"${configure_options[@]}" \
+--disable-graphics \
+--without-x \
+--without-fb
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -D -m0755 xlinks "${pkgdir}/usr/bin/xlinks"
+  ln -s links.1.gz "${pkgdir}/usr/share/man/man1/xlinks.1.gz"
+
+  install -D -m0644 "${srcdir}/links.desktop" 
"${pkgdir}/usr/share/applications/links.desktop"
+  install -d "${pkgdir}/usr/share/pixmaps"
+  install -m0644 links_16x16_1.xpm links_16x16_2.xpm links_32x32.xpm 
"${pkgdir}/usr/share/pixmaps/"
+
+  install -d "${pkgdir}/usr/share/doc/links/calibration"
+  install -m0644 doc/links_cal/* "${pkgdir}/usr/share/doc/links/calibration/"
+}

Copied: links/repos/staging-x86_64/links.desktop (from rev 368147, 
links/trunk/links.desktop)
===
--- staging-x86_64/links.desktop(rev 0)
+++ staging-x86_64/links.desktop2019-11-13 16:01:58 UTC (rev 368148)
@@ -0,0 +1,7 @@
+[Desktop Entry]
+Name=Links
+Exec=xlinks -g
+Icon=links_32x32.xpm
+Type=Application
+Terminal=false
+Categories=Network;WebBrowser;


[arch-commits] Commit in links/repos (3 files)

2019-09-26 Thread Christian Hesse via arch-commits
Date: Thursday, September 26, 2019 @ 19:23:40
  Author: eworm
Revision: 363468

archrelease: copy trunk to testing-x86_64

Added:
  links/repos/testing-x86_64/
  links/repos/testing-x86_64/PKGBUILD
(from rev 363467, links/trunk/PKGBUILD)
  links/repos/testing-x86_64/links.desktop
(from rev 363467, links/trunk/links.desktop)

---+
 PKGBUILD  |   65 
 links.desktop |7 ++
 2 files changed, 72 insertions(+)

Copied: links/repos/testing-x86_64/PKGBUILD (from rev 363467, 
links/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-09-26 19:23:40 UTC (rev 363468)
@@ -0,0 +1,65 @@
+# Maintainer: Christian Hesse 
+# Contributor: Eric Bélanger 
+
+pkgname=links
+pkgver=2.20.2
+pkgrel=1
+pkgdesc="A text WWW browser, similar to Lynx"
+arch=('x86_64')
+url="http://links.twibright.com/";
+license=('GPL')
+depends=('bzip2' 'gpm' 'libevent' 'pcre' 'xz')
+makedepends=('libtiff' 'libpng' 'libxt' 'librsvg')
+optdepends=('libx11: for using xlinks'
+   'libtiff: for using xlinks'
+   'libpng: for using xlinks'
+   'librsvg: for using xlinks')
+source=("http://links.twibright.com/download/${pkgname}-${pkgver}.tar.bz2";
+'links.desktop')
+sha256sums=('4b4f07d0e6261118d1365a5a5bfa31e1eafdbd280cfae6f0e9eedfea51a2f424'
+'484571172aa19cf91c4ce9d9528a4ac52e9252d6e741897e7339880aa30dbc88')
+
+configure_options=(
+  --prefix=/usr
+  --mandir=/usr/share/man
+  --disable-javascript
+)
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" configure
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  (cd intl; ./gen-intl; ./synclang)
+  ./configure \
+"${configure_options[@]}" \
+--enable-graphics \
+--with-x \
+--with-fb
+  make
+  mv links xlinks
+
+  ./configure \
+"${configure_options[@]}" \
+--disable-graphics \
+--without-x \
+--without-fb
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -D -m0755 xlinks "${pkgdir}/usr/bin/xlinks"
+  ln -s links.1.gz "${pkgdir}/usr/share/man/man1/xlinks.1.gz"
+
+  install -D -m0644 "${srcdir}/links.desktop" 
"${pkgdir}/usr/share/applications/links.desktop"
+  install -d "${pkgdir}/usr/share/pixmaps"
+  install -m0644 links_16x16_1.xpm links_16x16_2.xpm links_32x32.xpm 
"${pkgdir}/usr/share/pixmaps/"
+
+  install -d "${pkgdir}/usr/share/doc/links/calibration"
+  install -m0644 doc/links_cal/* "${pkgdir}/usr/share/doc/links/calibration/"
+}

Copied: links/repos/testing-x86_64/links.desktop (from rev 363467, 
links/trunk/links.desktop)
===
--- testing-x86_64/links.desktop(rev 0)
+++ testing-x86_64/links.desktop2019-09-26 19:23:40 UTC (rev 363468)
@@ -0,0 +1,7 @@
+[Desktop Entry]
+Name=Links
+Exec=xlinks -g
+Icon=links_32x32.xpm
+Type=Application
+Terminal=false
+Categories=Network;WebBrowser;


[arch-commits] Commit in links/repos (3 files)

2019-09-05 Thread Christian Hesse via arch-commits
Date: Thursday, September 5, 2019 @ 11:16:23
  Author: eworm
Revision: 361720

archrelease: copy trunk to testing-x86_64

Added:
  links/repos/testing-x86_64/
  links/repos/testing-x86_64/PKGBUILD
(from rev 361719, links/trunk/PKGBUILD)
  links/repos/testing-x86_64/links.desktop
(from rev 361719, links/trunk/links.desktop)

---+
 PKGBUILD  |   65 
 links.desktop |7 ++
 2 files changed, 72 insertions(+)

Copied: links/repos/testing-x86_64/PKGBUILD (from rev 361719, 
links/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-09-05 11:16:23 UTC (rev 361720)
@@ -0,0 +1,65 @@
+# Maintainer: Christian Hesse 
+# Contributor: Eric Bélanger 
+
+pkgname=links
+pkgver=2.20.1
+pkgrel=1
+pkgdesc="A text WWW browser, similar to Lynx"
+arch=('x86_64')
+url="http://links.twibright.com/";
+license=('GPL')
+depends=('bzip2' 'gpm' 'libevent' 'pcre' 'xz')
+makedepends=('libtiff' 'libpng' 'libxt' 'librsvg')
+optdepends=('libx11: for using xlinks'
+   'libtiff: for using xlinks'
+   'libpng: for using xlinks'
+   'librsvg: for using xlinks')
+source=("http://links.twibright.com/download/${pkgname}-${pkgver}.tar.bz2";
+'links.desktop')
+sha256sums=('bb28a72cb72ca275742ef79e92ba468f0707863366bff2704b0ff6ce52790405'
+'484571172aa19cf91c4ce9d9528a4ac52e9252d6e741897e7339880aa30dbc88')
+
+configure_options=(
+  --prefix=/usr
+  --mandir=/usr/share/man
+  --disable-javascript
+)
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" configure
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  (cd intl; ./gen-intl; ./synclang)
+  ./configure \
+"${configure_options[@]}" \
+--enable-graphics \
+--with-x \
+--with-fb
+  make
+  mv links xlinks
+
+  ./configure \
+"${configure_options[@]}" \
+--disable-graphics \
+--without-x \
+--without-fb
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -D -m0755 xlinks "${pkgdir}/usr/bin/xlinks"
+  ln -s links.1.gz "${pkgdir}/usr/share/man/man1/xlinks.1.gz"
+
+  install -D -m0644 "${srcdir}/links.desktop" 
"${pkgdir}/usr/share/applications/links.desktop"
+  install -d "${pkgdir}/usr/share/pixmaps"
+  install -m0644 links_16x16_1.xpm links_16x16_2.xpm links_32x32.xpm 
"${pkgdir}/usr/share/pixmaps/"
+
+  install -d "${pkgdir}/usr/share/doc/links/calibration"
+  install -m0644 doc/links_cal/* "${pkgdir}/usr/share/doc/links/calibration/"
+}

Copied: links/repos/testing-x86_64/links.desktop (from rev 361719, 
links/trunk/links.desktop)
===
--- testing-x86_64/links.desktop(rev 0)
+++ testing-x86_64/links.desktop2019-09-05 11:16:23 UTC (rev 361720)
@@ -0,0 +1,7 @@
+[Desktop Entry]
+Name=Links
+Exec=xlinks -g
+Icon=links_32x32.xpm
+Type=Application
+Terminal=false
+Categories=Network;WebBrowser;


[arch-commits] Commit in links/repos (3 files)

2019-08-28 Thread Christian Hesse via arch-commits
Date: Thursday, August 29, 2019 @ 06:12:06
  Author: eworm
Revision: 361349

archrelease: copy trunk to testing-x86_64

Added:
  links/repos/testing-x86_64/
  links/repos/testing-x86_64/PKGBUILD
(from rev 361348, links/trunk/PKGBUILD)
  links/repos/testing-x86_64/links.desktop
(from rev 361348, links/trunk/links.desktop)

---+
 PKGBUILD  |   65 
 links.desktop |7 ++
 2 files changed, 72 insertions(+)

Copied: links/repos/testing-x86_64/PKGBUILD (from rev 361348, 
links/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-08-29 06:12:06 UTC (rev 361349)
@@ -0,0 +1,65 @@
+# Maintainer: Christian Hesse 
+# Contributor: Eric Bélanger 
+
+pkgname=links
+pkgver=2.20
+pkgrel=1
+pkgdesc="A text WWW browser, similar to Lynx"
+arch=('x86_64')
+url="http://links.twibright.com/";
+license=('GPL')
+depends=('bzip2' 'gpm' 'libevent' 'pcre' 'xz')
+makedepends=('libtiff' 'libpng' 'libxt' 'librsvg')
+optdepends=('libx11: for using xlinks'
+   'libtiff: for using xlinks'
+   'libpng: for using xlinks'
+   'librsvg: for using xlinks')
+source=("http://links.twibright.com/download/${pkgname}-${pkgver}.tar.bz2";
+'links.desktop')
+sha256sums=('3bddcd4cb2f7647e50e12a59d1c9bda61076f15cde5f5dca6288b58314e6902d'
+'484571172aa19cf91c4ce9d9528a4ac52e9252d6e741897e7339880aa30dbc88')
+
+configure_options=(
+  --prefix=/usr
+  --mandir=/usr/share/man
+  --disable-javascript
+)
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" configure
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  (cd intl; ./gen-intl; ./synclang)
+  ./configure \
+"${configure_options[@]}" \
+--enable-graphics \
+--with-x \
+--with-fb
+  make
+  mv links xlinks
+
+  ./configure \
+"${configure_options[@]}" \
+--disable-graphics \
+--without-x \
+--without-fb
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -D -m0755 xlinks "${pkgdir}/usr/bin/xlinks"
+  ln -s links.1.gz "${pkgdir}/usr/share/man/man1/xlinks.1.gz"
+
+  install -D -m0644 "${srcdir}/links.desktop" 
"${pkgdir}/usr/share/applications/links.desktop"
+  install -d "${pkgdir}/usr/share/pixmaps"
+  install -m0644 links_16x16_1.xpm links_16x16_2.xpm links_32x32.xpm 
"${pkgdir}/usr/share/pixmaps/"
+
+  install -d "${pkgdir}/usr/share/doc/links/calibration"
+  install -m0644 doc/links_cal/* "${pkgdir}/usr/share/doc/links/calibration/"
+}

Copied: links/repos/testing-x86_64/links.desktop (from rev 361348, 
links/trunk/links.desktop)
===
--- testing-x86_64/links.desktop(rev 0)
+++ testing-x86_64/links.desktop2019-08-29 06:12:06 UTC (rev 361349)
@@ -0,0 +1,7 @@
+[Desktop Entry]
+Name=Links
+Exec=xlinks -g
+Icon=links_32x32.xpm
+Type=Application
+Terminal=false
+Categories=Network;WebBrowser;


[arch-commits] Commit in links/repos (3 files)

2019-08-05 Thread Evangelos Foutras via arch-commits
Date: Tuesday, August 6, 2019 @ 04:10:51
  Author: foutrelis
Revision: 359221

archrelease: copy trunk to staging-x86_64

Added:
  links/repos/staging-x86_64/
  links/repos/staging-x86_64/PKGBUILD
(from rev 359220, links/trunk/PKGBUILD)
  links/repos/staging-x86_64/links.desktop
(from rev 359220, links/trunk/links.desktop)

---+
 PKGBUILD  |   65 
 links.desktop |7 ++
 2 files changed, 72 insertions(+)

Copied: links/repos/staging-x86_64/PKGBUILD (from rev 359220, 
links/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-08-06 04:10:51 UTC (rev 359221)
@@ -0,0 +1,65 @@
+# Maintainer: Christian Hesse 
+# Contributor: Eric Bélanger 
+
+pkgname=links
+pkgver=2.19
+pkgrel=2
+pkgdesc="A text WWW browser, similar to Lynx"
+arch=('x86_64')
+url="http://links.twibright.com/";
+license=('GPL')
+depends=('bzip2' 'gpm' 'libevent' 'pcre' 'xz')
+makedepends=('libtiff' 'libpng' 'libxt' 'librsvg')
+optdepends=('libx11: for using xlinks'
+   'libtiff: for using xlinks'
+   'libpng: for using xlinks'
+   'librsvg: for using xlinks')
+source=("http://links.twibright.com/download/${pkgname}-${pkgver}.tar.bz2";
+'links.desktop')
+sha256sums=('70758c7dd9bb70f045407900e0a90f1114947fce832c2f9bdefd5c0158089a0a'
+'484571172aa19cf91c4ce9d9528a4ac52e9252d6e741897e7339880aa30dbc88')
+
+configure_options=(
+  --prefix=/usr
+  --mandir=/usr/share/man
+  --disable-javascript
+)
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" configure
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  (cd intl; ./gen-intl; ./synclang)
+  ./configure \
+"${configure_options[@]}" \
+--enable-graphics \
+--with-x \
+--with-fb
+  make
+  mv links xlinks
+
+  ./configure \
+"${configure_options[@]}" \
+--disable-graphics \
+--without-x \
+--without-fb
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -D -m0755 xlinks "${pkgdir}/usr/bin/xlinks"
+  ln -s links.1.gz "${pkgdir}/usr/share/man/man1/xlinks.1.gz"
+
+  install -D -m0644 "${srcdir}/links.desktop" 
"${pkgdir}/usr/share/applications/links.desktop"
+  install -d "${pkgdir}/usr/share/pixmaps"
+  install -m0644 links_16x16_1.xpm links_16x16_2.xpm links_32x32.xpm 
"${pkgdir}/usr/share/pixmaps/"
+
+  install -d "${pkgdir}/usr/share/doc/links/calibration"
+  install -m0644 doc/links_cal/* "${pkgdir}/usr/share/doc/links/calibration/"
+}

Copied: links/repos/staging-x86_64/links.desktop (from rev 359220, 
links/trunk/links.desktop)
===
--- staging-x86_64/links.desktop(rev 0)
+++ staging-x86_64/links.desktop2019-08-06 04:10:51 UTC (rev 359221)
@@ -0,0 +1,7 @@
+[Desktop Entry]
+Name=Links
+Exec=xlinks -g
+Icon=links_32x32.xpm
+Type=Application
+Terminal=false
+Categories=Network;WebBrowser;


[arch-commits] Commit in links/repos (3 files)

2019-04-04 Thread Christian Hesse via arch-commits
Date: Friday, April 5, 2019 @ 06:02:24
  Author: eworm
Revision: 349845

archrelease: copy trunk to testing-x86_64

Added:
  links/repos/testing-x86_64/
  links/repos/testing-x86_64/PKGBUILD
(from rev 349844, links/trunk/PKGBUILD)
  links/repos/testing-x86_64/links.desktop
(from rev 349844, links/trunk/links.desktop)

---+
 PKGBUILD  |   65 
 links.desktop |7 ++
 2 files changed, 72 insertions(+)

Copied: links/repos/testing-x86_64/PKGBUILD (from rev 349844, 
links/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-04-05 06:02:24 UTC (rev 349845)
@@ -0,0 +1,65 @@
+# Maintainer: Christian Hesse 
+# Contributor: Eric Bélanger 
+
+pkgname=links
+pkgver=2.19
+pkgrel=1
+pkgdesc="A text WWW browser, similar to Lynx"
+arch=('x86_64')
+url="http://links.twibright.com/";
+license=('GPL')
+depends=('bzip2' 'gpm' 'libevent' 'pcre' 'xz')
+makedepends=('libtiff' 'libpng' 'libxt' 'librsvg')
+optdepends=('libx11: for using xlinks'
+   'libtiff: for using xlinks'
+   'libpng: for using xlinks'
+   'librsvg: for using xlinks')
+source=("http://links.twibright.com/download/${pkgname}-${pkgver}.tar.bz2";
+'links.desktop')
+sha256sums=('70758c7dd9bb70f045407900e0a90f1114947fce832c2f9bdefd5c0158089a0a'
+'484571172aa19cf91c4ce9d9528a4ac52e9252d6e741897e7339880aa30dbc88')
+
+configure_options=(
+  --prefix=/usr
+  --mandir=/usr/share/man
+  --disable-javascript
+)
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" configure
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  (cd intl; ./gen-intl; ./synclang)
+  ./configure \
+"${configure_options[@]}" \
+--enable-graphics \
+--with-x \
+--with-fb
+  make
+  mv links xlinks
+
+  ./configure \
+"${configure_options[@]}" \
+--disable-graphics \
+--without-x \
+--without-fb
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -D -m0755 xlinks "${pkgdir}/usr/bin/xlinks"
+  ln -s links.1.gz "${pkgdir}/usr/share/man/man1/xlinks.1.gz"
+
+  install -D -m0644 "${srcdir}/links.desktop" 
"${pkgdir}/usr/share/applications/links.desktop"
+  install -d "${pkgdir}/usr/share/pixmaps"
+  install -m0644 links_16x16_1.xpm links_16x16_2.xpm links_32x32.xpm 
"${pkgdir}/usr/share/pixmaps/"
+
+  install -d "${pkgdir}/usr/share/doc/links/calibration"
+  install -m0644 doc/links_cal/* "${pkgdir}/usr/share/doc/links/calibration/"
+}

Copied: links/repos/testing-x86_64/links.desktop (from rev 349844, 
links/trunk/links.desktop)
===
--- testing-x86_64/links.desktop(rev 0)
+++ testing-x86_64/links.desktop2019-04-05 06:02:24 UTC (rev 349845)
@@ -0,0 +1,7 @@
+[Desktop Entry]
+Name=Links
+Exec=xlinks -g
+Icon=links_32x32.xpm
+Type=Application
+Terminal=false
+Categories=Network;WebBrowser;


[arch-commits] Commit in links/repos (3 files)

2019-01-17 Thread Christian Hesse via arch-commits
Date: Thursday, January 17, 2019 @ 08:12:59
  Author: eworm
Revision: 344338

archrelease: copy trunk to testing-x86_64

Added:
  links/repos/testing-x86_64/
  links/repos/testing-x86_64/PKGBUILD
(from rev 344337, links/trunk/PKGBUILD)
  links/repos/testing-x86_64/links.desktop
(from rev 344337, links/trunk/links.desktop)

---+
 PKGBUILD  |   65 
 links.desktop |7 ++
 2 files changed, 72 insertions(+)

Copied: links/repos/testing-x86_64/PKGBUILD (from rev 344337, 
links/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-01-17 08:12:59 UTC (rev 344338)
@@ -0,0 +1,65 @@
+# Maintainer: Christian Hesse 
+# Contributor: Eric Bélanger 
+
+pkgname=links
+pkgver=2.18
+pkgrel=1
+pkgdesc="A text WWW browser, similar to Lynx"
+arch=('x86_64')
+url="http://links.twibright.com/";
+license=('GPL')
+depends=('bzip2' 'gpm' 'libevent' 'pcre' 'xz')
+makedepends=('libtiff' 'libpng' 'libxt' 'librsvg')
+optdepends=('libx11: for using xlinks'
+   'libtiff: for using xlinks'
+   'libpng: for using xlinks'
+   'librsvg: for using xlinks')
+source=("http://links.twibright.com/download/${pkgname}-${pkgver}.tar.bz2";
+'links.desktop')
+sha256sums=('678cc1ab347cc90732b1925a11db7fbe12ce883fcca631f91696453a83819057'
+'484571172aa19cf91c4ce9d9528a4ac52e9252d6e741897e7339880aa30dbc88')
+
+configure_options=(
+  --prefix=/usr
+  --mandir=/usr/share/man
+  --disable-javascript
+)
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" configure
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  (cd intl; ./gen-intl; ./synclang)
+  ./configure \
+"${configure_options[@]}" \
+--enable-graphics \
+--with-x \
+--with-fb
+  make
+  mv links xlinks
+
+  ./configure \
+"${configure_options[@]}" \
+--disable-graphics \
+--without-x \
+--without-fb
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -D -m0755 xlinks "${pkgdir}/usr/bin/xlinks"
+  ln -s links.1.gz "${pkgdir}/usr/share/man/man1/xlinks.1.gz"
+
+  install -D -m0644 "${srcdir}/links.desktop" 
"${pkgdir}/usr/share/applications/links.desktop"
+  install -d "${pkgdir}/usr/share/pixmaps"
+  install -m0644 links_16x16_1.xpm links_16x16_2.xpm links_32x32.xpm 
"${pkgdir}/usr/share/pixmaps/"
+
+  install -d "${pkgdir}/usr/share/doc/links/calibration"
+  install -m0644 doc/links_cal/* "${pkgdir}/usr/share/doc/links/calibration/"
+}

Copied: links/repos/testing-x86_64/links.desktop (from rev 344337, 
links/trunk/links.desktop)
===
--- testing-x86_64/links.desktop(rev 0)
+++ testing-x86_64/links.desktop2019-01-17 08:12:59 UTC (rev 344338)
@@ -0,0 +1,7 @@
+[Desktop Entry]
+Name=Links
+Exec=xlinks -g
+Icon=links_32x32.xpm
+Type=Application
+Terminal=false
+Categories=Network;WebBrowser;


[arch-commits] Commit in links/repos (3 files)

2018-09-07 Thread Christian Hesse via arch-commits
Date: Friday, September 7, 2018 @ 23:29:04
  Author: eworm
Revision: 333842

archrelease: copy trunk to testing-x86_64

Added:
  links/repos/testing-x86_64/
  links/repos/testing-x86_64/PKGBUILD
(from rev 333841, links/trunk/PKGBUILD)
  links/repos/testing-x86_64/links.desktop
(from rev 333841, links/trunk/links.desktop)

---+
 PKGBUILD  |   66 
 links.desktop |7 +
 2 files changed, 73 insertions(+)

Copied: links/repos/testing-x86_64/PKGBUILD (from rev 333841, 
links/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-09-07 23:29:04 UTC (rev 333842)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Contributor: Eric Bélanger 
+
+pkgname=links
+pkgver=2.17
+pkgrel=1
+pkgdesc="A text WWW browser, similar to Lynx"
+arch=('x86_64')
+url="http://links.twibright.com/";
+license=('GPL')
+depends=('bzip2' 'gpm' 'libevent' 'pcre' 'xz')
+makedepends=('libtiff' 'libpng' 'libxt' 'librsvg')
+optdepends=('libx11: for using xlinks'
+   'libtiff: for using xlinks'
+   'libpng: for using xlinks'
+   'librsvg: for using xlinks')
+source=("http://links.twibright.com/download/${pkgname}-${pkgver}.tar.bz2";
+'links.desktop')
+sha256sums=('d8389763784a531acf7f18f93dd0324563bba2f5fa3df203f27d22cefe7a0236'
+'484571172aa19cf91c4ce9d9528a4ac52e9252d6e741897e7339880aa30dbc88')
+
+configure_options=(
+  --prefix=/usr
+  --mandir=/usr/share/man
+  --disable-javascript
+)
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" configure
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  (cd intl; ./gen-intl; ./synclang)
+  ./configure \
+"${configure_options[@]}" \
+--enable-graphics \
+--with-x \
+--with-fb
+  make
+  mv links xlinks
+
+  ./configure \
+"${configure_options[@]}" \
+--disable-graphics \
+--without-x \
+--without-fb
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -D -m0755 xlinks "${pkgdir}/usr/bin/xlinks"
+  ln -s links.1.gz "${pkgdir}/usr/share/man/man1/xlinks.1.gz"
+
+  install -D -m0644 "${srcdir}/links.desktop" 
"${pkgdir}/usr/share/applications/links.desktop"
+  install -d "${pkgdir}/usr/share/pixmaps"
+  install -m0644 links_16x16_1.xpm links_16x16_2.xpm links_32x32.xpm 
"${pkgdir}/usr/share/pixmaps/"
+
+  install -d "${pkgdir}/usr/share/doc/links/calibration"
+  install -m0644 doc/links_cal/* "${pkgdir}/usr/share/doc/links/calibration/"
+}

Copied: links/repos/testing-x86_64/links.desktop (from rev 333841, 
links/trunk/links.desktop)
===
--- testing-x86_64/links.desktop(rev 0)
+++ testing-x86_64/links.desktop2018-09-07 23:29:04 UTC (rev 333842)
@@ -0,0 +1,7 @@
+[Desktop Entry]
+Name=Links
+Exec=xlinks -g
+Icon=links_32x32.xpm
+Type=Application
+Terminal=false
+Categories=Network;WebBrowser;


[arch-commits] Commit in links/repos (3 files)

2018-05-11 Thread Christian Hesse via arch-commits
Date: Friday, May 11, 2018 @ 08:57:49
  Author: eworm
Revision: 323929

archrelease: copy trunk to testing-x86_64

Added:
  links/repos/testing-x86_64/
  links/repos/testing-x86_64/PKGBUILD
(from rev 323928, links/trunk/PKGBUILD)
  links/repos/testing-x86_64/links.desktop
(from rev 323928, links/trunk/links.desktop)

---+
 PKGBUILD  |   66 
 links.desktop |7 +
 2 files changed, 73 insertions(+)

Copied: links/repos/testing-x86_64/PKGBUILD (from rev 323928, 
links/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-05-11 08:57:49 UTC (rev 323929)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Contributor: Eric Bélanger 
+
+pkgname=links
+pkgver=2.16
+pkgrel=1
+pkgdesc="A text WWW browser, similar to Lynx"
+arch=('x86_64')
+url="http://links.twibright.com/";
+license=('GPL')
+depends=('bzip2' 'gpm' 'libevent' 'pcre' 'xz')
+makedepends=('libtiff' 'libpng' 'libxt' 'librsvg')
+optdepends=('libx11: for using xlinks'
+   'libtiff: for using xlinks'
+   'libpng: for using xlinks'
+   'librsvg: for using xlinks')
+source=("http://links.twibright.com/download/${pkgname}-${pkgver}.tar.bz2";
+'links.desktop')
+sha256sums=('82f03038d5e050a65681b9888762af41c40fd42dec7e59a8d630bfb0ee134a3f'
+'484571172aa19cf91c4ce9d9528a4ac52e9252d6e741897e7339880aa30dbc88')
+
+configure_options=(
+  --prefix=/usr
+  --mandir=/usr/share/man
+  --disable-javascript
+)
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" configure
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  (cd intl; ./gen-intl; ./synclang)
+  ./configure \
+"${configure_options[@]}" \
+--enable-graphics \
+--with-x \
+--with-fb
+  make
+  mv links xlinks
+
+  ./configure \
+"${configure_options[@]}" \
+--disable-graphics \
+--without-x \
+--without-fb
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -D -m0755 xlinks "${pkgdir}/usr/bin/xlinks"
+  ln -s links.1.gz "${pkgdir}/usr/share/man/man1/xlinks.1.gz"
+
+  install -D -m0644 "${srcdir}/links.desktop" 
"${pkgdir}/usr/share/applications/links.desktop"
+  install -d "${pkgdir}/usr/share/pixmaps"
+  install -m0644 links_16x16_1.xpm links_16x16_2.xpm links_32x32.xpm 
"${pkgdir}/usr/share/pixmaps/"
+
+  install -d "${pkgdir}/usr/share/doc/links/calibration"
+  install -m0644 doc/links_cal/* "${pkgdir}/usr/share/doc/links/calibration/"
+}

Copied: links/repos/testing-x86_64/links.desktop (from rev 323928, 
links/trunk/links.desktop)
===
--- testing-x86_64/links.desktop(rev 0)
+++ testing-x86_64/links.desktop2018-05-11 08:57:49 UTC (rev 323929)
@@ -0,0 +1,7 @@
+[Desktop Entry]
+Name=Links
+Exec=xlinks -g
+Icon=links_32x32.xpm
+Type=Application
+Terminal=false
+Categories=Network;WebBrowser;


[arch-commits] Commit in links/repos (3 files)

2018-03-24 Thread Christian Hesse via arch-commits
Date: Saturday, March 24, 2018 @ 19:12:33
  Author: eworm
Revision: 320142

archrelease: copy trunk to testing-x86_64

Added:
  links/repos/testing-x86_64/
  links/repos/testing-x86_64/PKGBUILD
(from rev 320141, links/trunk/PKGBUILD)
  links/repos/testing-x86_64/links.desktop
(from rev 320141, links/trunk/links.desktop)

---+
 PKGBUILD  |   54 ++
 links.desktop |7 +++
 2 files changed, 61 insertions(+)

Copied: links/repos/testing-x86_64/PKGBUILD (from rev 320141, 
links/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-03-24 19:12:33 UTC (rev 320142)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Contributor: Eric Bélanger 
+
+pkgname=links
+pkgver=2.15
+pkgrel=1
+pkgdesc="A text WWW browser, similar to Lynx"
+arch=('x86_64')
+url="http://links.twibright.com/";
+license=('GPL')
+depends=('bzip2' 'xz' 'gpm' 'libevent')
+makedepends=('libtiff' 'libpng' 'libxt' 'librsvg')
+optdepends=('libx11: for using xlinks'
+   'libtiff: for using xlinks'
+   'libpng: for using xlinks'
+   'librsvg: for using xlinks')
+source=("http://links.twibright.com/download/${pkgname}-${pkgver}.tar.bz2";
+'links.desktop')
+sha256sums=('1e2a1c4b439c14fbedd78fd98f443af2ab0c1566bebc491642411d74b7efe3ca'
+'484571172aa19cf91c4ce9d9528a4ac52e9252d6e741897e7339880aa30dbc88')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" configure
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  (cd intl; ./gen-intl; ./synclang)
+  ./configure --prefix=/usr --mandir=/usr/share/man --enable-javascript \
+--enable-graphics --with-x --with-fb
+  make
+  mv links xlinks
+
+  ./configure --prefix=/usr --mandir=/usr/share/man --enable-javascript \
+--disable-graphics --without-x  --without-fb
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 xlinks "${pkgdir}/usr/bin/xlinks"
+  ln -s links.1.gz "${pkgdir}/usr/share/man/man1/xlinks.1.gz"
+
+  install -D -m644 "${srcdir}/links.desktop" 
"${pkgdir}/usr/share/applications/links.desktop"
+  install -d "${pkgdir}/usr/share/pixmaps"
+  install -m644 links_16x16_1.xpm links_16x16_2.xpm links_32x32.xpm 
"${pkgdir}/usr/share/pixmaps/"
+
+  install -d "${pkgdir}/usr/share/doc/links/calibration"
+  install -m644 doc/links_cal/* "${pkgdir}/usr/share/doc/links/calibration/"
+}

Copied: links/repos/testing-x86_64/links.desktop (from rev 320141, 
links/trunk/links.desktop)
===
--- testing-x86_64/links.desktop(rev 0)
+++ testing-x86_64/links.desktop2018-03-24 19:12:33 UTC (rev 320142)
@@ -0,0 +1,7 @@
+[Desktop Entry]
+Name=Links
+Exec=xlinks -g
+Icon=links_32x32.xpm
+Type=Application
+Terminal=false
+Categories=Network;WebBrowser;


[arch-commits] Commit in links/repos (3 files)

2011-08-14 Thread Eric Bélanger
Date: Sunday, August 14, 2011 @ 21:04:50
  Author: eric
Revision: 135532

archrelease: copy trunk to testing-x86_64

Added:
  links/repos/testing-x86_64/
  links/repos/testing-x86_64/PKGBUILD
(from rev 135531, links/trunk/PKGBUILD)
  links/repos/testing-x86_64/links.desktop
(from rev 135531, links/trunk/links.desktop)

---+
 PKGBUILD  |   49 +
 links.desktop |7 +++
 2 files changed, 56 insertions(+)

Copied: links/repos/testing-x86_64/PKGBUILD (from rev 135531, 
links/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2011-08-15 01:04:50 UTC (rev 135532)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=links
+pkgver=2.3
+pkgrel=1
+pkgdesc="A text WWW browser, similar to Lynx"
+arch=('i686' 'x86_64')
+url="http://links.twibright.com/";
+license=('GPL')
+depends=('bzip2' 'zlib' 'openssl' 'gpm')
+makedepends=('libtiff' 'libpng' 'libxt')
+optdepends=('libx11: for using xlinks' 'libtiff: for using xlinks' 'libpng: 
for using xlinks')
+provides=('links-g')
+conflicts=('links-g')
+replaces=('links-g')
+source=(http://links.twibright.com/download/${pkgname}-${pkgver}.tar.bz2 
links.desktop)
+md5sums=('1dc17862e766cec7c544166186e7167b'
+ '7c47b15aaef51f1de129ff3a2afb7eac')
+sha1sums=('0f91e550a80a2bc358ce3bdf48a23504a0582b02'
+  'f600e27c2a7118f7dd07a10230aa44463a02')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  (cd intl; ./gen-intl; ./synclang)
+  ./configure --prefix=/usr --mandir=/usr/share/man --enable-javascript \
+--enable-graphics --with-x --with-fb
+  make
+  mv links xlinks
+
+  ./configure --prefix=/usr --mandir=/usr/share/man --enable-javascript \
+--disable-graphics --without-x  --without-fb
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 xlinks "${pkgdir}/usr/bin/xlinks"
+  ln -s links.1.gz "${pkgdir}/usr/share/man/man1/xlinks.1.gz"
+
+  install -D -m644 "${srcdir}/links.desktop" 
"${pkgdir}/usr/share/applications/links.desktop"
+  install -d "${pkgdir}/usr/share/pixmaps"
+  install -m644 links_16x16_1.xpm links_16x16_2.xpm links_32x32.xpm 
"${pkgdir}/usr/share/pixmaps/"
+
+  install -d "${pkgdir}/usr/share/doc/links/calibration"
+  install -m644 doc/links_cal/* "${pkgdir}/usr/share/doc/links/calibration/"
+}

Copied: links/repos/testing-x86_64/links.desktop (from rev 135531, 
links/trunk/links.desktop)
===
--- testing-x86_64/links.desktop(rev 0)
+++ testing-x86_64/links.desktop2011-08-15 01:04:50 UTC (rev 135532)
@@ -0,0 +1,7 @@
+[Desktop Entry]
+Name=Links
+Exec=xlinks -g
+Icon=links_32x32.xpm
+Type=Application
+Terminal=false
+Categories=Network;WebBrowser;



[arch-commits] Commit in links/repos (3 files)

2011-08-14 Thread Eric Bélanger
Date: Sunday, August 14, 2011 @ 21:04:32
  Author: eric
Revision: 135531

archrelease: copy trunk to testing-i686

Added:
  links/repos/testing-i686/
  links/repos/testing-i686/PKGBUILD
(from rev 135530, links/trunk/PKGBUILD)
  links/repos/testing-i686/links.desktop
(from rev 135530, links/trunk/links.desktop)

---+
 PKGBUILD  |   49 +
 links.desktop |7 +++
 2 files changed, 56 insertions(+)

Copied: links/repos/testing-i686/PKGBUILD (from rev 135530, 
links/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-08-15 01:04:32 UTC (rev 135531)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=links
+pkgver=2.3
+pkgrel=1
+pkgdesc="A text WWW browser, similar to Lynx"
+arch=('i686' 'x86_64')
+url="http://links.twibright.com/";
+license=('GPL')
+depends=('bzip2' 'zlib' 'openssl' 'gpm')
+makedepends=('libtiff' 'libpng' 'libxt')
+optdepends=('libx11: for using xlinks' 'libtiff: for using xlinks' 'libpng: 
for using xlinks')
+provides=('links-g')
+conflicts=('links-g')
+replaces=('links-g')
+source=(http://links.twibright.com/download/${pkgname}-${pkgver}.tar.bz2 
links.desktop)
+md5sums=('1dc17862e766cec7c544166186e7167b'
+ '7c47b15aaef51f1de129ff3a2afb7eac')
+sha1sums=('0f91e550a80a2bc358ce3bdf48a23504a0582b02'
+  'f600e27c2a7118f7dd07a10230aa44463a02')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  (cd intl; ./gen-intl; ./synclang)
+  ./configure --prefix=/usr --mandir=/usr/share/man --enable-javascript \
+--enable-graphics --with-x --with-fb
+  make
+  mv links xlinks
+
+  ./configure --prefix=/usr --mandir=/usr/share/man --enable-javascript \
+--disable-graphics --without-x  --without-fb
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 xlinks "${pkgdir}/usr/bin/xlinks"
+  ln -s links.1.gz "${pkgdir}/usr/share/man/man1/xlinks.1.gz"
+
+  install -D -m644 "${srcdir}/links.desktop" 
"${pkgdir}/usr/share/applications/links.desktop"
+  install -d "${pkgdir}/usr/share/pixmaps"
+  install -m644 links_16x16_1.xpm links_16x16_2.xpm links_32x32.xpm 
"${pkgdir}/usr/share/pixmaps/"
+
+  install -d "${pkgdir}/usr/share/doc/links/calibration"
+  install -m644 doc/links_cal/* "${pkgdir}/usr/share/doc/links/calibration/"
+}

Copied: links/repos/testing-i686/links.desktop (from rev 135530, 
links/trunk/links.desktop)
===
--- testing-i686/links.desktop  (rev 0)
+++ testing-i686/links.desktop  2011-08-15 01:04:32 UTC (rev 135531)
@@ -0,0 +1,7 @@
+[Desktop Entry]
+Name=Links
+Exec=xlinks -g
+Icon=links_32x32.xpm
+Type=Application
+Terminal=false
+Categories=Network;WebBrowser;