From 8b155b9368462ef1cf614b9a6a760abc9e2826e8 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Thu, 20 Feb 2014 18:07:59 +0100 Subject: [PATCH] libIDL: remove long_desc. --- srcpkgs/libIDL/template | 33 ++++----------------------------- 1 file changed, 4 insertions(+), 29 deletions(-) diff --git a/srcpkgs/libIDL/template b/srcpkgs/libIDL/template index 8696e0643a..dd21c2278f 100644 --- a/srcpkgs/libIDL/template +++ b/srcpkgs/libIDL/template @@ -1,50 +1,25 @@ # Template build file for 'libIDL'. pkgname=libIDL version=0.8.13 -revision=5 +revision=6 build_style=gnu-configure hostmakedepends="pkg-config flex" -makedepends="libglib-devel" +makedepends="libfl-devel libglib-devel" short_desc="CORBA Interface Definition Language parser" homepage="http://projects.gnome.org/ORBit2/" license="LGPL-2.1" maintainer="Juan RP " distfiles="${GNOME_SITE}/$pkgname/0.8/$pkgname-$version.tar.bz2" checksum=bccc7e10dae979518ff012f8464e47ec4b3558a5456a94c8679653aa0b262b71 -long_desc=" - libIDL is a library licensed under the GNU LGPL for creating trees of - CORBA Interface Definition Language (IDL) files, which is a - specification for defining portable interfaces. libIDL was initially - written for ORBit (the ORB from the GNOME project, and the primary - means of libIDL distribution). However, the functionality was - designed to be as reusable and portable as possible. - - It is written in C, and the aim is to retain the ability to compile it - on a system with a standard C compiler. Preprocessed parser files are - included so you are not forced to rebuild the parser, however an - effort is made to keep the parser and lexer compatible with standard - Unix yacc. Currently, flex is required to generate the lexical - scanner. - - With libIDL, you can parse an IDL file which will be automatically run - through the C preprocessor (on systems with one available), and have - detailed error and warning messages displayed. On a compilation - without errors, the tree is returned to the custom application. - libIDL performs compilation phases from lexical analysis to nearly - full semantic analysis with some optimizations, and will attempt to - generate meaningful errors and warnings for invalid or deprecated IDL." - -if [ "$CROSS_BUILD" ]; then - makedepends+=" libfl-devel" -fi libIDL-devel_package() { - depends="libIDL>=${version}" + depends="${sourcepkg}>=${version}_${revision}" short_desc+=" -- development files" pkg_install() { vmove usr/bin vmove usr/include vmove usr/lib/pkgconfig vmove "usr/lib/*.a" + vmove "usr/lib/*.so" } }