summaryrefslogtreecommitdiff
path: root/popt
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2007-06-19 13:00:13 +0300
committerPanu Matilainen <pmatilai@redhat.com>2007-06-19 13:00:13 +0300
commitc7705557d9cff5fd56c96d0915148efd5fcb7e3c (patch)
tree393f2286ad716f211dd2a05785f734e1dc224085 /popt
parente752d9cf8521439544308f350d6f6e720c03782b (diff)
downloadrpm-c7705557d9cff5fd56c96d0915148efd5fcb7e3c.tar.gz
rpm-c7705557d9cff5fd56c96d0915148efd5fcb7e3c.tar.bz2
rpm-c7705557d9cff5fd56c96d0915148efd5fcb7e3c.zip
Remove rpm and popt specs, spec files are vendor specific anyway.
Diffstat (limited to 'popt')
-rw-r--r--popt/Makefile.am2
-rw-r--r--popt/popt.spec60
2 files changed, 1 insertions, 61 deletions
diff --git a/popt/Makefile.am b/popt/Makefile.am
index 5683229c4..5e1341be3 100644
--- a/popt/Makefile.am
+++ b/popt/Makefile.am
@@ -4,7 +4,7 @@ AUTOMAKE_OPTIONS = 1.4 foreign
LINT = splint
-EXTRA_DIST = autogen.sh CHANGES $(man_MANS) popt.spec \
+EXTRA_DIST = autogen.sh CHANGES $(man_MANS) \
testit.sh test-poptrc test3-data \
popt.ps
diff --git a/popt/popt.spec b/popt/popt.spec
deleted file mode 100644
index 5a029a434..000000000
--- a/popt/popt.spec
+++ /dev/null
@@ -1,60 +0,0 @@
-#
-# Note: popt is now an rpm sub-package (including libpopt.so*) so you probably
-# shouldn't need to use this spec file to package popt anymore.
-#
-Summary: A C library for parsing command line parameters.
-Name: popt
-Version: 1.10.2
-Release: 0.1
-License: X Consortium
-Group: System Environment/Libraries
-Source: ftp://ftp.redhat.com/pub/redhat/code/popt/popt-%{version}.tar.gz
-BuildRoot: /var/tmp/%{name}root
-
-%description
-Popt is a C library for parsing command line parameters. Popt
-was heavily influenced by the getopt() and getopt_long() functions,
-but it improves on them by allowing more powerful argument expansion.
-Popt can parse arbitrary argv[] style arrays and automatically set
-variables based on command line arguments. Popt allows command
-line arguments to be aliased via configuration files and includes
-utility functions for parsing arbitrary strings into argv[] arrays
-using shell-like rules.
-
-Install popt if you're a C programmer and you'd like to use its
-capabilities.
-
-%prep
-%setup -q
-
-%build
-#CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=/usr
-
-%configure
-make
-
-%install
-make DESTDIR=$RPM_BUILD_ROOT install
-
-%clean
-rm -rf $RPM_BUILD_ROOT
-
-%files
-%defattr(-,root,root)
-%{_prefix}/lib/libpopt.*
-%{_prefix}/include/popt.h
-%{_prefix}/man/man3/popt.3
-%{_prefix}/share/locale/*/LC_MESSAGES/popt.mo
-
-%changelog
-* Thu Dec 10 1998 Michael Johnson <johnsonm@redhat.com>
-- released 1.2.2; see CHANGES
-
-* Tue Nov 17 1998 Michael K. Johnson <johnsonm@redhat.com>
-- added man page to default install
-
-* Thu Oct 22 1998 Erik Troan <ewt@redhat.com>
-- see CHANGES file for 1.2
-
-* Thu Apr 09 1998 Erik Troan <ewt@redhat.com>
-- added ./configure step to spec file