Please read this before reporting a bug:
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
FS#18896 - [ne] syntax hilghlighting doesn't work
Attached to Project:
Arch Linux
Opened by Wenzhi Liang (lang2) - Wednesday, 31 March 2010, 19:33 GMT
Last edited by Dan Griffiths (Ghost1227) - Thursday, 13 May 2010, 18:06 GMT
Opened by Wenzhi Liang (lang2) - Wednesday, 31 March 2010, 19:33 GMT
Last edited by Dan Griffiths (Ghost1227) - Thursday, 13 May 2010, 18:06 GMT
|
DetailsDescription:
The syntax highlighting for ne doesn't work out of the box. The supporting files seems to be installed in /usr/lib/ne/syntax but has no effect. 'cp -R /usr/lib/ne/syntax ~/.ne' and it works fine. Additional info: * package version(s) * config and/or log files etc. Steps to reproduce: |
This task depends upon
Closed by Dan Griffiths (Ghost1227)
Thursday, 13 May 2010, 18:06 GMT
Reason for closing: Fixed
Additional comments about closing: And tested! ;)
Thursday, 13 May 2010, 18:06 GMT
Reason for closing: Fixed
Additional comments about closing: And tested! ;)
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
sed -i ',(cd doc; make),d' makefile
#sed -i 's,local/lib/ne,lib/ne,g' src/makefile
cd src make NE_GLOBAL_DIR=/usr/lib/ne
cd -
make PREFIX="${pkgdir}/usr" install || return 1
}
It also remove the dependency on texlive, etc. OK the nice pdf documentation won't be build but it's just daft to have to install TeX just to be able to install a little editor.
Somebody want to see to this?
Thanks,
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
sed -i ',(cd doc; make),d' makefile
#sed -i 's,local/lib/ne,lib/ne,g' src/makefile
cd src make NE_GLOBAL_DIR=/usr/lib/ne
cd -
make PREFIX="${pkgdir}/usr" install || return 1
}
It also remove the dependency on texlive, etc. OK the nice pdf documentation won't be build but it's just daft to have to install TeX just to be able to install a little editor.
Somebody want to see to this?
Thanks,
http://aur.archlinux.org/packages.php?ID=36358
- doc (pdf/info) is built by regular "make install" so perhaps you dont need to make the package so complicated
PS. please test next ne package before updating
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
make PREFIX="/usr" DESTDIR="${pkgdir}" install || return 1
}