diff options
author | James Meyer <james.meyer@operamail.com> | 2010-10-23 18:17:40 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2010-10-23 18:19:39 (GMT) |
commit | adbcf19958300e9b6598990184c8815b945ba0ee (patch) | |
tree | f4283c850ac0ac202c17e78a637ee7ca8147621b /abs/core-testing/tk | |
parent | 61a68250df10d29b624650948484898334ff22d0 (diff) | |
download | linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.zip linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.gz linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.bz2 |
Removed old core and extra from repo. Renamed -testing to core/extra. This will setup the base for the testing branch.
Diffstat (limited to 'abs/core-testing/tk')
-rw-r--r-- | abs/core-testing/tk/ChangeLog | 21 | ||||
-rw-r--r-- | abs/core-testing/tk/PKGBUILD | 37 |
2 files changed, 0 insertions, 58 deletions
diff --git a/abs/core-testing/tk/ChangeLog b/abs/core-testing/tk/ChangeLog deleted file mode 100644 index fc2998f..0000000 --- a/abs/core-testing/tk/ChangeLog +++ /dev/null @@ -1,21 +0,0 @@ -2008-12-24 Allan McRae <allan@archlinux.org> - * 8.5.6-1 : - new upstream release - -2008-10-16 Allan McRae <allan@archlinux.org> - * 8.5.5-1 : - new upstream release - -2008-08-20 Allan McRae <allan@archlinux.org> - * 8.5.4-2 : - Remove xproto compatibility patch as no longer needed - -2008-08-16 Allan McRae <allan@archlinux.org> - * 8.5.4-1 : - new upstream release - FHS man pages - -2008-07-01 Allan McRae <allan@archlinux.org> - * 8.5.3-1 : - new upstream release - added patch for xproto-7.0.13 compatibility diff --git a/abs/core-testing/tk/PKGBUILD b/abs/core-testing/tk/PKGBUILD deleted file mode 100644 index 3c75949..0000000 --- a/abs/core-testing/tk/PKGBUILD +++ /dev/null @@ -1,37 +0,0 @@ -# $Id: PKGBUILD 22248 2008-12-24 10:55:13Z allan $ -# Maintainer: Allan McRae <allan@archlinux.org> -# Contributor: Judd Vinet <jvinet@zeroflux.org> - -pkgname=tk -pkgver=8.5.6 -pkgrel=1 -pkgdesc="A windowing toolkit for use with tcl" -arch=('i686' 'x86_64') -url="http://tcl.sourceforge.net/" -license=('custom') -depends=("tcl=${pkgver}" 'libxss' 'libxft') -source=(http://downloads.sourceforge.net/sourceforge/tcl/tk${pkgver}-src.tar.gz) -md5sums=('7da2e00adddc7eed6080df904579d94e') - -build() { - cd ${srcdir}/tk${pkgver}/unix - if [ "$CARCH" = "x86_64" ]; then - ./configure --prefix=/usr --mandir=/usr/share/man --enable-threads --enable-64bit - else - ./configure --prefix=/usr --mandir=/usr/share/man --enable-threads --disable-64bit - fi - - make - make INSTALL_ROOT=${pkgdir} install install-private-headers - ln -sf wish8.5 ${pkgdir}/usr/bin/wish - # install license - install -Dm644 ../license.terms ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE - - # remove buildroot traces / fixes #3602 - sed -i \ - -e "s,^TK_BUILD_LIB_SPEC='-L.*/unix,TK_BUILD_LIB_SPEC='-L/usr/lib," \ - -e "s,^TK_SRC_DIR='.*',TK_SRC_DIR='/usr/include'," \ - -e "s,^TK_BUILD_STUB_LIB_SPEC='-L.*/unix,TK_BUILD_STUB_LIB_SPEC='-L/usr/lib," \ - -e "s,^TK_BUILD_STUB_LIB_PATH='.*/unix,TK_BUILD_STUB_LIB_PATH='/usr/lib," \ - ${pkgdir}/usr/lib/tkConfig.sh -} |