diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-02-23 16:36:57 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-02-23 16:36:57 +0000 |
commit | e5fdc91f4424111ee42657869e9c4c81b5b59603 (patch) | |
tree | b66c6dc8eb51f2898bf59fae43de852e06614966 /devel/rudiments | |
parent | 212d13bf551cc019dabdd20c20db8478cb5e51ed (diff) |
Notes
Diffstat (limited to 'devel/rudiments')
-rw-r--r-- | devel/rudiments/Makefile | 3 | ||||
-rw-r--r-- | devel/rudiments/distinfo | 2 | ||||
-rw-r--r-- | devel/rudiments/files/patch-src::Makefile.in | 31 |
3 files changed, 3 insertions, 33 deletions
diff --git a/devel/rudiments/Makefile b/devel/rudiments/Makefile index 4faacab365dc..16bed84fea11 100644 --- a/devel/rudiments/Makefile +++ b/devel/rudiments/Makefile @@ -6,7 +6,7 @@ # PORTNAME= rudiments -PORTVERSION= 0.21 +PORTVERSION= 0.23 CATEGORIES= devel MASTER_SITES= http://www.firstworks.com/downloads/rudiments/ @@ -15,6 +15,7 @@ MAINTAINER= knu@FreeBSD.org USE_GMAKE= yes USE_AUTOCONF_VER=213 CONFIGURE_ENV= CXX="${CXX}" CXXFLAGS="${CXXFLAGS}" +MAKE_ARGS= VERSION="${PORTVERSION:R}" INSTALLS_SHLIB= yes diff --git a/devel/rudiments/distinfo b/devel/rudiments/distinfo index eee4e9cb1fb5..338e78924dfa 100644 --- a/devel/rudiments/distinfo +++ b/devel/rudiments/distinfo @@ -1 +1 @@ -MD5 (rudiments-0.21.tar.gz) = b4b4ef0802ce160da59af696e1a923fe +MD5 (rudiments-0.23.tar.gz) = 7b508bf594d565cd9cb95dcea4caa5dd diff --git a/devel/rudiments/files/patch-src::Makefile.in b/devel/rudiments/files/patch-src::Makefile.in deleted file mode 100644 index 1a512e60a2ae..000000000000 --- a/devel/rudiments/files/patch-src::Makefile.in +++ /dev/null @@ -1,31 +0,0 @@ ---- src/Makefile.in.orig Fri Jun 29 14:14:48 2001 -+++ src/Makefile.in Mon Jul 2 17:03:58 2001 -@@ -14,7 +14,7 @@ - all: - $(MAKE) ../lib/librudiments.a; \ - if ( test ! -n "@MINGW32@" -a ! -n "@CYGWIN@" -a ! -n "@UWIN@" ); then \ -- $(MAKE) ../lib/librudiments.so.$(VERSION); \ -+ $(MAKE) ../lib/librudiments.so.$(basename $(VERSION)); \ - else \ - $(MAKE) ../lib/librudiments.dll; \ - fi -@@ -28,7 +28,7 @@ - ../lib/librudiments.a: $(SRCS) $(OBJS) - $(STATICAR) $@ $(OBJS) - --../lib/librudiments.so.$(VERSION): $(SRCS) $(OBJS) -+../lib/librudiments.so.$(basename $(VERSION)): $(SRCS) $(OBJS) - $(DYNAMICAR) $@ $(OBJS) - - ../lib/librudiments.dll: $(SRCS) $(OBJS) -@@ -41,8 +41,8 @@ - $(INSTALL) -m 644 ../lib/librudiments.a $(libdir); \ - if ( test ! -n "@MINGW32@" -a ! -n "@CYGWIN@" -a ! -n "@UWIN@" ); then \ - $(RM) $(libdir)/librudiments.so*; \ -- $(INSTALL) ../lib/librudiments.so.$(VERSION) $(libdir); \ -- $(SYMLINK) $(libdir)/librudiments.so.$(VERSION) $(libdir)/librudiments.so; \ -+ $(INSTALL) ../lib/librudiments.so.$(basename $(VERSION)) $(libdir); \ -+ $(SYMLINK) $(libdir)/librudiments.so.$(basename $(VERSION)) $(libdir)/librudiments.so; \ - else \ - $(INSTALL) ../lib/librudiments.lib $(libdir); \ - $(INSTALL) ../lib/librudiments.dll $(libdir); \ |